From 0d56c05aa5460d5c98e2158248f19aa8dd7b381a Mon Sep 17 00:00:00 2001 From: elsehow Date: Fri, 4 Aug 2017 14:07:34 -0700 Subject: [PATCH] Updated to match libsignal-protocol-javascript #29 https://github.com/WhisperSystems/libsignal-protocol-javascript/pull/29 --- build/curve25519_compiled.js | 38981 +++++++++++++++----------------- build/curve25519_concat.js | 38981 +++++++++++++++----------------- build/test_lib.js | 3393 +-- build/test_main.js | 39807 +++++++++++++++------------------ dist/libsignal.js | 39749 +++++++++++++++----------------- package.json | 4 +- src/SessionCipher.js | 519 +- 7 files changed, 74365 insertions(+), 87069 deletions(-) diff --git a/build/curve25519_compiled.js b/build/curve25519_compiled.js index 13a7a4c..81a76cd 100644 --- a/build/curve25519_compiled.js +++ b/build/curve25519_compiled.js @@ -30,38 +30,51 @@ for (var key in Module) { // The environment setup code below is customized to use Module. // *** Environment setup code *** -var ENVIRONMENT_IS_WEB = typeof window === 'object'; +var ENVIRONMENT_IS_WEB = false; +var ENVIRONMENT_IS_WORKER = false; +var ENVIRONMENT_IS_NODE = false; +var ENVIRONMENT_IS_SHELL = false; + // Three configurations we can be running in: // 1) We could be the application main() thread running in the main JS UI thread. (ENVIRONMENT_IS_WORKER == false and ENVIRONMENT_IS_PTHREAD == false) // 2) We could be the application main() thread proxied to worker. (with Emscripten -s PROXY_TO_WORKER=1) (ENVIRONMENT_IS_WORKER == true, ENVIRONMENT_IS_PTHREAD == false) // 3) We could be an application pthread running in a worker. (ENVIRONMENT_IS_WORKER == true and ENVIRONMENT_IS_PTHREAD == true) -var ENVIRONMENT_IS_WORKER = typeof importScripts === 'function'; -var ENVIRONMENT_IS_NODE = typeof process === 'object' && typeof require === 'function' && !ENVIRONMENT_IS_WEB && !ENVIRONMENT_IS_WORKER; -var ENVIRONMENT_IS_SHELL = !ENVIRONMENT_IS_WEB && !ENVIRONMENT_IS_NODE && !ENVIRONMENT_IS_WORKER; + +if (Module['ENVIRONMENT']) { + if (Module['ENVIRONMENT'] === 'WEB') { + ENVIRONMENT_IS_WEB = true; + } else if (Module['ENVIRONMENT'] === 'WORKER') { + ENVIRONMENT_IS_WORKER = true; + } else if (Module['ENVIRONMENT'] === 'NODE') { + ENVIRONMENT_IS_NODE = true; + } else if (Module['ENVIRONMENT'] === 'SHELL') { + ENVIRONMENT_IS_SHELL = true; + } else { + throw new Error('The provided Module[\'ENVIRONMENT\'] value is not valid. It must be one of: WEB|WORKER|NODE|SHELL.'); + } +} else { + ENVIRONMENT_IS_WEB = typeof window === 'object'; + ENVIRONMENT_IS_WORKER = typeof importScripts === 'function'; + ENVIRONMENT_IS_NODE = typeof process === 'object' && typeof require === 'function' && !ENVIRONMENT_IS_WEB && !ENVIRONMENT_IS_WORKER; + ENVIRONMENT_IS_SHELL = !ENVIRONMENT_IS_WEB && !ENVIRONMENT_IS_NODE && !ENVIRONMENT_IS_WORKER; +} + if (ENVIRONMENT_IS_NODE) { // Expose functionality in the same simple way that the shells work // Note that we pollute the global namespace here, otherwise we break in node - if (!Module['print']) Module['print'] = function print(x) { - process['stdout'].write(x + '\n'); - }; - if (!Module['printErr']) Module['printErr'] = function printErr(x) { - process['stderr'].write(x + '\n'); - }; + if (!Module['print']) Module['print'] = console.log; + if (!Module['printErr']) Module['printErr'] = console.warn; - var nodeFS = require('fs'); - var nodePath = require('path'); + var nodeFS; + var nodePath; - Module['read'] = function read(filename, binary) { + Module['read'] = function shell_read(filename, binary) { + if (!nodeFS) nodeFS = require('fs'); + if (!nodePath) nodePath = require('path'); filename = nodePath['normalize'](filename); var ret = nodeFS['readFileSync'](filename); - // The path is absolute if the normalized version is the same as the resolved. - if (!ret && filename != nodePath['resolve'](filename)) { - filename = path.join(__dirname, '..', 'src', filename); - ret = nodeFS['readFileSync'](filename); - } - if (ret && !binary) ret = ret.toString(); - return ret; + return binary ? ret : ret.toString(); }; Module['readBinary'] = function readBinary(filename) { @@ -107,7 +120,7 @@ else if (ENVIRONMENT_IS_SHELL) { if (typeof read != 'undefined') { Module['read'] = read; } else { - Module['read'] = function read() { throw 'no read() available (jsc?)' }; + Module['read'] = function shell_read() { throw 'no read() available' }; } Module['readBinary'] = function readBinary(f) { @@ -125,25 +138,56 @@ else if (ENVIRONMENT_IS_SHELL) { Module['arguments'] = arguments; } + if (typeof quit === 'function') { + Module['quit'] = function(status, toThrow) { + quit(status); + } + } + } else if (ENVIRONMENT_IS_WEB || ENVIRONMENT_IS_WORKER) { - Module['read'] = function read(url) { + Module['read'] = function shell_read(url) { var xhr = new XMLHttpRequest(); xhr.open('GET', url, false); xhr.send(null); return xhr.responseText; }; + if (ENVIRONMENT_IS_WORKER) { + Module['readBinary'] = function readBinary(url) { + var xhr = new XMLHttpRequest(); + xhr.open('GET', url, false); + xhr.responseType = 'arraybuffer'; + xhr.send(null); + return new Uint8Array(xhr.response); + }; + } + + Module['readAsync'] = function readAsync(url, onload, onerror) { + var xhr = new XMLHttpRequest(); + xhr.open('GET', url, true); + xhr.responseType = 'arraybuffer'; + xhr.onload = function xhr_onload() { + if (xhr.status == 200 || (xhr.status == 0 && xhr.response)) { // file URLs can return 0 + onload(xhr.response); + } else { + onerror(); + } + }; + xhr.onerror = onerror; + xhr.send(null); + }; + if (typeof arguments != 'undefined') { Module['arguments'] = arguments; } if (typeof console !== 'undefined') { - if (!Module['print']) Module['print'] = function print(x) { + if (!Module['print']) Module['print'] = function shell_print(x) { console.log(x); }; - if (!Module['printErr']) Module['printErr'] = function printErr(x) { - console.log(x); + if (!Module['printErr']) Module['printErr'] = function shell_printErr(x) { + console.warn(x); }; } else { // Probably a worker, and without console.log. We can do very little here... @@ -188,6 +232,11 @@ if (!Module['arguments']) { if (!Module['thisProgram']) { Module['thisProgram'] = './this.program'; } +if (!Module['quit']) { + Module['quit'] = function(status, toThrow) { + throw toThrow; + } +} // *** Environment setup code *** @@ -205,14 +254,19 @@ for (var key in moduleOverrides) { Module[key] = moduleOverrides[key]; } } +// Free the object hierarchy contained in the overrides, this lets the GC +// reclaim data used e.g. in memoryInitializerRequest, which is a large typed array. +moduleOverrides = undefined; + +// {{PREAMBLE_ADDITIONS}} // === Preamble library stuff === -// Documentation for the public APIs defined in this file must be updated in: +// Documentation for the public APIs defined in this file must be updated in: // site/source/docs/api_reference/preamble.js.rst -// A prebuilt local version of the documentation is available at: +// A prebuilt local version of the documentation is available at: // site/build/text/docs/api_reference/preamble.js.txt // You can also build docs locally as HTML or other formats in site/ // An online HTML version (which may be of a different version of Emscripten) @@ -225,6 +279,7 @@ for (var key in moduleOverrides) { var Runtime = { setTempRet0: function (value) { tempRet0 = value; + return value; }, getTempRet0: function () { return tempRet0; @@ -280,9 +335,7 @@ var Runtime = { }, dynCall: function (sig, ptr, args) { if (args && args.length) { - if (!args.splice) args = Array.prototype.slice.call(args); - args.splice(0, 0, ptr); - return Module['dynCall_' + sig].apply(null, args); + return Module['dynCall_' + sig].apply(null, [ptr].concat(args)); } else { return Module['dynCall_' + sig].call(null, ptr); } @@ -315,9 +368,21 @@ var Runtime = { } var sigCache = Runtime.funcWrappers[sig]; if (!sigCache[func]) { - sigCache[func] = function dynCall_wrapper() { - return Runtime.dynCall(sig, func, arguments); - }; + // optimize away arguments usage in common cases + if (sig.length === 1) { + sigCache[func] = function dynCall_wrapper() { + return Runtime.dynCall(sig, func); + }; + } else if (sig.length === 2) { + sigCache[func] = function dynCall_wrapper(arg) { + return Runtime.dynCall(sig, func, [arg]); + }; + } else { + // general case + sigCache[func] = function dynCall_wrapper() { + return Runtime.dynCall(sig, func, Array.prototype.slice.call(arguments)); + }; + } } return sigCache[func]; }, @@ -326,7 +391,7 @@ var Runtime = { }, stackAlloc: function (size) { var ret = STACKTOP;STACKTOP = (STACKTOP + size)|0;STACKTOP = (((STACKTOP)+15)&-16); return ret; }, staticAlloc: function (size) { var ret = STATICTOP;STATICTOP = (STATICTOP + size)|0;STATICTOP = (((STATICTOP)+15)&-16); return ret; }, - dynamicAlloc: function (size) { var ret = DYNAMICTOP;DYNAMICTOP = (DYNAMICTOP + size)|0;DYNAMICTOP = (((DYNAMICTOP)+15)&-16); if (DYNAMICTOP >= TOTAL_MEMORY) { var success = enlargeMemory(); if (!success) { DYNAMICTOP = ret; return 0; } }; return ret; }, + dynamicAlloc: function (size) { var ret = HEAP32[DYNAMICTOP_PTR>>2];var end = (((ret + size + 15)|0) & -16);HEAP32[DYNAMICTOP_PTR>>2] = end;if (end >= TOTAL_MEMORY) {var success = enlargeMemory();if (!success) {HEAP32[DYNAMICTOP_PTR>>2] = ret;return 0;}}return ret;}, alignMemory: function (size,quantum) { var ret = size = Math.ceil((size)/(quantum ? quantum : 16))*(quantum ? quantum : 16); return ret; }, makeBigInt: function (low,high,unsigned) { var ret = (unsigned ? ((+((low>>>0)))+((+((high>>>0)))*4294967296.0)) : ((+((low>>>0)))+((+((high|0)))*4294967296.0))); return ret; }, GLOBAL_BASE: 8, @@ -344,18 +409,10 @@ Module["Runtime"] = Runtime; // Runtime essentials //======================================== -var __THREW__ = 0; // Used in checking for thrown exceptions. - -var ABORT = false; // whether we are quitting the application. no code should run after this. set in exit() and abort() +var ABORT = 0; // whether we are quitting the application. no code should run after this. set in exit() and abort() var EXITSTATUS = 0; -var undef = 0; -// tempInt is used for 32-bit signed values or smaller. tempBigInt is used -// for 32-bit unsigned values or more than 32 bits. TODO: audit all uses of tempInt -var tempValue, tempInt, tempBigInt, tempInt2, tempBigInt2, tempPair, tempBigIntI, tempBigIntR, tempBigIntS, tempBigIntP, tempBigIntD, tempDouble, tempFloat; -var tempI64, tempI64b; -var tempRet0, tempRet1, tempRet2, tempRet3, tempRet4, tempRet5, tempRet6, tempRet7, tempRet8, tempRet9; - +/** @type {function(*, string=)} */ function assert(condition, text) { if (!condition) { abort('Assertion failed: ' + text); @@ -368,9 +425,7 @@ var globalScope = this; function getCFunc(ident) { var func = Module['_' + ident]; // closure exported function if (!func) { - try { - func = eval('_' + ident); // explicit lookup - } catch(e) {} + try { func = eval('_' + ident); } catch(e) {} } assert(func, 'Cannot call unknown function ' + ident + ' (perhaps LLVM optimizations or closure removed it?)'); return func; @@ -398,8 +453,9 @@ var cwrap, ccall; var ret = 0; if (str !== null && str !== undefined && str !== 0) { // null string // at most 4 bytes per UTF-8 code point, +1 for the trailing '\0' - ret = Runtime.stackAlloc((str.length << 2) + 1); - writeStringToMemory(str, ret); + var len = (str.length << 2) + 1; + ret = Runtime.stackAlloc(len); + stringToUTF8(str, ret, len); } return ret; } @@ -407,7 +463,7 @@ var cwrap, ccall; // For fast lookup of conversion functions var toC = {'string' : JSfuncs['stringToC'], 'array' : JSfuncs['arrayToC']}; - // C calling interface. + // C calling interface. ccall = function ccallFunc(ident, returnType, argTypes, args, opts) { var func = getCFunc(ident); var cArgs = []; @@ -437,22 +493,28 @@ var cwrap, ccall; return ret; } - var sourceRegex = /^function\s*\(([^)]*)\)\s*{\s*([^*]*?)[\s;]*(?:return\s*(.*?)[;\s]*)?}$/; + var sourceRegex = /^function\s*[a-zA-Z$_0-9]*\s*\(([^)]*)\)\s*{\s*([^*]*?)[\s;]*(?:return\s*(.*?)[;\s]*)?}$/; function parseJSFunc(jsfunc) { // Match the body and the return value of a javascript function source var parsed = jsfunc.toString().match(sourceRegex).slice(1); return {arguments : parsed[0], body : parsed[1], returnValue: parsed[2]} } - var JSsource = {}; - for (var fun in JSfuncs) { - if (JSfuncs.hasOwnProperty(fun)) { - // Elements of toCsource are arrays of three items: - // the code, and the return value - JSsource[fun] = parseJSFunc(JSfuncs[fun]); + + // sources of useful functions. we create this lazily as it can trigger a source decompression on this entire file + var JSsource = null; + function ensureJSsource() { + if (!JSsource) { + JSsource = {}; + for (var fun in JSfuncs) { + if (JSfuncs.hasOwnProperty(fun)) { + // Elements of toCsource are arrays of three items: + // the code, and the return value + JSsource[fun] = parseJSFunc(JSfuncs[fun]); + } + } } } - cwrap = function cwrap(ident, returnType, argTypes) { argTypes = argTypes || []; var cfunc = getCFunc(ident); @@ -470,6 +532,7 @@ var cwrap, ccall; if (!numericArgs) { // Generate the code needed to convert the arguments from javascript // values to pointers + ensureJSsource(); funcstr += 'var stack = ' + JSsource['stackSave'].body + ';'; for (var i = 0; i < nargs; i++) { var arg = argNames[i], type = argTypes[i]; @@ -477,7 +540,7 @@ var cwrap, ccall; var convertCode = JSsource[type + 'ToC']; // [code, return] funcstr += 'var ' + convertCode.arguments + ' = ' + arg + ';'; funcstr += convertCode.body + ';'; - funcstr += arg + '=' + convertCode.returnValue + ';'; + funcstr += arg + '=(' + convertCode.returnValue + ');'; } } @@ -492,6 +555,7 @@ var cwrap, ccall; } if (!numericArgs) { // If we had a stack, restore it + ensureJSsource(); funcstr += JSsource['stackRestore'].body.replace('()', '(stack)') + ';'; } funcstr += 'return ret})'; @@ -501,6 +565,7 @@ var cwrap, ccall; Module["ccall"] = ccall; Module["cwrap"] = cwrap; +/** @type {function(number, number, string, boolean=)} */ function setValue(ptr, value, type, noSafe) { type = type || 'i8'; if (type.charAt(type.length-1) === '*') type = 'i32'; // pointers are 32-bit @@ -517,7 +582,7 @@ function setValue(ptr, value, type, noSafe) { } Module["setValue"] = setValue; - +/** @type {function(number, string, boolean=)} */ function getValue(ptr, type, noSafe) { type = type || 'i8'; if (type.charAt(type.length-1) === '*') type = 'i32'; // pointers are 32-bit @@ -559,6 +624,7 @@ Module["ALLOC_NONE"] = ALLOC_NONE; // is initial data - if @slab is a number, then this does not matter at all and is // ignored. // @allocator: How to allocate memory, see ALLOC_* +/** @type {function((TypedArray|Array|number), string, number, number=)} */ function allocate(slab, types, allocator, ptr) { var zeroinit, size; if (typeof slab === 'number') { @@ -575,7 +641,7 @@ function allocate(slab, types, allocator, ptr) { if (allocator == ALLOC_NONE) { ret = ptr; } else { - ret = [_malloc, Runtime.stackAlloc, Runtime.staticAlloc, Runtime.dynamicAlloc][allocator === undefined ? ALLOC_STATIC : allocator](Math.max(size, singleType ? 1 : types.length)); + ret = [typeof _malloc === 'function' ? _malloc : Runtime.staticAlloc, Runtime.stackAlloc, Runtime.staticAlloc, Runtime.dynamicAlloc][allocator === undefined ? ALLOC_STATIC : allocator](Math.max(size, singleType ? 1 : types.length)); } if (zeroinit) { @@ -594,7 +660,7 @@ function allocate(slab, types, allocator, ptr) { if (singleType === 'i8') { if (slab.subarray || slab.slice) { - HEAPU8.set(slab, ret); + HEAPU8.set(/** @type {!Uint8Array} */ (slab), ret); } else { HEAPU8.set(new Uint8Array(slab), ret); } @@ -634,12 +700,13 @@ Module["allocate"] = allocate; // Allocate memory during any stage of startup - static memory early on, dynamic memory later, malloc when ready function getMemory(size) { if (!staticSealed) return Runtime.staticAlloc(size); - if ((typeof _sbrk !== 'undefined' && !_sbrk.called) || !runtimeInitialized) return Runtime.dynamicAlloc(size); + if (!runtimeInitialized) return Runtime.dynamicAlloc(size); return _malloc(size); } Module["getMemory"] = getMemory; -function Pointer_stringify(ptr, /* optional */ length) { +/** @type {function(number, number=)} */ +function Pointer_stringify(ptr, length) { if (length === 0 || !ptr) return ''; // TODO: use TextDecoder // Find the length, and check for UTF while doing so @@ -696,39 +763,49 @@ Module["stringToAscii"] = stringToAscii; // Given a pointer 'ptr' to a null-terminated UTF8-encoded string in the given array that contains uint8 values, returns // a copy of that string as a Javascript String object. +var UTF8Decoder = typeof TextDecoder !== 'undefined' ? new TextDecoder('utf8') : undefined; function UTF8ArrayToString(u8Array, idx) { - var u0, u1, u2, u3, u4, u5; + var endPtr = idx; + // TextDecoder needs to know the byte length in advance, it doesn't stop on null terminator by itself. + // Also, use the length info to avoid running tiny strings through TextDecoder, since .subarray() allocates garbage. + while (u8Array[endPtr]) ++endPtr; - var str = ''; - while (1) { - // For UTF8 byte structure, see http://en.wikipedia.org/wiki/UTF-8#Description and https://www.ietf.org/rfc/rfc2279.txt and https://tools.ietf.org/html/rfc3629 - u0 = u8Array[idx++]; - if (!u0) return str; - if (!(u0 & 0x80)) { str += String.fromCharCode(u0); continue; } - u1 = u8Array[idx++] & 63; - if ((u0 & 0xE0) == 0xC0) { str += String.fromCharCode(((u0 & 31) << 6) | u1); continue; } - u2 = u8Array[idx++] & 63; - if ((u0 & 0xF0) == 0xE0) { - u0 = ((u0 & 15) << 12) | (u1 << 6) | u2; - } else { - u3 = u8Array[idx++] & 63; - if ((u0 & 0xF8) == 0xF0) { - u0 = ((u0 & 7) << 18) | (u1 << 12) | (u2 << 6) | u3; + if (endPtr - idx > 16 && u8Array.subarray && UTF8Decoder) { + return UTF8Decoder.decode(u8Array.subarray(idx, endPtr)); + } else { + var u0, u1, u2, u3, u4, u5; + + var str = ''; + while (1) { + // For UTF8 byte structure, see http://en.wikipedia.org/wiki/UTF-8#Description and https://www.ietf.org/rfc/rfc2279.txt and https://tools.ietf.org/html/rfc3629 + u0 = u8Array[idx++]; + if (!u0) return str; + if (!(u0 & 0x80)) { str += String.fromCharCode(u0); continue; } + u1 = u8Array[idx++] & 63; + if ((u0 & 0xE0) == 0xC0) { str += String.fromCharCode(((u0 & 31) << 6) | u1); continue; } + u2 = u8Array[idx++] & 63; + if ((u0 & 0xF0) == 0xE0) { + u0 = ((u0 & 15) << 12) | (u1 << 6) | u2; } else { - u4 = u8Array[idx++] & 63; - if ((u0 & 0xFC) == 0xF8) { - u0 = ((u0 & 3) << 24) | (u1 << 18) | (u2 << 12) | (u3 << 6) | u4; + u3 = u8Array[idx++] & 63; + if ((u0 & 0xF8) == 0xF0) { + u0 = ((u0 & 7) << 18) | (u1 << 12) | (u2 << 6) | u3; } else { - u5 = u8Array[idx++] & 63; - u0 = ((u0 & 1) << 30) | (u1 << 24) | (u2 << 18) | (u3 << 12) | (u4 << 6) | u5; + u4 = u8Array[idx++] & 63; + if ((u0 & 0xFC) == 0xF8) { + u0 = ((u0 & 3) << 24) | (u1 << 18) | (u2 << 12) | (u3 << 6) | u4; + } else { + u5 = u8Array[idx++] & 63; + u0 = ((u0 & 1) << 30) | (u1 << 24) | (u2 << 18) | (u3 << 12) | (u4 << 6) | u5; + } } } - } - if (u0 < 0x10000) { - str += String.fromCharCode(u0); - } else { - var ch = u0 - 0x10000; - str += String.fromCharCode(0xD800 | (ch >> 10), 0xDC00 | (ch & 0x3FF)); + if (u0 < 0x10000) { + str += String.fromCharCode(u0); + } else { + var ch = u0 - 0x10000; + str += String.fromCharCode(0xD800 | (ch >> 10), 0xDC00 | (ch & 0x3FF)); + } } } } @@ -744,12 +821,12 @@ Module["UTF8ToString"] = UTF8ToString; // Copies the given Javascript String object 'str' to the given byte array at address 'outIdx', // encoded in UTF8 form and null-terminated. The copy will require at most str.length*4+1 bytes of space in the HEAP. -// Use the function lengthBytesUTF8() to compute the exact number of bytes (excluding null terminator) that this function will write. +// Use the function lengthBytesUTF8 to compute the exact number of bytes (excluding null terminator) that this function will write. // Parameters: // str: the Javascript string to copy. // outU8Array: the array to copy to. Each index in this array is assumed to be one 8-byte element. // outIdx: The starting offset in the array to begin the copying. -// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null +// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null // terminator, i.e. if maxBytesToWrite=1, only the null terminator will be written and nothing else. // maxBytesToWrite=0 does not write any bytes to the output, not even the null terminator. // Returns the number of bytes written, EXCLUDING the null terminator. @@ -809,7 +886,7 @@ Module["stringToUTF8Array"] = stringToUTF8Array; // Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr', // null-terminated and encoded in UTF8 form. The copy will require at most str.length*4+1 bytes of space in the HEAP. -// Use the function lengthBytesUTF8() to compute the exact number of bytes (excluding null terminator) that this function will write. +// Use the function lengthBytesUTF8 to compute the exact number of bytes (excluding null terminator) that this function will write. // Returns the number of bytes written, EXCLUDING the null terminator. function stringToUTF8(str, outPtr, maxBytesToWrite) { @@ -847,20 +924,31 @@ Module["lengthBytesUTF8"] = lengthBytesUTF8; // Given a pointer 'ptr' to a null-terminated UTF16LE-encoded string in the emscripten HEAP, returns // a copy of that string as a Javascript String object. +var UTF16Decoder = typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-16le') : undefined; function UTF16ToString(ptr) { - var i = 0; + var endPtr = ptr; + // TextDecoder needs to know the byte length in advance, it doesn't stop on null terminator by itself. + // Also, use the length info to avoid running tiny strings through TextDecoder, since .subarray() allocates garbage. + var idx = endPtr >> 1; + while (HEAP16[idx]) ++idx; + endPtr = idx << 1; + + if (endPtr - ptr > 32 && UTF16Decoder) { + return UTF16Decoder.decode(HEAPU8.subarray(ptr, endPtr)); + } else { + var i = 0; - var str = ''; - while (1) { - var codeUnit = HEAP16[(((ptr)+(i*2))>>1)]; - if (codeUnit == 0) - return str; - ++i; - // fromCharCode constructs a character from a UTF-16 code unit, so we can pass the UTF16 string right through. - str += String.fromCharCode(codeUnit); + var str = ''; + while (1) { + var codeUnit = HEAP16[(((ptr)+(i*2))>>1)]; + if (codeUnit == 0) return str; + ++i; + // fromCharCode constructs a character from a UTF-16 code unit, so we can pass the UTF16 string right through. + str += String.fromCharCode(codeUnit); + } } } -Module["UTF16ToString"] = UTF16ToString; + // Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr', // null-terminated and encoded in UTF16 form. The copy will require at most str.length*4+2 bytes of space in the HEAP. @@ -868,7 +956,7 @@ Module["UTF16ToString"] = UTF16ToString; // Parameters: // str: the Javascript string to copy. // outPtr: Byte address in Emscripten HEAP where to write the string to. -// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null +// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null // terminator, i.e. if maxBytesToWrite=2, only the null terminator will be written and nothing else. // maxBytesToWrite<2 does not write any bytes to the output, not even the null terminator. // Returns the number of bytes written, EXCLUDING the null terminator. @@ -892,14 +980,14 @@ function stringToUTF16(str, outPtr, maxBytesToWrite) { HEAP16[((outPtr)>>1)]=0; return outPtr - startPtr; } -Module["stringToUTF16"] = stringToUTF16; + // Returns the number of bytes the given Javascript string takes if encoded as a UTF16 byte array, EXCLUDING the null terminator byte. function lengthBytesUTF16(str) { return str.length*2; } -Module["lengthBytesUTF16"] = lengthBytesUTF16; + function UTF32ToString(ptr) { var i = 0; @@ -920,7 +1008,7 @@ function UTF32ToString(ptr) { } } } -Module["UTF32ToString"] = UTF32ToString; + // Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr', // null-terminated and encoded in UTF32 form. The copy will require at most str.length*4+4 bytes of space in the HEAP. @@ -928,7 +1016,7 @@ Module["UTF32ToString"] = UTF32ToString; // Parameters: // str: the Javascript string to copy. // outPtr: Byte address in Emscripten HEAP where to write the string to. -// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null +// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null // terminator, i.e. if maxBytesToWrite=4, only the null terminator will be written and nothing else. // maxBytesToWrite<4 does not write any bytes to the output, not even the null terminator. // Returns the number of bytes written, EXCLUDING the null terminator. @@ -957,7 +1045,7 @@ function stringToUTF32(str, outPtr, maxBytesToWrite) { HEAP32[((outPtr)>>2)]=0; return outPtr - startPtr; } -Module["stringToUTF32"] = stringToUTF32; + // Returns the number of bytes the given Javascript string takes if encoded as a UTF16 byte array, EXCLUDING the null terminator byte. @@ -973,185 +1061,45 @@ function lengthBytesUTF32(str) { return len; } -Module["lengthBytesUTF32"] = lengthBytesUTF32; + function demangle(func) { - var hasLibcxxabi = !!Module['___cxa_demangle']; - if (hasLibcxxabi) { + var __cxa_demangle_func = Module['___cxa_demangle'] || Module['__cxa_demangle']; + if (__cxa_demangle_func) { try { - var buf = _malloc(func.length); - writeStringToMemory(func.substr(1), buf); + var s = + func.substr(1); + var len = lengthBytesUTF8(s)+1; + var buf = _malloc(len); + stringToUTF8(s, buf, len); var status = _malloc(4); - var ret = Module['___cxa_demangle'](buf, 0, 0, status); + var ret = __cxa_demangle_func(buf, 0, 0, status); if (getValue(status, 'i32') === 0 && ret) { return Pointer_stringify(ret); } - // otherwise, libcxxabi failed, we can try ours which may return a partial result + // otherwise, libcxxabi failed } catch(e) { - // failure when using libcxxabi, we can try ours which may return a partial result + // ignore problems here } finally { if (buf) _free(buf); if (status) _free(status); if (ret) _free(ret); } + // failure when using libcxxabi, don't demangle + return func; } - var i = 3; - // params, etc. - var basicTypes = { - 'v': 'void', - 'b': 'bool', - 'c': 'char', - 's': 'short', - 'i': 'int', - 'l': 'long', - 'f': 'float', - 'd': 'double', - 'w': 'wchar_t', - 'a': 'signed char', - 'h': 'unsigned char', - 't': 'unsigned short', - 'j': 'unsigned int', - 'm': 'unsigned long', - 'x': 'long long', - 'y': 'unsigned long long', - 'z': '...' - }; - var subs = []; - var first = true; - function dump(x) { - //return; - if (x) Module.print(x); - Module.print(func); - var pre = ''; - for (var a = 0; a < i; a++) pre += ' '; - Module.print (pre + '^'); - } - function parseNested() { - i++; - if (func[i] === 'K') i++; // ignore const - var parts = []; - while (func[i] !== 'E') { - if (func[i] === 'S') { // substitution - i++; - var next = func.indexOf('_', i); - var num = func.substring(i, next) || 0; - parts.push(subs[num] || '?'); - i = next+1; - continue; - } - if (func[i] === 'C') { // constructor - parts.push(parts[parts.length-1]); - i += 2; - continue; - } - var size = parseInt(func.substr(i)); - var pre = size.toString().length; - if (!size || !pre) { i--; break; } // counter i++ below us - var curr = func.substr(i + pre, size); - parts.push(curr); - subs.push(curr); - i += pre + size; - } - i++; // skip E - return parts; - } - function parse(rawList, limit, allowVoid) { // main parser - limit = limit || Infinity; - var ret = '', list = []; - function flushList() { - return '(' + list.join(', ') + ')'; - } - var name; - if (func[i] === 'N') { - // namespaced N-E - name = parseNested().join('::'); - limit--; - if (limit === 0) return rawList ? [name] : name; - } else { - // not namespaced - if (func[i] === 'K' || (first && func[i] === 'L')) i++; // ignore const and first 'L' - var size = parseInt(func.substr(i)); - if (size) { - var pre = size.toString().length; - name = func.substr(i + pre, size); - i += pre + size; - } - } - first = false; - if (func[i] === 'I') { - i++; - var iList = parse(true); - var iRet = parse(true, 1, true); - ret += iRet[0] + ' ' + name + '<' + iList.join(', ') + '>'; - } else { - ret = name; - } - paramLoop: while (i < func.length && limit-- > 0) { - //dump('paramLoop'); - var c = func[i++]; - if (c in basicTypes) { - list.push(basicTypes[c]); - } else { - switch (c) { - case 'P': list.push(parse(true, 1, true)[0] + '*'); break; // pointer - case 'R': list.push(parse(true, 1, true)[0] + '&'); break; // reference - case 'L': { // literal - i++; // skip basic type - var end = func.indexOf('E', i); - var size = end - i; - list.push(func.substr(i, size)); - i += size + 2; // size + 'EE' - break; - } - case 'A': { // array - var size = parseInt(func.substr(i)); - i += size.toString().length; - if (func[i] !== '_') throw '?'; - i++; // skip _ - list.push(parse(true, 1, true)[0] + ' [' + size + ']'); - break; - } - case 'E': break paramLoop; - default: ret += '?' + c; break paramLoop; - } - } - } - if (!allowVoid && list.length === 1 && list[0] === 'void') list = []; // avoid (void) - if (rawList) { - if (ret) { - list.push(ret + '?'); - } - return list; - } else { - return ret + flushList(); - } - } - var parsed = func; - try { - // Special-case the entry point, since its name differs from other name mangling. - if (func == 'Object._main' || func == '_main') { - return 'main()'; - } - if (typeof func === 'number') func = Pointer_stringify(func); - if (func[0] !== '_') return func; - if (func[1] !== '_') return func; // C function - if (func[2] !== 'Z') return func; - switch (func[3]) { - case 'n': return 'operator new()'; - case 'd': return 'operator delete()'; - } - parsed = parse(); - } catch(e) { - parsed += '?'; - } - if (parsed.indexOf('?') >= 0 && !hasLibcxxabi) { - Runtime.warnOnce('warning: a problem occurred in builtin C++ name demangling; build with -s DEMANGLE_SUPPORT=1 to link in libcxxabi demangling'); - } - return parsed; + Runtime.warnOnce('warning: build with -s DEMANGLE_SUPPORT=1 to link in libcxxabi demangling'); + return func; } function demangleAll(text) { - return text.replace(/__Z[\w\d_]+/g, function(x) { var y = demangle(x); return x === y ? x : (x + ' [' + y + ']') }); + var regex = + /__Z[\w\d_]+/g; + return text.replace(regex, + function(x) { + var y = demangle(x); + return x === y ? x : (x + ' [' + y + ']'); + }); } function jsStackTrace() { @@ -1172,33 +1120,75 @@ function jsStackTrace() { } function stackTrace() { - return demangleAll(jsStackTrace()); + var js = jsStackTrace(); + if (Module['extraStackTrace']) js += '\n' + Module['extraStackTrace'](); + return demangleAll(js); } Module["stackTrace"] = stackTrace; // Memory management -var PAGE_SIZE = 4096; +var PAGE_SIZE = 16384; +var WASM_PAGE_SIZE = 65536; +var ASMJS_PAGE_SIZE = 16777216; +var MIN_TOTAL_MEMORY = 16777216; -function alignMemoryPage(x) { - if (x % 4096 > 0) { - x += (4096 - (x % 4096)); +function alignUp(x, multiple) { + if (x % multiple > 0) { + x += multiple - (x % multiple); } return x; } -var HEAP; -var HEAP8, HEAPU8, HEAP16, HEAPU16, HEAP32, HEAPU32, HEAPF32, HEAPF64; +var HEAP, +/** @type {ArrayBuffer} */ + buffer, +/** @type {Int8Array} */ + HEAP8, +/** @type {Uint8Array} */ + HEAPU8, +/** @type {Int16Array} */ + HEAP16, +/** @type {Uint16Array} */ + HEAPU16, +/** @type {Int32Array} */ + HEAP32, +/** @type {Uint32Array} */ + HEAPU32, +/** @type {Float32Array} */ + HEAPF32, +/** @type {Float64Array} */ + HEAPF64; + +function updateGlobalBuffer(buf) { + Module['buffer'] = buffer = buf; +} + +function updateGlobalBufferViews() { + Module['HEAP8'] = HEAP8 = new Int8Array(buffer); + Module['HEAP16'] = HEAP16 = new Int16Array(buffer); + Module['HEAP32'] = HEAP32 = new Int32Array(buffer); + Module['HEAPU8'] = HEAPU8 = new Uint8Array(buffer); + Module['HEAPU16'] = HEAPU16 = new Uint16Array(buffer); + Module['HEAPU32'] = HEAPU32 = new Uint32Array(buffer); + Module['HEAPF32'] = HEAPF32 = new Float32Array(buffer); + Module['HEAPF64'] = HEAPF64 = new Float64Array(buffer); +} + +var STATIC_BASE, STATICTOP, staticSealed; // static area +var STACK_BASE, STACKTOP, STACK_MAX; // stack area +var DYNAMIC_BASE, DYNAMICTOP_PTR; // dynamic area handled by sbrk + + STATIC_BASE = STATICTOP = STACK_BASE = STACKTOP = STACK_MAX = DYNAMIC_BASE = DYNAMICTOP_PTR = 0; + staticSealed = false; -var STATIC_BASE = 0, STATICTOP = 0, staticSealed = false; // static area -var STACK_BASE = 0, STACKTOP = 0, STACK_MAX = 0; // stack area -var DYNAMIC_BASE = 0, DYNAMICTOP = 0; // dynamic area handled by sbrk function abortOnCannotGrowMemory() { - abort('Cannot enlarge memory arrays. Either (1) compile with -s TOTAL_MEMORY=X with X higher than the current value ' + TOTAL_MEMORY + ', (2) compile with -s ALLOW_MEMORY_GROWTH=1 which adjusts the size at runtime but prevents some optimizations, (3) set Module.TOTAL_MEMORY to a higher value before the program runs, or if you want malloc to return NULL (0) instead of this abort, compile with -s ABORTING_MALLOC=0 '); + abort('Cannot enlarge memory arrays. Either (1) compile with -s TOTAL_MEMORY=X with X higher than the current value ' + TOTAL_MEMORY + ', (2) compile with -s ALLOW_MEMORY_GROWTH=1 which allows increasing the size at runtime but prevents some optimizations, (3) set Module.TOTAL_MEMORY to a higher value before the program runs, or (4) if you want malloc to return NULL (0) instead of this abort, compile with -s ABORTING_MALLOC=0 '); } + function enlargeMemory() { abortOnCannotGrowMemory(); } @@ -1206,42 +1196,32 @@ function enlargeMemory() { var TOTAL_STACK = Module['TOTAL_STACK'] || 5242880; var TOTAL_MEMORY = Module['TOTAL_MEMORY'] || 16777216; - -var totalMemory = 64*1024; -while (totalMemory < TOTAL_MEMORY || totalMemory < 2*TOTAL_STACK) { - if (totalMemory < 16*1024*1024) { - totalMemory *= 2; - } else { - totalMemory += 16*1024*1024 - } -} -if (totalMemory !== TOTAL_MEMORY) { - TOTAL_MEMORY = totalMemory; -} +if (TOTAL_MEMORY < TOTAL_STACK) Module.printErr('TOTAL_MEMORY should be larger than TOTAL_STACK, was ' + TOTAL_MEMORY + '! (TOTAL_STACK=' + TOTAL_STACK + ')'); // Initialize the runtime's memory -// check for full engine support (use string 'subarray' to avoid closure compiler confusion) -assert(typeof Int32Array !== 'undefined' && typeof Float64Array !== 'undefined' && !!(new Int32Array(1)['subarray']) && !!(new Int32Array(1)['set']), - 'JS engine does not provide full typed array support'); -var buffer; +// Use a provided buffer, if there is one, or else allocate a new one +if (Module['buffer']) { + buffer = Module['buffer']; +} else { + // Use a WebAssembly memory where available + { + buffer = new ArrayBuffer(TOTAL_MEMORY); + } +} +updateGlobalBufferViews(); -buffer = new ArrayBuffer(TOTAL_MEMORY); -HEAP8 = new Int8Array(buffer); -HEAP16 = new Int16Array(buffer); -HEAP32 = new Int32Array(buffer); -HEAPU8 = new Uint8Array(buffer); -HEAPU16 = new Uint16Array(buffer); -HEAPU32 = new Uint32Array(buffer); -HEAPF32 = new Float32Array(buffer); -HEAPF64 = new Float64Array(buffer); +function getTotalMemory() { + return TOTAL_MEMORY; +} // Endianness check (note: assumes compiler arch was little-endian) -HEAP32[0] = 255; -assert(HEAPU8[0] === 255 && HEAPU8[3] === 0, 'Typed arrays 2 must be run on a little-endian system'); + HEAP32[0] = 0x63736d65; /* 'emsc' */ +HEAP16[1] = 0x6373; +if (HEAPU8[2] !== 0x73 || HEAPU8[3] !== 0x63) throw 'Runtime error: expected the system to be little-endian!'; Module['HEAP'] = HEAP; Module['buffer'] = buffer; @@ -1264,9 +1244,9 @@ function callRuntimeCallbacks(callbacks) { var func = callback.func; if (typeof func === 'number') { if (callback.arg === undefined) { - Runtime.dynCall('v', func); + Module['dynCall_v'](func); } else { - Runtime.dynCall('vi', func, [callback.arg]); + Module['dynCall_vi'](func, callback.arg); } } else { func(callback.arg === undefined ? null : callback.arg); @@ -1348,8 +1328,8 @@ Module["addOnPostRun"] = addOnPostRun; // Tools - -function intArrayFromString(stringy, dontAddNull, length /* optional */) { +/** @type {function(string, boolean=, number=)} */ +function intArrayFromString(stringy, dontAddNull, length) { var len = length > 0 ? length : lengthBytesUTF8(stringy)+1; var u8array = new Array(len); var numBytesWritten = stringToUTF8Array(stringy, u8array, 0, u8array.length); @@ -1371,21 +1351,29 @@ function intArrayToString(array) { } Module["intArrayToString"] = intArrayToString; +// Deprecated: This function should not be called because it is unsafe and does not provide +// a maximum length limit of how many bytes it is allowed to write. Prefer calling the +// function stringToUTF8Array() instead, which takes in a maximum length that can be used +// to be secure from out of bounds writes. +/** @deprecated */ function writeStringToMemory(string, buffer, dontAddNull) { - var array = intArrayFromString(string, dontAddNull); - var i = 0; - while (i < array.length) { - var chr = array[i]; - HEAP8[(((buffer)+(i))>>0)]=chr; - i = i + 1; + Runtime.warnOnce('writeStringToMemory is deprecated and should not be called! Use stringToUTF8() instead!'); + + var /** @type {number} */ lastChar, /** @type {number} */ end; + if (dontAddNull) { + // stringToUTF8Array always appends null. If we don't want to do that, remember the + // character that existed at the location where the null will be placed, and restore + // that after the write (below). + end = buffer + lengthBytesUTF8(string); + lastChar = HEAP8[end]; } + stringToUTF8(string, buffer, Infinity); + if (dontAddNull) HEAP8[end] = lastChar; // Restore the value under the null character. } Module["writeStringToMemory"] = writeStringToMemory; function writeArrayToMemory(array, buffer) { - for (var i = 0; i < array.length; i++) { - HEAP8[((buffer++)>>0)]=array[i]; - } + HEAP8.set(array, buffer); } Module["writeArrayToMemory"] = writeArrayToMemory; @@ -1440,6 +1428,11 @@ if (!Math['clz32']) Math['clz32'] = function(x) { }; Math.clz32 = Math['clz32'] +if (!Math['trunc']) Math['trunc'] = function(x) { + return x < 0 ? Math.ceil(x) : Math.floor(x); +}; +Math.trunc = Math['trunc']; + var Math_abs = Math.abs; var Math_cos = Math.cos; var Math_sin = Math.sin; @@ -1456,8 +1449,10 @@ var Math_floor = Math.floor; var Math_pow = Math.pow; var Math_imul = Math.imul; var Math_fround = Math.fround; +var Math_round = Math.round; var Math_min = Math.min; var Math_clz32 = Math.clz32; +var Math_trunc = Math.trunc; // A counter of dependencies for calling run(). If we need to // do asynchronous work before running, increment this and @@ -1510,6 +1505,9 @@ var memoryInitializer = null; + + + // === Body === var ASM_CONSTS = []; @@ -1517,25 +1515,23 @@ var ASM_CONSTS = []; -STATIC_BASE = 8; +STATIC_BASE = Runtime.GLOBAL_BASE; + +STATICTOP = STATIC_BASE + 34528; +/* global initializers */ __ATINIT__.push(); -STATICTOP = STATIC_BASE + 34240; - /* global initializers */ __ATINIT__.push(); - /* memory initializer */ allocate([8,201,188,243,103,230,9,106,59,167,202,132,133,174,103,187,43,248,148,254,114,243,110,60,241,54,29,95,58,245,79,165,209,130,230,173,127,82,14,81,31,108,62,43,140,104,5,155,107,189,65,251,171,217,131,31,121,33,126,19,25,205,224,91,34,174,40,215,152,47,138,66,205,101,239,35,145,68,55,113,47,59,77,236,207,251,192,181,188,219,137,129,165,219,181,233,56,181,72,243,91,194,86,57,25,208,5,182,241,17,241,89,155,79,25,175,164,130,63,146,24,129,109,218,213,94,28,171,66,2,3,163,152,170,7,216,190,111,112,69,1,91,131,18,140,178,228,78,190,133,49,36,226,180,255,213,195,125,12,85,111,137,123,242,116,93,190,114,177,150,22,59,254,177,222,128,53,18,199,37,167,6,220,155,148,38,105,207,116,241,155,193,210,74,241,158,193,105,155,228,227,37,79,56,134,71,190,239,181,213,140,139,198,157,193,15,101,156,172,119,204,161,12,36,117,2,43,89,111,44,233,45,131,228,166,110,170,132,116,74,212,251,65,189,220,169,176,92,181,83,17,131,218,136,249,118,171,223,102,238,82,81,62,152,16,50,180,45,109,198,49,168,63,33,251,152,200,39,3,176,228,14,239,190,199,127,89,191,194,143,168,61,243,11,224,198,37,167,10,147,71,145,167,213,111,130,3,224,81,99,202,6,112,110,14,10,103,41,41,20,252,47,210,70,133,10,183,39,38,201,38,92,56,33,27,46,237,42,196,90,252,109,44,77,223,179,149,157,19,13,56,83,222,99,175,139,84,115,10,101,168,178,119,60,187,10,106,118,230,174,237,71,46,201,194,129,59,53,130,20,133,44,114,146,100,3,241,76,161,232,191,162,1,48,66,188,75,102,26,168,145,151,248,208,112,139,75,194,48,190,84,6,163,81,108,199,24,82,239,214,25,232,146,209,16,169,101,85,36,6,153,214,42,32,113,87,133,53,14,244,184,209,187,50,112,160,106,16,200,208,210,184,22,193,164,25,83,171,65,81,8,108,55,30,153,235,142,223,76,119,72,39,168,72,155,225,181,188,176,52,99,90,201,197,179,12,28,57,203,138,65,227,74,170,216,78,115,227,99,119,79,202,156,91,163,184,178,214,243,111,46,104,252,178,239,93,238,130,143,116,96,47,23,67,111,99,165,120,114,171,240,161,20,120,200,132,236,57,100,26,8,2,199,140,40,30,99,35,250,255,190,144,233,189,130,222,235,108,80,164,21,121,198,178,247,163,249,190,43,83,114,227,242,120,113,198,156,97,38,234,206,62,39,202,7,194,192,33,199,184,134,209,30,235,224,205,214,125,218,234,120,209,110,238,127,79,125,245,186,111,23,114,170,103,240,6,166,152,200,162,197,125,99,10,174,13,249,190,4,152,63,17,27,71,28,19,53,11,113,27,132,125,4,35,245,119,219,40,147,36,199,64,123,171,202,50,188,190,201,21,10,190,158,60,76,13,16,156,196,103,29,67,182,66,62,203,190,212,197,76,42,126,101,252,156,41,127,89,236,250,214,58,171,111,203,95,23,88,71,74,140,25,68,108,133,59,140,1,189,241,36,255,248,37,195,1,96,220,55,0,183,76,62,255,195,66,61,0,50,76,164,1,225,164,76,255,76,61,163,255,117,62,31,0,81,145,64,255,118,65,14,0,162,115,214,255,6,138,46,0,124,230,244,255,10,138,143,0,52,26,194,0,184,244,76,0,129,143,41,1,190,244,19,255,123,170,122,255,98,129,68,0,121,213,147,0,86,101,30,255,161,103,155,0,140,89,67,255,239,229,190,1,67,11,181,0,198,240,137,254,238,69,188,255,67,151,238,0,19,42,108,255,229,85,113,1,50,68,135,255,17,106,9,0,50,103,1,255,80,1,168,1,35,152,30,255,16,168,185,1,56,89,232,255,101,210,252,0,41,250,71,0,204,170,79,255,14,46,239,255,80,77,239,0,189,214,75,255,17,141,249,0,38,80,76,255,190,85,117,0,86,228,170,0,156,216,208,1,195,207,164,255,150,66,76,255,175,225,16,255,141,80,98,1,76,219,242,0,198,162,114,0,46,218,152,0,155,43,241,254,155,160,104,255,51,187,165,0,2,17,175,0,66,84,160,1,247,58,30,0,35,65,53,254,69,236,191,0,45,134,245,1,163,123,221,0,32,110,20,255,52,23,165,0,186,214,71,0,233,176,96,0,242,239,54,1,57,89,138,0,83,0,84,255,136,160,100,0,92,142,120,254,104,124,190,0,181,177,62,255,250,41,85,0,152,130,42,1,96,252,246,0,151,151,63,254,239,133,62,0,32,56,156,0,45,167,189,255,142,133,179,1,131,86,211,0,187,179,150,254,250,170,14,255,210,163,78,0,37,52,151,0,99,77,26,0,238,156,213,255,213,192,209,1,73,46,84,0,20,65,41,1,54,206,79,0,201,131,146,254,170,111,24,255,177,33,50,254,171,38,203,255,78,247,116,0,209,221,153,0,133,128,178,1,58,44,25,0,201,39,59,1,189,19,252,0,49,229,210,1,117,187,117,0,181,179,184,1,0,114,219,0,48,94,147,0,245,41,56,0,125,13,204,254,244,173,119,0,44,221,32,254,84,234,20,0,249,160,198,1,236,126,234,255,47,99,168,254,170,226,153,255,102,179,216,0,226,141,122,255,122,66,153,254,182,245,134,0,227,228,25,1,214,57,235,255,216,173,56,255,181,231,210,0,119,128,157,255,129,95,136,255,110,126,51,0,2,169,183,255,7,130,98,254,69,176,94,255,116,4,227,1,217,242,145,255,202,173,31,1,105,1,39,255,46,175,69,0,228,47,58,255,215,224,69,254,207,56,69,255,16,254,139,255,23,207,212,255,202,20,126,255,95,213,96,255,9,176,33,0,200,5,207,255,241,42,128,254,35,33,192,255,248,229,196,1,129,17,120,0,251,103,151,255,7,52,112,255,140,56,66,255,40,226,245,255,217,70,37,254,172,214,9,255,72,67,134,1,146,192,214,255,44,38,112,0,68,184,75,255,206,90,251,0,149,235,141,0,181,170,58,0,116,244,239,0,92,157,2,0,102,173,98,0,233,137,96,1,127,49,203,0,5,155,148,0,23,148,9,255,211,122,12,0,34,134,26,255,219,204,136,0,134,8,41,255,224,83,43,254,85,25,247,0,109,127,0,254,169,136,48,0,238,119,219,255,231,173,213,0,206,18,254,254,8,186,7,255,126,9,7,1,111,42,72,0,111,52,236,254,96,63,141,0,147,191,127,254,205,78,192,255,14,106,237,1,187,219,76,0,175,243,187,254,105,89,173,0,85,25,89,1,162,243,148,0,2,118,209,254,33,158,9,0,139,163,46,255,93,70,40,0,108,42,142,254,111,252,142,255,155,223,144,0,51,229,167,255,73,252,155,255,94,116,12,255,152,160,218,255,156,238,37,255,179,234,207,255,197,0,179,255,154,164,141,0,225,196,104,0,10,35,25,254,209,212,242,255,97,253,222,254,184,101,229,0,222,18,127,1,164,136,135,255,30,207,140,254,146,97,243,0,129,192,26,254,201,84,33,255,111,10,78,255,147,81,178,255,4,4,24,0,161,238,215,255,6,141,33,0,53,215,14,255,41,181,208,255,231,139,157,0,179,203,221,255,255,185,113,0,189,226,172,255,113,66,214,255,202,62,45,255,102,64,8,255,78,174,16,254,133,117,68,255,182,120,89,255,133,114,211,0,189,110,21,255,15,10,106,0,41,192,1,0,152,232,121,255,188,60,160,255,153,113,206,255,0,183,226,254,180,13,72,255,176,160,14,254,211,201,134,255,158,24,143,0,127,105,53,0,96,12,189,0,167,215,251,255,159,76,128,254,106,101,225,255,30,252,4,0,146,12,174,0,89,241,178,254,10,229,166,255,123,221,42,254,30,20,212,0,82,128,3,0,48,209,243,0,119,121,64,255,50,227,156,255,0,110,197,1,103,27,144,0,133,59,140,1,189,241,36,255,248,37,195,1,96,220,55,0,183,76,62,255,195,66,61,0,50,76,164,1,225,164,76,255,76,61,163,255,117,62,31,0,81,145,64,255,118,65,14,0,162,115,214,255,6,138,46,0,124,230,244,255,10,138,143,0,52,26,194,0,184,244,76,0,129,143,41,1,190,244,19,255,123,170,122,255,98,129,68,0,121,213,147,0,86,101,30,255,161,103,155,0,140,89,67,255,239,229,190,1,67,11,181,0,198,240,137,254,238,69,188,255,234,113,60,255,37,255,57,255,69,178,182,254,128,208,179,0,118,26,125,254,3,7,214,255,241,50,77,255,85,203,197,255,211,135,250,255,25,48,100,255,187,213,180,254,17,88,105,0,83,209,158,1,5,115,98,0,4,174,60,254,171,55,110,255,217,181,17,255,20,188,170,0,146,156,102,254,87,214,174,255,114,122,155,1,233,44,170,0,127,8,239,1,214,236,234,0,175,5,219,0,49,106,61,255,6,66,208,255,2,106,110,255,81,234,19,255,215,107,192,255,67,151,238,0,19,42,108,255,229,85,113,1,50,68,135,255,17,106,9,0,50,103,1,255,80,1,168,1,35,152,30,255,16,168,185,1,56,89,232,255,101,210,252,0,41,250,71,0,204,170,79,255,14,46,239,255,80,77,239,0,189,214,75,255,17,141,249,0,38,80,76,255,190,85,117,0,86,228,170,0,156,216,208,1,195,207,164,255,150,66,76,255,175,225,16,255,141,80,98,1,76,219,242,0,198,162,114,0,46,218,152,0,155,43,241,254,155,160,104,255,178,9,252,254,100,110,212,0,14,5,167,0,233,239,163,255,28,151,157,1,101,146,10,255,254,158,70,254,71,249,228,0,88,30,50,0,68,58,160,255,191,24,104,1,129,66,129,255,192,50,85,255,8,179,138,255,38,250,201,0,115,80,160,0,131,230,113,0,125,88,147,0,90,68,199,0,253,76,158,0,28,255,118,0,113,250,254,0,66,75,46,0,230,218,43,0,229,120,186,1,148,68,43,0,136,124,238,1,187,107,197,255,84,53,246,255,51,116,254,255,51,187,165,0,2,17,175,0,66,84,160,1,247,58,30,0,35,65,53,254,69,236,191,0,45,134,245,1,163,123,221,0,32,110,20,255,52,23,165,0,186,214,71,0,233,176,96,0,242,239,54,1,57,89,138,0,83,0,84,255,136,160,100,0,92,142,120,254,104,124,190,0,181,177,62,255,250,41,85,0,152,130,42,1,96,252,246,0,151,151,63,254,239,133,62,0,32,56,156,0,45,167,189,255,142,133,179,1,131,86,211,0,187,179,150,254,250,170,14,255,68,113,21,255,222,186,59,255,66,7,241,1,69,6,72,0,86,156,108,254,55,167,89,0,109,52,219,254,13,176,23,255,196,44,106,255,239,149,71,255,164,140,125,255,159,173,1,0,51,41,231,0,145,62,33,0,138,111,93,1,185,83,69,0,144,115,46,0,97,151,16,255,24,228,26,0,49,217,226,0,113,75,234,254,193,153,12,255,182,48,96,255,14,13,26,0,128,195,249,254,69,193,59,0,132,37,81,254,125,106,60,0,214,240,169,1,164,227,66,0,210,163,78,0,37,52,151,0,99,77,26,0,238,156,213,255,213,192,209,1,73,46,84,0,20,65,41,1,54,206,79,0,201,131,146,254,170,111,24,255,177,33,50,254,171,38,203,255,78,247,116,0,209,221,153,0,133,128,178,1,58,44,25,0,201,39,59,1,189,19,252,0,49,229,210,1,117,187,117,0,181,179,184,1,0,114,219,0,48,94,147,0,245,41,56,0,125,13,204,254,244,173,119,0,44,221,32,254,84,234,20,0,249,160,198,1,236,126,234,255,143,62,221,0,129,89,214,255,55,139,5,254,68,20,191,255,14,204,178,1,35,195,217,0,47,51,206,1,38,246,165,0,206,27,6,254,158,87,36,0,217,52,146,255,125,123,215,255,85,60,31,255,171,13,7,0,218,245,88,254,252,35,60,0,55,214,160,255,133,101,56,0,224,32,19,254,147,64,234,0,26,145,162,1,114,118,125,0,248,252,250,0,101,94,196,255,198,141,226,254,51,42,182,0,135,12,9,254,109,172,210,255,197,236,194,1,241,65,154,0,48,156,47,255,153,67,55,255,218,165,34,254,74,180,179,0,218,66,71,1,88,122,99,0,212,181,219,255,92,42,231,255,239,0,154,0,245,77,183,255,94,81,170,1,18,213,216,0,171,93,71,0,52,94,248,0,18,151,161,254,197,209,66,255,174,244,15,254,162,48,183,0,49,61,240,254,182,93,195,0,199,228,6,1,200,5,17,255,137,45,237,255,108,148,4,0,90,79,237,255,39,63,77,255,53,82,207,1,142,22,118,255,101,232,18,1,92,26,67,0,5,200,88,255,33,168,138,255,149,225,72,0,2,209,27,255,44,245,168,1,220,237,17,255,30,211,105,254,141,238,221,0,128,80,245,254,111,254,14,0,222,95,190,1,223,9,241,0,146,76,212,255,108,205,104,255,63,117,153,0,144,69,48,0,35,228,111,0,192,33,193,255,112,214,190,254,115,152,151,0,23,102,88,0,51,74,248,0,226,199,143,254,204,162,101,255,208,97,189,1,245,104,18,0,230,246,30,255,23,148,69,0,110,88,52,254,226,181,89,255,208,47,90,254,114,161,80,255,33,116,248,0,179,152,87,255,69,144,177,1,88,238,26,255,58,32,113,1,1,77,69,0,59,121,52,255,152,238,83,0,52,8,193,0,231,39,233,255,199,34,138,0,222,68,173,0,91,57,242,254,220,210,127,255,192,7,246,254,151,35,187,0,195,236,165,0,111,93,206,0,212,247,133,1,154,133,209,255,155,231,10,0,64,78,38,0,122,249,100,1,30,19,97,255,62,91,249,1,248,133,77,0,197,63,168,254,116,10,82,0,184,236,113,254,212,203,194,255,61,100,252,254,36,5,202,255,119,91,153,255,129,79,29,0,103,103,171,254,237,215,111,255,216,53,69,0,239,240,23,0,194,149,221,255,38,225,222,0,232,255,180,254,118,82,133,255,57,209,177,1,139,232,133,0,158,176,46,254,194,115,46,0,88,247,229,1,28,103,191,0,221,222,175,254,149,235,44,0,151,228,25,254,218,105,103,0,142,85,210,0,149,129,190,255,213,65,94,254,117,134,224,255,82,198,117,0,157,221,220,0,163,101,36,0,197,114,37,0,104,172,166,254,11,182,0,0,81,72,188,255,97,188,16,255,69,6,10,0,199,147,145,255,8,9,115,1,65,214,175,255,217,173,209,0,80,127,166,0,247,229,4,254,167,183,124,255,90,28,204,254,175,59,240,255,11,41,248,1,108,40,51,255,144,177,195,254,150,250,126,0,138,91,65,1,120,60,222,255,245,193,239,0,29,214,189,255,128,2,25,0,80,154,162,0,77,220,107,1,234,205,74,255,54,166,103,255,116,72,9,0,228,94,47,255,30,200,25,255,35,214,89,255,61,176,140,255,83,226,163,255,75,130,172,0,128,38,17,0,95,137,152,255,215,124,159,1,79,93,0,0,148,82,157,254,195,130,251,255,40,202,76,255,251,126,224,0,157,99,62,254,207,7,225,255,96,68,195,0,140,186,157,255,131,19,231,255,42,128,254,0,52,219,61,254,102,203,72,0,141,7,11,255,186,164,213,0,31,122,119,0,133,242,145,0,208,252,232,255,91,213,182,255,143,4,250,254,249,215,74,0,165,30,111,1,171,9,223,0,229,123,34,1,92,130,26,255,77,155,45,1,195,139,28,255,59,224,78,0,136,17,247,0,108,121,32,0,79,250,189,255,96,227,252,254,38,241,62,0,62,174,125,255,155,111,93,255,10,230,206,1,97,197,40,255,0,49,57,254,65,250,13,0,18,251,150,255,220,109,210,255,5,174,166,254,44,129,189,0,235,35,147,255,37,247,141,255,72,141,4,255,103,107,255,0,247,90,4,0,53,44,42,0,2,30,240,0,4,59,63,0,88,78,36,0,113,167,180,0,190,71,193,255,199,158,164,255,58,8,172,0,77,33,12,0,65,63,3,0,153,77,33,255,172,254,102,1,228,221,4,255,87,30,254,1,146,41,86,255,138,204,239,254,108,141,17,255,187,242,135,0,210,208,127,0,68,45,14,254,73,96,62,0,81,60,24,255,170,6,36,255,3,249,26,0,35,213,109,0,22,129,54,255,21,35,225,255,234,61,56,255,58,217,6,0,143,124,88,0,236,126,66,0,209,38,183,255,34,238,6,255,174,145,102,0,95,22,211,0,196,15,153,254,46,84,232,255,117,34,146,1,231,250,74,255,27,134,100,1,92,187,195,255,170,198,112,0,120,28,42,0,209,70,67,0,29,81,31,0,29,168,100,1,169,173,160,0,107,35,117,0,62,96,59,255,81,12,69,1,135,239,190,255,220,252,18,0,163,220,58,255,137,137,188,255,83,102,109,0,96,6,76,0,234,222,210,255,185,174,205,1,60,158,213,255,13,241,214,0,172,129,140,0,93,104,242,0,192,156,251,0,43,117,30,0,225,81,158,0,127,232,218,0,226,28,203,0,233,27,151,255,117,43,5,255,242,14,47,255,33,20,6,0,137,251,44,254,27,31,245,255,183,214,125,254,40,121,149,0,186,158,213,255,89,8,227,0,69,88,0,254,203,135,225,0,201,174,203,0,147,71,184,0,18,121,41,254,94,5,78,0,224,214,240,254,36,5,180,0,251,135,231,1,163,138,212,0,210,249,116,254,88,129,187,0,19,8,49,254,62,14,144,255,159,76,211,0,214,51,82,0,109,117,228,254,103,223,203,255,75,252,15,1,154,71,220,255,23,13,91,1,141,168,96,255,181,182,133,0,250,51,55,0,234,234,212,254,175,63,158,0,39,240,52,1,158,189,36,255,213,40,85,1,32,180,247,255,19,102,26,1,84,24,97,255,69,21,222,0,148,139,122,255,220,213,235,1,232,203,255,0,121,57,147,0,227,7,154,0,53,22,147,1,72,1,225,0,82,134,48,254,83,60,157,255,145,72,169,0,34,103,239,0,198,233,47,0,116,19,4,255,184,106,9,255,183,129,83,0,36,176,230,1,34,103,72,0,219,162,134,0,245,42,158,0,32,149,96,254,165,44,144,0,202,239,72,254,215,150,5,0,42,66,36,1,132,215,175,0,86,174,86,255,26,197,156,255,49,232,135,254,103,182,82,0,253,128,176,1,153,178,122,0,245,250,10,0,236,24,178,0,137,106,132,0,40,29,41,0,50,30,152,255,124,105,38,0,230,191,75,0,143,43,170,0,44,131,20,255,44,13,23,255,237,255,155,1,159,109,100,255,112,181,24,255,104,220,108,0,55,211,131,0,99,12,213,255,152,151,145,255,238,5,159,0,97,155,8,0,33,108,81,0,1,3,103,0,62,109,34,255,250,155,180,0,32,71,195,255,38,70,145,1,159,95,245,0,69,229,101,1,136,28,240,0,79,224,25,0,78,110,121,255,248,168,124,0,187,128,247,0,2,147,235,254,79,11,132,0,70,58,12,1,181,8,163,255,79,137,133,255,37,170,11,255,141,243,85,255,176,231,215,255,204,150,164,255,239,215,39,255,46,87,156,254,8,163,88,255,172,34,232,0,66,44,102,255,27,54,41,254,236,99,87,255,41,123,169,1,52,114,43,0,117,134,40,0,155,134,26,0,231,207,91,254,35,132,38,255,19,102,125,254,36,227,133,255,118,3,113,255,29,13,124,0,152,96,74,1,88,146,206,255,167,191,220,254,162,18,88,255,182,100,23,0,31,117,52,0,81,46,106,1,12,2,7,0,69,80,201,1,209,246,172,0,12,48,141,1,224,211,88,0,116,226,159,0,122,98,130,0,65,236,234,1,225,226,9,255,207,226,123,1,89,214,59,0,112,135,88,1,90,244,203,255,49,11,38,1,129,108,186,0,89,112,15,1,101,46,204,255,127,204,45,254,79,255,221,255,51,73,18,255,127,42,101,255,241,21,202,0,160,227,7,0,105,50,236,0,79,52,197,255,104,202,208,1,180,15,16,0,101,197,78,255,98,77,203,0,41,185,241,1,35,193,124,0,35,155,23,255,207,53,192,0,11,125,163,1,249,158,185,255,4,131,48,0,21,93,111,255,61,121,231,1,69,200,36,255,185,48,185,255,111,238,21,255,39,50,25,255,99,215,163,255,87,212,30,255,164,147,5,255,128,6,35,1,108,223,110,255,194,76,178,0,74,101,180,0,243,47,48,0,174,25,43,255,82,173,253,1,54,114,192,255,40,55,91,0,215,108,176,255,11,56,7,0,224,233,76,0,209,98,202,254,242,25,125,0,44,193,93,254,203,8,177,0,135,176,19,0,112,71,213,255,206,59,176,1,4,67,26,0,14,143,213,254,42,55,208,255,60,67,120,0,193,21,163,0,99,164,115,0,10,20,118,0,156,212,222,254,160,7,217,255,114,245,76,1,117,59,123,0,176,194,86,254,213,15,176,0,78,206,207,254,213,129,59,0,233,251,22,1,96,55,152,255,236,255,15,255,197,89,84,255,93,149,133,0,174,160,113,0,234,99,169,255,152,116,88,0,144,164,83,255,95,29,198,255,34,47,15,255,99,120,134,255,5,236,193,0,249,247,126,255,147,187,30,0,50,230,117,255,108,217,219,255,163,81,166,255,72,25,169,254,155,121,79,255,28,155,89,254,7,126,17,0,147,65,33,1,47,234,253,0,26,51,18,0,105,83,199,255,163,196,230,0,113,248,164,0,226,254,218,0,189,209,203,255,164,247,222,254,255,35,165,0,4,188,243,1,127,179,71,0,37,237,254,255,100,186,240,0,5,57,71,254,103,72,73,255,244,18,81,254,229,210,132,255,238,6,180,255,11,229,174,255,227,221,192,1,17,49,28,0,163,215,196,254,9,118,4,255,51,240,71,0,113,129,109,255,76,240,231,0,188,177,127,0,125,71,44,1,26,175,243,0,94,169,25,254,27,230,29,0,15,139,119,1,168,170,186,255,172,197,76,255,252,75,188,0,137,124,196,0,72,22,96,255,45,151,249,1,220,145,100,0,64,192,159,255,120,239,226,0,129,178,146,0,0,192,125,0,235,138,234,0,183,157,146,0,83,199,192,255,184,172,72,255,73,225,128,0,77,6,250,255,186,65,67,0,104,246,207,0,188,32,138,255,218,24,242,0,67,138,81,254,237,129,121,255,20,207,150,1,41,199,16,255,6,20,128,0,159,118,5,0,181,16,143,255,220,38,15,0,23,64,147,254,73,26,13,0,87,228,57,1,204,124,128,0,43,24,223,0,219,99,199,0,22,75,20,255,19,27,126,0,157,62,215,0,110,29,230,0,179,167,255,1,54,252,190,0,221,204,182,254,179,158,65,255,81,157,3,0,194,218,159,0,170,223,0,0,224,11,32,255,38,197,98,0,168,164,37,0,23,88,7,1,164,186,110,0,96,36,134,0,234,242,229,0,250,121,19,0,242,254,112,255,3,47,94,1,9,239,6,255,81,134,153,254,214,253,168,255,67,124,224,0,245,95,74,0,28,30,44,254,1,109,220,255,178,89,89,0,252,36,76,0,24,198,46,255,76,77,111,0,134,234,136,255,39,94,29,0,185,72,234,255,70,68,135,255,231,102,7,254,77,231,140,0,167,47,58,1,148,97,118,255,16,27,225,1,166,206,143,255,110,178,214,255,180,131,162,0,143,141,225,1,13,218,78,255,114,153,33,1,98,104,204,0,175,114,117,1,167,206,75,0,202,196,83,1,58,64,67,0,138,47,111,1,196,247,128,255,137,224,224,254,158,112,207,0,154,100,255,1,134,37,107,0,198,128,79,255,127,209,155,255,163,254,185,254,60,14,243,0,31,219,112,254,29,217,65,0,200,13,116,254,123,60,196,255,224,59,184,254,242,89,196,0,123,16,75,254,149,16,206,0,69,254,48,1,231,116,223,255,209,160,65,1,200,80,98,0,37,194,184,254,148,63,34,0,139,240,65,255,217,144,132,255,56,38,45,254,199,120,210,0,108,177,166,255,160,222,4,0,220,126,119,254,165,107,160,255,82,220,248,1,241,175,136,0,144,141,23,255,169,138,84,0,160,137,78,255,226,118,80,255,52,27,132,255,63,96,139,255,152,250,39,0,188,155,15,0,232,51,150,254,40,15,232,255,240,229,9,255,137,175,27,255,75,73,97,1,218,212,11,0,135,5,162,1,107,185,213,0,2,249,107,255,40,242,70,0,219,200,25,0,25,157,13,0,67,82,80,255,196,249,23,255,145,20,149,0,50,72,146,0,94,76,148,1,24,251,65,0,31,192,23,0,184,212,201,255,123,233,162,1,247,173,72,0,162,87,219,254,126,134,89,0,159,11,12,254,166,105,29,0,73,27,228,1,113,120,183,255,66,163,109,1,212,143,11,255,159,231,168,1,255,128,90,0,57,14,58,254,89,52,10,255,253,8,163,1,0,145,210,255,10,129,85,1,46,181,27,0,103,136,160,254,126,188,209,255,34,35,111,0,215,219,24,255,212,11,214,254,101,5,118,0,232,197,133,255,223,167,109,255,237,80,86,255,70,139,94,0,158,193,191,1,155,15,51,255,15,190,115,0,78,135,207,255,249,10,27,1,181,125,233,0,95,172,13,254,170,213,161,255,39,236,138,255,95,93,87,255,190,128,95,0,125,15,206,0,166,150,159,0,227,15,158,255,206,158,120,255,42,141,128,0,101,178,120,1,156,109,131,0,218,14,44,254,247,168,206,255,212,112,28,0,112,17,228,255,90,16,37,1,197,222,108,0,254,207,83,255,9,90,243,255,243,244,172,0,26,88,115,255,205,116,122,0,191,230,193,0,180,100,11,1,217,37,96,255,154,78,156,0,235,234,31,255,206,178,178,255,149,192,251,0,182,250,135,0,246,22,105,0,124,193,109,255,2,210,149,255,169,17,170,0,0,96,110,255,117,9,8,1,50,123,40,255,193,189,99,0,34,227,160,0,48,80,70,254,211,51,236,0,45,122,245,254,44,174,8,0,173,37,233,255,158,65,171,0,122,69,215,255,90,80,2,255,131,106,96,254,227,114,135,0,205,49,119,254,176,62,64,255,82,51,17,255,241,20,243,255,130,13,8,254,128,217,243,255,162,27,1,254,90,118,241,0,246,198,246,255,55,16,118,255,200,159,157,0,163,17,1,0,140,107,121,0,85,161,118,255,38,0,149,0,156,47,238,0,9,166,166,1,75,98,181,255,50,74,25,0,66,15,47,0,139,225,159,0,76,3,142,255,14,238,184,0,11,207,53,255,183,192,186,1,171,32,174,255,191,76,221,1,247,170,219,0,25,172,50,254,217,9,233,0,203,126,68,255,183,92,48,0,127,167,183,1,65,49,254,0,16,63,127,1,254,21,170,255,59,224,127,254,22,48,63,255,27,78,130,254,40,195,29,0,250,132,112,254,35,203,144,0,104,169,168,0,207,253,30,255,104,40,38,254,94,228,88,0,206,16,128,255,212,55,122,255,223,22,234,0,223,197,127,0,253,181,181,1,145,102,118,0,236,153,36,255,212,217,72,255,20,38,24,254,138,62,62,0,152,140,4,0,230,220,99,255,1,21,212,255,148,201,231,0,244,123,9,254,0,171,210,0,51,58,37,255,1,255,14,255,244,183,145,254,0,242,166,0,22,74,132,0,121,216,41,0,95,195,114,254,133,24,151,255,156,226,231,255,247,5,77,255,246,148,115,254,225,92,81,255,222,80,246,254,170,123,89,255,74,199,141,0,29,20,8,255,138,136,70,255,93,75,92,0,221,147,49,254,52,126,226,0,229,124,23,0,46,9,181,0,205,64,52,1,131,254,28,0,151,158,212,0,131,64,78,0,206,25,171,0,0,230,139,0,191,253,110,254,103,247,167,0,64,40,40,1,42,165,241,255,59,75,228,254,124,243,189,255,196,92,178,255,130,140,86,255,141,89,56,1,147,198,5,255,203,248,158,254,144,162,141,0,11,172,226,0,130,42,21,255,1,167,143,255,144,36,36,255,48,88,164,254,168,170,220,0,98,71,214,0,91,208,79,0,159,76,201,1,166,42,214,255,69,255,0,255,6,128,125,255,190,1,140,0,146,83,218,255,215,238,72,1,122,127,53,0,189,116,165,255,84,8,66,255,214,3,208,255,213,110,133,0,195,168,44,1,158,231,69,0,162,64,200,254,91,58,104,0,182,58,187,254,249,228,136,0,203,134,76,254,99,221,233,0,75,254,214,254,80,69,154,0,64,152,248,254,236,136,202,255,157,105,153,254,149,175,20,0,22,35,19,255,124,121,233,0,186,250,198,254,132,229,139,0,137,80,174,255,165,125,68,0,144,202,148,254,235,239,248,0,135,184,118,0,101,94,17,255,122,72,70,254,69,130,146,0,127,222,248,1,69,127,118,255,30,82,215,254,188,74,19,255,229,167,194,254,117,25,66,255,65,234,56,254,213,22,156,0,151,59,93,254,45,28,27,255,186,126,164,255,32,6,239,0,127,114,99,1,219,52,2,255,99,96,166,254,62,190,126,255,108,222,168,1,75,226,174,0,230,226,199,0,60,117,218,255,252,248,20,1,214,188,204,0,31,194,134,254,123,69,192,255,169,173,36,254,55,98,91,0,223,42,102,254,137,1,102,0,157,90,25,0,239,122,64,255,252,6,233,0,7,54,20,255,82,116,174,0,135,37,54,255,15,186,125,0,227,112,175,255,100,180,225,255,42,237,244,255,244,173,226,254,248,18,33,0,171,99,150,255,74,235,50,255,117,82,32,254,106,168,237,0,207,109,208,1,228,9,186,0,135,60,169,254,179,92,143,0,244,170,104,255,235,45,124,255,70,99,186,0,117,137,183,0,224,31,215,0,40,9,100,0,26,16,95,1,68,217,87,0,8,151,20,255,26,100,58,255,176,165,203,1,52,118,70,0,7,32,254,254,244,254,245,255,167,144,194,255,125,113,23,255,176,121,181,0,136,84,209,0,138,6,30,255,89,48,28,0,33,155,14,255,25,240,154,0,141,205,109,1,70,115,62,255,20,40,107,254,138,154,199,255,94,223,226,255,157,171,38,0,163,177,25,254,45,118,3,255,14,222,23,1,209,190,81,255,118,123,232,1,13,213,101,255,123,55,123,254,27,246,165,0,50,99,76,255,140,214,32,255,97,65,67,255,24,12,28,0,174,86,78,1,64,247,96,0,160,135,67,0,66,55,243,255,147,204,96,255,26,6,33,255,98,51,83,1,153,213,208,255,2,184,54,255,25,218,11,0,49,67,246,254,18,149,72,255,13,25,72,0,42,79,214,0,42,4,38,1,27,139,144,255,149,187,23,0,18,164,132,0,245,84,184,254,120,198,104,255,126,218,96,0,56,117,234,255,13,29,214,254,68,47,10,255,167,154,132,254,152,38,198,0,66,178,89,255,200,46,171,255,13,99,83,255,210,187,253,255,170,45,42,1,138,209,124,0,214,162,141,0,12,230,156,0,102,36,112,254,3,147,67,0,52,215,123,255,233,171,54,255,98,137,62,0,247,218,39,255,231,218,236,0,247,191,127,0,195,146,84,0,165,176,92,255,19,212,94,255,17,74,227,0,88,40,153,1,198,147,1,255,206,67,245,254,240,3,218,255,61,141,213,255,97,183,106,0,195,232,235,254,95,86,154,0,209,48,205,254,118,209,241,255,240,120,223,1,213,29,159,0,163,127,147,255,13,218,93,0,85,24,68,254,70,20,80,255,189,5,140,1,82,97,254,255,99,99,191,255,132,84,133,255,107,218,116,255,112,122,46,0,105,17,32,0,194,160,63,255,68,222,39,1,216,253,92,0,177,105,205,255,149,201,195,0,42,225,11,255,40,162,115,0,9,7,81,0,165,218,219,0,180,22,0,254,29,146,252,255,146,207,225,1,180,135,96,0,31,163,112,0,177,11,219,255,133,12,193,254,43,78,50,0,65,113,121,1,59,217,6,255,110,94,24,1,112,172,111,0,7,15,96,0,36,85,123,0,71,150,21,255,208,73,188,0,192,11,167,1,213,245,34,0,9,230,92,0,162,142,39,255,215,90,27,0,98,97,89,0,94,79,211,0,90,157,240,0,95,220,126,1,102,176,226,0,36,30,224,254,35,31,127,0,231,232,115,1,85,83,130,0,210,73,245,255,47,143,114,255,68,65,197,0,59,72,62,255,183,133,173,254,93,121,118,255,59,177,81,255,234,69,173,255,205,128,177,0,220,244,51,0,26,244,209,1,73,222,77,255,163,8,96,254,150,149,211,0,158,254,203,1,54,127,139,0,161,224,59,0,4,109,22,255,222,42,45,255,208,146,102,255,236,142,187,0,50,205,245,255,10,74,89,254,48,79,142,0,222,76,130,255,30,166,63,0,236,12,13,255,49,184,244,0,187,113,102,0,218,101,253,0,153,57,182,254,32,150,42,0,25,198,146,1,237,241,56,0,140,68,5,0,91,164,172,255,78,145,186,254,67,52,205,0,219,207,129,1,109,115,17,0,54,143,58,1,21,248,120,255,179,255,30,0,193,236,66,255,1,255,7,255,253,192,48,255,19,69,217,1,3,214,0,255,64,101,146,1,223,125,35,255,235,73,179,255,249,167,226,0,225,175,10,1,97,162,58,0,106,112,171,1,84,172,5,255,133,140,178,255,134,245,142,0,97,90,125,255,186,203,185,255,223,77,23,255,192,92,106,0,15,198,115,255,217,152,248,0,171,178,120,255,228,134,53,0,176,54,193,1,250,251,53,0,213,10,100,1,34,199,106,0,151,31,244,254,172,224,87,255,14,237,23,255,253,85,26,255,127,39,116,255,172,104,100,0,251,14,70,255,212,208,138,255,253,211,250,0,176,49,165,0,15,76,123,255,37,218,160,255,92,135,16,1,10,126,114,255,70,5,224,255,247,249,141,0,68,20,60,1,241,210,189,255,195,217,187,1,151,3,113,0,151,92,174,0,231,62,178,255,219,183,225,0,23,23,33,255,205,181,80,0,57,184,248,255,67,180,1,255,90,123,93,255,39,0,162,255,96,248,52,255,84,66,140,0,34,127,228,255,194,138,7,1,166,110,188,0,21,17,155,1,154,190,198,255,214,80,59,255,18,7,143,0,72,29,226,1,199,217,249,0,232,161,71,1,149,190,201,0,217,175,95,254,113,147,67,255,138,143,199,255,127,204,1,0,29,182,83,1,206,230,155,255,186,204,60,0,10,125,85,255,232,96,25,255,255,89,247,255,213,254,175,1,232,193,81,0,28,43,156,254,12,69,8,0,147,24,248,0,18,198,49,0,134,60,35,0,118,246,18,255,49,88,254,254,228,21,186,255,182,65,112,1,219,22,1,255,22,126,52,255,189,53,49,255,112,25,143,0,38,127,55,255,226,101,163,254,208,133,61,255,137,69,174,1,190,118,145,255,60,98,219,255,217,13,245,255,250,136,10,0,84,254,226,0,201,31,125,1,240,51,251,255,31,131,130,255,2,138,50,255,215,215,177,1,223,12,238,255,252,149,56,255,124,91,68,255,72,126,170,254,119,255,100,0,130,135,232,255,14,79,178,0,250,131,197,0,138,198,208,0,121,216,139,254,119,18,36,255,29,193,122,0,16,42,45,255,213,240,235,1,230,190,169,255,198,35,228,254,110,173,72,0,214,221,241,255,56,148,135,0,192,117,78,254,141,93,207,255,143,65,149,0,21,18,98,255,95,44,244,1,106,191,77,0,254,85,8,254,214,110,176,255,73,173,19,254,160,196,199,255,237,90,144,0,193,172,113,255,200,155,136,254,228,90,221,0,137,49,74,1,164,221,215,255,209,189,5,255,105,236,55,255,42,31,129,1,193,255,236,0,46,217,60,0,138,88,187,255,226,82,236,255,81,69,151,255,142,190,16,1,13,134,8,0,127,122,48,255,81,64,156,0,171,243,139,0,237,35,246,0,122,143,193,254,212,122,146,0,95,41,255,1,87,132,77,0,4,212,31,0,17,31,78,0,39,45,173,254,24,142,217,255,95,9,6,255,227,83,6,0,98,59,130,254,62,30,33,0,8,115,211,1,162,97,128,255,7,184,23,254,116,28,168,255,248,138,151,255,98,244,240,0,186,118,130,0,114,248,235,255,105,173,200,1,160,124,71,255,94,36,164,1,175,65,146,255,238,241,170,254,202,198,197,0,228,71,138,254,45,246,109,255,194,52,158,0,133,187,176,0,83,252,154,254,89,189,221,255,170,73,252,0,148,58,125,0,36,68,51,254,42,69,177,255,168,76,86,255,38,100,204,255,38,53,35,0,175,19,97,0,225,238,253,255,81,81,135,0,210,27,255,254,235,73,107,0,8,207,115,0,82,127,136,0,84,99,21,254,207,19,136,0,100,164,101,0,80,208,77,255,132,207,237,255,15,3,15,255,33,166,110,0,156,95,85,255,37,185,111,1,150,106,35,255,166,151,76,0,114,87,135,255,159,194,64,0,12,122,31,255,232,7,101,254,173,119,98,0,154,71,220,254,191,57,53,255,168,232,160,255,224,32,99,255,218,156,165,0,151,153,163,0,217,13,148,1,197,113,89,0,149,28,161,254,207,23,30,0,105,132,227,255,54,230,94,255,133,173,204,255,92,183,157,255,88,144,252,254,102,33,90,0,159,97,3,0,181,218,155,255,240,114,119,0,106,214,53,255,165,190,115,1,152,91,225,255,88,106,44,255,208,61,113,0,151,52,124,0,191,27,156,255,110,54,236,1,14,30,166,255,39,127,207,1,229,199,28,0,188,228,188,254,100,157,235,0,246,218,183,1,107,22,193,255,206,160,95,0,76,239,147,0,207,161,117,0,51,166,2,255,52,117,10,254,73,56,227,255,152,193,225,0,132,94,136,255,101,191,209,0,32,107,229,255,198,43,180,1,100,210,118,0,114,67,153,255,23,88,26,255,89,154,92,1,220,120,140,255,144,114,207,255,252,115,250,255,34,206,72,0,138,133,127,255,8,178,124,1,87,75,97,0,15,229,92,254,240,67,131,255,118,123,227,254,146,120,104,255,145,213,255,1,129,187,70,255,219,119,54,0,1,19,173,0,45,150,148,1,248,83,72,0,203,233,169,1,142,107,56,0,247,249,38,1,45,242,80,255,30,233,103,0,96,82,70,0,23,201,111,0,81,39,30,255,161,183,78,255,194,234,33,255,68,227,140,254,216,206,116,0,70,27,235,255,104,144,79,0,164,230,93,254,214,135,156,0,154,187,242,254,188,20,131,255,36,109,174,0,159,112,241,0,5,110,149,1,36,165,218,0,166,29,19,1,178,46,73,0,93,43,32,254,248,189,237,0,102,155,141,0,201,93,195,255,241,139,253,255,15,111,98,255,108,65,163,254,155,79,190,255,73,174,193,254,246,40,48,255,107,88,11,254,202,97,85,255,253,204,18,255,113,242,66,0,110,160,194,254,208,18,186,0,81,21,60,0,188,104,167,255,124,166,97,254,210,133,142,0,56,242,137,254,41,111,130,0,111,151,58,1,111,213,141,255,183,172,241,255,38,6,196,255,185,7,123,255,46,11,246,0,245,105,119,1,15,2,161,255,8,206,45,255,18,202,74,255,83,124,115,1,212,141,157,0,83,8,209,254,139,15,232,255,172,54,173,254,50,247,132,0,214,189,213,0,144,184,105,0,223,254,248,0,255,147,240,255,23,188,72,0,7,51,54,0,188,25,180,254,220,180,0,255,83,160,20,0,163,189,243,255,58,209,194,255,87,73,60,0,106,24,49,0,245,249,220,0,22,173,167,0,118,11,195,255,19,126,237,0,110,159,37,255,59,82,47,0,180,187,86,0,188,148,208,1,100,37,133,255,7,112,193,0,129,188,156,255,84,106,129,255,133,225,202,0,14,236,111,255,40,20,101,0,172,172,49,254,51,54,74,255,251,185,184,255,93,155,224,255,180,249,224,1,230,178,146,0,72,57,54,254,178,62,184,0,119,205,72,0,185,239,253,255,61,15,218,0,196,67,56,255,234,32,171,1,46,219,228,0,208,108,234,255,20,63,232,255,165,53,199,1,133,228,5,255,52,205,107,0,74,238,140,255,150,156,219,254,239,172,178,255,251,189,223,254,32,142,211,255,218,15,138,1,241,196,80,0,28,36,98,254,22,234,199,0,61,237,220,255,246,57,37,0,142,17,142,255,157,62,26,0,43,238,95,254,3,217,6,255,213,25,240,1,39,220,174,255,154,205,48,254,19,13,192,255,244,34,54,254,140,16,155,0,240,181,5,254,155,193,60,0,166,128,4,255,36,145,56,255,150,240,219,0,120,51,145,0,82,153,42,1,140,236,146,0,107,92,248,1,189,10,3,0,63,136,242,0,211,39,24,0,19,202,161,1,173,27,186,255,210,204,239,254,41,209,162,255,182,254,159,255,172,116,52,0,195,103,222,254,205,69,59,0,53,22,41,1,218,48,194,0,80,210,242,0,210,188,207,0,187,161,161,254,216,17,1,0,136,225,113,0,250,184,63,0,223,30,98,254,77,168,162,0,59,53,175,0,19,201,10,255,139,224,194,0,147,193,154,255,212,189,12,254,1,200,174,255,50,133,113,1,94,179,90,0,173,182,135,0,94,177,113,0,43,89,215,255,136,252,106,255,123,134,83,254,5,245,66,255,82,49,39,1,220,2,224,0,97,129,177,0,77,59,89,0,61,29,155,1,203,171,220,255,92,78,139,0,145,33,181,255,169,24,141,1,55,150,179,0,139,60,80,255,218,39,97,0,2,147,107,255,60,248,72,0,173,230,47,1,6,83,182,255,16,105,162,254,137,212,81,255,180,184,134,1,39,222,164,255,221,105,251,1,239,112,125,0,63,7,97,0,63,104,227,255,148,58,12,0,90,60,224,255,84,212,252,0,79,215,168,0,248,221,199,1,115,121,1,0,36,172,120,0,32,162,187,255,57,107,49,255,147,42,21,0,106,198,43,1,57,74,87,0,126,203,81,255,129,135,195,0,140,31,177,0,221,139,194,0,3,222,215,0,131,68,231,0,177,86,178,254,124,151,180,0,184,124,38,1,70,163,17,0,249,251,181,1,42,55,227,0,226,161,44,0,23,236,110,0,51,149,142,1,93,5,236,0,218,183,106,254,67,24,77,0,40,245,209,255,222,121,153,0,165,57,30,0,83,125,60,0,70,38,82,1,229,6,188,0,109,222,157,255,55,118,63,255,205,151,186,0,227,33,149,255,254,176,246,1,227,177,227,0,34,106,163,254,176,43,79,0,106,95,78,1,185,241,122,255,185,14,61,0,36,1,202,0,13,178,162,255,247,11,132,0,161,230,92,1,65,1,185,255,212,50,165,1,141,146,64,255,158,242,218,0,21,164,125,0,213,139,122,1,67,71,87,0,203,158,178,1,151,92,43,0,152,111,5,255,39,3,239,255,217,255,250,255,176,63,71,255,74,245,77,1,250,174,18,255,34,49,227,255,246,46,251,255,154,35,48,1,125,157,61,255,106,36,78,255,97,236,153,0,136,187,120,255,113,134,171,255,19,213,217,254,216,94,209,255,252,5,61,0,94,3,202,0,3,26,183,255,64,191,43,255,30,23,21,0,129,141,77,255,102,120,7,1,194,76,140,0,188,175,52,255,17,81,148,0,232,86,55,1,225,48,172,0,134,42,42,255,238,50,47,0,169,18,254,0,20,147,87,255,14,195,239,255,69,247,23,0,238,229,128,255,177,49,112,0,168,98,251,255,121,71,248,0,243,8,145,254,246,227,153,255,219,169,177,254,251,139,165,255,12,163,185,255,164,40,171,255,153,159,27,254,243,109,91,255,222,24,112,1,18,214,231,0,107,157,181,254,195,147,0,255,194,99,104,255,89,140,190,255,177,66,126,254,106,185,66,0,49,218,31,0,252,174,158,0,188,79,230,1,238,41,224,0,212,234,8,1,136,11,181,0,166,117,83,255,68,195,94,0,46,132,201,0,240,152,88,0,164,57,69,254,160,224,42,255,59,215,67,255,119,195,141,255,36,180,121,254,207,47,8,255,174,210,223,0,101,197,68,255,255,82,141,1,250,137,233,0,97,86,133,1,16,80,69,0,132,131,159,0,116,93,100,0,45,141,139,0,152,172,157,255,90,43,91,0,71,153,46,0,39,16,112,255,217,136,97,255,220,198,25,254,177,53,49,0,222,88,134,255,128,15,60,0,207,192,169,255,192,116,209,255,106,78,211,1,200,213,183,255,7,12,122,254,222,203,60,255,33,110,199,254,251,106,117,0,228,225,4,1,120,58,7,255,221,193,84,254,112,133,27,0,189,200,201,255,139,135,150,0,234,55,176,255,61,50,65,0,152,108,169,255,220,85,1,255,112,135,227,0,162,26,186,0,207,96,185,254,244,136,107,0,93,153,50,1,198,97,151,0,110,11,86,255,143,117,174,255,115,212,200,0,5,202,183,0,237,164,10,254,185,239,62,0,236,120,18,254,98,123,99,255,168,201,194,254,46,234,214,0,191,133,49,255,99,169,119,0,190,187,35,1,115,21,45,255,249,131,72,0,112,6,123,255,214,49,181,254,166,233,34,0,92,197,102,254,253,228,205,255,3,59,201,1,42,98,46,0,219,37,35,255,169,195,38,0,94,124,193,1,156,43,223,0,95,72,133,254,120,206,191,0,122,197,239,255,177,187,79,255,254,46,2,1,250,167,190,0,84,129,19,0,203,113,166,255,249,31,189,254,72,157,202,255,208,71,73,255,207,24,72,0,10,16,18,1,210,81,76,255,88,208,192,255,126,243,107,255,238,141,120,255,199,121,234,255,137,12,59,255,36,220,123,255,148,179,60,254,240,12,29,0,66,0,97,1,36,30,38,255,115,1,93,255,96,103,231,255], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE); /* memory initializer */ allocate([197,158,59,1,192,164,240,0,202,202,57,255,24,174,48,0,89,77,155,1,42,76,215,0,244,151,233,0,23,48,81,0,239,127,52,254,227,130,37,255,248,116,93,1,124,132,118,0,173,254,192,1,6,235,83,255,110,175,231,1,251,28,182,0,129,249,93,254,84,184,128,0,76,181,62,0,175,128,186,0,100,53,136,254,109,29,226,0,221,233,58,1,20,99,74,0,0,22,160,0,134,13,21,0,9,52,55,255,17,89,140,0,175,34,59,0,84,165,119,255,224,226,234,255,7,72,166,255,123,115,255,1,18,214,246,0,250,7,71,1,217,220,185,0,212,35,76,255,38,125,175,0,189,97,210,0,114,238,44,255,41,188,169,254,45,186,154,0,81,92,22,0,132,160,193,0,121,208,98,255,13,81,44,255,203,156,82,0,71,58,21,255,208,114,191,254,50,38,147,0,154,216,195,0,101,25,18,0,60,250,215,255,233,132,235,255,103,175,142,1,16,14,92,0,141,31,110,254,238,241,45,255,153,217,239,1,97,168,47,255,249,85,16,1,28,175,62,255,57,254,54,0,222,231,126,0,166,45,117,254,18,189,96,255,228,76,50,0,200,244,94,0,198,152,120,1,68,34,69,255,12,65,160,254,101,19,90,0,167,197,120,255,68,54,185,255,41,218,188,0,113,168,48,0,88,105,189,1,26,82,32,255,185,93,164,1,228,240,237,255,66,182,53,0,171,197,92,255,107,9,233,1,199,120,144,255,78,49,10,255,109,170,105,255,90,4,31,255,28,244,113,255,74,58,11,0,62,220,246,255,121,154,200,254,144,210,178,255,126,57,129,1,43,250,14,255,101,111,28,1,47,86,241,255,61,70,150,255,53,73,5,255,30,26,158,0,209,26,86,0,138,237,74,0,164,95,188,0,142,60,29,254,162,116,248,255,187,175,160,0,151,18,16,0,209,111,65,254,203,134,39,255,88,108,49,255,131,26,71,255,221,27,215,254,104,105,93,255,31,236,31,254,135,0,211,255,143,127,110,1,212,73,229,0,233,67,167,254,195,1,208,255,132,17,221,255,51,217,90,0,67,235,50,255,223,210,143,0,179,53,130,1,233,106,198,0,217,173,220,255,112,229,24,255,175,154,93,254,71,203,246,255,48,66,133,255,3,136,230,255,23,221,113,254,235,111,213,0,170,120,95,254,251,221,2,0,45,130,158,254,105,94,217,255,242,52,180,254,213,68,45,255,104,38,28,0,244,158,76,0,161,200,96,255,207,53,13,255,187,67,148,0,170,54,248,0,119,162,178,255,83,20,11,0,42,42,192,1,146,159,163,255,183,232,111,0,77,229,21,255,71,53,143,0,27,76,34,0,246,136,47,255,219,39,182,255,92,224,201,1,19,142,14,255,69,182,241,255,163,118,245,0,9,109,106,1,170,181,247,255,78,47,238,255,84,210,176,255,213,107,139,0,39,38,11,0,72,21,150,0,72,130,69,0,205,77,155,254,142,133,21,0,71,111,172,254,226,42,59,255,179,0,215,1,33,128,241,0,234,252,13,1,184,79,8,0,110,30,73,255,246,141,189,0,170,207,218,1,74,154,69,255,138,246,49,255,155,32,100,0,125,74,105,255,90,85,61,255,35,229,177,255,62,125,193,255,153,86,188,1,73,120,212,0,209,123,246,254,135,209,38,255,151,58,44,1,92,69,214,255,14,12,88,255,252,153,166,255,253,207,112,255,60,78,83,255,227,124,110,0,180,96,252,255,53,117,33,254,164,220,82,255,41,1,27,255,38,164,166,255,164,99,169,254,61,144,70,255,192,166,18,0,107,250,66,0,197,65,50,0,1,179,18,255,255,104,1,255,43,153,35,255,80,111,168,0,110,175,168,0,41,105,45,255,219,14,205,255,164,233,140,254,43,1,118,0,233,67,195,0,178,82,159,255,138,87,122,255,212,238,90,255,144,35,124,254,25,140,164,0,251,215,44,254,133,70,107,255,101,227,80,254,92,169,55,0,215,42,49,0,114,180,85,255,33,232,27,1,172,213,25,0,62,176,123,254,32,133,24,255,225,191,62,0,93,70,153,0,181,42,104,1,22,191,224,255,200,200,140,255,249,234,37,0,149,57,141,0,195,56,208,255,254,130,70,255,32,173,240,255,29,220,199,0,110,100,115,255,132,229,249,0,228,233,223,255,37,216,209,254,178,177,209,255,183,45,165,254,224,97,114,0,137,97,168,255,225,222,172,0,165,13,49,1,210,235,204,255,252,4,28,254,70,160,151,0,232,190,52,254,83,248,93,255,62,215,77,1,175,175,179,255,160,50,66,0,121,48,208,0,63,169,209,255,0,210,200,0,224,187,44,1,73,162,82,0,9,176,143,255,19,76,193,255,29,59,167,1,24,43,154,0,28,190,190,0,141,188,129,0,232,235,203,255,234,0,109,255,54,65,159,0,60,88,232,255,121,253,150,254,252,233,131,255,198,110,41,1,83,77,71,255,200,22,59,254,106,253,242,255,21,12,207,255,237,66,189,0,90,198,202,1,225,172,127,0,53,22,202,0,56,230,132,0,1,86,183,0,109,190,42,0,243,68,174,1,109,228,154,0,200,177,122,1,35,160,183,255,177,48,85,255,90,218,169,255,248,152,78,0,202,254,110,0,6,52,43,0,142,98,65,255,63,145,22,0,70,106,93,0,232,138,107,1,110,179,61,255,211,129,218,1,242,209,92,0,35,90,217,1,182,143,106,255,116,101,217,255,114,250,221,255,173,204,6,0,60,150,163,0,73,172,44,255,239,110,80,255,237,76,153,254,161,140,249,0,149,232,229,0,133,31,40,255,174,164,119,0,113,51,214,0,129,228,2,254,64,34,243,0,107,227,244,255,174,106,200,255,84,153,70,1,50,35,16,0,250,74,216,254,236,189,66,255,153,249,13,0,230,178,4,255,221,41,238,0,118,227,121,255,94,87,140,254,254,119,92,0,73,239,246,254,117,87,128,0,19,211,145,255,177,46,252,0,229,91,246,1,69,128,247,255,202,77,54,1,8,11,9,255,153,96,166,0,217,214,173,255,134,192,2,1,0,207,0,0,189,174,107,1,140,134,100,0,158,193,243,1,182,102,171,0,235,154,51,0,142,5,123,255,60,168,89,1,217,14,92,255,19,214,5,1,211,167,254,0,44,6,202,254,120,18,236,255,15,113,184,255,184,223,139,0,40,177,119,254,182,123,90,255,176,165,176,0,247,77,194,0,27,234,120,0,231,0,214,255,59,39,30,0,125,99,145,255,150,68,68,1,141,222,248,0,153,123,210,255,110,127,152,255,229,33,214,1,135,221,197,0,137,97,2,0,12,143,204,255,81,41,188,0,115,79,130,255,94,3,132,0,152,175,187,255,124,141,10,255,126,192,179,255,11,103,198,0,149,6,45,0,219,85,187,1,230,18,178,255,72,182,152,0,3,198,184,255,128,112,224,1,97,161,230,0,254,99,38,255,58,159,197,0,151,66,219,0,59,69,143,255,185,112,249,0,119,136,47,255,123,130,132,0,168,71,95,255,113,176,40,1,232,185,173,0,207,93,117,1,68,157,108,255,102,5,147,254,49,97,33,0,89,65,111,254,247,30,163,255,124,217,221,1,102,250,216,0,198,174,75,254,57,55,18,0,227,5,236,1,229,213,173,0,201,109,218,1,49,233,239,0,30,55,158,1,25,178,106,0,155,111,188,1,94,126,140,0,215,31,238,1,77,240,16,0,213,242,25,1,38,71,168,0,205,186,93,254,49,211,140,255,219,0,180,255,134,118,165,0,160,147,134,255,110,186,35,255,198,243,42,0,243,146,119,0,134,235,163,1,4,241,135,255,193,46,193,254,103,180,79,255,225,4,184,254,242,118,130,0,146,135,176,1,234,111,30,0,69,66,213,254,41,96,123,0,121,94,42,255,178,191,195,255,46,130,42,0,117,84,8,255,233,49,214,254,238,122,109,0,6,71,89,1,236,211,123,0,244,13,48,254,119,148,14,0,114,28,86,255,75,237,25,255,145,229,16,254,129,100,53,255,134,150,120,254,168,157,50,0,23,72,104,255,224,49,14,0,255,123,22,255,151,185,151,255,170,80,184,1,134,182,20,0,41,100,101,1,153,33,16,0,76,154,111,1,86,206,234,255,192,160,164,254,165,123,93,255,1,216,164,254,67,17,175,255,169,11,59,255,158,41,61,255,73,188,14,255,195,6,137,255,22,147,29,255,20,103,3,255,246,130,227,255,122,40,128,0,226,47,24,254,35,36,32,0,152,186,183,255,69,202,20,0,195,133,195,0,222,51,247,0,169,171,94,1,183,0,160,255,64,205,18,1,156,83,15,255,197,58,249,254,251,89,110,255,50,10,88,254,51,43,216,0,98,242,198,1,245,151,113,0,171,236,194,1,197,31,199,255,229,81,38,1,41,59,20,0,253,104,230,0,152,93,14,255,246,242,146,254,214,169,240,255,240,102,108,254,160,167,236,0,154,218,188,0,150,233,202,255,27,19,250,1,2,71,133,255,175,12,63,1,145,183,198,0,104,120,115,255,130,251,247,0,17,212,167,255,62,123,132,255,247,100,189,0,155,223,152,0,143,197,33,0,155,59,44,255,150,93,240,1,127,3,87,255,95,71,207,1,167,85,1,255,188,152,116,255,10,23,23,0,137,195,93,1,54,98,97,0,240,0,168,255,148,188,127,0,134,107,151,0,76,253,171,0,90,132,192,0,146,22,54,0,224,66,54,254,230,186,229,255,39,182,196,0,148,251,130,255,65,131,108,254,128,1,160,0,169,49,167,254,199,254,148,255,251,6,131,0,187,254,129,255,85,82,62,0,178,23,58,255,254,132,5,0,164,213,39,0,134,252,146,254,37,53,81,255,155,134,82,0,205,167,238,255,94,45,180,255,132,40,161,0,254,111,112,1,54,75,217,0,179,230,221,1,235,94,191,255,23,243,48,1,202,145,203,255,39,118,42,255,117,141,253,0,254,0,222,0,43,251,50,0,54,169,234,1,80,68,208,0,148,203,243,254,145,7,135,0,6,254,0,0,252,185,127,0,98,8,129,255,38,35,72,255,211,36,220,1,40,26,89,0,168,64,197,254,3,222,239,255,2,83,215,254,180,159,105,0,58,115,194,0,186,116,106,255,229,247,219,255,129,118,193,0,202,174,183,1,166,161,72,0,201,107,147,254,237,136,74,0,233,230,106,1,105,111,168,0,64,224,30,1,1,229,3,0,102,151,175,255,194,238,228,255,254,250,212,0,187,237,121,0,67,251,96,1,197,30,11,0,183,95,204,0,205,89,138,0,64,221,37,1,255,223,30,255,178,48,211,255,241,200,90,255,167,209,96,255,57,130,221,0,46,114,200,255,61,184,66,0,55,182,24,254,110,182,33,0,171,190,232,255,114,94,31,0,18,221,8,0,47,231,254,0,255,112,83,0,118,15,215,255,173,25,40,254,192,193,31,255,238,21,146,255,171,193,118,255,101,234,53,254,131,212,112,0,89,192,107,1,8,208,27,0,181,217,15,255,231,149,232,0,140,236,126,0,144,9,199,255,12,79,181,254,147,182,202,255,19,109,182,255,49,212,225,0,74,163,203,0,175,233,148,0,26,112,51,0,193,193,9,255,15,135,249,0,150,227,130,0,204,0,219,1,24,242,205,0,238,208,117,255,22,244,112,0,26,229,34,0,37,80,188,255,38,45,206,254,240,90,225,255,29,3,47,255,42,224,76,0,186,243,167,0,32,132,15,255,5,51,125,0,139,135,24,0,6,241,219,0,172,229,133,255,246,214,50,0,231,11,207,255,191,126,83,1,180,163,170,255,245,56,24,1,178,164,211,255,3,16,202,1,98,57,118,255,141,131,89,254,33,51,24,0,243,149,91,255,253,52,14,0,35,169,67,254,49,30,88,255,179,27,36,255,165,140,183,0,58,189,151,0,88,31,0,0,75,169,66,0,66,101,199,255,24,216,199,1,121,196,26,255,14,79,203,254,240,226,81,255,94,28,10,255,83,193,240,255,204,193,131,255,94,15,86,0,218,40,157,0,51,193,209,0,0,242,177,0,102,185,247,0,158,109,116,0,38,135,91,0,223,175,149,0,220,66,1,255,86,60,232,0,25,96,37,255,225,122,162,1,215,187,168,255,158,157,46,0,56,171,162,0,232,240,101,1,122,22,9,0,51,9,21,255,53,25,238,255,217,30,232,254,125,169,148,0,13,232,102,0,148,9,37,0,165,97,141,1,228,131,41,0,222,15,243,255,254,18,17,0,6,60,237,1,106,3,113,0,59,132,189,0,92,112,30,0,105,208,213,0,48,84,179,255,187,121,231,254,27,216,109,255,162,221,107,254,73,239,195,255,250,31,57,255,149,135,89,255,185,23,115,1,3,163,157,255,18,112,250,0,25,57,187,255,161,96,164,0,47,16,243,0,12,141,251,254,67,234,184,255,41,18,161,0,175,6,96,255,160,172,52,254,24,176,183,255,198,193,85,1,124,121,137,255,151,50,114,255,220,203,60,255,207,239,5,1,0,38,107,255,55,238,94,254,70,152,94,0,213,220,77,1,120,17,69,255,85,164,190,255,203,234,81,0,38,49,37,254,61,144,124,0,137,78,49,254,168,247,48,0,95,164,252,0,105,169,135,0,253,228,134,0,64,166,75,0,81,73,20,255,207,210,10,0,234,106,150,255,94,34,90,255,254,159,57,254,220,133,99,0,139,147,180,254,24,23,185,0,41,57,30,255,189,97,76,0,65,187,223,255,224,172,37,255,34,62,95,1,231,144,240,0,77,106,126,254,64,152,91,0,29,98,155,0,226,251,53,255,234,211,5,255,144,203,222,255,164,176,221,254,5,231,24,0,179,122,205,0,36,1,134,255,125,70,151,254,97,228,252,0,172,129,23,254,48,90,209,255,150,224,82,1,84,134,30,0,241,196,46,0,103,113,234,255,46,101,121,254,40,124,250,255,135,45,242,254,9,249,168,255,140,108,131,255,143,163,171,0,50,173,199,255,88,222,142,255,200,95,158,0,142,192,163,255,7,117,135,0,111,124,22,0,236,12,65,254,68,38,65,255,227,174,254,0,244,245,38,0,240,50,208,255,161,63,250,0,60,209,239,0,122,35,19,0,14,33,230,254,2,159,113,0,106,20,127,255,228,205,96,0,137,210,174,254,180,212,144,255,89,98,154,1,34,88,139,0,167,162,112,1,65,110,197,0,241,37,169,0,66,56,131,255,10,201,83,254,133,253,187,255,177,112,45,254,196,251,0,0,196,250,151,255,238,232,214,255,150,209,205,0,28,240,118,0,71,76,83,1,236,99,91,0,42,250,131,1,96,18,64,255,118,222,35,0,113,214,203,255,122,119,184,255,66,19,36,0,204,64,249,0,146,89,139,0,134,62,135,1,104,233,101,0,188,84,26,0,49,249,129,0,208,214,75,255,207,130,77,255,115,175,235,0,171,2,137,255,175,145,186,1,55,245,135,255,154,86,181,1,100,58,246,255,109,199,60,255,82,204,134,255,215,49,230,1,140,229,192,255,222,193,251,255,81,136,15,255,179,149,162,255,23,39,29,255,7,95,75,254,191,81,222,0,241,81,90,255,107,49,201,255,244,211,157,0,222,140,149,255,65,219,56,254,189,246,90,255,178,59,157,1,48,219,52,0,98,34,215,0,28,17,187,255,175,169,24,0,92,79,161,255,236,200,194,1,147,143,234,0,229,225,7,1,197,168,14,0,235,51,53,1,253,120,174,0,197,6,168,255,202,117,171,0,163,21,206,0,114,85,90,255,15,41,10,255,194,19,99,0,65,55,216,254,162,146,116,0,50,206,212,255,64,146,29,255,158,158,131,1,100,165,130,255,172,23,129,255,125,53,9,255,15,193,18,1,26,49,11,255,181,174,201,1,135,201,14,255,100,19,149,0,219,98,79,0,42,99,143,254,96,0,48,255,197,249,83,254,104,149,79,255,235,110,136,254,82,128,44,255,65,41,36,254,88,211,10,0,187,121,187,0,98,134,199,0,171,188,179,254,210,11,238,255,66,123,130,254,52,234,61,0,48,113,23,254,6,86,120,255,119,178,245,0,87,129,201,0,242,141,209,0,202,114,85,0,148,22,161,0,103,195,48,0,25,49,171,255,138,67,130,0,182,73,122,254,148,24,130,0,211,229,154,0,32,155,158,0,84,105,61,0,177,194,9,255,166,89,86,1,54,83,187,0,249,40,117,255,109,3,215,255,53,146,44,1,63,47,179,0,194,216,3,254,14,84,136,0,136,177,13,255,72,243,186,255,117,17,125,255,211,58,211,255,93,79,223,0,90,88,245,255,139,209,111,255,70,222,47,0,10,246,79,255,198,217,178,0,227,225,11,1,78,126,179,255,62,43,126,0,103,148,35,0,129,8,165,254,245,240,148,0,61,51,142,0,81,208,134,0,15,137,115,255,211,119,236,255,159,245,248,255,2,134,136,255,230,139,58,1,160,164,254,0,114,85,141,255,49,166,182,255,144,70,84,1,85,182,7,0,46,53,93,0,9,166,161,255,55,162,178,255,45,184,188,0,146,28,44,254,169,90,49,0,120,178,241,1,14,123,127,255,7,241,199,1,189,66,50,255,198,143,101,254,189,243,135,255,141,24,24,254,75,97,87,0,118,251,154,1,237,54,156,0,171,146,207,255,131,196,246,255,136,64,113,1,151,232,57,0,240,218,115,0,49,61,27,255,64,129,73,1,252,169,27,255,40,132,10,1,90,201,193,255,252,121,240,1,186,206,41,0,43,198,97,0,145,100,183,0,204,216,80,254,172,150,65,0,249,229,196,254,104,123,73,255,77,104,96,254,130,180,8,0,104,123,57,0,220,202,229,255,102,249,211,0,86,14,232,255,182,78,209,0,239,225,164,0,106,13,32,255,120,73,17,255,134,67,233,0,83,254,181,0,183,236,112,1,48,64,131,255,241,216,243,255,65,193,226,0,206,241,100,254,100,134,166,255,237,202,197,0,55,13,81,0,32,124,102,255,40,228,177,0,118,181,31,1,231,160,134,255,119,187,202,0,0,142,60,255,128,38,189,255,166,201,150,0,207,120,26,1,54,184,172,0,12,242,204,254,133,66,230,0,34,38,31,1,184,112,80,0,32,51,165,254,191,243,55,0,58,73,146,254,155,167,205,255,100,104,152,255,197,254,207,255,173,19,247,0,238,10,202,0,239,151,242,0,94,59,39,255,240,29,102,255,10,92,154,255,229,84,219,255,161,129,80,0,208,90,204,1,240,219,174,255,158,102,145,1,53,178,76,255,52,108,168,1,83,222,107,0,211,36,109,0,118,58,56,0,8,29,22,0,237,160,199,0,170,209,157,0,137,71,47,0,143,86,32,0,198,242,2,0,212,48,136,1,92,172,186,0,230,151,105,1,96,191,229,0,138,80,191,254,240,216,130,255,98,43,6,254,168,196,49,0,253,18,91,1,144,73,121,0,61,146,39,1,63,104,24,255,184,165,112,254,126,235,98,0,80,213,98,255,123,60,87,255,82,140,245,1,223,120,173,255,15,198,134,1,206,60,239,0,231,234,92,255,33,238,19,255,165,113,142,1,176,119,38,0,160,43,166,254,239,91,105,0,107,61,194,1,25,4,68,0,15,139,51,0,164,132,106,255,34,116,46,254,168,95,197,0,137,212,23,0,72,156,58,0,137,112,69,254,150,105,154,255,236,201,157,0,23,212,154,255,136,82,227,254,226,59,221,255,95,149,192,0,81,118,52,255,33,43,215,1,14,147,75,255,89,156,121,254,14,18,79,0,147,208,139,1,151,218,62,255,156,88,8,1,210,184,98,255,20,175,123,255,102,83,229,0,220,65,116,1,150,250,4,255,92,142,220,255,34,247,66,255,204,225,179,254,151,81,151,0,71,40,236,255,138,63,62,0,6,79,240,255,183,185,181,0,118,50,27,0,63,227,192,0,123,99,58,1,50,224,155,255,17,225,223,254,220,224,77,255,14,44,123,1,141,128,175,0,248,212,200,0,150,59,183,255,147,97,29,0,150,204,181,0,253,37,71,0,145,85,119,0,154,200,186,0,2,128,249,255,83,24,124,0,14,87,143,0,168,51,245,1,124,151,231,255,208,240,197,1,124,190,185,0,48,58,246,0,20,233,232,0,125,18,98,255,13,254,31,255,245,177,130,255,108,142,35,0,171,125,242,254,140,12,34,255,165,161,162,0,206,205,101,0,247,25,34,1,100,145,57,0,39,70,57,0,118,204,203,255,242,0,162,0,165,244,30,0,198,116,226,0,128,111,153,255,140,54,182,1,60,122,15,255,155,58,57,1,54,50,198,0,171,211,29,255,107,138,167,255,173,107,199,255,109,161,193,0,89,72,242,255,206,115,89,255,250,254,142,254,177,202,94,255,81,89,50,0,7,105,66,255,25,254,255,254,203,64,23,255,79,222,108,255,39,249,75,0,241,124,50,0,239,152,133,0,221,241,105,0,147,151,98,0,213,161,121,254,242,49,137,0,233,37,249,254,42,183,27,0,184,119,230,255,217,32,163,255,208,251,228,1,137,62,131,255,79,64,9,254,94,48,113,0,17,138,50,254,193,255,22,0,247,18,197,1,67,55,104,0,16,205,95,255,48,37,66,0,55,156,63,1,64,82,74,255,200,53,71,254,239,67,125,0,26,224,222,0,223,137,93,255,30,224,202,255,9,220,132,0,198,38,235,1,102,141,86,0,60,43,81,1,136,28,26,0,233,36,8,254,207,242,148,0,164,162,63,0,51,46,224,255,114,48,79,255,9,175,226,0,222,3,193,255,47,160,232,255,255,93,105,254,14,42,230,0,26,138,82,1,208,43,244,0,27,39,38,255,98,208,127,255,64,149,182,255,5,250,209,0,187,60,28,254,49,25,218,255,169,116,205,255,119,18,120,0,156,116,147,255,132,53,109,255,13,10,202,0,110,83,167,0,157,219,137,255,6,3,130,255,50,167,30,255,60,159,47,255,129,128,157,254,94,3,189,0,3,166,68,0,83,223,215,0,150,90,194,1,15,168,65,0,227,83,51,255,205,171,66,255,54,187,60,1,152,102,45,255,119,154,225,0,240,247,136,0,100,197,178,255,139,71,223,255,204,82,16,1,41,206,42,255,156,192,221,255,216,123,244,255,218,218,185,255,187,186,239,255,252,172,160,255,195,52,22,0,144,174,181,254,187,100,115,255,211,78,176,255,27,7,193,0,147,213,104,255,90,201,10,255,80,123,66,1,22,33,186,0,1,7,99,254,30,206,10,0,229,234,5,0,53,30,210,0,138,8,220,254,71,55,167,0,72,225,86,1,118,190,188,0,254,193,101,1,171,249,172,255,94,158,183,254,93,2,108,255,176,93,76,255,73,99,79,255,74,64,129,254,246,46,65,0,99,241,127,254,246,151,102,255,44,53,208,254,59,102,234,0,154,175,164,255,88,242,32,0,111,38,1,0,255,182,190,255,115,176,15,254,169,60,129,0,122,237,241,0,90,76,63,0,62,74,120,255,122,195,110,0,119,4,178,0,222,242,210,0,130,33,46,254,156,40,41,0,167,146,112,1,49,163,111,255,121,176,235,0,76,207,14,255,3,25,198,1,41,235,213,0,85,36,214,1,49,92,109,255,200,24,30,254,168,236,195,0,145,39,124,1,236,195,149,0,90,36,184,255,67,85,170,255,38,35,26,254,131,124,68,255,239,155,35,255,54,201,164,0,196,22,117,255,49,15,205,0,24,224,29,1,126,113,144,0,117,21,182,0,203,159,141,0,223,135,77,0,176,230,176,255,190,229,215,255,99,37,181,255,51,21,138,255,25,189,89,255,49,48,165,254,152,45,247,0,170,108,222,0,80,202,5,0,27,69,103,254,204,22,129,255,180,252,62,254,210,1,91,255,146,110,254,255,219,162,28,0,223,252,213,1,59,8,33,0,206,16,244,0,129,211,48,0,107,160,208,0,112,59,209,0,109,77,216,254,34,21,185,255,246,99,56,255,179,139,19,255,185,29,50,255,84,89,19,0,74,250,98,255,225,42,200,255,192,217,205,255,210,16,167,0,99,132,95,1,43,230,57,0,254,11,203,255,99,188,63,255,119,193,251,254,80,105,54,0,232,181,189,1,183,69,112,255,208,171,165,255,47,109,180,255,123,83,165,0,146,162,52,255,154,11,4,255,151,227,90,255,146,137,97,254,61,233,41,255,94,42,55,255,108,164,236,0,152,68,254,0,10,140,131,255,10,106,79,254,243,158,137,0,67,178,66,254,177,123,198,255,15,62,34,0,197,88,42,255,149,95,177,255,152,0,198,255,149,254,113,255,225,90,163,255,125,217,247,0,18,17,224,0,128,66,120,254,192,25,9,255,50,221,205,0,49,212,70,0,233,255,164,0,2,209,9,0,221,52,219,254,172,224,244,255,94,56,206,1,242,179,2,255,31,91,164,1,230,46,138,255,189,230,220,0,57,47,61,255,111,11,157,0,177,91,152,0,28,230,98,0,97,87,126,0,198,89,145,255,167,79,107,0,249,77,160,1,29,233,230,255,150,21,86,254,60,11,193,0,151,37,36,254,185,150,243,255,228,212,83,1,172,151,180,0,201,169,155,0,244,60,234,0,142,235,4,1,67,218,60,0,192,113,75,1,116,243,207,255,65,172,155,0,81,30,156,255,80,72,33,254,18,231,109,255,142,107,21,254,125,26,132,255,176,16,59,255,150,201,58,0,206,169,201,0,208,121,226,0,40,172,14,255,150,61,94,255,56,57,156,255,141,60,145,255,45,108,149,255,238,145,155,255,209,85,31,254,192,12,210,0,99,98,93,254,152,16,151,0,225,185,220,0,141,235,44,255,160,172,21,254,71,26,31,255,13,64,93,254,28,56,198,0,177,62,248,1,182,8,241,0,166,101,148,255,78,81,133,255,129,222,215,1,188,169,129,255,232,7,97,0,49,112,60,255,217,229,251,0,119,108,138,0,39,19,123,254,131,49,235,0,132,84,145,0,130,230,148,255,25,74,187,0,5,245,54,255,185,219,241,1,18,194,228,255,241,202,102,0,105,113,202,0,155,235,79,0,21,9,178,255,156,1,239,0,200,148,61,0,115,247,210,255,49,221,135,0,58,189,8,1,35,46,9,0,81,65,5,255,52,158,185,255,125,116,46,255,74,140,13,255,210,92,172,254,147,23,71,0,217,224,253,254,115,108,180,255,145,58,48,254,219,177,24,255,156,255,60,1,154,147,242,0,253,134,87,0,53,75,229,0,48,195,222,255,31,175,50,255,156,210,120,255,208,35,222,255,18,248,179,1,2,10,101,255,157,194,248,255,158,204,101,255,104,254,197,255,79,62,4,0,178,172,101,1,96,146,251,255,65,10,156,0,2,137,165,255,116,4,231,0,242,215,1,0,19,35,29,255,43,161,79,0,59,149,246,1,251,66,176,0,200,33,3,255,80,110,142,255,195,161,17,1,228,56,66,255,123,47,145,254,132,4,164,0,67,174,172,0,25,253,114,0,87,97,87,1,250,220,84,0,96,91,200,255,37,125,59,0,19,65,118,0,161,52,241,255,237,172,6,255,176,191,255,255,1,65,130,254,223,190,230,0,101,253,231,255,146,35,109,0,250,29,77,1,49,0,19,0,123,90,155,1,22,86,32,255,218,213,65,0,111,93,127,0,60,93,169,255,8,127,182,0,17,186,14,254,253,137,246,255,213,25,48,254,76,238,0,255,248,92,70,255,99,224,139,0,184,9,255,1,7,164,208,0,205,131,198,1,87,214,199,0,130,214,95,0,221,149,222,0,23,38,171,254,197,110,213,0,43,115,140,254,215,177,118,0,96,52,66,1,117,158,237,0,14,64,182,255,46,63,174,255,158,95,190,255,225,205,177,255,43,5,142,255,172,99,212,255,244,187,147,0,29,51,153,255,228,116,24,254,30,101,207,0,19,246,150,255,134,231,5,0,125,134,226,1,77,65,98,0,236,130,33,255,5,110,62,0,69,108,127,255,7,113,22,0,145,20,83,254,194,161,231,255,131,181,60,0,217,209,177,255,229,148,212,254,3,131,184,0,117,177,187,1,28,14,31,255,176,102,80,0,50,84,151,255,125,31,54,255,21,157,133,255,19,179,139,1,224,232,26,0,34,117,170,255,167,252,171,255,73,141,206,254,129,250,35,0,72,79,236,1,220,229,20,255,41,202,173,255,99,76,238,255,198,22,224,255,108,198,195,255,36,141,96,1,236,158,59,255,106,100,87,0,110,226,2,0,227,234,222,0,154,93,119,255,74,112,164,255,67,91,2,255,21,145,33,255,102,214,137,255,175,230,103,254,163,246,166,0,93,247,116,254,167,224,28,255,220,2,57,1,171,206,84,0,123,228,17,255,27,120,119,0,119,11,147,1,180,47,225,255,104,200,185,254,165,2,114,0,77,78,212,0,45,154,177,255,24,196,121,254,82,157,182,0,90,16,190,1,12,147,197,0,95,239,152,255,11,235,71,0,86,146,119,255,172,134,214,0,60,131,196,0,161,225,129,0,31,130,120,254,95,200,51,0,105,231,210,255,58,9,148,255,43,168,221,255,124,237,142,0,198,211,50,254,46,245,103,0,164,248,84,0,152,70,208,255,180,117,177,0,70,79,185,0,243,74,32,0,149,156,207,0,197,196,161,1,245,53,239,0,15,93,246,254,139,240,49,255,196,88,36,255,162,38,123,0,128,200,157,1,174,76,103,255,173,169,34,254,216,1,171,255,114,51,17,0,136,228,194,0,110,150,56,254,106,246,159,0,19,184,79,255,150,77,240,255,155,80,162,0,0,53,169,255,29,151,86,0,68,94,16,0,92,7,110,254,98,117,149,255,249,77,230,255,253,10,140,0,214,124,92,254,35,118,235,0,89,48,57,1,22,53,166,0,184,144,61,255,179,255,194,0,214,248,61,254,59,110,246,0,121,21,81,254,166,3,228,0,106,64,26,255,69,232,134,255,242,220,53,254,46,220,85,0,113,149,247,255,97,179,103,255,190,127,11,0,135,209,182,0,95,52,129,1,170,144,206,255,122,200,204,255,168,100,146,0,60,144,149,254,70,60,40,0,122,52,177,255,246,211,101,255,174,237,8,0,7,51,120,0,19,31,173,0,126,239,156,255,143,189,203,0,196,128,88,255,233,133,226,255,30,125,173,255,201,108,50,0,123,100,59,255,254,163,3,1,221,148,181,255,214,136,57,254,222,180,137,255,207,88,54,255,28,33,251,255,67,214,52,1,210,208,100,0,81,170,94,0,145,40,53,0,224,111,231,254,35,28,244,255,226,199,195,254,238,17,230,0,217,217,164,254,169,157,221,0,218,46,162,1,199,207,163,255,108,115,162,1,14,96,187,255,118,60,76,0,184,159,152,0,209,231,71,254,42,164,186,255,186,153,51,254,221,171,182,255,162,142,173,0,235,47,193,0,7,139,16,1,95,164,64,255,16,221,166,0,219,197,16,0,132,29,44,255,100,69,117,255,60,235,88,254,40,81,173,0,71,190,61,255,187,88,157,0,231,11,23,0,237,117,164,0,225,168,223,255,154,114,116,255,163,152,242,1,24,32,170,0,125,98,113,254,168,19,76,0,17,157,220,254,155,52,5,0,19,111,161,255,71,90,252,255,173,110,240,0,10,198,121,255,253,255,240,255,66,123,210,0,221,194,215,254,121,163,17,255,225,7,99,0,190,49,182,0,115,9,133,1,232,26,138,255,213,68,132,0,44,119,122,255,179,98,51,0,149,90,106,0,71,50,230,255,10,153,118,255,177,70,25,0,165,87,205,0,55,138,234,0,238,30,97,0,113,155,207,0,98,153,127,0,34,107,219,254,117,114,172,255,76,180,255,254,242,57,179,255,221,34,172,254,56,162,49,255,83,3,255,255,113,221,189,255,188,25,228,254,16,88,89,255,71,28,198,254,22,17,149,255,243,121,254,255,107,202,99,255,9,206,14,1,220,47,153,0,107,137,39,1,97,49,194,255,149,51,197,254,186,58,11,255,107,43,232,1,200,6,14,255,181,133,65,254,221,228,171,255,123,62,231,1,227,234,179,255,34,189,212,254,244,187,249,0,190,13,80,1,130,89,1,0,223,133,173,0,9,222,198,255,66,127,74,0,167,216,93,255,155,168,198,1,66,145,0,0,68,102,46,1,172,90,154,0,216,128,75,255,160,40,51,0,158,17,27,1,124,240,49,0,236,202,176,255,151,124,192,255,38,193,190,0,95,182,61,0,163,147,124,255,255,165,51,255,28,40,17,254,215,96,78,0,86,145,218,254,31,36,202,255,86,9,5,0,111,41,200,255,237,108,97,0,57,62,44,0,117,184,15,1,45,241,116,0,152,1,220,255,157,165,188,0,250,15,131,1,60,44,125,255,65,220,251,255,75,50,184,0,53,90,128,255,231,80,194,255,136,129,127,1,21,18,187,255,45,58,161,255,71,147,34,0,174,249,11,254,35,141,29,0,239,68,177,255,115,110,58,0,238,190,177,1,87,245,166,255,190,49,247,255,146,83,184,255,173,14,39,255,146,215,104,0,142,223,120,0,149,200,155,255,212,207,145,1,16,181,217,0,173,32,87,255,255,35,181,0,119,223,161,1,200,223,94,255,70,6,186,255,192,67,85,255,50,169,152,0,144,26,123,255,56,243,179,254,20,68,136,0,39,140,188,254,253,208,5,255,200,115,135,1,43,172,229,255,156,104,187,0,151,251,167,0,52,135,23,0,151,153,72,0,147,197,107,254,148,158,5,255,238,143,206,0,126,153,137,255,88,152,197,254,7,68,167,0,252,159,165,255,239,78,54,255,24,63,55,255,38,222,94,0,237,183,12,255,206,204,210,0,19,39,246,254,30,74,231,0,135,108,29,1,179,115,0,0,117,118,116,1,132,6,252,255,145,129,161,1,105,67,141,0,82,37,226,255,238,226,228,255,204,214,129,254,162,123,100,255,185,121,234,0,45,108,231,0,66,8,56,255,132,136,128,0,172,224,66,254,175,157,188,0,230,223,226,254,242,219,69,0,184,14,119,1,82,162,56,0,114,123,20,0,162,103,85,255,49,239,99,254,156,135,215,0,111,255,167,254,39,196,214,0,144,38,79,1,249,168,125,0,155,97,156,255,23,52,219,255,150,22,144,0,44,149,165,255,40,127,183,0,196,77,233,255,118,129,210,255,170,135,230,255,214,119,198,0,233,240,35,0,253,52,7,255,117,102,48,255,21,204,154,255,179,136,177,255,23,2,3,1,149,130,89,255,252,17,159,1,70,60,26,0,144,107,17,0,180,190,60,255,56,182,59,255,110,71,54,255,198,18,129,255,149,224,87,255,223,21,152,255,138,22,182,255,250,156,205,0,236,45,208,255,79,148,242,1,101,70,209,0,103,78,174,0,101,144,172,255,152,136,237,1,191,194,136,0,113,80,125,1,152,4,141,0,155,150,53,255,196,116,245,0,239,114,73,254,19,82,17,255,124,125,234,255,40,52,191,0,42,210,158,255,155,132,165,0,178,5,42,1,64,92,40,255,36,85,77,255,178,228,118,0,137,66,96,254,115,226,66,0,110,240,69,254,151,111,80,0,167,174,236,255,227,108,107,255,188,242,65,255,183,81,255,0,57,206,181,255,47,34,181,255,213,240,158,1,71,75,95,0,156,40,24,255,102,210,81,0,171,199,228,255,154,34,41,0,227,175,75,0,21,239,195,0,138,229,95,1,76,192,49,0,117,123,87,1,227,225,130,0,125,62,63,255,2,198,171,0,254,36,13,254,145,186,206,0,148,255,244,255,35,0,166,0,30,150,219,1,92,228,212,0,92,198,60,254,62,133,200,255,201,41,59,0,125,238,109,255,180,163,238,1,140,122,82,0,9,22,88,255,197,157,47,255,153,94,57,0,88,30,182,0,84,161,85,0,178,146,124,0,166,166,7,255,21,208,223,0,156,182,242,0,155,121,185,0,83,156,174,254,154,16,118,255,186,83,232,1,223,58,121,255,29,23,88,0,35,125,127,255,170,5,149,254,164,12,130,255,155,196,29,0,161,96,136,0,7,35,29,1,162,37,251,0,3,46,242,255,0,217,188,0,57,174,226,1,206,233,2,0,57,187,136,254,123,189,9,255,201,117,127,255,186,36,204,0,231,25,216,0,80,78,105,0,19,134,129,255,148,203,68,0,141,81,125,254,248,165,200,255,214,144,135,0,151,55,166,255,38,235,91,0,21,46,154,0,223,254,150,255,35,153,180,255,125,176,29,1,43,98,30,255,216,122,230,255,233,160,12,0,57,185,12,254,240,113,7,255,5,9,16,254,26,91,108,0,109,198,203,0,8,147,40,0,129,134,228,255,124,186,40,255,114,98,132,254,166,132,23,0,99,69,44,0,9,242,238,255,184,53,59,0,132,129,102,255,52,32,243,254,147,223,200,255,123,83,179,254,135,144,201,255,141,37,56,1,151,60,227,255,90,73,156,1,203,172,187,0,80,151,47,255,94,137,231,255,36,191,59,255,225,209,181,255,74,215,213,254,6,118,179,255,153,54,193,1,50,0,231,0,104,157,72,1,140,227,154,255,182,226,16,254,96,225,92,255,115,20,170,254,6,250,78,0,248,75,173,255,53,89,6,255,0,180,118,0,72,173,1,0,64,8,206,1,174,133,223,0,185,62,133,255,214,11,98,0,197,31,208,0,171,167,244,255,22,231,181,1,150,218,185,0,247,169,97,1,165,139,247,255,47,120,149,1,103,248,51,0,60,69,28,254,25,179,196,0,124,7,218,254,58,107,81,0,184,233,156,255,252,74,36,0,118,188,67,0,141,95,53,255,222,94,165,254,46,61,53,0,206,59,115,255,47,236,250,255,74,5,32,1,129,154,238,255,106,32,226,0,121,187,61,255,3,166,241,254,67,170,172,255,29,216,178,255,23,201,252,0,253,110,243,0,200,125,57,0,109,192,96,255,52,115,238,0,38,121,243,255,201,56,33,0,194,118,130,0,75,96,25,255,170,30,230,254,39,63,253,0,36,45,250,255,251,1,239,0,160,212,92,1,45,209,237,0,243,33,87,254,237,84,201,255,212,18,157,254,212,99,127,255,217,98,16,254,139,172,239,0,168,201,130,255,143,193,169,255,238,151,193,1,215,104,41,0,239,61,165,254,2,3,242,0,22,203,177,254,177,204,22,0,149,129,213,254,31,11,41,255,0,159,121,254,160,25,114,255,162,80,200,0,157,151,11,0,154,134,78,1,216,54,252,0,48,103,133,0,105,220,197,0,253,168,77,254,53,179,23,0,24,121,240,1,255,46,96,255,107,60,135,254,98,205,249,255,63,249,119,255,120,59,211,255,114,180,55,254,91,85,237,0,149,212,77,1,56,73,49,0,86,198,150,0,93,209,160,0,69,205,182,255,244,90,43,0,20,36,176,0,122,116,221,0,51,167,39,1,231,1,63,255,13,197,134,0,3,209,34,255,135,59,202,0,167,100,78,0,47,223,76,0,185,60,62,0,178,166,123,1,132,12,161,255,61,174,43,0,195,69,144,0,127,47,191,1,34,44,78,0,57,234,52,1,255,22,40,255,246,94,146,0,83,228,128,0,60,78,224,255,0,96,210,255,153,175,236,0,159,21,73,0,180,115,196,254,131,225,106,0,255,167,134,0,159,8,112,255,120,68,194,255,176,196,198,255,118,48,168,255,93,169,1,0,112,200,102,1,74,24,254,0,19,141,4,254,142,62,63,0,131,179,187,255,77,156,155,255,119,86,164,0,170,208,146,255,208,133,154,255,148,155,58,255,162,120,232,254,252,213,155,0,241,13,42,0,94,50,131,0,179,170,112,0,140,83,151,255,55,119,84,1,140,35,239,255,153,45,67,1,236,175,39,0,54,151,103,255,158,42,65,255,196,239,135,254,86,53,203,0,149,97,47,254,216,35,17,255,70,3,70,1,103,36,90,255,40,26,173,0,184,48,13,0,163,219,217,255,81,6,1,255,221,170,108,254,233,208,93,0,100,201,249,254,86,36,35,255,209,154,30,1,227,201,251,255,2,189,167,254,100,57,3,0,13,128,41,0,197,100,75,0,150,204,235,255,145,174,59,0,120,248,149,255,85,55,225,0,114,210,53,254,199,204,119,0,14,247,74,1,63,251,129,0,67,104,151,1,135,130,80,0,79,89,55,255,117,230,157,255,25,96,143,0,213,145,5,0,69,241,120,1,149,243,95,255,114,42,20,0,131,72,2,0,154,53,20,255,73,62,109,0,196,102,152,0,41,12,204,255,122,38,11,1,250,10,145,0,207,125,148,0,246,244,222,255,41,32,85,1,112,213,126,0,162,249,86,1,71,198,127,255,81,9,21,1,98,39,4,255,204,71,45,1,75,111,137,0,234,59,231,0,32,48,95,255,204,31,114,1,29,196,181,255,51,241,167,254,93,109,142,0,104,144,45,0,235,12,181,255,52,112,164,0,76,254,202,255,174,14,162,0,61,235,147,255,43,64,185,254,233,125,217,0,243,88,167,254,74,49,8,0,156,204,66,0,124,214,123,0,38,221,118,1,146,112,236,0,114,98,177,0,151,89,199,0,87,197,112,0,185,149,161,0,44,96,165,0,248,179,20,255,188,219,216,254,40,62,13,0,243,142,141,0,229,227,206,255,172,202,35,255,117,176,225,255,82,110,38,1,42,245,14,255,20,83,97,0,49,171,10,0,242,119,120,0,25,232,61,0,212,240,147,255,4,115,56,255,145,17,239,254,202,17,251,255,249,18,245,255,99,117,239,0,184,4,179,255,246,237,51,255,37,239,137,255,166,112,166,255,81,188,33,255,185,250,142,255,54,187,173,0,208,112,201,0,246,43,228,1,104,184,88,255,212,52,196,255,51,117,108,255,254,117,155,0,46,91,15,255,87,14,144,255,87,227,204,0,83,26,83,1,159,76,227,0,159,27,213,1,24,151,108,0,117,144,179,254,137,209,82,0,38,159,10,0,115,133,201,0,223,182,156,1,110,196,93,255,57,60,233,0,5,167,105,255,154,197,164,0,96,34,186,255,147,133,37,1,220,99,190,0,1,167,84,255,20,145,171,0,194,197,251,254,95,78,133,255,252,248,243,255,225,93,131,255,187,134,196,255,216,153,170,0,20,118,158,254,140,1,118,0,86,158,15,1,45,211,41,255,147,1,100,254,113,116,76,255,211,127,108,1,103,15,48,0,193,16,102,1,69,51,95,255,107,128,157,0,137,171,233,0,90,124,144,1,106,161,182,0,175,76,236,1,200,141,172,255,163,58,104,0,233,180,52,255,240,253,14,255,162,113,254,255,38,239,138,254,52,46,166,0,241,101,33,254,131,186,156,0,111,208,62,255,124,94,160,255,31,172,254,0,112,174,56,255,188,99,27,255,67,138,251,0,125,58,128,1,156,152,174,255,178,12,247,255,252,84,158,0,82,197,14,254,172,200,83,255,37,39,46,1,106,207,167,0,24,189,34,0,131,178,144,0,206,213,4,0,161,226,210,0,72,51,105,255,97,45,187,255,78,184,223,255,176,29,251,0,79,160,86,255,116,37,178,0,82,77,213,1,82,84,141,255,226,101,212,1,175,88,199,255,245,94,247,1,172,118,109,255,166,185,190,0,131,181,120,0,87,254,93,255,134,240,73,255,32,245,143,255,139,162,103,255,179,98,18,254,217,204,112,0,147,223,120,255,53,10,243,0,166,140,150,0,125,80,200,255,14,109,219,255,91,218,1,255,252,252,47,254,109,156,116,255,115,49,127,1,204,87,211,255,148,202,217,255,26,85,249,255,14,245,134,1,76,89,169,255,242,45,230,0,59,98,172,255,114,73,132,254,78,155,49,255,158,126,84,0,49,175,43,255,16,182,84,255,157,103,35,0,104,193,109,255,67,221,154,0,201,172,1,254,8,162,88,0,165,1,29,255,125,155,229,255,30,154,220,1,103,239,92,0,220,1,109,255,202,198,1,0,94,2,142,1,36,54,44,0,235,226,158,255,170,251,214,255,185,77,9,0,97,74,242,0,219,163,149,255,240,35,118,255,223,114,88,254,192,199,3,0,106,37,24,255,201,161,118,255,97,89,99,1,224,58,103,255,101,199,147,254,222,60,99,0,234,25,59,1,52,135,27,0,102,3,91,254,168,216,235,0,229,232,136,0,104,60,129,0,46,168,238,0,39,191,67,0,75,163,47,0,143,97,98,255,56,216,168,1,168,233,252,255,35,111,22,255,92,84,43,0,26,200,87,1,91,253,152,0,202,56,70,0,142,8,77,0,80,10,175,1,252,199,76,0,22,110,82,255,129,1,194,0,11,128,61,1,87,14,145,255,253,222,190,1,15,72,174,0,85,163,86,254,58,99,44,255,45,24,188,254,26,205,15,0,19,229,210,254,248,67,195,0,99,71,184,0,154,199,37,255,151,243,121,255,38,51,75,255,201,85,130,254,44,65,250,0,57,147,243,254,146,43,59,255,89,28,53,0,33,84,24,255,179,51,18,254,189,70,83,0,11,156,179,1,98,134,119,0,158,111,111,0,119,154,73,255,200,63,140,254,45,13,13,255,154,192,2,254,81,72,42,0,46,160,185,254,44,112,6,0,146,215,149,1,26,176,104,0,68,28,87,1,236,50,153,255,179,128,250,254,206,193,191,255,166,92,137,254,53,40,239,0,210,1,204,254,168,173,35,0,141,243,45,1,36,50,109,255,15,242,194,255,227,159,122,255,176,175,202,254,70,57,72,0,40,223,56,0,208,162,58,255,183,98,93,0,15,111,12,0,30,8,76,255,132,127,246,255,45,242,103,0,69,181,15,255,10,209,30,0,3,179,121,0,241,232,218,1,123,199,88,255,2,210,202,1,188,130,81,255,94,101,208,1,103,36,45], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE+10240); /* memory initializer */ allocate([76,193,24,1,95,26,241,255,165,162,187,0,36,114,140,0,202,66,5,255,37,56,147,0,152,11,243,1,127,85,232,255,250,135,212,1,185,177,113,0,90,220,75,255,69,248,146,0,50,111,50,0,92,22,80,0,244,36,115,254,163,100,82,255,25,193,6,1,127,61,36,0,253,67,30,254,65,236,170,255,161,17,215,254,63,175,140,0,55,127,4,0,79,112,233,0,109,160,40,0,143,83,7,255,65,26,238,255,217,169,140,255,78,94,189,255,0,147,190,255,147,71,186,254,106,77,127,255,233,157,233,1,135,87,237,255,208,13,236,1,155,109,36,255,180,100,218,0,180,163,18,0,190,110,9,1,17,63,123,255,179,136,180,255,165,123,123,255,144,188,81,254,71,240,108,255,25,112,11,255,227,218,51,255,167,50,234,255,114,79,108,255,31,19,115,255,183,240,99,0,227,87,143,255,72,217,248,255,102,169,95,1,129,149,149,0,238,133,12,1,227,204,35,0,208,115,26,1,102,8,234,0,112,88,143,1,144,249,14,0,240,158,172,254,100,112,119,0,194,141,153,254,40,56,83,255,121,176,46,0,42,53,76,255,158,191,154,0,91,209,92,0,173,13,16,1,5,72,226,255,204,254,149,0,80,184,207,0,100,9,122,254,118,101,171,255,252,203,0,254,160,207,54,0,56,72,249,1,56,140,13,255,10,64,107,254,91,101,52,255,225,181,248,1,139,255,132,0,230,145,17,0,233,56,23,0,119,1,241,255,213,169,151,255,99,99,9,254,185,15,191,255,173,103,109,1,174,13,251,255,178,88,7,254,27,59,68,255,10,33,2,255,248,97,59,0,26,30,146,1,176,147,10,0,95,121,207,1,188,88,24,0,185,94,254,254,115,55,201,0,24,50,70,0,120,53,6,0,142,66,146,0,228,226,249,255,104,192,222,1,173,68,219,0,162,184,36,255,143,102,137,255,157,11,23,0,125,45,98,0,235,93,225,254,56,112,160,255,70,116,243,1,153,249,55,255,129,39,17,1,241,80,244,0,87,69,21,1,94,228,73,255,78,66,65,255,194,227,231,0,61,146,87,255,173,155,23,255,112,116,219,254,216,38,11,255,131,186,133,0,94,212,187,0,100,47,91,0,204,254,175,255,222,18,215,254,173,68,108,255,227,228,79,255,38,221,213,0,163,227,150,254,31,190,18,0,160,179,11,1,10,90,94,255,220,174,88,0,163,211,229,255,199,136,52,0,130,95,221,255,140,188,231,254,139,113,128,255,117,171,236,254,49,220,20,255,59,20,171,255,228,109,188,0,20,225,32,254,195,16,174,0,227,254,136,1,135,39,105,0,150,77,206,255,210,238,226,0,55,212,132,254,239,57,124,0,170,194,93,255,249,16,247,255,24,151,62,255,10,151,10,0,79,139,178,255,120,242,202,0,26,219,213,0,62,125,35,255,144,2,108,255,230,33,83,255,81,45,216,1,224,62,17,0,214,217,125,0,98,153,153,255,179,176,106,254,131,93,138,255,109,62,36,255,178,121,32,255,120,252,70,0,220,248,37,0,204,88,103,1,128,220,251,255,236,227,7,1,106,49,198,255,60,56,107,0,99,114,238,0,220,204,94,1,73,187,1,0,89,154,34,0,78,217,165,255,14,195,249,255,9,230,253,255,205,135,245,0,26,252,7,255,84,205,27,1,134,2,112,0,37,158,32,0,231,91,237,255,191,170,204,255,152,7,222,0,109,192,49,0,193,166,146,255,232,19,181,255,105,142,52,255,103,16,27,1,253,200,165,0,195,217,4,255,52,189,144,255,123,155,160,254,87,130,54,255,78,120,61,255,14,56,41,0,25,41,125,255,87,168,245,0,214,165,70,0,212,169,6,255,219,211,194,254,72,93,164,255,197,33,103,255,43,142,141,0,131,225,172,0,244,105,28,0,68,68,225,0,136,84,13,255,130,57,40,254,139,77,56,0,84,150,53,0,54,95,157,0,144,13,177,254,95,115,186,0,117,23,118,255,244,166,241,255,11,186,135,0,178,106,203,255,97,218,93,0,43,253,45,0,164,152,4,0,139,118,239,0,96,1,24,254,235,153,211,255,168,110,20,255,50,239,176,0,114,41,232,0,193,250,53,0,254,160,111,254,136,122,41,255,97,108,67,0,215,152,23,255,140,209,212,0,42,189,163,0,202,42,50,255,106,106,189,255,190,68,217,255,233,58,117,0,229,220,243,1,197,3,4,0,37,120,54,254,4,156,134,255,36,61,171,254,165,136,100,255,212,232,14,0,90,174,10,0,216,198,65,255,12,3,64,0,116,113,115,255,248,103,8,0,231,125,18,255,160,28,197,0,30,184,35,1,223,73,249,255,123,20,46,254,135,56,37,255,173,13,229,1,119,161,34,255,245,61,73,0,205,125,112,0,137,104,134,0,217,246,30,255,237,142,143,0,65,159,102,255,108,164,190,0,219,117,173,255,34,37,120,254,200,69,80,0,31,124,218,254,74,27,160,255,186,154,199,255,71,199,252,0,104,81,159,1,17,200,39,0,211,61,192,1,26,238,91,0,148,217,12,0,59,91,213,255,11,81,183,255,129,230,122,255,114,203,145,1,119,180,66,255,72,138,180,0,224,149,106,0,119,82,104,255,208,140,43,0,98,9,182,255,205,101,134,255,18,101,38,0,95,197,166,255,203,241,147,0,62,208,145,255,133,246,251,0,2,169,14,0,13,247,184,0,142,7,254,0,36,200,23,255,88,205,223,0,91,129,52,255,21,186,30,0,143,228,210,1,247,234,248,255,230,69,31,254,176,186,135,255,238,205,52,1,139,79,43,0,17,176,217,254,32,243,67,0,242,111,233,0,44,35,9,255,227,114,81,1,4,71,12,255,38,105,191,0,7,117,50,255,81,79,16,0,63,68,65,255,157,36,110,255,77,241,3,255,226,45,251,1,142,25,206,0,120,123,209,1,28,254,238,255,5,128,126,255,91,222,215,255,162,15,191,0,86,240,73,0,135,185,81,254,44,241,163,0,212,219,210,255,112,162,155,0,207,101,118,0,168,72,56,255,196,5,52,0,72,172,242,255,126,22,157,255,146,96,59,255,162,121,152,254,140,16,95,0,195,254,200,254,82,150,162,0,119,43,145,254,204,172,78,255,166,224,159,0,104,19,237,255,245,126,208,255,226,59,213,0,117,217,197,0,152,72,237,0,220,31,23,254,14,90,231,255,188,212,64,1,60,101,246,255,85,24,86,0,1,177,109,0,146,83,32,1,75,182,192,0,119,241,224,0,185,237,27,255,184,101,82,1,235,37,77,255,253,134,19,0,232,246,122,0,60,106,179,0,195,11,12,0,109,66,235,1,125,113,59,0,61,40,164,0,175,104,240,0,2,47,187,255,50,12,141,0,194,139,181,255,135,250,104,0,97,92,222,255,217,149,201,255,203,241,118,255,79,151,67,0,122,142,218,255,149,245,239,0,138,42,200,254,80,37,97,255,124,112,167,255,36,138,87,255,130,29,147,255,241,87,78,255,204,97,19,1,177,209,22,255,247,227,127,254,99,119,83,255,212,25,198,1,16,179,179,0,145,77,172,254,89,153,14,255,218,189,167,0,107,233,59,255,35,33,243,254,44,112,112,255,161,127,79,1,204,175,10,0,40,21,138,254,104,116,228,0,199,95,137,255,133,190,168,255,146,165,234,1,183,99,39,0,183,220,54,254,255,222,133,0,162,219,121,254,63,239,6,0,225,102,54,255,251,18,246,0,4,34,129,1,135,36,131,0,206,50,59,1,15,97,183,0,171,216,135,255,101,152,43,255,150,251,91,0,38,145,95,0,34,204,38,254,178,140,83,255,25,129,243,255,76,144,37,0,106,36,26,254,118,144,172,255,68,186,229,255,107,161,213,255,46,163,68,255,149,170,253,0,187,17,15,0,218,160,165,255,171,35,246,1,96,13,19,0,165,203,117,0,214,107,192,255,244,123,177,1,100,3,104,0,178,242,97,255,251,76,130,255,211,77,42,1,250,79,70,255,63,244,80,1,105,101,246,0,61,136,58,1,238,91,213,0,14,59,98,255,167,84,77,0,17,132,46,254,57,175,197,255,185,62,184,0,76,64,207,0,172,175,208,254,175,74,37,0,138,27,211,254,148,125,194,0,10,89,81,0,168,203,101,255,43,213,209,1,235,245,54,0,30,35,226,255,9,126,70,0,226,125,94,254,156,117,20,255,57,248,112,1,230,48,64,255,164,92,166,1,224,214,230,255,36,120,143,0,55,8,43,255,251,1,245,1,106,98,165,0,74,107,106,254,53,4,54,255,90,178,150,1,3,120,123,255,244,5,89,1,114,250,61,255,254,153,82,1,77,15,17,0,57,238,90,1,95,223,230,0,236,52,47,254,103,148,164,255,121,207,36,1,18,16,185,255,75,20,74,0,187,11,101,0,46,48,129,255,22,239,210,255,77,236,129,255,111,77,204,255,61,72,97,255,199,217,251,255,42,215,204,0,133,145,201,255,57,230,146,1,235,100,198,0,146,73,35,254,108,198,20,255,182,79,210,255,82,103,136,0,246,108,176,0,34,17,60,255,19,74,114,254,168,170,78,255,157,239,20,255,149,41,168,0,58,121,28,0,79,179,134,255,231,121,135,255,174,209,98,255,243,122,190,0,171,166,205,0,212,116,48,0,29,108,66,255,162,222,182,1,14,119,21,0,213,39,249,255,254,223,228,255,183,165,198,0,133,190,48,0,124,208,109,255,119,175,85,255,9,209,121,1,48,171,189,255,195,71,134,1,136,219,51,255,182,91,141,254,49,159,72,0,35,118,245,255,112,186,227,255,59,137,31,0,137,44,163,0,114,103,60,254,8,213,150,0,162,10,113,255,194,104,72,0,220,131,116,255,178,79,92,0,203,250,213,254,93,193,189,255,130,255,34,254,212,188,151,0,136,17,20,255,20,101,83,255,212,206,166,0,229,238,73,255,151,74,3,255,168,87,215,0,155,188,133,255,166,129,73,0,240,79,133,255,178,211,81,255,203,72,163,254,193,168,165,0,14,164,199,254,30,255,204,0,65,72,91,1,166,74,102,255,200,42,0,255,194,113,227,255,66,23,208,0,229,216,100,255,24,239,26,0,10,233,62,255,123,10,178,1,26,36,174,255,119,219,199,1,45,163,190,0,16,168,42,0,166,57,198,255,28,26,26,0,126,165,231,0,251,108,100,255,61,229,121,255,58,118,138,0,76,207,17,0,13,34,112,254,89,16,168,0,37,208,105,255,35,201,215,255,40,106,101,254,6,239,114,0,40,103,226,254,246,127,110,255,63,167,58,0,132,240,142,0,5,158,88,255,129,73,158,255,94,89,146,0,230,54,146,0,8,45,173,0,79,169,1,0,115,186,247,0,84,64,131,0,67,224,253,255,207,189,64,0,154,28,81,1,45,184,54,255,87,212,224,255,0,96,73,255,129,33,235,1,52,66,80,255,251,174,155,255,4,179,37,0,234,164,93,254,93,175,253,0,198,69,87,255,224,106,46,0,99,29,210,0,62,188,114,255,44,234,8,0,169,175,247,255,23,109,137,255,229,182,39,0,192,165,94,254,245,101,217,0,191,88,96,0,196,94,99,255,106,238,11,254,53,126,243,0,94,1,101,255,46,147,2,0,201,124,124,255,141,12,218,0,13,166,157,1,48,251,237,255,155,250,124,255,106,148,146,255,182,13,202,0,28,61,167,0,217,152,8,254,220,130,45,255,200,230,255,1,55,65,87,255,93,191,97,254,114,251,14,0,32,105,92,1,26,207,141,0,24,207,13,254,21,50,48,255,186,148,116,255,211,43,225,0,37,34,162,254,164,210,42,255,68,23,96,255,182,214,8,255,245,117,137,255,66,195,50,0,75,12,83,254,80,140,164,0,9,165,36,1,228,110,227,0,241,17,90,1,25,52,212,0,6,223,12,255,139,243,57,0,12,113,75,1,246,183,191,255,213,191,69,255,230,15,142,0,1,195,196,255,138,171,47,255,64,63,106,1,16,169,214,255,207,174,56,1,88,73,133,255,182,133,140,0,177,14,25,255,147,184,53,255,10,227,161,255,120,216,244,255,73,77,233,0,157,238,139,1,59,65,233,0,70,251,216,1,41,184,153,255,32,203,112,0,146,147,253,0,87,101,109,1,44,82,133,255,244,150,53,255,94,152,232,255,59,93,39,255,88,147,220,255,78,81,13,1,32,47,252,255,160,19,114,255,93,107,39,255,118,16,211,1,185,119,209,255,227,219,127,254,88,105,236,255,162,110,23,255,36,166,110,255,91,236,221,255,66,234,116,0,111,19,244,254,10,233,26,0,32,183,6,254,2,191,242,0,218,156,53,254,41,60,70,255,168,236,111,0,121,185,126,255,238,142,207,255,55,126,52,0,220,129,208,254,80,204,164,255,67,23,144,254,218,40,108,255,127,202,164,0,203,33,3,255,2,158,0,0,37,96,188,255,192,49,74,0,109,4,0,0,111,167,10,254,91,218,135,255,203,66,173,255,150,194,226,0,201,253,6,255,174,102,121,0,205,191,110,0,53,194,4,0,81,40,45,254,35,102,143,255,12,108,198,255,16,27,232,255,252,71,186,1,176,110,114,0,142,3,117,1,113,77,142,0,19,156,197,1,92,47,252,0,53,232,22,1,54,18,235,0,46,35,189,255,236,212,129,0,2,96,208,254,200,238,199,255,59,175,164,255,146,43,231,0,194,217,52,255,3,223,12,0,138,54,178,254,85,235,207,0,232,207,34,0,49,52,50,255,166,113,89,255,10,45,216,255,62,173,28,0,111,165,246,0,118,115,91,255,128,84,60,0,167,144,203,0,87,13,243,0,22,30,228,1,177,113,146,255,129,170,230,254,252,153,129,255,145,225,43,0,70,231,5,255,122,105,126,254,86,246,148,255,110,37,154,254,209,3,91,0,68,145,62,0,228,16,165,255,55,221,249,254,178,210,91,0,83,146,226,254,69,146,186,0,93,210,104,254,16,25,173,0,231,186,38,0,189,122,140,255,251,13,112,255,105,110,93,0,251,72,170,0,192,23,223,255,24,3,202,1,225,93,228,0,153,147,199,254,109,170,22,0,248,101,246,255,178,124,12,255,178,254,102,254,55,4,65,0,125,214,180,0,183,96,147,0,45,117,23,254,132,191,249,0,143,176,203,254,136,183,54,255,146,234,177,0,146,101,86,255,44,123,143,1,33,209,152,0,192,90,41,254,83,15,125,255,213,172,82,0,215,169,144,0,16,13,34,0,32,209,100,255,84,18,249,1,197,17,236,255,217,186,230,0,49,160,176,255,111,118,97,255,237,104,235,0,79,59,92,254,69,249,11,255,35,172,74,1,19,118,68,0,222,124,165,255,180,66,35,255,86,174,246,0,43,74,111,255,126,144,86,255,228,234,91,0,242,213,24,254,69,44,235,255,220,180,35,0,8,248,7,255,102,47,92,255,240,205,102,255,113,230,171,1,31,185,201,255,194,246,70,255,122,17,187,0,134,70,199,255,149,3,150,255,117,63,103,0,65,104,123,255,212,54,19,1,6,141,88,0,83,134,243,255,136,53,103,0,169,27,180,0,177,49,24,0,111,54,167,0,195,61,215,255,31,1,108,1,60,42,70,0,185,3,162,255,194,149,40,255,246,127,38,254,190,119,38,255,61,119,8,1,96,161,219,255,42,203,221,1,177,242,164,255,245,159,10,0,116,196,0,0,5,93,205,254,128,127,179,0,125,237,246,255,149,162,217,255,87,37,20,254,140,238,192,0,9,9,193,0,97,1,226,0,29,38,10,0,0,136,63,255,229,72,210,254,38,134,92,255,78,218,208,1,104,36,84,255,12,5,193,255,242,175,61,255,191,169,46,1,179,147,147,255,113,190,139,254,125,172,31,0,3,75,252,254,215,36,15,0,193,27,24,1,255,69,149,255,110,129,118,0,203,93,249,0,138,137,64,254,38,70,6,0,153,116,222,0,161,74,123,0,193,99,79,255,118,59,94,255,61,12,43,1,146,177,157,0,46,147,191,0,16,255,38,0,11,51,31,1,60,58,98,255,111,194,77,1,154,91,244,0,140,40,144,1,173,10,251,0,203,209,50,254,108,130,78,0,228,180,90,0,174,7,250,0,31,174,60,0,41,171,30,0,116,99,82,255,118,193,139,255,187,173,198,254,218,111,56,0,185,123,216,0,249,158,52,0,52,180,93,255,201,9,91,255,56,45,166,254,132,155,203,255,58,232,110,0,52,211,89,255,253,0,162,1,9,87,183,0,145,136,44,1,94,122,245,0,85,188,171,1,147,92,198,0,0,8,104,0,30,95,174,0,221,230,52,1,247,247,235,255,137,174,53,255,35,21,204,255,71,227,214,1,232,82,194,0,11,48,227,255,170,73,184,255,198,251,252,254,44,112,34,0,131,101,131,255,72,168,187,0,132,135,125,255,138,104,97,255,238,184,168,255,243,104,84,255,135,216,226,255,139,144,237,0,188,137,150,1,80,56,140,255,86,169,167,255,194,78,25,255,220,17,180,255,17,13,193,0,117,137,212,255,141,224,151,0,49,244,175,0,193,99,175,255,19,99,154,1,255,65,62,255,156,210,55,255,242,244,3,255,250,14,149,0,158,88,217,255,157,207,134,254,251,232,28,0,46,156,251,255,171,56,184,255,239,51,234,0,142,138,131,255,25,254,243,1,10,201,194,0,63,97,75,0,210,239,162,0,192,200,31,1,117,214,243,0,24,71,222,254,54,40,232,255,76,183,111,254,144,14,87,255,214,79,136,255,216,196,212,0,132,27,140,254,131,5,253,0,124,108,19,255,28,215,75,0,76,222,55,254,233,182,63,0,68,171,191,254,52,111,222,255,10,105,77,255,80,170,235,0,143,24,88,255,45,231,121,0,148,129,224,1,61,246,84,0,253,46,219,255,239,76,33,0,49,148,18,254,230,37,69,0,67,134,22,254,142,155,94,0,31,157,211,254,213,42,30,255,4,228,247,254,252,176,13,255,39,0,31,254,241,244,255,255,170,45,10,254,253,222,249,0,222,114,132,0,255,47,6,255,180,163,179,1,84,94,151,255,89,209,82,254,229,52,169,255,213,236,0,1,214,56,228,255,135,119,151,255,112,201,193,0,83,160,53,254,6,151,66,0,18,162,17,0,233,97,91,0,131,5,78,1,181,120,53,255,117,95,63,255,237,117,185,0,191,126,136,255,144,119,233,0,183,57,97,1,47,201,187,255,167,165,119,1,45,100,126,0,21,98,6,254,145,150,95,255,120,54,152,0,209,98,104,0,143,111,30,254,184,148,249,0,235,216,46,0,248,202,148,255,57,95,22,0,242,225,163,0,233,247,232,255,71,171,19,255,103,244,49,255,84,103,93,255,68,121,244,1,82,224,13,0,41,79,43,255,249,206,167,255,215,52,21,254,192,32,22,255,247,111,60,0,101,74,38,255,22,91,84,254,29,28,13,255,198,231,215,254,244,154,200,0,223,137,237,0,211,132,14,0,95,64,206,255,17,62,247,255,233,131,121,1,93,23,77,0,205,204,52,254,81,189,136,0,180,219,138,1,143,18,94,0,204,43,140,254,188,175,219,0,111,98,143,255,151,63,162,255,211,50,71,254,19,146,53,0,146,45,83,254,178,82,238,255,16,133,84,255,226,198,93,255,201,97,20,255,120,118,35,255,114,50,231,255,162,229,156,255,211,26,12,0,114,39,115,255,206,212,134,0,197,217,160,255,116,129,94,254,199,215,219,255,75,223,249,1,253,116,181,255,232,215,104,255,228,130,246,255,185,117,86,0,14,5,8,0,239,29,61,1,237,87,133,255,125,146,137,254,204,168,223,0,46,168,245,0,154,105,22,0,220,212,161,255,107,69,24,255,137,218,181,255,241,84,198,255,130,122,211,255,141,8,153,255,190,177,118,0,96,89,178,0,255,16,48,254,122,96,105,255,117,54,232,255,34,126,105,255,204,67,166,0,232,52,138,255,211,147,12,0,25,54,7,0,44,15,215,254,51,236,45,0,190,68,129,1,106,147,225,0,28,93,45,254,236,141,15,255,17,61,161,0,220,115,192,0,236,145,24,254,111,168,169,0,224,58,63,255,127,164,188,0,82,234,75,1,224,158,134,0,209,68,110,1,217,166,217,0,70,225,166,1,187,193,143,255,16,7,88,255,10,205,140,0,117,192,156,1,17,56,38,0,27,124,108,1,171,215,55,255,95,253,212,0,155,135,168,255,246,178,153,254,154,68,74,0,232,61,96,254,105,132,59,0,33,76,199,1,189,176,130,255,9,104,25,254,75,198,102,255,233,1,112,0,108,220,20,255,114,230,70,0,140,194,133,255,57,158,164,254,146,6,80,255,169,196,97,1,85,183,130,0,70,158,222,1,59,237,234,255,96,25,26,255,232,175,97,255,11,121,248,254,88,35,194,0,219,180,252,254,74,8,227,0,195,227,73,1,184,110,161,255,49,233,164,1,128,53,47,0,82,14,121,255,193,190,58,0,48,174,117,255,132,23,32,0,40,10,134,1,22,51,25,255,240,11,176,255,110,57,146,0,117,143,239,1,157,101,118,255,54,84,76,0,205,184,18,255,47,4,72,255,78,112,85,255,193,50,66,1,93,16,52,255,8,105,134,0,12,109,72,255,58,156,251,0,144,35,204,0,44,160,117,254,50,107,194,0,1,68,165,255,111,110,162,0,158,83,40,254,76,214,234,0,58,216,205,255,171,96,147,255,40,227,114,1,176,227,241,0,70,249,183,1,136,84,139,255,60,122,247,254,143,9,117,255,177,174,137,254,73,247,143,0,236,185,126,255,62,25,247,255,45,64,56,255,161,244,6,0,34,57,56,1,105,202,83,0,128,147,208,0,6,103,10,255,74,138,65,255,97,80,100,255,214,174,33,255,50,134,74,255,110,151,130,254,111,84,172,0,84,199,75,254,248,59,112,255,8,216,178,1,9,183,95,0,238,27,8,254,170,205,220,0,195,229,135,0,98,76,237,255,226,91,26,1,82,219,39,255,225,190,199,1,217,200,121,255,81,179,8,255,140,65,206,0,178,207,87,254,250,252,46,255,104,89,110,1,253,189,158,255,144,214,158,255,160,245,54,255,53,183,92,1,21,200,194,255,146,33,113,1,209,1,255,0,235,106,43,255,167,52,232,0,157,229,221,0,51,30,25,0,250,221,27,1,65,147,87,255,79,123,196,0,65,196,223,255,76,44,17,1,85,241,68,0,202,183,249,255,65,212,212,255,9,33,154,1,71,59,80,0,175,194,59,255,141,72,9,0,100,160,244,0,230,208,56,0,59,25,75,254,80,194,194,0,18,3,200,254,160,159,115,0,132,143,247,1,111,93,57,255,58,237,11,1,134,222,135,255,122,163,108,1,123,43,190,255,251,189,206,254,80,182,72,255,208,246,224,1,17,60,9,0,161,207,38,0,141,109,91,0,216,15,211,255,136,78,110,0,98,163,104,255,21,80,121,255,173,178,183,1,127,143,4,0,104,60,82,254,214,16,13,255,96,238,33,1,158,148,230,255,127,129,62,255,51,255,210,255,62,141,236,254,157,55,224,255,114,39,244,0,192,188,250,255,228,76,53,0,98,84,81,255,173,203,61,254,147,50,55,255,204,235,191,0,52,197,244,0,88,43,211,254,27,191,119,0,188,231,154,0,66,81,161,0,92,193,160,1,250,227,120,0,123,55,226,0,184,17,72,0,133,168,10,254,22,135,156,255,41,25,103,255,48,202,58,0,186,149,81,255,188,134,239,0,235,181,189,254,217,139,188,255,74,48,82,0,46,218,229,0,189,253,251,0,50,229,12,255,211,141,191,1,128,244,25,255,169,231,122,254,86,47,189,255,132,183,23,255,37,178,150,255,51,137,253,0,200,78,31,0,22,105,50,0,130,60,0,0,132,163,91,254,23,231,187,0,192,79,239,0,157,102,164,255,192,82,20,1,24,181,103,255,240,9,234,0,1,123,164,255,133,233,0,255,202,242,242,0,60,186,245,0,241,16,199,255,224,116,158,254,191,125,91,255,224,86,207,0,121,37,231,255,227,9,198,255,15,153,239,255,121,232,217,254,75,112,82,0,95,12,57,254,51,214,105,255,148,220,97,1,199,98,36,0,156,209,12,254,10,212,52,0,217,180,55,254,212,170,232,255,216,20,84,255,157,250,135,0,157,99,127,254,1,206,41,0,149,36,70,1,54,196,201,255,87,116,0,254,235,171,150,0,27,163,234,0,202,135,180,0,208,95,0,254,123,156,93,0,183,62,75,0,137,235,182,0,204,225,255,255,214,139,210,255,2,115,8,255,29,12,111,0,52,156,1,0,253,21,251,255,37,165,31,254,12,130,211,0,106,18,53,254,42,99,154,0,14,217,61,254,216,11,92,255,200,197,112,254,147,38,199,0,36,252,120,254,107,169,77,0,1,123,159,255,207,75,102,0,163,175,196,0,44,1,240,0,120,186,176,254,13,98,76,255,237,124,241,255,232,146,188,255,200,96,224,0,204,31,41,0,208,200,13,0,21,225,96,255,175,156,196,0,247,208,126,0,62,184,244,254,2,171,81,0,85,115,158,0,54,64,45,255,19,138,114,0,135,71,205,0,227,47,147,1,218,231,66,0,253,209,28,0,244,15,173,255,6,15,118,254,16,150,208,255,185,22,50,255,86,112,207,255,75,113,215,1,63,146,43,255,4,225,19,254,227,23,62,255,14,255,214,254,45,8,205,255,87,197,151,254,210,82,215,255,245,248,247,255,128,248,70,0,225,247,87,0,90,120,70,0,213,245,92,0,13,133,226,0,47,181,5,1,92,163,105,255,6,30,133,254,232,178,61,255,230,149,24,255,18,49,158,0,228,100,61,254,116,243,251,255,77,75,92,1,81,219,147,255,76,163,254,254,141,213,246,0,232,37,152,254,97,44,100,0,201,37,50,1,212,244,57,0,174,171,183,255,249,74,112,0,166,156,30,0,222,221,97,255,243,93,73,254,251,101,100,255,216,217,93,255,254,138,187,255,142,190,52,255,59,203,177,255,200,94,52,0,115,114,158,255,165,152,104,1,126,99,226,255,118,157,244,1,107,200,16,0,193,90,229,0,121,6,88,0,156,32,93,254,125,241,211,255,14,237,157,255,165,154,21,255,184,224,22,255,250,24,152,255,113,77,31,0,247,171,23,255,237,177,204,255,52,137,145,255,194,182,114,0,224,234,149,0,10,111,103,1,201,129,4,0,238,142,78,0,52,6,40,255,110,213,165,254,60,207,253,0,62,215,69,0,96,97,0,255,49,45,202,0,120,121,22,255,235,139,48,1,198,45,34,255,182,50,27,1,131,210,91,255,46,54,128,0,175,123,105,255,198,141,78,254,67,244,239,255,245,54,103,254,78,38,242,255,2,92,249,254,251,174,87,255,139,63,144,0,24,108,27,255,34,102,18,1,34,22,152,0,66,229,118,254,50,143,99,0,144,169,149,1,118,30,152,0,178,8,121,1,8,159,18,0,90,101,230,255,129,29,119,0,68,36,11,1,232,183,55,0,23,255,96,255,161,41,193,255,63,139,222,0,15,179,243,0,255,100,15,255,82,53,135,0,137,57,149,1,99,240,170,255,22,230,228,254,49,180,82,255,61,82,43,0,110,245,217,0,199,125,61,0,46,253,52,0,141,197,219,0,211,159,193,0,55,121,105,254,183,20,129,0,169,119,170,255,203,178,139,255,135,40,182,255,172,13,202,255,65,178,148,0,8,207,43,0,122,53,127,1,74,161,48,0,227,214,128,254,86,11,243,255,100,86,7,1,245,68,134,255,61,43,21,1,152,84,94,255,190,60,250,254,239,118,232,255,214,136,37,1,113,76,107,255,93,104,100,1,144,206,23,255,110,150,154,1,228,103,185,0,218,49,50,254,135,77,139,255,185,1,78,0,0,161,148,255,97,29,233,255,207,148,149,255,160,168,0,0,91,128,171,255,6,28,19,254,11,111,247,0,39,187,150,255,138,232,149,0,117,62,68,255,63,216,188,255,235,234,32,254,29,57,160,255,25,12,241,1,169,60,191,0,32,131,141,255,237,159,123,255,94,197,94,254,116,254,3,255,92,179,97,254,121,97,92,255,170,112,14,0,21,149,248,0,248,227,3,0,80,96,109,0,75,192,74,1,12,90,226,255,161,106,68,1,208,114,127,255,114,42,255,254,74,26,74,255,247,179,150,254,121,140,60,0,147,70,200,255,214,40,161,255,161,188,201,255,141,65,135,255,242,115,252,0,62,47,202,0,180,149,255,254,130,55,237,0,165,17,186,255,10,169,194,0,156,109,218,255,112,140,123,255,104,128,223,254,177,142,108,255,121,37,219,255,128,77,18,255,111,108,23,1,91,192,75,0,174,245,22,255,4,236,62,255,43,64,153,1,227,173,254,0,237,122,132,1,127,89,186,255,142,82,128,254,252,84,174,0,90,179,177,1,243,214,87,255,103,60,162,255,208,130,14,255,11,130,139,0,206,129,219,255,94,217,157,255,239,230,230,255,116,115,159,254,164,107,95,0,51,218,2,1,216,125,198,255,140,202,128,254,11,95,68,255,55,9,93,254,174,153,6,255,204,172,96,0,69,160,110,0,213,38,49,254,27,80,213,0,118,125,114,0,70,70,67,255,15,142,73,255,131,122,185,255,243,20,50,254,130,237,40,0,210,159,140,1,197,151,65,255,84,153,66,0,195,126,90,0,16,238,236,1,118,187,102,255,3,24,133,255,187,69,230,0,56,197,92,1,213,69,94,255,80,138,229,1,206,7,230,0,222,111,230,1,91,233,119,255,9,89,7,1,2,98,1,0,148,74,133,255,51,246,180,255,228,177,112,1,58,189,108,255,194,203,237,254,21,209,195,0,147,10,35,1,86,157,226,0,31,163,139,254,56,7,75,255,62,90,116,0,181,60,169,0,138,162,212,254,81,167,31,0,205,90,112,255,33,112,227,0,83,151,117,1,177,224,73,255,174,144,217,255,230,204,79,255,22,77,232,255,114,78,234,0,224,57,126,254,9,49,141,0,242,147,165,1,104,182,140,255,167,132,12,1,123,68,127,0,225,87,39,1,251,108,8,0,198,193,143,1,121,135,207,255,172,22,70,0,50,68,116,255,101,175,40,255,248,105,233,0,166,203,7,0,110,197,218,0,215,254,26,254,168,226,253,0,31,143,96,0,11,103,41,0,183,129,203,254,100,247,74,255,213,126,132,0,210,147,44,0,199,234,27,1,148,47,181,0,155,91,158,1,54,105,175,255,2,78,145,254,102,154,95,0,128,207,127,254,52,124,236,255,130,84,71,0,221,243,211,0,152,170,207,0,222,106,199,0,183,84,94,254,92,200,56,255,138,182,115,1,142,96,146,0,133,136,228,0,97,18,150,0,55,251,66,0,140,102,4,0,202,103,151,0,30,19,248,255,51,184,207,0,202,198,89,0,55,197,225,254,169,95,249,255,66,65,68,255,188,234,126,0,166,223,100,1,112,239,244,0,144,23,194,0,58,39,182,0,244,44,24,254,175,68,179,255,152,118,154,1,176,162,130,0,217,114,204,254,173,126,78,255,33,222,30,255,36,2,91,255,2,143,243,0,9,235,215,0,3,171,151,1,24,215,245,255,168,47,164,254,241,146,207,0,69,129,180,0,68,243,113,0,144,53,72,254,251,45,14,0,23,110,168,0,68,68,79,255,110,70,95,254,174,91,144,255,33,206,95,255,137,41,7,255,19,187,153,254,35,255,112,255,9,145,185,254,50,157,37,0,11,112,49,1,102,8,190,255,234,243,169,1,60,85,23,0,74,39,189,0,116,49,239,0,173,213,210,0,46,161,108,255,159,150,37,0,196,120,185,255,34,98,6,255,153,195,62,255,97,230,71,255,102,61,76,0,26,212,236,255,164,97,16,0,198,59,146,0,163,23,196,0,56,24,61,0,181,98,193,0,251,147,229,255,98,189,24,255,46,54,206,255,234,82,246,0,183,103,38,1,109,62,204,0,10,240,224,0,146,22,117,255,142,154,120,0,69,212,35,0,208,99,118,1,121,255,3,255,72,6,194,0,117,17,197,255,125,15,23,0,154,79,153,0,214,94,197,255,185,55,147,255,62,254,78,254,127,82,153,0,110,102,63,255,108,82,161,255,105,187,212,1,80,138,39,0,60,255,93,255,72,12,186,0,210,251,31,1,190,167,144,255,228,44,19,254,128,67,232,0,214,249,107,254,136,145,86,255,132,46,176,0,189,187,227,255,208,22,140,0,217,211,116,0,50,81,186,254,139,250,31,0,30,64,198,1,135,155,100,0,160,206,23,254,187,162,211,255,16,188,63,0,254,208,49,0,85,84,191,0,241,192,242,255,153,126,145,1,234,162,162,255,230,97,216,1,64,135,126,0,190,148,223,1,52,0,43,255,28,39,189,1,64,136,238,0,175,196,185,0,98,226,213,255,127,159,244,1,226,175,60,0,160,233,142,1,180,243,207,255,69,152,89,1,31,101,21,0,144,25,164,254,139,191,209,0,91,25,121,0,32,147,5,0,39,186,123,255,63,115,230,255,93,167,198,255,143,213,220,255,179,156,19,255,25,66,122,0,214,160,217,255,2,45,62,255,106,79,146,254,51,137,99,255,87,100,231,255,175,145,232,255,101,184,1,255,174,9,125,0,82,37,161,1,36,114,141,255,48,222,142,255,245,186,154,0,5,174,221,254,63,114,155,255,135,55,160,1,80,31,135,0,126,250,179,1,236,218,45,0,20,28,145,1,16,147,73,0,249,189,132,1,17,189,192,255,223,142,198,255,72,20,15,255,250,53,237,254,15,11,18,0,27,211,113,254,213,107,56,255,174,147,146,255,96,126,48,0,23,193,109,1,37,162,94,0,199,157,249,254,24,128,187,255,205,49,178,254,93,164,42,255,43,119,235,1,88,183,237,255,218,210,1,255,107,254,42,0,230,10,99,255,162,0,226,0,219,237,91,0,129,178,203,0,208,50,95,254,206,208,95,255,247,191,89,254,110,234,79,255,165,61,243,0,20,122,112,255,246,246,185,254,103,4,123,0,233,99,230,1,219,91,252,255,199,222,22,255,179,245,233,255,211,241,234,0,111,250,192,255,85,84,136,0,101,58,50,255,131,173,156,254,119,45,51,255,118,233,16,254,242,90,214,0,94,159,219,1,3,3,234,255,98,76,92,254,80,54,230,0,5,228,231,254,53,24,223,255,113,56,118,1,20,132,1,255,171,210,236,0,56,241,158,255,186,115,19,255,8,229,174,0,48,44,0,1,114,114,166,255,6,73,226,255,205,89,244,0,137,227,75,1,248,173,56,0,74,120,246,254,119,3,11,255,81,120,198,255,136,122,98,255,146,241,221,1,109,194,78,255,223,241,70,1,214,200,169,255,97,190,47,255,47,103,174,255,99,92,72,254,118,233,180,255,193,35,233,254,26,229,32,255,222,252,198,0,204,43,71,255,199,84,172,0,134,102,190,0,111,238,97,254,230,40,230,0,227,205,64,254,200,12,225,0,166,25,222,0,113,69,51,255,143,159,24,0,167,184,74,0,29,224,116,254,158,208,233,0,193,116,126,255,212,11,133,255,22,58,140,1,204,36,51,255,232,30,43,0,235,70,181,255,64,56,146,254,169,18,84,255,226,1,13,255,200,50,176,255,52,213,245,254,168,209,97,0,191,71,55,0,34,78,156,0,232,144,58,1,185,74,189,0,186,142,149,254,64,69,127,255,161,203,147,255,176,151,191,0,136,231,203,254,163,182,137,0,161,126,251,254,233,32,66,0,68,207,66,0,30,28,37,0,93,114,96,1,254,92,247,255,44,171,69,0,202,119,11,255,188,118,50,1,255,83,136,255,71,82,26,0,70,227,2,0,32,235,121,1,181,41,154,0,71,134,229,254,202,255,36,0,41,152,5,0,154,63,73,255,34,182,124,0,121,221,150,255,26,204,213,1,41,172,87,0,90,157,146,255,109,130,20,0,71,107,200,255,243,102,189,0,1,195,145,254,46,88,117,0,8,206,227,0,191,110,253,255,109,128,20,254,134,85,51,255,137,177,112,1,216,34,22,255,131,16,208,255,121,149,170,0,114,19,23,1,166,80,31,255,113,240,122,0,232,179,250,0,68,110,180,254,210,170,119,0,223,108,164,255,207,79,233,255,27,229,226,254,209,98,81,255,79,68,7,0,131,185,100,0,170,29,162,255,17,162,107,255,57,21,11,1,100,200,181,255,127,65,166,1,165,134,204,0,104,167,168,0,1,164,79,0,146,135,59,1,70,50,128,255,102,119,13,254,227,6,135,0,162,142,179,255,160,100,222,0,27,224,219,1,158,93,195,255,234,141,137,0,16,24,125,255,238,206,47,255,97,17,98,255,116,110,12,255,96,115,77,0,91,227,232,255,248,254,79,255,92,229,6,254,88,198,139,0,206,75,129,0,250,77,206,255,141,244,123,1,138,69,220,0,32,151,6,1,131,167,22,255,237,68,167,254,199,189,150,0,163,171,138,255,51,188,6,255,95,29,137,254,148,226,179,0,181,107,208,255,134,31,82,255,151,101,45,255,129,202,225,0,224,72,147,0,48,138,151,255,195,64,206,254,237,218,158,0,106,29,137,254,253,189,233,255,103,15,17,255,194,97,255,0,178,45,169,254,198,225,155,0,39,48,117,255,135,106,115,0,97,38,181,0,150,47,65,255,83,130,229,254,246,38,129,0,92,239,154,254,91,99,127,0,161,111,33,255,238,217,242,255,131,185,195,255,213,191,158,255,41,150,218,0,132,169,131,0,89,84,252,1,171,70,128,255,163,248,203,254,1,50,180,255,124,76,85,1,251,111,80,0,99,66,239,255,154,237,182,255,221,126,133,254,74,204,99,255,65,147,119,255,99,56,167,255,79,248,149,255,116,155,228,255,237,43,14,254,69,137,11,255,22,250,241,1,91,122,143,255,205,249,243,0,212,26,60,255,48,182,176,1,48,23,191,255,203,121,152,254,45,74,213,255,62,90,18,254,245,163,230,255,185,106,116,255,83,35,159,0,12,33,2,255,80,34,62,0,16,87,174,255,173,101,85,0,202,36,81,254,160,69,204,255,64,225,187,0,58,206,94,0,86,144,47,0,229,86,245,0,63,145,190,1,37,5,39,0,109,251,26,0,137,147,234,0,162,121,145,255,144,116,206,255,197,232,185,255,183,190,140,255,73,12,254,255,139,20,242,255,170,90,239,255,97,66,187,255,245,181,135,254,222,136,52,0,245,5,51,254,203,47,78,0,152,101,216,0,73,23,125,0,254,96,33,1,235,210,73,255,43,209,88,1,7,129,109,0,122,104,228,254,170,242,203,0,242,204,135,255,202,28,233,255,65,6,127,0,159,144,71,0,100,140,95,0,78,150,13,0,251,107,118,1,182,58,125,255,1,38,108,255,141,189,209,255,8,155,125,1,113,163,91,255,121,79,190,255,134,239,108,255,76,47,248,0,163,228,239,0,17,111,10,0,88,149,75,255,215,235,239,0,167,159,24,255,47,151,108,255,107,209,188,0,233,231,99,254,28,202,148,255,174,35,138,255,110,24,68,255,2,69,181,0,107,102,82,0,102,237,7,0,92,36,237,255,221,162,83,1,55,202,6,255,135,234,135,255,24,250,222,0,65,94,168,254,245,248,210,255,167,108,201,254,255,161,111,0,205,8,254,0,136,13,116,0,100,176,132,255,43,215,126,255,177,133,130,255,158,79,148,0,67,224,37,1,12,206,21,255,62,34,110,1,237,104,175,255,80,132,111,255,142,174,72,0,84,229,180,254,105,179,140,0,64,248,15,255,233,138,16,0,245,67,123,254,218,121,212,255,63,95,218,1,213,133,137,255,143,182,82,255,48,28,11,0,244,114,141,1,209,175,76,255,157,181,150,255,186,229,3,255,164,157,111,1,231,189,139,0,119,202,190,255,218,106,64,255,68,235,63,254,96,26,172,255,187,47,11,1,215,18,251,255,81,84,89,0,68,58,128,0,94,113,5,1,92,129,208,255,97,15,83,254,9,28,188,0,239,9,164,0,60,205,152,0,192,163,98,255,184,18,60,0,217,182,139,0,109,59,120,255,4,192,251,0,169,210,240,255,37,172,92,254,148,211,245,255,179,65,52,0,253,13,115,0,185,174,206,1,114,188,149,255,237,90,173,0,43,199,192,255,88,108,113,0,52,35,76,0,66,25,148,255,221,4,7,255,151,241,114,255,190,209,232,0,98,50,199,0,151,150,213,255,18,74,36,1,53,40,7,0,19,135,65,255,26,172,69,0,174,237,85,0,99,95,41,0,3,56,16,0,39,160,177,255,200,106,218,254,185,68,84,255,91,186,61,254,67,143,141,255,13,244,166,255,99,114,198,0,199,110,163,255,193,18,186,0,124,239,246,1,110,68,22,0,2,235,46,1,212,60,107,0,105,42,105,1,14,230,152,0,7,5,131,0,141,104,154,255,213,3,6,0,131,228,162,255,179,100,28,1,231,123,85,255,206,14,223,1,253,96,230,0,38,152,149,1,98,137,122,0,214,205,3,255,226,152,179,255,6,133,137,0,158,69,140,255,113,162,154,255,180,243,172,255,27,189,115,255,143,46,220,255,213,134,225,255,126,29,69,0,188,43,137,1,242,70,9,0,90,204,255,255,231,170,147,0,23,56,19,254,56,125,157,255,48,179,218,255,79,182,253,255,38,212,191,1,41,235,124,0,96,151,28,0,135,148,190,0,205,249,39,254,52,96,136,255,212,44,136,255,67,209,131,255,252,130,23,255,219,128,20,255,198,129,118,0,108,101,11,0,178,5,146,1,62,7,100,255,181,236,94,254,28,26,164,0,76,22,112,255,120,102,79,0,202,192,229,1,200,176,215,0,41,64,244,255,206,184,78,0,167,45,63,1,160,35,0,255,59,12,142,255,204,9,144,255,219,94,229,1,122,27,112,0,189,105,109,255,64,208,74,255,251,127,55,1,2,226,198,0,44,76,209,0,151,152,77,255,210,23,46,1,201,171,69,255,44,211,231,0,190,37,224,255,245,196,62,255,169,181,222,255,34,211,17,0,119,241,197,255,229,35,152,1,21,69,40,255,178,226,161,0,148,179,193,0,219,194,254,1,40,206,51,255,231,92,250,1,67,153,170,0,21,148,241,0,170,69,82,255,121,18,231,255,92,114,3,0,184,62,230,0,225,201,87,255,146,96,162,255,181,242,220,0,173,187,221,1,226,62,170,255,56,126,217,1,117,13,227,255,179,44,239,0,157,141,155,255,144,221,83,0,235,209,208,0,42,17,165,1,251,81,133,0,124,245,201,254,97,211,24,255,83,214,166,0,154,36,9,255,248,47,127,0,90,219,140,255,161,217,38,254,212,147,63,255,66,84,148,1,207,3,1,0,230,134,89,1,127,78,122,255,224,155,1,255,82,136,74,0,178,156,208,255,186,25,49,255,222,3,210,1,229,150,190,255,85,162,52,255,41,84,141,255,73,123,84,254,93,17,150,0,119,19,28,1,32,22,215,255,28,23,204,255,142,241,52,255,228,52,125,0,29,76,207,0,215,167,250,254,175,164,230,0,55,207,105,1,109,187,245,255,161,44,220,1,41,101,128,255,167,16,94,0,93,214,107,255,118,72,0,254,80,61,234,255,121,175,125,0,139,169,251,0,97,39,147,254,250,196,49,255,165,179,110,254,223,70,187,255,22,142,125,1,154,179,138,255,118,176,42,1,10,174,153,0,156,92,102,0,168,13,161,255,143,16,32,0,250,197,180,255,203,163,44,1,87,32,36,0,161,153,20,255,123,252,15,0,25,227,80,0,60,88,142,0,17,22,201,1,154,205,77,255,39,63,47,0,8,122,141,0,128,23,182,254,204,39,19,255,4,112,29,255,23,36,140,255,210,234,116,254,53,50,63,255,121,171,104,255,160,219,94,0,87,82,14,254,231,42,5,0,165,139,127,254,86,78,38,0,130,60,66,254,203,30,45,255,46,196,122,1,249,53,162,255,136,143,103,254,215,210,114,0,231,7,160,254,169,152,42,255,111,45,246,0,142,131,135,255,131,71,204,255,36,226,11,0,0,28,242,255,225,138,213,255,247,46,216,254,245,3,183,0,108,252,74,1,206,26,48,255,205,54,246,255,211,198,36,255,121,35,50,0,52,216,202,255,38,139,129,254,242,73,148,0,67,231,141,255,42,47,204,0,78,116,25,1,4,225,191,255,6,147,228,0,58,88,177,0,122,165,229,255,252,83,201,255,224,167,96,1,177,184,158,255,242,105,179,1,248,198,240,0,133,66,203,1,254,36,47,0,45,24,115,255,119,62,254,0,196,225,186,254,123,141,172,0,26,85,41,255,226,111,183,0,213,231,151,0,4,59,7,255,238,138,148,0,66,147,33,255,31,246,141,255,209,141,116,255,104,112,31,0,88,161,172,0,83,215,230,254,47,111,151,0,45,38,52,1,132,45,204,0,138,128,109,254,233,117,134,255,243,190,173,254,241,236,240,0,82,127,236,254,40,223,161,255,110,182,225,255,123,174,239,0,135,242,145,1,51,209,154,0,150,3,115,254,217,164,252,255,55,156,69,1,84,94,255,255,232,73,45,1,20,19,212,255,96,197,59,254,96,251,33,0,38,199,73,1,64,172,247,255,117,116,56,255,228,17,18,0,62,138,103,1,246,229,164,255,244,118,201,254,86,32,159,255,109,34,137,1,85,211,186,0,10,193,193,254,122,194,177,0,122,238,102,255,162,218,171,0,108,217,161,1,158,170,34,0,176,47,155,1,181,228,11,255,8,156,0,0,16,75,93,0,206,98,255,1,58,154,35,0,12,243,184,254,67,117,66,255,230,229,123,0,201,42,110], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE+20480); -/* memory initializer */ allocate([134,228,178,254,186,108,118,255,58,19,154,255,82,169,62,255,114,143,115,1,239,196,50,255,173,48,193,255,147,2,84,255,150,134,147,254,95,232,73,0,109,227,52,254,191,137,10,0,40,204,30,254,76,52,97,255,164,235,126,0,254,124,188,0,74,182,21,1,121,29,35,255,241,30,7,254,85,218,214,255,7,84,150,254,81,27,117,255,160,159,152,254,66,24,221,255,227,10,60,1,141,135,102,0,208,189,150,1,117,179,92,0,132,22,136,255,120,199,28,0,21,129,79,254,182,9,65,0,218,163,169,0,246,147,198,255,107,38,144,1,78,175,205,255,214,5,250,254,47,88,29,255,164,47,204,255,43,55,6,255,131,134,207,254,116,100,214,0,96,140,75,1,106,220,144,0,195,32,28,1,172,81,5,255,199,179,52,255,37,84,203,0,170,112,174,0,11,4,91,0,69,244,27,1,117,131,92,0,33,152,175,255,140,153,107,255,251,135,43,254,87,138,4,255,198,234,147,254,121,152,84,255,205,101,155,1,157,9,25,0,72,106,17,254,108,153,0,255,189,229,186,0,193,8,176,255,174,149,209,0,238,130,29,0,233,214,126,1,61,226,102,0,57,163,4,1,198,111,51,255,45,79,78,1,115,210,10,255,218,9,25,255,158,139,198,255,211,82,187,254,80,133,83,0,157,129,230,1,243,133,134,255,40,136,16,0,77,107,79,255,183,85,92,1,177,204,202,0,163,71,147,255,152,69,190,0,172,51,188,1,250,210,172,255,211,242,113,1,89,89,26,255,64,66,111,254,116,152,42,0,161,39,27,255,54,80,254,0,106,209,115,1,103,124,97,0,221,230,98,255,31,231,6,0,178,192,120,254,15,217,203,255,124,158,79,0,112,145,247,0,92,250,48,1,163,181,193,255,37,47,142,254,144,189,165,255,46,146,240,0,6,75,128,0,41,157,200,254,87,121,213,0,1,113,236,0,5,45,250,0,144,12,82,0,31,108,231,0,225,239,119,255,167,7,189,255,187,228,132,255,110,189,34,0,94,44,204,1,162,52,197,0,78,188,241,254,57,20,141,0,244,146,47,1,206,100,51,0,125,107,148,254,27,195,77,0,152,253,90,1,7,143,144,255,51,37,31,0,34,119,38,255,7,197,118,0,153,188,211,0,151,20,116,254,245,65,52,255,180,253,110,1,47,177,209,0,161,99,17,255,118,222,202,0,125,179,252,1,123,54,126,255,145,57,191,0,55,186,121,0,10,243,138,0,205,211,229,255,125,156,241,254,148,156,185,255,227,19,188,255,124,41,32,255,31,34,206,254,17,57,83,0,204,22,37,255,42,96,98,0,119,102,184,1,3,190,28,0,110,82,218,255,200,204,192,255,201,145,118,0,117,204,146,0,132,32,98,1,192,194,121,0,106,161,248,1,237,88,124,0,23,212,26,0,205,171,90,255,248,48,216,1,141,37,230,255,124,203,0,254,158,168,30,255,214,248,21,0,112,187,7,255,75,133,239,255,74,227,243,255,250,147,70,0,214,120,162,0,167,9,179,255,22,158,18,0,218,77,209,1,97,109,81,255,244,33,179,255,57,52,57,255,65,172,210,255,249,71,209,255,142,169,238,0,158,189,153,255,174,254,103,254,98,33,14,0,141,76,230,255,113,139,52,255,15,58,212,0,168,215,201,255,248,204,215,1,223,68,160,255,57,154,183,254,47,231,121,0,106,166,137,0,81,136,138,0,165,43,51,0,231,139,61,0,57,95,59,254,118,98,25,255,151,63,236,1,94,190,250,255,169,185,114,1,5,250,58,255,75,105,97,1,215,223,134,0,113,99,163,1,128,62,112,0,99,106,147,0,163,195,10,0,33,205,182,0,214,14,174,255,129,38,231,255,53,182,223,0,98,42,159,255,247,13,40,0,188,210,177,1,6,21,0,255,255,61,148,254,137,45,129,255,89,26,116,254,126,38,114,0,251,50,242,254,121,134,128,255,204,249,167,254,165,235,215,0,202,177,243,0,133,141,62,0,240,130,190,1,110,175,255,0,0,20,146,1,37,210,121,255,7,39,130,0,142,250,84,255,141,200,207,0,9,95,104,255,11,244,174,0,134,232,126,0,167,1,123,254,16,193,149,255,232,233,239,1,213,70,112,255,252,116,160,254,242,222,220,255,205,85,227,0,7,185,58,0,118,247,63,1,116,77,177,255,62,245,200,254,63,18,37,255,107,53,232,254,50,221,211,0,162,219,7,254,2,94,43,0,182,62,182,254,160,78,200,255,135,140,170,0,235,184,228,0,175,53,138,254,80,58,77,255,152,201,2,1,63,196,34,0,5,30,184,0,171,176,154,0,121,59,206,0,38,99,39,0,172,80,77,254,0,134,151,0,186,33,241,254,94,253,223,255,44,114,252,0,108,126,57,255,201,40,13,255,39,229,27,255,39,239,23,1,151,121,51,255,153,150,248,0,10,234,174,255,118,246,4,254,200,245,38,0,69,161,242,1,16,178,150,0,113,56,130,0,171,31,105,0,26,88,108,255,49,42,106,0,251,169,66,0,69,93,149,0,20,57,254,0,164,25,111,0,90,188,90,255,204,4,197,0,40,213,50,1,212,96,132,255,88,138,180,254,228,146,124,255,184,246,247,0,65,117,86,255,253,102,210,254,254,121,36,0,137,115,3,255,60,24,216,0,134,18,29,0,59,226,97,0,176,142,71,0,7,209,161,0,189,84,51,254,155,250,72,0,213,84,235,255,45,222,224,0,238,148,143,255,170,42,53,255,78,167,117,0,186,0,40,255,125,177,103,255,69,225,66,0,227,7,88,1,75,172,6,0,169,45,227,1,16,36,70,255,50,2,9,255,139,193,22,0,143,183,231,254,218,69,50,0,236,56,161,1,213,131,42,0,138,145,44,254,136,229,40,255,49,63,35,255,61,145,245,255,101,192,2,254,232,167,113,0,152,104,38,1,121,185,218,0,121,139,211,254,119,240,35,0,65,189,217,254,187,179,162,255,160,187,230,0,62,248,14,255,60,78,97,0,255,247,163,255,225,59,91,255,107,71,58,255,241,47,33,1,50,117,236,0,219,177,63,254,244,90,179,0,35,194,215,255,189,67,50,255,23,135,129,0,104,189,37,255,185,57,194,0,35,62,231,255,220,248,108,0,12,231,178,0,143,80,91,1,131,93,101,255,144,39,2,1,255,250,178,0,5,17,236,254,139,32,46,0,204,188,38,254,245,115,52,255,191,113,73,254,191,108,69,255,22,69,245,1,23,203,178,0,170,99,170,0,65,248,111,0,37,108,153,255,64,37,69,0,0,88,62,254,89,148,144,255,191,68,224,1,241,39,53,0,41,203,237,255,145,126,194,255,221,42,253,255,25,99,151,0,97,253,223,1,74,115,49,255,6,175,72,255,59,176,203,0,124,183,249,1,228,228,99,0,129,12,207,254,168,192,195,255,204,176,16,254,152,234,171,0,77,37,85,255,33,120,135,255,142,194,227,1,31,214,58,0,213,187,125,255,232,46,60,255,190,116,42,254,151,178,19,255,51,62,237,254,204,236,193,0,194,232,60,0,172,34,157,255,189,16,184,254,103,3,95,255,141,233,36,254,41,25,11,255,21,195,166,0,118,245,45,0,67,213,149,255,159,12,18,255,187,164,227,1,160,25,5,0,12,78,195,1,43,197,225,0,48,142,41,254,196,155,60,255,223,199,18,1,145,136,156,0,252,117,169,254,145,226,238,0,239,23,107,0,109,181,188,255,230,112,49,254,73,170,237,255,231,183,227,255,80,220,20,0,194,107,127,1,127,205,101,0,46,52,197,1,210,171,36,255,88,3,90,255,56,151,141,0,96,187,255,255,42,78,200,0,254,70,70,1,244,125,168,0,204,68,138,1,124,215,70,0,102,66,200,254,17,52,228,0,117,220,143,254,203,248,123,0,56,18,174,255,186,151,164,255,51,232,208,1,160,228,43,255,249,29,25,1,68,190,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,127,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,188,129,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,255,255,255,255], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE+30720); +/* memory initializer */ allocate([134,228,178,254,186,108,118,255,58,19,154,255,82,169,62,255,114,143,115,1,239,196,50,255,173,48,193,255,147,2,84,255,150,134,147,254,95,232,73,0,109,227,52,254,191,137,10,0,40,204,30,254,76,52,97,255,164,235,126,0,254,124,188,0,74,182,21,1,121,29,35,255,241,30,7,254,85,218,214,255,7,84,150,254,81,27,117,255,160,159,152,254,66,24,221,255,227,10,60,1,141,135,102,0,208,189,150,1,117,179,92,0,132,22,136,255,120,199,28,0,21,129,79,254,182,9,65,0,218,163,169,0,246,147,198,255,107,38,144,1,78,175,205,255,214,5,250,254,47,88,29,255,164,47,204,255,43,55,6,255,131,134,207,254,116,100,214,0,96,140,75,1,106,220,144,0,195,32,28,1,172,81,5,255,199,179,52,255,37,84,203,0,170,112,174,0,11,4,91,0,69,244,27,1,117,131,92,0,33,152,175,255,140,153,107,255,251,135,43,254,87,138,4,255,198,234,147,254,121,152,84,255,205,101,155,1,157,9,25,0,72,106,17,254,108,153,0,255,189,229,186,0,193,8,176,255,174,149,209,0,238,130,29,0,233,214,126,1,61,226,102,0,57,163,4,1,198,111,51,255,45,79,78,1,115,210,10,255,218,9,25,255,158,139,198,255,211,82,187,254,80,133,83,0,157,129,230,1,243,133,134,255,40,136,16,0,77,107,79,255,183,85,92,1,177,204,202,0,163,71,147,255,152,69,190,0,172,51,188,1,250,210,172,255,211,242,113,1,89,89,26,255,64,66,111,254,116,152,42,0,161,39,27,255,54,80,254,0,106,209,115,1,103,124,97,0,221,230,98,255,31,231,6,0,178,192,120,254,15,217,203,255,124,158,79,0,112,145,247,0,92,250,48,1,163,181,193,255,37,47,142,254,144,189,165,255,46,146,240,0,6,75,128,0,41,157,200,254,87,121,213,0,1,113,236,0,5,45,250,0,144,12,82,0,31,108,231,0,225,239,119,255,167,7,189,255,187,228,132,255,110,189,34,0,94,44,204,1,162,52,197,0,78,188,241,254,57,20,141,0,244,146,47,1,206,100,51,0,125,107,148,254,27,195,77,0,152,253,90,1,7,143,144,255,51,37,31,0,34,119,38,255,7,197,118,0,153,188,211,0,151,20,116,254,245,65,52,255,180,253,110,1,47,177,209,0,161,99,17,255,118,222,202,0,125,179,252,1,123,54,126,255,145,57,191,0,55,186,121,0,10,243,138,0,205,211,229,255,125,156,241,254,148,156,185,255,227,19,188,255,124,41,32,255,31,34,206,254,17,57,83,0,204,22,37,255,42,96,98,0,119,102,184,1,3,190,28,0,110,82,218,255,200,204,192,255,201,145,118,0,117,204,146,0,132,32,98,1,192,194,121,0,106,161,248,1,237,88,124,0,23,212,26,0,205,171,90,255,248,48,216,1,141,37,230,255,124,203,0,254,158,168,30,255,214,248,21,0,112,187,7,255,75,133,239,255,74,227,243,255,250,147,70,0,214,120,162,0,167,9,179,255,22,158,18,0,218,77,209,1,97,109,81,255,244,33,179,255,57,52,57,255,65,172,210,255,249,71,209,255,142,169,238,0,158,189,153,255,174,254,103,254,98,33,14,0,141,76,230,255,113,139,52,255,15,58,212,0,168,215,201,255,248,204,215,1,223,68,160,255,57,154,183,254,47,231,121,0,106,166,137,0,81,136,138,0,165,43,51,0,231,139,61,0,57,95,59,254,118,98,25,255,151,63,236,1,94,190,250,255,169,185,114,1,5,250,58,255,75,105,97,1,215,223,134,0,113,99,163,1,128,62,112,0,99,106,147,0,163,195,10,0,33,205,182,0,214,14,174,255,129,38,231,255,53,182,223,0,98,42,159,255,247,13,40,0,188,210,177,1,6,21,0,255,255,61,148,254,137,45,129,255,89,26,116,254,126,38,114,0,251,50,242,254,121,134,128,255,204,249,167,254,165,235,215,0,202,177,243,0,133,141,62,0,240,130,190,1,110,175,255,0,0,20,146,1,37,210,121,255,7,39,130,0,142,250,84,255,141,200,207,0,9,95,104,255,11,244,174,0,134,232,126,0,167,1,123,254,16,193,149,255,232,233,239,1,213,70,112,255,252,116,160,254,242,222,220,255,205,85,227,0,7,185,58,0,118,247,63,1,116,77,177,255,62,245,200,254,63,18,37,255,107,53,232,254,50,221,211,0,162,219,7,254,2,94,43,0,182,62,182,254,160,78,200,255,135,140,170,0,235,184,228,0,175,53,138,254,80,58,77,255,152,201,2,1,63,196,34,0,5,30,184,0,171,176,154,0,121,59,206,0,38,99,39,0,172,80,77,254,0,134,151,0,186,33,241,254,94,253,223,255,44,114,252,0,108,126,57,255,201,40,13,255,39,229,27,255,39,239,23,1,151,121,51,255,153,150,248,0,10,234,174,255,118,246,4,254,200,245,38,0,69,161,242,1,16,178,150,0,113,56,130,0,171,31,105,0,26,88,108,255,49,42,106,0,251,169,66,0,69,93,149,0,20,57,254,0,164,25,111,0,90,188,90,255,204,4,197,0,40,213,50,1,212,96,132,255,88,138,180,254,228,146,124,255,184,246,247,0,65,117,86,255,253,102,210,254,254,121,36,0,137,115,3,255,60,24,216,0,134,18,29,0,59,226,97,0,176,142,71,0,7,209,161,0,189,84,51,254,155,250,72,0,213,84,235,255,45,222,224,0,238,148,143,255,170,42,53,255,78,167,117,0,186,0,40,255,125,177,103,255,69,225,66,0,227,7,88,1,75,172,6,0,169,45,227,1,16,36,70,255,50,2,9,255,139,193,22,0,143,183,231,254,218,69,50,0,236,56,161,1,213,131,42,0,138,145,44,254,136,229,40,255,49,63,35,255,61,145,245,255,101,192,2,254,232,167,113,0,152,104,38,1,121,185,218,0,121,139,211,254,119,240,35,0,65,189,217,254,187,179,162,255,160,187,230,0,62,248,14,255,60,78,97,0,255,247,163,255,225,59,91,255,107,71,58,255,241,47,33,1,50,117,236,0,219,177,63,254,244,90,179,0,35,194,215,255,189,67,50,255,23,135,129,0,104,189,37,255,185,57,194,0,35,62,231,255,220,248,108,0,12,231,178,0,143,80,91,1,131,93,101,255,144,39,2,1,255,250,178,0,5,17,236,254,139,32,46,0,204,188,38,254,245,115,52,255,191,113,73,254,191,108,69,255,22,69,245,1,23,203,178,0,170,99,170,0,65,248,111,0,37,108,153,255,64,37,69,0,0,88,62,254,89,148,144,255,191,68,224,1,241,39,53,0,41,203,237,255,145,126,194,255,221,42,253,255,25,99,151,0,97,253,223,1,74,115,49,255,6,175,72,255,59,176,203,0,124,183,249,1,228,228,99,0,129,12,207,254,168,192,195,255,204,176,16,254,152,234,171,0,77,37,85,255,33,120,135,255,142,194,227,1,31,214,58,0,213,187,125,255,232,46,60,255,190,116,42,254,151,178,19,255,51,62,237,254,204,236,193,0,194,232,60,0,172,34,157,255,189,16,184,254,103,3,95,255,141,233,36,254,41,25,11,255,21,195,166,0,118,245,45,0,67,213,149,255,159,12,18,255,187,164,227,1,160,25,5,0,12,78,195,1,43,197,225,0,48,142,41,254,196,155,60,255,223,199,18,1,145,136,156,0,252,117,169,254,145,226,238,0,239,23,107,0,109,181,188,255,230,112,49,254,73,170,237,255,231,183,227,255,80,220,20,0,194,107,127,1,127,205,101,0,46,52,197,1,210,171,36,255,88,3,90,255,56,151,141,0,96,187,255,255,42,78,200,0,254,70,70,1,244,125,168,0,204,68,138,1,124,215,70,0,102,66,200,254,17,52,228,0,117,220,143,254,203,248,123,0,56,18,174,255,186,151,164,255,51,232,208,1,160,228,43,255,249,29,25,1,68,190,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,220,130,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,244,127,0,0], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE+30720); /* no memory initializer */ -var tempDoublePtr = Runtime.alignMemory(allocate(12, "i8", ALLOC_STATIC), 8); - -assert(tempDoublePtr % 8 == 0); +var tempDoublePtr = STATICTOP; STATICTOP += 16; function copyTempFloat(ptr) { // functions, because inlining this code increases code size too much @@ -1584,23 +1580,12 @@ function copyTempDouble(ptr) { Module["_memset"] = _memset; - function _pthread_cleanup_push(routine, arg) { - __ATEXIT__.push(function() { Runtime.dynCall('vi', routine, [arg]) }) - _pthread_cleanup_push.level = __ATEXIT__.length; - } - Module["_bitshift64Lshr"] = _bitshift64Lshr; Module["_bitshift64Shl"] = _bitshift64Shl; - function _pthread_cleanup_pop() { - assert(_pthread_cleanup_push.level == __ATEXIT__.length, 'cannot pop if something else added meanwhile!'); - __ATEXIT__.pop(); - _pthread_cleanup_push.level = __ATEXIT__.length; - } - function _abort() { Module['abort'](); } @@ -1610,19029 +1595,15456 @@ function copyTempDouble(ptr) { function ___unlock() {} + var SYSCALLS={varargs:0,get:function (varargs) { + SYSCALLS.varargs += 4; + var ret = HEAP32[(((SYSCALLS.varargs)-(4))>>2)]; + return ret; + },getStr:function () { + var ret = Pointer_stringify(SYSCALLS.get()); + return ret; + },get64:function () { + var low = SYSCALLS.get(), high = SYSCALLS.get(); + if (low >= 0) assert(high === 0); + else assert(high === -1); + return low; + },getZero:function () { + assert(SYSCALLS.get() === 0); + }};function ___syscall6(which, varargs) {SYSCALLS.varargs = varargs; + try { + // close + var stream = SYSCALLS.getStreamFromFD(); + FS.close(stream); + return 0; + } catch (e) { + if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); + return -e.errno; + } + } + - - var ERRNO_CODES={EPERM:1,ENOENT:2,ESRCH:3,EINTR:4,EIO:5,ENXIO:6,E2BIG:7,ENOEXEC:8,EBADF:9,ECHILD:10,EAGAIN:11,EWOULDBLOCK:11,ENOMEM:12,EACCES:13,EFAULT:14,ENOTBLK:15,EBUSY:16,EEXIST:17,EXDEV:18,ENODEV:19,ENOTDIR:20,EISDIR:21,EINVAL:22,ENFILE:23,EMFILE:24,ENOTTY:25,ETXTBSY:26,EFBIG:27,ENOSPC:28,ESPIPE:29,EROFS:30,EMLINK:31,EPIPE:32,EDOM:33,ERANGE:34,ENOMSG:42,EIDRM:43,ECHRNG:44,EL2NSYNC:45,EL3HLT:46,EL3RST:47,ELNRNG:48,EUNATCH:49,ENOCSI:50,EL2HLT:51,EDEADLK:35,ENOLCK:37,EBADE:52,EBADR:53,EXFULL:54,ENOANO:55,EBADRQC:56,EBADSLT:57,EDEADLOCK:35,EBFONT:59,ENOSTR:60,ENODATA:61,ETIME:62,ENOSR:63,ENONET:64,ENOPKG:65,EREMOTE:66,ENOLINK:67,EADV:68,ESRMNT:69,ECOMM:70,EPROTO:71,EMULTIHOP:72,EDOTDOT:73,EBADMSG:74,ENOTUNIQ:76,EBADFD:77,EREMCHG:78,ELIBACC:79,ELIBBAD:80,ELIBSCN:81,ELIBMAX:82,ELIBEXEC:83,ENOSYS:38,ENOTEMPTY:39,ENAMETOOLONG:36,ELOOP:40,EOPNOTSUPP:95,EPFNOSUPPORT:96,ECONNRESET:104,ENOBUFS:105,EAFNOSUPPORT:97,EPROTOTYPE:91,ENOTSOCK:88,ENOPROTOOPT:92,ESHUTDOWN:108,ECONNREFUSED:111,EADDRINUSE:98,ECONNABORTED:103,ENETUNREACH:101,ENETDOWN:100,ETIMEDOUT:110,EHOSTDOWN:112,EHOSTUNREACH:113,EINPROGRESS:115,EALREADY:114,EDESTADDRREQ:89,EMSGSIZE:90,EPROTONOSUPPORT:93,ESOCKTNOSUPPORT:94,EADDRNOTAVAIL:99,ENETRESET:102,EISCONN:106,ENOTCONN:107,ETOOMANYREFS:109,EUSERS:87,EDQUOT:122,ESTALE:116,ENOTSUP:95,ENOMEDIUM:123,EILSEQ:84,EOVERFLOW:75,ECANCELED:125,ENOTRECOVERABLE:131,EOWNERDEAD:130,ESTRPIPE:86}; - - var ERRNO_MESSAGES={0:"Success",1:"Not super-user",2:"No such file or directory",3:"No such process",4:"Interrupted system call",5:"I/O error",6:"No such device or address",7:"Arg list too long",8:"Exec format error",9:"Bad file number",10:"No children",11:"No more processes",12:"Not enough core",13:"Permission denied",14:"Bad address",15:"Block device required",16:"Mount device busy",17:"File exists",18:"Cross-device link",19:"No such device",20:"Not a directory",21:"Is a directory",22:"Invalid argument",23:"Too many open files in system",24:"Too many open files",25:"Not a typewriter",26:"Text file busy",27:"File too large",28:"No space left on device",29:"Illegal seek",30:"Read only file system",31:"Too many links",32:"Broken pipe",33:"Math arg out of domain of func",34:"Math result not representable",35:"File locking deadlock error",36:"File or path name too long",37:"No record locks available",38:"Function not implemented",39:"Directory not empty",40:"Too many symbolic links",42:"No message of desired type",43:"Identifier removed",44:"Channel number out of range",45:"Level 2 not synchronized",46:"Level 3 halted",47:"Level 3 reset",48:"Link number out of range",49:"Protocol driver not attached",50:"No CSI structure available",51:"Level 2 halted",52:"Invalid exchange",53:"Invalid request descriptor",54:"Exchange full",55:"No anode",56:"Invalid request code",57:"Invalid slot",59:"Bad font file fmt",60:"Device not a stream",61:"No data (for no delay io)",62:"Timer expired",63:"Out of streams resources",64:"Machine is not on the network",65:"Package not installed",66:"The object is remote",67:"The link has been severed",68:"Advertise error",69:"Srmount error",70:"Communication error on send",71:"Protocol error",72:"Multihop attempted",73:"Cross mount point (not really error)",74:"Trying to read unreadable message",75:"Value too large for defined data type",76:"Given log. name not unique",77:"f.d. invalid for this operation",78:"Remote address changed",79:"Can access a needed shared lib",80:"Accessing a corrupted shared lib",81:".lib section in a.out corrupted",82:"Attempting to link in too many libs",83:"Attempting to exec a shared library",84:"Illegal byte sequence",86:"Streams pipe error",87:"Too many users",88:"Socket operation on non-socket",89:"Destination address required",90:"Message too long",91:"Protocol wrong type for socket",92:"Protocol not available",93:"Unknown protocol",94:"Socket type not supported",95:"Not supported",96:"Protocol family not supported",97:"Address family not supported by protocol family",98:"Address already in use",99:"Address not available",100:"Network interface is not configured",101:"Network is unreachable",102:"Connection reset by network",103:"Connection aborted",104:"Connection reset by peer",105:"No buffer space available",106:"Socket is already connected",107:"Socket is not connected",108:"Can't send after socket shutdown",109:"Too many references",110:"Connection timed out",111:"Connection refused",112:"Host is down",113:"Host is unreachable",114:"Socket already connected",115:"Connection already in progress",116:"Stale file handle",122:"Quota exceeded",123:"No medium (in tape drive)",125:"Operation canceled",130:"Previous owner died",131:"State not recoverable"}; + + Module["___muldsi3"] = ___muldsi3; + Module["___muldi3"] = ___muldi3; + + function _llvm_stackrestore(p) { + var self = _llvm_stacksave; + var ret = self.LLVM_SAVEDSTACKS[p]; + self.LLVM_SAVEDSTACKS.splice(p, 1); + Runtime.stackRestore(ret); + } + function ___setErrNo(value) { if (Module['___errno_location']) HEAP32[((Module['___errno_location']())>>2)]=value; return value; + } + Module["_sbrk"] = _sbrk; + + function _llvm_stacksave() { + var self = _llvm_stacksave; + if (!self.LLVM_SAVEDSTACKS) { + self.LLVM_SAVEDSTACKS = []; + } + self.LLVM_SAVEDSTACKS.push(Runtime.stackSave()); + return self.LLVM_SAVEDSTACKS.length-1; } + - var PATH={splitPath:function (filename) { - var splitPathRe = /^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/; - return splitPathRe.exec(filename).slice(1); - },normalizeArray:function (parts, allowAboveRoot) { - // if the path tries to go above the root, `up` ends up > 0 - var up = 0; - for (var i = parts.length - 1; i >= 0; i--) { - var last = parts[i]; - if (last === '.') { - parts.splice(i, 1); - } else if (last === '..') { - parts.splice(i, 1); - up++; - } else if (up) { - parts.splice(i, 1); - up--; - } - } - // if the path is allowed to go above the root, restore leading ..s - if (allowAboveRoot) { - for (; up--; up) { - parts.unshift('..'); - } - } - return parts; - },normalize:function (path) { - var isAbsolute = path.charAt(0) === '/', - trailingSlash = path.substr(-1) === '/'; - // Normalize the path - path = PATH.normalizeArray(path.split('/').filter(function(p) { - return !!p; - }), !isAbsolute).join('/'); - if (!path && !isAbsolute) { - path = '.'; - } - if (path && trailingSlash) { - path += '/'; - } - return (isAbsolute ? '/' : '') + path; - },dirname:function (path) { - var result = PATH.splitPath(path), - root = result[0], - dir = result[1]; - if (!root && !dir) { - // No dirname whatsoever - return '.'; - } - if (dir) { - // It has a dirname, strip trailing slash - dir = dir.substr(0, dir.length - 1); - } - return root + dir; - },basename:function (path) { - // EMSCRIPTEN return '/'' for '/', not an empty string - if (path === '/') return '/'; - var lastSlash = path.lastIndexOf('/'); - if (lastSlash === -1) return path; - return path.substr(lastSlash+1); - },extname:function (path) { - return PATH.splitPath(path)[3]; - },join:function () { - var paths = Array.prototype.slice.call(arguments, 0); - return PATH.normalize(paths.join('/')); - },join2:function (l, r) { - return PATH.normalize(l + '/' + r); - },resolve:function () { - var resolvedPath = '', - resolvedAbsolute = false; - for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) { - var path = (i >= 0) ? arguments[i] : FS.cwd(); - // Skip empty and invalid entries - if (typeof path !== 'string') { - throw new TypeError('Arguments to path.resolve must be strings'); - } else if (!path) { - return ''; // an invalid portion invalidates the whole thing - } - resolvedPath = path + '/' + resolvedPath; - resolvedAbsolute = path.charAt(0) === '/'; - } - // At this point the path should be resolved to a full absolute path, but - // handle relative paths to be safe (might happen when process.cwd() fails) - resolvedPath = PATH.normalizeArray(resolvedPath.split('/').filter(function(p) { - return !!p; - }), !resolvedAbsolute).join('/'); - return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.'; - },relative:function (from, to) { - from = PATH.resolve(from).substr(1); - to = PATH.resolve(to).substr(1); - function trim(arr) { - var start = 0; - for (; start < arr.length; start++) { - if (arr[start] !== '') break; - } - var end = arr.length - 1; - for (; end >= 0; end--) { - if (arr[end] !== '') break; - } - if (start > end) return []; - return arr.slice(start, end - start + 1); - } - var fromParts = trim(from.split('/')); - var toParts = trim(to.split('/')); - var length = Math.min(fromParts.length, toParts.length); - var samePartsLength = length; - for (var i = 0; i < length; i++) { - if (fromParts[i] !== toParts[i]) { - samePartsLength = i; - break; - } - } - var outputParts = []; - for (var i = samePartsLength; i < fromParts.length; i++) { - outputParts.push('..'); - } - outputParts = outputParts.concat(toParts.slice(samePartsLength)); - return outputParts.join('/'); - }}; - - var TTY={ttys:[],init:function () { - // https://github.com/kripken/emscripten/pull/1555 - // if (ENVIRONMENT_IS_NODE) { - // // currently, FS.init does not distinguish if process.stdin is a file or TTY - // // device, it always assumes it's a TTY device. because of this, we're forcing - // // process.stdin to UTF8 encoding to at least make stdin reading compatible - // // with text files until FS.init can be refactored. - // process['stdin']['setEncoding']('utf8'); - // } - },shutdown:function () { - // https://github.com/kripken/emscripten/pull/1555 - // if (ENVIRONMENT_IS_NODE) { - // // inolen: any idea as to why node -e 'process.stdin.read()' wouldn't exit immediately (with process.stdin being a tty)? - // // isaacs: because now it's reading from the stream, you've expressed interest in it, so that read() kicks off a _read() which creates a ReadReq operation - // // inolen: I thought read() in that case was a synchronous operation that just grabbed some amount of buffered data if it exists? - // // isaacs: it is. but it also triggers a _read() call, which calls readStart() on the handle - // // isaacs: do process.stdin.pause() and i'd think it'd probably close the pending call - // process['stdin']['pause'](); - // } - },register:function (dev, ops) { - TTY.ttys[dev] = { input: [], output: [], ops: ops }; - FS.registerDevice(dev, TTY.stream_ops); - },stream_ops:{open:function (stream) { - var tty = TTY.ttys[stream.node.rdev]; - if (!tty) { - throw new FS.ErrnoError(ERRNO_CODES.ENODEV); - } - stream.tty = tty; - stream.seekable = false; - },close:function (stream) { - // flush any pending line data - stream.tty.ops.flush(stream.tty); - },flush:function (stream) { - stream.tty.ops.flush(stream.tty); - },read:function (stream, buffer, offset, length, pos /* ignored */) { - if (!stream.tty || !stream.tty.ops.get_char) { - throw new FS.ErrnoError(ERRNO_CODES.ENXIO); - } - var bytesRead = 0; - for (var i = 0; i < length; i++) { - var result; - try { - result = stream.tty.ops.get_char(stream.tty); - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES.EIO); - } - if (result === undefined && bytesRead === 0) { - throw new FS.ErrnoError(ERRNO_CODES.EAGAIN); - } - if (result === null || result === undefined) break; - bytesRead++; - buffer[offset+i] = result; - } - if (bytesRead) { - stream.node.timestamp = Date.now(); - } - return bytesRead; - },write:function (stream, buffer, offset, length, pos) { - if (!stream.tty || !stream.tty.ops.put_char) { - throw new FS.ErrnoError(ERRNO_CODES.ENXIO); - } - for (var i = 0; i < length; i++) { - try { - stream.tty.ops.put_char(stream.tty, buffer[offset+i]); - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES.EIO); - } - } - if (length) { - stream.node.timestamp = Date.now(); - } - return i; - }},default_tty_ops:{get_char:function (tty) { - if (!tty.input.length) { - var result = null; - if (ENVIRONMENT_IS_NODE) { - // we will read data by chunks of BUFSIZE - var BUFSIZE = 256; - var buf = new Buffer(BUFSIZE); - var bytesRead = 0; - - var fd = process.stdin.fd; - // Linux and Mac cannot use process.stdin.fd (which isn't set up as sync) - var usingDevice = false; - try { - fd = fs.openSync('/dev/stdin', 'r'); - usingDevice = true; - } catch (e) {} - - bytesRead = fs.readSync(fd, buf, 0, BUFSIZE, null); - - if (usingDevice) { fs.closeSync(fd); } - if (bytesRead > 0) { - result = buf.slice(0, bytesRead).toString('utf-8'); - } else { - result = null; - } - } else if (typeof window != 'undefined' && - typeof window.prompt == 'function') { - // Browser. - result = window.prompt('Input: '); // returns null on cancel - if (result !== null) { - result += '\n'; - } - } else if (typeof readline == 'function') { - // Command line. - result = readline(); - if (result !== null) { - result += '\n'; - } - } - if (!result) { - return null; - } - tty.input = intArrayFromString(result, true); - } - return tty.input.shift(); - },put_char:function (tty, val) { - if (val === null || val === 10) { - Module['print'](UTF8ArrayToString(tty.output, 0)); - tty.output = []; - } else { - if (val != 0) tty.output.push(val); // val == 0 would cut text output off in the middle. - } - },flush:function (tty) { - if (tty.output && tty.output.length > 0) { - Module['print'](UTF8ArrayToString(tty.output, 0)); - tty.output = []; - } - }},default_tty1_ops:{put_char:function (tty, val) { - if (val === null || val === 10) { - Module['printErr'](UTF8ArrayToString(tty.output, 0)); - tty.output = []; + function _emscripten_memcpy_big(dest, src, num) { + HEAPU8.set(HEAPU8.subarray(src, src+num), dest); + return dest; + } + Module["_memcpy"] = _memcpy; + Module["_memmove"] = _memmove; + + + function ___syscall140(which, varargs) {SYSCALLS.varargs = varargs; + try { + // llseek + var stream = SYSCALLS.getStreamFromFD(), offset_high = SYSCALLS.get(), offset_low = SYSCALLS.get(), result = SYSCALLS.get(), whence = SYSCALLS.get(); + // NOTE: offset_high is unused - Emscripten's off_t is 32-bit + var offset = offset_low; + FS.llseek(stream, offset, whence); + HEAP32[((result)>>2)]=stream.position; + if (stream.getdents && offset === 0 && whence === 0) stream.getdents = null; // reset readdir state + return 0; + } catch (e) { + if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); + return -e.errno; + } + } + + function ___syscall146(which, varargs) {SYSCALLS.varargs = varargs; + try { + // writev + // hack to support printf in NO_FILESYSTEM + var stream = SYSCALLS.get(), iov = SYSCALLS.get(), iovcnt = SYSCALLS.get(); + var ret = 0; + if (!___syscall146.buffer) { + ___syscall146.buffers = [null, [], []]; // 1 => stdout, 2 => stderr + ___syscall146.printChar = function(stream, curr) { + var buffer = ___syscall146.buffers[stream]; + assert(buffer); + if (curr === 0 || curr === 10) { + (stream === 1 ? Module['print'] : Module['printErr'])(UTF8ArrayToString(buffer, 0)); + buffer.length = 0; } else { - if (val != 0) tty.output.push(val); - } - },flush:function (tty) { - if (tty.output && tty.output.length > 0) { - Module['printErr'](UTF8ArrayToString(tty.output, 0)); - tty.output = []; + buffer.push(curr); } - }}}; - - var MEMFS={ops_table:null,mount:function (mount) { - return MEMFS.createNode(null, '/', 16384 | 511 /* 0777 */, 0); - },createNode:function (parent, name, mode, dev) { - if (FS.isBlkdev(mode) || FS.isFIFO(mode)) { - // no supported - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - if (!MEMFS.ops_table) { - MEMFS.ops_table = { - dir: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr, - lookup: MEMFS.node_ops.lookup, - mknod: MEMFS.node_ops.mknod, - rename: MEMFS.node_ops.rename, - unlink: MEMFS.node_ops.unlink, - rmdir: MEMFS.node_ops.rmdir, - readdir: MEMFS.node_ops.readdir, - symlink: MEMFS.node_ops.symlink - }, - stream: { - llseek: MEMFS.stream_ops.llseek - } - }, - file: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr - }, - stream: { - llseek: MEMFS.stream_ops.llseek, - read: MEMFS.stream_ops.read, - write: MEMFS.stream_ops.write, - allocate: MEMFS.stream_ops.allocate, - mmap: MEMFS.stream_ops.mmap, - msync: MEMFS.stream_ops.msync - } - }, - link: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr, - readlink: MEMFS.node_ops.readlink - }, - stream: {} - }, - chrdev: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr - }, - stream: FS.chrdev_stream_ops - } - }; - } - var node = FS.createNode(parent, name, mode, dev); - if (FS.isDir(node.mode)) { - node.node_ops = MEMFS.ops_table.dir.node; - node.stream_ops = MEMFS.ops_table.dir.stream; - node.contents = {}; - } else if (FS.isFile(node.mode)) { - node.node_ops = MEMFS.ops_table.file.node; - node.stream_ops = MEMFS.ops_table.file.stream; - node.usedBytes = 0; // The actual number of bytes used in the typed array, as opposed to contents.buffer.byteLength which gives the whole capacity. - // When the byte data of the file is populated, this will point to either a typed array, or a normal JS array. Typed arrays are preferred - // for performance, and used by default. However, typed arrays are not resizable like normal JS arrays are, so there is a small disk size - // penalty involved for appending file writes that continuously grow a file similar to std::vector capacity vs used -scheme. - node.contents = null; - } else if (FS.isLink(node.mode)) { - node.node_ops = MEMFS.ops_table.link.node; - node.stream_ops = MEMFS.ops_table.link.stream; - } else if (FS.isChrdev(node.mode)) { - node.node_ops = MEMFS.ops_table.chrdev.node; - node.stream_ops = MEMFS.ops_table.chrdev.stream; - } - node.timestamp = Date.now(); - // add the new node to the parent - if (parent) { - parent.contents[name] = node; - } - return node; - },getFileDataAsRegularArray:function (node) { - if (node.contents && node.contents.subarray) { - var arr = []; - for (var i = 0; i < node.usedBytes; ++i) arr.push(node.contents[i]); - return arr; // Returns a copy of the original data. - } - return node.contents; // No-op, the file contents are already in a JS array. Return as-is. - },getFileDataAsTypedArray:function (node) { - if (!node.contents) return new Uint8Array; - if (node.contents.subarray) return node.contents.subarray(0, node.usedBytes); // Make sure to not return excess unused bytes. - return new Uint8Array(node.contents); - },expandFileStorage:function (node, newCapacity) { - // If we are asked to expand the size of a file that already exists, revert to using a standard JS array to store the file - // instead of a typed array. This makes resizing the array more flexible because we can just .push() elements at the back to - // increase the size. - if (node.contents && node.contents.subarray && newCapacity > node.contents.length) { - node.contents = MEMFS.getFileDataAsRegularArray(node); - node.usedBytes = node.contents.length; // We might be writing to a lazy-loaded file which had overridden this property, so force-reset it. - } - - if (!node.contents || node.contents.subarray) { // Keep using a typed array if creating a new storage, or if old one was a typed array as well. - var prevCapacity = node.contents ? node.contents.buffer.byteLength : 0; - if (prevCapacity >= newCapacity) return; // No need to expand, the storage was already large enough. - // Don't expand strictly to the given requested limit if it's only a very small increase, but instead geometrically grow capacity. - // For small filesizes (<1MB), perform size*2 geometric increase, but for large sizes, do a much more conservative size*1.125 increase to - // avoid overshooting the allocation cap by a very large margin. - var CAPACITY_DOUBLING_MAX = 1024 * 1024; - newCapacity = Math.max(newCapacity, (prevCapacity * (prevCapacity < CAPACITY_DOUBLING_MAX ? 2.0 : 1.125)) | 0); - if (prevCapacity != 0) newCapacity = Math.max(newCapacity, 256); // At minimum allocate 256b for each file when expanding. - var oldContents = node.contents; - node.contents = new Uint8Array(newCapacity); // Allocate new storage. - if (node.usedBytes > 0) node.contents.set(oldContents.subarray(0, node.usedBytes), 0); // Copy old data over to the new storage. - return; - } - // Not using a typed array to back the file storage. Use a standard JS array instead. - if (!node.contents && newCapacity > 0) node.contents = []; - while (node.contents.length < newCapacity) node.contents.push(0); - },resizeFileStorage:function (node, newSize) { - if (node.usedBytes == newSize) return; - if (newSize == 0) { - node.contents = null; // Fully decommit when requesting a resize to zero. - node.usedBytes = 0; - return; - } - if (!node.contents || node.contents.subarray) { // Resize a typed array if that is being used as the backing store. - var oldContents = node.contents; - node.contents = new Uint8Array(new ArrayBuffer(newSize)); // Allocate new storage. - if (oldContents) { - node.contents.set(oldContents.subarray(0, Math.min(newSize, node.usedBytes))); // Copy old data over to the new storage. - } - node.usedBytes = newSize; - return; + }; + } + for (var i = 0; i < iovcnt; i++) { + var ptr = HEAP32[(((iov)+(i*8))>>2)]; + var len = HEAP32[(((iov)+(i*8 + 4))>>2)]; + for (var j = 0; j < len; j++) { + ___syscall146.printChar(stream, HEAPU8[ptr+j]); } - // Backing with a JS array. - if (!node.contents) node.contents = []; - if (node.contents.length > newSize) node.contents.length = newSize; - else while (node.contents.length < newSize) node.contents.push(0); - node.usedBytes = newSize; - },node_ops:{getattr:function (node) { - var attr = {}; - // device numbers reuse inode numbers. - attr.dev = FS.isChrdev(node.mode) ? node.id : 1; - attr.ino = node.id; - attr.mode = node.mode; - attr.nlink = 1; - attr.uid = 0; - attr.gid = 0; - attr.rdev = node.rdev; - if (FS.isDir(node.mode)) { - attr.size = 4096; - } else if (FS.isFile(node.mode)) { - attr.size = node.usedBytes; - } else if (FS.isLink(node.mode)) { - attr.size = node.link.length; - } else { - attr.size = 0; - } - attr.atime = new Date(node.timestamp); - attr.mtime = new Date(node.timestamp); - attr.ctime = new Date(node.timestamp); - // NOTE: In our implementation, st_blocks = Math.ceil(st_size/st_blksize), - // but this is not required by the standard. - attr.blksize = 4096; - attr.blocks = Math.ceil(attr.size / attr.blksize); - return attr; - },setattr:function (node, attr) { - if (attr.mode !== undefined) { - node.mode = attr.mode; - } - if (attr.timestamp !== undefined) { - node.timestamp = attr.timestamp; - } - if (attr.size !== undefined) { - MEMFS.resizeFileStorage(node, attr.size); - } - },lookup:function (parent, name) { - throw FS.genericErrors[ERRNO_CODES.ENOENT]; - },mknod:function (parent, name, mode, dev) { - return MEMFS.createNode(parent, name, mode, dev); - },rename:function (old_node, new_dir, new_name) { - // if we're overwriting a directory at new_name, make sure it's empty. - if (FS.isDir(old_node.mode)) { - var new_node; - try { - new_node = FS.lookupNode(new_dir, new_name); - } catch (e) { - } - if (new_node) { - for (var i in new_node.contents) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTEMPTY); - } - } - } - // do the internal rewiring - delete old_node.parent.contents[old_node.name]; - old_node.name = new_name; - new_dir.contents[new_name] = old_node; - old_node.parent = new_dir; - },unlink:function (parent, name) { - delete parent.contents[name]; - },rmdir:function (parent, name) { - var node = FS.lookupNode(parent, name); - for (var i in node.contents) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTEMPTY); - } - delete parent.contents[name]; - },readdir:function (node) { - var entries = ['.', '..'] - for (var key in node.contents) { - if (!node.contents.hasOwnProperty(key)) { - continue; - } - entries.push(key); - } - return entries; - },symlink:function (parent, newname, oldpath) { - var node = MEMFS.createNode(parent, newname, 511 /* 0777 */ | 40960, 0); - node.link = oldpath; - return node; - },readlink:function (node) { - if (!FS.isLink(node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - return node.link; - }},stream_ops:{read:function (stream, buffer, offset, length, position) { - var contents = stream.node.contents; - if (position >= stream.node.usedBytes) return 0; - var size = Math.min(stream.node.usedBytes - position, length); - assert(size >= 0); - if (size > 8 && contents.subarray) { // non-trivial, and typed array - buffer.set(contents.subarray(position, position + size), offset); - } else { - for (var i = 0; i < size; i++) buffer[offset + i] = contents[position + i]; - } - return size; - },write:function (stream, buffer, offset, length, position, canOwn) { - if (!length) return 0; - var node = stream.node; - node.timestamp = Date.now(); - - if (buffer.subarray && (!node.contents || node.contents.subarray)) { // This write is from a typed array to a typed array? - if (canOwn) { // Can we just reuse the buffer we are given? - node.contents = buffer.subarray(offset, offset + length); - node.usedBytes = length; - return length; - } else if (node.usedBytes === 0 && position === 0) { // If this is a simple first write to an empty file, do a fast set since we don't need to care about old data. - node.contents = new Uint8Array(buffer.subarray(offset, offset + length)); - node.usedBytes = length; - return length; - } else if (position + length <= node.usedBytes) { // Writing to an already allocated and used subrange of the file? - node.contents.set(buffer.subarray(offset, offset + length), position); - return length; - } - } - - // Appending to an existing file and we need to reallocate, or source data did not come as a typed array. - MEMFS.expandFileStorage(node, position+length); - if (node.contents.subarray && buffer.subarray) node.contents.set(buffer.subarray(offset, offset + length), position); // Use typed array write if available. - else { - for (var i = 0; i < length; i++) { - node.contents[position + i] = buffer[offset + i]; // Or fall back to manual write if not. - } - } - node.usedBytes = Math.max(node.usedBytes, position+length); - return length; - },llseek:function (stream, offset, whence) { - var position = offset; - if (whence === 1) { // SEEK_CUR. - position += stream.position; - } else if (whence === 2) { // SEEK_END. - if (FS.isFile(stream.node.mode)) { - position += stream.node.usedBytes; - } - } - if (position < 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - return position; - },allocate:function (stream, offset, length) { - MEMFS.expandFileStorage(stream.node, offset + length); - stream.node.usedBytes = Math.max(stream.node.usedBytes, offset + length); - },mmap:function (stream, buffer, offset, length, position, prot, flags) { - if (!FS.isFile(stream.node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.ENODEV); - } - var ptr; - var allocated; - var contents = stream.node.contents; - // Only make a new copy when MAP_PRIVATE is specified. - if ( !(flags & 2) && - (contents.buffer === buffer || contents.buffer === buffer.buffer) ) { - // We can't emulate MAP_SHARED when the file is not backed by the buffer - // we're mapping to (e.g. the HEAP buffer). - allocated = false; - ptr = contents.byteOffset; - } else { - // Try to avoid unnecessary slices. - if (position > 0 || position + length < stream.node.usedBytes) { - if (contents.subarray) { - contents = contents.subarray(position, position + length); - } else { - contents = Array.prototype.slice.call(contents, position, position + length); - } - } - allocated = true; - ptr = _malloc(length); - if (!ptr) { - throw new FS.ErrnoError(ERRNO_CODES.ENOMEM); - } - buffer.set(contents, ptr); - } - return { ptr: ptr, allocated: allocated }; - },msync:function (stream, buffer, offset, length, mmapFlags) { - if (!FS.isFile(stream.node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.ENODEV); - } - if (mmapFlags & 2) { - // MAP_PRIVATE calls need not to be synced back to underlying fs - return 0; - } - - var bytesWritten = MEMFS.stream_ops.write(stream, buffer, 0, length, offset, false); - // should we check if bytesWritten and length are the same? - return 0; - }}}; - - var IDBFS={dbs:{},indexedDB:function () { - if (typeof indexedDB !== 'undefined') return indexedDB; - var ret = null; - if (typeof window === 'object') ret = window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB; - assert(ret, 'IDBFS used, but indexedDB not supported'); - return ret; - },DB_VERSION:21,DB_STORE_NAME:"FILE_DATA",mount:function (mount) { - // reuse all of the core MEMFS functionality - return MEMFS.mount.apply(null, arguments); - },syncfs:function (mount, populate, callback) { - IDBFS.getLocalSet(mount, function(err, local) { - if (err) return callback(err); - - IDBFS.getRemoteSet(mount, function(err, remote) { - if (err) return callback(err); - - var src = populate ? remote : local; - var dst = populate ? local : remote; - - IDBFS.reconcile(src, dst, callback); - }); - }); - },getDB:function (name, callback) { - // check the cache first - var db = IDBFS.dbs[name]; - if (db) { - return callback(null, db); - } - - var req; - try { - req = IDBFS.indexedDB().open(name, IDBFS.DB_VERSION); - } catch (e) { - return callback(e); - } - req.onupgradeneeded = function(e) { - var db = e.target.result; - var transaction = e.target.transaction; - - var fileStore; - - if (db.objectStoreNames.contains(IDBFS.DB_STORE_NAME)) { - fileStore = transaction.objectStore(IDBFS.DB_STORE_NAME); - } else { - fileStore = db.createObjectStore(IDBFS.DB_STORE_NAME); - } - - if (!fileStore.indexNames.contains('timestamp')) { - fileStore.createIndex('timestamp', 'timestamp', { unique: false }); - } - }; - req.onsuccess = function() { - db = req.result; - - // add to the cache - IDBFS.dbs[name] = db; - callback(null, db); - }; - req.onerror = function(e) { - callback(this.error); - e.preventDefault(); - }; - },getLocalSet:function (mount, callback) { - var entries = {}; - - function isRealDir(p) { - return p !== '.' && p !== '..'; - }; - function toAbsolute(root) { - return function(p) { - return PATH.join2(root, p); - } - }; - - var check = FS.readdir(mount.mountpoint).filter(isRealDir).map(toAbsolute(mount.mountpoint)); - - while (check.length) { - var path = check.pop(); - var stat; - - try { - stat = FS.stat(path); - } catch (e) { - return callback(e); - } - - if (FS.isDir(stat.mode)) { - check.push.apply(check, FS.readdir(path).filter(isRealDir).map(toAbsolute(path))); - } - - entries[path] = { timestamp: stat.mtime }; - } - - return callback(null, { type: 'local', entries: entries }); - },getRemoteSet:function (mount, callback) { - var entries = {}; - - IDBFS.getDB(mount.mountpoint, function(err, db) { - if (err) return callback(err); - - var transaction = db.transaction([IDBFS.DB_STORE_NAME], 'readonly'); - transaction.onerror = function(e) { - callback(this.error); - e.preventDefault(); - }; - - var store = transaction.objectStore(IDBFS.DB_STORE_NAME); - var index = store.index('timestamp'); - - index.openKeyCursor().onsuccess = function(event) { - var cursor = event.target.result; - - if (!cursor) { - return callback(null, { type: 'remote', db: db, entries: entries }); - } - - entries[cursor.primaryKey] = { timestamp: cursor.key }; - - cursor.continue(); - }; - }); - },loadLocalEntry:function (path, callback) { - var stat, node; - - try { - var lookup = FS.lookupPath(path); - node = lookup.node; - stat = FS.stat(path); - } catch (e) { - return callback(e); - } - - if (FS.isDir(stat.mode)) { - return callback(null, { timestamp: stat.mtime, mode: stat.mode }); - } else if (FS.isFile(stat.mode)) { - // Performance consideration: storing a normal JavaScript array to a IndexedDB is much slower than storing a typed array. - // Therefore always convert the file contents to a typed array first before writing the data to IndexedDB. - node.contents = MEMFS.getFileDataAsTypedArray(node); - return callback(null, { timestamp: stat.mtime, mode: stat.mode, contents: node.contents }); - } else { - return callback(new Error('node type not supported')); - } - },storeLocalEntry:function (path, entry, callback) { - try { - if (FS.isDir(entry.mode)) { - FS.mkdir(path, entry.mode); - } else if (FS.isFile(entry.mode)) { - FS.writeFile(path, entry.contents, { encoding: 'binary', canOwn: true }); - } else { - return callback(new Error('node type not supported')); - } - - FS.chmod(path, entry.mode); - FS.utime(path, entry.timestamp, entry.timestamp); - } catch (e) { - return callback(e); - } - - callback(null); - },removeLocalEntry:function (path, callback) { - try { - var lookup = FS.lookupPath(path); - var stat = FS.stat(path); - - if (FS.isDir(stat.mode)) { - FS.rmdir(path); - } else if (FS.isFile(stat.mode)) { - FS.unlink(path); - } - } catch (e) { - return callback(e); - } - - callback(null); - },loadRemoteEntry:function (store, path, callback) { - var req = store.get(path); - req.onsuccess = function(event) { callback(null, event.target.result); }; - req.onerror = function(e) { - callback(this.error); - e.preventDefault(); - }; - },storeRemoteEntry:function (store, path, entry, callback) { - var req = store.put(entry, path); - req.onsuccess = function() { callback(null); }; - req.onerror = function(e) { - callback(this.error); - e.preventDefault(); - }; - },removeRemoteEntry:function (store, path, callback) { - var req = store.delete(path); - req.onsuccess = function() { callback(null); }; - req.onerror = function(e) { - callback(this.error); - e.preventDefault(); - }; - },reconcile:function (src, dst, callback) { - var total = 0; - - var create = []; - Object.keys(src.entries).forEach(function (key) { - var e = src.entries[key]; - var e2 = dst.entries[key]; - if (!e2 || e.timestamp > e2.timestamp) { - create.push(key); - total++; - } - }); - - var remove = []; - Object.keys(dst.entries).forEach(function (key) { - var e = dst.entries[key]; - var e2 = src.entries[key]; - if (!e2) { - remove.push(key); - total++; - } - }); - - if (!total) { - return callback(null); - } - - var errored = false; - var completed = 0; - var db = src.type === 'remote' ? src.db : dst.db; - var transaction = db.transaction([IDBFS.DB_STORE_NAME], 'readwrite'); - var store = transaction.objectStore(IDBFS.DB_STORE_NAME); - - function done(err) { - if (err) { - if (!done.errored) { - done.errored = true; - return callback(err); - } - return; - } - if (++completed >= total) { - return callback(null); - } - }; - - transaction.onerror = function(e) { - done(this.error); - e.preventDefault(); - }; - - // sort paths in ascending order so directory entries are created - // before the files inside them - create.sort().forEach(function (path) { - if (dst.type === 'local') { - IDBFS.loadRemoteEntry(store, path, function (err, entry) { - if (err) return done(err); - IDBFS.storeLocalEntry(path, entry, done); - }); - } else { - IDBFS.loadLocalEntry(path, function (err, entry) { - if (err) return done(err); - IDBFS.storeRemoteEntry(store, path, entry, done); - }); - } - }); - - // sort paths in descending order so files are deleted before their - // parent directories - remove.sort().reverse().forEach(function(path) { - if (dst.type === 'local') { - IDBFS.removeLocalEntry(path, done); - } else { - IDBFS.removeRemoteEntry(store, path, done); - } - }); - }}; - - var NODEFS={isWindows:false,staticInit:function () { - NODEFS.isWindows = !!process.platform.match(/^win/); - },mount:function (mount) { - assert(ENVIRONMENT_IS_NODE); - return NODEFS.createNode(null, '/', NODEFS.getMode(mount.opts.root), 0); - },createNode:function (parent, name, mode, dev) { - if (!FS.isDir(mode) && !FS.isFile(mode) && !FS.isLink(mode)) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - var node = FS.createNode(parent, name, mode); - node.node_ops = NODEFS.node_ops; - node.stream_ops = NODEFS.stream_ops; - return node; - },getMode:function (path) { - var stat; - try { - stat = fs.lstatSync(path); - if (NODEFS.isWindows) { - // On Windows, directories return permission bits 'rw-rw-rw-', even though they have 'rwxrwxrwx', so - // propagate write bits to execute bits. - stat.mode = stat.mode | ((stat.mode & 146) >> 1); - } - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - return stat.mode; - },realPath:function (node) { - var parts = []; - while (node.parent !== node) { - parts.push(node.name); - node = node.parent; - } - parts.push(node.mount.opts.root); - parts.reverse(); - return PATH.join.apply(null, parts); - },flagsToPermissionStringMap:{0:"r",1:"r+",2:"r+",64:"r",65:"r+",66:"r+",129:"rx+",193:"rx+",514:"w+",577:"w",578:"w+",705:"wx",706:"wx+",1024:"a",1025:"a",1026:"a+",1089:"a",1090:"a+",1153:"ax",1154:"ax+",1217:"ax",1218:"ax+",4096:"rs",4098:"rs+"},flagsToPermissionString:function (flags) { - flags &= ~0100000 /*O_LARGEFILE*/; // Ignore this flag from musl, otherwise node.js fails to open the file. - if (flags in NODEFS.flagsToPermissionStringMap) { - return NODEFS.flagsToPermissionStringMap[flags]; - } else { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - },node_ops:{getattr:function (node) { - var path = NODEFS.realPath(node); - var stat; - try { - stat = fs.lstatSync(path); - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - // node.js v0.10.20 doesn't report blksize and blocks on Windows. Fake them with default blksize of 4096. - // See http://support.microsoft.com/kb/140365 - if (NODEFS.isWindows && !stat.blksize) { - stat.blksize = 4096; - } - if (NODEFS.isWindows && !stat.blocks) { - stat.blocks = (stat.size+stat.blksize-1)/stat.blksize|0; - } - return { - dev: stat.dev, - ino: stat.ino, - mode: stat.mode, - nlink: stat.nlink, - uid: stat.uid, - gid: stat.gid, - rdev: stat.rdev, - size: stat.size, - atime: stat.atime, - mtime: stat.mtime, - ctime: stat.ctime, - blksize: stat.blksize, - blocks: stat.blocks - }; - },setattr:function (node, attr) { - var path = NODEFS.realPath(node); - try { - if (attr.mode !== undefined) { - fs.chmodSync(path, attr.mode); - // update the common node structure mode as well - node.mode = attr.mode; - } - if (attr.timestamp !== undefined) { - var date = new Date(attr.timestamp); - fs.utimesSync(path, date, date); - } - if (attr.size !== undefined) { - fs.truncateSync(path, attr.size); - } - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },lookup:function (parent, name) { - var path = PATH.join2(NODEFS.realPath(parent), name); - var mode = NODEFS.getMode(path); - return NODEFS.createNode(parent, name, mode); - },mknod:function (parent, name, mode, dev) { - var node = NODEFS.createNode(parent, name, mode, dev); - // create the backing node for this in the fs root as well - var path = NODEFS.realPath(node); - try { - if (FS.isDir(node.mode)) { - fs.mkdirSync(path, node.mode); - } else { - fs.writeFileSync(path, '', { mode: node.mode }); - } - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - return node; - },rename:function (oldNode, newDir, newName) { - var oldPath = NODEFS.realPath(oldNode); - var newPath = PATH.join2(NODEFS.realPath(newDir), newName); - try { - fs.renameSync(oldPath, newPath); - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },unlink:function (parent, name) { - var path = PATH.join2(NODEFS.realPath(parent), name); - try { - fs.unlinkSync(path); - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },rmdir:function (parent, name) { - var path = PATH.join2(NODEFS.realPath(parent), name); - try { - fs.rmdirSync(path); - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },readdir:function (node) { - var path = NODEFS.realPath(node); - try { - return fs.readdirSync(path); - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },symlink:function (parent, newName, oldPath) { - var newPath = PATH.join2(NODEFS.realPath(parent), newName); - try { - fs.symlinkSync(oldPath, newPath); - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },readlink:function (node) { - var path = NODEFS.realPath(node); - try { - path = fs.readlinkSync(path); - path = NODEJS_PATH.relative(NODEJS_PATH.resolve(node.mount.opts.root), path); - return path; - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - }},stream_ops:{open:function (stream) { - var path = NODEFS.realPath(stream.node); - try { - if (FS.isFile(stream.node.mode)) { - stream.nfd = fs.openSync(path, NODEFS.flagsToPermissionString(stream.flags)); - } - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },close:function (stream) { - try { - if (FS.isFile(stream.node.mode) && stream.nfd) { - fs.closeSync(stream.nfd); - } - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },read:function (stream, buffer, offset, length, position) { - if (length === 0) return 0; // node errors on 0 length reads - // FIXME this is terrible. - var nbuffer = new Buffer(length); - var res; - try { - res = fs.readSync(stream.nfd, nbuffer, 0, length, position); - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - if (res > 0) { - for (var i = 0; i < res; i++) { - buffer[offset + i] = nbuffer[i]; - } - } - return res; - },write:function (stream, buffer, offset, length, position) { - // FIXME this is terrible. - var nbuffer = new Buffer(buffer.subarray(offset, offset + length)); - var res; - try { - res = fs.writeSync(stream.nfd, nbuffer, 0, length, position); - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - return res; - },llseek:function (stream, offset, whence) { - var position = offset; - if (whence === 1) { // SEEK_CUR. - position += stream.position; - } else if (whence === 2) { // SEEK_END. - if (FS.isFile(stream.node.mode)) { - try { - var stat = fs.fstatSync(stream.nfd); - position += stat.size; - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - } - } - - if (position < 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - - return position; - }}}; - - var WORKERFS={DIR_MODE:16895,FILE_MODE:33279,reader:null,mount:function (mount) { - assert(ENVIRONMENT_IS_WORKER); - if (!WORKERFS.reader) WORKERFS.reader = new FileReaderSync(); - var root = WORKERFS.createNode(null, '/', WORKERFS.DIR_MODE, 0); - var createdParents = {}; - function ensureParent(path) { - // return the parent node, creating subdirs as necessary - var parts = path.split('/'); - var parent = root; - for (var i = 0; i < parts.length-1; i++) { - var curr = parts.slice(0, i+1).join('/'); - if (!createdParents[curr]) { - createdParents[curr] = WORKERFS.createNode(parent, curr, WORKERFS.DIR_MODE, 0); - } - parent = createdParents[curr]; - } - return parent; - } - function base(path) { - var parts = path.split('/'); - return parts[parts.length-1]; - } - // We also accept FileList here, by using Array.prototype - Array.prototype.forEach.call(mount.opts["files"] || [], function(file) { - WORKERFS.createNode(ensureParent(file.name), base(file.name), WORKERFS.FILE_MODE, 0, file, file.lastModifiedDate); - }); - (mount.opts["blobs"] || []).forEach(function(obj) { - WORKERFS.createNode(ensureParent(obj["name"]), base(obj["name"]), WORKERFS.FILE_MODE, 0, obj["data"]); - }); - (mount.opts["packages"] || []).forEach(function(pack) { - pack['metadata'].files.forEach(function(file) { - var name = file.filename.substr(1); // remove initial slash - WORKERFS.createNode(ensureParent(name), base(name), WORKERFS.FILE_MODE, 0, pack['blob'].slice(file.start, file.end)); - }); - }); - return root; - },createNode:function (parent, name, mode, dev, contents, mtime) { - var node = FS.createNode(parent, name, mode); - node.mode = mode; - node.node_ops = WORKERFS.node_ops; - node.stream_ops = WORKERFS.stream_ops; - node.timestamp = (mtime || new Date).getTime(); - assert(WORKERFS.FILE_MODE !== WORKERFS.DIR_MODE); - if (mode === WORKERFS.FILE_MODE) { - node.size = contents.size; - node.contents = contents; - } else { - node.size = 4096; - node.contents = {}; - } - if (parent) { - parent.contents[name] = node; - } - return node; - },node_ops:{getattr:function (node) { - return { - dev: 1, - ino: undefined, - mode: node.mode, - nlink: 1, - uid: 0, - gid: 0, - rdev: undefined, - size: node.size, - atime: new Date(node.timestamp), - mtime: new Date(node.timestamp), - ctime: new Date(node.timestamp), - blksize: 4096, - blocks: Math.ceil(node.size / 4096), - }; - },setattr:function (node, attr) { - if (attr.mode !== undefined) { - node.mode = attr.mode; - } - if (attr.timestamp !== undefined) { - node.timestamp = attr.timestamp; - } - },lookup:function (parent, name) { - throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - },mknod:function (parent, name, mode, dev) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - },rename:function (oldNode, newDir, newName) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - },unlink:function (parent, name) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - },rmdir:function (parent, name) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - },readdir:function (node) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - },symlink:function (parent, newName, oldPath) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - },readlink:function (node) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - }},stream_ops:{read:function (stream, buffer, offset, length, position) { - if (position >= stream.node.size) return 0; - var chunk = stream.node.contents.slice(position, position + length); - var ab = WORKERFS.reader.readAsArrayBuffer(chunk); - buffer.set(new Uint8Array(ab), offset); - return chunk.size; - },write:function (stream, buffer, offset, length, position) { - throw new FS.ErrnoError(ERRNO_CODES.EIO); - },llseek:function (stream, offset, whence) { - var position = offset; - if (whence === 1) { // SEEK_CUR. - position += stream.position; - } else if (whence === 2) { // SEEK_END. - if (FS.isFile(stream.node.mode)) { - position += stream.node.size; - } - } - if (position < 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - return position; - }}}; - - var _stdin=allocate(1, "i32*", ALLOC_STATIC); - - var _stdout=allocate(1, "i32*", ALLOC_STATIC); - - var _stderr=allocate(1, "i32*", ALLOC_STATIC);var FS={root:null,mounts:[],devices:[null],streams:[],nextInode:1,nameTable:null,currentPath:"/",initialized:false,ignorePermissions:true,trackingDelegate:{},tracking:{openFlags:{READ:1,WRITE:2}},ErrnoError:null,genericErrors:{},filesystems:null,handleFSError:function (e) { - if (!(e instanceof FS.ErrnoError)) throw e + ' : ' + stackTrace(); - return ___setErrNo(e.errno); - },lookupPath:function (path, opts) { - path = PATH.resolve(FS.cwd(), path); - opts = opts || {}; - - if (!path) return { path: '', node: null }; - - var defaults = { - follow_mount: true, - recurse_count: 0 - }; - for (var key in defaults) { - if (opts[key] === undefined) { - opts[key] = defaults[key]; - } - } - - if (opts.recurse_count > 8) { // max recursive lookup of 8 - throw new FS.ErrnoError(ERRNO_CODES.ELOOP); - } - - // split the path - var parts = PATH.normalizeArray(path.split('/').filter(function(p) { - return !!p; - }), false); - - // start at the root - var current = FS.root; - var current_path = '/'; - - for (var i = 0; i < parts.length; i++) { - var islast = (i === parts.length-1); - if (islast && opts.parent) { - // stop resolving - break; - } - - current = FS.lookupNode(current, parts[i]); - current_path = PATH.join2(current_path, parts[i]); - - // jump to the mount's root node if this is a mountpoint - if (FS.isMountpoint(current)) { - if (!islast || (islast && opts.follow_mount)) { - current = current.mounted.root; - } - } - - // by default, lookupPath will not follow a symlink if it is the final path component. - // setting opts.follow = true will override this behavior. - if (!islast || opts.follow) { - var count = 0; - while (FS.isLink(current.mode)) { - var link = FS.readlink(current_path); - current_path = PATH.resolve(PATH.dirname(current_path), link); - - var lookup = FS.lookupPath(current_path, { recurse_count: opts.recurse_count }); - current = lookup.node; - - if (count++ > 40) { // limit max consecutive symlinks to 40 (SYMLOOP_MAX). - throw new FS.ErrnoError(ERRNO_CODES.ELOOP); - } - } - } - } - - return { path: current_path, node: current }; - },getPath:function (node) { - var path; - while (true) { - if (FS.isRoot(node)) { - var mount = node.mount.mountpoint; - if (!path) return mount; - return mount[mount.length-1] !== '/' ? mount + '/' + path : mount + path; - } - path = path ? node.name + '/' + path : node.name; - node = node.parent; - } - },hashName:function (parentid, name) { - var hash = 0; - - - for (var i = 0; i < name.length; i++) { - hash = ((hash << 5) - hash + name.charCodeAt(i)) | 0; - } - return ((parentid + hash) >>> 0) % FS.nameTable.length; - },hashAddNode:function (node) { - var hash = FS.hashName(node.parent.id, node.name); - node.name_next = FS.nameTable[hash]; - FS.nameTable[hash] = node; - },hashRemoveNode:function (node) { - var hash = FS.hashName(node.parent.id, node.name); - if (FS.nameTable[hash] === node) { - FS.nameTable[hash] = node.name_next; - } else { - var current = FS.nameTable[hash]; - while (current) { - if (current.name_next === node) { - current.name_next = node.name_next; - break; - } - current = current.name_next; - } - } - },lookupNode:function (parent, name) { - var err = FS.mayLookup(parent); - if (err) { - throw new FS.ErrnoError(err, parent); - } - var hash = FS.hashName(parent.id, name); - for (var node = FS.nameTable[hash]; node; node = node.name_next) { - var nodeName = node.name; - if (node.parent.id === parent.id && nodeName === name) { - return node; - } - } - // if we failed to find it in the cache, call into the VFS - return FS.lookup(parent, name); - },createNode:function (parent, name, mode, rdev) { - if (!FS.FSNode) { - FS.FSNode = function(parent, name, mode, rdev) { - if (!parent) { - parent = this; // root node sets parent to itself - } - this.parent = parent; - this.mount = parent.mount; - this.mounted = null; - this.id = FS.nextInode++; - this.name = name; - this.mode = mode; - this.node_ops = {}; - this.stream_ops = {}; - this.rdev = rdev; - }; - - FS.FSNode.prototype = {}; - - // compatibility - var readMode = 292 | 73; - var writeMode = 146; - - // NOTE we must use Object.defineProperties instead of individual calls to - // Object.defineProperty in order to make closure compiler happy - Object.defineProperties(FS.FSNode.prototype, { - read: { - get: function() { return (this.mode & readMode) === readMode; }, - set: function(val) { val ? this.mode |= readMode : this.mode &= ~readMode; } - }, - write: { - get: function() { return (this.mode & writeMode) === writeMode; }, - set: function(val) { val ? this.mode |= writeMode : this.mode &= ~writeMode; } - }, - isFolder: { - get: function() { return FS.isDir(this.mode); } - }, - isDevice: { - get: function() { return FS.isChrdev(this.mode); } - } - }); - } - - var node = new FS.FSNode(parent, name, mode, rdev); - - FS.hashAddNode(node); - - return node; - },destroyNode:function (node) { - FS.hashRemoveNode(node); - },isRoot:function (node) { - return node === node.parent; - },isMountpoint:function (node) { - return !!node.mounted; - },isFile:function (mode) { - return (mode & 61440) === 32768; - },isDir:function (mode) { - return (mode & 61440) === 16384; - },isLink:function (mode) { - return (mode & 61440) === 40960; - },isChrdev:function (mode) { - return (mode & 61440) === 8192; - },isBlkdev:function (mode) { - return (mode & 61440) === 24576; - },isFIFO:function (mode) { - return (mode & 61440) === 4096; - },isSocket:function (mode) { - return (mode & 49152) === 49152; - },flagModes:{"r":0,"rs":1052672,"r+":2,"w":577,"wx":705,"xw":705,"w+":578,"wx+":706,"xw+":706,"a":1089,"ax":1217,"xa":1217,"a+":1090,"ax+":1218,"xa+":1218},modeStringToFlags:function (str) { - var flags = FS.flagModes[str]; - if (typeof flags === 'undefined') { - throw new Error('Unknown file open mode: ' + str); - } - return flags; - },flagsToPermissionString:function (flag) { - var perms = ['r', 'w', 'rw'][flag & 3]; - if ((flag & 512)) { - perms += 'w'; - } - return perms; - },nodePermissions:function (node, perms) { - if (FS.ignorePermissions) { - return 0; - } - // return 0 if any user, group or owner bits are set. - if (perms.indexOf('r') !== -1 && !(node.mode & 292)) { - return ERRNO_CODES.EACCES; - } else if (perms.indexOf('w') !== -1 && !(node.mode & 146)) { - return ERRNO_CODES.EACCES; - } else if (perms.indexOf('x') !== -1 && !(node.mode & 73)) { - return ERRNO_CODES.EACCES; - } - return 0; - },mayLookup:function (dir) { - var err = FS.nodePermissions(dir, 'x'); - if (err) return err; - if (!dir.node_ops.lookup) return ERRNO_CODES.EACCES; - return 0; - },mayCreate:function (dir, name) { - try { - var node = FS.lookupNode(dir, name); - return ERRNO_CODES.EEXIST; - } catch (e) { - } - return FS.nodePermissions(dir, 'wx'); - },mayDelete:function (dir, name, isdir) { - var node; - try { - node = FS.lookupNode(dir, name); - } catch (e) { - return e.errno; - } - var err = FS.nodePermissions(dir, 'wx'); - if (err) { - return err; - } - if (isdir) { - if (!FS.isDir(node.mode)) { - return ERRNO_CODES.ENOTDIR; - } - if (FS.isRoot(node) || FS.getPath(node) === FS.cwd()) { - return ERRNO_CODES.EBUSY; - } - } else { - if (FS.isDir(node.mode)) { - return ERRNO_CODES.EISDIR; - } - } - return 0; - },mayOpen:function (node, flags) { - if (!node) { - return ERRNO_CODES.ENOENT; - } - if (FS.isLink(node.mode)) { - return ERRNO_CODES.ELOOP; - } else if (FS.isDir(node.mode)) { - if ((flags & 2097155) !== 0 || // opening for write - (flags & 512)) { - return ERRNO_CODES.EISDIR; - } - } - return FS.nodePermissions(node, FS.flagsToPermissionString(flags)); - },MAX_OPEN_FDS:4096,nextfd:function (fd_start, fd_end) { - fd_start = fd_start || 0; - fd_end = fd_end || FS.MAX_OPEN_FDS; - for (var fd = fd_start; fd <= fd_end; fd++) { - if (!FS.streams[fd]) { - return fd; - } - } - throw new FS.ErrnoError(ERRNO_CODES.EMFILE); - },getStream:function (fd) { - return FS.streams[fd]; - },createStream:function (stream, fd_start, fd_end) { - if (!FS.FSStream) { - FS.FSStream = function(){}; - FS.FSStream.prototype = {}; - // compatibility - Object.defineProperties(FS.FSStream.prototype, { - object: { - get: function() { return this.node; }, - set: function(val) { this.node = val; } - }, - isRead: { - get: function() { return (this.flags & 2097155) !== 1; } - }, - isWrite: { - get: function() { return (this.flags & 2097155) !== 0; } - }, - isAppend: { - get: function() { return (this.flags & 1024); } - } - }); - } - // clone it, so we can return an instance of FSStream - var newStream = new FS.FSStream(); - for (var p in stream) { - newStream[p] = stream[p]; - } - stream = newStream; - var fd = FS.nextfd(fd_start, fd_end); - stream.fd = fd; - FS.streams[fd] = stream; - return stream; - },closeStream:function (fd) { - FS.streams[fd] = null; - },chrdev_stream_ops:{open:function (stream) { - var device = FS.getDevice(stream.node.rdev); - // override node's stream ops with the device's - stream.stream_ops = device.stream_ops; - // forward the open call - if (stream.stream_ops.open) { - stream.stream_ops.open(stream); - } - },llseek:function () { - throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); - }},major:function (dev) { - return ((dev) >> 8); - },minor:function (dev) { - return ((dev) & 0xff); - },makedev:function (ma, mi) { - return ((ma) << 8 | (mi)); - },registerDevice:function (dev, ops) { - FS.devices[dev] = { stream_ops: ops }; - },getDevice:function (dev) { - return FS.devices[dev]; - },getMounts:function (mount) { - var mounts = []; - var check = [mount]; - - while (check.length) { - var m = check.pop(); - - mounts.push(m); - - check.push.apply(check, m.mounts); - } - - return mounts; - },syncfs:function (populate, callback) { - if (typeof(populate) === 'function') { - callback = populate; - populate = false; - } - - var mounts = FS.getMounts(FS.root.mount); - var completed = 0; - - function done(err) { - if (err) { - if (!done.errored) { - done.errored = true; - return callback(err); - } - return; - } - if (++completed >= mounts.length) { - callback(null); - } - }; - - // sync all mounts - mounts.forEach(function (mount) { - if (!mount.type.syncfs) { - return done(null); - } - mount.type.syncfs(mount, populate, done); - }); - },mount:function (type, opts, mountpoint) { - var root = mountpoint === '/'; - var pseudo = !mountpoint; - var node; - - if (root && FS.root) { - throw new FS.ErrnoError(ERRNO_CODES.EBUSY); - } else if (!root && !pseudo) { - var lookup = FS.lookupPath(mountpoint, { follow_mount: false }); - - mountpoint = lookup.path; // use the absolute path - node = lookup.node; - - if (FS.isMountpoint(node)) { - throw new FS.ErrnoError(ERRNO_CODES.EBUSY); - } - - if (!FS.isDir(node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR); - } - } - - var mount = { - type: type, - opts: opts, - mountpoint: mountpoint, - mounts: [] - }; - - // create a root node for the fs - var mountRoot = type.mount(mount); - mountRoot.mount = mount; - mount.root = mountRoot; - - if (root) { - FS.root = mountRoot; - } else if (node) { - // set as a mountpoint - node.mounted = mount; - - // add the new mount to the current mount's children - if (node.mount) { - node.mount.mounts.push(mount); - } - } - - return mountRoot; - },unmount:function (mountpoint) { - var lookup = FS.lookupPath(mountpoint, { follow_mount: false }); - - if (!FS.isMountpoint(lookup.node)) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - - // destroy the nodes for this mount, and all its child mounts - var node = lookup.node; - var mount = node.mounted; - var mounts = FS.getMounts(mount); - - Object.keys(FS.nameTable).forEach(function (hash) { - var current = FS.nameTable[hash]; - - while (current) { - var next = current.name_next; - - if (mounts.indexOf(current.mount) !== -1) { - FS.destroyNode(current); - } - - current = next; - } - }); - - // no longer a mountpoint - node.mounted = null; - - // remove this mount from the child mounts - var idx = node.mount.mounts.indexOf(mount); - assert(idx !== -1); - node.mount.mounts.splice(idx, 1); - },lookup:function (parent, name) { - return parent.node_ops.lookup(parent, name); - },mknod:function (path, mode, dev) { - var lookup = FS.lookupPath(path, { parent: true }); - var parent = lookup.node; - var name = PATH.basename(path); - if (!name || name === '.' || name === '..') { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - var err = FS.mayCreate(parent, name); - if (err) { - throw new FS.ErrnoError(err); - } - if (!parent.node_ops.mknod) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - return parent.node_ops.mknod(parent, name, mode, dev); - },create:function (path, mode) { - mode = mode !== undefined ? mode : 438 /* 0666 */; - mode &= 4095; - mode |= 32768; - return FS.mknod(path, mode, 0); - },mkdir:function (path, mode) { - mode = mode !== undefined ? mode : 511 /* 0777 */; - mode &= 511 | 512; - mode |= 16384; - return FS.mknod(path, mode, 0); - },mkdev:function (path, mode, dev) { - if (typeof(dev) === 'undefined') { - dev = mode; - mode = 438 /* 0666 */; - } - mode |= 8192; - return FS.mknod(path, mode, dev); - },symlink:function (oldpath, newpath) { - if (!PATH.resolve(oldpath)) { - throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - } - var lookup = FS.lookupPath(newpath, { parent: true }); - var parent = lookup.node; - if (!parent) { - throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - } - var newname = PATH.basename(newpath); - var err = FS.mayCreate(parent, newname); - if (err) { - throw new FS.ErrnoError(err); - } - if (!parent.node_ops.symlink) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - return parent.node_ops.symlink(parent, newname, oldpath); - },rename:function (old_path, new_path) { - var old_dirname = PATH.dirname(old_path); - var new_dirname = PATH.dirname(new_path); - var old_name = PATH.basename(old_path); - var new_name = PATH.basename(new_path); - // parents must exist - var lookup, old_dir, new_dir; - try { - lookup = FS.lookupPath(old_path, { parent: true }); - old_dir = lookup.node; - lookup = FS.lookupPath(new_path, { parent: true }); - new_dir = lookup.node; - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES.EBUSY); - } - if (!old_dir || !new_dir) throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - // need to be part of the same mount - if (old_dir.mount !== new_dir.mount) { - throw new FS.ErrnoError(ERRNO_CODES.EXDEV); - } - // source must exist - var old_node = FS.lookupNode(old_dir, old_name); - // old path should not be an ancestor of the new path - var relative = PATH.relative(old_path, new_dirname); - if (relative.charAt(0) !== '.') { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - // new path should not be an ancestor of the old path - relative = PATH.relative(new_path, old_dirname); - if (relative.charAt(0) !== '.') { - throw new FS.ErrnoError(ERRNO_CODES.ENOTEMPTY); - } - // see if the new path already exists - var new_node; - try { - new_node = FS.lookupNode(new_dir, new_name); - } catch (e) { - // not fatal - } - // early out if nothing needs to change - if (old_node === new_node) { - return; - } - // we'll need to delete the old entry - var isdir = FS.isDir(old_node.mode); - var err = FS.mayDelete(old_dir, old_name, isdir); - if (err) { - throw new FS.ErrnoError(err); - } - // need delete permissions if we'll be overwriting. - // need create permissions if new doesn't already exist. - err = new_node ? - FS.mayDelete(new_dir, new_name, isdir) : - FS.mayCreate(new_dir, new_name); - if (err) { - throw new FS.ErrnoError(err); - } - if (!old_dir.node_ops.rename) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - if (FS.isMountpoint(old_node) || (new_node && FS.isMountpoint(new_node))) { - throw new FS.ErrnoError(ERRNO_CODES.EBUSY); - } - // if we are going to change the parent, check write permissions - if (new_dir !== old_dir) { - err = FS.nodePermissions(old_dir, 'w'); - if (err) { - throw new FS.ErrnoError(err); - } - } - try { - if (FS.trackingDelegate['willMovePath']) { - FS.trackingDelegate['willMovePath'](old_path, new_path); - } - } catch(e) { - console.log("FS.trackingDelegate['willMovePath']('"+old_path+"', '"+new_path+"') threw an exception: " + e.message); - } - // remove the node from the lookup hash - FS.hashRemoveNode(old_node); - // do the underlying fs rename - try { - old_dir.node_ops.rename(old_node, new_dir, new_name); - } catch (e) { - throw e; - } finally { - // add the node back to the hash (in case node_ops.rename - // changed its name) - FS.hashAddNode(old_node); - } - try { - if (FS.trackingDelegate['onMovePath']) FS.trackingDelegate['onMovePath'](old_path, new_path); - } catch(e) { - console.log("FS.trackingDelegate['onMovePath']('"+old_path+"', '"+new_path+"') threw an exception: " + e.message); - } - },rmdir:function (path) { - var lookup = FS.lookupPath(path, { parent: true }); - var parent = lookup.node; - var name = PATH.basename(path); - var node = FS.lookupNode(parent, name); - var err = FS.mayDelete(parent, name, true); - if (err) { - throw new FS.ErrnoError(err); - } - if (!parent.node_ops.rmdir) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - if (FS.isMountpoint(node)) { - throw new FS.ErrnoError(ERRNO_CODES.EBUSY); - } - try { - if (FS.trackingDelegate['willDeletePath']) { - FS.trackingDelegate['willDeletePath'](path); - } - } catch(e) { - console.log("FS.trackingDelegate['willDeletePath']('"+path+"') threw an exception: " + e.message); - } - parent.node_ops.rmdir(parent, name); - FS.destroyNode(node); - try { - if (FS.trackingDelegate['onDeletePath']) FS.trackingDelegate['onDeletePath'](path); - } catch(e) { - console.log("FS.trackingDelegate['onDeletePath']('"+path+"') threw an exception: " + e.message); - } - },readdir:function (path) { - var lookup = FS.lookupPath(path, { follow: true }); - var node = lookup.node; - if (!node.node_ops.readdir) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR); - } - return node.node_ops.readdir(node); - },unlink:function (path) { - var lookup = FS.lookupPath(path, { parent: true }); - var parent = lookup.node; - var name = PATH.basename(path); - var node = FS.lookupNode(parent, name); - var err = FS.mayDelete(parent, name, false); - if (err) { - // POSIX says unlink should set EPERM, not EISDIR - if (err === ERRNO_CODES.EISDIR) err = ERRNO_CODES.EPERM; - throw new FS.ErrnoError(err); - } - if (!parent.node_ops.unlink) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - if (FS.isMountpoint(node)) { - throw new FS.ErrnoError(ERRNO_CODES.EBUSY); - } - try { - if (FS.trackingDelegate['willDeletePath']) { - FS.trackingDelegate['willDeletePath'](path); - } - } catch(e) { - console.log("FS.trackingDelegate['willDeletePath']('"+path+"') threw an exception: " + e.message); - } - parent.node_ops.unlink(parent, name); - FS.destroyNode(node); - try { - if (FS.trackingDelegate['onDeletePath']) FS.trackingDelegate['onDeletePath'](path); - } catch(e) { - console.log("FS.trackingDelegate['onDeletePath']('"+path+"') threw an exception: " + e.message); - } - },readlink:function (path) { - var lookup = FS.lookupPath(path); - var link = lookup.node; - if (!link) { - throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - } - if (!link.node_ops.readlink) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - return PATH.resolve(FS.getPath(link.parent), link.node_ops.readlink(link)); - },stat:function (path, dontFollow) { - var lookup = FS.lookupPath(path, { follow: !dontFollow }); - var node = lookup.node; - if (!node) { - throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - } - if (!node.node_ops.getattr) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - return node.node_ops.getattr(node); - },lstat:function (path) { - return FS.stat(path, true); - },chmod:function (path, mode, dontFollow) { - var node; - if (typeof path === 'string') { - var lookup = FS.lookupPath(path, { follow: !dontFollow }); - node = lookup.node; - } else { - node = path; - } - if (!node.node_ops.setattr) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - node.node_ops.setattr(node, { - mode: (mode & 4095) | (node.mode & ~4095), - timestamp: Date.now() - }); - },lchmod:function (path, mode) { - FS.chmod(path, mode, true); - },fchmod:function (fd, mode) { - var stream = FS.getStream(fd); - if (!stream) { - throw new FS.ErrnoError(ERRNO_CODES.EBADF); - } - FS.chmod(stream.node, mode); - },chown:function (path, uid, gid, dontFollow) { - var node; - if (typeof path === 'string') { - var lookup = FS.lookupPath(path, { follow: !dontFollow }); - node = lookup.node; - } else { - node = path; - } - if (!node.node_ops.setattr) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - node.node_ops.setattr(node, { - timestamp: Date.now() - // we ignore the uid / gid for now - }); - },lchown:function (path, uid, gid) { - FS.chown(path, uid, gid, true); - },fchown:function (fd, uid, gid) { - var stream = FS.getStream(fd); - if (!stream) { - throw new FS.ErrnoError(ERRNO_CODES.EBADF); - } - FS.chown(stream.node, uid, gid); - },truncate:function (path, len) { - if (len < 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - var node; - if (typeof path === 'string') { - var lookup = FS.lookupPath(path, { follow: true }); - node = lookup.node; - } else { - node = path; - } - if (!node.node_ops.setattr) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - if (FS.isDir(node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.EISDIR); - } - if (!FS.isFile(node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - var err = FS.nodePermissions(node, 'w'); - if (err) { - throw new FS.ErrnoError(err); - } - node.node_ops.setattr(node, { - size: len, - timestamp: Date.now() - }); - },ftruncate:function (fd, len) { - var stream = FS.getStream(fd); - if (!stream) { - throw new FS.ErrnoError(ERRNO_CODES.EBADF); - } - if ((stream.flags & 2097155) === 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - FS.truncate(stream.node, len); - },utime:function (path, atime, mtime) { - var lookup = FS.lookupPath(path, { follow: true }); - var node = lookup.node; - node.node_ops.setattr(node, { - timestamp: Math.max(atime, mtime) - }); - },open:function (path, flags, mode, fd_start, fd_end) { - if (path === "") { - throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - } - flags = typeof flags === 'string' ? FS.modeStringToFlags(flags) : flags; - mode = typeof mode === 'undefined' ? 438 /* 0666 */ : mode; - if ((flags & 64)) { - mode = (mode & 4095) | 32768; - } else { - mode = 0; - } - var node; - if (typeof path === 'object') { - node = path; - } else { - path = PATH.normalize(path); - try { - var lookup = FS.lookupPath(path, { - follow: !(flags & 131072) - }); - node = lookup.node; - } catch (e) { - // ignore - } - } - // perhaps we need to create the node - var created = false; - if ((flags & 64)) { - if (node) { - // if O_CREAT and O_EXCL are set, error out if the node already exists - if ((flags & 128)) { - throw new FS.ErrnoError(ERRNO_CODES.EEXIST); - } - } else { - // node doesn't exist, try to create it - node = FS.mknod(path, mode, 0); - created = true; - } - } - if (!node) { - throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - } - // can't truncate a device - if (FS.isChrdev(node.mode)) { - flags &= ~512; - } - // if asked only for a directory, then this must be one - if ((flags & 65536) && !FS.isDir(node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR); - } - // check permissions, if this is not a file we just created now (it is ok to - // create and write to a file with read-only permissions; it is read-only - // for later use) - if (!created) { - var err = FS.mayOpen(node, flags); - if (err) { - throw new FS.ErrnoError(err); - } - } - // do truncation if necessary - if ((flags & 512)) { - FS.truncate(node, 0); - } - // we've already handled these, don't pass down to the underlying vfs - flags &= ~(128 | 512); - - // register the stream with the filesystem - var stream = FS.createStream({ - node: node, - path: FS.getPath(node), // we want the absolute path to the node - flags: flags, - seekable: true, - position: 0, - stream_ops: node.stream_ops, - // used by the file family libc calls (fopen, fwrite, ferror, etc.) - ungotten: [], - error: false - }, fd_start, fd_end); - // call the new stream's open function - if (stream.stream_ops.open) { - stream.stream_ops.open(stream); - } - if (Module['logReadFiles'] && !(flags & 1)) { - if (!FS.readFiles) FS.readFiles = {}; - if (!(path in FS.readFiles)) { - FS.readFiles[path] = 1; - Module['printErr']('read file: ' + path); - } - } - try { - if (FS.trackingDelegate['onOpenFile']) { - var trackingFlags = 0; - if ((flags & 2097155) !== 1) { - trackingFlags |= FS.tracking.openFlags.READ; - } - if ((flags & 2097155) !== 0) { - trackingFlags |= FS.tracking.openFlags.WRITE; - } - FS.trackingDelegate['onOpenFile'](path, trackingFlags); - } - } catch(e) { - console.log("FS.trackingDelegate['onOpenFile']('"+path+"', flags) threw an exception: " + e.message); - } - return stream; - },close:function (stream) { - if (stream.getdents) stream.getdents = null; // free readdir state - try { - if (stream.stream_ops.close) { - stream.stream_ops.close(stream); - } - } catch (e) { - throw e; - } finally { - FS.closeStream(stream.fd); - } - },llseek:function (stream, offset, whence) { - if (!stream.seekable || !stream.stream_ops.llseek) { - throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); - } - stream.position = stream.stream_ops.llseek(stream, offset, whence); - stream.ungotten = []; - return stream.position; - },read:function (stream, buffer, offset, length, position) { - if (length < 0 || position < 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - if ((stream.flags & 2097155) === 1) { - throw new FS.ErrnoError(ERRNO_CODES.EBADF); - } - if (FS.isDir(stream.node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.EISDIR); - } - if (!stream.stream_ops.read) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - var seeking = true; - if (typeof position === 'undefined') { - position = stream.position; - seeking = false; - } else if (!stream.seekable) { - throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); - } - var bytesRead = stream.stream_ops.read(stream, buffer, offset, length, position); - if (!seeking) stream.position += bytesRead; - return bytesRead; - },write:function (stream, buffer, offset, length, position, canOwn) { - if (length < 0 || position < 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - if ((stream.flags & 2097155) === 0) { - throw new FS.ErrnoError(ERRNO_CODES.EBADF); - } - if (FS.isDir(stream.node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.EISDIR); - } - if (!stream.stream_ops.write) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - if (stream.flags & 1024) { - // seek to the end before writing in append mode - FS.llseek(stream, 0, 2); - } - var seeking = true; - if (typeof position === 'undefined') { - position = stream.position; - seeking = false; - } else if (!stream.seekable) { - throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); - } - var bytesWritten = stream.stream_ops.write(stream, buffer, offset, length, position, canOwn); - if (!seeking) stream.position += bytesWritten; - try { - if (stream.path && FS.trackingDelegate['onWriteToFile']) FS.trackingDelegate['onWriteToFile'](stream.path); - } catch(e) { - console.log("FS.trackingDelegate['onWriteToFile']('"+path+"') threw an exception: " + e.message); - } - return bytesWritten; - },allocate:function (stream, offset, length) { - if (offset < 0 || length <= 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - if ((stream.flags & 2097155) === 0) { - throw new FS.ErrnoError(ERRNO_CODES.EBADF); - } - if (!FS.isFile(stream.node.mode) && !FS.isDir(node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.ENODEV); - } - if (!stream.stream_ops.allocate) { - throw new FS.ErrnoError(ERRNO_CODES.EOPNOTSUPP); - } - stream.stream_ops.allocate(stream, offset, length); - },mmap:function (stream, buffer, offset, length, position, prot, flags) { - // TODO if PROT is PROT_WRITE, make sure we have write access - if ((stream.flags & 2097155) === 1) { - throw new FS.ErrnoError(ERRNO_CODES.EACCES); - } - if (!stream.stream_ops.mmap) { - throw new FS.ErrnoError(ERRNO_CODES.ENODEV); - } - return stream.stream_ops.mmap(stream, buffer, offset, length, position, prot, flags); - },msync:function (stream, buffer, offset, length, mmapFlags) { - if (!stream || !stream.stream_ops.msync) { - return 0; - } - return stream.stream_ops.msync(stream, buffer, offset, length, mmapFlags); - },munmap:function (stream) { - return 0; - },ioctl:function (stream, cmd, arg) { - if (!stream.stream_ops.ioctl) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTTY); - } - return stream.stream_ops.ioctl(stream, cmd, arg); - },readFile:function (path, opts) { - opts = opts || {}; - opts.flags = opts.flags || 'r'; - opts.encoding = opts.encoding || 'binary'; - if (opts.encoding !== 'utf8' && opts.encoding !== 'binary') { - throw new Error('Invalid encoding type "' + opts.encoding + '"'); - } - var ret; - var stream = FS.open(path, opts.flags); - var stat = FS.stat(path); - var length = stat.size; - var buf = new Uint8Array(length); - FS.read(stream, buf, 0, length, 0); - if (opts.encoding === 'utf8') { - ret = UTF8ArrayToString(buf, 0); - } else if (opts.encoding === 'binary') { - ret = buf; - } - FS.close(stream); - return ret; - },writeFile:function (path, data, opts) { - opts = opts || {}; - opts.flags = opts.flags || 'w'; - opts.encoding = opts.encoding || 'utf8'; - if (opts.encoding !== 'utf8' && opts.encoding !== 'binary') { - throw new Error('Invalid encoding type "' + opts.encoding + '"'); - } - var stream = FS.open(path, opts.flags, opts.mode); - if (opts.encoding === 'utf8') { - var buf = new Uint8Array(lengthBytesUTF8(data)+1); - var actualNumBytes = stringToUTF8Array(data, buf, 0, buf.length); - FS.write(stream, buf, 0, actualNumBytes, 0, opts.canOwn); - } else if (opts.encoding === 'binary') { - FS.write(stream, data, 0, data.length, 0, opts.canOwn); - } - FS.close(stream); - },cwd:function () { - return FS.currentPath; - },chdir:function (path) { - var lookup = FS.lookupPath(path, { follow: true }); - if (!FS.isDir(lookup.node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR); - } - var err = FS.nodePermissions(lookup.node, 'x'); - if (err) { - throw new FS.ErrnoError(err); - } - FS.currentPath = lookup.path; - },createDefaultDirectories:function () { - FS.mkdir('/tmp'); - FS.mkdir('/home'); - FS.mkdir('/home/web_user'); - },createDefaultDevices:function () { - // create /dev - FS.mkdir('/dev'); - // setup /dev/null - FS.registerDevice(FS.makedev(1, 3), { - read: function() { return 0; }, - write: function(stream, buffer, offset, length, pos) { return length; } - }); - FS.mkdev('/dev/null', FS.makedev(1, 3)); - // setup /dev/tty and /dev/tty1 - // stderr needs to print output using Module['printErr'] - // so we register a second tty just for it. - TTY.register(FS.makedev(5, 0), TTY.default_tty_ops); - TTY.register(FS.makedev(6, 0), TTY.default_tty1_ops); - FS.mkdev('/dev/tty', FS.makedev(5, 0)); - FS.mkdev('/dev/tty1', FS.makedev(6, 0)); - // setup /dev/[u]random - var random_device; - if (typeof crypto !== 'undefined') { - // for modern web browsers - var randomBuffer = new Uint8Array(1); - random_device = function() { crypto.getRandomValues(randomBuffer); return randomBuffer[0]; }; - } else if (ENVIRONMENT_IS_NODE) { - // for nodejs - random_device = function() { return require('crypto').randomBytes(1)[0]; }; - } else { - // default for ES5 platforms - random_device = function() { return (Math.random()*256)|0; }; - } - FS.createDevice('/dev', 'random', random_device); - FS.createDevice('/dev', 'urandom', random_device); - // we're not going to emulate the actual shm device, - // just create the tmp dirs that reside in it commonly - FS.mkdir('/dev/shm'); - FS.mkdir('/dev/shm/tmp'); - },createSpecialDirectories:function () { - // create /proc/self/fd which allows /proc/self/fd/6 => readlink gives the name of the stream for fd 6 (see test_unistd_ttyname) - FS.mkdir('/proc'); - FS.mkdir('/proc/self'); - FS.mkdir('/proc/self/fd'); - FS.mount({ - mount: function() { - var node = FS.createNode('/proc/self', 'fd', 16384 | 0777, 73); - node.node_ops = { - lookup: function(parent, name) { - var fd = +name; - var stream = FS.getStream(fd); - if (!stream) throw new FS.ErrnoError(ERRNO_CODES.EBADF); - var ret = { - parent: null, - mount: { mountpoint: 'fake' }, - node_ops: { readlink: function() { return stream.path } } - }; - ret.parent = ret; // make it look like a simple root node - return ret; - } - }; - return node; - } - }, {}, '/proc/self/fd'); - },createStandardStreams:function () { - // TODO deprecate the old functionality of a single - // input / output callback and that utilizes FS.createDevice - // and instead require a unique set of stream ops - - // by default, we symlink the standard streams to the - // default tty devices. however, if the standard streams - // have been overwritten we create a unique device for - // them instead. - if (Module['stdin']) { - FS.createDevice('/dev', 'stdin', Module['stdin']); - } else { - FS.symlink('/dev/tty', '/dev/stdin'); - } - if (Module['stdout']) { - FS.createDevice('/dev', 'stdout', null, Module['stdout']); - } else { - FS.symlink('/dev/tty', '/dev/stdout'); - } - if (Module['stderr']) { - FS.createDevice('/dev', 'stderr', null, Module['stderr']); - } else { - FS.symlink('/dev/tty1', '/dev/stderr'); - } - - // open default streams for the stdin, stdout and stderr devices - var stdin = FS.open('/dev/stdin', 'r'); - assert(stdin.fd === 0, 'invalid handle for stdin (' + stdin.fd + ')'); - - var stdout = FS.open('/dev/stdout', 'w'); - assert(stdout.fd === 1, 'invalid handle for stdout (' + stdout.fd + ')'); - - var stderr = FS.open('/dev/stderr', 'w'); - assert(stderr.fd === 2, 'invalid handle for stderr (' + stderr.fd + ')'); - },ensureErrnoError:function () { - if (FS.ErrnoError) return; - FS.ErrnoError = function ErrnoError(errno, node) { - //Module.printErr(stackTrace()); // useful for debugging - this.node = node; - this.setErrno = function(errno) { - this.errno = errno; - for (var key in ERRNO_CODES) { - if (ERRNO_CODES[key] === errno) { - this.code = key; - break; - } - } - }; - this.setErrno(errno); - this.message = ERRNO_MESSAGES[errno]; - }; - FS.ErrnoError.prototype = new Error(); - FS.ErrnoError.prototype.constructor = FS.ErrnoError; - // Some errors may happen quite a bit, to avoid overhead we reuse them (and suffer a lack of stack info) - [ERRNO_CODES.ENOENT].forEach(function(code) { - FS.genericErrors[code] = new FS.ErrnoError(code); - FS.genericErrors[code].stack = ''; - }); - },staticInit:function () { - FS.ensureErrnoError(); - - FS.nameTable = new Array(4096); - - FS.mount(MEMFS, {}, '/'); - - FS.createDefaultDirectories(); - FS.createDefaultDevices(); - FS.createSpecialDirectories(); - - FS.filesystems = { - 'MEMFS': MEMFS, - 'IDBFS': IDBFS, - 'NODEFS': NODEFS, - 'WORKERFS': WORKERFS, - }; - },init:function (input, output, error) { - assert(!FS.init.initialized, 'FS.init was previously called. If you want to initialize later with custom parameters, remove any earlier calls (note that one is automatically added to the generated code)'); - FS.init.initialized = true; - - FS.ensureErrnoError(); - - // Allow Module.stdin etc. to provide defaults, if none explicitly passed to us here - Module['stdin'] = input || Module['stdin']; - Module['stdout'] = output || Module['stdout']; - Module['stderr'] = error || Module['stderr']; - - FS.createStandardStreams(); - },quit:function () { - FS.init.initialized = false; - // force-flush all streams, so we get musl std streams printed out - var fflush = Module['_fflush']; - if (fflush) fflush(0); - // close all of our streams - for (var i = 0; i < FS.streams.length; i++) { - var stream = FS.streams[i]; - if (!stream) { - continue; - } - FS.close(stream); - } - },getMode:function (canRead, canWrite) { - var mode = 0; - if (canRead) mode |= 292 | 73; - if (canWrite) mode |= 146; - return mode; - },joinPath:function (parts, forceRelative) { - var path = PATH.join.apply(null, parts); - if (forceRelative && path[0] == '/') path = path.substr(1); - return path; - },absolutePath:function (relative, base) { - return PATH.resolve(base, relative); - },standardizePath:function (path) { - return PATH.normalize(path); - },findObject:function (path, dontResolveLastLink) { - var ret = FS.analyzePath(path, dontResolveLastLink); - if (ret.exists) { - return ret.object; - } else { - ___setErrNo(ret.error); - return null; - } - },analyzePath:function (path, dontResolveLastLink) { - // operate from within the context of the symlink's target - try { - var lookup = FS.lookupPath(path, { follow: !dontResolveLastLink }); - path = lookup.path; - } catch (e) { - } - var ret = { - isRoot: false, exists: false, error: 0, name: null, path: null, object: null, - parentExists: false, parentPath: null, parentObject: null - }; - try { - var lookup = FS.lookupPath(path, { parent: true }); - ret.parentExists = true; - ret.parentPath = lookup.path; - ret.parentObject = lookup.node; - ret.name = PATH.basename(path); - lookup = FS.lookupPath(path, { follow: !dontResolveLastLink }); - ret.exists = true; - ret.path = lookup.path; - ret.object = lookup.node; - ret.name = lookup.node.name; - ret.isRoot = lookup.path === '/'; - } catch (e) { - ret.error = e.errno; - }; - return ret; - },createFolder:function (parent, name, canRead, canWrite) { - var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); - var mode = FS.getMode(canRead, canWrite); - return FS.mkdir(path, mode); - },createPath:function (parent, path, canRead, canWrite) { - parent = typeof parent === 'string' ? parent : FS.getPath(parent); - var parts = path.split('/').reverse(); - while (parts.length) { - var part = parts.pop(); - if (!part) continue; - var current = PATH.join2(parent, part); - try { - FS.mkdir(current); - } catch (e) { - // ignore EEXIST - } - parent = current; - } - return current; - },createFile:function (parent, name, properties, canRead, canWrite) { - var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); - var mode = FS.getMode(canRead, canWrite); - return FS.create(path, mode); - },createDataFile:function (parent, name, data, canRead, canWrite, canOwn) { - var path = name ? PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name) : parent; - var mode = FS.getMode(canRead, canWrite); - var node = FS.create(path, mode); - if (data) { - if (typeof data === 'string') { - var arr = new Array(data.length); - for (var i = 0, len = data.length; i < len; ++i) arr[i] = data.charCodeAt(i); - data = arr; - } - // make sure we can write to the file - FS.chmod(node, mode | 146); - var stream = FS.open(node, 'w'); - FS.write(stream, data, 0, data.length, 0, canOwn); - FS.close(stream); - FS.chmod(node, mode); - } - return node; - },createDevice:function (parent, name, input, output) { - var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); - var mode = FS.getMode(!!input, !!output); - if (!FS.createDevice.major) FS.createDevice.major = 64; - var dev = FS.makedev(FS.createDevice.major++, 0); - // Create a fake device that a set of stream ops to emulate - // the old behavior. - FS.registerDevice(dev, { - open: function(stream) { - stream.seekable = false; - }, - close: function(stream) { - // flush any pending line data - if (output && output.buffer && output.buffer.length) { - output(10); - } - }, - read: function(stream, buffer, offset, length, pos /* ignored */) { - var bytesRead = 0; - for (var i = 0; i < length; i++) { - var result; - try { - result = input(); - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES.EIO); - } - if (result === undefined && bytesRead === 0) { - throw new FS.ErrnoError(ERRNO_CODES.EAGAIN); - } - if (result === null || result === undefined) break; - bytesRead++; - buffer[offset+i] = result; - } - if (bytesRead) { - stream.node.timestamp = Date.now(); - } - return bytesRead; - }, - write: function(stream, buffer, offset, length, pos) { - for (var i = 0; i < length; i++) { - try { - output(buffer[offset+i]); - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES.EIO); - } - } - if (length) { - stream.node.timestamp = Date.now(); - } - return i; - } - }); - return FS.mkdev(path, mode, dev); - },createLink:function (parent, name, target, canRead, canWrite) { - var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); - return FS.symlink(target, path); - },forceLoadFile:function (obj) { - if (obj.isDevice || obj.isFolder || obj.link || obj.contents) return true; - var success = true; - if (typeof XMLHttpRequest !== 'undefined') { - throw new Error("Lazy loading should have been performed (contents set) in createLazyFile, but it was not. Lazy loading only works in web workers. Use --embed-file or --preload-file in emcc on the main thread."); - } else if (Module['read']) { - // Command-line. - try { - // WARNING: Can't read binary files in V8's d8 or tracemonkey's js, as - // read() will try to parse UTF8. - obj.contents = intArrayFromString(Module['read'](obj.url), true); - obj.usedBytes = obj.contents.length; - } catch (e) { - success = false; - } - } else { - throw new Error('Cannot load without read() or XMLHttpRequest.'); - } - if (!success) ___setErrNo(ERRNO_CODES.EIO); - return success; - },createLazyFile:function (parent, name, url, canRead, canWrite) { - // Lazy chunked Uint8Array (implements get and length from Uint8Array). Actual getting is abstracted away for eventual reuse. - function LazyUint8Array() { - this.lengthKnown = false; - this.chunks = []; // Loaded chunks. Index is the chunk number - } - LazyUint8Array.prototype.get = function LazyUint8Array_get(idx) { - if (idx > this.length-1 || idx < 0) { - return undefined; - } - var chunkOffset = idx % this.chunkSize; - var chunkNum = (idx / this.chunkSize)|0; - return this.getter(chunkNum)[chunkOffset]; - } - LazyUint8Array.prototype.setDataGetter = function LazyUint8Array_setDataGetter(getter) { - this.getter = getter; - } - LazyUint8Array.prototype.cacheLength = function LazyUint8Array_cacheLength() { - // Find length - var xhr = new XMLHttpRequest(); - xhr.open('HEAD', url, false); - xhr.send(null); - if (!(xhr.status >= 200 && xhr.status < 300 || xhr.status === 304)) throw new Error("Couldn't load " + url + ". Status: " + xhr.status); - var datalength = Number(xhr.getResponseHeader("Content-length")); - var header; - var hasByteServing = (header = xhr.getResponseHeader("Accept-Ranges")) && header === "bytes"; - var chunkSize = 1024*1024; // Chunk size in bytes - - if (!hasByteServing) chunkSize = datalength; - - // Function to get a range from the remote URL. - var doXHR = (function(from, to) { - if (from > to) throw new Error("invalid range (" + from + ", " + to + ") or no bytes requested!"); - if (to > datalength-1) throw new Error("only " + datalength + " bytes available! programmer error!"); - - // TODO: Use mozResponseArrayBuffer, responseStream, etc. if available. - var xhr = new XMLHttpRequest(); - xhr.open('GET', url, false); - if (datalength !== chunkSize) xhr.setRequestHeader("Range", "bytes=" + from + "-" + to); - - // Some hints to the browser that we want binary data. - if (typeof Uint8Array != 'undefined') xhr.responseType = 'arraybuffer'; - if (xhr.overrideMimeType) { - xhr.overrideMimeType('text/plain; charset=x-user-defined'); - } - - xhr.send(null); - if (!(xhr.status >= 200 && xhr.status < 300 || xhr.status === 304)) throw new Error("Couldn't load " + url + ". Status: " + xhr.status); - if (xhr.response !== undefined) { - return new Uint8Array(xhr.response || []); - } else { - return intArrayFromString(xhr.responseText || '', true); - } - }); - var lazyArray = this; - lazyArray.setDataGetter(function(chunkNum) { - var start = chunkNum * chunkSize; - var end = (chunkNum+1) * chunkSize - 1; // including this byte - end = Math.min(end, datalength-1); // if datalength-1 is selected, this is the last block - if (typeof(lazyArray.chunks[chunkNum]) === "undefined") { - lazyArray.chunks[chunkNum] = doXHR(start, end); - } - if (typeof(lazyArray.chunks[chunkNum]) === "undefined") throw new Error("doXHR failed!"); - return lazyArray.chunks[chunkNum]; - }); - - this._length = datalength; - this._chunkSize = chunkSize; - this.lengthKnown = true; - } - if (typeof XMLHttpRequest !== 'undefined') { - if (!ENVIRONMENT_IS_WORKER) throw 'Cannot do synchronous binary XHRs outside webworkers in modern browsers. Use --embed-file or --preload-file in emcc'; - var lazyArray = new LazyUint8Array(); - Object.defineProperty(lazyArray, "length", { - get: function() { - if(!this.lengthKnown) { - this.cacheLength(); - } - return this._length; - } - }); - Object.defineProperty(lazyArray, "chunkSize", { - get: function() { - if(!this.lengthKnown) { - this.cacheLength(); - } - return this._chunkSize; - } - }); - - var properties = { isDevice: false, contents: lazyArray }; - } else { - var properties = { isDevice: false, url: url }; - } - - var node = FS.createFile(parent, name, properties, canRead, canWrite); - // This is a total hack, but I want to get this lazy file code out of the - // core of MEMFS. If we want to keep this lazy file concept I feel it should - // be its own thin LAZYFS proxying calls to MEMFS. - if (properties.contents) { - node.contents = properties.contents; - } else if (properties.url) { - node.contents = null; - node.url = properties.url; - } - // Add a function that defers querying the file size until it is asked the first time. - Object.defineProperty(node, "usedBytes", { - get: function() { return this.contents.length; } - }); - // override each stream op with one that tries to force load the lazy file first - var stream_ops = {}; - var keys = Object.keys(node.stream_ops); - keys.forEach(function(key) { - var fn = node.stream_ops[key]; - stream_ops[key] = function forceLoadLazyFile() { - if (!FS.forceLoadFile(node)) { - throw new FS.ErrnoError(ERRNO_CODES.EIO); - } - return fn.apply(null, arguments); - }; - }); - // use a custom read function - stream_ops.read = function stream_ops_read(stream, buffer, offset, length, position) { - if (!FS.forceLoadFile(node)) { - throw new FS.ErrnoError(ERRNO_CODES.EIO); - } - var contents = stream.node.contents; - if (position >= contents.length) - return 0; - var size = Math.min(contents.length - position, length); - assert(size >= 0); - if (contents.slice) { // normal array - for (var i = 0; i < size; i++) { - buffer[offset + i] = contents[position + i]; - } - } else { - for (var i = 0; i < size; i++) { // LazyUint8Array from sync binary XHR - buffer[offset + i] = contents.get(position + i); - } - } - return size; - }; - node.stream_ops = stream_ops; - return node; - },createPreloadedFile:function (parent, name, url, canRead, canWrite, onload, onerror, dontCreateFile, canOwn, preFinish) { - Browser.init(); - // TODO we should allow people to just pass in a complete filename instead - // of parent and name being that we just join them anyways - var fullname = name ? PATH.resolve(PATH.join2(parent, name)) : parent; - var dep = getUniqueRunDependency('cp ' + fullname); // might have several active requests for the same fullname - function processData(byteArray) { - function finish(byteArray) { - if (preFinish) preFinish(); - if (!dontCreateFile) { - FS.createDataFile(parent, name, byteArray, canRead, canWrite, canOwn); - } - if (onload) onload(); - removeRunDependency(dep); - } - var handled = false; - Module['preloadPlugins'].forEach(function(plugin) { - if (handled) return; - if (plugin['canHandle'](fullname)) { - plugin['handle'](byteArray, fullname, finish, function() { - if (onerror) onerror(); - removeRunDependency(dep); - }); - handled = true; - } - }); - if (!handled) finish(byteArray); - } - addRunDependency(dep); - if (typeof url == 'string') { - Browser.asyncLoad(url, function(byteArray) { - processData(byteArray); - }, onerror); - } else { - processData(url); - } - },indexedDB:function () { - return window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB; - },DB_NAME:function () { - return 'EM_FS_' + window.location.pathname; - },DB_VERSION:20,DB_STORE_NAME:"FILE_DATA",saveFilesToDB:function (paths, onload, onerror) { - onload = onload || function(){}; - onerror = onerror || function(){}; - var indexedDB = FS.indexedDB(); - try { - var openRequest = indexedDB.open(FS.DB_NAME(), FS.DB_VERSION); - } catch (e) { - return onerror(e); - } - openRequest.onupgradeneeded = function openRequest_onupgradeneeded() { - console.log('creating db'); - var db = openRequest.result; - db.createObjectStore(FS.DB_STORE_NAME); - }; - openRequest.onsuccess = function openRequest_onsuccess() { - var db = openRequest.result; - var transaction = db.transaction([FS.DB_STORE_NAME], 'readwrite'); - var files = transaction.objectStore(FS.DB_STORE_NAME); - var ok = 0, fail = 0, total = paths.length; - function finish() { - if (fail == 0) onload(); else onerror(); - } - paths.forEach(function(path) { - var putRequest = files.put(FS.analyzePath(path).object.contents, path); - putRequest.onsuccess = function putRequest_onsuccess() { ok++; if (ok + fail == total) finish() }; - putRequest.onerror = function putRequest_onerror() { fail++; if (ok + fail == total) finish() }; - }); - transaction.onerror = onerror; - }; - openRequest.onerror = onerror; - },loadFilesFromDB:function (paths, onload, onerror) { - onload = onload || function(){}; - onerror = onerror || function(){}; - var indexedDB = FS.indexedDB(); - try { - var openRequest = indexedDB.open(FS.DB_NAME(), FS.DB_VERSION); - } catch (e) { - return onerror(e); - } - openRequest.onupgradeneeded = onerror; // no database to load from - openRequest.onsuccess = function openRequest_onsuccess() { - var db = openRequest.result; - try { - var transaction = db.transaction([FS.DB_STORE_NAME], 'readonly'); - } catch(e) { - onerror(e); - return; - } - var files = transaction.objectStore(FS.DB_STORE_NAME); - var ok = 0, fail = 0, total = paths.length; - function finish() { - if (fail == 0) onload(); else onerror(); - } - paths.forEach(function(path) { - var getRequest = files.get(path); - getRequest.onsuccess = function getRequest_onsuccess() { - if (FS.analyzePath(path).exists) { - FS.unlink(path); - } - FS.createDataFile(PATH.dirname(path), PATH.basename(path), getRequest.result, true, true, true); - ok++; - if (ok + fail == total) finish(); - }; - getRequest.onerror = function getRequest_onerror() { fail++; if (ok + fail == total) finish() }; - }); - transaction.onerror = onerror; - }; - openRequest.onerror = onerror; - }};var SYSCALLS={DEFAULT_POLLMASK:5,mappings:{},umask:511,calculateAt:function (dirfd, path) { - if (path[0] !== '/') { - // relative path - var dir; - if (dirfd === -100) { - dir = FS.cwd(); - } else { - var dirstream = FS.getStream(dirfd); - if (!dirstream) throw new FS.ErrnoError(ERRNO_CODES.EBADF); - dir = dirstream.path; - } - path = PATH.join2(dir, path); - } - return path; - },doStat:function (func, path, buf) { - try { - var stat = func(path); - } catch (e) { - if (e && e.node && PATH.normalize(path) !== PATH.normalize(FS.getPath(e.node))) { - // an error occurred while trying to look up the path; we should just report ENOTDIR - return -ERRNO_CODES.ENOTDIR; - } - throw e; - } - HEAP32[((buf)>>2)]=stat.dev; - HEAP32[(((buf)+(4))>>2)]=0; - HEAP32[(((buf)+(8))>>2)]=stat.ino; - HEAP32[(((buf)+(12))>>2)]=stat.mode; - HEAP32[(((buf)+(16))>>2)]=stat.nlink; - HEAP32[(((buf)+(20))>>2)]=stat.uid; - HEAP32[(((buf)+(24))>>2)]=stat.gid; - HEAP32[(((buf)+(28))>>2)]=stat.rdev; - HEAP32[(((buf)+(32))>>2)]=0; - HEAP32[(((buf)+(36))>>2)]=stat.size; - HEAP32[(((buf)+(40))>>2)]=4096; - HEAP32[(((buf)+(44))>>2)]=stat.blocks; - HEAP32[(((buf)+(48))>>2)]=(stat.atime.getTime() / 1000)|0; - HEAP32[(((buf)+(52))>>2)]=0; - HEAP32[(((buf)+(56))>>2)]=(stat.mtime.getTime() / 1000)|0; - HEAP32[(((buf)+(60))>>2)]=0; - HEAP32[(((buf)+(64))>>2)]=(stat.ctime.getTime() / 1000)|0; - HEAP32[(((buf)+(68))>>2)]=0; - HEAP32[(((buf)+(72))>>2)]=stat.ino; - return 0; - },doMsync:function (addr, stream, len, flags) { - var buffer = new Uint8Array(HEAPU8.subarray(addr, addr + len)); - FS.msync(stream, buffer, 0, len, flags); - },doMkdir:function (path, mode) { - // remove a trailing slash, if one - /a/b/ has basename of '', but - // we want to create b in the context of this function - path = PATH.normalize(path); - if (path[path.length-1] === '/') path = path.substr(0, path.length-1); - FS.mkdir(path, mode, 0); - return 0; - },doMknod:function (path, mode, dev) { - // we don't want this in the JS API as it uses mknod to create all nodes. - switch (mode & 61440) { - case 32768: - case 8192: - case 24576: - case 4096: - case 49152: - break; - default: return -ERRNO_CODES.EINVAL; - } - FS.mknod(path, mode, dev); - return 0; - },doReadlink:function (path, buf, bufsize) { - if (bufsize <= 0) return -ERRNO_CODES.EINVAL; - var ret = FS.readlink(path); - ret = ret.slice(0, Math.max(0, bufsize)); - writeStringToMemory(ret, buf, true); - return ret.length; - },doAccess:function (path, amode) { - if (amode & ~7) { - // need a valid mode - return -ERRNO_CODES.EINVAL; - } - var node; - var lookup = FS.lookupPath(path, { follow: true }); - node = lookup.node; - var perms = ''; - if (amode & 4) perms += 'r'; - if (amode & 2) perms += 'w'; - if (amode & 1) perms += 'x'; - if (perms /* otherwise, they've just passed F_OK */ && FS.nodePermissions(node, perms)) { - return -ERRNO_CODES.EACCES; - } - return 0; - },doDup:function (path, flags, suggestFD) { - var suggest = FS.getStream(suggestFD); - if (suggest) FS.close(suggest); - return FS.open(path, flags, 0, suggestFD, suggestFD).fd; - },doReadv:function (stream, iov, iovcnt, offset) { - var ret = 0; - for (var i = 0; i < iovcnt; i++) { - var ptr = HEAP32[(((iov)+(i*8))>>2)]; - var len = HEAP32[(((iov)+(i*8 + 4))>>2)]; - var curr = FS.read(stream, HEAP8,ptr, len, offset); - if (curr < 0) return -1; - ret += curr; - if (curr < len) break; // nothing more to read - } - return ret; - },doWritev:function (stream, iov, iovcnt, offset) { - var ret = 0; - for (var i = 0; i < iovcnt; i++) { - var ptr = HEAP32[(((iov)+(i*8))>>2)]; - var len = HEAP32[(((iov)+(i*8 + 4))>>2)]; - var curr = FS.write(stream, HEAP8,ptr, len, offset); - if (curr < 0) return -1; - ret += curr; - } - return ret; - },varargs:0,get:function (varargs) { - SYSCALLS.varargs += 4; - var ret = HEAP32[(((SYSCALLS.varargs)-(4))>>2)]; - return ret; - },getStr:function () { - var ret = Pointer_stringify(SYSCALLS.get()); - return ret; - },getStreamFromFD:function () { - var stream = FS.getStream(SYSCALLS.get()); - if (!stream) throw new FS.ErrnoError(ERRNO_CODES.EBADF); - return stream; - },getSocketFromFD:function () { - var socket = SOCKFS.getSocket(SYSCALLS.get()); - if (!socket) throw new FS.ErrnoError(ERRNO_CODES.EBADF); - return socket; - },getSocketAddress:function (allowNull) { - var addrp = SYSCALLS.get(), addrlen = SYSCALLS.get(); - if (allowNull && addrp === 0) return null; - var info = __read_sockaddr(addrp, addrlen); - if (info.errno) throw new FS.ErrnoError(info.errno); - info.addr = DNS.lookup_addr(info.addr) || info.addr; - return info; - },get64:function () { - var low = SYSCALLS.get(), high = SYSCALLS.get(); - if (low >= 0) assert(high === 0); - else assert(high === -1); - return low; - },getZero:function () { - assert(SYSCALLS.get() === 0); - }};function ___syscall6(which, varargs) {SYSCALLS.varargs = varargs; - try { - // close - var stream = SYSCALLS.getStreamFromFD(); - FS.close(stream); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function _sysconf(name) { - // long sysconf(int name); - // http://pubs.opengroup.org/onlinepubs/009695399/functions/sysconf.html - switch(name) { - case 30: return PAGE_SIZE; - case 85: return totalMemory / PAGE_SIZE; - case 132: - case 133: - case 12: - case 137: - case 138: - case 15: - case 235: - case 16: - case 17: - case 18: - case 19: - case 20: - case 149: - case 13: - case 10: - case 236: - case 153: - case 9: - case 21: - case 22: - case 159: - case 154: - case 14: - case 77: - case 78: - case 139: - case 80: - case 81: - case 82: - case 68: - case 67: - case 164: - case 11: - case 29: - case 47: - case 48: - case 95: - case 52: - case 51: - case 46: - return 200809; - case 79: - return 0; - case 27: - case 246: - case 127: - case 128: - case 23: - case 24: - case 160: - case 161: - case 181: - case 182: - case 242: - case 183: - case 184: - case 243: - case 244: - case 245: - case 165: - case 178: - case 179: - case 49: - case 50: - case 168: - case 169: - case 175: - case 170: - case 171: - case 172: - case 97: - case 76: - case 32: - case 173: - case 35: - return -1; - case 176: - case 177: - case 7: - case 155: - case 8: - case 157: - case 125: - case 126: - case 92: - case 93: - case 129: - case 130: - case 131: - case 94: - case 91: - return 1; - case 74: - case 60: - case 69: - case 70: - case 4: - return 1024; - case 31: - case 42: - case 72: - return 32; - case 87: - case 26: - case 33: - return 2147483647; - case 34: - case 1: - return 47839; - case 38: - case 36: - return 99; - case 43: - case 37: - return 2048; - case 0: return 2097152; - case 3: return 65536; - case 28: return 32768; - case 44: return 32767; - case 75: return 16384; - case 39: return 1000; - case 89: return 700; - case 71: return 256; - case 40: return 255; - case 2: return 100; - case 180: return 64; - case 25: return 20; - case 5: return 16; - case 6: return 6; - case 73: return 4; - case 84: { - if (typeof navigator === 'object') return navigator['hardwareConcurrency'] || 1; - return 1; - } - } - ___setErrNo(ERRNO_CODES.EINVAL); - return -1; - } - - function _sbrk(bytes) { - // Implement a Linux-like 'memory area' for our 'process'. - // Changes the size of the memory area by |bytes|; returns the - // address of the previous top ('break') of the memory area - // We control the "dynamic" memory - DYNAMIC_BASE to DYNAMICTOP - var self = _sbrk; - if (!self.called) { - DYNAMICTOP = alignMemoryPage(DYNAMICTOP); // make sure we start out aligned - self.called = true; - assert(Runtime.dynamicAlloc); - self.alloc = Runtime.dynamicAlloc; - Runtime.dynamicAlloc = function() { abort('cannot dynamically allocate, sbrk now has control') }; - } - var ret = DYNAMICTOP; - if (bytes != 0) { - var success = self.alloc(bytes); - if (!success) return -1 >>> 0; // sbrk failure code - } - return ret; // Previous break location. - } - - - - function _emscripten_memcpy_big(dest, src, num) { - HEAPU8.set(HEAPU8.subarray(src, src+num), dest); - return dest; - } - Module["_memcpy"] = _memcpy; - Module["_memmove"] = _memmove; - - - - - function _emscripten_set_main_loop_timing(mode, value) { - Browser.mainLoop.timingMode = mode; - Browser.mainLoop.timingValue = value; - - if (!Browser.mainLoop.func) { - return 1; // Return non-zero on failure, can't set timing mode when there is no main loop. - } - - if (mode == 0 /*EM_TIMING_SETTIMEOUT*/) { - Browser.mainLoop.scheduler = function Browser_mainLoop_scheduler_setTimeout() { - setTimeout(Browser.mainLoop.runner, value); // doing this each time means that on exception, we stop - }; - Browser.mainLoop.method = 'timeout'; - } else if (mode == 1 /*EM_TIMING_RAF*/) { - Browser.mainLoop.scheduler = function Browser_mainLoop_scheduler_rAF() { - Browser.requestAnimationFrame(Browser.mainLoop.runner); - }; - Browser.mainLoop.method = 'rAF'; - } else if (mode == 2 /*EM_TIMING_SETIMMEDIATE*/) { - if (!window['setImmediate']) { - // Emulate setImmediate. (note: not a complete polyfill, we don't emulate clearImmediate() to keep code size to minimum, since not needed) - var setImmediates = []; - var emscriptenMainLoopMessageId = '__emcc'; - function Browser_setImmediate_messageHandler(event) { - if (event.source === window && event.data === emscriptenMainLoopMessageId) { - event.stopPropagation(); - setImmediates.shift()(); - } - } - window.addEventListener("message", Browser_setImmediate_messageHandler, true); - window['setImmediate'] = function Browser_emulated_setImmediate(func) { - setImmediates.push(func); - window.postMessage(emscriptenMainLoopMessageId, "*"); - } - } - Browser.mainLoop.scheduler = function Browser_mainLoop_scheduler_setImmediate() { - window['setImmediate'](Browser.mainLoop.runner); - }; - Browser.mainLoop.method = 'immediate'; - } - return 0; - }function _emscripten_set_main_loop(func, fps, simulateInfiniteLoop, arg, noSetTiming) { - Module['noExitRuntime'] = true; - - assert(!Browser.mainLoop.func, 'emscripten_set_main_loop: there can only be one main loop function at once: call emscripten_cancel_main_loop to cancel the previous one before setting a new one with different parameters.'); - - Browser.mainLoop.func = func; - Browser.mainLoop.arg = arg; - - var thisMainLoopId = Browser.mainLoop.currentlyRunningMainloop; - - Browser.mainLoop.runner = function Browser_mainLoop_runner() { - if (ABORT) return; - if (Browser.mainLoop.queue.length > 0) { - var start = Date.now(); - var blocker = Browser.mainLoop.queue.shift(); - blocker.func(blocker.arg); - if (Browser.mainLoop.remainingBlockers) { - var remaining = Browser.mainLoop.remainingBlockers; - var next = remaining%1 == 0 ? remaining-1 : Math.floor(remaining); - if (blocker.counted) { - Browser.mainLoop.remainingBlockers = next; - } else { - // not counted, but move the progress along a tiny bit - next = next + 0.5; // do not steal all the next one's progress - Browser.mainLoop.remainingBlockers = (8*remaining + next)/9; - } - } - console.log('main loop blocker "' + blocker.name + '" took ' + (Date.now() - start) + ' ms'); //, left: ' + Browser.mainLoop.remainingBlockers); - Browser.mainLoop.updateStatus(); - setTimeout(Browser.mainLoop.runner, 0); - return; - } - - // catch pauses from non-main loop sources - if (thisMainLoopId < Browser.mainLoop.currentlyRunningMainloop) return; - - // Implement very basic swap interval control - Browser.mainLoop.currentFrameNumber = Browser.mainLoop.currentFrameNumber + 1 | 0; - if (Browser.mainLoop.timingMode == 1/*EM_TIMING_RAF*/ && Browser.mainLoop.timingValue > 1 && Browser.mainLoop.currentFrameNumber % Browser.mainLoop.timingValue != 0) { - // Not the scheduled time to render this frame - skip. - Browser.mainLoop.scheduler(); - return; - } - - // Signal GL rendering layer that processing of a new frame is about to start. This helps it optimize - // VBO double-buffering and reduce GPU stalls. - - if (Browser.mainLoop.method === 'timeout' && Module.ctx) { - Module.printErr('Looks like you are rendering without using requestAnimationFrame for the main loop. You should use 0 for the frame rate in emscripten_set_main_loop in order to use requestAnimationFrame, as that can greatly improve your frame rates!'); - Browser.mainLoop.method = ''; // just warn once per call to set main loop - } - - Browser.mainLoop.runIter(function() { - if (typeof arg !== 'undefined') { - Runtime.dynCall('vi', func, [arg]); - } else { - Runtime.dynCall('v', func); - } - }); - - // catch pauses from the main loop itself - if (thisMainLoopId < Browser.mainLoop.currentlyRunningMainloop) return; - - // Queue new audio data. This is important to be right after the main loop invocation, so that we will immediately be able - // to queue the newest produced audio samples. - // TODO: Consider adding pre- and post- rAF callbacks so that GL.newRenderingFrameStarted() and SDL.audio.queueNewAudioData() - // do not need to be hardcoded into this function, but can be more generic. - if (typeof SDL === 'object' && SDL.audio && SDL.audio.queueNewAudioData) SDL.audio.queueNewAudioData(); - - Browser.mainLoop.scheduler(); - } - - if (!noSetTiming) { - if (fps && fps > 0) _emscripten_set_main_loop_timing(0/*EM_TIMING_SETTIMEOUT*/, 1000.0 / fps); - else _emscripten_set_main_loop_timing(1/*EM_TIMING_RAF*/, 1); // Do rAF by rendering each frame (no decimating) - - Browser.mainLoop.scheduler(); - } - - if (simulateInfiniteLoop) { - throw 'SimulateInfiniteLoop'; - } - }var Browser={mainLoop:{scheduler:null,method:"",currentlyRunningMainloop:0,func:null,arg:0,timingMode:0,timingValue:0,currentFrameNumber:0,queue:[],pause:function () { - Browser.mainLoop.scheduler = null; - Browser.mainLoop.currentlyRunningMainloop++; // Incrementing this signals the previous main loop that it's now become old, and it must return. - },resume:function () { - Browser.mainLoop.currentlyRunningMainloop++; - var timingMode = Browser.mainLoop.timingMode; - var timingValue = Browser.mainLoop.timingValue; - var func = Browser.mainLoop.func; - Browser.mainLoop.func = null; - _emscripten_set_main_loop(func, 0, false, Browser.mainLoop.arg, true /* do not set timing and call scheduler, we will do it on the next lines */); - _emscripten_set_main_loop_timing(timingMode, timingValue); - Browser.mainLoop.scheduler(); - },updateStatus:function () { - if (Module['setStatus']) { - var message = Module['statusMessage'] || 'Please wait...'; - var remaining = Browser.mainLoop.remainingBlockers; - var expected = Browser.mainLoop.expectedBlockers; - if (remaining) { - if (remaining < expected) { - Module['setStatus'](message + ' (' + (expected - remaining) + '/' + expected + ')'); - } else { - Module['setStatus'](message); - } - } else { - Module['setStatus'](''); - } - } - },runIter:function (func) { - if (ABORT) return; - if (Module['preMainLoop']) { - var preRet = Module['preMainLoop'](); - if (preRet === false) { - return; // |return false| skips a frame - } - } - try { - func(); - } catch (e) { - if (e instanceof ExitStatus) { - return; - } else { - if (e && typeof e === 'object' && e.stack) Module.printErr('exception thrown: ' + [e, e.stack]); - throw e; - } - } - if (Module['postMainLoop']) Module['postMainLoop'](); - }},isFullScreen:false,pointerLock:false,moduleContextCreatedCallbacks:[],workers:[],init:function () { - if (!Module["preloadPlugins"]) Module["preloadPlugins"] = []; // needs to exist even in workers - - if (Browser.initted) return; - Browser.initted = true; - - try { - new Blob(); - Browser.hasBlobConstructor = true; - } catch(e) { - Browser.hasBlobConstructor = false; - console.log("warning: no blob constructor, cannot create blobs with mimetypes"); - } - Browser.BlobBuilder = typeof MozBlobBuilder != "undefined" ? MozBlobBuilder : (typeof WebKitBlobBuilder != "undefined" ? WebKitBlobBuilder : (!Browser.hasBlobConstructor ? console.log("warning: no BlobBuilder") : null)); - Browser.URLObject = typeof window != "undefined" ? (window.URL ? window.URL : window.webkitURL) : undefined; - if (!Module.noImageDecoding && typeof Browser.URLObject === 'undefined') { - console.log("warning: Browser does not support creating object URLs. Built-in browser image decoding will not be available."); - Module.noImageDecoding = true; - } - - // Support for plugins that can process preloaded files. You can add more of these to - // your app by creating and appending to Module.preloadPlugins. - // - // Each plugin is asked if it can handle a file based on the file's name. If it can, - // it is given the file's raw data. When it is done, it calls a callback with the file's - // (possibly modified) data. For example, a plugin might decompress a file, or it - // might create some side data structure for use later (like an Image element, etc.). - - var imagePlugin = {}; - imagePlugin['canHandle'] = function imagePlugin_canHandle(name) { - return !Module.noImageDecoding && /\.(jpg|jpeg|png|bmp)$/i.test(name); - }; - imagePlugin['handle'] = function imagePlugin_handle(byteArray, name, onload, onerror) { - var b = null; - if (Browser.hasBlobConstructor) { - try { - b = new Blob([byteArray], { type: Browser.getMimetype(name) }); - if (b.size !== byteArray.length) { // Safari bug #118630 - // Safari's Blob can only take an ArrayBuffer - b = new Blob([(new Uint8Array(byteArray)).buffer], { type: Browser.getMimetype(name) }); - } - } catch(e) { - Runtime.warnOnce('Blob constructor present but fails: ' + e + '; falling back to blob builder'); - } - } - if (!b) { - var bb = new Browser.BlobBuilder(); - bb.append((new Uint8Array(byteArray)).buffer); // we need to pass a buffer, and must copy the array to get the right data range - b = bb.getBlob(); - } - var url = Browser.URLObject.createObjectURL(b); - var img = new Image(); - img.onload = function img_onload() { - assert(img.complete, 'Image ' + name + ' could not be decoded'); - var canvas = document.createElement('canvas'); - canvas.width = img.width; - canvas.height = img.height; - var ctx = canvas.getContext('2d'); - ctx.drawImage(img, 0, 0); - Module["preloadedImages"][name] = canvas; - Browser.URLObject.revokeObjectURL(url); - if (onload) onload(byteArray); - }; - img.onerror = function img_onerror(event) { - console.log('Image ' + url + ' could not be decoded'); - if (onerror) onerror(); - }; - img.src = url; - }; - Module['preloadPlugins'].push(imagePlugin); - - var audioPlugin = {}; - audioPlugin['canHandle'] = function audioPlugin_canHandle(name) { - return !Module.noAudioDecoding && name.substr(-4) in { '.ogg': 1, '.wav': 1, '.mp3': 1 }; - }; - audioPlugin['handle'] = function audioPlugin_handle(byteArray, name, onload, onerror) { - var done = false; - function finish(audio) { - if (done) return; - done = true; - Module["preloadedAudios"][name] = audio; - if (onload) onload(byteArray); - } - function fail() { - if (done) return; - done = true; - Module["preloadedAudios"][name] = new Audio(); // empty shim - if (onerror) onerror(); - } - if (Browser.hasBlobConstructor) { - try { - var b = new Blob([byteArray], { type: Browser.getMimetype(name) }); - } catch(e) { - return fail(); - } - var url = Browser.URLObject.createObjectURL(b); // XXX we never revoke this! - var audio = new Audio(); - audio.addEventListener('canplaythrough', function() { finish(audio) }, false); // use addEventListener due to chromium bug 124926 - audio.onerror = function audio_onerror(event) { - if (done) return; - console.log('warning: browser could not fully decode audio ' + name + ', trying slower base64 approach'); - function encode64(data) { - var BASE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; - var PAD = '='; - var ret = ''; - var leftchar = 0; - var leftbits = 0; - for (var i = 0; i < data.length; i++) { - leftchar = (leftchar << 8) | data[i]; - leftbits += 8; - while (leftbits >= 6) { - var curr = (leftchar >> (leftbits-6)) & 0x3f; - leftbits -= 6; - ret += BASE[curr]; - } - } - if (leftbits == 2) { - ret += BASE[(leftchar&3) << 4]; - ret += PAD + PAD; - } else if (leftbits == 4) { - ret += BASE[(leftchar&0xf) << 2]; - ret += PAD; - } - return ret; - } - audio.src = 'data:audio/x-' + name.substr(-3) + ';base64,' + encode64(byteArray); - finish(audio); // we don't wait for confirmation this worked - but it's worth trying - }; - audio.src = url; - // workaround for chrome bug 124926 - we do not always get oncanplaythrough or onerror - Browser.safeSetTimeout(function() { - finish(audio); // try to use it even though it is not necessarily ready to play - }, 10000); - } else { - return fail(); - } - }; - Module['preloadPlugins'].push(audioPlugin); - - // Canvas event setup - - var canvas = Module['canvas']; - function pointerLockChange() { - Browser.pointerLock = document['pointerLockElement'] === canvas || - document['mozPointerLockElement'] === canvas || - document['webkitPointerLockElement'] === canvas || - document['msPointerLockElement'] === canvas; - } - if (canvas) { - // forced aspect ratio can be enabled by defining 'forcedAspectRatio' on Module - // Module['forcedAspectRatio'] = 4 / 3; - - canvas.requestPointerLock = canvas['requestPointerLock'] || - canvas['mozRequestPointerLock'] || - canvas['webkitRequestPointerLock'] || - canvas['msRequestPointerLock'] || - function(){}; - canvas.exitPointerLock = document['exitPointerLock'] || - document['mozExitPointerLock'] || - document['webkitExitPointerLock'] || - document['msExitPointerLock'] || - function(){}; // no-op if function does not exist - canvas.exitPointerLock = canvas.exitPointerLock.bind(document); - - - document.addEventListener('pointerlockchange', pointerLockChange, false); - document.addEventListener('mozpointerlockchange', pointerLockChange, false); - document.addEventListener('webkitpointerlockchange', pointerLockChange, false); - document.addEventListener('mspointerlockchange', pointerLockChange, false); - - if (Module['elementPointerLock']) { - canvas.addEventListener("click", function(ev) { - if (!Browser.pointerLock && canvas.requestPointerLock) { - canvas.requestPointerLock(); - ev.preventDefault(); - } - }, false); - } - } - },createContext:function (canvas, useWebGL, setInModule, webGLContextAttributes) { - if (useWebGL && Module.ctx && canvas == Module.canvas) return Module.ctx; // no need to recreate GL context if it's already been created for this canvas. - - var ctx; - var contextHandle; - if (useWebGL) { - // For GLES2/desktop GL compatibility, adjust a few defaults to be different to WebGL defaults, so that they align better with the desktop defaults. - var contextAttributes = { - antialias: false, - alpha: false - }; - - if (webGLContextAttributes) { - for (var attribute in webGLContextAttributes) { - contextAttributes[attribute] = webGLContextAttributes[attribute]; - } - } - - contextHandle = GL.createContext(canvas, contextAttributes); - if (contextHandle) { - ctx = GL.getContext(contextHandle).GLctx; - } - // Set the background of the WebGL canvas to black - canvas.style.backgroundColor = "black"; - } else { - ctx = canvas.getContext('2d'); - } - - if (!ctx) return null; - - if (setInModule) { - if (!useWebGL) assert(typeof GLctx === 'undefined', 'cannot set in module if GLctx is used, but we are a non-GL context that would replace it'); - - Module.ctx = ctx; - if (useWebGL) GL.makeContextCurrent(contextHandle); - Module.useWebGL = useWebGL; - Browser.moduleContextCreatedCallbacks.forEach(function(callback) { callback() }); - Browser.init(); - } - return ctx; - },destroyContext:function (canvas, useWebGL, setInModule) {},fullScreenHandlersInstalled:false,lockPointer:undefined,resizeCanvas:undefined,requestFullScreen:function (lockPointer, resizeCanvas, vrDevice) { - Browser.lockPointer = lockPointer; - Browser.resizeCanvas = resizeCanvas; - Browser.vrDevice = vrDevice; - if (typeof Browser.lockPointer === 'undefined') Browser.lockPointer = true; - if (typeof Browser.resizeCanvas === 'undefined') Browser.resizeCanvas = false; - if (typeof Browser.vrDevice === 'undefined') Browser.vrDevice = null; - - var canvas = Module['canvas']; - function fullScreenChange() { - Browser.isFullScreen = false; - var canvasContainer = canvas.parentNode; - if ((document['webkitFullScreenElement'] || document['webkitFullscreenElement'] || - document['mozFullScreenElement'] || document['mozFullscreenElement'] || - document['fullScreenElement'] || document['fullscreenElement'] || - document['msFullScreenElement'] || document['msFullscreenElement'] || - document['webkitCurrentFullScreenElement']) === canvasContainer) { - canvas.cancelFullScreen = document['cancelFullScreen'] || - document['mozCancelFullScreen'] || - document['webkitCancelFullScreen'] || - document['msExitFullscreen'] || - document['exitFullscreen'] || - function() {}; - canvas.cancelFullScreen = canvas.cancelFullScreen.bind(document); - if (Browser.lockPointer) canvas.requestPointerLock(); - Browser.isFullScreen = true; - if (Browser.resizeCanvas) Browser.setFullScreenCanvasSize(); - } else { - - // remove the full screen specific parent of the canvas again to restore the HTML structure from before going full screen - canvasContainer.parentNode.insertBefore(canvas, canvasContainer); - canvasContainer.parentNode.removeChild(canvasContainer); - - if (Browser.resizeCanvas) Browser.setWindowedCanvasSize(); - } - if (Module['onFullScreen']) Module['onFullScreen'](Browser.isFullScreen); - Browser.updateCanvasDimensions(canvas); - } - - if (!Browser.fullScreenHandlersInstalled) { - Browser.fullScreenHandlersInstalled = true; - document.addEventListener('fullscreenchange', fullScreenChange, false); - document.addEventListener('mozfullscreenchange', fullScreenChange, false); - document.addEventListener('webkitfullscreenchange', fullScreenChange, false); - document.addEventListener('MSFullscreenChange', fullScreenChange, false); - } - - // create a new parent to ensure the canvas has no siblings. this allows browsers to optimize full screen performance when its parent is the full screen root - var canvasContainer = document.createElement("div"); - canvas.parentNode.insertBefore(canvasContainer, canvas); - canvasContainer.appendChild(canvas); - - // use parent of canvas as full screen root to allow aspect ratio correction (Firefox stretches the root to screen size) - canvasContainer.requestFullScreen = canvasContainer['requestFullScreen'] || - canvasContainer['mozRequestFullScreen'] || - canvasContainer['msRequestFullscreen'] || - (canvasContainer['webkitRequestFullScreen'] ? function() { canvasContainer['webkitRequestFullScreen'](Element['ALLOW_KEYBOARD_INPUT']) } : null); - - if (vrDevice) { - canvasContainer.requestFullScreen({ vrDisplay: vrDevice }); - } else { - canvasContainer.requestFullScreen(); - } - },nextRAF:0,fakeRequestAnimationFrame:function (func) { - // try to keep 60fps between calls to here - var now = Date.now(); - if (Browser.nextRAF === 0) { - Browser.nextRAF = now + 1000/60; - } else { - while (now + 2 >= Browser.nextRAF) { // fudge a little, to avoid timer jitter causing us to do lots of delay:0 - Browser.nextRAF += 1000/60; - } - } - var delay = Math.max(Browser.nextRAF - now, 0); - setTimeout(func, delay); - },requestAnimationFrame:function requestAnimationFrame(func) { - if (typeof window === 'undefined') { // Provide fallback to setTimeout if window is undefined (e.g. in Node.js) - Browser.fakeRequestAnimationFrame(func); - } else { - if (!window.requestAnimationFrame) { - window.requestAnimationFrame = window['requestAnimationFrame'] || - window['mozRequestAnimationFrame'] || - window['webkitRequestAnimationFrame'] || - window['msRequestAnimationFrame'] || - window['oRequestAnimationFrame'] || - Browser.fakeRequestAnimationFrame; - } - window.requestAnimationFrame(func); - } - },safeCallback:function (func) { - return function() { - if (!ABORT) return func.apply(null, arguments); - }; - },allowAsyncCallbacks:true,queuedAsyncCallbacks:[],pauseAsyncCallbacks:function () { - Browser.allowAsyncCallbacks = false; - },resumeAsyncCallbacks:function () { // marks future callbacks as ok to execute, and synchronously runs any remaining ones right now - Browser.allowAsyncCallbacks = true; - if (Browser.queuedAsyncCallbacks.length > 0) { - var callbacks = Browser.queuedAsyncCallbacks; - Browser.queuedAsyncCallbacks = []; - callbacks.forEach(function(func) { - func(); - }); - } - },safeRequestAnimationFrame:function (func) { - return Browser.requestAnimationFrame(function() { - if (ABORT) return; - if (Browser.allowAsyncCallbacks) { - func(); - } else { - Browser.queuedAsyncCallbacks.push(func); - } - }); - },safeSetTimeout:function (func, timeout) { - Module['noExitRuntime'] = true; - return setTimeout(function() { - if (ABORT) return; - if (Browser.allowAsyncCallbacks) { - func(); - } else { - Browser.queuedAsyncCallbacks.push(func); - } - }, timeout); - },safeSetInterval:function (func, timeout) { - Module['noExitRuntime'] = true; - return setInterval(function() { - if (ABORT) return; - if (Browser.allowAsyncCallbacks) { - func(); - } // drop it on the floor otherwise, next interval will kick in - }, timeout); - },getMimetype:function (name) { - return { - 'jpg': 'image/jpeg', - 'jpeg': 'image/jpeg', - 'png': 'image/png', - 'bmp': 'image/bmp', - 'ogg': 'audio/ogg', - 'wav': 'audio/wav', - 'mp3': 'audio/mpeg' - }[name.substr(name.lastIndexOf('.')+1)]; - },getUserMedia:function (func) { - if(!window.getUserMedia) { - window.getUserMedia = navigator['getUserMedia'] || - navigator['mozGetUserMedia']; - } - window.getUserMedia(func); - },getMovementX:function (event) { - return event['movementX'] || - event['mozMovementX'] || - event['webkitMovementX'] || - 0; - },getMovementY:function (event) { - return event['movementY'] || - event['mozMovementY'] || - event['webkitMovementY'] || - 0; - },getMouseWheelDelta:function (event) { - var delta = 0; - switch (event.type) { - case 'DOMMouseScroll': - delta = event.detail; - break; - case 'mousewheel': - delta = event.wheelDelta; - break; - case 'wheel': - delta = event['deltaY']; - break; - default: - throw 'unrecognized mouse wheel event: ' + event.type; - } - return delta; - },mouseX:0,mouseY:0,mouseMovementX:0,mouseMovementY:0,touches:{},lastTouches:{},calculateMouseEvent:function (event) { // event should be mousemove, mousedown or mouseup - if (Browser.pointerLock) { - // When the pointer is locked, calculate the coordinates - // based on the movement of the mouse. - // Workaround for Firefox bug 764498 - if (event.type != 'mousemove' && - ('mozMovementX' in event)) { - Browser.mouseMovementX = Browser.mouseMovementY = 0; - } else { - Browser.mouseMovementX = Browser.getMovementX(event); - Browser.mouseMovementY = Browser.getMovementY(event); - } - - // check if SDL is available - if (typeof SDL != "undefined") { - Browser.mouseX = SDL.mouseX + Browser.mouseMovementX; - Browser.mouseY = SDL.mouseY + Browser.mouseMovementY; - } else { - // just add the mouse delta to the current absolut mouse position - // FIXME: ideally this should be clamped against the canvas size and zero - Browser.mouseX += Browser.mouseMovementX; - Browser.mouseY += Browser.mouseMovementY; - } - } else { - // Otherwise, calculate the movement based on the changes - // in the coordinates. - var rect = Module["canvas"].getBoundingClientRect(); - var cw = Module["canvas"].width; - var ch = Module["canvas"].height; - - // Neither .scrollX or .pageXOffset are defined in a spec, but - // we prefer .scrollX because it is currently in a spec draft. - // (see: http://www.w3.org/TR/2013/WD-cssom-view-20131217/) - var scrollX = ((typeof window.scrollX !== 'undefined') ? window.scrollX : window.pageXOffset); - var scrollY = ((typeof window.scrollY !== 'undefined') ? window.scrollY : window.pageYOffset); - - if (event.type === 'touchstart' || event.type === 'touchend' || event.type === 'touchmove') { - var touch = event.touch; - if (touch === undefined) { - return; // the "touch" property is only defined in SDL - - } - var adjustedX = touch.pageX - (scrollX + rect.left); - var adjustedY = touch.pageY - (scrollY + rect.top); - - adjustedX = adjustedX * (cw / rect.width); - adjustedY = adjustedY * (ch / rect.height); - - var coords = { x: adjustedX, y: adjustedY }; - - if (event.type === 'touchstart') { - Browser.lastTouches[touch.identifier] = coords; - Browser.touches[touch.identifier] = coords; - } else if (event.type === 'touchend' || event.type === 'touchmove') { - var last = Browser.touches[touch.identifier]; - if (!last) last = coords; - Browser.lastTouches[touch.identifier] = last; - Browser.touches[touch.identifier] = coords; - } - return; - } - - var x = event.pageX - (scrollX + rect.left); - var y = event.pageY - (scrollY + rect.top); - - // the canvas might be CSS-scaled compared to its backbuffer; - // SDL-using content will want mouse coordinates in terms - // of backbuffer units. - x = x * (cw / rect.width); - y = y * (ch / rect.height); - - Browser.mouseMovementX = x - Browser.mouseX; - Browser.mouseMovementY = y - Browser.mouseY; - Browser.mouseX = x; - Browser.mouseY = y; - } - },xhrLoad:function (url, onload, onerror) { - var xhr = new XMLHttpRequest(); - xhr.open('GET', url, true); - xhr.responseType = 'arraybuffer'; - xhr.onload = function xhr_onload() { - if (xhr.status == 200 || (xhr.status == 0 && xhr.response)) { // file URLs can return 0 - onload(xhr.response); - } else { - onerror(); - } - }; - xhr.onerror = onerror; - xhr.send(null); - },asyncLoad:function (url, onload, onerror, noRunDep) { - Browser.xhrLoad(url, function(arrayBuffer) { - assert(arrayBuffer, 'Loading data file "' + url + '" failed (no arrayBuffer).'); - onload(new Uint8Array(arrayBuffer)); - if (!noRunDep) removeRunDependency('al ' + url); - }, function(event) { - if (onerror) { - onerror(); - } else { - throw 'Loading data file "' + url + '" failed.'; - } - }); - if (!noRunDep) addRunDependency('al ' + url); - },resizeListeners:[],updateResizeListeners:function () { - var canvas = Module['canvas']; - Browser.resizeListeners.forEach(function(listener) { - listener(canvas.width, canvas.height); - }); - },setCanvasSize:function (width, height, noUpdates) { - var canvas = Module['canvas']; - Browser.updateCanvasDimensions(canvas, width, height); - if (!noUpdates) Browser.updateResizeListeners(); - },windowedWidth:0,windowedHeight:0,setFullScreenCanvasSize:function () { - // check if SDL is available - if (typeof SDL != "undefined") { - var flags = HEAPU32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]; - flags = flags | 0x00800000; // set SDL_FULLSCREEN flag - HEAP32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]=flags - } - Browser.updateResizeListeners(); - },setWindowedCanvasSize:function () { - // check if SDL is available - if (typeof SDL != "undefined") { - var flags = HEAPU32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]; - flags = flags & ~0x00800000; // clear SDL_FULLSCREEN flag - HEAP32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]=flags - } - Browser.updateResizeListeners(); - },updateCanvasDimensions:function (canvas, wNative, hNative) { - if (wNative && hNative) { - canvas.widthNative = wNative; - canvas.heightNative = hNative; - } else { - wNative = canvas.widthNative; - hNative = canvas.heightNative; - } - var w = wNative; - var h = hNative; - if (Module['forcedAspectRatio'] && Module['forcedAspectRatio'] > 0) { - if (w/h < Module['forcedAspectRatio']) { - w = Math.round(h * Module['forcedAspectRatio']); - } else { - h = Math.round(w / Module['forcedAspectRatio']); - } - } - if (((document['webkitFullScreenElement'] || document['webkitFullscreenElement'] || - document['mozFullScreenElement'] || document['mozFullscreenElement'] || - document['fullScreenElement'] || document['fullscreenElement'] || - document['msFullScreenElement'] || document['msFullscreenElement'] || - document['webkitCurrentFullScreenElement']) === canvas.parentNode) && (typeof screen != 'undefined')) { - var factor = Math.min(screen.width / w, screen.height / h); - w = Math.round(w * factor); - h = Math.round(h * factor); - } - if (Browser.resizeCanvas) { - if (canvas.width != w) canvas.width = w; - if (canvas.height != h) canvas.height = h; - if (typeof canvas.style != 'undefined') { - canvas.style.removeProperty( "width"); - canvas.style.removeProperty("height"); - } - } else { - if (canvas.width != wNative) canvas.width = wNative; - if (canvas.height != hNative) canvas.height = hNative; - if (typeof canvas.style != 'undefined') { - if (w != wNative || h != hNative) { - canvas.style.setProperty( "width", w + "px", "important"); - canvas.style.setProperty("height", h + "px", "important"); - } else { - canvas.style.removeProperty( "width"); - canvas.style.removeProperty("height"); - } - } - } - },wgetRequests:{},nextWgetRequestHandle:0,getNextWgetRequestHandle:function () { - var handle = Browser.nextWgetRequestHandle; - Browser.nextWgetRequestHandle++; - return handle; - }}; - - function _time(ptr) { - var ret = (Date.now()/1000)|0; - if (ptr) { - HEAP32[((ptr)>>2)]=ret; - } - return ret; - } - - function _pthread_self() { - //FIXME: assumes only a single thread - return 0; - } - - function ___syscall140(which, varargs) {SYSCALLS.varargs = varargs; - try { - // llseek - var stream = SYSCALLS.getStreamFromFD(), offset_high = SYSCALLS.get(), offset_low = SYSCALLS.get(), result = SYSCALLS.get(), whence = SYSCALLS.get(); - var offset = offset_low; - assert(offset_high === 0); - FS.llseek(stream, offset, whence); - HEAP32[((result)>>2)]=stream.position; - if (stream.getdents && offset === 0 && whence === 0) stream.getdents = null; // reset readdir state - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___syscall146(which, varargs) {SYSCALLS.varargs = varargs; - try { - // writev - var stream = SYSCALLS.getStreamFromFD(), iov = SYSCALLS.get(), iovcnt = SYSCALLS.get(); - return SYSCALLS.doWritev(stream, iov, iovcnt); - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___syscall54(which, varargs) {SYSCALLS.varargs = varargs; - try { - // ioctl - var stream = SYSCALLS.getStreamFromFD(), op = SYSCALLS.get(); - switch (op) { - case 21505: { - if (!stream.tty) return -ERRNO_CODES.ENOTTY; - return 0; - } - case 21506: { - if (!stream.tty) return -ERRNO_CODES.ENOTTY; - return 0; // no-op, not actually adjusting terminal settings - } - case 21519: { - if (!stream.tty) return -ERRNO_CODES.ENOTTY; - var argp = SYSCALLS.get(); - HEAP32[((argp)>>2)]=0; - return 0; - } - case 21520: { - if (!stream.tty) return -ERRNO_CODES.ENOTTY; - return -ERRNO_CODES.EINVAL; // not supported - } - case 21531: { - var argp = SYSCALLS.get(); - return FS.ioctl(stream, op, argp); - } - default: abort('bad ioctl syscall ' + op); - } - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } -FS.staticInit();__ATINIT__.unshift(function() { if (!Module["noFSInit"] && !FS.init.initialized) FS.init() });__ATMAIN__.push(function() { FS.ignorePermissions = false });__ATEXIT__.push(function() { FS.quit() });Module["FS_createFolder"] = FS.createFolder;Module["FS_createPath"] = FS.createPath;Module["FS_createDataFile"] = FS.createDataFile;Module["FS_createPreloadedFile"] = FS.createPreloadedFile;Module["FS_createLazyFile"] = FS.createLazyFile;Module["FS_createLink"] = FS.createLink;Module["FS_createDevice"] = FS.createDevice;Module["FS_unlink"] = FS.unlink; -__ATINIT__.unshift(function() { TTY.init() });__ATEXIT__.push(function() { TTY.shutdown() }); -if (ENVIRONMENT_IS_NODE) { var fs = require("fs"); var NODEJS_PATH = require("path"); NODEFS.staticInit(); } -Module["requestFullScreen"] = function Module_requestFullScreen(lockPointer, resizeCanvas, vrDevice) { Browser.requestFullScreen(lockPointer, resizeCanvas, vrDevice) }; - Module["requestAnimationFrame"] = function Module_requestAnimationFrame(func) { Browser.requestAnimationFrame(func) }; - Module["setCanvasSize"] = function Module_setCanvasSize(width, height, noUpdates) { Browser.setCanvasSize(width, height, noUpdates) }; - Module["pauseMainLoop"] = function Module_pauseMainLoop() { Browser.mainLoop.pause() }; - Module["resumeMainLoop"] = function Module_resumeMainLoop() { Browser.mainLoop.resume() }; - Module["getUserMedia"] = function Module_getUserMedia() { Browser.getUserMedia() } - Module["createContext"] = function Module_createContext(canvas, useWebGL, setInModule, webGLContextAttributes) { return Browser.createContext(canvas, useWebGL, setInModule, webGLContextAttributes) } -STACK_BASE = STACKTOP = Runtime.alignMemory(STATICTOP); - -staticSealed = true; // seal the static portion of memory - -STACK_MAX = STACK_BASE + TOTAL_STACK; - -DYNAMIC_BASE = DYNAMICTOP = Runtime.alignMemory(STACK_MAX); - -assert(DYNAMIC_BASE < TOTAL_MEMORY, "TOTAL_MEMORY not big enough for stack"); - - var cttz_i8 = allocate([8,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,6,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,7,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,6,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0], "i8", ALLOC_DYNAMIC); - - -function invoke_ii(index,a1) { - try { - return Module["dynCall_ii"](index,a1); - } catch(e) { - if (typeof e !== 'number' && e !== 'longjmp') throw e; - asm["setThrew"](1, 0); - } -} - -function invoke_iiii(index,a1,a2,a3) { - try { - return Module["dynCall_iiii"](index,a1,a2,a3); - } catch(e) { - if (typeof e !== 'number' && e !== 'longjmp') throw e; - asm["setThrew"](1, 0); - } -} - -function invoke_vi(index,a1) { - try { - Module["dynCall_vi"](index,a1); - } catch(e) { - if (typeof e !== 'number' && e !== 'longjmp') throw e; - asm["setThrew"](1, 0); - } -} - -Module.asmGlobalArg = { "Math": Math, "Int8Array": Int8Array, "Int16Array": Int16Array, "Int32Array": Int32Array, "Uint8Array": Uint8Array, "Uint16Array": Uint16Array, "Uint32Array": Uint32Array, "Float32Array": Float32Array, "Float64Array": Float64Array, "NaN": NaN, "Infinity": Infinity }; - -Module.asmLibraryArg = { "abort": abort, "assert": assert, "invoke_ii": invoke_ii, "invoke_iiii": invoke_iiii, "invoke_vi": invoke_vi, "_pthread_cleanup_pop": _pthread_cleanup_pop, "___lock": ___lock, "_emscripten_set_main_loop": _emscripten_set_main_loop, "_pthread_self": _pthread_self, "___syscall6": ___syscall6, "_emscripten_set_main_loop_timing": _emscripten_set_main_loop_timing, "_abort": _abort, "_sbrk": _sbrk, "_time": _time, "___setErrNo": ___setErrNo, "_emscripten_memcpy_big": _emscripten_memcpy_big, "___syscall54": ___syscall54, "___unlock": ___unlock, "___syscall140": ___syscall140, "_pthread_cleanup_push": _pthread_cleanup_push, "_sysconf": _sysconf, "___syscall146": ___syscall146, "STACKTOP": STACKTOP, "STACK_MAX": STACK_MAX, "tempDoublePtr": tempDoublePtr, "ABORT": ABORT, "cttz_i8": cttz_i8 }; -// EMSCRIPTEN_START_ASM -var asm = (function(global, env, buffer) { - 'use asm'; - - - var HEAP8 = new global.Int8Array(buffer); - var HEAP16 = new global.Int16Array(buffer); - var HEAP32 = new global.Int32Array(buffer); - var HEAPU8 = new global.Uint8Array(buffer); - var HEAPU16 = new global.Uint16Array(buffer); - var HEAPU32 = new global.Uint32Array(buffer); - var HEAPF32 = new global.Float32Array(buffer); - var HEAPF64 = new global.Float64Array(buffer); - - - var STACKTOP=env.STACKTOP|0; - var STACK_MAX=env.STACK_MAX|0; - var tempDoublePtr=env.tempDoublePtr|0; - var ABORT=env.ABORT|0; - var cttz_i8=env.cttz_i8|0; - - var __THREW__ = 0; - var threwValue = 0; - var setjmpId = 0; - var undef = 0; - var nan = global.NaN, inf = global.Infinity; - var tempInt = 0, tempBigInt = 0, tempBigIntP = 0, tempBigIntS = 0, tempBigIntR = 0.0, tempBigIntI = 0, tempBigIntD = 0, tempValue = 0, tempDouble = 0.0; - - var tempRet0 = 0; - var tempRet1 = 0; - var tempRet2 = 0; - var tempRet3 = 0; - var tempRet4 = 0; - var tempRet5 = 0; - var tempRet6 = 0; - var tempRet7 = 0; - var tempRet8 = 0; - var tempRet9 = 0; - var Math_floor=global.Math.floor; - var Math_abs=global.Math.abs; - var Math_sqrt=global.Math.sqrt; - var Math_pow=global.Math.pow; - var Math_cos=global.Math.cos; - var Math_sin=global.Math.sin; - var Math_tan=global.Math.tan; - var Math_acos=global.Math.acos; - var Math_asin=global.Math.asin; - var Math_atan=global.Math.atan; - var Math_atan2=global.Math.atan2; - var Math_exp=global.Math.exp; - var Math_log=global.Math.log; - var Math_ceil=global.Math.ceil; - var Math_imul=global.Math.imul; - var Math_min=global.Math.min; - var Math_clz32=global.Math.clz32; - var abort=env.abort; - var assert=env.assert; - var invoke_ii=env.invoke_ii; - var invoke_iiii=env.invoke_iiii; - var invoke_vi=env.invoke_vi; - var _pthread_cleanup_pop=env._pthread_cleanup_pop; - var ___lock=env.___lock; - var _emscripten_set_main_loop=env._emscripten_set_main_loop; - var _pthread_self=env._pthread_self; - var ___syscall6=env.___syscall6; - var _emscripten_set_main_loop_timing=env._emscripten_set_main_loop_timing; - var _abort=env._abort; - var _sbrk=env._sbrk; - var _time=env._time; - var ___setErrNo=env.___setErrNo; - var _emscripten_memcpy_big=env._emscripten_memcpy_big; - var ___syscall54=env.___syscall54; - var ___unlock=env.___unlock; - var ___syscall140=env.___syscall140; - var _pthread_cleanup_push=env._pthread_cleanup_push; - var _sysconf=env._sysconf; - var ___syscall146=env.___syscall146; - var tempFloat = 0.0; - -// EMSCRIPTEN_START_FUNCS -function stackAlloc(size) { - size = size|0; - var ret = 0; - ret = STACKTOP; - STACKTOP = (STACKTOP + size)|0; - STACKTOP = (STACKTOP + 15)&-16; - - return ret|0; -} -function stackSave() { - return STACKTOP|0; -} -function stackRestore(top) { - top = top|0; - STACKTOP = top; -} -function establishStackSpace(stackBase, stackMax) { - stackBase = stackBase|0; - stackMax = stackMax|0; - STACKTOP = stackBase; - STACK_MAX = stackMax; -} - -function setThrew(threw, value) { - threw = threw|0; - value = value|0; - if ((__THREW__|0) == 0) { - __THREW__ = threw; - threwValue = value; - } -} -function copyTempFloat(ptr) { - ptr = ptr|0; - HEAP8[tempDoublePtr>>0] = HEAP8[ptr>>0]; - HEAP8[tempDoublePtr+1>>0] = HEAP8[ptr+1>>0]; - HEAP8[tempDoublePtr+2>>0] = HEAP8[ptr+2>>0]; - HEAP8[tempDoublePtr+3>>0] = HEAP8[ptr+3>>0]; -} -function copyTempDouble(ptr) { - ptr = ptr|0; - HEAP8[tempDoublePtr>>0] = HEAP8[ptr>>0]; - HEAP8[tempDoublePtr+1>>0] = HEAP8[ptr+1>>0]; - HEAP8[tempDoublePtr+2>>0] = HEAP8[ptr+2>>0]; - HEAP8[tempDoublePtr+3>>0] = HEAP8[ptr+3>>0]; - HEAP8[tempDoublePtr+4>>0] = HEAP8[ptr+4>>0]; - HEAP8[tempDoublePtr+5>>0] = HEAP8[ptr+5>>0]; - HEAP8[tempDoublePtr+6>>0] = HEAP8[ptr+6>>0]; - HEAP8[tempDoublePtr+7>>0] = HEAP8[ptr+7>>0]; -} - -function setTempRet0(value) { - value = value|0; - tempRet0 = value; -} -function getTempRet0() { - return tempRet0|0; -} - -function _crypto_verify_32_ref($x,$y) { - $x = $x|0; - $y = $y|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0; - var $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0; - var $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0; - var $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0; - var $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP8[$x>>0]|0; - $1 = HEAP8[$y>>0]|0; - $2 = $1 ^ $0; - $3 = ((($x)) + 1|0); - $4 = HEAP8[$3>>0]|0; - $5 = ((($y)) + 1|0); - $6 = HEAP8[$5>>0]|0; - $7 = $6 ^ $4; - $8 = $7 | $2; - $9 = ((($x)) + 2|0); - $10 = HEAP8[$9>>0]|0; - $11 = ((($y)) + 2|0); - $12 = HEAP8[$11>>0]|0; - $13 = $12 ^ $10; - $14 = $8 | $13; - $15 = ((($x)) + 3|0); - $16 = HEAP8[$15>>0]|0; - $17 = ((($y)) + 3|0); - $18 = HEAP8[$17>>0]|0; - $19 = $18 ^ $16; - $20 = $14 | $19; - $21 = ((($x)) + 4|0); - $22 = HEAP8[$21>>0]|0; - $23 = ((($y)) + 4|0); - $24 = HEAP8[$23>>0]|0; - $25 = $24 ^ $22; - $26 = $20 | $25; - $27 = ((($x)) + 5|0); - $28 = HEAP8[$27>>0]|0; - $29 = ((($y)) + 5|0); - $30 = HEAP8[$29>>0]|0; - $31 = $30 ^ $28; - $32 = $26 | $31; - $33 = ((($x)) + 6|0); - $34 = HEAP8[$33>>0]|0; - $35 = ((($y)) + 6|0); - $36 = HEAP8[$35>>0]|0; - $37 = $36 ^ $34; - $38 = $32 | $37; - $39 = ((($x)) + 7|0); - $40 = HEAP8[$39>>0]|0; - $41 = ((($y)) + 7|0); - $42 = HEAP8[$41>>0]|0; - $43 = $42 ^ $40; - $44 = $38 | $43; - $45 = ((($x)) + 8|0); - $46 = HEAP8[$45>>0]|0; - $47 = ((($y)) + 8|0); - $48 = HEAP8[$47>>0]|0; - $49 = $48 ^ $46; - $50 = $44 | $49; - $51 = ((($x)) + 9|0); - $52 = HEAP8[$51>>0]|0; - $53 = ((($y)) + 9|0); - $54 = HEAP8[$53>>0]|0; - $55 = $54 ^ $52; - $56 = $50 | $55; - $57 = ((($x)) + 10|0); - $58 = HEAP8[$57>>0]|0; - $59 = ((($y)) + 10|0); - $60 = HEAP8[$59>>0]|0; - $61 = $60 ^ $58; - $62 = $56 | $61; - $63 = ((($x)) + 11|0); - $64 = HEAP8[$63>>0]|0; - $65 = ((($y)) + 11|0); - $66 = HEAP8[$65>>0]|0; - $67 = $66 ^ $64; - $68 = $62 | $67; - $69 = ((($x)) + 12|0); - $70 = HEAP8[$69>>0]|0; - $71 = ((($y)) + 12|0); - $72 = HEAP8[$71>>0]|0; - $73 = $72 ^ $70; - $74 = $68 | $73; - $75 = ((($x)) + 13|0); - $76 = HEAP8[$75>>0]|0; - $77 = ((($y)) + 13|0); - $78 = HEAP8[$77>>0]|0; - $79 = $78 ^ $76; - $80 = $74 | $79; - $81 = ((($x)) + 14|0); - $82 = HEAP8[$81>>0]|0; - $83 = ((($y)) + 14|0); - $84 = HEAP8[$83>>0]|0; - $85 = $84 ^ $82; - $86 = $80 | $85; - $87 = ((($x)) + 15|0); - $88 = HEAP8[$87>>0]|0; - $89 = ((($y)) + 15|0); - $90 = HEAP8[$89>>0]|0; - $91 = $90 ^ $88; - $92 = $86 | $91; - $93 = ((($x)) + 16|0); - $94 = HEAP8[$93>>0]|0; - $95 = ((($y)) + 16|0); - $96 = HEAP8[$95>>0]|0; - $97 = $96 ^ $94; - $98 = $92 | $97; - $99 = ((($x)) + 17|0); - $100 = HEAP8[$99>>0]|0; - $101 = ((($y)) + 17|0); - $102 = HEAP8[$101>>0]|0; - $103 = $102 ^ $100; - $104 = $98 | $103; - $105 = ((($x)) + 18|0); - $106 = HEAP8[$105>>0]|0; - $107 = ((($y)) + 18|0); - $108 = HEAP8[$107>>0]|0; - $109 = $108 ^ $106; - $110 = $104 | $109; - $111 = ((($x)) + 19|0); - $112 = HEAP8[$111>>0]|0; - $113 = ((($y)) + 19|0); - $114 = HEAP8[$113>>0]|0; - $115 = $114 ^ $112; - $116 = $110 | $115; - $117 = ((($x)) + 20|0); - $118 = HEAP8[$117>>0]|0; - $119 = ((($y)) + 20|0); - $120 = HEAP8[$119>>0]|0; - $121 = $120 ^ $118; - $122 = $116 | $121; - $123 = ((($x)) + 21|0); - $124 = HEAP8[$123>>0]|0; - $125 = ((($y)) + 21|0); - $126 = HEAP8[$125>>0]|0; - $127 = $126 ^ $124; - $128 = $122 | $127; - $129 = ((($x)) + 22|0); - $130 = HEAP8[$129>>0]|0; - $131 = ((($y)) + 22|0); - $132 = HEAP8[$131>>0]|0; - $133 = $132 ^ $130; - $134 = $128 | $133; - $135 = ((($x)) + 23|0); - $136 = HEAP8[$135>>0]|0; - $137 = ((($y)) + 23|0); - $138 = HEAP8[$137>>0]|0; - $139 = $138 ^ $136; - $140 = $134 | $139; - $141 = ((($x)) + 24|0); - $142 = HEAP8[$141>>0]|0; - $143 = ((($y)) + 24|0); - $144 = HEAP8[$143>>0]|0; - $145 = $144 ^ $142; - $146 = $140 | $145; - $147 = ((($x)) + 25|0); - $148 = HEAP8[$147>>0]|0; - $149 = ((($y)) + 25|0); - $150 = HEAP8[$149>>0]|0; - $151 = $150 ^ $148; - $152 = $146 | $151; - $153 = ((($x)) + 26|0); - $154 = HEAP8[$153>>0]|0; - $155 = ((($y)) + 26|0); - $156 = HEAP8[$155>>0]|0; - $157 = $156 ^ $154; - $158 = $152 | $157; - $159 = ((($x)) + 27|0); - $160 = HEAP8[$159>>0]|0; - $161 = ((($y)) + 27|0); - $162 = HEAP8[$161>>0]|0; - $163 = $162 ^ $160; - $164 = $158 | $163; - $165 = ((($x)) + 28|0); - $166 = HEAP8[$165>>0]|0; - $167 = ((($y)) + 28|0); - $168 = HEAP8[$167>>0]|0; - $169 = $168 ^ $166; - $170 = $164 | $169; - $171 = ((($x)) + 29|0); - $172 = HEAP8[$171>>0]|0; - $173 = ((($y)) + 29|0); - $174 = HEAP8[$173>>0]|0; - $175 = $174 ^ $172; - $176 = $170 | $175; - $177 = ((($x)) + 30|0); - $178 = HEAP8[$177>>0]|0; - $179 = ((($y)) + 30|0); - $180 = HEAP8[$179>>0]|0; - $181 = $180 ^ $178; - $182 = $176 | $181; - $183 = ((($x)) + 31|0); - $184 = HEAP8[$183>>0]|0; - $185 = ((($y)) + 31|0); - $186 = HEAP8[$185>>0]|0; - $187 = $186 ^ $184; - $188 = $182 | $187; - $189 = $188&255; - $190 = (($189) + 511)|0; - $191 = $190 >>> 8; - $192 = $191 & 1; - $193 = (($192) + -1)|0; - return ($193|0); -} -function _curve25519_sign($signature_out,$curve25519_privkey,$msg,$msg_len) { - $signature_out = $signature_out|0; - $curve25519_privkey = $curve25519_privkey|0; - $msg = $msg|0; - $msg_len = $msg_len|0; - var $$alloca_mul = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $ed_keypair = 0, $ed_pubkey_point = 0, $sigbuf_out_len = 0; - var dest = 0, label = 0, sp = 0, src = 0, stop = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 240|0; - $ed_pubkey_point = sp + 8|0; - $ed_keypair = sp + 168|0; - $sigbuf_out_len = sp; - $0 = (($msg_len) + 64)|0; - $$alloca_mul = $0; - $1 = STACKTOP; STACKTOP = STACKTOP + ((((1*$$alloca_mul)|0)+15)&-16)|0;; - $2 = $sigbuf_out_len; - $3 = $2; - HEAP32[$3>>2] = 0; - $4 = (($2) + 4)|0; - $5 = $4; - HEAP32[$5>>2] = 0; - dest=$ed_keypair; src=$curve25519_privkey; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - _crypto_sign_ed25519_ref10_ge_scalarmult_base($ed_pubkey_point,$curve25519_privkey); - $6 = ((($ed_keypair)) + 32|0); - _crypto_sign_ed25519_ref10_ge_p3_tobytes($6,$ed_pubkey_point); - $7 = ((($ed_keypair)) + 63|0); - $8 = HEAP8[$7>>0]|0; - $9 = $8&255; - $10 = $9 & 128; - (_crypto_sign_modified($1,$sigbuf_out_len,$msg,$msg_len,0,$ed_keypair)|0); - dest=$signature_out; src=$1; stop=dest+64|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - $11 = ((($signature_out)) + 63|0); - $12 = HEAP8[$11>>0]|0; - $13 = $12&255; - $14 = $13 | $10; - $15 = $14&255; - HEAP8[$11>>0] = $15; - STACKTOP = sp;return; -} -function _curve25519_verify($signature,$curve25519_pubkey,$msg,$msg_len) { - $signature = $signature|0; - $curve25519_pubkey = $curve25519_pubkey|0; - $msg = $msg|0; - $msg_len = $msg_len|0; - var $$alloca_mul = 0, $$alloca_mul1 = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0; - var $ed_pubkey = 0, $ed_y = 0, $inv_mont_x_plus_one = 0, $mont_x = 0, $mont_x_minus_one = 0, $mont_x_plus_one = 0, $one = 0, $some_retval = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 288|0; - $mont_x = sp + 208|0; - $mont_x_minus_one = sp + 168|0; - $mont_x_plus_one = sp + 128|0; - $inv_mont_x_plus_one = sp + 88|0; - $one = sp + 48|0; - $ed_y = sp + 8|0; - $ed_pubkey = sp + 248|0; - $some_retval = sp; - $0 = (($msg_len) + 64)|0; - $$alloca_mul = $0; - $1 = STACKTOP; STACKTOP = STACKTOP + ((((1*$$alloca_mul)|0)+15)&-16)|0;; - $$alloca_mul1 = $0; - $2 = STACKTOP; STACKTOP = STACKTOP + ((((1*$$alloca_mul1)|0)+15)&-16)|0;; - _crypto_sign_ed25519_ref10_fe_frombytes($mont_x,$curve25519_pubkey); - _crypto_sign_ed25519_ref10_fe_1($one); - _crypto_sign_ed25519_ref10_fe_sub($mont_x_minus_one,$mont_x,$one); - _crypto_sign_ed25519_ref10_fe_add($mont_x_plus_one,$mont_x,$one); - _crypto_sign_ed25519_ref10_fe_invert($inv_mont_x_plus_one,$mont_x_plus_one); - _crypto_sign_ed25519_ref10_fe_mul($ed_y,$mont_x_minus_one,$inv_mont_x_plus_one); - _crypto_sign_ed25519_ref10_fe_tobytes($ed_pubkey,$ed_y); - $3 = ((($signature)) + 63|0); - $4 = HEAP8[$3>>0]|0; - $5 = $4&255; - $6 = $5 & 128; - $7 = ((($ed_pubkey)) + 31|0); - $8 = HEAP8[$7>>0]|0; - $9 = $8&255; - $10 = $9 | $6; - $11 = $10&255; - HEAP8[$7>>0] = $11; - $12 = HEAP8[$3>>0]|0; - $13 = $12&255; - $14 = $13 & 127; - $15 = $14&255; - HEAP8[$3>>0] = $15; - dest=$1; src=$signature; stop=dest+64|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - $16 = ((($1)) + 64|0); - _memcpy(($16|0),($msg|0),($msg_len|0))|0; - $17 = (_crypto_sign_edwards25519sha512batch_ref10_open($2,$some_retval,$1,$0,0,$ed_pubkey)|0); - STACKTOP = sp;return ($17|0); -} -function _crypto_hash_sha512_ref($output,$input,$0,$1) { - $output = $output|0; - $input = $input|0; - $0 = $0|0; - $1 = $1|0; - var $ctx = 0, label = 0, sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 208|0; - $ctx = sp; - _sph_sha512_init($ctx); - _sph_sha384($ctx,$input,$0); - _sph_sha512_close($ctx,$output); - STACKTOP = sp;return 0; -} -function _crypto_sign_modified($sm,$smlen,$m,$0,$1,$sk) { - $sm = $sm|0; - $smlen = $smlen|0; - $m = $m|0; - $0 = $0|0; - $1 = $1|0; - $sk = $sk|0; - var $10 = 0, $11 = 0, $12 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $R = 0, $hram = 0, $nonce = 0, $pk1 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 320|0; - $pk1 = sp + 224|0; - $nonce = sp + 256|0; - $hram = sp + 160|0; - $R = sp; - $2 = ((($sk)) + 32|0); - dest=$pk1; src=$2; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - $3 = (_i64Add(($0|0),($1|0),64,0)|0); - $4 = tempRet0; - $5 = $smlen; - $6 = $5; - HEAP32[$6>>2] = $3; - $7 = (($5) + 4)|0; - $8 = $7; - HEAP32[$8>>2] = $4; - $9 = ((($sm)) + 64|0); - _memmove(($9|0),($m|0),($0|0))|0; - $10 = ((($sm)) + 32|0); - _memmove(($10|0),($sk|0),32)|0; - $11 = (_i64Add(($0|0),($1|0),32,0)|0); - $12 = tempRet0; - (_crypto_hash_sha512_ref($nonce,$10,$11,$12)|0); - dest=$10; src=$pk1; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - _crypto_sign_ed25519_ref10_sc_reduce($nonce); - _crypto_sign_ed25519_ref10_ge_scalarmult_base($R,$nonce); - _crypto_sign_ed25519_ref10_ge_p3_tobytes($sm,$R); - (_crypto_hash_sha512_ref($hram,$sm,$3,$4)|0); - _crypto_sign_ed25519_ref10_sc_reduce($hram); - _crypto_sign_ed25519_ref10_sc_muladd($10,$hram,$sk,$nonce); - STACKTOP = sp;return 0; -} -function _curve25519_donna($mypublic,$secret,$basepoint) { - $mypublic = $mypublic|0; - $secret = $secret|0; - $basepoint = $basepoint|0; - var $bp = 0, $e = 0, $x = 0, $z = 0, $zmone = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 368|0; - $bp = sp + 248|0; - $x = sp + 168|0; - $z = sp + 80|0; - $zmone = sp; - $e = sp + 328|0; - dest=$e; src=$secret; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - _fexpand($bp,$basepoint); - _cmult($x,$z,$e,$bp); - _crecip($zmone,$z); - _fmul($z,$x,$zmone); - _fcontract($mypublic,$z); - STACKTOP = sp;return 0; -} -function _fexpand($output,$input) { - $output = $output|0; - $input = $input|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; - var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; - var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; - var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; - var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; - var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $3 = 0, $30 = 0, $31 = 0; - var $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0; - var $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0; - var $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0; - var $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP8[$input>>0]|0; - $1 = $0&255; - $2 = ((($input)) + 1|0); - $3 = HEAP8[$2>>0]|0; - $4 = $3&255; - $5 = (_bitshift64Shl(($4|0),0,8)|0); - $6 = tempRet0; - $7 = $5 | $1; - $8 = ((($input)) + 2|0); - $9 = HEAP8[$8>>0]|0; - $10 = $9&255; - $11 = (_bitshift64Shl(($10|0),0,16)|0); - $12 = tempRet0; - $13 = $7 | $11; - $14 = $6 | $12; - $15 = ((($input)) + 3|0); - $16 = HEAP8[$15>>0]|0; - $17 = $16&255; - $18 = (_bitshift64Shl(($17|0),0,24)|0); - $19 = tempRet0; - $20 = $18 & 50331648; - $21 = $13 | $20; - $22 = $output; - $23 = $22; - HEAP32[$23>>2] = $21; - $24 = (($22) + 4)|0; - $25 = $24; - HEAP32[$25>>2] = $14; - $26 = HEAP8[$15>>0]|0; - $27 = $26&255; - $28 = ((($input)) + 4|0); - $29 = HEAP8[$28>>0]|0; - $30 = $29&255; - $31 = (_bitshift64Shl(($30|0),0,8)|0); - $32 = tempRet0; - $33 = $31 | $27; - $34 = ((($input)) + 5|0); - $35 = HEAP8[$34>>0]|0; - $36 = $35&255; - $37 = (_bitshift64Shl(($36|0),0,16)|0); - $38 = tempRet0; - $39 = $33 | $37; - $40 = $32 | $38; - $41 = ((($input)) + 6|0); - $42 = HEAP8[$41>>0]|0; - $43 = $42&255; - $44 = (_bitshift64Shl(($43|0),0,24)|0); - $45 = tempRet0; - $46 = $39 | $44; - $47 = $40 | $45; - $48 = (_bitshift64Lshr(($46|0),($47|0),2)|0); - $49 = tempRet0; - $50 = $48 & 33554431; - $51 = ((($output)) + 8|0); - $52 = $51; - $53 = $52; - HEAP32[$53>>2] = $50; - $54 = (($52) + 4)|0; - $55 = $54; - HEAP32[$55>>2] = 0; - $56 = HEAP8[$41>>0]|0; - $57 = $56&255; - $58 = ((($input)) + 7|0); - $59 = HEAP8[$58>>0]|0; - $60 = $59&255; - $61 = (_bitshift64Shl(($60|0),0,8)|0); - $62 = tempRet0; - $63 = $61 | $57; - $64 = ((($input)) + 8|0); - $65 = HEAP8[$64>>0]|0; - $66 = $65&255; - $67 = (_bitshift64Shl(($66|0),0,16)|0); - $68 = tempRet0; - $69 = $63 | $67; - $70 = $62 | $68; - $71 = ((($input)) + 9|0); - $72 = HEAP8[$71>>0]|0; - $73 = $72&255; - $74 = (_bitshift64Shl(($73|0),0,24)|0); - $75 = tempRet0; - $76 = $69 | $74; - $77 = $70 | $75; - $78 = (_bitshift64Lshr(($76|0),($77|0),3)|0); - $79 = tempRet0; - $80 = $78 & 67108863; - $81 = ((($output)) + 16|0); - $82 = $81; - $83 = $82; - HEAP32[$83>>2] = $80; - $84 = (($82) + 4)|0; - $85 = $84; - HEAP32[$85>>2] = 0; - $86 = HEAP8[$71>>0]|0; - $87 = $86&255; - $88 = ((($input)) + 10|0); - $89 = HEAP8[$88>>0]|0; - $90 = $89&255; - $91 = (_bitshift64Shl(($90|0),0,8)|0); - $92 = tempRet0; - $93 = $91 | $87; - $94 = ((($input)) + 11|0); - $95 = HEAP8[$94>>0]|0; - $96 = $95&255; - $97 = (_bitshift64Shl(($96|0),0,16)|0); - $98 = tempRet0; - $99 = $93 | $97; - $100 = $92 | $98; - $101 = ((($input)) + 12|0); - $102 = HEAP8[$101>>0]|0; - $103 = $102&255; - $104 = (_bitshift64Shl(($103|0),0,24)|0); - $105 = tempRet0; - $106 = $99 | $104; - $107 = $100 | $105; - $108 = (_bitshift64Lshr(($106|0),($107|0),5)|0); - $109 = tempRet0; - $110 = $108 & 33554431; - $111 = ((($output)) + 24|0); - $112 = $111; - $113 = $112; - HEAP32[$113>>2] = $110; - $114 = (($112) + 4)|0; - $115 = $114; - HEAP32[$115>>2] = 0; - $116 = HEAP8[$101>>0]|0; - $117 = $116&255; - $118 = ((($input)) + 13|0); - $119 = HEAP8[$118>>0]|0; - $120 = $119&255; - $121 = (_bitshift64Shl(($120|0),0,8)|0); - $122 = tempRet0; - $123 = $121 | $117; - $124 = ((($input)) + 14|0); - $125 = HEAP8[$124>>0]|0; - $126 = $125&255; - $127 = (_bitshift64Shl(($126|0),0,16)|0); - $128 = tempRet0; - $129 = $123 | $127; - $130 = $122 | $128; - $131 = ((($input)) + 15|0); - $132 = HEAP8[$131>>0]|0; - $133 = $132&255; - $134 = (_bitshift64Shl(($133|0),0,24)|0); - $135 = tempRet0; - $136 = $129 | $134; - $137 = $130 | $135; - $138 = (_bitshift64Lshr(($136|0),($137|0),6)|0); - $139 = tempRet0; - $140 = $138 & 67108863; - $141 = ((($output)) + 32|0); - $142 = $141; - $143 = $142; - HEAP32[$143>>2] = $140; - $144 = (($142) + 4)|0; - $145 = $144; - HEAP32[$145>>2] = 0; - $146 = ((($input)) + 16|0); - $147 = HEAP8[$146>>0]|0; - $148 = $147&255; - $149 = ((($input)) + 17|0); - $150 = HEAP8[$149>>0]|0; - $151 = $150&255; - $152 = (_bitshift64Shl(($151|0),0,8)|0); - $153 = tempRet0; - $154 = $152 | $148; - $155 = ((($input)) + 18|0); - $156 = HEAP8[$155>>0]|0; - $157 = $156&255; - $158 = (_bitshift64Shl(($157|0),0,16)|0); - $159 = tempRet0; - $160 = $154 | $158; - $161 = $153 | $159; - $162 = ((($input)) + 19|0); - $163 = HEAP8[$162>>0]|0; - $164 = $163&255; - $165 = (_bitshift64Shl(($164|0),0,24)|0); - $166 = tempRet0; - $167 = $165 & 16777216; - $168 = $160 | $167; - $169 = ((($output)) + 40|0); - $170 = $169; - $171 = $170; - HEAP32[$171>>2] = $168; - $172 = (($170) + 4)|0; - $173 = $172; - HEAP32[$173>>2] = $161; - $174 = HEAP8[$162>>0]|0; - $175 = $174&255; - $176 = ((($input)) + 20|0); - $177 = HEAP8[$176>>0]|0; - $178 = $177&255; - $179 = (_bitshift64Shl(($178|0),0,8)|0); - $180 = tempRet0; - $181 = $179 | $175; - $182 = ((($input)) + 21|0); - $183 = HEAP8[$182>>0]|0; - $184 = $183&255; - $185 = (_bitshift64Shl(($184|0),0,16)|0); - $186 = tempRet0; - $187 = $181 | $185; - $188 = $180 | $186; - $189 = ((($input)) + 22|0); - $190 = HEAP8[$189>>0]|0; - $191 = $190&255; - $192 = (_bitshift64Shl(($191|0),0,24)|0); - $193 = tempRet0; - $194 = $187 | $192; - $195 = $188 | $193; - $196 = (_bitshift64Lshr(($194|0),($195|0),1)|0); - $197 = tempRet0; - $198 = $196 & 67108863; - $199 = ((($output)) + 48|0); - $200 = $199; - $201 = $200; - HEAP32[$201>>2] = $198; - $202 = (($200) + 4)|0; - $203 = $202; - HEAP32[$203>>2] = 0; - $204 = HEAP8[$189>>0]|0; - $205 = $204&255; - $206 = ((($input)) + 23|0); - $207 = HEAP8[$206>>0]|0; - $208 = $207&255; - $209 = (_bitshift64Shl(($208|0),0,8)|0); - $210 = tempRet0; - $211 = $209 | $205; - $212 = ((($input)) + 24|0); - $213 = HEAP8[$212>>0]|0; - $214 = $213&255; - $215 = (_bitshift64Shl(($214|0),0,16)|0); - $216 = tempRet0; - $217 = $211 | $215; - $218 = $210 | $216; - $219 = ((($input)) + 25|0); - $220 = HEAP8[$219>>0]|0; - $221 = $220&255; - $222 = (_bitshift64Shl(($221|0),0,24)|0); - $223 = tempRet0; - $224 = $217 | $222; - $225 = $218 | $223; - $226 = (_bitshift64Lshr(($224|0),($225|0),3)|0); - $227 = tempRet0; - $228 = $226 & 33554431; - $229 = ((($output)) + 56|0); - $230 = $229; - $231 = $230; - HEAP32[$231>>2] = $228; - $232 = (($230) + 4)|0; - $233 = $232; - HEAP32[$233>>2] = 0; - $234 = HEAP8[$219>>0]|0; - $235 = $234&255; - $236 = ((($input)) + 26|0); - $237 = HEAP8[$236>>0]|0; - $238 = $237&255; - $239 = (_bitshift64Shl(($238|0),0,8)|0); - $240 = tempRet0; - $241 = $239 | $235; - $242 = ((($input)) + 27|0); - $243 = HEAP8[$242>>0]|0; - $244 = $243&255; - $245 = (_bitshift64Shl(($244|0),0,16)|0); - $246 = tempRet0; - $247 = $241 | $245; - $248 = $240 | $246; - $249 = ((($input)) + 28|0); - $250 = HEAP8[$249>>0]|0; - $251 = $250&255; - $252 = (_bitshift64Shl(($251|0),0,24)|0); - $253 = tempRet0; - $254 = $247 | $252; - $255 = $248 | $253; - $256 = (_bitshift64Lshr(($254|0),($255|0),4)|0); - $257 = tempRet0; - $258 = $256 & 67108863; - $259 = ((($output)) + 64|0); - $260 = $259; - $261 = $260; - HEAP32[$261>>2] = $258; - $262 = (($260) + 4)|0; - $263 = $262; - HEAP32[$263>>2] = 0; - $264 = HEAP8[$249>>0]|0; - $265 = $264&255; - $266 = ((($input)) + 29|0); - $267 = HEAP8[$266>>0]|0; - $268 = $267&255; - $269 = (_bitshift64Shl(($268|0),0,8)|0); - $270 = tempRet0; - $271 = $269 | $265; - $272 = ((($input)) + 30|0); - $273 = HEAP8[$272>>0]|0; - $274 = $273&255; - $275 = (_bitshift64Shl(($274|0),0,16)|0); - $276 = tempRet0; - $277 = $271 | $275; - $278 = $270 | $276; - $279 = ((($input)) + 31|0); - $280 = HEAP8[$279>>0]|0; - $281 = $280&255; - $282 = (_bitshift64Shl(($281|0),0,24)|0); - $283 = tempRet0; - $284 = $277 | $282; - $285 = $278 | $283; - $286 = (_bitshift64Lshr(($284|0),($285|0),6)|0); - $287 = tempRet0; - $288 = $286 & 33554431; - $289 = ((($output)) + 72|0); - $290 = $289; - $291 = $290; - HEAP32[$291>>2] = $288; - $292 = (($290) + 4)|0; - $293 = $292; - HEAP32[$293>>2] = 0; - return; -} -function _cmult($resultx,$resultz,$n,$q) { - $resultx = $resultx|0; - $resultz = $resultz|0; - $n = $n|0; - $q = $q|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $3 = 0, $4 = 0; - var $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $a = 0, $b = 0, $byte$09 = 0, $c = 0, $d = 0, $e = 0, $exitcond = 0, $exitcond20 = 0, $f = 0, $g = 0, $h = 0, $i$018 = 0, $j$08 = 0, $nqpqx$019 = 0, $nqpqx$110 = 0; - var $nqpqx$110$lcssa = 0, $nqpqx$110$phi = 0, $nqpqx2$014 = 0, $nqpqx2$14 = 0, $nqpqx2$14$lcssa = 0, $nqpqx2$14$phi = 0, $nqpqz$013 = 0, $nqpqz$13 = 0, $nqpqz$13$lcssa = 0, $nqpqz$13$phi = 0, $nqpqz2$015 = 0, $nqpqz2$15 = 0, $nqpqz2$15$lcssa = 0, $nqpqz2$15$phi = 0, $nqx$011 = 0, $nqx$11 = 0, $nqx$11$lcssa = 0, $nqx$11$phi = 0, $nqx2$016 = 0, $nqx2$16 = 0; - var $nqx2$16$lcssa = 0, $nqx2$16$lcssa$lcssa = 0, $nqx2$16$phi = 0, $nqz$012 = 0, $nqz$12 = 0, $nqz$12$lcssa = 0, $nqz$12$phi = 0, $nqz2$017 = 0, $nqz2$17 = 0, $nqz2$17$lcssa = 0, $nqz2$17$lcssa$lcssa = 0, $nqz2$17$phi = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 1216|0; - $a = sp + 1064|0; - $b = sp + 912|0; - $c = sp + 760|0; - $d = sp + 608|0; - $e = sp + 456|0; - $f = sp + 304|0; - $g = sp + 152|0; - $h = sp; - _memset(($a|0),0,152)|0; - _memset(($b|0),0,152)|0; - $0 = $b; - $1 = $0; - HEAP32[$1>>2] = 1; - $2 = (($0) + 4)|0; - $3 = $2; - HEAP32[$3>>2] = 0; - _memset(($c|0),0,152)|0; - $4 = $c; - $5 = $4; - HEAP32[$5>>2] = 1; - $6 = (($4) + 4)|0; - $7 = $6; - HEAP32[$7>>2] = 0; - _memset(($d|0),0,152)|0; - _memset(($e|0),0,152)|0; - _memset(($f|0),0,152)|0; - $8 = $f; - $9 = $8; - HEAP32[$9>>2] = 1; - $10 = (($8) + 4)|0; - $11 = $10; - HEAP32[$11>>2] = 0; - _memset(($g|0),0,152)|0; - _memset(($h|0),0,152)|0; - $12 = $h; - $13 = $12; - HEAP32[$13>>2] = 1; - $14 = (($12) + 4)|0; - $15 = $14; - HEAP32[$15>>2] = 0; - dest=$a; src=$q; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - $i$018 = 0;$nqpqx$019 = $a;$nqpqx2$014 = $e;$nqpqz$013 = $b;$nqpqz2$015 = $f;$nqx$011 = $c;$nqx2$016 = $g;$nqz$012 = $d;$nqz2$017 = $h; - while(1) { - $16 = (31 - ($i$018))|0; - $17 = (($n) + ($16)|0); - $18 = HEAP8[$17>>0]|0; - $byte$09 = $18;$j$08 = 0;$nqpqx$110 = $nqpqx$019;$nqpqx2$14 = $nqpqx2$014;$nqpqz$13 = $nqpqz$013;$nqpqz2$15 = $nqpqz2$015;$nqx$11 = $nqx$011;$nqx2$16 = $nqx2$016;$nqz$12 = $nqz$012;$nqz2$17 = $nqz2$017; - while(1) { - $19 = $byte$09&255; - $20 = $19 >>> 7; - _swap_conditional($nqx$11,$nqpqx$110,$20,0); - _swap_conditional($nqz$12,$nqpqz$13,$20,0); - _fmonty($nqx2$16,$nqz2$17,$nqpqx2$14,$nqpqz2$15,$nqx$11,$nqz$12,$nqpqx$110,$nqpqz$13,$q); - _swap_conditional($nqx2$16,$nqpqx2$14,$20,0); - _swap_conditional($nqz2$17,$nqpqz2$15,$20,0); - $21 = $19 << 1; - $22 = $21&255; - $23 = (($j$08) + 1)|0; - $exitcond = ($23|0)==(8); - if ($exitcond) { - $nqpqx$110$lcssa = $nqpqx$110;$nqpqx2$14$lcssa = $nqpqx2$14;$nqpqz$13$lcssa = $nqpqz$13;$nqpqz2$15$lcssa = $nqpqz2$15;$nqx$11$lcssa = $nqx$11;$nqx2$16$lcssa = $nqx2$16;$nqz$12$lcssa = $nqz$12;$nqz2$17$lcssa = $nqz2$17; - break; - } else { - $nqz2$17$phi = $nqz$12;$nqz$12$phi = $nqz2$17;$nqx2$16$phi = $nqx$11;$nqx$11$phi = $nqx2$16;$nqpqz2$15$phi = $nqpqz$13;$nqpqz$13$phi = $nqpqz2$15;$nqpqx2$14$phi = $nqpqx$110;$nqpqx$110$phi = $nqpqx2$14;$byte$09 = $22;$j$08 = $23;$nqz2$17 = $nqz2$17$phi;$nqz$12 = $nqz$12$phi;$nqx2$16 = $nqx2$16$phi;$nqx$11 = $nqx$11$phi;$nqpqz2$15 = $nqpqz2$15$phi;$nqpqz$13 = $nqpqz$13$phi;$nqpqx2$14 = $nqpqx2$14$phi;$nqpqx$110 = $nqpqx$110$phi; - } - } - $24 = (($i$018) + 1)|0; - $exitcond20 = ($24|0)==(32); - if ($exitcond20) { - $nqx2$16$lcssa$lcssa = $nqx2$16$lcssa;$nqz2$17$lcssa$lcssa = $nqz2$17$lcssa; - break; - } else { - $i$018 = $24;$nqpqx$019 = $nqpqx2$14$lcssa;$nqpqx2$014 = $nqpqx$110$lcssa;$nqpqz$013 = $nqpqz2$15$lcssa;$nqpqz2$015 = $nqpqz$13$lcssa;$nqx$011 = $nqx2$16$lcssa;$nqx2$016 = $nqx$11$lcssa;$nqz$012 = $nqz2$17$lcssa;$nqz2$017 = $nqz$12$lcssa; - } - } - dest=$resultx; src=$nqx2$16$lcssa$lcssa; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - dest=$resultz; src=$nqz2$17$lcssa$lcssa; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - STACKTOP = sp;return; -} -function _crecip($out,$z) { - $out = $out|0; - $z = $z|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $i$33 = 0, $i$42 = 0, $i$51 = 0, $t0 = 0, $t1 = 0, $z11 = 0, $z2 = 0, $z2_100_0 = 0, $z2_10_0 = 0, $z2_20_0 = 0, $z2_50_0 = 0, $z2_5_0 = 0, $z9 = 0, label = 0; - var sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 800|0; - $z2 = sp + 720|0; - $z9 = sp + 640|0; - $z11 = sp + 560|0; - $z2_5_0 = sp + 480|0; - $z2_10_0 = sp + 400|0; - $z2_20_0 = sp + 320|0; - $z2_50_0 = sp + 240|0; - $z2_100_0 = sp + 160|0; - $t0 = sp + 80|0; - $t1 = sp; - _fsquare($z2,$z); - _fsquare($t1,$z2); - _fsquare($t0,$t1); - _fmul($z9,$t0,$z); - _fmul($z11,$z9,$z2); - _fsquare($t0,$z11); - _fmul($z2_5_0,$t0,$z9); - _fsquare($t0,$z2_5_0); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fmul($z2_10_0,$t0,$z2_5_0); - _fsquare($t0,$z2_10_0); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fmul($z2_20_0,$t1,$z2_10_0); - _fsquare($t0,$z2_20_0); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fmul($t0,$t1,$z2_20_0); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fmul($z2_50_0,$t0,$z2_10_0); - _fsquare($t0,$z2_50_0); - _fsquare($t1,$t0); - $i$33 = 2; - while(1) { - _fsquare($t0,$t1); - _fsquare($t1,$t0); - $0 = (($i$33) + 2)|0; - $1 = ($0|0)<(50); - if ($1) { - $i$33 = $0; - } else { - break; - } - } - _fmul($z2_100_0,$t1,$z2_50_0); - _fsquare($t1,$z2_100_0); - _fsquare($t0,$t1); - $i$42 = 2; - while(1) { - _fsquare($t1,$t0); - _fsquare($t0,$t1); - $2 = (($i$42) + 2)|0; - $3 = ($2|0)<(100); - if ($3) { - $i$42 = $2; - } else { - break; - } - } - _fmul($t1,$t0,$z2_100_0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - $i$51 = 2; - while(1) { - _fsquare($t0,$t1); - _fsquare($t1,$t0); - $4 = (($i$51) + 2)|0; - $5 = ($4|0)<(50); - if ($5) { - $i$51 = $4; - } else { - break; - } - } - _fmul($t0,$t1,$z2_50_0); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fmul($out,$t1,$z11); - STACKTOP = sp;return; -} -function _fmul($output,$in,$in2) { - $output = $output|0; - $in = $in|0; - $in2 = $in2|0; - var $t = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 160|0; - $t = sp; - _fproduct($t,$in,$in2); - _freduce_degree($t); - _freduce_coefficients($t); - dest=$output; src=$t; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - STACKTOP = sp;return; -} -function _fcontract($output,$input_limbs) { - $output = $output|0; - $input_limbs = $input_limbs|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; - var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; - var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; - var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; - var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; - var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; - var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; - var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; - var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; - var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; - var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; - var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; - var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0; - var $422 = 0, $423 = 0, $424 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0; - var $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0; - var $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0; - var $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $exitcond = 0, $exitcond$1 = 0, $exitcond13 = 0, $exitcond13$1 = 0, $i$18 = 0, $i$18$1 = 0, $i$26 = 0, $i$26$1 = 0, $input = 0, $mask$1 = 0, $mask$1$1 = 0, $mask$1$2 = 0, $mask$1$3 = 0, $mask$1$4 = 0, $mask$1$5 = 0; - var $mask$1$6 = 0, $mask$1$7 = 0, $mask$1$8 = 0, label = 0, sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 48|0; - $input = sp; - $0 = $input_limbs; - $1 = $0; - $2 = HEAP32[$1>>2]|0; - $3 = (($0) + 4)|0; - $4 = $3; - $5 = HEAP32[$4>>2]|0; - HEAP32[$input>>2] = $2; - $6 = ((($input_limbs)) + 8|0); - $7 = $6; - $8 = $7; - $9 = HEAP32[$8>>2]|0; - $10 = (($7) + 4)|0; - $11 = $10; - $12 = HEAP32[$11>>2]|0; - $13 = ((($input)) + 4|0); - HEAP32[$13>>2] = $9; - $14 = ((($input_limbs)) + 16|0); - $15 = $14; - $16 = $15; - $17 = HEAP32[$16>>2]|0; - $18 = (($15) + 4)|0; - $19 = $18; - $20 = HEAP32[$19>>2]|0; - $21 = ((($input)) + 8|0); - HEAP32[$21>>2] = $17; - $22 = ((($input_limbs)) + 24|0); - $23 = $22; - $24 = $23; - $25 = HEAP32[$24>>2]|0; - $26 = (($23) + 4)|0; - $27 = $26; - $28 = HEAP32[$27>>2]|0; - $29 = ((($input)) + 12|0); - HEAP32[$29>>2] = $25; - $30 = ((($input_limbs)) + 32|0); - $31 = $30; - $32 = $31; - $33 = HEAP32[$32>>2]|0; - $34 = (($31) + 4)|0; - $35 = $34; - $36 = HEAP32[$35>>2]|0; - $37 = ((($input)) + 16|0); - HEAP32[$37>>2] = $33; - $38 = ((($input_limbs)) + 40|0); - $39 = $38; - $40 = $39; - $41 = HEAP32[$40>>2]|0; - $42 = (($39) + 4)|0; - $43 = $42; - $44 = HEAP32[$43>>2]|0; - $45 = ((($input)) + 20|0); - HEAP32[$45>>2] = $41; - $46 = ((($input_limbs)) + 48|0); - $47 = $46; - $48 = $47; - $49 = HEAP32[$48>>2]|0; - $50 = (($47) + 4)|0; - $51 = $50; - $52 = HEAP32[$51>>2]|0; - $53 = ((($input)) + 24|0); - HEAP32[$53>>2] = $49; - $54 = ((($input_limbs)) + 56|0); - $55 = $54; - $56 = $55; - $57 = HEAP32[$56>>2]|0; - $58 = (($55) + 4)|0; - $59 = $58; - $60 = HEAP32[$59>>2]|0; - $61 = ((($input)) + 28|0); - HEAP32[$61>>2] = $57; - $62 = ((($input_limbs)) + 64|0); - $63 = $62; - $64 = $63; - $65 = HEAP32[$64>>2]|0; - $66 = (($63) + 4)|0; - $67 = $66; - $68 = HEAP32[$67>>2]|0; - $69 = ((($input)) + 32|0); - HEAP32[$69>>2] = $65; - $70 = ((($input_limbs)) + 72|0); - $71 = $70; - $72 = $71; - $73 = HEAP32[$72>>2]|0; - $74 = (($71) + 4)|0; - $75 = $74; - $76 = HEAP32[$75>>2]|0; - $77 = ((($input)) + 36|0); - HEAP32[$77>>2] = $73; - $78 = ((($input)) + 36|0); - $i$18 = 0; - while(1) { - $79 = $i$18 & 1; - $80 = ($79|0)==(0); - $81 = (($input) + ($i$18<<2)|0); - $82 = HEAP32[$81>>2]|0; - $83 = $82 >> 31; - $84 = $83 & $82; - if ($80) { - $92 = $84 >> 26; - $93 = Math_imul($92, -67108864)|0; - $94 = (($93) + ($82))|0; - HEAP32[$81>>2] = $94; - $95 = (($i$18) + 1)|0; - $96 = (($input) + ($95<<2)|0); - $97 = HEAP32[$96>>2]|0; - $98 = (($97) + ($92))|0; - HEAP32[$96>>2] = $98; - } else { - $85 = $84 >> 25; - $86 = Math_imul($85, -33554432)|0; - $87 = (($86) + ($82))|0; - HEAP32[$81>>2] = $87; - $88 = (($i$18) + 1)|0; - $89 = (($input) + ($88<<2)|0); - $90 = HEAP32[$89>>2]|0; - $91 = (($90) + ($85))|0; - HEAP32[$89>>2] = $91; - } - $99 = (($i$18) + 1)|0; - $exitcond13 = ($99|0)==(9); - if ($exitcond13) { - break; - } else { - $i$18 = $99; - } - } - $100 = HEAP32[$78>>2]|0; - $101 = $100 >> 31; - $102 = $101 & $100; - $103 = $102 >> 25; - $104 = Math_imul($103, -33554432)|0; - $105 = (($104) + ($100))|0; - HEAP32[$78>>2] = $105; - $106 = HEAP32[$input>>2]|0; - $107 = ($103*19)|0; - $108 = (($107) + ($106))|0; - HEAP32[$input>>2] = $108; - $i$18$1 = 0; - while(1) { - $404 = $i$18$1 & 1; - $405 = ($404|0)==(0); - $406 = (($input) + ($i$18$1<<2)|0); - $407 = HEAP32[$406>>2]|0; - $408 = $407 >> 31; - $409 = $408 & $407; - if ($405) { - $417 = $409 >> 26; - $418 = Math_imul($417, -67108864)|0; - $419 = (($418) + ($407))|0; - HEAP32[$406>>2] = $419; - $420 = (($i$18$1) + 1)|0; - $421 = (($input) + ($420<<2)|0); - $422 = HEAP32[$421>>2]|0; - $423 = (($422) + ($417))|0; - HEAP32[$421>>2] = $423; - } else { - $410 = $409 >> 25; - $411 = Math_imul($410, -33554432)|0; - $412 = (($411) + ($407))|0; - HEAP32[$406>>2] = $412; - $413 = (($i$18$1) + 1)|0; - $414 = (($input) + ($413<<2)|0); - $415 = HEAP32[$414>>2]|0; - $416 = (($415) + ($410))|0; - HEAP32[$414>>2] = $416; - } - $424 = (($i$18$1) + 1)|0; - $exitcond13$1 = ($424|0)==(9); - if ($exitcond13$1) { - break; - } else { - $i$18$1 = $424; - } - } - $109 = HEAP32[$78>>2]|0; - $110 = $109 >> 31; - $111 = $110 & $109; - $112 = $111 >> 25; - $113 = Math_imul($112, -33554432)|0; - $114 = (($113) + ($109))|0; - HEAP32[$78>>2] = $114; - $115 = HEAP32[$input>>2]|0; - $116 = ($112*19)|0; - $117 = (($116) + ($115))|0; - $118 = $117 >> 31; - $119 = $118 & $117; - $120 = $119 >> 26; - $121 = Math_imul($120, -67108864)|0; - $122 = (($121) + ($117))|0; - HEAP32[$input>>2] = $122; - $123 = ((($input)) + 4|0); - $124 = HEAP32[$123>>2]|0; - $125 = (($120) + ($124))|0; - HEAP32[$123>>2] = $125; - $126 = ((($input)) + 36|0); - $i$26 = 0; - while(1) { - $127 = $i$26 & 1; - $128 = ($127|0)==(0); - $129 = (($input) + ($i$26<<2)|0); - $130 = HEAP32[$129>>2]|0; - if ($128) { - $137 = $130 >> 26; - $138 = $130 & 67108863; - HEAP32[$129>>2] = $138; - $139 = (($i$26) + 1)|0; - $140 = (($input) + ($139<<2)|0); - $141 = HEAP32[$140>>2]|0; - $142 = (($141) + ($137))|0; - HEAP32[$140>>2] = $142; - } else { - $131 = $130 >> 25; - $132 = $130 & 33554431; - HEAP32[$129>>2] = $132; - $133 = (($i$26) + 1)|0; - $134 = (($input) + ($133<<2)|0); - $135 = HEAP32[$134>>2]|0; - $136 = (($135) + ($131))|0; - HEAP32[$134>>2] = $136; - } - $143 = (($i$26) + 1)|0; - $exitcond = ($143|0)==(9); - if ($exitcond) { - break; - } else { - $i$26 = $143; - } - } - $144 = HEAP32[$126>>2]|0; - $145 = $144 >> 25; - $146 = $144 & 33554431; - HEAP32[$126>>2] = $146; - $147 = ($145*19)|0; - $148 = HEAP32[$input>>2]|0; - $149 = (($147) + ($148))|0; - HEAP32[$input>>2] = $149; - $i$26$1 = 0; - while(1) { - $387 = $i$26$1 & 1; - $388 = ($387|0)==(0); - $389 = (($input) + ($i$26$1<<2)|0); - $390 = HEAP32[$389>>2]|0; - if ($388) { - $397 = $390 >> 26; - $398 = $390 & 67108863; - HEAP32[$389>>2] = $398; - $399 = (($i$26$1) + 1)|0; - $400 = (($input) + ($399<<2)|0); - $401 = HEAP32[$400>>2]|0; - $402 = (($401) + ($397))|0; - HEAP32[$400>>2] = $402; - } else { - $391 = $390 >> 25; - $392 = $390 & 33554431; - HEAP32[$389>>2] = $392; - $393 = (($i$26$1) + 1)|0; - $394 = (($input) + ($393<<2)|0); - $395 = HEAP32[$394>>2]|0; - $396 = (($395) + ($391))|0; - HEAP32[$394>>2] = $396; - } - $403 = (($i$26$1) + 1)|0; - $exitcond$1 = ($403|0)==(9); - if ($exitcond$1) { - break; - } else { - $i$26$1 = $403; - } - } - $150 = HEAP32[$126>>2]|0; - $151 = $150 >> 25; - $152 = $150 & 33554431; - HEAP32[$126>>2] = $152; - $153 = ($151*19)|0; - $154 = HEAP32[$input>>2]|0; - $155 = (($153) + ($154))|0; - HEAP32[$input>>2] = $155; - $156 = (_s32_gte($155)|0); - $157 = ((($input)) + 4|0); - $158 = HEAP32[$157>>2]|0; - $159 = (_s32_eq($158,33554431)|0); - $mask$1 = $159 & $156; - $160 = ((($input)) + 8|0); - $161 = HEAP32[$160>>2]|0; - $162 = (_s32_eq($161,67108863)|0); - $mask$1$1 = $162 & $mask$1; - $163 = ((($input)) + 12|0); - $164 = HEAP32[$163>>2]|0; - $165 = (_s32_eq($164,33554431)|0); - $mask$1$2 = $165 & $mask$1$1; - $166 = ((($input)) + 16|0); - $167 = HEAP32[$166>>2]|0; - $168 = (_s32_eq($167,67108863)|0); - $mask$1$3 = $168 & $mask$1$2; - $169 = ((($input)) + 20|0); - $170 = HEAP32[$169>>2]|0; - $171 = (_s32_eq($170,33554431)|0); - $mask$1$4 = $171 & $mask$1$3; - $172 = ((($input)) + 24|0); - $173 = HEAP32[$172>>2]|0; - $174 = (_s32_eq($173,67108863)|0); - $mask$1$5 = $174 & $mask$1$4; - $175 = ((($input)) + 28|0); - $176 = HEAP32[$175>>2]|0; - $177 = (_s32_eq($176,33554431)|0); - $mask$1$6 = $177 & $mask$1$5; - $178 = ((($input)) + 32|0); - $179 = HEAP32[$178>>2]|0; - $180 = (_s32_eq($179,67108863)|0); - $mask$1$7 = $180 & $mask$1$6; - $181 = ((($input)) + 36|0); - $182 = HEAP32[$181>>2]|0; - $183 = (_s32_eq($182,33554431)|0); - $mask$1$8 = $183 & $mask$1$7; - $184 = $mask$1$8 & 67108845; - $185 = HEAP32[$input>>2]|0; - $186 = (($185) - ($184))|0; - HEAP32[$input>>2] = $186; - $187 = $mask$1$8 & 67108863; - $188 = $mask$1$8 & 33554431; - $189 = ((($input)) + 4|0); - $190 = HEAP32[$189>>2]|0; - $191 = (($190) - ($188))|0; - HEAP32[$189>>2] = $191; - $192 = ((($input)) + 8|0); - $193 = HEAP32[$192>>2]|0; - $194 = (($193) - ($187))|0; - HEAP32[$192>>2] = $194; - $195 = ((($input)) + 12|0); - $196 = HEAP32[$195>>2]|0; - $197 = (($196) - ($188))|0; - HEAP32[$195>>2] = $197; - $198 = ((($input)) + 16|0); - $199 = HEAP32[$198>>2]|0; - $200 = (($199) - ($187))|0; - HEAP32[$198>>2] = $200; - $201 = ((($input)) + 20|0); - $202 = HEAP32[$201>>2]|0; - $203 = (($202) - ($188))|0; - HEAP32[$201>>2] = $203; - $204 = ((($input)) + 24|0); - $205 = HEAP32[$204>>2]|0; - $206 = (($205) - ($187))|0; - HEAP32[$204>>2] = $206; - $207 = ((($input)) + 28|0); - $208 = HEAP32[$207>>2]|0; - $209 = (($208) - ($188))|0; - HEAP32[$207>>2] = $209; - $210 = ((($input)) + 32|0); - $211 = HEAP32[$210>>2]|0; - $212 = (($211) - ($187))|0; - HEAP32[$210>>2] = $212; - $213 = ((($input)) + 36|0); - $214 = HEAP32[$213>>2]|0; - $215 = (($214) - ($188))|0; - HEAP32[$213>>2] = $215; - $216 = HEAP32[$123>>2]|0; - $217 = $216 << 2; - HEAP32[$123>>2] = $217; - $218 = ((($input)) + 8|0); - $219 = HEAP32[$218>>2]|0; - $220 = $219 << 3; - HEAP32[$218>>2] = $220; - $221 = ((($input)) + 12|0); - $222 = HEAP32[$221>>2]|0; - $223 = $222 << 5; - HEAP32[$221>>2] = $223; - $224 = ((($input)) + 16|0); - $225 = HEAP32[$224>>2]|0; - $226 = $225 << 6; - HEAP32[$224>>2] = $226; - $227 = ((($input)) + 24|0); - $228 = HEAP32[$227>>2]|0; - $229 = $228 << 1; - HEAP32[$227>>2] = $229; - $230 = ((($input)) + 28|0); - $231 = HEAP32[$230>>2]|0; - $232 = $231 << 3; - HEAP32[$230>>2] = $232; - $233 = ((($input)) + 32|0); - $234 = HEAP32[$233>>2]|0; - $235 = $234 << 4; - HEAP32[$233>>2] = $235; - $236 = ((($input)) + 36|0); - $237 = HEAP32[$236>>2]|0; - $238 = $237 << 6; - HEAP32[$236>>2] = $238; - HEAP8[$output>>0] = 0; - $239 = ((($output)) + 16|0); - HEAP8[$239>>0] = 0; - $240 = HEAP32[$input>>2]|0; - $241 = HEAP8[$output>>0]|0; - $242 = $241&255; - $243 = $242 | $240; - $244 = $243&255; - HEAP8[$output>>0] = $244; - $245 = HEAP32[$input>>2]|0; - $246 = $245 >>> 8; - $247 = $246&255; - $248 = ((($output)) + 1|0); - HEAP8[$248>>0] = $247; - $249 = HEAP32[$input>>2]|0; - $250 = $249 >>> 16; - $251 = $250&255; - $252 = ((($output)) + 2|0); - HEAP8[$252>>0] = $251; - $253 = HEAP32[$input>>2]|0; - $254 = $253 >>> 24; - $255 = ((($output)) + 3|0); - $256 = HEAP32[$123>>2]|0; - $257 = $254 | $256; - $258 = $257&255; - HEAP8[$255>>0] = $258; - $259 = HEAP32[$123>>2]|0; - $260 = $259 >>> 8; - $261 = $260&255; - $262 = ((($output)) + 4|0); - HEAP8[$262>>0] = $261; - $263 = HEAP32[$123>>2]|0; - $264 = $263 >>> 16; - $265 = $264&255; - $266 = ((($output)) + 5|0); - HEAP8[$266>>0] = $265; - $267 = HEAP32[$123>>2]|0; - $268 = $267 >>> 24; - $269 = ((($output)) + 6|0); - $270 = HEAP32[$218>>2]|0; - $271 = $268 | $270; - $272 = $271&255; - HEAP8[$269>>0] = $272; - $273 = HEAP32[$218>>2]|0; - $274 = $273 >>> 8; - $275 = $274&255; - $276 = ((($output)) + 7|0); - HEAP8[$276>>0] = $275; - $277 = HEAP32[$218>>2]|0; - $278 = $277 >>> 16; - $279 = $278&255; - $280 = ((($output)) + 8|0); - HEAP8[$280>>0] = $279; - $281 = HEAP32[$218>>2]|0; - $282 = $281 >>> 24; - $283 = ((($output)) + 9|0); - $284 = HEAP32[$221>>2]|0; - $285 = $282 | $284; - $286 = $285&255; - HEAP8[$283>>0] = $286; - $287 = HEAP32[$221>>2]|0; - $288 = $287 >>> 8; - $289 = $288&255; - $290 = ((($output)) + 10|0); - HEAP8[$290>>0] = $289; - $291 = HEAP32[$221>>2]|0; - $292 = $291 >>> 16; - $293 = $292&255; - $294 = ((($output)) + 11|0); - HEAP8[$294>>0] = $293; - $295 = HEAP32[$221>>2]|0; - $296 = $295 >>> 24; - $297 = ((($output)) + 12|0); - $298 = HEAP32[$224>>2]|0; - $299 = $296 | $298; - $300 = $299&255; - HEAP8[$297>>0] = $300; - $301 = HEAP32[$224>>2]|0; - $302 = $301 >>> 8; - $303 = $302&255; - $304 = ((($output)) + 13|0); - HEAP8[$304>>0] = $303; - $305 = HEAP32[$224>>2]|0; - $306 = $305 >>> 16; - $307 = $306&255; - $308 = ((($output)) + 14|0); - HEAP8[$308>>0] = $307; - $309 = HEAP32[$224>>2]|0; - $310 = $309 >>> 24; - $311 = $310&255; - $312 = ((($output)) + 15|0); - HEAP8[$312>>0] = $311; - $313 = ((($input)) + 20|0); - $314 = HEAP32[$313>>2]|0; - $315 = HEAP8[$239>>0]|0; - $316 = $315&255; - $317 = $316 | $314; - $318 = $317&255; - HEAP8[$239>>0] = $318; - $319 = HEAP32[$313>>2]|0; - $320 = $319 >>> 8; - $321 = $320&255; - $322 = ((($output)) + 17|0); - HEAP8[$322>>0] = $321; - $323 = HEAP32[$313>>2]|0; - $324 = $323 >>> 16; - $325 = $324&255; - $326 = ((($output)) + 18|0); - HEAP8[$326>>0] = $325; - $327 = HEAP32[$313>>2]|0; - $328 = $327 >>> 24; - $329 = ((($output)) + 19|0); - $330 = HEAP32[$227>>2]|0; - $331 = $328 | $330; - $332 = $331&255; - HEAP8[$329>>0] = $332; - $333 = HEAP32[$227>>2]|0; - $334 = $333 >>> 8; - $335 = $334&255; - $336 = ((($output)) + 20|0); - HEAP8[$336>>0] = $335; - $337 = HEAP32[$227>>2]|0; - $338 = $337 >>> 16; - $339 = $338&255; - $340 = ((($output)) + 21|0); - HEAP8[$340>>0] = $339; - $341 = HEAP32[$227>>2]|0; - $342 = $341 >>> 24; - $343 = ((($output)) + 22|0); - $344 = HEAP32[$230>>2]|0; - $345 = $342 | $344; - $346 = $345&255; - HEAP8[$343>>0] = $346; - $347 = HEAP32[$230>>2]|0; - $348 = $347 >>> 8; - $349 = $348&255; - $350 = ((($output)) + 23|0); - HEAP8[$350>>0] = $349; - $351 = HEAP32[$230>>2]|0; - $352 = $351 >>> 16; - $353 = $352&255; - $354 = ((($output)) + 24|0); - HEAP8[$354>>0] = $353; - $355 = HEAP32[$230>>2]|0; - $356 = $355 >>> 24; - $357 = ((($output)) + 25|0); - $358 = HEAP32[$233>>2]|0; - $359 = $356 | $358; - $360 = $359&255; - HEAP8[$357>>0] = $360; - $361 = HEAP32[$233>>2]|0; - $362 = $361 >>> 8; - $363 = $362&255; - $364 = ((($output)) + 26|0); - HEAP8[$364>>0] = $363; - $365 = HEAP32[$233>>2]|0; - $366 = $365 >>> 16; - $367 = $366&255; - $368 = ((($output)) + 27|0); - HEAP8[$368>>0] = $367; - $369 = HEAP32[$233>>2]|0; - $370 = $369 >>> 24; - $371 = ((($output)) + 28|0); - $372 = HEAP32[$236>>2]|0; - $373 = $370 | $372; - $374 = $373&255; - HEAP8[$371>>0] = $374; - $375 = HEAP32[$236>>2]|0; - $376 = $375 >>> 8; - $377 = $376&255; - $378 = ((($output)) + 29|0); - HEAP8[$378>>0] = $377; - $379 = HEAP32[$236>>2]|0; - $380 = $379 >>> 16; - $381 = $380&255; - $382 = ((($output)) + 30|0); - HEAP8[$382>>0] = $381; - $383 = HEAP32[$236>>2]|0; - $384 = $383 >>> 24; - $385 = $384&255; - $386 = ((($output)) + 31|0); - HEAP8[$386>>0] = $385; - STACKTOP = sp;return; -} -function _s32_gte($a) { - $a = $a|0; - var $0 = 0, $1 = 0, $2 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = (($a) + -67108845)|0; - $1 = $0 >> 31; - $2 = $1 ^ -1; - return ($2|0); -} -function _s32_eq($a,$b) { - $a = $a|0; - $b = $b|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = $a ^ -1; - $1 = $0 ^ $b; - $2 = $1 << 16; - $3 = $2 & $1; - $4 = $3 << 8; - $5 = $4 & $3; - $6 = $5 << 4; - $7 = $6 & $5; - $8 = $7 << 2; - $9 = $8 & $7; - $10 = $9 << 1; - $11 = $10 & $9; - $12 = $11 >> 31; - return ($12|0); -} -function _fproduct($output,$in2,$in) { - $output = $output|0; - $in2 = $in2|0; - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; - var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0; - var $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0; - var $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0; - var $107 = 0, $1070 = 0, $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0; - var $1088 = 0, $1089 = 0, $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0; - var $1105 = 0, $1106 = 0, $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $1119 = 0, $112 = 0, $1120 = 0, $1121 = 0, $1122 = 0; - var $1123 = 0, $1124 = 0, $1125 = 0, $1126 = 0, $1127 = 0, $1128 = 0, $1129 = 0, $113 = 0, $1130 = 0, $1131 = 0, $1132 = 0, $1133 = 0, $1134 = 0, $1135 = 0, $1136 = 0, $1137 = 0, $1138 = 0, $1139 = 0, $114 = 0, $1140 = 0; - var $1141 = 0, $1142 = 0, $1143 = 0, $1144 = 0, $1145 = 0, $1146 = 0, $1147 = 0, $1148 = 0, $1149 = 0, $115 = 0, $1150 = 0, $1151 = 0, $1152 = 0, $1153 = 0, $1154 = 0, $1155 = 0, $1156 = 0, $1157 = 0, $1158 = 0, $1159 = 0; - var $116 = 0, $1160 = 0, $1161 = 0, $1162 = 0, $1163 = 0, $1164 = 0, $1165 = 0, $1166 = 0, $1167 = 0, $1168 = 0, $1169 = 0, $117 = 0, $1170 = 0, $1171 = 0, $1172 = 0, $1173 = 0, $1174 = 0, $1175 = 0, $1176 = 0, $1177 = 0; - var $1178 = 0, $1179 = 0, $118 = 0, $1180 = 0, $1181 = 0, $1182 = 0, $1183 = 0, $1184 = 0, $1185 = 0, $1186 = 0, $1187 = 0, $1188 = 0, $1189 = 0, $119 = 0, $1190 = 0, $1191 = 0, $1192 = 0, $1193 = 0, $1194 = 0, $1195 = 0; - var $1196 = 0, $1197 = 0, $1198 = 0, $1199 = 0, $12 = 0, $120 = 0, $1200 = 0, $1201 = 0, $1202 = 0, $1203 = 0, $1204 = 0, $1205 = 0, $1206 = 0, $1207 = 0, $1208 = 0, $1209 = 0, $121 = 0, $1210 = 0, $1211 = 0, $1212 = 0; - var $1213 = 0, $1214 = 0, $1215 = 0, $1216 = 0, $1217 = 0, $1218 = 0, $1219 = 0, $122 = 0, $1220 = 0, $1221 = 0, $1222 = 0, $1223 = 0, $1224 = 0, $1225 = 0, $1226 = 0, $1227 = 0, $1228 = 0, $1229 = 0, $123 = 0, $1230 = 0; - var $1231 = 0, $1232 = 0, $1233 = 0, $1234 = 0, $1235 = 0, $1236 = 0, $1237 = 0, $1238 = 0, $1239 = 0, $124 = 0, $1240 = 0, $1241 = 0, $1242 = 0, $1243 = 0, $1244 = 0, $1245 = 0, $1246 = 0, $1247 = 0, $1248 = 0, $1249 = 0; - var $125 = 0, $1250 = 0, $1251 = 0, $1252 = 0, $1253 = 0, $1254 = 0, $1255 = 0, $1256 = 0, $1257 = 0, $1258 = 0, $1259 = 0, $126 = 0, $1260 = 0, $1261 = 0, $1262 = 0, $1263 = 0, $1264 = 0, $1265 = 0, $1266 = 0, $1267 = 0; - var $1268 = 0, $1269 = 0, $127 = 0, $1270 = 0, $1271 = 0, $1272 = 0, $1273 = 0, $1274 = 0, $1275 = 0, $1276 = 0, $1277 = 0, $1278 = 0, $1279 = 0, $128 = 0, $1280 = 0, $1281 = 0, $1282 = 0, $1283 = 0, $1284 = 0, $1285 = 0; - var $1286 = 0, $1287 = 0, $1288 = 0, $1289 = 0, $129 = 0, $1290 = 0, $1291 = 0, $1292 = 0, $1293 = 0, $1294 = 0, $1295 = 0, $1296 = 0, $1297 = 0, $1298 = 0, $1299 = 0, $13 = 0, $130 = 0, $1300 = 0, $1301 = 0, $1302 = 0; - var $1303 = 0, $1304 = 0, $1305 = 0, $1306 = 0, $1307 = 0, $1308 = 0, $1309 = 0, $131 = 0, $1310 = 0, $1311 = 0, $1312 = 0, $1313 = 0, $1314 = 0, $1315 = 0, $1316 = 0, $1317 = 0, $1318 = 0, $1319 = 0, $132 = 0, $1320 = 0; - var $1321 = 0, $1322 = 0, $1323 = 0, $1324 = 0, $1325 = 0, $1326 = 0, $1327 = 0, $1328 = 0, $1329 = 0, $133 = 0, $1330 = 0, $1331 = 0, $1332 = 0, $1333 = 0, $1334 = 0, $1335 = 0, $1336 = 0, $1337 = 0, $1338 = 0, $1339 = 0; - var $134 = 0, $1340 = 0, $1341 = 0, $1342 = 0, $1343 = 0, $1344 = 0, $1345 = 0, $1346 = 0, $1347 = 0, $1348 = 0, $1349 = 0, $135 = 0, $1350 = 0, $1351 = 0, $1352 = 0, $1353 = 0, $1354 = 0, $1355 = 0, $1356 = 0, $1357 = 0; - var $1358 = 0, $1359 = 0, $136 = 0, $1360 = 0, $1361 = 0, $1362 = 0, $1363 = 0, $1364 = 0, $1365 = 0, $1366 = 0, $1367 = 0, $1368 = 0, $1369 = 0, $137 = 0, $1370 = 0, $1371 = 0, $1372 = 0, $1373 = 0, $1374 = 0, $1375 = 0; - var $1376 = 0, $1377 = 0, $1378 = 0, $1379 = 0, $138 = 0, $1380 = 0, $1381 = 0, $1382 = 0, $1383 = 0, $1384 = 0, $1385 = 0, $1386 = 0, $1387 = 0, $1388 = 0, $1389 = 0, $139 = 0, $1390 = 0, $1391 = 0, $1392 = 0, $1393 = 0; - var $1394 = 0, $1395 = 0, $1396 = 0, $1397 = 0, $1398 = 0, $1399 = 0, $14 = 0, $140 = 0, $1400 = 0, $1401 = 0, $1402 = 0, $1403 = 0, $1404 = 0, $1405 = 0, $1406 = 0, $1407 = 0, $1408 = 0, $1409 = 0, $141 = 0, $1410 = 0; - var $1411 = 0, $1412 = 0, $1413 = 0, $1414 = 0, $1415 = 0, $1416 = 0, $1417 = 0, $1418 = 0, $1419 = 0, $142 = 0, $1420 = 0, $1421 = 0, $1422 = 0, $1423 = 0, $1424 = 0, $1425 = 0, $1426 = 0, $1427 = 0, $1428 = 0, $1429 = 0; - var $143 = 0, $1430 = 0, $1431 = 0, $1432 = 0, $1433 = 0, $1434 = 0, $1435 = 0, $1436 = 0, $1437 = 0, $1438 = 0, $1439 = 0, $144 = 0, $1440 = 0, $1441 = 0, $1442 = 0, $1443 = 0, $1444 = 0, $1445 = 0, $1446 = 0, $1447 = 0; - var $1448 = 0, $1449 = 0, $145 = 0, $1450 = 0, $1451 = 0, $1452 = 0, $1453 = 0, $1454 = 0, $1455 = 0, $1456 = 0, $1457 = 0, $1458 = 0, $1459 = 0, $146 = 0, $1460 = 0, $1461 = 0, $1462 = 0, $1463 = 0, $1464 = 0, $1465 = 0; - var $1466 = 0, $1467 = 0, $1468 = 0, $1469 = 0, $147 = 0, $1470 = 0, $1471 = 0, $1472 = 0, $1473 = 0, $1474 = 0, $1475 = 0, $1476 = 0, $1477 = 0, $1478 = 0, $1479 = 0, $148 = 0, $1480 = 0, $1481 = 0, $1482 = 0, $1483 = 0; - var $1484 = 0, $1485 = 0, $1486 = 0, $1487 = 0, $1488 = 0, $1489 = 0, $149 = 0, $1490 = 0, $1491 = 0, $1492 = 0, $1493 = 0, $1494 = 0, $1495 = 0, $1496 = 0, $1497 = 0, $1498 = 0, $1499 = 0, $15 = 0, $150 = 0, $1500 = 0; - var $1501 = 0, $1502 = 0, $1503 = 0, $1504 = 0, $1505 = 0, $1506 = 0, $1507 = 0, $1508 = 0, $1509 = 0, $151 = 0, $1510 = 0, $1511 = 0, $1512 = 0, $1513 = 0, $1514 = 0, $1515 = 0, $1516 = 0, $1517 = 0, $1518 = 0, $1519 = 0; - var $152 = 0, $1520 = 0, $1521 = 0, $1522 = 0, $1523 = 0, $1524 = 0, $1525 = 0, $1526 = 0, $1527 = 0, $1528 = 0, $1529 = 0, $153 = 0, $1530 = 0, $1531 = 0, $1532 = 0, $1533 = 0, $1534 = 0, $1535 = 0, $1536 = 0, $1537 = 0; - var $1538 = 0, $1539 = 0, $154 = 0, $1540 = 0, $1541 = 0, $1542 = 0, $1543 = 0, $1544 = 0, $1545 = 0, $1546 = 0, $1547 = 0, $1548 = 0, $1549 = 0, $155 = 0, $1550 = 0, $1551 = 0, $1552 = 0, $1553 = 0, $1554 = 0, $1555 = 0; - var $1556 = 0, $1557 = 0, $1558 = 0, $1559 = 0, $156 = 0, $1560 = 0, $1561 = 0, $1562 = 0, $1563 = 0, $1564 = 0, $1565 = 0, $1566 = 0, $1567 = 0, $1568 = 0, $1569 = 0, $157 = 0, $1570 = 0, $1571 = 0, $1572 = 0, $1573 = 0; - var $1574 = 0, $1575 = 0, $1576 = 0, $1577 = 0, $1578 = 0, $1579 = 0, $158 = 0, $1580 = 0, $1581 = 0, $1582 = 0, $1583 = 0, $1584 = 0, $1585 = 0, $1586 = 0, $1587 = 0, $1588 = 0, $1589 = 0, $159 = 0, $1590 = 0, $1591 = 0; - var $1592 = 0, $1593 = 0, $1594 = 0, $1595 = 0, $1596 = 0, $1597 = 0, $1598 = 0, $1599 = 0, $16 = 0, $160 = 0, $1600 = 0, $1601 = 0, $1602 = 0, $1603 = 0, $1604 = 0, $1605 = 0, $1606 = 0, $1607 = 0, $1608 = 0, $1609 = 0; - var $161 = 0, $1610 = 0, $1611 = 0, $1612 = 0, $1613 = 0, $1614 = 0, $1615 = 0, $1616 = 0, $1617 = 0, $1618 = 0, $1619 = 0, $162 = 0, $1620 = 0, $1621 = 0, $1622 = 0, $1623 = 0, $1624 = 0, $1625 = 0, $1626 = 0, $1627 = 0; - var $1628 = 0, $1629 = 0, $163 = 0, $1630 = 0, $1631 = 0, $1632 = 0, $1633 = 0, $1634 = 0, $1635 = 0, $1636 = 0, $1637 = 0, $1638 = 0, $1639 = 0, $164 = 0, $1640 = 0, $1641 = 0, $1642 = 0, $1643 = 0, $1644 = 0, $1645 = 0; - var $1646 = 0, $1647 = 0, $1648 = 0, $1649 = 0, $165 = 0, $1650 = 0, $1651 = 0, $1652 = 0, $1653 = 0, $1654 = 0, $1655 = 0, $1656 = 0, $1657 = 0, $1658 = 0, $1659 = 0, $166 = 0, $1660 = 0, $1661 = 0, $1662 = 0, $1663 = 0; - var $1664 = 0, $1665 = 0, $1666 = 0, $1667 = 0, $1668 = 0, $1669 = 0, $167 = 0, $1670 = 0, $1671 = 0, $1672 = 0, $1673 = 0, $1674 = 0, $1675 = 0, $1676 = 0, $1677 = 0, $1678 = 0, $1679 = 0, $168 = 0, $1680 = 0, $1681 = 0; - var $1682 = 0, $1683 = 0, $1684 = 0, $1685 = 0, $1686 = 0, $1687 = 0, $1688 = 0, $1689 = 0, $169 = 0, $1690 = 0, $1691 = 0, $1692 = 0, $1693 = 0, $1694 = 0, $1695 = 0, $1696 = 0, $1697 = 0, $1698 = 0, $1699 = 0, $17 = 0; - var $170 = 0, $1700 = 0, $1701 = 0, $1702 = 0, $1703 = 0, $1704 = 0, $1705 = 0, $1706 = 0, $1707 = 0, $1708 = 0, $1709 = 0, $171 = 0, $1710 = 0, $1711 = 0, $1712 = 0, $1713 = 0, $1714 = 0, $1715 = 0, $1716 = 0, $1717 = 0; - var $1718 = 0, $1719 = 0, $172 = 0, $1720 = 0, $1721 = 0, $1722 = 0, $1723 = 0, $1724 = 0, $1725 = 0, $1726 = 0, $1727 = 0, $1728 = 0, $1729 = 0, $173 = 0, $1730 = 0, $1731 = 0, $1732 = 0, $1733 = 0, $1734 = 0, $1735 = 0; - var $1736 = 0, $1737 = 0, $1738 = 0, $1739 = 0, $174 = 0, $1740 = 0, $1741 = 0, $1742 = 0, $1743 = 0, $1744 = 0, $1745 = 0, $1746 = 0, $1747 = 0, $1748 = 0, $1749 = 0, $175 = 0, $1750 = 0, $1751 = 0, $1752 = 0, $1753 = 0; - var $1754 = 0, $1755 = 0, $1756 = 0, $1757 = 0, $1758 = 0, $1759 = 0, $176 = 0, $1760 = 0, $1761 = 0, $1762 = 0, $1763 = 0, $1764 = 0, $1765 = 0, $1766 = 0, $1767 = 0, $1768 = 0, $1769 = 0, $177 = 0, $1770 = 0, $1771 = 0; - var $1772 = 0, $1773 = 0, $1774 = 0, $1775 = 0, $1776 = 0, $1777 = 0, $1778 = 0, $1779 = 0, $178 = 0, $1780 = 0, $1781 = 0, $1782 = 0, $1783 = 0, $1784 = 0, $1785 = 0, $1786 = 0, $1787 = 0, $1788 = 0, $1789 = 0, $179 = 0; - var $1790 = 0, $1791 = 0, $1792 = 0, $1793 = 0, $1794 = 0, $1795 = 0, $1796 = 0, $1797 = 0, $1798 = 0, $1799 = 0, $18 = 0, $180 = 0, $1800 = 0, $1801 = 0, $1802 = 0, $1803 = 0, $1804 = 0, $1805 = 0, $1806 = 0, $1807 = 0; - var $1808 = 0, $1809 = 0, $181 = 0, $1810 = 0, $1811 = 0, $1812 = 0, $1813 = 0, $1814 = 0, $1815 = 0, $1816 = 0, $1817 = 0, $1818 = 0, $1819 = 0, $182 = 0, $1820 = 0, $1821 = 0, $1822 = 0, $1823 = 0, $1824 = 0, $1825 = 0; - var $1826 = 0, $1827 = 0, $1828 = 0, $1829 = 0, $183 = 0, $1830 = 0, $1831 = 0, $1832 = 0, $1833 = 0, $1834 = 0, $1835 = 0, $1836 = 0, $1837 = 0, $1838 = 0, $1839 = 0, $184 = 0, $1840 = 0, $1841 = 0, $1842 = 0, $1843 = 0; - var $1844 = 0, $1845 = 0, $1846 = 0, $1847 = 0, $1848 = 0, $1849 = 0, $185 = 0, $1850 = 0, $1851 = 0, $1852 = 0, $1853 = 0, $1854 = 0, $1855 = 0, $1856 = 0, $1857 = 0, $1858 = 0, $1859 = 0, $186 = 0, $1860 = 0, $1861 = 0; - var $1862 = 0, $1863 = 0, $1864 = 0, $1865 = 0, $1866 = 0, $1867 = 0, $1868 = 0, $1869 = 0, $187 = 0, $1870 = 0, $1871 = 0, $1872 = 0, $1873 = 0, $1874 = 0, $1875 = 0, $1876 = 0, $1877 = 0, $1878 = 0, $1879 = 0, $188 = 0; - var $1880 = 0, $1881 = 0, $1882 = 0, $1883 = 0, $1884 = 0, $1885 = 0, $1886 = 0, $1887 = 0, $1888 = 0, $1889 = 0, $189 = 0, $1890 = 0, $1891 = 0, $1892 = 0, $1893 = 0, $1894 = 0, $1895 = 0, $1896 = 0, $1897 = 0, $1898 = 0; - var $1899 = 0, $19 = 0, $190 = 0, $1900 = 0, $1901 = 0, $1902 = 0, $1903 = 0, $1904 = 0, $1905 = 0, $1906 = 0, $1907 = 0, $1908 = 0, $1909 = 0, $191 = 0, $1910 = 0, $1911 = 0, $1912 = 0, $1913 = 0, $1914 = 0, $1915 = 0; - var $1916 = 0, $1917 = 0, $1918 = 0, $1919 = 0, $192 = 0, $1920 = 0, $1921 = 0, $1922 = 0, $1923 = 0, $1924 = 0, $1925 = 0, $1926 = 0, $1927 = 0, $1928 = 0, $1929 = 0, $193 = 0, $1930 = 0, $1931 = 0, $1932 = 0, $1933 = 0; - var $1934 = 0, $1935 = 0, $1936 = 0, $1937 = 0, $1938 = 0, $1939 = 0, $194 = 0, $1940 = 0, $1941 = 0, $1942 = 0, $1943 = 0, $1944 = 0, $1945 = 0, $1946 = 0, $1947 = 0, $1948 = 0, $1949 = 0, $195 = 0, $1950 = 0, $1951 = 0; - var $1952 = 0, $1953 = 0, $1954 = 0, $1955 = 0, $1956 = 0, $1957 = 0, $1958 = 0, $1959 = 0, $196 = 0, $1960 = 0, $1961 = 0, $1962 = 0, $1963 = 0, $1964 = 0, $1965 = 0, $1966 = 0, $1967 = 0, $1968 = 0, $1969 = 0, $197 = 0; - var $1970 = 0, $1971 = 0, $1972 = 0, $1973 = 0, $1974 = 0, $1975 = 0, $1976 = 0, $1977 = 0, $1978 = 0, $1979 = 0, $198 = 0, $1980 = 0, $1981 = 0, $1982 = 0, $1983 = 0, $1984 = 0, $1985 = 0, $1986 = 0, $1987 = 0, $1988 = 0; - var $1989 = 0, $199 = 0, $1990 = 0, $1991 = 0, $1992 = 0, $1993 = 0, $1994 = 0, $1995 = 0, $1996 = 0, $1997 = 0, $1998 = 0, $1999 = 0, $2 = 0, $20 = 0, $200 = 0, $2000 = 0, $2001 = 0, $2002 = 0, $2003 = 0, $2004 = 0; - var $2005 = 0, $2006 = 0, $2007 = 0, $2008 = 0, $2009 = 0, $201 = 0, $2010 = 0, $2011 = 0, $2012 = 0, $2013 = 0, $2014 = 0, $2015 = 0, $2016 = 0, $2017 = 0, $2018 = 0, $2019 = 0, $202 = 0, $2020 = 0, $2021 = 0, $2022 = 0; - var $2023 = 0, $2024 = 0, $2025 = 0, $2026 = 0, $2027 = 0, $2028 = 0, $2029 = 0, $203 = 0, $2030 = 0, $2031 = 0, $2032 = 0, $2033 = 0, $2034 = 0, $2035 = 0, $2036 = 0, $2037 = 0, $2038 = 0, $2039 = 0, $204 = 0, $2040 = 0; - var $2041 = 0, $2042 = 0, $2043 = 0, $2044 = 0, $2045 = 0, $2046 = 0, $2047 = 0, $2048 = 0, $2049 = 0, $205 = 0, $2050 = 0, $2051 = 0, $2052 = 0, $2053 = 0, $2054 = 0, $2055 = 0, $2056 = 0, $2057 = 0, $2058 = 0, $2059 = 0; - var $206 = 0, $2060 = 0, $2061 = 0, $2062 = 0, $2063 = 0, $2064 = 0, $2065 = 0, $2066 = 0, $2067 = 0, $2068 = 0, $2069 = 0, $207 = 0, $2070 = 0, $2071 = 0, $2072 = 0, $2073 = 0, $2074 = 0, $2075 = 0, $2076 = 0, $2077 = 0; - var $2078 = 0, $2079 = 0, $208 = 0, $2080 = 0, $2081 = 0, $2082 = 0, $2083 = 0, $2084 = 0, $2085 = 0, $2086 = 0, $2087 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0; - var $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0; - var $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0; - var $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0; - var $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0; - var $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0; - var $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0; - var $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0; - var $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0; - var $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0; - var $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0; - var $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0; - var $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0; - var $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0; - var $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0; - var $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0; - var $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0; - var $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0; - var $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0; - var $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0; - var $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0; - var $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0; - var $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0; - var $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0; - var $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0; - var $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0; - var $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0; - var $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0; - var $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0; - var $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0; - var $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0; - var $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0; - var $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0; - var $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0; - var $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0; - var $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0; - var $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0; - var $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0; - var $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0; - var $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0; - var $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0; - var $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0; - var $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0, $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0; - var $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0; - var $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = $in2; - $1 = $0; - $2 = HEAP32[$1>>2]|0; - $3 = (($0) + 4)|0; - $4 = $3; - $5 = HEAP32[$4>>2]|0; - $6 = (_bitshift64Ashr(0,($2|0),32)|0); - $7 = tempRet0; - $8 = $in; - $9 = $8; - $10 = HEAP32[$9>>2]|0; - $11 = (($8) + 4)|0; - $12 = $11; - $13 = HEAP32[$12>>2]|0; - $14 = (_bitshift64Ashr(0,($10|0),32)|0); - $15 = tempRet0; - $16 = (___muldi3(($14|0),($15|0),($6|0),($7|0))|0); - $17 = tempRet0; - $18 = $output; - $19 = $18; - HEAP32[$19>>2] = $16; - $20 = (($18) + 4)|0; - $21 = $20; - HEAP32[$21>>2] = $17; - $22 = $in2; - $23 = $22; - $24 = HEAP32[$23>>2]|0; - $25 = (($22) + 4)|0; - $26 = $25; - $27 = HEAP32[$26>>2]|0; - $28 = (_bitshift64Ashr(0,($24|0),32)|0); - $29 = tempRet0; - $30 = ((($in)) + 8|0); - $31 = $30; - $32 = $31; - $33 = HEAP32[$32>>2]|0; - $34 = (($31) + 4)|0; - $35 = $34; - $36 = HEAP32[$35>>2]|0; - $37 = (_bitshift64Ashr(0,($33|0),32)|0); - $38 = tempRet0; - $39 = (___muldi3(($37|0),($38|0),($28|0),($29|0))|0); - $40 = tempRet0; - $41 = ((($in2)) + 8|0); - $42 = $41; - $43 = $42; - $44 = HEAP32[$43>>2]|0; - $45 = (($42) + 4)|0; - $46 = $45; - $47 = HEAP32[$46>>2]|0; - $48 = (_bitshift64Ashr(0,($44|0),32)|0); - $49 = tempRet0; - $50 = $in; - $51 = $50; - $52 = HEAP32[$51>>2]|0; - $53 = (($50) + 4)|0; - $54 = $53; - $55 = HEAP32[$54>>2]|0; - $56 = (_bitshift64Ashr(0,($52|0),32)|0); - $57 = tempRet0; - $58 = (___muldi3(($56|0),($57|0),($48|0),($49|0))|0); - $59 = tempRet0; - $60 = (_i64Add(($58|0),($59|0),($39|0),($40|0))|0); - $61 = tempRet0; - $62 = ((($output)) + 8|0); - $63 = $62; - $64 = $63; - HEAP32[$64>>2] = $60; - $65 = (($63) + 4)|0; - $66 = $65; - HEAP32[$66>>2] = $61; - $67 = $41; - $68 = $67; - $69 = HEAP32[$68>>2]|0; - $70 = (($67) + 4)|0; - $71 = $70; - $72 = HEAP32[$71>>2]|0; - $73 = (_bitshift64Ashr(0,($69|0),31)|0); - $74 = tempRet0; - $75 = $30; - $76 = $75; - $77 = HEAP32[$76>>2]|0; - $78 = (($75) + 4)|0; - $79 = $78; - $80 = HEAP32[$79>>2]|0; - $81 = (_bitshift64Ashr(0,($77|0),32)|0); - $82 = tempRet0; - $83 = (___muldi3(($81|0),($82|0),($73|0),($74|0))|0); - $84 = tempRet0; - $85 = $in2; - $86 = $85; - $87 = HEAP32[$86>>2]|0; - $88 = (($85) + 4)|0; - $89 = $88; - $90 = HEAP32[$89>>2]|0; - $91 = (_bitshift64Ashr(0,($87|0),32)|0); - $92 = tempRet0; - $93 = ((($in)) + 16|0); - $94 = $93; - $95 = $94; - $96 = HEAP32[$95>>2]|0; - $97 = (($94) + 4)|0; - $98 = $97; - $99 = HEAP32[$98>>2]|0; - $100 = (_bitshift64Ashr(0,($96|0),32)|0); - $101 = tempRet0; - $102 = (___muldi3(($100|0),($101|0),($91|0),($92|0))|0); - $103 = tempRet0; - $104 = (_i64Add(($102|0),($103|0),($83|0),($84|0))|0); - $105 = tempRet0; - $106 = ((($in2)) + 16|0); - $107 = $106; - $108 = $107; - $109 = HEAP32[$108>>2]|0; - $110 = (($107) + 4)|0; - $111 = $110; - $112 = HEAP32[$111>>2]|0; - $113 = (_bitshift64Ashr(0,($109|0),32)|0); - $114 = tempRet0; - $115 = $in; - $116 = $115; - $117 = HEAP32[$116>>2]|0; - $118 = (($115) + 4)|0; - $119 = $118; - $120 = HEAP32[$119>>2]|0; - $121 = (_bitshift64Ashr(0,($117|0),32)|0); - $122 = tempRet0; - $123 = (___muldi3(($121|0),($122|0),($113|0),($114|0))|0); - $124 = tempRet0; - $125 = (_i64Add(($104|0),($105|0),($123|0),($124|0))|0); - $126 = tempRet0; - $127 = ((($output)) + 16|0); - $128 = $127; - $129 = $128; - HEAP32[$129>>2] = $125; - $130 = (($128) + 4)|0; - $131 = $130; - HEAP32[$131>>2] = $126; - $132 = $41; - $133 = $132; - $134 = HEAP32[$133>>2]|0; - $135 = (($132) + 4)|0; - $136 = $135; - $137 = HEAP32[$136>>2]|0; - $138 = (_bitshift64Ashr(0,($134|0),32)|0); - $139 = tempRet0; - $140 = $93; - $141 = $140; - $142 = HEAP32[$141>>2]|0; - $143 = (($140) + 4)|0; - $144 = $143; - $145 = HEAP32[$144>>2]|0; - $146 = (_bitshift64Ashr(0,($142|0),32)|0); - $147 = tempRet0; - $148 = (___muldi3(($146|0),($147|0),($138|0),($139|0))|0); - $149 = tempRet0; - $150 = $106; - $151 = $150; - $152 = HEAP32[$151>>2]|0; - $153 = (($150) + 4)|0; - $154 = $153; - $155 = HEAP32[$154>>2]|0; - $156 = (_bitshift64Ashr(0,($152|0),32)|0); - $157 = tempRet0; - $158 = $30; - $159 = $158; - $160 = HEAP32[$159>>2]|0; - $161 = (($158) + 4)|0; - $162 = $161; - $163 = HEAP32[$162>>2]|0; - $164 = (_bitshift64Ashr(0,($160|0),32)|0); - $165 = tempRet0; - $166 = (___muldi3(($164|0),($165|0),($156|0),($157|0))|0); - $167 = tempRet0; - $168 = (_i64Add(($166|0),($167|0),($148|0),($149|0))|0); - $169 = tempRet0; - $170 = $in2; - $171 = $170; - $172 = HEAP32[$171>>2]|0; - $173 = (($170) + 4)|0; - $174 = $173; - $175 = HEAP32[$174>>2]|0; - $176 = (_bitshift64Ashr(0,($172|0),32)|0); - $177 = tempRet0; - $178 = ((($in)) + 24|0); - $179 = $178; - $180 = $179; - $181 = HEAP32[$180>>2]|0; - $182 = (($179) + 4)|0; - $183 = $182; - $184 = HEAP32[$183>>2]|0; - $185 = (_bitshift64Ashr(0,($181|0),32)|0); - $186 = tempRet0; - $187 = (___muldi3(($185|0),($186|0),($176|0),($177|0))|0); - $188 = tempRet0; - $189 = (_i64Add(($168|0),($169|0),($187|0),($188|0))|0); - $190 = tempRet0; - $191 = ((($in2)) + 24|0); - $192 = $191; - $193 = $192; - $194 = HEAP32[$193>>2]|0; - $195 = (($192) + 4)|0; - $196 = $195; - $197 = HEAP32[$196>>2]|0; - $198 = (_bitshift64Ashr(0,($194|0),32)|0); - $199 = tempRet0; - $200 = $in; - $201 = $200; - $202 = HEAP32[$201>>2]|0; - $203 = (($200) + 4)|0; - $204 = $203; - $205 = HEAP32[$204>>2]|0; - $206 = (_bitshift64Ashr(0,($202|0),32)|0); - $207 = tempRet0; - $208 = (___muldi3(($206|0),($207|0),($198|0),($199|0))|0); - $209 = tempRet0; - $210 = (_i64Add(($189|0),($190|0),($208|0),($209|0))|0); - $211 = tempRet0; - $212 = ((($output)) + 24|0); - $213 = $212; - $214 = $213; - HEAP32[$214>>2] = $210; - $215 = (($213) + 4)|0; - $216 = $215; - HEAP32[$216>>2] = $211; - $217 = $106; - $218 = $217; - $219 = HEAP32[$218>>2]|0; - $220 = (($217) + 4)|0; - $221 = $220; - $222 = HEAP32[$221>>2]|0; - $223 = (_bitshift64Ashr(0,($219|0),32)|0); - $224 = tempRet0; - $225 = $93; - $226 = $225; - $227 = HEAP32[$226>>2]|0; - $228 = (($225) + 4)|0; - $229 = $228; - $230 = HEAP32[$229>>2]|0; - $231 = (_bitshift64Ashr(0,($227|0),32)|0); - $232 = tempRet0; - $233 = (___muldi3(($231|0),($232|0),($223|0),($224|0))|0); - $234 = tempRet0; - $235 = $41; - $236 = $235; - $237 = HEAP32[$236>>2]|0; - $238 = (($235) + 4)|0; - $239 = $238; - $240 = HEAP32[$239>>2]|0; - $241 = (_bitshift64Ashr(0,($237|0),32)|0); - $242 = tempRet0; - $243 = $178; - $244 = $243; - $245 = HEAP32[$244>>2]|0; - $246 = (($243) + 4)|0; - $247 = $246; - $248 = HEAP32[$247>>2]|0; - $249 = (_bitshift64Ashr(0,($245|0),32)|0); - $250 = tempRet0; - $251 = (___muldi3(($249|0),($250|0),($241|0),($242|0))|0); - $252 = tempRet0; - $253 = $191; - $254 = $253; - $255 = HEAP32[$254>>2]|0; - $256 = (($253) + 4)|0; - $257 = $256; - $258 = HEAP32[$257>>2]|0; - $259 = (_bitshift64Ashr(0,($255|0),32)|0); - $260 = tempRet0; - $261 = $30; - $262 = $261; - $263 = HEAP32[$262>>2]|0; - $264 = (($261) + 4)|0; - $265 = $264; - $266 = HEAP32[$265>>2]|0; - $267 = (_bitshift64Ashr(0,($263|0),32)|0); - $268 = tempRet0; - $269 = (___muldi3(($267|0),($268|0),($259|0),($260|0))|0); - $270 = tempRet0; - $271 = (_i64Add(($269|0),($270|0),($251|0),($252|0))|0); - $272 = tempRet0; - $273 = (_bitshift64Shl(($271|0),($272|0),1)|0); - $274 = tempRet0; - $275 = (_i64Add(($273|0),($274|0),($233|0),($234|0))|0); - $276 = tempRet0; - $277 = $in2; - $278 = $277; - $279 = HEAP32[$278>>2]|0; - $280 = (($277) + 4)|0; - $281 = $280; - $282 = HEAP32[$281>>2]|0; - $283 = (_bitshift64Ashr(0,($279|0),32)|0); - $284 = tempRet0; - $285 = ((($in)) + 32|0); - $286 = $285; - $287 = $286; - $288 = HEAP32[$287>>2]|0; - $289 = (($286) + 4)|0; - $290 = $289; - $291 = HEAP32[$290>>2]|0; - $292 = (_bitshift64Ashr(0,($288|0),32)|0); - $293 = tempRet0; - $294 = (___muldi3(($292|0),($293|0),($283|0),($284|0))|0); - $295 = tempRet0; - $296 = (_i64Add(($275|0),($276|0),($294|0),($295|0))|0); - $297 = tempRet0; - $298 = ((($in2)) + 32|0); - $299 = $298; - $300 = $299; - $301 = HEAP32[$300>>2]|0; - $302 = (($299) + 4)|0; - $303 = $302; - $304 = HEAP32[$303>>2]|0; - $305 = (_bitshift64Ashr(0,($301|0),32)|0); - $306 = tempRet0; - $307 = $in; - $308 = $307; - $309 = HEAP32[$308>>2]|0; - $310 = (($307) + 4)|0; - $311 = $310; - $312 = HEAP32[$311>>2]|0; - $313 = (_bitshift64Ashr(0,($309|0),32)|0); - $314 = tempRet0; - $315 = (___muldi3(($313|0),($314|0),($305|0),($306|0))|0); - $316 = tempRet0; - $317 = (_i64Add(($296|0),($297|0),($315|0),($316|0))|0); - $318 = tempRet0; - $319 = ((($output)) + 32|0); - $320 = $319; - $321 = $320; - HEAP32[$321>>2] = $317; - $322 = (($320) + 4)|0; - $323 = $322; - HEAP32[$323>>2] = $318; - $324 = $106; - $325 = $324; - $326 = HEAP32[$325>>2]|0; - $327 = (($324) + 4)|0; - $328 = $327; - $329 = HEAP32[$328>>2]|0; - $330 = (_bitshift64Ashr(0,($326|0),32)|0); - $331 = tempRet0; - $332 = $178; - $333 = $332; - $334 = HEAP32[$333>>2]|0; - $335 = (($332) + 4)|0; - $336 = $335; - $337 = HEAP32[$336>>2]|0; - $338 = (_bitshift64Ashr(0,($334|0),32)|0); - $339 = tempRet0; - $340 = (___muldi3(($338|0),($339|0),($330|0),($331|0))|0); - $341 = tempRet0; - $342 = $191; - $343 = $342; - $344 = HEAP32[$343>>2]|0; - $345 = (($342) + 4)|0; - $346 = $345; - $347 = HEAP32[$346>>2]|0; - $348 = (_bitshift64Ashr(0,($344|0),32)|0); - $349 = tempRet0; - $350 = $93; - $351 = $350; - $352 = HEAP32[$351>>2]|0; - $353 = (($350) + 4)|0; - $354 = $353; - $355 = HEAP32[$354>>2]|0; - $356 = (_bitshift64Ashr(0,($352|0),32)|0); - $357 = tempRet0; - $358 = (___muldi3(($356|0),($357|0),($348|0),($349|0))|0); - $359 = tempRet0; - $360 = (_i64Add(($358|0),($359|0),($340|0),($341|0))|0); - $361 = tempRet0; - $362 = $41; - $363 = $362; - $364 = HEAP32[$363>>2]|0; - $365 = (($362) + 4)|0; - $366 = $365; - $367 = HEAP32[$366>>2]|0; - $368 = (_bitshift64Ashr(0,($364|0),32)|0); - $369 = tempRet0; - $370 = $285; - $371 = $370; - $372 = HEAP32[$371>>2]|0; - $373 = (($370) + 4)|0; - $374 = $373; - $375 = HEAP32[$374>>2]|0; - $376 = (_bitshift64Ashr(0,($372|0),32)|0); - $377 = tempRet0; - $378 = (___muldi3(($376|0),($377|0),($368|0),($369|0))|0); - $379 = tempRet0; - $380 = (_i64Add(($360|0),($361|0),($378|0),($379|0))|0); - $381 = tempRet0; - $382 = $298; - $383 = $382; - $384 = HEAP32[$383>>2]|0; - $385 = (($382) + 4)|0; - $386 = $385; - $387 = HEAP32[$386>>2]|0; - $388 = (_bitshift64Ashr(0,($384|0),32)|0); - $389 = tempRet0; - $390 = $30; - $391 = $390; - $392 = HEAP32[$391>>2]|0; - $393 = (($390) + 4)|0; - $394 = $393; - $395 = HEAP32[$394>>2]|0; - $396 = (_bitshift64Ashr(0,($392|0),32)|0); - $397 = tempRet0; - $398 = (___muldi3(($396|0),($397|0),($388|0),($389|0))|0); - $399 = tempRet0; - $400 = (_i64Add(($380|0),($381|0),($398|0),($399|0))|0); - $401 = tempRet0; - $402 = $in2; - $403 = $402; - $404 = HEAP32[$403>>2]|0; - $405 = (($402) + 4)|0; - $406 = $405; - $407 = HEAP32[$406>>2]|0; - $408 = (_bitshift64Ashr(0,($404|0),32)|0); - $409 = tempRet0; - $410 = ((($in)) + 40|0); - $411 = $410; - $412 = $411; - $413 = HEAP32[$412>>2]|0; - $414 = (($411) + 4)|0; - $415 = $414; - $416 = HEAP32[$415>>2]|0; - $417 = (_bitshift64Ashr(0,($413|0),32)|0); - $418 = tempRet0; - $419 = (___muldi3(($417|0),($418|0),($408|0),($409|0))|0); - $420 = tempRet0; - $421 = (_i64Add(($400|0),($401|0),($419|0),($420|0))|0); - $422 = tempRet0; - $423 = ((($in2)) + 40|0); - $424 = $423; - $425 = $424; - $426 = HEAP32[$425>>2]|0; - $427 = (($424) + 4)|0; - $428 = $427; - $429 = HEAP32[$428>>2]|0; - $430 = (_bitshift64Ashr(0,($426|0),32)|0); - $431 = tempRet0; - $432 = $in; - $433 = $432; - $434 = HEAP32[$433>>2]|0; - $435 = (($432) + 4)|0; - $436 = $435; - $437 = HEAP32[$436>>2]|0; - $438 = (_bitshift64Ashr(0,($434|0),32)|0); - $439 = tempRet0; - $440 = (___muldi3(($438|0),($439|0),($430|0),($431|0))|0); - $441 = tempRet0; - $442 = (_i64Add(($421|0),($422|0),($440|0),($441|0))|0); - $443 = tempRet0; - $444 = ((($output)) + 40|0); - $445 = $444; - $446 = $445; - HEAP32[$446>>2] = $442; - $447 = (($445) + 4)|0; - $448 = $447; - HEAP32[$448>>2] = $443; - $449 = $191; - $450 = $449; - $451 = HEAP32[$450>>2]|0; - $452 = (($449) + 4)|0; - $453 = $452; - $454 = HEAP32[$453>>2]|0; - $455 = (_bitshift64Ashr(0,($451|0),32)|0); - $456 = tempRet0; - $457 = $178; - $458 = $457; - $459 = HEAP32[$458>>2]|0; - $460 = (($457) + 4)|0; - $461 = $460; - $462 = HEAP32[$461>>2]|0; - $463 = (_bitshift64Ashr(0,($459|0),32)|0); - $464 = tempRet0; - $465 = (___muldi3(($463|0),($464|0),($455|0),($456|0))|0); - $466 = tempRet0; - $467 = $41; - $468 = $467; - $469 = HEAP32[$468>>2]|0; - $470 = (($467) + 4)|0; - $471 = $470; - $472 = HEAP32[$471>>2]|0; - $473 = (_bitshift64Ashr(0,($469|0),32)|0); - $474 = tempRet0; - $475 = $410; - $476 = $475; - $477 = HEAP32[$476>>2]|0; - $478 = (($475) + 4)|0; - $479 = $478; - $480 = HEAP32[$479>>2]|0; - $481 = (_bitshift64Ashr(0,($477|0),32)|0); - $482 = tempRet0; - $483 = (___muldi3(($481|0),($482|0),($473|0),($474|0))|0); - $484 = tempRet0; - $485 = (_i64Add(($483|0),($484|0),($465|0),($466|0))|0); - $486 = tempRet0; - $487 = $423; - $488 = $487; - $489 = HEAP32[$488>>2]|0; - $490 = (($487) + 4)|0; - $491 = $490; - $492 = HEAP32[$491>>2]|0; - $493 = (_bitshift64Ashr(0,($489|0),32)|0); - $494 = tempRet0; - $495 = $30; - $496 = $495; - $497 = HEAP32[$496>>2]|0; - $498 = (($495) + 4)|0; - $499 = $498; - $500 = HEAP32[$499>>2]|0; - $501 = (_bitshift64Ashr(0,($497|0),32)|0); - $502 = tempRet0; - $503 = (___muldi3(($501|0),($502|0),($493|0),($494|0))|0); - $504 = tempRet0; - $505 = (_i64Add(($485|0),($486|0),($503|0),($504|0))|0); - $506 = tempRet0; - $507 = (_bitshift64Shl(($505|0),($506|0),1)|0); - $508 = tempRet0; - $509 = $106; - $510 = $509; - $511 = HEAP32[$510>>2]|0; - $512 = (($509) + 4)|0; - $513 = $512; - $514 = HEAP32[$513>>2]|0; - $515 = (_bitshift64Ashr(0,($511|0),32)|0); - $516 = tempRet0; - $517 = $285; - $518 = $517; - $519 = HEAP32[$518>>2]|0; - $520 = (($517) + 4)|0; - $521 = $520; - $522 = HEAP32[$521>>2]|0; - $523 = (_bitshift64Ashr(0,($519|0),32)|0); - $524 = tempRet0; - $525 = (___muldi3(($523|0),($524|0),($515|0),($516|0))|0); - $526 = tempRet0; - $527 = (_i64Add(($507|0),($508|0),($525|0),($526|0))|0); - $528 = tempRet0; - $529 = $298; - $530 = $529; - $531 = HEAP32[$530>>2]|0; - $532 = (($529) + 4)|0; - $533 = $532; - $534 = HEAP32[$533>>2]|0; - $535 = (_bitshift64Ashr(0,($531|0),32)|0); - $536 = tempRet0; - $537 = $93; - $538 = $537; - $539 = HEAP32[$538>>2]|0; - $540 = (($537) + 4)|0; - $541 = $540; - $542 = HEAP32[$541>>2]|0; - $543 = (_bitshift64Ashr(0,($539|0),32)|0); - $544 = tempRet0; - $545 = (___muldi3(($543|0),($544|0),($535|0),($536|0))|0); - $546 = tempRet0; - $547 = (_i64Add(($527|0),($528|0),($545|0),($546|0))|0); - $548 = tempRet0; - $549 = $in2; - $550 = $549; - $551 = HEAP32[$550>>2]|0; - $552 = (($549) + 4)|0; - $553 = $552; - $554 = HEAP32[$553>>2]|0; - $555 = (_bitshift64Ashr(0,($551|0),32)|0); - $556 = tempRet0; - $557 = ((($in)) + 48|0); - $558 = $557; - $559 = $558; - $560 = HEAP32[$559>>2]|0; - $561 = (($558) + 4)|0; - $562 = $561; - $563 = HEAP32[$562>>2]|0; - $564 = (_bitshift64Ashr(0,($560|0),32)|0); - $565 = tempRet0; - $566 = (___muldi3(($564|0),($565|0),($555|0),($556|0))|0); - $567 = tempRet0; - $568 = (_i64Add(($547|0),($548|0),($566|0),($567|0))|0); - $569 = tempRet0; - $570 = ((($in2)) + 48|0); - $571 = $570; - $572 = $571; - $573 = HEAP32[$572>>2]|0; - $574 = (($571) + 4)|0; - $575 = $574; - $576 = HEAP32[$575>>2]|0; - $577 = (_bitshift64Ashr(0,($573|0),32)|0); - $578 = tempRet0; - $579 = $in; - $580 = $579; - $581 = HEAP32[$580>>2]|0; - $582 = (($579) + 4)|0; - $583 = $582; - $584 = HEAP32[$583>>2]|0; - $585 = (_bitshift64Ashr(0,($581|0),32)|0); - $586 = tempRet0; - $587 = (___muldi3(($585|0),($586|0),($577|0),($578|0))|0); - $588 = tempRet0; - $589 = (_i64Add(($568|0),($569|0),($587|0),($588|0))|0); - $590 = tempRet0; - $591 = ((($output)) + 48|0); - $592 = $591; - $593 = $592; - HEAP32[$593>>2] = $589; - $594 = (($592) + 4)|0; - $595 = $594; - HEAP32[$595>>2] = $590; - $596 = $191; - $597 = $596; - $598 = HEAP32[$597>>2]|0; - $599 = (($596) + 4)|0; - $600 = $599; - $601 = HEAP32[$600>>2]|0; - $602 = (_bitshift64Ashr(0,($598|0),32)|0); - $603 = tempRet0; - $604 = $285; - $605 = $604; - $606 = HEAP32[$605>>2]|0; - $607 = (($604) + 4)|0; - $608 = $607; - $609 = HEAP32[$608>>2]|0; - $610 = (_bitshift64Ashr(0,($606|0),32)|0); - $611 = tempRet0; - $612 = (___muldi3(($610|0),($611|0),($602|0),($603|0))|0); - $613 = tempRet0; - $614 = $298; - $615 = $614; - $616 = HEAP32[$615>>2]|0; - $617 = (($614) + 4)|0; - $618 = $617; - $619 = HEAP32[$618>>2]|0; - $620 = (_bitshift64Ashr(0,($616|0),32)|0); - $621 = tempRet0; - $622 = $178; - $623 = $622; - $624 = HEAP32[$623>>2]|0; - $625 = (($622) + 4)|0; - $626 = $625; - $627 = HEAP32[$626>>2]|0; - $628 = (_bitshift64Ashr(0,($624|0),32)|0); - $629 = tempRet0; - $630 = (___muldi3(($628|0),($629|0),($620|0),($621|0))|0); - $631 = tempRet0; - $632 = (_i64Add(($630|0),($631|0),($612|0),($613|0))|0); - $633 = tempRet0; - $634 = $106; - $635 = $634; - $636 = HEAP32[$635>>2]|0; - $637 = (($634) + 4)|0; - $638 = $637; - $639 = HEAP32[$638>>2]|0; - $640 = (_bitshift64Ashr(0,($636|0),32)|0); - $641 = tempRet0; - $642 = $410; - $643 = $642; - $644 = HEAP32[$643>>2]|0; - $645 = (($642) + 4)|0; - $646 = $645; - $647 = HEAP32[$646>>2]|0; - $648 = (_bitshift64Ashr(0,($644|0),32)|0); - $649 = tempRet0; - $650 = (___muldi3(($648|0),($649|0),($640|0),($641|0))|0); - $651 = tempRet0; - $652 = (_i64Add(($632|0),($633|0),($650|0),($651|0))|0); - $653 = tempRet0; - $654 = $423; - $655 = $654; - $656 = HEAP32[$655>>2]|0; - $657 = (($654) + 4)|0; - $658 = $657; - $659 = HEAP32[$658>>2]|0; - $660 = (_bitshift64Ashr(0,($656|0),32)|0); - $661 = tempRet0; - $662 = $93; - $663 = $662; - $664 = HEAP32[$663>>2]|0; - $665 = (($662) + 4)|0; - $666 = $665; - $667 = HEAP32[$666>>2]|0; - $668 = (_bitshift64Ashr(0,($664|0),32)|0); - $669 = tempRet0; - $670 = (___muldi3(($668|0),($669|0),($660|0),($661|0))|0); - $671 = tempRet0; - $672 = (_i64Add(($652|0),($653|0),($670|0),($671|0))|0); - $673 = tempRet0; - $674 = $41; - $675 = $674; - $676 = HEAP32[$675>>2]|0; - $677 = (($674) + 4)|0; - $678 = $677; - $679 = HEAP32[$678>>2]|0; - $680 = (_bitshift64Ashr(0,($676|0),32)|0); - $681 = tempRet0; - $682 = $557; - $683 = $682; - $684 = HEAP32[$683>>2]|0; - $685 = (($682) + 4)|0; - $686 = $685; - $687 = HEAP32[$686>>2]|0; - $688 = (_bitshift64Ashr(0,($684|0),32)|0); - $689 = tempRet0; - $690 = (___muldi3(($688|0),($689|0),($680|0),($681|0))|0); - $691 = tempRet0; - $692 = (_i64Add(($672|0),($673|0),($690|0),($691|0))|0); - $693 = tempRet0; - $694 = $570; - $695 = $694; - $696 = HEAP32[$695>>2]|0; - $697 = (($694) + 4)|0; - $698 = $697; - $699 = HEAP32[$698>>2]|0; - $700 = (_bitshift64Ashr(0,($696|0),32)|0); - $701 = tempRet0; - $702 = $30; - $703 = $702; - $704 = HEAP32[$703>>2]|0; - $705 = (($702) + 4)|0; - $706 = $705; - $707 = HEAP32[$706>>2]|0; - $708 = (_bitshift64Ashr(0,($704|0),32)|0); - $709 = tempRet0; - $710 = (___muldi3(($708|0),($709|0),($700|0),($701|0))|0); - $711 = tempRet0; - $712 = (_i64Add(($692|0),($693|0),($710|0),($711|0))|0); - $713 = tempRet0; - $714 = $in2; - $715 = $714; - $716 = HEAP32[$715>>2]|0; - $717 = (($714) + 4)|0; - $718 = $717; - $719 = HEAP32[$718>>2]|0; - $720 = (_bitshift64Ashr(0,($716|0),32)|0); - $721 = tempRet0; - $722 = ((($in)) + 56|0); - $723 = $722; - $724 = $723; - $725 = HEAP32[$724>>2]|0; - $726 = (($723) + 4)|0; - $727 = $726; - $728 = HEAP32[$727>>2]|0; - $729 = (_bitshift64Ashr(0,($725|0),32)|0); - $730 = tempRet0; - $731 = (___muldi3(($729|0),($730|0),($720|0),($721|0))|0); - $732 = tempRet0; - $733 = (_i64Add(($712|0),($713|0),($731|0),($732|0))|0); - $734 = tempRet0; - $735 = ((($in2)) + 56|0); - $736 = $735; - $737 = $736; - $738 = HEAP32[$737>>2]|0; - $739 = (($736) + 4)|0; - $740 = $739; - $741 = HEAP32[$740>>2]|0; - $742 = (_bitshift64Ashr(0,($738|0),32)|0); - $743 = tempRet0; - $744 = $in; - $745 = $744; - $746 = HEAP32[$745>>2]|0; - $747 = (($744) + 4)|0; - $748 = $747; - $749 = HEAP32[$748>>2]|0; - $750 = (_bitshift64Ashr(0,($746|0),32)|0); - $751 = tempRet0; - $752 = (___muldi3(($750|0),($751|0),($742|0),($743|0))|0); - $753 = tempRet0; - $754 = (_i64Add(($733|0),($734|0),($752|0),($753|0))|0); - $755 = tempRet0; - $756 = ((($output)) + 56|0); - $757 = $756; - $758 = $757; - HEAP32[$758>>2] = $754; - $759 = (($757) + 4)|0; - $760 = $759; - HEAP32[$760>>2] = $755; - $761 = $298; - $762 = $761; - $763 = HEAP32[$762>>2]|0; - $764 = (($761) + 4)|0; - $765 = $764; - $766 = HEAP32[$765>>2]|0; - $767 = (_bitshift64Ashr(0,($763|0),32)|0); - $768 = tempRet0; - $769 = $285; - $770 = $769; - $771 = HEAP32[$770>>2]|0; - $772 = (($769) + 4)|0; - $773 = $772; - $774 = HEAP32[$773>>2]|0; - $775 = (_bitshift64Ashr(0,($771|0),32)|0); - $776 = tempRet0; - $777 = (___muldi3(($775|0),($776|0),($767|0),($768|0))|0); - $778 = tempRet0; - $779 = $191; - $780 = $779; - $781 = HEAP32[$780>>2]|0; - $782 = (($779) + 4)|0; - $783 = $782; - $784 = HEAP32[$783>>2]|0; - $785 = (_bitshift64Ashr(0,($781|0),32)|0); - $786 = tempRet0; - $787 = $410; - $788 = $787; - $789 = HEAP32[$788>>2]|0; - $790 = (($787) + 4)|0; - $791 = $790; - $792 = HEAP32[$791>>2]|0; - $793 = (_bitshift64Ashr(0,($789|0),32)|0); - $794 = tempRet0; - $795 = (___muldi3(($793|0),($794|0),($785|0),($786|0))|0); - $796 = tempRet0; - $797 = $423; - $798 = $797; - $799 = HEAP32[$798>>2]|0; - $800 = (($797) + 4)|0; - $801 = $800; - $802 = HEAP32[$801>>2]|0; - $803 = (_bitshift64Ashr(0,($799|0),32)|0); - $804 = tempRet0; - $805 = $178; - $806 = $805; - $807 = HEAP32[$806>>2]|0; - $808 = (($805) + 4)|0; - $809 = $808; - $810 = HEAP32[$809>>2]|0; - $811 = (_bitshift64Ashr(0,($807|0),32)|0); - $812 = tempRet0; - $813 = (___muldi3(($811|0),($812|0),($803|0),($804|0))|0); - $814 = tempRet0; - $815 = (_i64Add(($813|0),($814|0),($795|0),($796|0))|0); - $816 = tempRet0; - $817 = $41; - $818 = $817; - $819 = HEAP32[$818>>2]|0; - $820 = (($817) + 4)|0; - $821 = $820; - $822 = HEAP32[$821>>2]|0; - $823 = (_bitshift64Ashr(0,($819|0),32)|0); - $824 = tempRet0; - $825 = $722; - $826 = $825; - $827 = HEAP32[$826>>2]|0; - $828 = (($825) + 4)|0; - $829 = $828; - $830 = HEAP32[$829>>2]|0; - $831 = (_bitshift64Ashr(0,($827|0),32)|0); - $832 = tempRet0; - $833 = (___muldi3(($831|0),($832|0),($823|0),($824|0))|0); - $834 = tempRet0; - $835 = (_i64Add(($815|0),($816|0),($833|0),($834|0))|0); - $836 = tempRet0; - $837 = $735; - $838 = $837; - $839 = HEAP32[$838>>2]|0; - $840 = (($837) + 4)|0; - $841 = $840; - $842 = HEAP32[$841>>2]|0; - $843 = (_bitshift64Ashr(0,($839|0),32)|0); - $844 = tempRet0; - $845 = $30; - $846 = $845; - $847 = HEAP32[$846>>2]|0; - $848 = (($845) + 4)|0; - $849 = $848; - $850 = HEAP32[$849>>2]|0; - $851 = (_bitshift64Ashr(0,($847|0),32)|0); - $852 = tempRet0; - $853 = (___muldi3(($851|0),($852|0),($843|0),($844|0))|0); - $854 = tempRet0; - $855 = (_i64Add(($835|0),($836|0),($853|0),($854|0))|0); - $856 = tempRet0; - $857 = (_bitshift64Shl(($855|0),($856|0),1)|0); - $858 = tempRet0; - $859 = (_i64Add(($857|0),($858|0),($777|0),($778|0))|0); - $860 = tempRet0; - $861 = $106; - $862 = $861; - $863 = HEAP32[$862>>2]|0; - $864 = (($861) + 4)|0; - $865 = $864; - $866 = HEAP32[$865>>2]|0; - $867 = (_bitshift64Ashr(0,($863|0),32)|0); - $868 = tempRet0; - $869 = $557; - $870 = $869; - $871 = HEAP32[$870>>2]|0; - $872 = (($869) + 4)|0; - $873 = $872; - $874 = HEAP32[$873>>2]|0; - $875 = (_bitshift64Ashr(0,($871|0),32)|0); - $876 = tempRet0; - $877 = (___muldi3(($875|0),($876|0),($867|0),($868|0))|0); - $878 = tempRet0; - $879 = (_i64Add(($859|0),($860|0),($877|0),($878|0))|0); - $880 = tempRet0; - $881 = $570; - $882 = $881; - $883 = HEAP32[$882>>2]|0; - $884 = (($881) + 4)|0; - $885 = $884; - $886 = HEAP32[$885>>2]|0; - $887 = (_bitshift64Ashr(0,($883|0),32)|0); - $888 = tempRet0; - $889 = $93; - $890 = $889; - $891 = HEAP32[$890>>2]|0; - $892 = (($889) + 4)|0; - $893 = $892; - $894 = HEAP32[$893>>2]|0; - $895 = (_bitshift64Ashr(0,($891|0),32)|0); - $896 = tempRet0; - $897 = (___muldi3(($895|0),($896|0),($887|0),($888|0))|0); - $898 = tempRet0; - $899 = (_i64Add(($879|0),($880|0),($897|0),($898|0))|0); - $900 = tempRet0; - $901 = $in2; - $902 = $901; - $903 = HEAP32[$902>>2]|0; - $904 = (($901) + 4)|0; - $905 = $904; - $906 = HEAP32[$905>>2]|0; - $907 = (_bitshift64Ashr(0,($903|0),32)|0); - $908 = tempRet0; - $909 = ((($in)) + 64|0); - $910 = $909; - $911 = $910; - $912 = HEAP32[$911>>2]|0; - $913 = (($910) + 4)|0; - $914 = $913; - $915 = HEAP32[$914>>2]|0; - $916 = (_bitshift64Ashr(0,($912|0),32)|0); - $917 = tempRet0; - $918 = (___muldi3(($916|0),($917|0),($907|0),($908|0))|0); - $919 = tempRet0; - $920 = (_i64Add(($899|0),($900|0),($918|0),($919|0))|0); - $921 = tempRet0; - $922 = ((($in2)) + 64|0); - $923 = $922; - $924 = $923; - $925 = HEAP32[$924>>2]|0; - $926 = (($923) + 4)|0; - $927 = $926; - $928 = HEAP32[$927>>2]|0; - $929 = (_bitshift64Ashr(0,($925|0),32)|0); - $930 = tempRet0; - $931 = $in; - $932 = $931; - $933 = HEAP32[$932>>2]|0; - $934 = (($931) + 4)|0; - $935 = $934; - $936 = HEAP32[$935>>2]|0; - $937 = (_bitshift64Ashr(0,($933|0),32)|0); - $938 = tempRet0; - $939 = (___muldi3(($937|0),($938|0),($929|0),($930|0))|0); - $940 = tempRet0; - $941 = (_i64Add(($920|0),($921|0),($939|0),($940|0))|0); - $942 = tempRet0; - $943 = ((($output)) + 64|0); - $944 = $943; - $945 = $944; - HEAP32[$945>>2] = $941; - $946 = (($944) + 4)|0; - $947 = $946; - HEAP32[$947>>2] = $942; - $948 = $298; - $949 = $948; - $950 = HEAP32[$949>>2]|0; - $951 = (($948) + 4)|0; - $952 = $951; - $953 = HEAP32[$952>>2]|0; - $954 = (_bitshift64Ashr(0,($950|0),32)|0); - $955 = tempRet0; - $956 = $410; - $957 = $956; - $958 = HEAP32[$957>>2]|0; - $959 = (($956) + 4)|0; - $960 = $959; - $961 = HEAP32[$960>>2]|0; - $962 = (_bitshift64Ashr(0,($958|0),32)|0); - $963 = tempRet0; - $964 = (___muldi3(($962|0),($963|0),($954|0),($955|0))|0); - $965 = tempRet0; - $966 = $423; - $967 = $966; - $968 = HEAP32[$967>>2]|0; - $969 = (($966) + 4)|0; - $970 = $969; - $971 = HEAP32[$970>>2]|0; - $972 = (_bitshift64Ashr(0,($968|0),32)|0); - $973 = tempRet0; - $974 = $285; - $975 = $974; - $976 = HEAP32[$975>>2]|0; - $977 = (($974) + 4)|0; - $978 = $977; - $979 = HEAP32[$978>>2]|0; - $980 = (_bitshift64Ashr(0,($976|0),32)|0); - $981 = tempRet0; - $982 = (___muldi3(($980|0),($981|0),($972|0),($973|0))|0); - $983 = tempRet0; - $984 = (_i64Add(($982|0),($983|0),($964|0),($965|0))|0); - $985 = tempRet0; - $986 = $191; - $987 = $986; - $988 = HEAP32[$987>>2]|0; - $989 = (($986) + 4)|0; - $990 = $989; - $991 = HEAP32[$990>>2]|0; - $992 = (_bitshift64Ashr(0,($988|0),32)|0); - $993 = tempRet0; - $994 = $557; - $995 = $994; - $996 = HEAP32[$995>>2]|0; - $997 = (($994) + 4)|0; - $998 = $997; - $999 = HEAP32[$998>>2]|0; - $1000 = (_bitshift64Ashr(0,($996|0),32)|0); - $1001 = tempRet0; - $1002 = (___muldi3(($1000|0),($1001|0),($992|0),($993|0))|0); - $1003 = tempRet0; - $1004 = (_i64Add(($984|0),($985|0),($1002|0),($1003|0))|0); - $1005 = tempRet0; - $1006 = $570; - $1007 = $1006; - $1008 = HEAP32[$1007>>2]|0; - $1009 = (($1006) + 4)|0; - $1010 = $1009; - $1011 = HEAP32[$1010>>2]|0; - $1012 = (_bitshift64Ashr(0,($1008|0),32)|0); - $1013 = tempRet0; - $1014 = $178; - $1015 = $1014; - $1016 = HEAP32[$1015>>2]|0; - $1017 = (($1014) + 4)|0; - $1018 = $1017; - $1019 = HEAP32[$1018>>2]|0; - $1020 = (_bitshift64Ashr(0,($1016|0),32)|0); - $1021 = tempRet0; - $1022 = (___muldi3(($1020|0),($1021|0),($1012|0),($1013|0))|0); - $1023 = tempRet0; - $1024 = (_i64Add(($1004|0),($1005|0),($1022|0),($1023|0))|0); - $1025 = tempRet0; - $1026 = $106; - $1027 = $1026; - $1028 = HEAP32[$1027>>2]|0; - $1029 = (($1026) + 4)|0; - $1030 = $1029; - $1031 = HEAP32[$1030>>2]|0; - $1032 = (_bitshift64Ashr(0,($1028|0),32)|0); - $1033 = tempRet0; - $1034 = $722; - $1035 = $1034; - $1036 = HEAP32[$1035>>2]|0; - $1037 = (($1034) + 4)|0; - $1038 = $1037; - $1039 = HEAP32[$1038>>2]|0; - $1040 = (_bitshift64Ashr(0,($1036|0),32)|0); - $1041 = tempRet0; - $1042 = (___muldi3(($1040|0),($1041|0),($1032|0),($1033|0))|0); - $1043 = tempRet0; - $1044 = (_i64Add(($1024|0),($1025|0),($1042|0),($1043|0))|0); - $1045 = tempRet0; - $1046 = $735; - $1047 = $1046; - $1048 = HEAP32[$1047>>2]|0; - $1049 = (($1046) + 4)|0; - $1050 = $1049; - $1051 = HEAP32[$1050>>2]|0; - $1052 = (_bitshift64Ashr(0,($1048|0),32)|0); - $1053 = tempRet0; - $1054 = $93; - $1055 = $1054; - $1056 = HEAP32[$1055>>2]|0; - $1057 = (($1054) + 4)|0; - $1058 = $1057; - $1059 = HEAP32[$1058>>2]|0; - $1060 = (_bitshift64Ashr(0,($1056|0),32)|0); - $1061 = tempRet0; - $1062 = (___muldi3(($1060|0),($1061|0),($1052|0),($1053|0))|0); - $1063 = tempRet0; - $1064 = (_i64Add(($1044|0),($1045|0),($1062|0),($1063|0))|0); - $1065 = tempRet0; - $1066 = $41; - $1067 = $1066; - $1068 = HEAP32[$1067>>2]|0; - $1069 = (($1066) + 4)|0; - $1070 = $1069; - $1071 = HEAP32[$1070>>2]|0; - $1072 = (_bitshift64Ashr(0,($1068|0),32)|0); - $1073 = tempRet0; - $1074 = $909; - $1075 = $1074; - $1076 = HEAP32[$1075>>2]|0; - $1077 = (($1074) + 4)|0; - $1078 = $1077; - $1079 = HEAP32[$1078>>2]|0; - $1080 = (_bitshift64Ashr(0,($1076|0),32)|0); - $1081 = tempRet0; - $1082 = (___muldi3(($1080|0),($1081|0),($1072|0),($1073|0))|0); - $1083 = tempRet0; - $1084 = (_i64Add(($1064|0),($1065|0),($1082|0),($1083|0))|0); - $1085 = tempRet0; - $1086 = $922; - $1087 = $1086; - $1088 = HEAP32[$1087>>2]|0; - $1089 = (($1086) + 4)|0; - $1090 = $1089; - $1091 = HEAP32[$1090>>2]|0; - $1092 = (_bitshift64Ashr(0,($1088|0),32)|0); - $1093 = tempRet0; - $1094 = $30; - $1095 = $1094; - $1096 = HEAP32[$1095>>2]|0; - $1097 = (($1094) + 4)|0; - $1098 = $1097; - $1099 = HEAP32[$1098>>2]|0; - $1100 = (_bitshift64Ashr(0,($1096|0),32)|0); - $1101 = tempRet0; - $1102 = (___muldi3(($1100|0),($1101|0),($1092|0),($1093|0))|0); - $1103 = tempRet0; - $1104 = (_i64Add(($1084|0),($1085|0),($1102|0),($1103|0))|0); - $1105 = tempRet0; - $1106 = $in2; - $1107 = $1106; - $1108 = HEAP32[$1107>>2]|0; - $1109 = (($1106) + 4)|0; - $1110 = $1109; - $1111 = HEAP32[$1110>>2]|0; - $1112 = (_bitshift64Ashr(0,($1108|0),32)|0); - $1113 = tempRet0; - $1114 = ((($in)) + 72|0); - $1115 = $1114; - $1116 = $1115; - $1117 = HEAP32[$1116>>2]|0; - $1118 = (($1115) + 4)|0; - $1119 = $1118; - $1120 = HEAP32[$1119>>2]|0; - $1121 = (_bitshift64Ashr(0,($1117|0),32)|0); - $1122 = tempRet0; - $1123 = (___muldi3(($1121|0),($1122|0),($1112|0),($1113|0))|0); - $1124 = tempRet0; - $1125 = (_i64Add(($1104|0),($1105|0),($1123|0),($1124|0))|0); - $1126 = tempRet0; - $1127 = ((($in2)) + 72|0); - $1128 = $1127; - $1129 = $1128; - $1130 = HEAP32[$1129>>2]|0; - $1131 = (($1128) + 4)|0; - $1132 = $1131; - $1133 = HEAP32[$1132>>2]|0; - $1134 = (_bitshift64Ashr(0,($1130|0),32)|0); - $1135 = tempRet0; - $1136 = $in; - $1137 = $1136; - $1138 = HEAP32[$1137>>2]|0; - $1139 = (($1136) + 4)|0; - $1140 = $1139; - $1141 = HEAP32[$1140>>2]|0; - $1142 = (_bitshift64Ashr(0,($1138|0),32)|0); - $1143 = tempRet0; - $1144 = (___muldi3(($1142|0),($1143|0),($1134|0),($1135|0))|0); - $1145 = tempRet0; - $1146 = (_i64Add(($1125|0),($1126|0),($1144|0),($1145|0))|0); - $1147 = tempRet0; - $1148 = ((($output)) + 72|0); - $1149 = $1148; - $1150 = $1149; - HEAP32[$1150>>2] = $1146; - $1151 = (($1149) + 4)|0; - $1152 = $1151; - HEAP32[$1152>>2] = $1147; - $1153 = $423; - $1154 = $1153; - $1155 = HEAP32[$1154>>2]|0; - $1156 = (($1153) + 4)|0; - $1157 = $1156; - $1158 = HEAP32[$1157>>2]|0; - $1159 = (_bitshift64Ashr(0,($1155|0),32)|0); - $1160 = tempRet0; - $1161 = $410; - $1162 = $1161; - $1163 = HEAP32[$1162>>2]|0; - $1164 = (($1161) + 4)|0; - $1165 = $1164; - $1166 = HEAP32[$1165>>2]|0; - $1167 = (_bitshift64Ashr(0,($1163|0),32)|0); - $1168 = tempRet0; - $1169 = (___muldi3(($1167|0),($1168|0),($1159|0),($1160|0))|0); - $1170 = tempRet0; - $1171 = $191; - $1172 = $1171; - $1173 = HEAP32[$1172>>2]|0; - $1174 = (($1171) + 4)|0; - $1175 = $1174; - $1176 = HEAP32[$1175>>2]|0; - $1177 = (_bitshift64Ashr(0,($1173|0),32)|0); - $1178 = tempRet0; - $1179 = $722; - $1180 = $1179; - $1181 = HEAP32[$1180>>2]|0; - $1182 = (($1179) + 4)|0; - $1183 = $1182; - $1184 = HEAP32[$1183>>2]|0; - $1185 = (_bitshift64Ashr(0,($1181|0),32)|0); - $1186 = tempRet0; - $1187 = (___muldi3(($1185|0),($1186|0),($1177|0),($1178|0))|0); - $1188 = tempRet0; - $1189 = (_i64Add(($1187|0),($1188|0),($1169|0),($1170|0))|0); - $1190 = tempRet0; - $1191 = $735; - $1192 = $1191; - $1193 = HEAP32[$1192>>2]|0; - $1194 = (($1191) + 4)|0; - $1195 = $1194; - $1196 = HEAP32[$1195>>2]|0; - $1197 = (_bitshift64Ashr(0,($1193|0),32)|0); - $1198 = tempRet0; - $1199 = $178; - $1200 = $1199; - $1201 = HEAP32[$1200>>2]|0; - $1202 = (($1199) + 4)|0; - $1203 = $1202; - $1204 = HEAP32[$1203>>2]|0; - $1205 = (_bitshift64Ashr(0,($1201|0),32)|0); - $1206 = tempRet0; - $1207 = (___muldi3(($1205|0),($1206|0),($1197|0),($1198|0))|0); - $1208 = tempRet0; - $1209 = (_i64Add(($1189|0),($1190|0),($1207|0),($1208|0))|0); - $1210 = tempRet0; - $1211 = $41; - $1212 = $1211; - $1213 = HEAP32[$1212>>2]|0; - $1214 = (($1211) + 4)|0; - $1215 = $1214; - $1216 = HEAP32[$1215>>2]|0; - $1217 = (_bitshift64Ashr(0,($1213|0),32)|0); - $1218 = tempRet0; - $1219 = $1114; - $1220 = $1219; - $1221 = HEAP32[$1220>>2]|0; - $1222 = (($1219) + 4)|0; - $1223 = $1222; - $1224 = HEAP32[$1223>>2]|0; - $1225 = (_bitshift64Ashr(0,($1221|0),32)|0); - $1226 = tempRet0; - $1227 = (___muldi3(($1225|0),($1226|0),($1217|0),($1218|0))|0); - $1228 = tempRet0; - $1229 = (_i64Add(($1209|0),($1210|0),($1227|0),($1228|0))|0); - $1230 = tempRet0; - $1231 = $1127; - $1232 = $1231; - $1233 = HEAP32[$1232>>2]|0; - $1234 = (($1231) + 4)|0; - $1235 = $1234; - $1236 = HEAP32[$1235>>2]|0; - $1237 = (_bitshift64Ashr(0,($1233|0),32)|0); - $1238 = tempRet0; - $1239 = $30; - $1240 = $1239; - $1241 = HEAP32[$1240>>2]|0; - $1242 = (($1239) + 4)|0; - $1243 = $1242; - $1244 = HEAP32[$1243>>2]|0; - $1245 = (_bitshift64Ashr(0,($1241|0),32)|0); - $1246 = tempRet0; - $1247 = (___muldi3(($1245|0),($1246|0),($1237|0),($1238|0))|0); - $1248 = tempRet0; - $1249 = (_i64Add(($1229|0),($1230|0),($1247|0),($1248|0))|0); - $1250 = tempRet0; - $1251 = (_bitshift64Shl(($1249|0),($1250|0),1)|0); - $1252 = tempRet0; - $1253 = $298; - $1254 = $1253; - $1255 = HEAP32[$1254>>2]|0; - $1256 = (($1253) + 4)|0; - $1257 = $1256; - $1258 = HEAP32[$1257>>2]|0; - $1259 = (_bitshift64Ashr(0,($1255|0),32)|0); - $1260 = tempRet0; - $1261 = $557; - $1262 = $1261; - $1263 = HEAP32[$1262>>2]|0; - $1264 = (($1261) + 4)|0; - $1265 = $1264; - $1266 = HEAP32[$1265>>2]|0; - $1267 = (_bitshift64Ashr(0,($1263|0),32)|0); - $1268 = tempRet0; - $1269 = (___muldi3(($1267|0),($1268|0),($1259|0),($1260|0))|0); - $1270 = tempRet0; - $1271 = (_i64Add(($1251|0),($1252|0),($1269|0),($1270|0))|0); - $1272 = tempRet0; - $1273 = $570; - $1274 = $1273; - $1275 = HEAP32[$1274>>2]|0; - $1276 = (($1273) + 4)|0; - $1277 = $1276; - $1278 = HEAP32[$1277>>2]|0; - $1279 = (_bitshift64Ashr(0,($1275|0),32)|0); - $1280 = tempRet0; - $1281 = $285; - $1282 = $1281; - $1283 = HEAP32[$1282>>2]|0; - $1284 = (($1281) + 4)|0; - $1285 = $1284; - $1286 = HEAP32[$1285>>2]|0; - $1287 = (_bitshift64Ashr(0,($1283|0),32)|0); - $1288 = tempRet0; - $1289 = (___muldi3(($1287|0),($1288|0),($1279|0),($1280|0))|0); - $1290 = tempRet0; - $1291 = (_i64Add(($1271|0),($1272|0),($1289|0),($1290|0))|0); - $1292 = tempRet0; - $1293 = $106; - $1294 = $1293; - $1295 = HEAP32[$1294>>2]|0; - $1296 = (($1293) + 4)|0; - $1297 = $1296; - $1298 = HEAP32[$1297>>2]|0; - $1299 = (_bitshift64Ashr(0,($1295|0),32)|0); - $1300 = tempRet0; - $1301 = $909; - $1302 = $1301; - $1303 = HEAP32[$1302>>2]|0; - $1304 = (($1301) + 4)|0; - $1305 = $1304; - $1306 = HEAP32[$1305>>2]|0; - $1307 = (_bitshift64Ashr(0,($1303|0),32)|0); - $1308 = tempRet0; - $1309 = (___muldi3(($1307|0),($1308|0),($1299|0),($1300|0))|0); - $1310 = tempRet0; - $1311 = (_i64Add(($1291|0),($1292|0),($1309|0),($1310|0))|0); - $1312 = tempRet0; - $1313 = $922; - $1314 = $1313; - $1315 = HEAP32[$1314>>2]|0; - $1316 = (($1313) + 4)|0; - $1317 = $1316; - $1318 = HEAP32[$1317>>2]|0; - $1319 = (_bitshift64Ashr(0,($1315|0),32)|0); - $1320 = tempRet0; - $1321 = $93; - $1322 = $1321; - $1323 = HEAP32[$1322>>2]|0; - $1324 = (($1321) + 4)|0; - $1325 = $1324; - $1326 = HEAP32[$1325>>2]|0; - $1327 = (_bitshift64Ashr(0,($1323|0),32)|0); - $1328 = tempRet0; - $1329 = (___muldi3(($1327|0),($1328|0),($1319|0),($1320|0))|0); - $1330 = tempRet0; - $1331 = (_i64Add(($1311|0),($1312|0),($1329|0),($1330|0))|0); - $1332 = tempRet0; - $1333 = ((($output)) + 80|0); - $1334 = $1333; - $1335 = $1334; - HEAP32[$1335>>2] = $1331; - $1336 = (($1334) + 4)|0; - $1337 = $1336; - HEAP32[$1337>>2] = $1332; - $1338 = $423; - $1339 = $1338; - $1340 = HEAP32[$1339>>2]|0; - $1341 = (($1338) + 4)|0; - $1342 = $1341; - $1343 = HEAP32[$1342>>2]|0; - $1344 = (_bitshift64Ashr(0,($1340|0),32)|0); - $1345 = tempRet0; - $1346 = $557; - $1347 = $1346; - $1348 = HEAP32[$1347>>2]|0; - $1349 = (($1346) + 4)|0; - $1350 = $1349; - $1351 = HEAP32[$1350>>2]|0; - $1352 = (_bitshift64Ashr(0,($1348|0),32)|0); - $1353 = tempRet0; - $1354 = (___muldi3(($1352|0),($1353|0),($1344|0),($1345|0))|0); - $1355 = tempRet0; - $1356 = $570; - $1357 = $1356; - $1358 = HEAP32[$1357>>2]|0; - $1359 = (($1356) + 4)|0; - $1360 = $1359; - $1361 = HEAP32[$1360>>2]|0; - $1362 = (_bitshift64Ashr(0,($1358|0),32)|0); - $1363 = tempRet0; - $1364 = $410; - $1365 = $1364; - $1366 = HEAP32[$1365>>2]|0; - $1367 = (($1364) + 4)|0; - $1368 = $1367; - $1369 = HEAP32[$1368>>2]|0; - $1370 = (_bitshift64Ashr(0,($1366|0),32)|0); - $1371 = tempRet0; - $1372 = (___muldi3(($1370|0),($1371|0),($1362|0),($1363|0))|0); - $1373 = tempRet0; - $1374 = (_i64Add(($1372|0),($1373|0),($1354|0),($1355|0))|0); - $1375 = tempRet0; - $1376 = $298; - $1377 = $1376; - $1378 = HEAP32[$1377>>2]|0; - $1379 = (($1376) + 4)|0; - $1380 = $1379; - $1381 = HEAP32[$1380>>2]|0; - $1382 = (_bitshift64Ashr(0,($1378|0),32)|0); - $1383 = tempRet0; - $1384 = $722; - $1385 = $1384; - $1386 = HEAP32[$1385>>2]|0; - $1387 = (($1384) + 4)|0; - $1388 = $1387; - $1389 = HEAP32[$1388>>2]|0; - $1390 = (_bitshift64Ashr(0,($1386|0),32)|0); - $1391 = tempRet0; - $1392 = (___muldi3(($1390|0),($1391|0),($1382|0),($1383|0))|0); - $1393 = tempRet0; - $1394 = (_i64Add(($1374|0),($1375|0),($1392|0),($1393|0))|0); - $1395 = tempRet0; - $1396 = $735; - $1397 = $1396; - $1398 = HEAP32[$1397>>2]|0; - $1399 = (($1396) + 4)|0; - $1400 = $1399; - $1401 = HEAP32[$1400>>2]|0; - $1402 = (_bitshift64Ashr(0,($1398|0),32)|0); - $1403 = tempRet0; - $1404 = $285; - $1405 = $1404; - $1406 = HEAP32[$1405>>2]|0; - $1407 = (($1404) + 4)|0; - $1408 = $1407; - $1409 = HEAP32[$1408>>2]|0; - $1410 = (_bitshift64Ashr(0,($1406|0),32)|0); - $1411 = tempRet0; - $1412 = (___muldi3(($1410|0),($1411|0),($1402|0),($1403|0))|0); - $1413 = tempRet0; - $1414 = (_i64Add(($1394|0),($1395|0),($1412|0),($1413|0))|0); - $1415 = tempRet0; - $1416 = $191; - $1417 = $1416; - $1418 = HEAP32[$1417>>2]|0; - $1419 = (($1416) + 4)|0; - $1420 = $1419; - $1421 = HEAP32[$1420>>2]|0; - $1422 = (_bitshift64Ashr(0,($1418|0),32)|0); - $1423 = tempRet0; - $1424 = $909; - $1425 = $1424; - $1426 = HEAP32[$1425>>2]|0; - $1427 = (($1424) + 4)|0; - $1428 = $1427; - $1429 = HEAP32[$1428>>2]|0; - $1430 = (_bitshift64Ashr(0,($1426|0),32)|0); - $1431 = tempRet0; - $1432 = (___muldi3(($1430|0),($1431|0),($1422|0),($1423|0))|0); - $1433 = tempRet0; - $1434 = (_i64Add(($1414|0),($1415|0),($1432|0),($1433|0))|0); - $1435 = tempRet0; - $1436 = $922; - $1437 = $1436; - $1438 = HEAP32[$1437>>2]|0; - $1439 = (($1436) + 4)|0; - $1440 = $1439; - $1441 = HEAP32[$1440>>2]|0; - $1442 = (_bitshift64Ashr(0,($1438|0),32)|0); - $1443 = tempRet0; - $1444 = $178; - $1445 = $1444; - $1446 = HEAP32[$1445>>2]|0; - $1447 = (($1444) + 4)|0; - $1448 = $1447; - $1449 = HEAP32[$1448>>2]|0; - $1450 = (_bitshift64Ashr(0,($1446|0),32)|0); - $1451 = tempRet0; - $1452 = (___muldi3(($1450|0),($1451|0),($1442|0),($1443|0))|0); - $1453 = tempRet0; - $1454 = (_i64Add(($1434|0),($1435|0),($1452|0),($1453|0))|0); - $1455 = tempRet0; - $1456 = $106; - $1457 = $1456; - $1458 = HEAP32[$1457>>2]|0; - $1459 = (($1456) + 4)|0; - $1460 = $1459; - $1461 = HEAP32[$1460>>2]|0; - $1462 = (_bitshift64Ashr(0,($1458|0),32)|0); - $1463 = tempRet0; - $1464 = $1114; - $1465 = $1464; - $1466 = HEAP32[$1465>>2]|0; - $1467 = (($1464) + 4)|0; - $1468 = $1467; - $1469 = HEAP32[$1468>>2]|0; - $1470 = (_bitshift64Ashr(0,($1466|0),32)|0); - $1471 = tempRet0; - $1472 = (___muldi3(($1470|0),($1471|0),($1462|0),($1463|0))|0); - $1473 = tempRet0; - $1474 = (_i64Add(($1454|0),($1455|0),($1472|0),($1473|0))|0); - $1475 = tempRet0; - $1476 = $1127; - $1477 = $1476; - $1478 = HEAP32[$1477>>2]|0; - $1479 = (($1476) + 4)|0; - $1480 = $1479; - $1481 = HEAP32[$1480>>2]|0; - $1482 = (_bitshift64Ashr(0,($1478|0),32)|0); - $1483 = tempRet0; - $1484 = $93; - $1485 = $1484; - $1486 = HEAP32[$1485>>2]|0; - $1487 = (($1484) + 4)|0; - $1488 = $1487; - $1489 = HEAP32[$1488>>2]|0; - $1490 = (_bitshift64Ashr(0,($1486|0),32)|0); - $1491 = tempRet0; - $1492 = (___muldi3(($1490|0),($1491|0),($1482|0),($1483|0))|0); - $1493 = tempRet0; - $1494 = (_i64Add(($1474|0),($1475|0),($1492|0),($1493|0))|0); - $1495 = tempRet0; - $1496 = ((($output)) + 88|0); - $1497 = $1496; - $1498 = $1497; - HEAP32[$1498>>2] = $1494; - $1499 = (($1497) + 4)|0; - $1500 = $1499; - HEAP32[$1500>>2] = $1495; - $1501 = $570; - $1502 = $1501; - $1503 = HEAP32[$1502>>2]|0; - $1504 = (($1501) + 4)|0; - $1505 = $1504; - $1506 = HEAP32[$1505>>2]|0; - $1507 = (_bitshift64Ashr(0,($1503|0),32)|0); - $1508 = tempRet0; - $1509 = $557; - $1510 = $1509; - $1511 = HEAP32[$1510>>2]|0; - $1512 = (($1509) + 4)|0; - $1513 = $1512; - $1514 = HEAP32[$1513>>2]|0; - $1515 = (_bitshift64Ashr(0,($1511|0),32)|0); - $1516 = tempRet0; - $1517 = (___muldi3(($1515|0),($1516|0),($1507|0),($1508|0))|0); - $1518 = tempRet0; - $1519 = $423; - $1520 = $1519; - $1521 = HEAP32[$1520>>2]|0; - $1522 = (($1519) + 4)|0; - $1523 = $1522; - $1524 = HEAP32[$1523>>2]|0; - $1525 = (_bitshift64Ashr(0,($1521|0),32)|0); - $1526 = tempRet0; - $1527 = $722; - $1528 = $1527; - $1529 = HEAP32[$1528>>2]|0; - $1530 = (($1527) + 4)|0; - $1531 = $1530; - $1532 = HEAP32[$1531>>2]|0; - $1533 = (_bitshift64Ashr(0,($1529|0),32)|0); - $1534 = tempRet0; - $1535 = (___muldi3(($1533|0),($1534|0),($1525|0),($1526|0))|0); - $1536 = tempRet0; - $1537 = $735; - $1538 = $1537; - $1539 = HEAP32[$1538>>2]|0; - $1540 = (($1537) + 4)|0; - $1541 = $1540; - $1542 = HEAP32[$1541>>2]|0; - $1543 = (_bitshift64Ashr(0,($1539|0),32)|0); - $1544 = tempRet0; - $1545 = $410; - $1546 = $1545; - $1547 = HEAP32[$1546>>2]|0; - $1548 = (($1545) + 4)|0; - $1549 = $1548; - $1550 = HEAP32[$1549>>2]|0; - $1551 = (_bitshift64Ashr(0,($1547|0),32)|0); - $1552 = tempRet0; - $1553 = (___muldi3(($1551|0),($1552|0),($1543|0),($1544|0))|0); - $1554 = tempRet0; - $1555 = (_i64Add(($1553|0),($1554|0),($1535|0),($1536|0))|0); - $1556 = tempRet0; - $1557 = $191; - $1558 = $1557; - $1559 = HEAP32[$1558>>2]|0; - $1560 = (($1557) + 4)|0; - $1561 = $1560; - $1562 = HEAP32[$1561>>2]|0; - $1563 = (_bitshift64Ashr(0,($1559|0),32)|0); - $1564 = tempRet0; - $1565 = $1114; - $1566 = $1565; - $1567 = HEAP32[$1566>>2]|0; - $1568 = (($1565) + 4)|0; - $1569 = $1568; - $1570 = HEAP32[$1569>>2]|0; - $1571 = (_bitshift64Ashr(0,($1567|0),32)|0); - $1572 = tempRet0; - $1573 = (___muldi3(($1571|0),($1572|0),($1563|0),($1564|0))|0); - $1574 = tempRet0; - $1575 = (_i64Add(($1555|0),($1556|0),($1573|0),($1574|0))|0); - $1576 = tempRet0; - $1577 = $1127; - $1578 = $1577; - $1579 = HEAP32[$1578>>2]|0; - $1580 = (($1577) + 4)|0; - $1581 = $1580; - $1582 = HEAP32[$1581>>2]|0; - $1583 = (_bitshift64Ashr(0,($1579|0),32)|0); - $1584 = tempRet0; - $1585 = $178; - $1586 = $1585; - $1587 = HEAP32[$1586>>2]|0; - $1588 = (($1585) + 4)|0; - $1589 = $1588; - $1590 = HEAP32[$1589>>2]|0; - $1591 = (_bitshift64Ashr(0,($1587|0),32)|0); - $1592 = tempRet0; - $1593 = (___muldi3(($1591|0),($1592|0),($1583|0),($1584|0))|0); - $1594 = tempRet0; - $1595 = (_i64Add(($1575|0),($1576|0),($1593|0),($1594|0))|0); - $1596 = tempRet0; - $1597 = (_bitshift64Shl(($1595|0),($1596|0),1)|0); - $1598 = tempRet0; - $1599 = (_i64Add(($1597|0),($1598|0),($1517|0),($1518|0))|0); - $1600 = tempRet0; - $1601 = $298; - $1602 = $1601; - $1603 = HEAP32[$1602>>2]|0; - $1604 = (($1601) + 4)|0; - $1605 = $1604; - $1606 = HEAP32[$1605>>2]|0; - $1607 = (_bitshift64Ashr(0,($1603|0),32)|0); - $1608 = tempRet0; - $1609 = $909; - $1610 = $1609; - $1611 = HEAP32[$1610>>2]|0; - $1612 = (($1609) + 4)|0; - $1613 = $1612; - $1614 = HEAP32[$1613>>2]|0; - $1615 = (_bitshift64Ashr(0,($1611|0),32)|0); - $1616 = tempRet0; - $1617 = (___muldi3(($1615|0),($1616|0),($1607|0),($1608|0))|0); - $1618 = tempRet0; - $1619 = (_i64Add(($1599|0),($1600|0),($1617|0),($1618|0))|0); - $1620 = tempRet0; - $1621 = $922; - $1622 = $1621; - $1623 = HEAP32[$1622>>2]|0; - $1624 = (($1621) + 4)|0; - $1625 = $1624; - $1626 = HEAP32[$1625>>2]|0; - $1627 = (_bitshift64Ashr(0,($1623|0),32)|0); - $1628 = tempRet0; - $1629 = $285; - $1630 = $1629; - $1631 = HEAP32[$1630>>2]|0; - $1632 = (($1629) + 4)|0; - $1633 = $1632; - $1634 = HEAP32[$1633>>2]|0; - $1635 = (_bitshift64Ashr(0,($1631|0),32)|0); - $1636 = tempRet0; - $1637 = (___muldi3(($1635|0),($1636|0),($1627|0),($1628|0))|0); - $1638 = tempRet0; - $1639 = (_i64Add(($1619|0),($1620|0),($1637|0),($1638|0))|0); - $1640 = tempRet0; - $1641 = ((($output)) + 96|0); - $1642 = $1641; - $1643 = $1642; - HEAP32[$1643>>2] = $1639; - $1644 = (($1642) + 4)|0; - $1645 = $1644; - HEAP32[$1645>>2] = $1640; - $1646 = $570; - $1647 = $1646; - $1648 = HEAP32[$1647>>2]|0; - $1649 = (($1646) + 4)|0; - $1650 = $1649; - $1651 = HEAP32[$1650>>2]|0; - $1652 = (_bitshift64Ashr(0,($1648|0),32)|0); - $1653 = tempRet0; - $1654 = $722; - $1655 = $1654; - $1656 = HEAP32[$1655>>2]|0; - $1657 = (($1654) + 4)|0; - $1658 = $1657; - $1659 = HEAP32[$1658>>2]|0; - $1660 = (_bitshift64Ashr(0,($1656|0),32)|0); - $1661 = tempRet0; - $1662 = (___muldi3(($1660|0),($1661|0),($1652|0),($1653|0))|0); - $1663 = tempRet0; - $1664 = $735; - $1665 = $1664; - $1666 = HEAP32[$1665>>2]|0; - $1667 = (($1664) + 4)|0; - $1668 = $1667; - $1669 = HEAP32[$1668>>2]|0; - $1670 = (_bitshift64Ashr(0,($1666|0),32)|0); - $1671 = tempRet0; - $1672 = $557; - $1673 = $1672; - $1674 = HEAP32[$1673>>2]|0; - $1675 = (($1672) + 4)|0; - $1676 = $1675; - $1677 = HEAP32[$1676>>2]|0; - $1678 = (_bitshift64Ashr(0,($1674|0),32)|0); - $1679 = tempRet0; - $1680 = (___muldi3(($1678|0),($1679|0),($1670|0),($1671|0))|0); - $1681 = tempRet0; - $1682 = (_i64Add(($1680|0),($1681|0),($1662|0),($1663|0))|0); - $1683 = tempRet0; - $1684 = $423; - $1685 = $1684; - $1686 = HEAP32[$1685>>2]|0; - $1687 = (($1684) + 4)|0; - $1688 = $1687; - $1689 = HEAP32[$1688>>2]|0; - $1690 = (_bitshift64Ashr(0,($1686|0),32)|0); - $1691 = tempRet0; - $1692 = $909; - $1693 = $1692; - $1694 = HEAP32[$1693>>2]|0; - $1695 = (($1692) + 4)|0; - $1696 = $1695; - $1697 = HEAP32[$1696>>2]|0; - $1698 = (_bitshift64Ashr(0,($1694|0),32)|0); - $1699 = tempRet0; - $1700 = (___muldi3(($1698|0),($1699|0),($1690|0),($1691|0))|0); - $1701 = tempRet0; - $1702 = (_i64Add(($1682|0),($1683|0),($1700|0),($1701|0))|0); - $1703 = tempRet0; - $1704 = $922; - $1705 = $1704; - $1706 = HEAP32[$1705>>2]|0; - $1707 = (($1704) + 4)|0; - $1708 = $1707; - $1709 = HEAP32[$1708>>2]|0; - $1710 = (_bitshift64Ashr(0,($1706|0),32)|0); - $1711 = tempRet0; - $1712 = $410; - $1713 = $1712; - $1714 = HEAP32[$1713>>2]|0; - $1715 = (($1712) + 4)|0; - $1716 = $1715; - $1717 = HEAP32[$1716>>2]|0; - $1718 = (_bitshift64Ashr(0,($1714|0),32)|0); - $1719 = tempRet0; - $1720 = (___muldi3(($1718|0),($1719|0),($1710|0),($1711|0))|0); - $1721 = tempRet0; - $1722 = (_i64Add(($1702|0),($1703|0),($1720|0),($1721|0))|0); - $1723 = tempRet0; - $1724 = $298; - $1725 = $1724; - $1726 = HEAP32[$1725>>2]|0; - $1727 = (($1724) + 4)|0; - $1728 = $1727; - $1729 = HEAP32[$1728>>2]|0; - $1730 = (_bitshift64Ashr(0,($1726|0),32)|0); - $1731 = tempRet0; - $1732 = $1114; - $1733 = $1732; - $1734 = HEAP32[$1733>>2]|0; - $1735 = (($1732) + 4)|0; - $1736 = $1735; - $1737 = HEAP32[$1736>>2]|0; - $1738 = (_bitshift64Ashr(0,($1734|0),32)|0); - $1739 = tempRet0; - $1740 = (___muldi3(($1738|0),($1739|0),($1730|0),($1731|0))|0); - $1741 = tempRet0; - $1742 = (_i64Add(($1722|0),($1723|0),($1740|0),($1741|0))|0); - $1743 = tempRet0; - $1744 = $1127; - $1745 = $1744; - $1746 = HEAP32[$1745>>2]|0; - $1747 = (($1744) + 4)|0; - $1748 = $1747; - $1749 = HEAP32[$1748>>2]|0; - $1750 = (_bitshift64Ashr(0,($1746|0),32)|0); - $1751 = tempRet0; - $1752 = $285; - $1753 = $1752; - $1754 = HEAP32[$1753>>2]|0; - $1755 = (($1752) + 4)|0; - $1756 = $1755; - $1757 = HEAP32[$1756>>2]|0; - $1758 = (_bitshift64Ashr(0,($1754|0),32)|0); - $1759 = tempRet0; - $1760 = (___muldi3(($1758|0),($1759|0),($1750|0),($1751|0))|0); - $1761 = tempRet0; - $1762 = (_i64Add(($1742|0),($1743|0),($1760|0),($1761|0))|0); - $1763 = tempRet0; - $1764 = ((($output)) + 104|0); - $1765 = $1764; - $1766 = $1765; - HEAP32[$1766>>2] = $1762; - $1767 = (($1765) + 4)|0; - $1768 = $1767; - HEAP32[$1768>>2] = $1763; - $1769 = $735; - $1770 = $1769; - $1771 = HEAP32[$1770>>2]|0; - $1772 = (($1769) + 4)|0; - $1773 = $1772; - $1774 = HEAP32[$1773>>2]|0; - $1775 = (_bitshift64Ashr(0,($1771|0),32)|0); - $1776 = tempRet0; - $1777 = $722; - $1778 = $1777; - $1779 = HEAP32[$1778>>2]|0; - $1780 = (($1777) + 4)|0; - $1781 = $1780; - $1782 = HEAP32[$1781>>2]|0; - $1783 = (_bitshift64Ashr(0,($1779|0),32)|0); - $1784 = tempRet0; - $1785 = (___muldi3(($1783|0),($1784|0),($1775|0),($1776|0))|0); - $1786 = tempRet0; - $1787 = $423; - $1788 = $1787; - $1789 = HEAP32[$1788>>2]|0; - $1790 = (($1787) + 4)|0; - $1791 = $1790; - $1792 = HEAP32[$1791>>2]|0; - $1793 = (_bitshift64Ashr(0,($1789|0),32)|0); - $1794 = tempRet0; - $1795 = $1114; - $1796 = $1795; - $1797 = HEAP32[$1796>>2]|0; - $1798 = (($1795) + 4)|0; - $1799 = $1798; - $1800 = HEAP32[$1799>>2]|0; - $1801 = (_bitshift64Ashr(0,($1797|0),32)|0); - $1802 = tempRet0; - $1803 = (___muldi3(($1801|0),($1802|0),($1793|0),($1794|0))|0); - $1804 = tempRet0; - $1805 = (_i64Add(($1803|0),($1804|0),($1785|0),($1786|0))|0); - $1806 = tempRet0; - $1807 = $1127; - $1808 = $1807; - $1809 = HEAP32[$1808>>2]|0; - $1810 = (($1807) + 4)|0; - $1811 = $1810; - $1812 = HEAP32[$1811>>2]|0; - $1813 = (_bitshift64Ashr(0,($1809|0),32)|0); - $1814 = tempRet0; - $1815 = $410; - $1816 = $1815; - $1817 = HEAP32[$1816>>2]|0; - $1818 = (($1815) + 4)|0; - $1819 = $1818; - $1820 = HEAP32[$1819>>2]|0; - $1821 = (_bitshift64Ashr(0,($1817|0),32)|0); - $1822 = tempRet0; - $1823 = (___muldi3(($1821|0),($1822|0),($1813|0),($1814|0))|0); - $1824 = tempRet0; - $1825 = (_i64Add(($1805|0),($1806|0),($1823|0),($1824|0))|0); - $1826 = tempRet0; - $1827 = (_bitshift64Shl(($1825|0),($1826|0),1)|0); - $1828 = tempRet0; - $1829 = $570; - $1830 = $1829; - $1831 = HEAP32[$1830>>2]|0; - $1832 = (($1829) + 4)|0; - $1833 = $1832; - $1834 = HEAP32[$1833>>2]|0; - $1835 = (_bitshift64Ashr(0,($1831|0),32)|0); - $1836 = tempRet0; - $1837 = $909; - $1838 = $1837; - $1839 = HEAP32[$1838>>2]|0; - $1840 = (($1837) + 4)|0; - $1841 = $1840; - $1842 = HEAP32[$1841>>2]|0; - $1843 = (_bitshift64Ashr(0,($1839|0),32)|0); - $1844 = tempRet0; - $1845 = (___muldi3(($1843|0),($1844|0),($1835|0),($1836|0))|0); - $1846 = tempRet0; - $1847 = (_i64Add(($1827|0),($1828|0),($1845|0),($1846|0))|0); - $1848 = tempRet0; - $1849 = $922; - $1850 = $1849; - $1851 = HEAP32[$1850>>2]|0; - $1852 = (($1849) + 4)|0; - $1853 = $1852; - $1854 = HEAP32[$1853>>2]|0; - $1855 = (_bitshift64Ashr(0,($1851|0),32)|0); - $1856 = tempRet0; - $1857 = $557; - $1858 = $1857; - $1859 = HEAP32[$1858>>2]|0; - $1860 = (($1857) + 4)|0; - $1861 = $1860; - $1862 = HEAP32[$1861>>2]|0; - $1863 = (_bitshift64Ashr(0,($1859|0),32)|0); - $1864 = tempRet0; - $1865 = (___muldi3(($1863|0),($1864|0),($1855|0),($1856|0))|0); - $1866 = tempRet0; - $1867 = (_i64Add(($1847|0),($1848|0),($1865|0),($1866|0))|0); - $1868 = tempRet0; - $1869 = ((($output)) + 112|0); - $1870 = $1869; - $1871 = $1870; - HEAP32[$1871>>2] = $1867; - $1872 = (($1870) + 4)|0; - $1873 = $1872; - HEAP32[$1873>>2] = $1868; - $1874 = $735; - $1875 = $1874; - $1876 = HEAP32[$1875>>2]|0; - $1877 = (($1874) + 4)|0; - $1878 = $1877; - $1879 = HEAP32[$1878>>2]|0; - $1880 = (_bitshift64Ashr(0,($1876|0),32)|0); - $1881 = tempRet0; - $1882 = $909; - $1883 = $1882; - $1884 = HEAP32[$1883>>2]|0; - $1885 = (($1882) + 4)|0; - $1886 = $1885; - $1887 = HEAP32[$1886>>2]|0; - $1888 = (_bitshift64Ashr(0,($1884|0),32)|0); - $1889 = tempRet0; - $1890 = (___muldi3(($1888|0),($1889|0),($1880|0),($1881|0))|0); - $1891 = tempRet0; - $1892 = $922; - $1893 = $1892; - $1894 = HEAP32[$1893>>2]|0; - $1895 = (($1892) + 4)|0; - $1896 = $1895; - $1897 = HEAP32[$1896>>2]|0; - $1898 = (_bitshift64Ashr(0,($1894|0),32)|0); - $1899 = tempRet0; - $1900 = $722; - $1901 = $1900; - $1902 = HEAP32[$1901>>2]|0; - $1903 = (($1900) + 4)|0; - $1904 = $1903; - $1905 = HEAP32[$1904>>2]|0; - $1906 = (_bitshift64Ashr(0,($1902|0),32)|0); - $1907 = tempRet0; - $1908 = (___muldi3(($1906|0),($1907|0),($1898|0),($1899|0))|0); - $1909 = tempRet0; - $1910 = (_i64Add(($1908|0),($1909|0),($1890|0),($1891|0))|0); - $1911 = tempRet0; - $1912 = $570; - $1913 = $1912; - $1914 = HEAP32[$1913>>2]|0; - $1915 = (($1912) + 4)|0; - $1916 = $1915; - $1917 = HEAP32[$1916>>2]|0; - $1918 = (_bitshift64Ashr(0,($1914|0),32)|0); - $1919 = tempRet0; - $1920 = $1114; - $1921 = $1920; - $1922 = HEAP32[$1921>>2]|0; - $1923 = (($1920) + 4)|0; - $1924 = $1923; - $1925 = HEAP32[$1924>>2]|0; - $1926 = (_bitshift64Ashr(0,($1922|0),32)|0); - $1927 = tempRet0; - $1928 = (___muldi3(($1926|0),($1927|0),($1918|0),($1919|0))|0); - $1929 = tempRet0; - $1930 = (_i64Add(($1910|0),($1911|0),($1928|0),($1929|0))|0); - $1931 = tempRet0; - $1932 = $1127; - $1933 = $1932; - $1934 = HEAP32[$1933>>2]|0; - $1935 = (($1932) + 4)|0; - $1936 = $1935; - $1937 = HEAP32[$1936>>2]|0; - $1938 = (_bitshift64Ashr(0,($1934|0),32)|0); - $1939 = tempRet0; - $1940 = $557; - $1941 = $1940; - $1942 = HEAP32[$1941>>2]|0; - $1943 = (($1940) + 4)|0; - $1944 = $1943; - $1945 = HEAP32[$1944>>2]|0; - $1946 = (_bitshift64Ashr(0,($1942|0),32)|0); - $1947 = tempRet0; - $1948 = (___muldi3(($1946|0),($1947|0),($1938|0),($1939|0))|0); - $1949 = tempRet0; - $1950 = (_i64Add(($1930|0),($1931|0),($1948|0),($1949|0))|0); - $1951 = tempRet0; - $1952 = ((($output)) + 120|0); - $1953 = $1952; - $1954 = $1953; - HEAP32[$1954>>2] = $1950; - $1955 = (($1953) + 4)|0; - $1956 = $1955; - HEAP32[$1956>>2] = $1951; - $1957 = $922; - $1958 = $1957; - $1959 = HEAP32[$1958>>2]|0; - $1960 = (($1957) + 4)|0; - $1961 = $1960; - $1962 = HEAP32[$1961>>2]|0; - $1963 = (_bitshift64Ashr(0,($1959|0),32)|0); - $1964 = tempRet0; - $1965 = $909; - $1966 = $1965; - $1967 = HEAP32[$1966>>2]|0; - $1968 = (($1965) + 4)|0; - $1969 = $1968; - $1970 = HEAP32[$1969>>2]|0; - $1971 = (_bitshift64Ashr(0,($1967|0),32)|0); - $1972 = tempRet0; - $1973 = (___muldi3(($1971|0),($1972|0),($1963|0),($1964|0))|0); - $1974 = tempRet0; - $1975 = $735; - $1976 = $1975; - $1977 = HEAP32[$1976>>2]|0; - $1978 = (($1975) + 4)|0; - $1979 = $1978; - $1980 = HEAP32[$1979>>2]|0; - $1981 = (_bitshift64Ashr(0,($1977|0),32)|0); - $1982 = tempRet0; - $1983 = $1114; - $1984 = $1983; - $1985 = HEAP32[$1984>>2]|0; - $1986 = (($1983) + 4)|0; - $1987 = $1986; - $1988 = HEAP32[$1987>>2]|0; - $1989 = (_bitshift64Ashr(0,($1985|0),32)|0); - $1990 = tempRet0; - $1991 = (___muldi3(($1989|0),($1990|0),($1981|0),($1982|0))|0); - $1992 = tempRet0; - $1993 = $1127; - $1994 = $1993; - $1995 = HEAP32[$1994>>2]|0; - $1996 = (($1993) + 4)|0; - $1997 = $1996; - $1998 = HEAP32[$1997>>2]|0; - $1999 = (_bitshift64Ashr(0,($1995|0),32)|0); - $2000 = tempRet0; - $2001 = $722; - $2002 = $2001; - $2003 = HEAP32[$2002>>2]|0; - $2004 = (($2001) + 4)|0; - $2005 = $2004; - $2006 = HEAP32[$2005>>2]|0; - $2007 = (_bitshift64Ashr(0,($2003|0),32)|0); - $2008 = tempRet0; - $2009 = (___muldi3(($2007|0),($2008|0),($1999|0),($2000|0))|0); - $2010 = tempRet0; - $2011 = (_i64Add(($2009|0),($2010|0),($1991|0),($1992|0))|0); - $2012 = tempRet0; - $2013 = (_bitshift64Shl(($2011|0),($2012|0),1)|0); - $2014 = tempRet0; - $2015 = (_i64Add(($2013|0),($2014|0),($1973|0),($1974|0))|0); - $2016 = tempRet0; - $2017 = ((($output)) + 128|0); - $2018 = $2017; - $2019 = $2018; - HEAP32[$2019>>2] = $2015; - $2020 = (($2018) + 4)|0; - $2021 = $2020; - HEAP32[$2021>>2] = $2016; - $2022 = $922; - $2023 = $2022; - $2024 = HEAP32[$2023>>2]|0; - $2025 = (($2022) + 4)|0; - $2026 = $2025; - $2027 = HEAP32[$2026>>2]|0; - $2028 = (_bitshift64Ashr(0,($2024|0),32)|0); - $2029 = tempRet0; - $2030 = $1114; - $2031 = $2030; - $2032 = HEAP32[$2031>>2]|0; - $2033 = (($2030) + 4)|0; - $2034 = $2033; - $2035 = HEAP32[$2034>>2]|0; - $2036 = (_bitshift64Ashr(0,($2032|0),32)|0); - $2037 = tempRet0; - $2038 = (___muldi3(($2036|0),($2037|0),($2028|0),($2029|0))|0); - $2039 = tempRet0; - $2040 = $1127; - $2041 = $2040; - $2042 = HEAP32[$2041>>2]|0; - $2043 = (($2040) + 4)|0; - $2044 = $2043; - $2045 = HEAP32[$2044>>2]|0; - $2046 = (_bitshift64Ashr(0,($2042|0),32)|0); - $2047 = tempRet0; - $2048 = $909; - $2049 = $2048; - $2050 = HEAP32[$2049>>2]|0; - $2051 = (($2048) + 4)|0; - $2052 = $2051; - $2053 = HEAP32[$2052>>2]|0; - $2054 = (_bitshift64Ashr(0,($2050|0),32)|0); - $2055 = tempRet0; - $2056 = (___muldi3(($2054|0),($2055|0),($2046|0),($2047|0))|0); - $2057 = tempRet0; - $2058 = (_i64Add(($2056|0),($2057|0),($2038|0),($2039|0))|0); - $2059 = tempRet0; - $2060 = ((($output)) + 136|0); - $2061 = $2060; - $2062 = $2061; - HEAP32[$2062>>2] = $2058; - $2063 = (($2061) + 4)|0; - $2064 = $2063; - HEAP32[$2064>>2] = $2059; - $2065 = $1127; - $2066 = $2065; - $2067 = HEAP32[$2066>>2]|0; - $2068 = (($2065) + 4)|0; - $2069 = $2068; - $2070 = HEAP32[$2069>>2]|0; - $2071 = (_bitshift64Ashr(0,($2067|0),31)|0); - $2072 = tempRet0; - $2073 = $1114; - $2074 = $2073; - $2075 = HEAP32[$2074>>2]|0; - $2076 = (($2073) + 4)|0; - $2077 = $2076; - $2078 = HEAP32[$2077>>2]|0; - $2079 = (_bitshift64Ashr(0,($2075|0),32)|0); - $2080 = tempRet0; - $2081 = (___muldi3(($2079|0),($2080|0),($2071|0),($2072|0))|0); - $2082 = tempRet0; - $2083 = ((($output)) + 144|0); - $2084 = $2083; - $2085 = $2084; - HEAP32[$2085>>2] = $2081; - $2086 = (($2084) + 4)|0; - $2087 = $2086; - HEAP32[$2087>>2] = $2082; - return; -} -function _freduce_degree($output) { - $output = $output|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; - var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; - var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; - var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; - var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; - var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; - var $297 = 0, $298 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0; - var $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0; - var $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0; - var $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0; - var sp = 0; - sp = STACKTOP; - $0 = ((($output)) + 144|0); - $1 = $0; - $2 = $1; - $3 = HEAP32[$2>>2]|0; - $4 = (($1) + 4)|0; - $5 = $4; - $6 = HEAP32[$5>>2]|0; - $7 = (_bitshift64Shl(($3|0),($6|0),4)|0); - $8 = tempRet0; - $9 = ((($output)) + 64|0); - $10 = $9; - $11 = $10; - $12 = HEAP32[$11>>2]|0; - $13 = (($10) + 4)|0; - $14 = $13; - $15 = HEAP32[$14>>2]|0; - $16 = (_i64Add(($12|0),($15|0),($7|0),($8|0))|0); - $17 = tempRet0; - $18 = (_bitshift64Shl(($3|0),($6|0),1)|0); - $19 = tempRet0; - $20 = (_i64Add(($18|0),($19|0),($16|0),($17|0))|0); - $21 = tempRet0; - $22 = $0; - $23 = $22; - $24 = HEAP32[$23>>2]|0; - $25 = (($22) + 4)|0; - $26 = $25; - $27 = HEAP32[$26>>2]|0; - $28 = (_i64Add(($20|0),($21|0),($24|0),($27|0))|0); - $29 = tempRet0; - $30 = $9; - $31 = $30; - HEAP32[$31>>2] = $28; - $32 = (($30) + 4)|0; - $33 = $32; - HEAP32[$33>>2] = $29; - $34 = ((($output)) + 136|0); - $35 = $34; - $36 = $35; - $37 = HEAP32[$36>>2]|0; - $38 = (($35) + 4)|0; - $39 = $38; - $40 = HEAP32[$39>>2]|0; - $41 = (_bitshift64Shl(($37|0),($40|0),4)|0); - $42 = tempRet0; - $43 = ((($output)) + 56|0); - $44 = $43; - $45 = $44; - $46 = HEAP32[$45>>2]|0; - $47 = (($44) + 4)|0; - $48 = $47; - $49 = HEAP32[$48>>2]|0; - $50 = (_i64Add(($46|0),($49|0),($41|0),($42|0))|0); - $51 = tempRet0; - $52 = (_bitshift64Shl(($37|0),($40|0),1)|0); - $53 = tempRet0; - $54 = (_i64Add(($52|0),($53|0),($50|0),($51|0))|0); - $55 = tempRet0; - $56 = $34; - $57 = $56; - $58 = HEAP32[$57>>2]|0; - $59 = (($56) + 4)|0; - $60 = $59; - $61 = HEAP32[$60>>2]|0; - $62 = (_i64Add(($54|0),($55|0),($58|0),($61|0))|0); - $63 = tempRet0; - $64 = $43; - $65 = $64; - HEAP32[$65>>2] = $62; - $66 = (($64) + 4)|0; - $67 = $66; - HEAP32[$67>>2] = $63; - $68 = ((($output)) + 128|0); - $69 = $68; - $70 = $69; - $71 = HEAP32[$70>>2]|0; - $72 = (($69) + 4)|0; - $73 = $72; - $74 = HEAP32[$73>>2]|0; - $75 = (_bitshift64Shl(($71|0),($74|0),4)|0); - $76 = tempRet0; - $77 = ((($output)) + 48|0); - $78 = $77; - $79 = $78; - $80 = HEAP32[$79>>2]|0; - $81 = (($78) + 4)|0; - $82 = $81; - $83 = HEAP32[$82>>2]|0; - $84 = (_i64Add(($80|0),($83|0),($75|0),($76|0))|0); - $85 = tempRet0; - $86 = (_bitshift64Shl(($71|0),($74|0),1)|0); - $87 = tempRet0; - $88 = (_i64Add(($86|0),($87|0),($84|0),($85|0))|0); - $89 = tempRet0; - $90 = $68; - $91 = $90; - $92 = HEAP32[$91>>2]|0; - $93 = (($90) + 4)|0; - $94 = $93; - $95 = HEAP32[$94>>2]|0; - $96 = (_i64Add(($88|0),($89|0),($92|0),($95|0))|0); - $97 = tempRet0; - $98 = $77; - $99 = $98; - HEAP32[$99>>2] = $96; - $100 = (($98) + 4)|0; - $101 = $100; - HEAP32[$101>>2] = $97; - $102 = ((($output)) + 120|0); - $103 = $102; - $104 = $103; - $105 = HEAP32[$104>>2]|0; - $106 = (($103) + 4)|0; - $107 = $106; - $108 = HEAP32[$107>>2]|0; - $109 = (_bitshift64Shl(($105|0),($108|0),4)|0); - $110 = tempRet0; - $111 = ((($output)) + 40|0); - $112 = $111; - $113 = $112; - $114 = HEAP32[$113>>2]|0; - $115 = (($112) + 4)|0; - $116 = $115; - $117 = HEAP32[$116>>2]|0; - $118 = (_i64Add(($114|0),($117|0),($109|0),($110|0))|0); - $119 = tempRet0; - $120 = (_bitshift64Shl(($105|0),($108|0),1)|0); - $121 = tempRet0; - $122 = (_i64Add(($120|0),($121|0),($118|0),($119|0))|0); - $123 = tempRet0; - $124 = $102; - $125 = $124; - $126 = HEAP32[$125>>2]|0; - $127 = (($124) + 4)|0; - $128 = $127; - $129 = HEAP32[$128>>2]|0; - $130 = (_i64Add(($122|0),($123|0),($126|0),($129|0))|0); - $131 = tempRet0; - $132 = $111; - $133 = $132; - HEAP32[$133>>2] = $130; - $134 = (($132) + 4)|0; - $135 = $134; - HEAP32[$135>>2] = $131; - $136 = ((($output)) + 112|0); - $137 = $136; - $138 = $137; - $139 = HEAP32[$138>>2]|0; - $140 = (($137) + 4)|0; - $141 = $140; - $142 = HEAP32[$141>>2]|0; - $143 = (_bitshift64Shl(($139|0),($142|0),4)|0); - $144 = tempRet0; - $145 = ((($output)) + 32|0); - $146 = $145; - $147 = $146; - $148 = HEAP32[$147>>2]|0; - $149 = (($146) + 4)|0; - $150 = $149; - $151 = HEAP32[$150>>2]|0; - $152 = (_i64Add(($148|0),($151|0),($143|0),($144|0))|0); - $153 = tempRet0; - $154 = (_bitshift64Shl(($139|0),($142|0),1)|0); - $155 = tempRet0; - $156 = (_i64Add(($154|0),($155|0),($152|0),($153|0))|0); - $157 = tempRet0; - $158 = $136; - $159 = $158; - $160 = HEAP32[$159>>2]|0; - $161 = (($158) + 4)|0; - $162 = $161; - $163 = HEAP32[$162>>2]|0; - $164 = (_i64Add(($156|0),($157|0),($160|0),($163|0))|0); - $165 = tempRet0; - $166 = $145; - $167 = $166; - HEAP32[$167>>2] = $164; - $168 = (($166) + 4)|0; - $169 = $168; - HEAP32[$169>>2] = $165; - $170 = ((($output)) + 104|0); - $171 = $170; - $172 = $171; - $173 = HEAP32[$172>>2]|0; - $174 = (($171) + 4)|0; - $175 = $174; - $176 = HEAP32[$175>>2]|0; - $177 = (_bitshift64Shl(($173|0),($176|0),4)|0); - $178 = tempRet0; - $179 = ((($output)) + 24|0); - $180 = $179; - $181 = $180; - $182 = HEAP32[$181>>2]|0; - $183 = (($180) + 4)|0; - $184 = $183; - $185 = HEAP32[$184>>2]|0; - $186 = (_i64Add(($182|0),($185|0),($177|0),($178|0))|0); - $187 = tempRet0; - $188 = (_bitshift64Shl(($173|0),($176|0),1)|0); - $189 = tempRet0; - $190 = (_i64Add(($188|0),($189|0),($186|0),($187|0))|0); - $191 = tempRet0; - $192 = $170; - $193 = $192; - $194 = HEAP32[$193>>2]|0; - $195 = (($192) + 4)|0; - $196 = $195; - $197 = HEAP32[$196>>2]|0; - $198 = (_i64Add(($190|0),($191|0),($194|0),($197|0))|0); - $199 = tempRet0; - $200 = $179; - $201 = $200; - HEAP32[$201>>2] = $198; - $202 = (($200) + 4)|0; - $203 = $202; - HEAP32[$203>>2] = $199; - $204 = ((($output)) + 96|0); - $205 = $204; - $206 = $205; - $207 = HEAP32[$206>>2]|0; - $208 = (($205) + 4)|0; - $209 = $208; - $210 = HEAP32[$209>>2]|0; - $211 = (_bitshift64Shl(($207|0),($210|0),4)|0); - $212 = tempRet0; - $213 = ((($output)) + 16|0); - $214 = $213; - $215 = $214; - $216 = HEAP32[$215>>2]|0; - $217 = (($214) + 4)|0; - $218 = $217; - $219 = HEAP32[$218>>2]|0; - $220 = (_i64Add(($216|0),($219|0),($211|0),($212|0))|0); - $221 = tempRet0; - $222 = (_bitshift64Shl(($207|0),($210|0),1)|0); - $223 = tempRet0; - $224 = (_i64Add(($222|0),($223|0),($220|0),($221|0))|0); - $225 = tempRet0; - $226 = $204; - $227 = $226; - $228 = HEAP32[$227>>2]|0; - $229 = (($226) + 4)|0; - $230 = $229; - $231 = HEAP32[$230>>2]|0; - $232 = (_i64Add(($224|0),($225|0),($228|0),($231|0))|0); - $233 = tempRet0; - $234 = $213; - $235 = $234; - HEAP32[$235>>2] = $232; - $236 = (($234) + 4)|0; - $237 = $236; - HEAP32[$237>>2] = $233; - $238 = ((($output)) + 88|0); - $239 = $238; - $240 = $239; - $241 = HEAP32[$240>>2]|0; - $242 = (($239) + 4)|0; - $243 = $242; - $244 = HEAP32[$243>>2]|0; - $245 = (_bitshift64Shl(($241|0),($244|0),4)|0); - $246 = tempRet0; - $247 = ((($output)) + 8|0); - $248 = $247; - $249 = $248; - $250 = HEAP32[$249>>2]|0; - $251 = (($248) + 4)|0; - $252 = $251; - $253 = HEAP32[$252>>2]|0; - $254 = (_i64Add(($250|0),($253|0),($245|0),($246|0))|0); - $255 = tempRet0; - $256 = (_bitshift64Shl(($241|0),($244|0),1)|0); - $257 = tempRet0; - $258 = (_i64Add(($256|0),($257|0),($254|0),($255|0))|0); - $259 = tempRet0; - $260 = $238; - $261 = $260; - $262 = HEAP32[$261>>2]|0; - $263 = (($260) + 4)|0; - $264 = $263; - $265 = HEAP32[$264>>2]|0; - $266 = (_i64Add(($258|0),($259|0),($262|0),($265|0))|0); - $267 = tempRet0; - $268 = $247; - $269 = $268; - HEAP32[$269>>2] = $266; - $270 = (($268) + 4)|0; - $271 = $270; - HEAP32[$271>>2] = $267; - $272 = ((($output)) + 80|0); - $273 = $272; - $274 = $273; - $275 = HEAP32[$274>>2]|0; - $276 = (($273) + 4)|0; - $277 = $276; - $278 = HEAP32[$277>>2]|0; - $279 = (_bitshift64Shl(($275|0),($278|0),4)|0); - $280 = tempRet0; - $281 = $output; - $282 = $281; - $283 = HEAP32[$282>>2]|0; - $284 = (($281) + 4)|0; - $285 = $284; - $286 = HEAP32[$285>>2]|0; - $287 = (_i64Add(($283|0),($286|0),($279|0),($280|0))|0); - $288 = tempRet0; - $289 = (_bitshift64Shl(($275|0),($278|0),1)|0); - $290 = tempRet0; - $291 = (_i64Add(($289|0),($290|0),($287|0),($288|0))|0); - $292 = tempRet0; - $293 = (_i64Add(($291|0),($292|0),($275|0),($278|0))|0); - $294 = tempRet0; - $295 = $output; - $296 = $295; - HEAP32[$296>>2] = $293; - $297 = (($295) + 4)|0; - $298 = $297; - HEAP32[$298>>2] = $294; - return; -} -function _freduce_coefficients($output) { - $output = $output|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0; - var $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0; - var $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0; - var $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0; - var $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $i$01 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = ((($output)) + 80|0); - $1 = $0; - $2 = $1; - HEAP32[$2>>2] = 0; - $3 = (($1) + 4)|0; - $4 = $3; - HEAP32[$4>>2] = 0; - $i$01 = 0; - while(1) { - $5 = (($output) + ($i$01<<3)|0); - $6 = $5; - $7 = $6; - $8 = HEAP32[$7>>2]|0; - $9 = (($6) + 4)|0; - $10 = $9; - $11 = HEAP32[$10>>2]|0; - $12 = (_div_by_2_26($8,$11)|0); - $13 = tempRet0; - $14 = (_bitshift64Shl(($12|0),($13|0),26)|0); - $15 = tempRet0; - $16 = (_i64Subtract(($8|0),($11|0),($14|0),($15|0))|0); - $17 = tempRet0; - $18 = $5; - $19 = $18; - HEAP32[$19>>2] = $16; - $20 = (($18) + 4)|0; - $21 = $20; - HEAP32[$21>>2] = $17; - $22 = $i$01 | 1; - $23 = (($output) + ($22<<3)|0); - $24 = $23; - $25 = $24; - $26 = HEAP32[$25>>2]|0; - $27 = (($24) + 4)|0; - $28 = $27; - $29 = HEAP32[$28>>2]|0; - $30 = (_i64Add(($26|0),($29|0),($12|0),($13|0))|0); - $31 = tempRet0; - $32 = (_div_by_2_25($30,$31)|0); - $33 = tempRet0; - $34 = (_bitshift64Shl(($32|0),($33|0),25)|0); - $35 = tempRet0; - $36 = (_i64Subtract(($30|0),($31|0),($34|0),($35|0))|0); - $37 = tempRet0; - $38 = $23; - $39 = $38; - HEAP32[$39>>2] = $36; - $40 = (($38) + 4)|0; - $41 = $40; - HEAP32[$41>>2] = $37; - $42 = (($i$01) + 2)|0; - $43 = (($output) + ($42<<3)|0); - $44 = $43; - $45 = $44; - $46 = HEAP32[$45>>2]|0; - $47 = (($44) + 4)|0; - $48 = $47; - $49 = HEAP32[$48>>2]|0; - $50 = (_i64Add(($46|0),($49|0),($32|0),($33|0))|0); - $51 = tempRet0; - $52 = $43; - $53 = $52; - HEAP32[$53>>2] = $50; - $54 = (($52) + 4)|0; - $55 = $54; - HEAP32[$55>>2] = $51; - $56 = ($42>>>0)<(10); - if ($56) { - $i$01 = $42; - } else { - break; - } - } - $57 = $0; - $58 = $57; - $59 = HEAP32[$58>>2]|0; - $60 = (($57) + 4)|0; - $61 = $60; - $62 = HEAP32[$61>>2]|0; - $63 = (_bitshift64Shl(($59|0),($62|0),4)|0); - $64 = tempRet0; - $65 = $output; - $66 = $65; - $67 = HEAP32[$66>>2]|0; - $68 = (($65) + 4)|0; - $69 = $68; - $70 = HEAP32[$69>>2]|0; - $71 = (_i64Add(($67|0),($70|0),($63|0),($64|0))|0); - $72 = tempRet0; - $73 = (_bitshift64Shl(($59|0),($62|0),1)|0); - $74 = tempRet0; - $75 = (_i64Add(($73|0),($74|0),($71|0),($72|0))|0); - $76 = tempRet0; - $77 = (_i64Add(($75|0),($76|0),($59|0),($62|0))|0); - $78 = tempRet0; - $79 = $output; - $80 = $79; - HEAP32[$80>>2] = $77; - $81 = (($79) + 4)|0; - $82 = $81; - HEAP32[$82>>2] = $78; - $83 = $0; - $84 = $83; - HEAP32[$84>>2] = 0; - $85 = (($83) + 4)|0; - $86 = $85; - HEAP32[$86>>2] = 0; - $87 = $output; - $88 = $87; - $89 = HEAP32[$88>>2]|0; - $90 = (($87) + 4)|0; - $91 = $90; - $92 = HEAP32[$91>>2]|0; - $93 = (_div_by_2_26($89,$92)|0); - $94 = tempRet0; - $95 = (_bitshift64Shl(($93|0),($94|0),26)|0); - $96 = tempRet0; - $97 = (_i64Subtract(($89|0),($92|0),($95|0),($96|0))|0); - $98 = tempRet0; - $99 = $output; - $100 = $99; - HEAP32[$100>>2] = $97; - $101 = (($99) + 4)|0; - $102 = $101; - HEAP32[$102>>2] = $98; - $103 = ((($output)) + 8|0); - $104 = $103; - $105 = $104; - $106 = HEAP32[$105>>2]|0; - $107 = (($104) + 4)|0; - $108 = $107; - $109 = HEAP32[$108>>2]|0; - $110 = (_i64Add(($106|0),($109|0),($93|0),($94|0))|0); - $111 = tempRet0; - $112 = $103; - $113 = $112; - HEAP32[$113>>2] = $110; - $114 = (($112) + 4)|0; - $115 = $114; - HEAP32[$115>>2] = $111; - return; -} -function _div_by_2_26($0,$1) { - $0 = $0|0; - $1 = $1|0; - var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; - sp = STACKTOP; - $2 = $1 >> 31; - $3 = $2 >>> 6; - $4 = (_i64Add(($3|0),0,($0|0),($1|0))|0); - $5 = tempRet0; - $6 = (_bitshift64Ashr(($4|0),($5|0),26)|0); - $7 = tempRet0; - tempRet0 = ($7); - return ($6|0); -} -function _div_by_2_25($0,$1) { - $0 = $0|0; - $1 = $1|0; - var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; - sp = STACKTOP; - $2 = $1 >> 31; - $3 = $2 >>> 7; - $4 = (_i64Add(($3|0),0,($0|0),($1|0))|0); - $5 = tempRet0; - $6 = (_bitshift64Ashr(($4|0),($5|0),25)|0); - $7 = tempRet0; - tempRet0 = ($7); - return ($6|0); -} -function _fsquare($output,$in) { - $output = $output|0; - $in = $in|0; - var $t = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 160|0; - $t = sp; - _fsquare_inner($t,$in); - _freduce_degree($t); - _freduce_coefficients($t); - dest=$output; src=$t; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - STACKTOP = sp;return; -} -function _fsquare_inner($output,$in) { - $output = $output|0; - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; - var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0; - var $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0; - var $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0; - var $107 = 0, $1070 = 0, $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0; - var $1088 = 0, $1089 = 0, $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0; - var $1105 = 0, $1106 = 0, $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0; - var $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0; - var $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0; - var $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0; - var $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0; - var $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0; - var $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0; - var $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0; - var $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0; - var $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0; - var $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0; - var $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0; - var $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0; - var $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0; - var $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0; - var $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0; - var $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0; - var $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0; - var $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0; - var $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0; - var $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0; - var $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0; - var $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0; - var $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0; - var $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0; - var $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0; - var $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0; - var $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0; - var $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0; - var $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0; - var $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0; - var $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0; - var $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0; - var $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0; - var $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0; - var $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0; - var $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0; - var $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0; - var $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0; - var $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0; - var $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0; - var $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0; - var $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0; - var $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0; - var $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0; - var $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0; - var $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0; - var $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0; - var $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0; - var $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, label = 0; - var sp = 0; - sp = STACKTOP; - $0 = $in; - $1 = $0; - $2 = HEAP32[$1>>2]|0; - $3 = (($0) + 4)|0; - $4 = $3; - $5 = HEAP32[$4>>2]|0; - $6 = (_bitshift64Ashr(0,($2|0),32)|0); - $7 = tempRet0; - $8 = (___muldi3(($6|0),($7|0),($6|0),($7|0))|0); - $9 = tempRet0; - $10 = $output; - $11 = $10; - HEAP32[$11>>2] = $8; - $12 = (($10) + 4)|0; - $13 = $12; - HEAP32[$13>>2] = $9; - $14 = $in; - $15 = $14; - $16 = HEAP32[$15>>2]|0; - $17 = (($14) + 4)|0; - $18 = $17; - $19 = HEAP32[$18>>2]|0; - $20 = (_bitshift64Ashr(0,($16|0),31)|0); - $21 = tempRet0; - $22 = ((($in)) + 8|0); - $23 = $22; - $24 = $23; - $25 = HEAP32[$24>>2]|0; - $26 = (($23) + 4)|0; - $27 = $26; - $28 = HEAP32[$27>>2]|0; - $29 = (_bitshift64Ashr(0,($25|0),32)|0); - $30 = tempRet0; - $31 = (___muldi3(($29|0),($30|0),($20|0),($21|0))|0); - $32 = tempRet0; - $33 = ((($output)) + 8|0); - $34 = $33; - $35 = $34; - HEAP32[$35>>2] = $31; - $36 = (($34) + 4)|0; - $37 = $36; - HEAP32[$37>>2] = $32; - $38 = $22; - $39 = $38; - $40 = HEAP32[$39>>2]|0; - $41 = (($38) + 4)|0; - $42 = $41; - $43 = HEAP32[$42>>2]|0; - $44 = (_bitshift64Ashr(0,($40|0),32)|0); - $45 = tempRet0; - $46 = (___muldi3(($44|0),($45|0),($44|0),($45|0))|0); - $47 = tempRet0; - $48 = $in; - $49 = $48; - $50 = HEAP32[$49>>2]|0; - $51 = (($48) + 4)|0; - $52 = $51; - $53 = HEAP32[$52>>2]|0; - $54 = (_bitshift64Ashr(0,($50|0),32)|0); - $55 = tempRet0; - $56 = ((($in)) + 16|0); - $57 = $56; - $58 = $57; - $59 = HEAP32[$58>>2]|0; - $60 = (($57) + 4)|0; - $61 = $60; - $62 = HEAP32[$61>>2]|0; - $63 = (_bitshift64Ashr(0,($59|0),32)|0); - $64 = tempRet0; - $65 = (___muldi3(($63|0),($64|0),($54|0),($55|0))|0); - $66 = tempRet0; - $67 = (_i64Add(($65|0),($66|0),($46|0),($47|0))|0); - $68 = tempRet0; - $69 = (_bitshift64Shl(($67|0),($68|0),1)|0); - $70 = tempRet0; - $71 = ((($output)) + 16|0); - $72 = $71; - $73 = $72; - HEAP32[$73>>2] = $69; - $74 = (($72) + 4)|0; - $75 = $74; - HEAP32[$75>>2] = $70; - $76 = $22; - $77 = $76; - $78 = HEAP32[$77>>2]|0; - $79 = (($76) + 4)|0; - $80 = $79; - $81 = HEAP32[$80>>2]|0; - $82 = (_bitshift64Ashr(0,($78|0),32)|0); - $83 = tempRet0; - $84 = $56; - $85 = $84; - $86 = HEAP32[$85>>2]|0; - $87 = (($84) + 4)|0; - $88 = $87; - $89 = HEAP32[$88>>2]|0; - $90 = (_bitshift64Ashr(0,($86|0),32)|0); - $91 = tempRet0; - $92 = (___muldi3(($90|0),($91|0),($82|0),($83|0))|0); - $93 = tempRet0; - $94 = $in; - $95 = $94; - $96 = HEAP32[$95>>2]|0; - $97 = (($94) + 4)|0; - $98 = $97; - $99 = HEAP32[$98>>2]|0; - $100 = (_bitshift64Ashr(0,($96|0),32)|0); - $101 = tempRet0; - $102 = ((($in)) + 24|0); - $103 = $102; - $104 = $103; - $105 = HEAP32[$104>>2]|0; - $106 = (($103) + 4)|0; - $107 = $106; - $108 = HEAP32[$107>>2]|0; - $109 = (_bitshift64Ashr(0,($105|0),32)|0); - $110 = tempRet0; - $111 = (___muldi3(($109|0),($110|0),($100|0),($101|0))|0); - $112 = tempRet0; - $113 = (_i64Add(($111|0),($112|0),($92|0),($93|0))|0); - $114 = tempRet0; - $115 = (_bitshift64Shl(($113|0),($114|0),1)|0); - $116 = tempRet0; - $117 = ((($output)) + 24|0); - $118 = $117; - $119 = $118; - HEAP32[$119>>2] = $115; - $120 = (($118) + 4)|0; - $121 = $120; - HEAP32[$121>>2] = $116; - $122 = $56; - $123 = $122; - $124 = HEAP32[$123>>2]|0; - $125 = (($122) + 4)|0; - $126 = $125; - $127 = HEAP32[$126>>2]|0; - $128 = (_bitshift64Ashr(0,($124|0),32)|0); - $129 = tempRet0; - $130 = (___muldi3(($128|0),($129|0),($128|0),($129|0))|0); - $131 = tempRet0; - $132 = $22; - $133 = $132; - $134 = HEAP32[$133>>2]|0; - $135 = (($132) + 4)|0; - $136 = $135; - $137 = HEAP32[$136>>2]|0; - $138 = (_bitshift64Ashr(0,($134|0),30)|0); - $139 = tempRet0; - $140 = $102; - $141 = $140; - $142 = HEAP32[$141>>2]|0; - $143 = (($140) + 4)|0; - $144 = $143; - $145 = HEAP32[$144>>2]|0; - $146 = (_bitshift64Ashr(0,($142|0),32)|0); - $147 = tempRet0; - $148 = (___muldi3(($146|0),($147|0),($138|0),($139|0))|0); - $149 = tempRet0; - $150 = (_i64Add(($148|0),($149|0),($130|0),($131|0))|0); - $151 = tempRet0; - $152 = $in; - $153 = $152; - $154 = HEAP32[$153>>2]|0; - $155 = (($152) + 4)|0; - $156 = $155; - $157 = HEAP32[$156>>2]|0; - $158 = (_bitshift64Ashr(0,($154|0),31)|0); - $159 = tempRet0; - $160 = ((($in)) + 32|0); - $161 = $160; - $162 = $161; - $163 = HEAP32[$162>>2]|0; - $164 = (($161) + 4)|0; - $165 = $164; - $166 = HEAP32[$165>>2]|0; - $167 = (_bitshift64Ashr(0,($163|0),32)|0); - $168 = tempRet0; - $169 = (___muldi3(($167|0),($168|0),($158|0),($159|0))|0); - $170 = tempRet0; - $171 = (_i64Add(($150|0),($151|0),($169|0),($170|0))|0); - $172 = tempRet0; - $173 = ((($output)) + 32|0); - $174 = $173; - $175 = $174; - HEAP32[$175>>2] = $171; - $176 = (($174) + 4)|0; - $177 = $176; - HEAP32[$177>>2] = $172; - $178 = $56; - $179 = $178; - $180 = HEAP32[$179>>2]|0; - $181 = (($178) + 4)|0; - $182 = $181; - $183 = HEAP32[$182>>2]|0; - $184 = (_bitshift64Ashr(0,($180|0),32)|0); - $185 = tempRet0; - $186 = $102; - $187 = $186; - $188 = HEAP32[$187>>2]|0; - $189 = (($186) + 4)|0; - $190 = $189; - $191 = HEAP32[$190>>2]|0; - $192 = (_bitshift64Ashr(0,($188|0),32)|0); - $193 = tempRet0; - $194 = (___muldi3(($192|0),($193|0),($184|0),($185|0))|0); - $195 = tempRet0; - $196 = $22; - $197 = $196; - $198 = HEAP32[$197>>2]|0; - $199 = (($196) + 4)|0; - $200 = $199; - $201 = HEAP32[$200>>2]|0; - $202 = (_bitshift64Ashr(0,($198|0),32)|0); - $203 = tempRet0; - $204 = $160; - $205 = $204; - $206 = HEAP32[$205>>2]|0; - $207 = (($204) + 4)|0; - $208 = $207; - $209 = HEAP32[$208>>2]|0; - $210 = (_bitshift64Ashr(0,($206|0),32)|0); - $211 = tempRet0; - $212 = (___muldi3(($210|0),($211|0),($202|0),($203|0))|0); - $213 = tempRet0; - $214 = (_i64Add(($212|0),($213|0),($194|0),($195|0))|0); - $215 = tempRet0; - $216 = $in; - $217 = $216; - $218 = HEAP32[$217>>2]|0; - $219 = (($216) + 4)|0; - $220 = $219; - $221 = HEAP32[$220>>2]|0; - $222 = (_bitshift64Ashr(0,($218|0),32)|0); - $223 = tempRet0; - $224 = ((($in)) + 40|0); - $225 = $224; - $226 = $225; - $227 = HEAP32[$226>>2]|0; - $228 = (($225) + 4)|0; - $229 = $228; - $230 = HEAP32[$229>>2]|0; - $231 = (_bitshift64Ashr(0,($227|0),32)|0); - $232 = tempRet0; - $233 = (___muldi3(($231|0),($232|0),($222|0),($223|0))|0); - $234 = tempRet0; - $235 = (_i64Add(($214|0),($215|0),($233|0),($234|0))|0); - $236 = tempRet0; - $237 = (_bitshift64Shl(($235|0),($236|0),1)|0); - $238 = tempRet0; - $239 = ((($output)) + 40|0); - $240 = $239; - $241 = $240; - HEAP32[$241>>2] = $237; - $242 = (($240) + 4)|0; - $243 = $242; - HEAP32[$243>>2] = $238; - $244 = $102; - $245 = $244; - $246 = HEAP32[$245>>2]|0; - $247 = (($244) + 4)|0; - $248 = $247; - $249 = HEAP32[$248>>2]|0; - $250 = (_bitshift64Ashr(0,($246|0),32)|0); - $251 = tempRet0; - $252 = (___muldi3(($250|0),($251|0),($250|0),($251|0))|0); - $253 = tempRet0; - $254 = $56; - $255 = $254; - $256 = HEAP32[$255>>2]|0; - $257 = (($254) + 4)|0; - $258 = $257; - $259 = HEAP32[$258>>2]|0; - $260 = (_bitshift64Ashr(0,($256|0),32)|0); - $261 = tempRet0; - $262 = $160; - $263 = $262; - $264 = HEAP32[$263>>2]|0; - $265 = (($262) + 4)|0; - $266 = $265; - $267 = HEAP32[$266>>2]|0; - $268 = (_bitshift64Ashr(0,($264|0),32)|0); - $269 = tempRet0; - $270 = (___muldi3(($268|0),($269|0),($260|0),($261|0))|0); - $271 = tempRet0; - $272 = (_i64Add(($270|0),($271|0),($252|0),($253|0))|0); - $273 = tempRet0; - $274 = $in; - $275 = $274; - $276 = HEAP32[$275>>2]|0; - $277 = (($274) + 4)|0; - $278 = $277; - $279 = HEAP32[$278>>2]|0; - $280 = (_bitshift64Ashr(0,($276|0),32)|0); - $281 = tempRet0; - $282 = ((($in)) + 48|0); - $283 = $282; - $284 = $283; - $285 = HEAP32[$284>>2]|0; - $286 = (($283) + 4)|0; - $287 = $286; - $288 = HEAP32[$287>>2]|0; - $289 = (_bitshift64Ashr(0,($285|0),32)|0); - $290 = tempRet0; - $291 = (___muldi3(($289|0),($290|0),($280|0),($281|0))|0); - $292 = tempRet0; - $293 = (_i64Add(($272|0),($273|0),($291|0),($292|0))|0); - $294 = tempRet0; - $295 = $22; - $296 = $295; - $297 = HEAP32[$296>>2]|0; - $298 = (($295) + 4)|0; - $299 = $298; - $300 = HEAP32[$299>>2]|0; - $301 = (_bitshift64Ashr(0,($297|0),31)|0); - $302 = tempRet0; - $303 = $224; - $304 = $303; - $305 = HEAP32[$304>>2]|0; - $306 = (($303) + 4)|0; - $307 = $306; - $308 = HEAP32[$307>>2]|0; - $309 = (_bitshift64Ashr(0,($305|0),32)|0); - $310 = tempRet0; - $311 = (___muldi3(($309|0),($310|0),($301|0),($302|0))|0); - $312 = tempRet0; - $313 = (_i64Add(($293|0),($294|0),($311|0),($312|0))|0); - $314 = tempRet0; - $315 = (_bitshift64Shl(($313|0),($314|0),1)|0); - $316 = tempRet0; - $317 = ((($output)) + 48|0); - $318 = $317; - $319 = $318; - HEAP32[$319>>2] = $315; - $320 = (($318) + 4)|0; - $321 = $320; - HEAP32[$321>>2] = $316; - $322 = $102; - $323 = $322; - $324 = HEAP32[$323>>2]|0; - $325 = (($322) + 4)|0; - $326 = $325; - $327 = HEAP32[$326>>2]|0; - $328 = (_bitshift64Ashr(0,($324|0),32)|0); - $329 = tempRet0; - $330 = $160; - $331 = $330; - $332 = HEAP32[$331>>2]|0; - $333 = (($330) + 4)|0; - $334 = $333; - $335 = HEAP32[$334>>2]|0; - $336 = (_bitshift64Ashr(0,($332|0),32)|0); - $337 = tempRet0; - $338 = (___muldi3(($336|0),($337|0),($328|0),($329|0))|0); - $339 = tempRet0; - $340 = $56; - $341 = $340; - $342 = HEAP32[$341>>2]|0; - $343 = (($340) + 4)|0; - $344 = $343; - $345 = HEAP32[$344>>2]|0; - $346 = (_bitshift64Ashr(0,($342|0),32)|0); - $347 = tempRet0; - $348 = $224; - $349 = $348; - $350 = HEAP32[$349>>2]|0; - $351 = (($348) + 4)|0; - $352 = $351; - $353 = HEAP32[$352>>2]|0; - $354 = (_bitshift64Ashr(0,($350|0),32)|0); - $355 = tempRet0; - $356 = (___muldi3(($354|0),($355|0),($346|0),($347|0))|0); - $357 = tempRet0; - $358 = (_i64Add(($356|0),($357|0),($338|0),($339|0))|0); - $359 = tempRet0; - $360 = $22; - $361 = $360; - $362 = HEAP32[$361>>2]|0; - $363 = (($360) + 4)|0; - $364 = $363; - $365 = HEAP32[$364>>2]|0; - $366 = (_bitshift64Ashr(0,($362|0),32)|0); - $367 = tempRet0; - $368 = $282; - $369 = $368; - $370 = HEAP32[$369>>2]|0; - $371 = (($368) + 4)|0; - $372 = $371; - $373 = HEAP32[$372>>2]|0; - $374 = (_bitshift64Ashr(0,($370|0),32)|0); - $375 = tempRet0; - $376 = (___muldi3(($374|0),($375|0),($366|0),($367|0))|0); - $377 = tempRet0; - $378 = (_i64Add(($358|0),($359|0),($376|0),($377|0))|0); - $379 = tempRet0; - $380 = $in; - $381 = $380; - $382 = HEAP32[$381>>2]|0; - $383 = (($380) + 4)|0; - $384 = $383; - $385 = HEAP32[$384>>2]|0; - $386 = (_bitshift64Ashr(0,($382|0),32)|0); - $387 = tempRet0; - $388 = ((($in)) + 56|0); - $389 = $388; - $390 = $389; - $391 = HEAP32[$390>>2]|0; - $392 = (($389) + 4)|0; - $393 = $392; - $394 = HEAP32[$393>>2]|0; - $395 = (_bitshift64Ashr(0,($391|0),32)|0); - $396 = tempRet0; - $397 = (___muldi3(($395|0),($396|0),($386|0),($387|0))|0); - $398 = tempRet0; - $399 = (_i64Add(($378|0),($379|0),($397|0),($398|0))|0); - $400 = tempRet0; - $401 = (_bitshift64Shl(($399|0),($400|0),1)|0); - $402 = tempRet0; - $403 = ((($output)) + 56|0); - $404 = $403; - $405 = $404; - HEAP32[$405>>2] = $401; - $406 = (($404) + 4)|0; - $407 = $406; - HEAP32[$407>>2] = $402; - $408 = $160; - $409 = $408; - $410 = HEAP32[$409>>2]|0; - $411 = (($408) + 4)|0; - $412 = $411; - $413 = HEAP32[$412>>2]|0; - $414 = (_bitshift64Ashr(0,($410|0),32)|0); - $415 = tempRet0; - $416 = (___muldi3(($414|0),($415|0),($414|0),($415|0))|0); - $417 = tempRet0; - $418 = $56; - $419 = $418; - $420 = HEAP32[$419>>2]|0; - $421 = (($418) + 4)|0; - $422 = $421; - $423 = HEAP32[$422>>2]|0; - $424 = (_bitshift64Ashr(0,($420|0),32)|0); - $425 = tempRet0; - $426 = $282; - $427 = $426; - $428 = HEAP32[$427>>2]|0; - $429 = (($426) + 4)|0; - $430 = $429; - $431 = HEAP32[$430>>2]|0; - $432 = (_bitshift64Ashr(0,($428|0),32)|0); - $433 = tempRet0; - $434 = (___muldi3(($432|0),($433|0),($424|0),($425|0))|0); - $435 = tempRet0; - $436 = $in; - $437 = $436; - $438 = HEAP32[$437>>2]|0; - $439 = (($436) + 4)|0; - $440 = $439; - $441 = HEAP32[$440>>2]|0; - $442 = (_bitshift64Ashr(0,($438|0),32)|0); - $443 = tempRet0; - $444 = ((($in)) + 64|0); - $445 = $444; - $446 = $445; - $447 = HEAP32[$446>>2]|0; - $448 = (($445) + 4)|0; - $449 = $448; - $450 = HEAP32[$449>>2]|0; - $451 = (_bitshift64Ashr(0,($447|0),32)|0); - $452 = tempRet0; - $453 = (___muldi3(($451|0),($452|0),($442|0),($443|0))|0); - $454 = tempRet0; - $455 = (_i64Add(($453|0),($454|0),($434|0),($435|0))|0); - $456 = tempRet0; - $457 = $22; - $458 = $457; - $459 = HEAP32[$458>>2]|0; - $460 = (($457) + 4)|0; - $461 = $460; - $462 = HEAP32[$461>>2]|0; - $463 = (_bitshift64Ashr(0,($459|0),32)|0); - $464 = tempRet0; - $465 = $388; - $466 = $465; - $467 = HEAP32[$466>>2]|0; - $468 = (($465) + 4)|0; - $469 = $468; - $470 = HEAP32[$469>>2]|0; - $471 = (_bitshift64Ashr(0,($467|0),32)|0); - $472 = tempRet0; - $473 = (___muldi3(($471|0),($472|0),($463|0),($464|0))|0); - $474 = tempRet0; - $475 = $102; - $476 = $475; - $477 = HEAP32[$476>>2]|0; - $478 = (($475) + 4)|0; - $479 = $478; - $480 = HEAP32[$479>>2]|0; - $481 = (_bitshift64Ashr(0,($477|0),32)|0); - $482 = tempRet0; - $483 = $224; - $484 = $483; - $485 = HEAP32[$484>>2]|0; - $486 = (($483) + 4)|0; - $487 = $486; - $488 = HEAP32[$487>>2]|0; - $489 = (_bitshift64Ashr(0,($485|0),32)|0); - $490 = tempRet0; - $491 = (___muldi3(($489|0),($490|0),($481|0),($482|0))|0); - $492 = tempRet0; - $493 = (_i64Add(($491|0),($492|0),($473|0),($474|0))|0); - $494 = tempRet0; - $495 = (_bitshift64Shl(($493|0),($494|0),1)|0); - $496 = tempRet0; - $497 = (_i64Add(($455|0),($456|0),($495|0),($496|0))|0); - $498 = tempRet0; - $499 = (_bitshift64Shl(($497|0),($498|0),1)|0); - $500 = tempRet0; - $501 = (_i64Add(($499|0),($500|0),($416|0),($417|0))|0); - $502 = tempRet0; - $503 = ((($output)) + 64|0); - $504 = $503; - $505 = $504; - HEAP32[$505>>2] = $501; - $506 = (($504) + 4)|0; - $507 = $506; - HEAP32[$507>>2] = $502; - $508 = $160; - $509 = $508; - $510 = HEAP32[$509>>2]|0; - $511 = (($508) + 4)|0; - $512 = $511; - $513 = HEAP32[$512>>2]|0; - $514 = (_bitshift64Ashr(0,($510|0),32)|0); - $515 = tempRet0; - $516 = $224; - $517 = $516; - $518 = HEAP32[$517>>2]|0; - $519 = (($516) + 4)|0; - $520 = $519; - $521 = HEAP32[$520>>2]|0; - $522 = (_bitshift64Ashr(0,($518|0),32)|0); - $523 = tempRet0; - $524 = (___muldi3(($522|0),($523|0),($514|0),($515|0))|0); - $525 = tempRet0; - $526 = $102; - $527 = $526; - $528 = HEAP32[$527>>2]|0; - $529 = (($526) + 4)|0; - $530 = $529; - $531 = HEAP32[$530>>2]|0; - $532 = (_bitshift64Ashr(0,($528|0),32)|0); - $533 = tempRet0; - $534 = $282; - $535 = $534; - $536 = HEAP32[$535>>2]|0; - $537 = (($534) + 4)|0; - $538 = $537; - $539 = HEAP32[$538>>2]|0; - $540 = (_bitshift64Ashr(0,($536|0),32)|0); - $541 = tempRet0; - $542 = (___muldi3(($540|0),($541|0),($532|0),($533|0))|0); - $543 = tempRet0; - $544 = (_i64Add(($542|0),($543|0),($524|0),($525|0))|0); - $545 = tempRet0; - $546 = $56; - $547 = $546; - $548 = HEAP32[$547>>2]|0; - $549 = (($546) + 4)|0; - $550 = $549; - $551 = HEAP32[$550>>2]|0; - $552 = (_bitshift64Ashr(0,($548|0),32)|0); - $553 = tempRet0; - $554 = $388; - $555 = $554; - $556 = HEAP32[$555>>2]|0; - $557 = (($554) + 4)|0; - $558 = $557; - $559 = HEAP32[$558>>2]|0; - $560 = (_bitshift64Ashr(0,($556|0),32)|0); - $561 = tempRet0; - $562 = (___muldi3(($560|0),($561|0),($552|0),($553|0))|0); - $563 = tempRet0; - $564 = (_i64Add(($544|0),($545|0),($562|0),($563|0))|0); - $565 = tempRet0; - $566 = $22; - $567 = $566; - $568 = HEAP32[$567>>2]|0; - $569 = (($566) + 4)|0; - $570 = $569; - $571 = HEAP32[$570>>2]|0; - $572 = (_bitshift64Ashr(0,($568|0),32)|0); - $573 = tempRet0; - $574 = $444; - $575 = $574; - $576 = HEAP32[$575>>2]|0; - $577 = (($574) + 4)|0; - $578 = $577; - $579 = HEAP32[$578>>2]|0; - $580 = (_bitshift64Ashr(0,($576|0),32)|0); - $581 = tempRet0; - $582 = (___muldi3(($580|0),($581|0),($572|0),($573|0))|0); - $583 = tempRet0; - $584 = (_i64Add(($564|0),($565|0),($582|0),($583|0))|0); - $585 = tempRet0; - $586 = $in; - $587 = $586; - $588 = HEAP32[$587>>2]|0; - $589 = (($586) + 4)|0; - $590 = $589; - $591 = HEAP32[$590>>2]|0; - $592 = (_bitshift64Ashr(0,($588|0),32)|0); - $593 = tempRet0; - $594 = ((($in)) + 72|0); - $595 = $594; - $596 = $595; - $597 = HEAP32[$596>>2]|0; - $598 = (($595) + 4)|0; - $599 = $598; - $600 = HEAP32[$599>>2]|0; - $601 = (_bitshift64Ashr(0,($597|0),32)|0); - $602 = tempRet0; - $603 = (___muldi3(($601|0),($602|0),($592|0),($593|0))|0); - $604 = tempRet0; - $605 = (_i64Add(($584|0),($585|0),($603|0),($604|0))|0); - $606 = tempRet0; - $607 = (_bitshift64Shl(($605|0),($606|0),1)|0); - $608 = tempRet0; - $609 = ((($output)) + 72|0); - $610 = $609; - $611 = $610; - HEAP32[$611>>2] = $607; - $612 = (($610) + 4)|0; - $613 = $612; - HEAP32[$613>>2] = $608; - $614 = $224; - $615 = $614; - $616 = HEAP32[$615>>2]|0; - $617 = (($614) + 4)|0; - $618 = $617; - $619 = HEAP32[$618>>2]|0; - $620 = (_bitshift64Ashr(0,($616|0),32)|0); - $621 = tempRet0; - $622 = (___muldi3(($620|0),($621|0),($620|0),($621|0))|0); - $623 = tempRet0; - $624 = $160; - $625 = $624; - $626 = HEAP32[$625>>2]|0; - $627 = (($624) + 4)|0; - $628 = $627; - $629 = HEAP32[$628>>2]|0; - $630 = (_bitshift64Ashr(0,($626|0),32)|0); - $631 = tempRet0; - $632 = $282; - $633 = $632; - $634 = HEAP32[$633>>2]|0; - $635 = (($632) + 4)|0; - $636 = $635; - $637 = HEAP32[$636>>2]|0; - $638 = (_bitshift64Ashr(0,($634|0),32)|0); - $639 = tempRet0; - $640 = (___muldi3(($638|0),($639|0),($630|0),($631|0))|0); - $641 = tempRet0; - $642 = (_i64Add(($640|0),($641|0),($622|0),($623|0))|0); - $643 = tempRet0; - $644 = $56; - $645 = $644; - $646 = HEAP32[$645>>2]|0; - $647 = (($644) + 4)|0; - $648 = $647; - $649 = HEAP32[$648>>2]|0; - $650 = (_bitshift64Ashr(0,($646|0),32)|0); - $651 = tempRet0; - $652 = $444; - $653 = $652; - $654 = HEAP32[$653>>2]|0; - $655 = (($652) + 4)|0; - $656 = $655; - $657 = HEAP32[$656>>2]|0; - $658 = (_bitshift64Ashr(0,($654|0),32)|0); - $659 = tempRet0; - $660 = (___muldi3(($658|0),($659|0),($650|0),($651|0))|0); - $661 = tempRet0; - $662 = (_i64Add(($642|0),($643|0),($660|0),($661|0))|0); - $663 = tempRet0; - $664 = $102; - $665 = $664; - $666 = HEAP32[$665>>2]|0; - $667 = (($664) + 4)|0; - $668 = $667; - $669 = HEAP32[$668>>2]|0; - $670 = (_bitshift64Ashr(0,($666|0),32)|0); - $671 = tempRet0; - $672 = $388; - $673 = $672; - $674 = HEAP32[$673>>2]|0; - $675 = (($672) + 4)|0; - $676 = $675; - $677 = HEAP32[$676>>2]|0; - $678 = (_bitshift64Ashr(0,($674|0),32)|0); - $679 = tempRet0; - $680 = (___muldi3(($678|0),($679|0),($670|0),($671|0))|0); - $681 = tempRet0; - $682 = $22; - $683 = $682; - $684 = HEAP32[$683>>2]|0; - $685 = (($682) + 4)|0; - $686 = $685; - $687 = HEAP32[$686>>2]|0; - $688 = (_bitshift64Ashr(0,($684|0),32)|0); - $689 = tempRet0; - $690 = $594; - $691 = $690; - $692 = HEAP32[$691>>2]|0; - $693 = (($690) + 4)|0; - $694 = $693; - $695 = HEAP32[$694>>2]|0; - $696 = (_bitshift64Ashr(0,($692|0),32)|0); - $697 = tempRet0; - $698 = (___muldi3(($696|0),($697|0),($688|0),($689|0))|0); - $699 = tempRet0; - $700 = (_i64Add(($698|0),($699|0),($680|0),($681|0))|0); - $701 = tempRet0; - $702 = (_bitshift64Shl(($700|0),($701|0),1)|0); - $703 = tempRet0; - $704 = (_i64Add(($662|0),($663|0),($702|0),($703|0))|0); - $705 = tempRet0; - $706 = (_bitshift64Shl(($704|0),($705|0),1)|0); - $707 = tempRet0; - $708 = ((($output)) + 80|0); - $709 = $708; - $710 = $709; - HEAP32[$710>>2] = $706; - $711 = (($709) + 4)|0; - $712 = $711; - HEAP32[$712>>2] = $707; - $713 = $224; - $714 = $713; - $715 = HEAP32[$714>>2]|0; - $716 = (($713) + 4)|0; - $717 = $716; - $718 = HEAP32[$717>>2]|0; - $719 = (_bitshift64Ashr(0,($715|0),32)|0); - $720 = tempRet0; - $721 = $282; - $722 = $721; - $723 = HEAP32[$722>>2]|0; - $724 = (($721) + 4)|0; - $725 = $724; - $726 = HEAP32[$725>>2]|0; - $727 = (_bitshift64Ashr(0,($723|0),32)|0); - $728 = tempRet0; - $729 = (___muldi3(($727|0),($728|0),($719|0),($720|0))|0); - $730 = tempRet0; - $731 = $160; - $732 = $731; - $733 = HEAP32[$732>>2]|0; - $734 = (($731) + 4)|0; - $735 = $734; - $736 = HEAP32[$735>>2]|0; - $737 = (_bitshift64Ashr(0,($733|0),32)|0); - $738 = tempRet0; - $739 = $388; - $740 = $739; - $741 = HEAP32[$740>>2]|0; - $742 = (($739) + 4)|0; - $743 = $742; - $744 = HEAP32[$743>>2]|0; - $745 = (_bitshift64Ashr(0,($741|0),32)|0); - $746 = tempRet0; - $747 = (___muldi3(($745|0),($746|0),($737|0),($738|0))|0); - $748 = tempRet0; - $749 = (_i64Add(($747|0),($748|0),($729|0),($730|0))|0); - $750 = tempRet0; - $751 = $102; - $752 = $751; - $753 = HEAP32[$752>>2]|0; - $754 = (($751) + 4)|0; - $755 = $754; - $756 = HEAP32[$755>>2]|0; - $757 = (_bitshift64Ashr(0,($753|0),32)|0); - $758 = tempRet0; - $759 = $444; - $760 = $759; - $761 = HEAP32[$760>>2]|0; - $762 = (($759) + 4)|0; - $763 = $762; - $764 = HEAP32[$763>>2]|0; - $765 = (_bitshift64Ashr(0,($761|0),32)|0); - $766 = tempRet0; - $767 = (___muldi3(($765|0),($766|0),($757|0),($758|0))|0); - $768 = tempRet0; - $769 = (_i64Add(($749|0),($750|0),($767|0),($768|0))|0); - $770 = tempRet0; - $771 = $56; - $772 = $771; - $773 = HEAP32[$772>>2]|0; - $774 = (($771) + 4)|0; - $775 = $774; - $776 = HEAP32[$775>>2]|0; - $777 = (_bitshift64Ashr(0,($773|0),32)|0); - $778 = tempRet0; - $779 = $594; - $780 = $779; - $781 = HEAP32[$780>>2]|0; - $782 = (($779) + 4)|0; - $783 = $782; - $784 = HEAP32[$783>>2]|0; - $785 = (_bitshift64Ashr(0,($781|0),32)|0); - $786 = tempRet0; - $787 = (___muldi3(($785|0),($786|0),($777|0),($778|0))|0); - $788 = tempRet0; - $789 = (_i64Add(($769|0),($770|0),($787|0),($788|0))|0); - $790 = tempRet0; - $791 = (_bitshift64Shl(($789|0),($790|0),1)|0); - $792 = tempRet0; - $793 = ((($output)) + 88|0); - $794 = $793; - $795 = $794; - HEAP32[$795>>2] = $791; - $796 = (($794) + 4)|0; - $797 = $796; - HEAP32[$797>>2] = $792; - $798 = $282; - $799 = $798; - $800 = HEAP32[$799>>2]|0; - $801 = (($798) + 4)|0; - $802 = $801; - $803 = HEAP32[$802>>2]|0; - $804 = (_bitshift64Ashr(0,($800|0),32)|0); - $805 = tempRet0; - $806 = (___muldi3(($804|0),($805|0),($804|0),($805|0))|0); - $807 = tempRet0; - $808 = $160; - $809 = $808; - $810 = HEAP32[$809>>2]|0; - $811 = (($808) + 4)|0; - $812 = $811; - $813 = HEAP32[$812>>2]|0; - $814 = (_bitshift64Ashr(0,($810|0),32)|0); - $815 = tempRet0; - $816 = $444; - $817 = $816; - $818 = HEAP32[$817>>2]|0; - $819 = (($816) + 4)|0; - $820 = $819; - $821 = HEAP32[$820>>2]|0; - $822 = (_bitshift64Ashr(0,($818|0),32)|0); - $823 = tempRet0; - $824 = (___muldi3(($822|0),($823|0),($814|0),($815|0))|0); - $825 = tempRet0; - $826 = $224; - $827 = $826; - $828 = HEAP32[$827>>2]|0; - $829 = (($826) + 4)|0; - $830 = $829; - $831 = HEAP32[$830>>2]|0; - $832 = (_bitshift64Ashr(0,($828|0),32)|0); - $833 = tempRet0; - $834 = $388; - $835 = $834; - $836 = HEAP32[$835>>2]|0; - $837 = (($834) + 4)|0; - $838 = $837; - $839 = HEAP32[$838>>2]|0; - $840 = (_bitshift64Ashr(0,($836|0),32)|0); - $841 = tempRet0; - $842 = (___muldi3(($840|0),($841|0),($832|0),($833|0))|0); - $843 = tempRet0; - $844 = $102; - $845 = $844; - $846 = HEAP32[$845>>2]|0; - $847 = (($844) + 4)|0; - $848 = $847; - $849 = HEAP32[$848>>2]|0; - $850 = (_bitshift64Ashr(0,($846|0),32)|0); - $851 = tempRet0; - $852 = $594; - $853 = $852; - $854 = HEAP32[$853>>2]|0; - $855 = (($852) + 4)|0; - $856 = $855; - $857 = HEAP32[$856>>2]|0; - $858 = (_bitshift64Ashr(0,($854|0),32)|0); - $859 = tempRet0; - $860 = (___muldi3(($858|0),($859|0),($850|0),($851|0))|0); - $861 = tempRet0; - $862 = (_i64Add(($860|0),($861|0),($842|0),($843|0))|0); - $863 = tempRet0; - $864 = (_bitshift64Shl(($862|0),($863|0),1)|0); - $865 = tempRet0; - $866 = (_i64Add(($864|0),($865|0),($824|0),($825|0))|0); - $867 = tempRet0; - $868 = (_bitshift64Shl(($866|0),($867|0),1)|0); - $869 = tempRet0; - $870 = (_i64Add(($868|0),($869|0),($806|0),($807|0))|0); - $871 = tempRet0; - $872 = ((($output)) + 96|0); - $873 = $872; - $874 = $873; - HEAP32[$874>>2] = $870; - $875 = (($873) + 4)|0; - $876 = $875; - HEAP32[$876>>2] = $871; - $877 = $282; - $878 = $877; - $879 = HEAP32[$878>>2]|0; - $880 = (($877) + 4)|0; - $881 = $880; - $882 = HEAP32[$881>>2]|0; - $883 = (_bitshift64Ashr(0,($879|0),32)|0); - $884 = tempRet0; - $885 = $388; - $886 = $885; - $887 = HEAP32[$886>>2]|0; - $888 = (($885) + 4)|0; - $889 = $888; - $890 = HEAP32[$889>>2]|0; - $891 = (_bitshift64Ashr(0,($887|0),32)|0); - $892 = tempRet0; - $893 = (___muldi3(($891|0),($892|0),($883|0),($884|0))|0); - $894 = tempRet0; - $895 = $224; - $896 = $895; - $897 = HEAP32[$896>>2]|0; - $898 = (($895) + 4)|0; - $899 = $898; - $900 = HEAP32[$899>>2]|0; - $901 = (_bitshift64Ashr(0,($897|0),32)|0); - $902 = tempRet0; - $903 = $444; - $904 = $903; - $905 = HEAP32[$904>>2]|0; - $906 = (($903) + 4)|0; - $907 = $906; - $908 = HEAP32[$907>>2]|0; - $909 = (_bitshift64Ashr(0,($905|0),32)|0); - $910 = tempRet0; - $911 = (___muldi3(($909|0),($910|0),($901|0),($902|0))|0); - $912 = tempRet0; - $913 = (_i64Add(($911|0),($912|0),($893|0),($894|0))|0); - $914 = tempRet0; - $915 = $160; - $916 = $915; - $917 = HEAP32[$916>>2]|0; - $918 = (($915) + 4)|0; - $919 = $918; - $920 = HEAP32[$919>>2]|0; - $921 = (_bitshift64Ashr(0,($917|0),32)|0); - $922 = tempRet0; - $923 = $594; - $924 = $923; - $925 = HEAP32[$924>>2]|0; - $926 = (($923) + 4)|0; - $927 = $926; - $928 = HEAP32[$927>>2]|0; - $929 = (_bitshift64Ashr(0,($925|0),32)|0); - $930 = tempRet0; - $931 = (___muldi3(($929|0),($930|0),($921|0),($922|0))|0); - $932 = tempRet0; - $933 = (_i64Add(($913|0),($914|0),($931|0),($932|0))|0); - $934 = tempRet0; - $935 = (_bitshift64Shl(($933|0),($934|0),1)|0); - $936 = tempRet0; - $937 = ((($output)) + 104|0); - $938 = $937; - $939 = $938; - HEAP32[$939>>2] = $935; - $940 = (($938) + 4)|0; - $941 = $940; - HEAP32[$941>>2] = $936; - $942 = $388; - $943 = $942; - $944 = HEAP32[$943>>2]|0; - $945 = (($942) + 4)|0; - $946 = $945; - $947 = HEAP32[$946>>2]|0; - $948 = (_bitshift64Ashr(0,($944|0),32)|0); - $949 = tempRet0; - $950 = (___muldi3(($948|0),($949|0),($948|0),($949|0))|0); - $951 = tempRet0; - $952 = $282; - $953 = $952; - $954 = HEAP32[$953>>2]|0; - $955 = (($952) + 4)|0; - $956 = $955; - $957 = HEAP32[$956>>2]|0; - $958 = (_bitshift64Ashr(0,($954|0),32)|0); - $959 = tempRet0; - $960 = $444; - $961 = $960; - $962 = HEAP32[$961>>2]|0; - $963 = (($960) + 4)|0; - $964 = $963; - $965 = HEAP32[$964>>2]|0; - $966 = (_bitshift64Ashr(0,($962|0),32)|0); - $967 = tempRet0; - $968 = (___muldi3(($966|0),($967|0),($958|0),($959|0))|0); - $969 = tempRet0; - $970 = (_i64Add(($968|0),($969|0),($950|0),($951|0))|0); - $971 = tempRet0; - $972 = $224; - $973 = $972; - $974 = HEAP32[$973>>2]|0; - $975 = (($972) + 4)|0; - $976 = $975; - $977 = HEAP32[$976>>2]|0; - $978 = (_bitshift64Ashr(0,($974|0),31)|0); - $979 = tempRet0; - $980 = $594; - $981 = $980; - $982 = HEAP32[$981>>2]|0; - $983 = (($980) + 4)|0; - $984 = $983; - $985 = HEAP32[$984>>2]|0; - $986 = (_bitshift64Ashr(0,($982|0),32)|0); - $987 = tempRet0; - $988 = (___muldi3(($986|0),($987|0),($978|0),($979|0))|0); - $989 = tempRet0; - $990 = (_i64Add(($970|0),($971|0),($988|0),($989|0))|0); - $991 = tempRet0; - $992 = (_bitshift64Shl(($990|0),($991|0),1)|0); - $993 = tempRet0; - $994 = ((($output)) + 112|0); - $995 = $994; - $996 = $995; - HEAP32[$996>>2] = $992; - $997 = (($995) + 4)|0; - $998 = $997; - HEAP32[$998>>2] = $993; - $999 = $388; - $1000 = $999; - $1001 = HEAP32[$1000>>2]|0; - $1002 = (($999) + 4)|0; - $1003 = $1002; - $1004 = HEAP32[$1003>>2]|0; - $1005 = (_bitshift64Ashr(0,($1001|0),32)|0); - $1006 = tempRet0; - $1007 = $444; - $1008 = $1007; - $1009 = HEAP32[$1008>>2]|0; - $1010 = (($1007) + 4)|0; - $1011 = $1010; - $1012 = HEAP32[$1011>>2]|0; - $1013 = (_bitshift64Ashr(0,($1009|0),32)|0); - $1014 = tempRet0; - $1015 = (___muldi3(($1013|0),($1014|0),($1005|0),($1006|0))|0); - $1016 = tempRet0; - $1017 = $282; - $1018 = $1017; - $1019 = HEAP32[$1018>>2]|0; - $1020 = (($1017) + 4)|0; - $1021 = $1020; - $1022 = HEAP32[$1021>>2]|0; - $1023 = (_bitshift64Ashr(0,($1019|0),32)|0); - $1024 = tempRet0; - $1025 = $594; - $1026 = $1025; - $1027 = HEAP32[$1026>>2]|0; - $1028 = (($1025) + 4)|0; - $1029 = $1028; - $1030 = HEAP32[$1029>>2]|0; - $1031 = (_bitshift64Ashr(0,($1027|0),32)|0); - $1032 = tempRet0; - $1033 = (___muldi3(($1031|0),($1032|0),($1023|0),($1024|0))|0); - $1034 = tempRet0; - $1035 = (_i64Add(($1033|0),($1034|0),($1015|0),($1016|0))|0); - $1036 = tempRet0; - $1037 = (_bitshift64Shl(($1035|0),($1036|0),1)|0); - $1038 = tempRet0; - $1039 = ((($output)) + 120|0); - $1040 = $1039; - $1041 = $1040; - HEAP32[$1041>>2] = $1037; - $1042 = (($1040) + 4)|0; - $1043 = $1042; - HEAP32[$1043>>2] = $1038; - $1044 = $444; - $1045 = $1044; - $1046 = HEAP32[$1045>>2]|0; - $1047 = (($1044) + 4)|0; - $1048 = $1047; - $1049 = HEAP32[$1048>>2]|0; - $1050 = (_bitshift64Ashr(0,($1046|0),32)|0); - $1051 = tempRet0; - $1052 = (___muldi3(($1050|0),($1051|0),($1050|0),($1051|0))|0); - $1053 = tempRet0; - $1054 = $388; - $1055 = $1054; - $1056 = HEAP32[$1055>>2]|0; - $1057 = (($1054) + 4)|0; - $1058 = $1057; - $1059 = HEAP32[$1058>>2]|0; - $1060 = (_bitshift64Ashr(0,($1056|0),30)|0); - $1061 = tempRet0; - $1062 = $594; - $1063 = $1062; - $1064 = HEAP32[$1063>>2]|0; - $1065 = (($1062) + 4)|0; - $1066 = $1065; - $1067 = HEAP32[$1066>>2]|0; - $1068 = (_bitshift64Ashr(0,($1064|0),32)|0); - $1069 = tempRet0; - $1070 = (___muldi3(($1068|0),($1069|0),($1060|0),($1061|0))|0); - $1071 = tempRet0; - $1072 = (_i64Add(($1070|0),($1071|0),($1052|0),($1053|0))|0); - $1073 = tempRet0; - $1074 = ((($output)) + 128|0); - $1075 = $1074; - $1076 = $1075; - HEAP32[$1076>>2] = $1072; - $1077 = (($1075) + 4)|0; - $1078 = $1077; - HEAP32[$1078>>2] = $1073; - $1079 = $444; - $1080 = $1079; - $1081 = HEAP32[$1080>>2]|0; - $1082 = (($1079) + 4)|0; - $1083 = $1082; - $1084 = HEAP32[$1083>>2]|0; - $1085 = (_bitshift64Ashr(0,($1081|0),31)|0); - $1086 = tempRet0; - $1087 = $594; - $1088 = $1087; - $1089 = HEAP32[$1088>>2]|0; - $1090 = (($1087) + 4)|0; - $1091 = $1090; - $1092 = HEAP32[$1091>>2]|0; - $1093 = (_bitshift64Ashr(0,($1089|0),32)|0); - $1094 = tempRet0; - $1095 = (___muldi3(($1093|0),($1094|0),($1085|0),($1086|0))|0); - $1096 = tempRet0; - $1097 = ((($output)) + 136|0); - $1098 = $1097; - $1099 = $1098; - HEAP32[$1099>>2] = $1095; - $1100 = (($1098) + 4)|0; - $1101 = $1100; - HEAP32[$1101>>2] = $1096; - $1102 = $594; - $1103 = $1102; - $1104 = HEAP32[$1103>>2]|0; - $1105 = (($1102) + 4)|0; - $1106 = $1105; - $1107 = HEAP32[$1106>>2]|0; - $1108 = (_bitshift64Ashr(0,($1104|0),32)|0); - $1109 = tempRet0; - $1110 = (_bitshift64Ashr(0,($1104|0),31)|0); - $1111 = tempRet0; - $1112 = (___muldi3(($1110|0),($1111|0),($1108|0),($1109|0))|0); - $1113 = tempRet0; - $1114 = ((($output)) + 144|0); - $1115 = $1114; - $1116 = $1115; - HEAP32[$1116>>2] = $1112; - $1117 = (($1115) + 4)|0; - $1118 = $1117; - HEAP32[$1118>>2] = $1113; - return; -} -function _swap_conditional($a,$b,$0,$1) { - $a = $a|0; - $b = $b|0; - $0 = $0|0; - $1 = $1|0; - var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; - var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0; - var $9 = 0, $exitcond = 0, $i$02 = 0, label = 0, sp = 0; - sp = STACKTOP; - $2 = (_i64Subtract(0,0,($0|0),($1|0))|0); - $3 = tempRet0; - $i$02 = 0; - while(1) { - $4 = (($a) + ($i$02<<3)|0); - $5 = $4; - $6 = $5; - $7 = HEAP32[$6>>2]|0; - $8 = (($5) + 4)|0; - $9 = $8; - $10 = HEAP32[$9>>2]|0; - $11 = (($b) + ($i$02<<3)|0); - $12 = $11; - $13 = $12; - $14 = HEAP32[$13>>2]|0; - $15 = (($12) + 4)|0; - $16 = $15; - $17 = HEAP32[$16>>2]|0; - $18 = $14 ^ $7; - $19 = $17 ^ $10; - $20 = $18 & $2; - $21 = $19 & $3; - $22 = $20 ^ $7; - $21 ^ $10; - $23 = (_bitshift64Ashr(0,($22|0),32)|0); - $24 = tempRet0; - $25 = $4; - $26 = $25; - HEAP32[$26>>2] = $23; - $27 = (($25) + 4)|0; - $28 = $27; - HEAP32[$28>>2] = $24; - $29 = $11; - $30 = $29; - $31 = HEAP32[$30>>2]|0; - $32 = (($29) + 4)|0; - $33 = $32; - $34 = HEAP32[$33>>2]|0; - $35 = $20 ^ $31; - $21 ^ $34; - $36 = (_bitshift64Ashr(0,($35|0),32)|0); - $37 = tempRet0; - $38 = $11; - $39 = $38; - HEAP32[$39>>2] = $36; - $40 = (($38) + 4)|0; - $41 = $40; - HEAP32[$41>>2] = $37; - $42 = (($i$02) + 1)|0; - $exitcond = ($42|0)==(10); - if ($exitcond) { - break; - } else { - $i$02 = $42; - } - } - return; -} -function _fmonty($x2,$z2,$x3,$z3,$x,$z,$xprime,$zprime,$qmqp) { - $x2 = $x2|0; - $z2 = $z2|0; - $x3 = $x3|0; - $z3 = $z3|0; - $x = $x|0; - $z = $z|0; - $xprime = $xprime|0; - $zprime = $zprime|0; - $qmqp = $qmqp|0; - var $0 = 0, $origx = 0, $origxprime = 0, $xx = 0, $xxprime = 0, $xxxprime = 0, $zz = 0, $zzprime = 0, $zzz = 0, $zzzprime = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 1232|0; - $origx = sp + 1144|0; - $origxprime = sp + 1064|0; - $zzz = sp + 912|0; - $xx = sp + 760|0; - $zz = sp + 608|0; - $xxprime = sp + 456|0; - $zzprime = sp + 304|0; - $zzzprime = sp + 152|0; - $xxxprime = sp; - dest=$origx; src=$x; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - _fsum($x,$z); - _fdifference($z,$origx); - dest=$origxprime; src=$xprime; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - _fsum($xprime,$zprime); - _fdifference($zprime,$origxprime); - _fproduct($xxprime,$xprime,$z); - _fproduct($zzprime,$x,$zprime); - _freduce_degree($xxprime); - _freduce_coefficients($xxprime); - _freduce_degree($zzprime); - _freduce_coefficients($zzprime); - dest=$origxprime; src=$xxprime; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - _fsum($xxprime,$zzprime); - _fdifference($zzprime,$origxprime); - _fsquare($xxxprime,$xxprime); - _fsquare($zzzprime,$zzprime); - _fproduct($zzprime,$zzzprime,$qmqp); - _freduce_degree($zzprime); - _freduce_coefficients($zzprime); - dest=$x3; src=$xxxprime; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - dest=$z3; src=$zzprime; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - _fsquare($xx,$x); - _fsquare($zz,$z); - _fproduct($x2,$xx,$zz); - _freduce_degree($x2); - _freduce_coefficients($x2); - _fdifference($zz,$xx); - $0 = ((($zzz)) + 80|0); - dest=$0; stop=dest+72|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); - _fscalar_product($zzz,$zz); - _freduce_coefficients($zzz); - _fsum($zzz,$xx); - _fproduct($z2,$zz,$zzz); - _freduce_degree($z2); - _freduce_coefficients($z2); - STACKTOP = sp;return; -} -function _fsum($output,$in) { - $output = $output|0; - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; - var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; - var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; - var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; - var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = $output; - $1 = $0; - $2 = HEAP32[$1>>2]|0; - $3 = (($0) + 4)|0; - $4 = $3; - $5 = HEAP32[$4>>2]|0; - $6 = $in; - $7 = $6; - $8 = HEAP32[$7>>2]|0; - $9 = (($6) + 4)|0; - $10 = $9; - $11 = HEAP32[$10>>2]|0; - $12 = (_i64Add(($8|0),($11|0),($2|0),($5|0))|0); - $13 = tempRet0; - $14 = $output; - $15 = $14; - HEAP32[$15>>2] = $12; - $16 = (($14) + 4)|0; - $17 = $16; - HEAP32[$17>>2] = $13; - $18 = ((($output)) + 8|0); - $19 = $18; - $20 = $19; - $21 = HEAP32[$20>>2]|0; - $22 = (($19) + 4)|0; - $23 = $22; - $24 = HEAP32[$23>>2]|0; - $25 = ((($in)) + 8|0); - $26 = $25; - $27 = $26; - $28 = HEAP32[$27>>2]|0; - $29 = (($26) + 4)|0; - $30 = $29; - $31 = HEAP32[$30>>2]|0; - $32 = (_i64Add(($28|0),($31|0),($21|0),($24|0))|0); - $33 = tempRet0; - $34 = $18; - $35 = $34; - HEAP32[$35>>2] = $32; - $36 = (($34) + 4)|0; - $37 = $36; - HEAP32[$37>>2] = $33; - $38 = ((($output)) + 16|0); - $39 = $38; - $40 = $39; - $41 = HEAP32[$40>>2]|0; - $42 = (($39) + 4)|0; - $43 = $42; - $44 = HEAP32[$43>>2]|0; - $45 = ((($in)) + 16|0); - $46 = $45; - $47 = $46; - $48 = HEAP32[$47>>2]|0; - $49 = (($46) + 4)|0; - $50 = $49; - $51 = HEAP32[$50>>2]|0; - $52 = (_i64Add(($48|0),($51|0),($41|0),($44|0))|0); - $53 = tempRet0; - $54 = $38; - $55 = $54; - HEAP32[$55>>2] = $52; - $56 = (($54) + 4)|0; - $57 = $56; - HEAP32[$57>>2] = $53; - $58 = ((($output)) + 24|0); - $59 = $58; - $60 = $59; - $61 = HEAP32[$60>>2]|0; - $62 = (($59) + 4)|0; - $63 = $62; - $64 = HEAP32[$63>>2]|0; - $65 = ((($in)) + 24|0); - $66 = $65; - $67 = $66; - $68 = HEAP32[$67>>2]|0; - $69 = (($66) + 4)|0; - $70 = $69; - $71 = HEAP32[$70>>2]|0; - $72 = (_i64Add(($68|0),($71|0),($61|0),($64|0))|0); - $73 = tempRet0; - $74 = $58; - $75 = $74; - HEAP32[$75>>2] = $72; - $76 = (($74) + 4)|0; - $77 = $76; - HEAP32[$77>>2] = $73; - $78 = ((($output)) + 32|0); - $79 = $78; - $80 = $79; - $81 = HEAP32[$80>>2]|0; - $82 = (($79) + 4)|0; - $83 = $82; - $84 = HEAP32[$83>>2]|0; - $85 = ((($in)) + 32|0); - $86 = $85; - $87 = $86; - $88 = HEAP32[$87>>2]|0; - $89 = (($86) + 4)|0; - $90 = $89; - $91 = HEAP32[$90>>2]|0; - $92 = (_i64Add(($88|0),($91|0),($81|0),($84|0))|0); - $93 = tempRet0; - $94 = $78; - $95 = $94; - HEAP32[$95>>2] = $92; - $96 = (($94) + 4)|0; - $97 = $96; - HEAP32[$97>>2] = $93; - $98 = ((($output)) + 40|0); - $99 = $98; - $100 = $99; - $101 = HEAP32[$100>>2]|0; - $102 = (($99) + 4)|0; - $103 = $102; - $104 = HEAP32[$103>>2]|0; - $105 = ((($in)) + 40|0); - $106 = $105; - $107 = $106; - $108 = HEAP32[$107>>2]|0; - $109 = (($106) + 4)|0; - $110 = $109; - $111 = HEAP32[$110>>2]|0; - $112 = (_i64Add(($108|0),($111|0),($101|0),($104|0))|0); - $113 = tempRet0; - $114 = $98; - $115 = $114; - HEAP32[$115>>2] = $112; - $116 = (($114) + 4)|0; - $117 = $116; - HEAP32[$117>>2] = $113; - $118 = ((($output)) + 48|0); - $119 = $118; - $120 = $119; - $121 = HEAP32[$120>>2]|0; - $122 = (($119) + 4)|0; - $123 = $122; - $124 = HEAP32[$123>>2]|0; - $125 = ((($in)) + 48|0); - $126 = $125; - $127 = $126; - $128 = HEAP32[$127>>2]|0; - $129 = (($126) + 4)|0; - $130 = $129; - $131 = HEAP32[$130>>2]|0; - $132 = (_i64Add(($128|0),($131|0),($121|0),($124|0))|0); - $133 = tempRet0; - $134 = $118; - $135 = $134; - HEAP32[$135>>2] = $132; - $136 = (($134) + 4)|0; - $137 = $136; - HEAP32[$137>>2] = $133; - $138 = ((($output)) + 56|0); - $139 = $138; - $140 = $139; - $141 = HEAP32[$140>>2]|0; - $142 = (($139) + 4)|0; - $143 = $142; - $144 = HEAP32[$143>>2]|0; - $145 = ((($in)) + 56|0); - $146 = $145; - $147 = $146; - $148 = HEAP32[$147>>2]|0; - $149 = (($146) + 4)|0; - $150 = $149; - $151 = HEAP32[$150>>2]|0; - $152 = (_i64Add(($148|0),($151|0),($141|0),($144|0))|0); - $153 = tempRet0; - $154 = $138; - $155 = $154; - HEAP32[$155>>2] = $152; - $156 = (($154) + 4)|0; - $157 = $156; - HEAP32[$157>>2] = $153; - $158 = ((($output)) + 64|0); - $159 = $158; - $160 = $159; - $161 = HEAP32[$160>>2]|0; - $162 = (($159) + 4)|0; - $163 = $162; - $164 = HEAP32[$163>>2]|0; - $165 = ((($in)) + 64|0); - $166 = $165; - $167 = $166; - $168 = HEAP32[$167>>2]|0; - $169 = (($166) + 4)|0; - $170 = $169; - $171 = HEAP32[$170>>2]|0; - $172 = (_i64Add(($168|0),($171|0),($161|0),($164|0))|0); - $173 = tempRet0; - $174 = $158; - $175 = $174; - HEAP32[$175>>2] = $172; - $176 = (($174) + 4)|0; - $177 = $176; - HEAP32[$177>>2] = $173; - $178 = ((($output)) + 72|0); - $179 = $178; - $180 = $179; - $181 = HEAP32[$180>>2]|0; - $182 = (($179) + 4)|0; - $183 = $182; - $184 = HEAP32[$183>>2]|0; - $185 = ((($in)) + 72|0); - $186 = $185; - $187 = $186; - $188 = HEAP32[$187>>2]|0; - $189 = (($186) + 4)|0; - $190 = $189; - $191 = HEAP32[$190>>2]|0; - $192 = (_i64Add(($188|0),($191|0),($181|0),($184|0))|0); - $193 = tempRet0; - $194 = $178; - $195 = $194; - HEAP32[$195>>2] = $192; - $196 = (($194) + 4)|0; - $197 = $196; - HEAP32[$197>>2] = $193; - return; -} -function _fdifference($output,$in) { - $output = $output|0; - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; - var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; - var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; - var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; - var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = $in; - $1 = $0; - $2 = HEAP32[$1>>2]|0; - $3 = (($0) + 4)|0; - $4 = $3; - $5 = HEAP32[$4>>2]|0; - $6 = $output; - $7 = $6; - $8 = HEAP32[$7>>2]|0; - $9 = (($6) + 4)|0; - $10 = $9; - $11 = HEAP32[$10>>2]|0; - $12 = (_i64Subtract(($2|0),($5|0),($8|0),($11|0))|0); - $13 = tempRet0; - $14 = $output; - $15 = $14; - HEAP32[$15>>2] = $12; - $16 = (($14) + 4)|0; - $17 = $16; - HEAP32[$17>>2] = $13; - $18 = ((($in)) + 8|0); - $19 = $18; - $20 = $19; - $21 = HEAP32[$20>>2]|0; - $22 = (($19) + 4)|0; - $23 = $22; - $24 = HEAP32[$23>>2]|0; - $25 = ((($output)) + 8|0); - $26 = $25; - $27 = $26; - $28 = HEAP32[$27>>2]|0; - $29 = (($26) + 4)|0; - $30 = $29; - $31 = HEAP32[$30>>2]|0; - $32 = (_i64Subtract(($21|0),($24|0),($28|0),($31|0))|0); - $33 = tempRet0; - $34 = $25; - $35 = $34; - HEAP32[$35>>2] = $32; - $36 = (($34) + 4)|0; - $37 = $36; - HEAP32[$37>>2] = $33; - $38 = ((($in)) + 16|0); - $39 = $38; - $40 = $39; - $41 = HEAP32[$40>>2]|0; - $42 = (($39) + 4)|0; - $43 = $42; - $44 = HEAP32[$43>>2]|0; - $45 = ((($output)) + 16|0); - $46 = $45; - $47 = $46; - $48 = HEAP32[$47>>2]|0; - $49 = (($46) + 4)|0; - $50 = $49; - $51 = HEAP32[$50>>2]|0; - $52 = (_i64Subtract(($41|0),($44|0),($48|0),($51|0))|0); - $53 = tempRet0; - $54 = $45; - $55 = $54; - HEAP32[$55>>2] = $52; - $56 = (($54) + 4)|0; - $57 = $56; - HEAP32[$57>>2] = $53; - $58 = ((($in)) + 24|0); - $59 = $58; - $60 = $59; - $61 = HEAP32[$60>>2]|0; - $62 = (($59) + 4)|0; - $63 = $62; - $64 = HEAP32[$63>>2]|0; - $65 = ((($output)) + 24|0); - $66 = $65; - $67 = $66; - $68 = HEAP32[$67>>2]|0; - $69 = (($66) + 4)|0; - $70 = $69; - $71 = HEAP32[$70>>2]|0; - $72 = (_i64Subtract(($61|0),($64|0),($68|0),($71|0))|0); - $73 = tempRet0; - $74 = $65; - $75 = $74; - HEAP32[$75>>2] = $72; - $76 = (($74) + 4)|0; - $77 = $76; - HEAP32[$77>>2] = $73; - $78 = ((($in)) + 32|0); - $79 = $78; - $80 = $79; - $81 = HEAP32[$80>>2]|0; - $82 = (($79) + 4)|0; - $83 = $82; - $84 = HEAP32[$83>>2]|0; - $85 = ((($output)) + 32|0); - $86 = $85; - $87 = $86; - $88 = HEAP32[$87>>2]|0; - $89 = (($86) + 4)|0; - $90 = $89; - $91 = HEAP32[$90>>2]|0; - $92 = (_i64Subtract(($81|0),($84|0),($88|0),($91|0))|0); - $93 = tempRet0; - $94 = $85; - $95 = $94; - HEAP32[$95>>2] = $92; - $96 = (($94) + 4)|0; - $97 = $96; - HEAP32[$97>>2] = $93; - $98 = ((($in)) + 40|0); - $99 = $98; - $100 = $99; - $101 = HEAP32[$100>>2]|0; - $102 = (($99) + 4)|0; - $103 = $102; - $104 = HEAP32[$103>>2]|0; - $105 = ((($output)) + 40|0); - $106 = $105; - $107 = $106; - $108 = HEAP32[$107>>2]|0; - $109 = (($106) + 4)|0; - $110 = $109; - $111 = HEAP32[$110>>2]|0; - $112 = (_i64Subtract(($101|0),($104|0),($108|0),($111|0))|0); - $113 = tempRet0; - $114 = $105; - $115 = $114; - HEAP32[$115>>2] = $112; - $116 = (($114) + 4)|0; - $117 = $116; - HEAP32[$117>>2] = $113; - $118 = ((($in)) + 48|0); - $119 = $118; - $120 = $119; - $121 = HEAP32[$120>>2]|0; - $122 = (($119) + 4)|0; - $123 = $122; - $124 = HEAP32[$123>>2]|0; - $125 = ((($output)) + 48|0); - $126 = $125; - $127 = $126; - $128 = HEAP32[$127>>2]|0; - $129 = (($126) + 4)|0; - $130 = $129; - $131 = HEAP32[$130>>2]|0; - $132 = (_i64Subtract(($121|0),($124|0),($128|0),($131|0))|0); - $133 = tempRet0; - $134 = $125; - $135 = $134; - HEAP32[$135>>2] = $132; - $136 = (($134) + 4)|0; - $137 = $136; - HEAP32[$137>>2] = $133; - $138 = ((($in)) + 56|0); - $139 = $138; - $140 = $139; - $141 = HEAP32[$140>>2]|0; - $142 = (($139) + 4)|0; - $143 = $142; - $144 = HEAP32[$143>>2]|0; - $145 = ((($output)) + 56|0); - $146 = $145; - $147 = $146; - $148 = HEAP32[$147>>2]|0; - $149 = (($146) + 4)|0; - $150 = $149; - $151 = HEAP32[$150>>2]|0; - $152 = (_i64Subtract(($141|0),($144|0),($148|0),($151|0))|0); - $153 = tempRet0; - $154 = $145; - $155 = $154; - HEAP32[$155>>2] = $152; - $156 = (($154) + 4)|0; - $157 = $156; - HEAP32[$157>>2] = $153; - $158 = ((($in)) + 64|0); - $159 = $158; - $160 = $159; - $161 = HEAP32[$160>>2]|0; - $162 = (($159) + 4)|0; - $163 = $162; - $164 = HEAP32[$163>>2]|0; - $165 = ((($output)) + 64|0); - $166 = $165; - $167 = $166; - $168 = HEAP32[$167>>2]|0; - $169 = (($166) + 4)|0; - $170 = $169; - $171 = HEAP32[$170>>2]|0; - $172 = (_i64Subtract(($161|0),($164|0),($168|0),($171|0))|0); - $173 = tempRet0; - $174 = $165; - $175 = $174; - HEAP32[$175>>2] = $172; - $176 = (($174) + 4)|0; - $177 = $176; - HEAP32[$177>>2] = $173; - $178 = ((($in)) + 72|0); - $179 = $178; - $180 = $179; - $181 = HEAP32[$180>>2]|0; - $182 = (($179) + 4)|0; - $183 = $182; - $184 = HEAP32[$183>>2]|0; - $185 = ((($output)) + 72|0); - $186 = $185; - $187 = $186; - $188 = HEAP32[$187>>2]|0; - $189 = (($186) + 4)|0; - $190 = $189; - $191 = HEAP32[$190>>2]|0; - $192 = (_i64Subtract(($181|0),($184|0),($188|0),($191|0))|0); - $193 = tempRet0; - $194 = $185; - $195 = $194; - HEAP32[$195>>2] = $192; - $196 = (($194) + 4)|0; - $197 = $196; - HEAP32[$197>>2] = $193; - return; -} -function _fscalar_product($output,$in) { - $output = $output|0; - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; - var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; - var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; - var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; - var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = $in; - $1 = $0; - $2 = HEAP32[$1>>2]|0; - $3 = (($0) + 4)|0; - $4 = $3; - $5 = HEAP32[$4>>2]|0; - $6 = (___muldi3(($2|0),($5|0),121665,0)|0); - $7 = tempRet0; - $8 = $output; - $9 = $8; - HEAP32[$9>>2] = $6; - $10 = (($8) + 4)|0; - $11 = $10; - HEAP32[$11>>2] = $7; - $12 = ((($in)) + 8|0); - $13 = $12; - $14 = $13; - $15 = HEAP32[$14>>2]|0; - $16 = (($13) + 4)|0; - $17 = $16; - $18 = HEAP32[$17>>2]|0; - $19 = (___muldi3(($15|0),($18|0),121665,0)|0); - $20 = tempRet0; - $21 = ((($output)) + 8|0); - $22 = $21; - $23 = $22; - HEAP32[$23>>2] = $19; - $24 = (($22) + 4)|0; - $25 = $24; - HEAP32[$25>>2] = $20; - $26 = ((($in)) + 16|0); - $27 = $26; - $28 = $27; - $29 = HEAP32[$28>>2]|0; - $30 = (($27) + 4)|0; - $31 = $30; - $32 = HEAP32[$31>>2]|0; - $33 = (___muldi3(($29|0),($32|0),121665,0)|0); - $34 = tempRet0; - $35 = ((($output)) + 16|0); - $36 = $35; - $37 = $36; - HEAP32[$37>>2] = $33; - $38 = (($36) + 4)|0; - $39 = $38; - HEAP32[$39>>2] = $34; - $40 = ((($in)) + 24|0); - $41 = $40; - $42 = $41; - $43 = HEAP32[$42>>2]|0; - $44 = (($41) + 4)|0; - $45 = $44; - $46 = HEAP32[$45>>2]|0; - $47 = (___muldi3(($43|0),($46|0),121665,0)|0); - $48 = tempRet0; - $49 = ((($output)) + 24|0); - $50 = $49; - $51 = $50; - HEAP32[$51>>2] = $47; - $52 = (($50) + 4)|0; - $53 = $52; - HEAP32[$53>>2] = $48; - $54 = ((($in)) + 32|0); - $55 = $54; - $56 = $55; - $57 = HEAP32[$56>>2]|0; - $58 = (($55) + 4)|0; - $59 = $58; - $60 = HEAP32[$59>>2]|0; - $61 = (___muldi3(($57|0),($60|0),121665,0)|0); - $62 = tempRet0; - $63 = ((($output)) + 32|0); - $64 = $63; - $65 = $64; - HEAP32[$65>>2] = $61; - $66 = (($64) + 4)|0; - $67 = $66; - HEAP32[$67>>2] = $62; - $68 = ((($in)) + 40|0); - $69 = $68; - $70 = $69; - $71 = HEAP32[$70>>2]|0; - $72 = (($69) + 4)|0; - $73 = $72; - $74 = HEAP32[$73>>2]|0; - $75 = (___muldi3(($71|0),($74|0),121665,0)|0); - $76 = tempRet0; - $77 = ((($output)) + 40|0); - $78 = $77; - $79 = $78; - HEAP32[$79>>2] = $75; - $80 = (($78) + 4)|0; - $81 = $80; - HEAP32[$81>>2] = $76; - $82 = ((($in)) + 48|0); - $83 = $82; - $84 = $83; - $85 = HEAP32[$84>>2]|0; - $86 = (($83) + 4)|0; - $87 = $86; - $88 = HEAP32[$87>>2]|0; - $89 = (___muldi3(($85|0),($88|0),121665,0)|0); - $90 = tempRet0; - $91 = ((($output)) + 48|0); - $92 = $91; - $93 = $92; - HEAP32[$93>>2] = $89; - $94 = (($92) + 4)|0; - $95 = $94; - HEAP32[$95>>2] = $90; - $96 = ((($in)) + 56|0); - $97 = $96; - $98 = $97; - $99 = HEAP32[$98>>2]|0; - $100 = (($97) + 4)|0; - $101 = $100; - $102 = HEAP32[$101>>2]|0; - $103 = (___muldi3(($99|0),($102|0),121665,0)|0); - $104 = tempRet0; - $105 = ((($output)) + 56|0); - $106 = $105; - $107 = $106; - HEAP32[$107>>2] = $103; - $108 = (($106) + 4)|0; - $109 = $108; - HEAP32[$109>>2] = $104; - $110 = ((($in)) + 64|0); - $111 = $110; - $112 = $111; - $113 = HEAP32[$112>>2]|0; - $114 = (($111) + 4)|0; - $115 = $114; - $116 = HEAP32[$115>>2]|0; - $117 = (___muldi3(($113|0),($116|0),121665,0)|0); - $118 = tempRet0; - $119 = ((($output)) + 64|0); - $120 = $119; - $121 = $120; - HEAP32[$121>>2] = $117; - $122 = (($120) + 4)|0; - $123 = $122; - HEAP32[$123>>2] = $118; - $124 = ((($in)) + 72|0); - $125 = $124; - $126 = $125; - $127 = HEAP32[$126>>2]|0; - $128 = (($125) + 4)|0; - $129 = $128; - $130 = HEAP32[$129>>2]|0; - $131 = (___muldi3(($127|0),($130|0),121665,0)|0); - $132 = tempRet0; - $133 = ((($output)) + 72|0); - $134 = $133; - $135 = $134; - HEAP32[$135>>2] = $131; - $136 = (($134) + 4)|0; - $137 = $136; - HEAP32[$137>>2] = $132; - return; -} -function _crypto_sign_ed25519_ref10_fe_0($h) { - $h = $h|0; - var dest = 0, label = 0, sp = 0, stop = 0; - sp = STACKTOP; - dest=$h; stop=dest+40|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); - return; -} -function _crypto_sign_ed25519_ref10_fe_1($h) { - $h = $h|0; - var $0 = 0, dest = 0, label = 0, sp = 0, stop = 0; - sp = STACKTOP; - HEAP32[$h>>2] = 1; - $0 = ((($h)) + 4|0); - dest=$0; stop=dest+36|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); - return; -} -function _crypto_sign_ed25519_ref10_fe_add($h,$f,$g) { - $h = $h|0; - $f = $f|0; - $g = $g|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; - var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); - $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); - $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); - $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); - $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); - $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); - $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); - $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); - $18 = HEAP32[$17>>2]|0; - $19 = HEAP32[$g>>2]|0; - $20 = ((($g)) + 4|0); - $21 = HEAP32[$20>>2]|0; - $22 = ((($g)) + 8|0); - $23 = HEAP32[$22>>2]|0; - $24 = ((($g)) + 12|0); - $25 = HEAP32[$24>>2]|0; - $26 = ((($g)) + 16|0); - $27 = HEAP32[$26>>2]|0; - $28 = ((($g)) + 20|0); - $29 = HEAP32[$28>>2]|0; - $30 = ((($g)) + 24|0); - $31 = HEAP32[$30>>2]|0; - $32 = ((($g)) + 28|0); - $33 = HEAP32[$32>>2]|0; - $34 = ((($g)) + 32|0); - $35 = HEAP32[$34>>2]|0; - $36 = ((($g)) + 36|0); - $37 = HEAP32[$36>>2]|0; - $38 = (($19) + ($0))|0; - $39 = (($21) + ($2))|0; - $40 = (($23) + ($4))|0; - $41 = (($25) + ($6))|0; - $42 = (($27) + ($8))|0; - $43 = (($29) + ($10))|0; - $44 = (($31) + ($12))|0; - $45 = (($33) + ($14))|0; - $46 = (($35) + ($16))|0; - $47 = (($37) + ($18))|0; - HEAP32[$h>>2] = $38; - $48 = ((($h)) + 4|0); - HEAP32[$48>>2] = $39; - $49 = ((($h)) + 8|0); - HEAP32[$49>>2] = $40; - $50 = ((($h)) + 12|0); - HEAP32[$50>>2] = $41; - $51 = ((($h)) + 16|0); - HEAP32[$51>>2] = $42; - $52 = ((($h)) + 20|0); - HEAP32[$52>>2] = $43; - $53 = ((($h)) + 24|0); - HEAP32[$53>>2] = $44; - $54 = ((($h)) + 28|0); - HEAP32[$54>>2] = $45; - $55 = ((($h)) + 32|0); - HEAP32[$55>>2] = $46; - $56 = ((($h)) + 36|0); - HEAP32[$56>>2] = $47; - return; -} -function _crypto_sign_ed25519_ref10_fe_cmov($f,$g,$b) { - $f = $f|0; - $g = $g|0; - $b = $b|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; - var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0; - var $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); - $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); - $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); - $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); - $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); - $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); - $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); - $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); - $18 = HEAP32[$17>>2]|0; - $19 = HEAP32[$g>>2]|0; - $20 = ((($g)) + 4|0); - $21 = HEAP32[$20>>2]|0; - $22 = ((($g)) + 8|0); - $23 = HEAP32[$22>>2]|0; - $24 = ((($g)) + 12|0); - $25 = HEAP32[$24>>2]|0; - $26 = ((($g)) + 16|0); - $27 = HEAP32[$26>>2]|0; - $28 = ((($g)) + 20|0); - $29 = HEAP32[$28>>2]|0; - $30 = ((($g)) + 24|0); - $31 = HEAP32[$30>>2]|0; - $32 = ((($g)) + 28|0); - $33 = HEAP32[$32>>2]|0; - $34 = ((($g)) + 32|0); - $35 = HEAP32[$34>>2]|0; - $36 = ((($g)) + 36|0); - $37 = HEAP32[$36>>2]|0; - $38 = $19 ^ $0; - $39 = $21 ^ $2; - $40 = $23 ^ $4; - $41 = $25 ^ $6; - $42 = $27 ^ $8; - $43 = $29 ^ $10; - $44 = $31 ^ $12; - $45 = $33 ^ $14; - $46 = $35 ^ $16; - $47 = $37 ^ $18; - $48 = (0 - ($b))|0; - $49 = $38 & $48; - $50 = $39 & $48; - $51 = $40 & $48; - $52 = $41 & $48; - $53 = $42 & $48; - $54 = $43 & $48; - $55 = $44 & $48; - $56 = $45 & $48; - $57 = $46 & $48; - $58 = $47 & $48; - $59 = $49 ^ $0; - HEAP32[$f>>2] = $59; - $60 = $50 ^ $2; - HEAP32[$1>>2] = $60; - $61 = $51 ^ $4; - HEAP32[$3>>2] = $61; - $62 = $52 ^ $6; - HEAP32[$5>>2] = $62; - $63 = $53 ^ $8; - HEAP32[$7>>2] = $63; - $64 = $54 ^ $10; - HEAP32[$9>>2] = $64; - $65 = $55 ^ $12; - HEAP32[$11>>2] = $65; - $66 = $56 ^ $14; - HEAP32[$13>>2] = $66; - $67 = $57 ^ $16; - HEAP32[$15>>2] = $67; - $68 = $58 ^ $18; - HEAP32[$17>>2] = $68; - return; -} -function _crypto_sign_ed25519_ref10_fe_copy($h,$f) { - $h = $h|0; - $f = $f|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); - $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); - $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); - $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); - $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); - $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); - $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); - $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); - $18 = HEAP32[$17>>2]|0; - HEAP32[$h>>2] = $0; - $19 = ((($h)) + 4|0); - HEAP32[$19>>2] = $2; - $20 = ((($h)) + 8|0); - HEAP32[$20>>2] = $4; - $21 = ((($h)) + 12|0); - HEAP32[$21>>2] = $6; - $22 = ((($h)) + 16|0); - HEAP32[$22>>2] = $8; - $23 = ((($h)) + 20|0); - HEAP32[$23>>2] = $10; - $24 = ((($h)) + 24|0); - HEAP32[$24>>2] = $12; - $25 = ((($h)) + 28|0); - HEAP32[$25>>2] = $14; - $26 = ((($h)) + 32|0); - HEAP32[$26>>2] = $16; - $27 = ((($h)) + 36|0); - HEAP32[$27>>2] = $18; - return; -} -function _crypto_sign_ed25519_ref10_fe_frombytes($h,$s) { - $h = $h|0; - $s = $s|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; - var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; - var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; - var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; - var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = (_load_4($s)|0); - $1 = tempRet0; - $2 = ((($s)) + 4|0); - $3 = (_load_3($2)|0); - $4 = tempRet0; - $5 = (_bitshift64Shl(($3|0),($4|0),6)|0); - $6 = tempRet0; - $7 = ((($s)) + 7|0); - $8 = (_load_3($7)|0); - $9 = tempRet0; - $10 = (_bitshift64Shl(($8|0),($9|0),5)|0); - $11 = tempRet0; - $12 = ((($s)) + 10|0); - $13 = (_load_3($12)|0); - $14 = tempRet0; - $15 = (_bitshift64Shl(($13|0),($14|0),3)|0); - $16 = tempRet0; - $17 = ((($s)) + 13|0); - $18 = (_load_3($17)|0); - $19 = tempRet0; - $20 = (_bitshift64Shl(($18|0),($19|0),2)|0); - $21 = tempRet0; - $22 = ((($s)) + 16|0); - $23 = (_load_4($22)|0); - $24 = tempRet0; - $25 = ((($s)) + 20|0); - $26 = (_load_3($25)|0); - $27 = tempRet0; - $28 = (_bitshift64Shl(($26|0),($27|0),7)|0); - $29 = tempRet0; - $30 = ((($s)) + 23|0); - $31 = (_load_3($30)|0); - $32 = tempRet0; - $33 = (_bitshift64Shl(($31|0),($32|0),5)|0); - $34 = tempRet0; - $35 = ((($s)) + 26|0); - $36 = (_load_3($35)|0); - $37 = tempRet0; - $38 = (_bitshift64Shl(($36|0),($37|0),4)|0); - $39 = tempRet0; - $40 = ((($s)) + 29|0); - $41 = (_load_3($40)|0); - $42 = tempRet0; - $43 = (_bitshift64Shl(($41|0),($42|0),2)|0); - $44 = tempRet0; - $45 = $43 & 33554428; - $46 = (_i64Add(($45|0),0,16777216,0)|0); - $47 = tempRet0; - $48 = (_bitshift64Lshr(($46|0),($47|0),25)|0); - $49 = tempRet0; - $50 = (_i64Subtract(0,0,($48|0),($49|0))|0); - $51 = tempRet0; - $52 = $50 & 19; - $53 = (_i64Add(($52|0),0,($0|0),($1|0))|0); - $54 = tempRet0; - $55 = (_bitshift64Shl(($48|0),($49|0),25)|0); - $56 = tempRet0; - $57 = (_i64Add(($5|0),($6|0),16777216,0)|0); - $58 = tempRet0; - $59 = (_bitshift64Ashr(($57|0),($58|0),25)|0); - $60 = tempRet0; - $61 = (_i64Add(($59|0),($60|0),($10|0),($11|0))|0); - $62 = tempRet0; - $63 = (_bitshift64Shl(($59|0),($60|0),25)|0); - $64 = tempRet0; - $65 = (_i64Subtract(($5|0),($6|0),($63|0),($64|0))|0); - $66 = tempRet0; - $67 = (_i64Add(($15|0),($16|0),16777216,0)|0); - $68 = tempRet0; - $69 = (_bitshift64Ashr(($67|0),($68|0),25)|0); - $70 = tempRet0; - $71 = (_i64Add(($69|0),($70|0),($20|0),($21|0))|0); - $72 = tempRet0; - $73 = (_bitshift64Shl(($69|0),($70|0),25)|0); - $74 = tempRet0; - $75 = (_i64Subtract(($15|0),($16|0),($73|0),($74|0))|0); - $76 = tempRet0; - $77 = (_i64Add(($23|0),($24|0),16777216,0)|0); - $78 = tempRet0; - $79 = (_bitshift64Ashr(($77|0),($78|0),25)|0); - $80 = tempRet0; - $81 = (_i64Add(($28|0),($29|0),($79|0),($80|0))|0); - $82 = tempRet0; - $83 = (_bitshift64Shl(($79|0),($80|0),25)|0); - $84 = tempRet0; - $85 = (_i64Subtract(($23|0),($24|0),($83|0),($84|0))|0); - $86 = tempRet0; - $87 = (_i64Add(($33|0),($34|0),16777216,0)|0); - $88 = tempRet0; - $89 = (_bitshift64Ashr(($87|0),($88|0),25)|0); - $90 = tempRet0; - $91 = (_i64Add(($89|0),($90|0),($38|0),($39|0))|0); - $92 = tempRet0; - $93 = (_bitshift64Shl(($89|0),($90|0),25)|0); - $94 = tempRet0; - $95 = (_i64Add(($53|0),($54|0),33554432,0)|0); - $96 = tempRet0; - $97 = (_bitshift64Ashr(($95|0),($96|0),26)|0); - $98 = tempRet0; - $99 = (_i64Add(($65|0),($66|0),($97|0),($98|0))|0); - $100 = tempRet0; - $101 = (_bitshift64Shl(($97|0),($98|0),26)|0); - $102 = tempRet0; - $103 = (_i64Subtract(($53|0),($54|0),($101|0),($102|0))|0); - $104 = tempRet0; - $105 = (_i64Add(($61|0),($62|0),33554432,0)|0); - $106 = tempRet0; - $107 = (_bitshift64Ashr(($105|0),($106|0),26)|0); - $108 = tempRet0; - $109 = (_i64Add(($75|0),($76|0),($107|0),($108|0))|0); - $110 = tempRet0; - $111 = (_bitshift64Shl(($107|0),($108|0),26)|0); - $112 = tempRet0; - $113 = (_i64Subtract(($61|0),($62|0),($111|0),($112|0))|0); - $114 = tempRet0; - $115 = (_i64Add(($71|0),($72|0),33554432,0)|0); - $116 = tempRet0; - $117 = (_bitshift64Ashr(($115|0),($116|0),26)|0); - $118 = tempRet0; - $119 = (_i64Add(($85|0),($86|0),($117|0),($118|0))|0); - $120 = tempRet0; - $121 = (_bitshift64Shl(($117|0),($118|0),26)|0); - $122 = tempRet0; - $123 = (_i64Subtract(($71|0),($72|0),($121|0),($122|0))|0); - $124 = tempRet0; - $125 = (_i64Add(($81|0),($82|0),33554432,0)|0); - $126 = tempRet0; - $127 = (_bitshift64Ashr(($125|0),($126|0),26)|0); - $128 = tempRet0; - $129 = (_i64Add(($127|0),($128|0),($33|0),($34|0))|0); - $130 = tempRet0; - $131 = (_i64Subtract(($129|0),($130|0),($93|0),($94|0))|0); - $132 = tempRet0; - $133 = (_bitshift64Shl(($127|0),($128|0),26)|0); - $134 = tempRet0; - $135 = (_i64Subtract(($81|0),($82|0),($133|0),($134|0))|0); - $136 = tempRet0; - $137 = (_i64Add(($91|0),($92|0),33554432,0)|0); - $138 = tempRet0; - $139 = (_bitshift64Ashr(($137|0),($138|0),26)|0); - $140 = tempRet0; - $141 = (_i64Add(($139|0),($140|0),($45|0),0)|0); - $142 = tempRet0; - $143 = (_i64Subtract(($141|0),($142|0),($55|0),($56|0))|0); - $144 = tempRet0; - $145 = (_bitshift64Shl(($139|0),($140|0),26)|0); - $146 = tempRet0; - $147 = (_i64Subtract(($91|0),($92|0),($145|0),($146|0))|0); - $148 = tempRet0; - HEAP32[$h>>2] = $103; - $149 = ((($h)) + 4|0); - HEAP32[$149>>2] = $99; - $150 = ((($h)) + 8|0); - HEAP32[$150>>2] = $113; - $151 = ((($h)) + 12|0); - HEAP32[$151>>2] = $109; - $152 = ((($h)) + 16|0); - HEAP32[$152>>2] = $123; - $153 = ((($h)) + 20|0); - HEAP32[$153>>2] = $119; - $154 = ((($h)) + 24|0); - HEAP32[$154>>2] = $135; - $155 = ((($h)) + 28|0); - HEAP32[$155>>2] = $131; - $156 = ((($h)) + 32|0); - HEAP32[$156>>2] = $147; - $157 = ((($h)) + 36|0); - HEAP32[$157>>2] = $143; - return; -} -function _load_4($in) { - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; - var $8 = 0, $9 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP8[$in>>0]|0; - $1 = $0&255; - $2 = ((($in)) + 1|0); - $3 = HEAP8[$2>>0]|0; - $4 = $3&255; - $5 = (_bitshift64Shl(($4|0),0,8)|0); - $6 = tempRet0; - $7 = $5 | $1; - $8 = ((($in)) + 2|0); - $9 = HEAP8[$8>>0]|0; - $10 = $9&255; - $11 = (_bitshift64Shl(($10|0),0,16)|0); - $12 = tempRet0; - $13 = $7 | $11; - $14 = $6 | $12; - $15 = ((($in)) + 3|0); - $16 = HEAP8[$15>>0]|0; - $17 = $16&255; - $18 = (_bitshift64Shl(($17|0),0,24)|0); - $19 = tempRet0; - $20 = $13 | $18; - $21 = $14 | $19; - tempRet0 = ($21); - return ($20|0); -} -function _load_3($in) { - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP8[$in>>0]|0; - $1 = $0&255; - $2 = ((($in)) + 1|0); - $3 = HEAP8[$2>>0]|0; - $4 = $3&255; - $5 = (_bitshift64Shl(($4|0),0,8)|0); - $6 = tempRet0; - $7 = $5 | $1; - $8 = ((($in)) + 2|0); - $9 = HEAP8[$8>>0]|0; - $10 = $9&255; - $11 = (_bitshift64Shl(($10|0),0,16)|0); - $12 = tempRet0; - $13 = $7 | $11; - $14 = $6 | $12; - tempRet0 = ($14); - return ($13|0); -} -function _crypto_sign_ed25519_ref10_fe_invert($out,$z) { - $out = $out|0; - $z = $z|0; - var $0 = 0, $1 = 0, $2 = 0, $exitcond = 0, $exitcond10 = 0, $exitcond11 = 0, $i$74 = 0, $i$83 = 0, $i$92 = 0, $t0 = 0, $t1 = 0, $t2 = 0, $t3 = 0, label = 0, sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 160|0; - $t0 = sp + 120|0; - $t1 = sp + 80|0; - $t2 = sp + 40|0; - $t3 = sp; - _crypto_sign_ed25519_ref10_fe_sq($t0,$z); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_mul($t1,$z,$t1); - _crypto_sign_ed25519_ref10_fe_mul($t0,$t0,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t0); - _crypto_sign_ed25519_ref10_fe_mul($t1,$t1,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_mul($t2,$t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_mul($t2,$t3,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); - $i$74 = 1; - while(1) { - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - $0 = (($i$74) + 1)|0; - $exitcond11 = ($0|0)==(50); - if ($exitcond11) { - break; - } else { - $i$74 = $0; - } - } - _crypto_sign_ed25519_ref10_fe_mul($t2,$t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t2); - $i$83 = 1; - while(1) { - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - $1 = (($i$83) + 1)|0; - $exitcond10 = ($1|0)==(100); - if ($exitcond10) { - break; - } else { - $i$83 = $1; - } - } - _crypto_sign_ed25519_ref10_fe_mul($t2,$t3,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - $i$92 = 1; - while(1) { - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - $2 = (($i$92) + 1)|0; - $exitcond = ($2|0)==(50); - if ($exitcond) { - break; - } else { - $i$92 = $2; - } - } - _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_mul($out,$t1,$t0); - STACKTOP = sp;return; -} -function _crypto_sign_ed25519_ref10_fe_isnegative($f) { - $f = $f|0; - var $0 = 0, $1 = 0, $2 = 0, $s = 0, label = 0, sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 32|0; - $s = sp; - _crypto_sign_ed25519_ref10_fe_tobytes($s,$f); - $0 = HEAP8[$s>>0]|0; - $1 = $0&255; - $2 = $1 & 1; - STACKTOP = sp;return ($2|0); -} -function _crypto_sign_ed25519_ref10_fe_isnonzero($f) { - $f = $f|0; - var $0 = 0, $s = 0, label = 0, sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 32|0; - $s = sp; - _crypto_sign_ed25519_ref10_fe_tobytes($s,$f); - $0 = (_crypto_verify_32_ref($s,33172)|0); - STACKTOP = sp;return ($0|0); -} -function _crypto_sign_ed25519_ref10_fe_mul($h,$f,$g) { - $h = $h|0; - $f = $f|0; - $g = $g|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; - var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; - var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; - var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; - var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; - var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; - var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; - var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; - var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; - var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; - var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; - var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; - var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0; - var $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0; - var $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0; - var $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0; - var $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0; - var $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0; - var $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0; - var $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0; - var $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0; - var $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0; - var $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0; - var $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0; - var $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0; - var $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0; - var $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); - $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); - $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); - $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); - $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); - $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); - $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); - $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); - $18 = HEAP32[$17>>2]|0; - $19 = HEAP32[$g>>2]|0; - $20 = ((($g)) + 4|0); - $21 = HEAP32[$20>>2]|0; - $22 = ((($g)) + 8|0); - $23 = HEAP32[$22>>2]|0; - $24 = ((($g)) + 12|0); - $25 = HEAP32[$24>>2]|0; - $26 = ((($g)) + 16|0); - $27 = HEAP32[$26>>2]|0; - $28 = ((($g)) + 20|0); - $29 = HEAP32[$28>>2]|0; - $30 = ((($g)) + 24|0); - $31 = HEAP32[$30>>2]|0; - $32 = ((($g)) + 28|0); - $33 = HEAP32[$32>>2]|0; - $34 = ((($g)) + 32|0); - $35 = HEAP32[$34>>2]|0; - $36 = ((($g)) + 36|0); - $37 = HEAP32[$36>>2]|0; - $38 = ($21*19)|0; - $39 = ($23*19)|0; - $40 = ($25*19)|0; - $41 = ($27*19)|0; - $42 = ($29*19)|0; - $43 = ($31*19)|0; - $44 = ($33*19)|0; - $45 = ($35*19)|0; - $46 = ($37*19)|0; - $47 = $2 << 1; - $48 = $6 << 1; - $49 = $10 << 1; - $50 = $14 << 1; - $51 = $18 << 1; - $52 = ($0|0)<(0); - $53 = $52 << 31 >> 31; - $54 = ($19|0)<(0); - $55 = $54 << 31 >> 31; - $56 = (___muldi3(($19|0),($55|0),($0|0),($53|0))|0); - $57 = tempRet0; - $58 = ($21|0)<(0); - $59 = $58 << 31 >> 31; - $60 = (___muldi3(($21|0),($59|0),($0|0),($53|0))|0); - $61 = tempRet0; - $62 = ($23|0)<(0); - $63 = $62 << 31 >> 31; - $64 = (___muldi3(($23|0),($63|0),($0|0),($53|0))|0); - $65 = tempRet0; - $66 = ($25|0)<(0); - $67 = $66 << 31 >> 31; - $68 = (___muldi3(($25|0),($67|0),($0|0),($53|0))|0); - $69 = tempRet0; - $70 = ($27|0)<(0); - $71 = $70 << 31 >> 31; - $72 = (___muldi3(($27|0),($71|0),($0|0),($53|0))|0); - $73 = tempRet0; - $74 = ($29|0)<(0); - $75 = $74 << 31 >> 31; - $76 = (___muldi3(($29|0),($75|0),($0|0),($53|0))|0); - $77 = tempRet0; - $78 = ($31|0)<(0); - $79 = $78 << 31 >> 31; - $80 = (___muldi3(($31|0),($79|0),($0|0),($53|0))|0); - $81 = tempRet0; - $82 = ($33|0)<(0); - $83 = $82 << 31 >> 31; - $84 = (___muldi3(($33|0),($83|0),($0|0),($53|0))|0); - $85 = tempRet0; - $86 = ($35|0)<(0); - $87 = $86 << 31 >> 31; - $88 = (___muldi3(($35|0),($87|0),($0|0),($53|0))|0); - $89 = tempRet0; - $90 = ($37|0)<(0); - $91 = $90 << 31 >> 31; - $92 = (___muldi3(($37|0),($91|0),($0|0),($53|0))|0); - $93 = tempRet0; - $94 = ($2|0)<(0); - $95 = $94 << 31 >> 31; - $96 = (___muldi3(($19|0),($55|0),($2|0),($95|0))|0); - $97 = tempRet0; - $98 = ($47|0)<(0); - $99 = $98 << 31 >> 31; - $100 = (___muldi3(($21|0),($59|0),($47|0),($99|0))|0); - $101 = tempRet0; - $102 = (___muldi3(($23|0),($63|0),($2|0),($95|0))|0); - $103 = tempRet0; - $104 = (___muldi3(($25|0),($67|0),($47|0),($99|0))|0); - $105 = tempRet0; - $106 = (___muldi3(($27|0),($71|0),($2|0),($95|0))|0); - $107 = tempRet0; - $108 = (___muldi3(($29|0),($75|0),($47|0),($99|0))|0); - $109 = tempRet0; - $110 = (___muldi3(($31|0),($79|0),($2|0),($95|0))|0); - $111 = tempRet0; - $112 = (___muldi3(($33|0),($83|0),($47|0),($99|0))|0); - $113 = tempRet0; - $114 = (___muldi3(($35|0),($87|0),($2|0),($95|0))|0); - $115 = tempRet0; - $116 = ($46|0)<(0); - $117 = $116 << 31 >> 31; - $118 = (___muldi3(($46|0),($117|0),($47|0),($99|0))|0); - $119 = tempRet0; - $120 = ($4|0)<(0); - $121 = $120 << 31 >> 31; - $122 = (___muldi3(($19|0),($55|0),($4|0),($121|0))|0); - $123 = tempRet0; - $124 = (___muldi3(($21|0),($59|0),($4|0),($121|0))|0); - $125 = tempRet0; - $126 = (___muldi3(($23|0),($63|0),($4|0),($121|0))|0); - $127 = tempRet0; - $128 = (___muldi3(($25|0),($67|0),($4|0),($121|0))|0); - $129 = tempRet0; - $130 = (___muldi3(($27|0),($71|0),($4|0),($121|0))|0); - $131 = tempRet0; - $132 = (___muldi3(($29|0),($75|0),($4|0),($121|0))|0); - $133 = tempRet0; - $134 = (___muldi3(($31|0),($79|0),($4|0),($121|0))|0); - $135 = tempRet0; - $136 = (___muldi3(($33|0),($83|0),($4|0),($121|0))|0); - $137 = tempRet0; - $138 = ($45|0)<(0); - $139 = $138 << 31 >> 31; - $140 = (___muldi3(($45|0),($139|0),($4|0),($121|0))|0); - $141 = tempRet0; - $142 = (___muldi3(($46|0),($117|0),($4|0),($121|0))|0); - $143 = tempRet0; - $144 = ($6|0)<(0); - $145 = $144 << 31 >> 31; - $146 = (___muldi3(($19|0),($55|0),($6|0),($145|0))|0); - $147 = tempRet0; - $148 = ($48|0)<(0); - $149 = $148 << 31 >> 31; - $150 = (___muldi3(($21|0),($59|0),($48|0),($149|0))|0); - $151 = tempRet0; - $152 = (___muldi3(($23|0),($63|0),($6|0),($145|0))|0); - $153 = tempRet0; - $154 = (___muldi3(($25|0),($67|0),($48|0),($149|0))|0); - $155 = tempRet0; - $156 = (___muldi3(($27|0),($71|0),($6|0),($145|0))|0); - $157 = tempRet0; - $158 = (___muldi3(($29|0),($75|0),($48|0),($149|0))|0); - $159 = tempRet0; - $160 = (___muldi3(($31|0),($79|0),($6|0),($145|0))|0); - $161 = tempRet0; - $162 = ($44|0)<(0); - $163 = $162 << 31 >> 31; - $164 = (___muldi3(($44|0),($163|0),($48|0),($149|0))|0); - $165 = tempRet0; - $166 = (___muldi3(($45|0),($139|0),($6|0),($145|0))|0); - $167 = tempRet0; - $168 = (___muldi3(($46|0),($117|0),($48|0),($149|0))|0); - $169 = tempRet0; - $170 = ($8|0)<(0); - $171 = $170 << 31 >> 31; - $172 = (___muldi3(($19|0),($55|0),($8|0),($171|0))|0); - $173 = tempRet0; - $174 = (___muldi3(($21|0),($59|0),($8|0),($171|0))|0); - $175 = tempRet0; - $176 = (___muldi3(($23|0),($63|0),($8|0),($171|0))|0); - $177 = tempRet0; - $178 = (___muldi3(($25|0),($67|0),($8|0),($171|0))|0); - $179 = tempRet0; - $180 = (___muldi3(($27|0),($71|0),($8|0),($171|0))|0); - $181 = tempRet0; - $182 = (___muldi3(($29|0),($75|0),($8|0),($171|0))|0); - $183 = tempRet0; - $184 = ($43|0)<(0); - $185 = $184 << 31 >> 31; - $186 = (___muldi3(($43|0),($185|0),($8|0),($171|0))|0); - $187 = tempRet0; - $188 = (___muldi3(($44|0),($163|0),($8|0),($171|0))|0); - $189 = tempRet0; - $190 = (___muldi3(($45|0),($139|0),($8|0),($171|0))|0); - $191 = tempRet0; - $192 = (___muldi3(($46|0),($117|0),($8|0),($171|0))|0); - $193 = tempRet0; - $194 = ($10|0)<(0); - $195 = $194 << 31 >> 31; - $196 = (___muldi3(($19|0),($55|0),($10|0),($195|0))|0); - $197 = tempRet0; - $198 = ($49|0)<(0); - $199 = $198 << 31 >> 31; - $200 = (___muldi3(($21|0),($59|0),($49|0),($199|0))|0); - $201 = tempRet0; - $202 = (___muldi3(($23|0),($63|0),($10|0),($195|0))|0); - $203 = tempRet0; - $204 = (___muldi3(($25|0),($67|0),($49|0),($199|0))|0); - $205 = tempRet0; - $206 = (___muldi3(($27|0),($71|0),($10|0),($195|0))|0); - $207 = tempRet0; - $208 = ($42|0)<(0); - $209 = $208 << 31 >> 31; - $210 = (___muldi3(($42|0),($209|0),($49|0),($199|0))|0); - $211 = tempRet0; - $212 = (___muldi3(($43|0),($185|0),($10|0),($195|0))|0); - $213 = tempRet0; - $214 = (___muldi3(($44|0),($163|0),($49|0),($199|0))|0); - $215 = tempRet0; - $216 = (___muldi3(($45|0),($139|0),($10|0),($195|0))|0); - $217 = tempRet0; - $218 = (___muldi3(($46|0),($117|0),($49|0),($199|0))|0); - $219 = tempRet0; - $220 = ($12|0)<(0); - $221 = $220 << 31 >> 31; - $222 = (___muldi3(($19|0),($55|0),($12|0),($221|0))|0); - $223 = tempRet0; - $224 = (___muldi3(($21|0),($59|0),($12|0),($221|0))|0); - $225 = tempRet0; - $226 = (___muldi3(($23|0),($63|0),($12|0),($221|0))|0); - $227 = tempRet0; - $228 = (___muldi3(($25|0),($67|0),($12|0),($221|0))|0); - $229 = tempRet0; - $230 = ($41|0)<(0); - $231 = $230 << 31 >> 31; - $232 = (___muldi3(($41|0),($231|0),($12|0),($221|0))|0); - $233 = tempRet0; - $234 = (___muldi3(($42|0),($209|0),($12|0),($221|0))|0); - $235 = tempRet0; - $236 = (___muldi3(($43|0),($185|0),($12|0),($221|0))|0); - $237 = tempRet0; - $238 = (___muldi3(($44|0),($163|0),($12|0),($221|0))|0); - $239 = tempRet0; - $240 = (___muldi3(($45|0),($139|0),($12|0),($221|0))|0); - $241 = tempRet0; - $242 = (___muldi3(($46|0),($117|0),($12|0),($221|0))|0); - $243 = tempRet0; - $244 = ($14|0)<(0); - $245 = $244 << 31 >> 31; - $246 = (___muldi3(($19|0),($55|0),($14|0),($245|0))|0); - $247 = tempRet0; - $248 = ($50|0)<(0); - $249 = $248 << 31 >> 31; - $250 = (___muldi3(($21|0),($59|0),($50|0),($249|0))|0); - $251 = tempRet0; - $252 = (___muldi3(($23|0),($63|0),($14|0),($245|0))|0); - $253 = tempRet0; - $254 = ($40|0)<(0); - $255 = $254 << 31 >> 31; - $256 = (___muldi3(($40|0),($255|0),($50|0),($249|0))|0); - $257 = tempRet0; - $258 = (___muldi3(($41|0),($231|0),($14|0),($245|0))|0); - $259 = tempRet0; - $260 = (___muldi3(($42|0),($209|0),($50|0),($249|0))|0); - $261 = tempRet0; - $262 = (___muldi3(($43|0),($185|0),($14|0),($245|0))|0); - $263 = tempRet0; - $264 = (___muldi3(($44|0),($163|0),($50|0),($249|0))|0); - $265 = tempRet0; - $266 = (___muldi3(($45|0),($139|0),($14|0),($245|0))|0); - $267 = tempRet0; - $268 = (___muldi3(($46|0),($117|0),($50|0),($249|0))|0); - $269 = tempRet0; - $270 = ($16|0)<(0); - $271 = $270 << 31 >> 31; - $272 = (___muldi3(($19|0),($55|0),($16|0),($271|0))|0); - $273 = tempRet0; - $274 = (___muldi3(($21|0),($59|0),($16|0),($271|0))|0); - $275 = tempRet0; - $276 = ($39|0)<(0); - $277 = $276 << 31 >> 31; - $278 = (___muldi3(($39|0),($277|0),($16|0),($271|0))|0); - $279 = tempRet0; - $280 = (___muldi3(($40|0),($255|0),($16|0),($271|0))|0); - $281 = tempRet0; - $282 = (___muldi3(($41|0),($231|0),($16|0),($271|0))|0); - $283 = tempRet0; - $284 = (___muldi3(($42|0),($209|0),($16|0),($271|0))|0); - $285 = tempRet0; - $286 = (___muldi3(($43|0),($185|0),($16|0),($271|0))|0); - $287 = tempRet0; - $288 = (___muldi3(($44|0),($163|0),($16|0),($271|0))|0); - $289 = tempRet0; - $290 = (___muldi3(($45|0),($139|0),($16|0),($271|0))|0); - $291 = tempRet0; - $292 = (___muldi3(($46|0),($117|0),($16|0),($271|0))|0); - $293 = tempRet0; - $294 = ($18|0)<(0); - $295 = $294 << 31 >> 31; - $296 = (___muldi3(($19|0),($55|0),($18|0),($295|0))|0); - $297 = tempRet0; - $298 = ($51|0)<(0); - $299 = $298 << 31 >> 31; - $300 = ($38|0)<(0); - $301 = $300 << 31 >> 31; - $302 = (___muldi3(($38|0),($301|0),($51|0),($299|0))|0); - $303 = tempRet0; - $304 = (___muldi3(($39|0),($277|0),($18|0),($295|0))|0); - $305 = tempRet0; - $306 = (___muldi3(($40|0),($255|0),($51|0),($299|0))|0); - $307 = tempRet0; - $308 = (___muldi3(($41|0),($231|0),($18|0),($295|0))|0); - $309 = tempRet0; - $310 = (___muldi3(($42|0),($209|0),($51|0),($299|0))|0); - $311 = tempRet0; - $312 = (___muldi3(($43|0),($185|0),($18|0),($295|0))|0); - $313 = tempRet0; - $314 = (___muldi3(($44|0),($163|0),($51|0),($299|0))|0); - $315 = tempRet0; - $316 = (___muldi3(($45|0),($139|0),($18|0),($295|0))|0); - $317 = tempRet0; - $318 = (___muldi3(($46|0),($117|0),($51|0),($299|0))|0); - $319 = tempRet0; - $320 = (_i64Add(($302|0),($303|0),($56|0),($57|0))|0); - $321 = tempRet0; - $322 = (_i64Add(($320|0),($321|0),($278|0),($279|0))|0); - $323 = tempRet0; - $324 = (_i64Add(($322|0),($323|0),($256|0),($257|0))|0); - $325 = tempRet0; - $326 = (_i64Add(($324|0),($325|0),($232|0),($233|0))|0); - $327 = tempRet0; - $328 = (_i64Add(($326|0),($327|0),($210|0),($211|0))|0); - $329 = tempRet0; - $330 = (_i64Add(($328|0),($329|0),($186|0),($187|0))|0); - $331 = tempRet0; - $332 = (_i64Add(($330|0),($331|0),($164|0),($165|0))|0); - $333 = tempRet0; - $334 = (_i64Add(($332|0),($333|0),($140|0),($141|0))|0); - $335 = tempRet0; - $336 = (_i64Add(($334|0),($335|0),($118|0),($119|0))|0); - $337 = tempRet0; - $338 = (_i64Add(($60|0),($61|0),($96|0),($97|0))|0); - $339 = tempRet0; - $340 = (_i64Add(($150|0),($151|0),($172|0),($173|0))|0); - $341 = tempRet0; - $342 = (_i64Add(($340|0),($341|0),($126|0),($127|0))|0); - $343 = tempRet0; - $344 = (_i64Add(($342|0),($343|0),($104|0),($105|0))|0); - $345 = tempRet0; - $346 = (_i64Add(($344|0),($345|0),($72|0),($73|0))|0); - $347 = tempRet0; - $348 = (_i64Add(($346|0),($347|0),($310|0),($311|0))|0); - $349 = tempRet0; - $350 = (_i64Add(($348|0),($349|0),($286|0),($287|0))|0); - $351 = tempRet0; - $352 = (_i64Add(($350|0),($351|0),($264|0),($265|0))|0); - $353 = tempRet0; - $354 = (_i64Add(($352|0),($353|0),($240|0),($241|0))|0); - $355 = tempRet0; - $356 = (_i64Add(($354|0),($355|0),($218|0),($219|0))|0); - $357 = tempRet0; - $358 = (_i64Add(($336|0),($337|0),33554432,0)|0); - $359 = tempRet0; - $360 = (_bitshift64Ashr(($358|0),($359|0),26)|0); - $361 = tempRet0; - $362 = (_i64Add(($338|0),($339|0),($304|0),($305|0))|0); - $363 = tempRet0; - $364 = (_i64Add(($362|0),($363|0),($280|0),($281|0))|0); - $365 = tempRet0; - $366 = (_i64Add(($364|0),($365|0),($258|0),($259|0))|0); - $367 = tempRet0; - $368 = (_i64Add(($366|0),($367|0),($234|0),($235|0))|0); - $369 = tempRet0; - $370 = (_i64Add(($368|0),($369|0),($212|0),($213|0))|0); - $371 = tempRet0; - $372 = (_i64Add(($370|0),($371|0),($188|0),($189|0))|0); - $373 = tempRet0; - $374 = (_i64Add(($372|0),($373|0),($166|0),($167|0))|0); - $375 = tempRet0; - $376 = (_i64Add(($374|0),($375|0),($142|0),($143|0))|0); - $377 = tempRet0; - $378 = (_i64Add(($376|0),($377|0),($360|0),($361|0))|0); - $379 = tempRet0; - $380 = (_bitshift64Shl(($360|0),($361|0),26)|0); - $381 = tempRet0; - $382 = (_i64Subtract(($336|0),($337|0),($380|0),($381|0))|0); - $383 = tempRet0; - $384 = (_i64Add(($356|0),($357|0),33554432,0)|0); - $385 = tempRet0; - $386 = (_bitshift64Ashr(($384|0),($385|0),26)|0); - $387 = tempRet0; - $388 = (_i64Add(($174|0),($175|0),($196|0),($197|0))|0); - $389 = tempRet0; - $390 = (_i64Add(($388|0),($389|0),($152|0),($153|0))|0); - $391 = tempRet0; - $392 = (_i64Add(($390|0),($391|0),($128|0),($129|0))|0); - $393 = tempRet0; - $394 = (_i64Add(($392|0),($393|0),($106|0),($107|0))|0); - $395 = tempRet0; - $396 = (_i64Add(($394|0),($395|0),($76|0),($77|0))|0); - $397 = tempRet0; - $398 = (_i64Add(($396|0),($397|0),($312|0),($313|0))|0); - $399 = tempRet0; - $400 = (_i64Add(($398|0),($399|0),($288|0),($289|0))|0); - $401 = tempRet0; - $402 = (_i64Add(($400|0),($401|0),($266|0),($267|0))|0); - $403 = tempRet0; - $404 = (_i64Add(($402|0),($403|0),($242|0),($243|0))|0); - $405 = tempRet0; - $406 = (_i64Add(($404|0),($405|0),($386|0),($387|0))|0); - $407 = tempRet0; - $408 = (_bitshift64Shl(($386|0),($387|0),26)|0); - $409 = tempRet0; - $410 = (_i64Subtract(($356|0),($357|0),($408|0),($409|0))|0); - $411 = tempRet0; - $412 = (_i64Add(($378|0),($379|0),16777216,0)|0); - $413 = tempRet0; - $414 = (_bitshift64Ashr(($412|0),($413|0),25)|0); - $415 = tempRet0; - $416 = (_i64Add(($100|0),($101|0),($122|0),($123|0))|0); - $417 = tempRet0; - $418 = (_i64Add(($416|0),($417|0),($64|0),($65|0))|0); - $419 = tempRet0; - $420 = (_i64Add(($418|0),($419|0),($306|0),($307|0))|0); - $421 = tempRet0; - $422 = (_i64Add(($420|0),($421|0),($282|0),($283|0))|0); - $423 = tempRet0; - $424 = (_i64Add(($422|0),($423|0),($260|0),($261|0))|0); - $425 = tempRet0; - $426 = (_i64Add(($424|0),($425|0),($236|0),($237|0))|0); - $427 = tempRet0; - $428 = (_i64Add(($426|0),($427|0),($214|0),($215|0))|0); - $429 = tempRet0; - $430 = (_i64Add(($428|0),($429|0),($190|0),($191|0))|0); - $431 = tempRet0; - $432 = (_i64Add(($430|0),($431|0),($168|0),($169|0))|0); - $433 = tempRet0; - $434 = (_i64Add(($432|0),($433|0),($414|0),($415|0))|0); - $435 = tempRet0; - $436 = (_bitshift64Shl(($414|0),($415|0),25)|0); - $437 = tempRet0; - $438 = (_i64Subtract(($378|0),($379|0),($436|0),($437|0))|0); - $439 = tempRet0; - $440 = (_i64Add(($406|0),($407|0),16777216,0)|0); - $441 = tempRet0; - $442 = (_bitshift64Ashr(($440|0),($441|0),25)|0); - $443 = tempRet0; - $444 = (_i64Add(($200|0),($201|0),($222|0),($223|0))|0); - $445 = tempRet0; - $446 = (_i64Add(($444|0),($445|0),($176|0),($177|0))|0); - $447 = tempRet0; - $448 = (_i64Add(($446|0),($447|0),($154|0),($155|0))|0); - $449 = tempRet0; - $450 = (_i64Add(($448|0),($449|0),($130|0),($131|0))|0); - $451 = tempRet0; - $452 = (_i64Add(($450|0),($451|0),($108|0),($109|0))|0); - $453 = tempRet0; - $454 = (_i64Add(($452|0),($453|0),($80|0),($81|0))|0); - $455 = tempRet0; - $456 = (_i64Add(($454|0),($455|0),($314|0),($315|0))|0); - $457 = tempRet0; - $458 = (_i64Add(($456|0),($457|0),($290|0),($291|0))|0); - $459 = tempRet0; - $460 = (_i64Add(($458|0),($459|0),($268|0),($269|0))|0); - $461 = tempRet0; - $462 = (_i64Add(($460|0),($461|0),($442|0),($443|0))|0); - $463 = tempRet0; - $464 = (_bitshift64Shl(($442|0),($443|0),25)|0); - $465 = tempRet0; - $466 = (_i64Subtract(($406|0),($407|0),($464|0),($465|0))|0); - $467 = tempRet0; - $468 = (_i64Add(($434|0),($435|0),33554432,0)|0); - $469 = tempRet0; - $470 = (_bitshift64Ashr(($468|0),($469|0),26)|0); - $471 = tempRet0; - $472 = (_i64Add(($124|0),($125|0),($146|0),($147|0))|0); - $473 = tempRet0; - $474 = (_i64Add(($472|0),($473|0),($102|0),($103|0))|0); - $475 = tempRet0; - $476 = (_i64Add(($474|0),($475|0),($68|0),($69|0))|0); - $477 = tempRet0; - $478 = (_i64Add(($476|0),($477|0),($308|0),($309|0))|0); - $479 = tempRet0; - $480 = (_i64Add(($478|0),($479|0),($284|0),($285|0))|0); - $481 = tempRet0; - $482 = (_i64Add(($480|0),($481|0),($262|0),($263|0))|0); - $483 = tempRet0; - $484 = (_i64Add(($482|0),($483|0),($238|0),($239|0))|0); - $485 = tempRet0; - $486 = (_i64Add(($484|0),($485|0),($216|0),($217|0))|0); - $487 = tempRet0; - $488 = (_i64Add(($486|0),($487|0),($192|0),($193|0))|0); - $489 = tempRet0; - $490 = (_i64Add(($488|0),($489|0),($470|0),($471|0))|0); - $491 = tempRet0; - $492 = (_bitshift64Shl(($470|0),($471|0),26)|0); - $493 = tempRet0; - $494 = (_i64Subtract(($434|0),($435|0),($492|0),($493|0))|0); - $495 = tempRet0; - $496 = (_i64Add(($462|0),($463|0),33554432,0)|0); - $497 = tempRet0; - $498 = (_bitshift64Ashr(($496|0),($497|0),26)|0); - $499 = tempRet0; - $500 = (_i64Add(($224|0),($225|0),($246|0),($247|0))|0); - $501 = tempRet0; - $502 = (_i64Add(($500|0),($501|0),($202|0),($203|0))|0); - $503 = tempRet0; - $504 = (_i64Add(($502|0),($503|0),($178|0),($179|0))|0); - $505 = tempRet0; - $506 = (_i64Add(($504|0),($505|0),($156|0),($157|0))|0); - $507 = tempRet0; - $508 = (_i64Add(($506|0),($507|0),($132|0),($133|0))|0); - $509 = tempRet0; - $510 = (_i64Add(($508|0),($509|0),($110|0),($111|0))|0); - $511 = tempRet0; - $512 = (_i64Add(($510|0),($511|0),($84|0),($85|0))|0); - $513 = tempRet0; - $514 = (_i64Add(($512|0),($513|0),($316|0),($317|0))|0); - $515 = tempRet0; - $516 = (_i64Add(($514|0),($515|0),($292|0),($293|0))|0); - $517 = tempRet0; - $518 = (_i64Add(($516|0),($517|0),($498|0),($499|0))|0); - $519 = tempRet0; - $520 = (_bitshift64Shl(($498|0),($499|0),26)|0); - $521 = tempRet0; - $522 = (_i64Subtract(($462|0),($463|0),($520|0),($521|0))|0); - $523 = tempRet0; - $524 = (_i64Add(($490|0),($491|0),16777216,0)|0); - $525 = tempRet0; - $526 = (_bitshift64Ashr(($524|0),($525|0),25)|0); - $527 = tempRet0; - $528 = (_i64Add(($526|0),($527|0),($410|0),($411|0))|0); - $529 = tempRet0; - $530 = (_bitshift64Shl(($526|0),($527|0),25)|0); - $531 = tempRet0; - $532 = (_i64Subtract(($490|0),($491|0),($530|0),($531|0))|0); - $533 = tempRet0; - $534 = (_i64Add(($518|0),($519|0),16777216,0)|0); - $535 = tempRet0; - $536 = (_bitshift64Ashr(($534|0),($535|0),25)|0); - $537 = tempRet0; - $538 = (_i64Add(($250|0),($251|0),($272|0),($273|0))|0); - $539 = tempRet0; - $540 = (_i64Add(($538|0),($539|0),($226|0),($227|0))|0); - $541 = tempRet0; - $542 = (_i64Add(($540|0),($541|0),($204|0),($205|0))|0); - $543 = tempRet0; - $544 = (_i64Add(($542|0),($543|0),($180|0),($181|0))|0); - $545 = tempRet0; - $546 = (_i64Add(($544|0),($545|0),($158|0),($159|0))|0); - $547 = tempRet0; - $548 = (_i64Add(($546|0),($547|0),($134|0),($135|0))|0); - $549 = tempRet0; - $550 = (_i64Add(($548|0),($549|0),($112|0),($113|0))|0); - $551 = tempRet0; - $552 = (_i64Add(($550|0),($551|0),($88|0),($89|0))|0); - $553 = tempRet0; - $554 = (_i64Add(($552|0),($553|0),($318|0),($319|0))|0); - $555 = tempRet0; - $556 = (_i64Add(($554|0),($555|0),($536|0),($537|0))|0); - $557 = tempRet0; - $558 = (_bitshift64Shl(($536|0),($537|0),25)|0); - $559 = tempRet0; - $560 = (_i64Subtract(($518|0),($519|0),($558|0),($559|0))|0); - $561 = tempRet0; - $562 = (_i64Add(($528|0),($529|0),33554432,0)|0); - $563 = tempRet0; - $564 = (_bitshift64Ashr(($562|0),($563|0),26)|0); - $565 = tempRet0; - $566 = (_i64Add(($466|0),($467|0),($564|0),($565|0))|0); - $567 = tempRet0; - $568 = (_bitshift64Shl(($564|0),($565|0),26)|0); - $569 = tempRet0; - $570 = (_i64Subtract(($528|0),($529|0),($568|0),($569|0))|0); - $571 = tempRet0; - $572 = (_i64Add(($556|0),($557|0),33554432,0)|0); - $573 = tempRet0; - $574 = (_bitshift64Ashr(($572|0),($573|0),26)|0); - $575 = tempRet0; - $576 = (_i64Add(($274|0),($275|0),($296|0),($297|0))|0); - $577 = tempRet0; - $578 = (_i64Add(($576|0),($577|0),($252|0),($253|0))|0); - $579 = tempRet0; - $580 = (_i64Add(($578|0),($579|0),($228|0),($229|0))|0); - $581 = tempRet0; - $582 = (_i64Add(($580|0),($581|0),($206|0),($207|0))|0); - $583 = tempRet0; - $584 = (_i64Add(($582|0),($583|0),($182|0),($183|0))|0); - $585 = tempRet0; - $586 = (_i64Add(($584|0),($585|0),($160|0),($161|0))|0); - $587 = tempRet0; - $588 = (_i64Add(($586|0),($587|0),($136|0),($137|0))|0); - $589 = tempRet0; - $590 = (_i64Add(($588|0),($589|0),($114|0),($115|0))|0); - $591 = tempRet0; - $592 = (_i64Add(($590|0),($591|0),($92|0),($93|0))|0); - $593 = tempRet0; - $594 = (_i64Add(($592|0),($593|0),($574|0),($575|0))|0); - $595 = tempRet0; - $596 = (_bitshift64Shl(($574|0),($575|0),26)|0); - $597 = tempRet0; - $598 = (_i64Subtract(($556|0),($557|0),($596|0),($597|0))|0); - $599 = tempRet0; - $600 = (_i64Add(($594|0),($595|0),16777216,0)|0); - $601 = tempRet0; - $602 = (_bitshift64Ashr(($600|0),($601|0),25)|0); - $603 = tempRet0; - $604 = (___muldi3(($602|0),($603|0),19,0)|0); - $605 = tempRet0; - $606 = (_i64Add(($604|0),($605|0),($382|0),($383|0))|0); - $607 = tempRet0; - $608 = (_bitshift64Shl(($602|0),($603|0),25)|0); - $609 = tempRet0; - $610 = (_i64Subtract(($594|0),($595|0),($608|0),($609|0))|0); - $611 = tempRet0; - $612 = (_i64Add(($606|0),($607|0),33554432,0)|0); - $613 = tempRet0; - $614 = (_bitshift64Ashr(($612|0),($613|0),26)|0); - $615 = tempRet0; - $616 = (_i64Add(($438|0),($439|0),($614|0),($615|0))|0); - $617 = tempRet0; - $618 = (_bitshift64Shl(($614|0),($615|0),26)|0); - $619 = tempRet0; - $620 = (_i64Subtract(($606|0),($607|0),($618|0),($619|0))|0); - $621 = tempRet0; - HEAP32[$h>>2] = $620; - $622 = ((($h)) + 4|0); - HEAP32[$622>>2] = $616; - $623 = ((($h)) + 8|0); - HEAP32[$623>>2] = $494; - $624 = ((($h)) + 12|0); - HEAP32[$624>>2] = $532; - $625 = ((($h)) + 16|0); - HEAP32[$625>>2] = $570; - $626 = ((($h)) + 20|0); - HEAP32[$626>>2] = $566; - $627 = ((($h)) + 24|0); - HEAP32[$627>>2] = $522; - $628 = ((($h)) + 28|0); - HEAP32[$628>>2] = $560; - $629 = ((($h)) + 32|0); - HEAP32[$629>>2] = $598; - $630 = ((($h)) + 36|0); - HEAP32[$630>>2] = $610; - return; -} -function _crypto_sign_ed25519_ref10_fe_neg($h,$f) { - $h = $h|0; - $f = $f|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); - $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); - $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); - $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); - $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); - $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); - $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); - $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); - $18 = HEAP32[$17>>2]|0; - $19 = (0 - ($0))|0; - $20 = (0 - ($2))|0; - $21 = (0 - ($4))|0; - $22 = (0 - ($6))|0; - $23 = (0 - ($8))|0; - $24 = (0 - ($10))|0; - $25 = (0 - ($12))|0; - $26 = (0 - ($14))|0; - $27 = (0 - ($16))|0; - $28 = (0 - ($18))|0; - HEAP32[$h>>2] = $19; - $29 = ((($h)) + 4|0); - HEAP32[$29>>2] = $20; - $30 = ((($h)) + 8|0); - HEAP32[$30>>2] = $21; - $31 = ((($h)) + 12|0); - HEAP32[$31>>2] = $22; - $32 = ((($h)) + 16|0); - HEAP32[$32>>2] = $23; - $33 = ((($h)) + 20|0); - HEAP32[$33>>2] = $24; - $34 = ((($h)) + 24|0); - HEAP32[$34>>2] = $25; - $35 = ((($h)) + 28|0); - HEAP32[$35>>2] = $26; - $36 = ((($h)) + 32|0); - HEAP32[$36>>2] = $27; - $37 = ((($h)) + 36|0); - HEAP32[$37>>2] = $28; - return; -} -function _crypto_sign_ed25519_ref10_fe_pow22523($out,$z) { - $out = $out|0; - $z = $z|0; - var $0 = 0, $1 = 0, $2 = 0, $exitcond = 0, $exitcond10 = 0, $exitcond11 = 0, $i$74 = 0, $i$83 = 0, $i$92 = 0, $t0 = 0, $t1 = 0, $t2 = 0, label = 0, sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 128|0; - $t0 = sp + 80|0; - $t1 = sp + 40|0; - $t2 = sp; - _crypto_sign_ed25519_ref10_fe_sq($t0,$z); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_mul($t1,$z,$t1); - _crypto_sign_ed25519_ref10_fe_mul($t0,$t0,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t0,$t0); - _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_mul($t1,$t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); - $i$74 = 1; - while(1) { - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - $0 = (($i$74) + 1)|0; - $exitcond11 = ($0|0)==(50); - if ($exitcond11) { - break; - } else { - $i$74 = $0; - } - } - _crypto_sign_ed25519_ref10_fe_mul($t1,$t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); - $i$83 = 1; - while(1) { - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - $1 = (($i$83) + 1)|0; - $exitcond10 = ($1|0)==(100); - if ($exitcond10) { - break; - } else { - $i$83 = $1; - } - } - _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - $i$92 = 1; - while(1) { - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - $2 = (($i$92) + 1)|0; - $exitcond = ($2|0)==(50); - if ($exitcond) { - break; - } else { - $i$92 = $2; - } - } - _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t0,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t0,$t0); - _crypto_sign_ed25519_ref10_fe_mul($out,$t0,$z); - STACKTOP = sp;return; -} -function _crypto_sign_ed25519_ref10_fe_sq($h,$f) { - $h = $h|0; - $f = $f|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; - var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; - var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; - var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; - var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; - var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; - var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; - var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; - var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; - var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; - var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; - var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; - var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0; - var $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0; - var $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0; - var $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); - $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); - $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); - $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); - $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); - $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); - $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); - $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); - $18 = HEAP32[$17>>2]|0; - $19 = $0 << 1; - $20 = $2 << 1; - $21 = $4 << 1; - $22 = $6 << 1; - $23 = $8 << 1; - $24 = $10 << 1; - $25 = $12 << 1; - $26 = $14 << 1; - $27 = ($10*38)|0; - $28 = ($12*19)|0; - $29 = ($14*38)|0; - $30 = ($16*19)|0; - $31 = ($18*38)|0; - $32 = ($0|0)<(0); - $33 = $32 << 31 >> 31; - $34 = (___muldi3(($0|0),($33|0),($0|0),($33|0))|0); - $35 = tempRet0; - $36 = ($19|0)<(0); - $37 = $36 << 31 >> 31; - $38 = ($2|0)<(0); - $39 = $38 << 31 >> 31; - $40 = (___muldi3(($19|0),($37|0),($2|0),($39|0))|0); - $41 = tempRet0; - $42 = ($4|0)<(0); - $43 = $42 << 31 >> 31; - $44 = (___muldi3(($4|0),($43|0),($19|0),($37|0))|0); - $45 = tempRet0; - $46 = ($6|0)<(0); - $47 = $46 << 31 >> 31; - $48 = (___muldi3(($6|0),($47|0),($19|0),($37|0))|0); - $49 = tempRet0; - $50 = ($8|0)<(0); - $51 = $50 << 31 >> 31; - $52 = (___muldi3(($8|0),($51|0),($19|0),($37|0))|0); - $53 = tempRet0; - $54 = ($10|0)<(0); - $55 = $54 << 31 >> 31; - $56 = (___muldi3(($10|0),($55|0),($19|0),($37|0))|0); - $57 = tempRet0; - $58 = ($12|0)<(0); - $59 = $58 << 31 >> 31; - $60 = (___muldi3(($12|0),($59|0),($19|0),($37|0))|0); - $61 = tempRet0; - $62 = ($14|0)<(0); - $63 = $62 << 31 >> 31; - $64 = (___muldi3(($14|0),($63|0),($19|0),($37|0))|0); - $65 = tempRet0; - $66 = ($16|0)<(0); - $67 = $66 << 31 >> 31; - $68 = (___muldi3(($16|0),($67|0),($19|0),($37|0))|0); - $69 = tempRet0; - $70 = ($18|0)<(0); - $71 = $70 << 31 >> 31; - $72 = (___muldi3(($18|0),($71|0),($19|0),($37|0))|0); - $73 = tempRet0; - $74 = ($20|0)<(0); - $75 = $74 << 31 >> 31; - $76 = (___muldi3(($20|0),($75|0),($2|0),($39|0))|0); - $77 = tempRet0; - $78 = (___muldi3(($20|0),($75|0),($4|0),($43|0))|0); - $79 = tempRet0; - $80 = ($22|0)<(0); - $81 = $80 << 31 >> 31; - $82 = (___muldi3(($22|0),($81|0),($20|0),($75|0))|0); - $83 = tempRet0; - $84 = (___muldi3(($8|0),($51|0),($20|0),($75|0))|0); - $85 = tempRet0; - $86 = ($24|0)<(0); - $87 = $86 << 31 >> 31; - $88 = (___muldi3(($24|0),($87|0),($20|0),($75|0))|0); - $89 = tempRet0; - $90 = (___muldi3(($12|0),($59|0),($20|0),($75|0))|0); - $91 = tempRet0; - $92 = ($26|0)<(0); - $93 = $92 << 31 >> 31; - $94 = (___muldi3(($26|0),($93|0),($20|0),($75|0))|0); - $95 = tempRet0; - $96 = (___muldi3(($16|0),($67|0),($20|0),($75|0))|0); - $97 = tempRet0; - $98 = ($31|0)<(0); - $99 = $98 << 31 >> 31; - $100 = (___muldi3(($31|0),($99|0),($20|0),($75|0))|0); - $101 = tempRet0; - $102 = (___muldi3(($4|0),($43|0),($4|0),($43|0))|0); - $103 = tempRet0; - $104 = ($21|0)<(0); - $105 = $104 << 31 >> 31; - $106 = (___muldi3(($21|0),($105|0),($6|0),($47|0))|0); - $107 = tempRet0; - $108 = (___muldi3(($8|0),($51|0),($21|0),($105|0))|0); - $109 = tempRet0; - $110 = (___muldi3(($10|0),($55|0),($21|0),($105|0))|0); - $111 = tempRet0; - $112 = (___muldi3(($12|0),($59|0),($21|0),($105|0))|0); - $113 = tempRet0; - $114 = (___muldi3(($14|0),($63|0),($21|0),($105|0))|0); - $115 = tempRet0; - $116 = ($30|0)<(0); - $117 = $116 << 31 >> 31; - $118 = (___muldi3(($30|0),($117|0),($21|0),($105|0))|0); - $119 = tempRet0; - $120 = (___muldi3(($31|0),($99|0),($4|0),($43|0))|0); - $121 = tempRet0; - $122 = (___muldi3(($22|0),($81|0),($6|0),($47|0))|0); - $123 = tempRet0; - $124 = (___muldi3(($22|0),($81|0),($8|0),($51|0))|0); - $125 = tempRet0; - $126 = (___muldi3(($24|0),($87|0),($22|0),($81|0))|0); - $127 = tempRet0; - $128 = (___muldi3(($12|0),($59|0),($22|0),($81|0))|0); - $129 = tempRet0; - $130 = ($29|0)<(0); - $131 = $130 << 31 >> 31; - $132 = (___muldi3(($29|0),($131|0),($22|0),($81|0))|0); - $133 = tempRet0; - $134 = (___muldi3(($30|0),($117|0),($22|0),($81|0))|0); - $135 = tempRet0; - $136 = (___muldi3(($31|0),($99|0),($22|0),($81|0))|0); - $137 = tempRet0; - $138 = (___muldi3(($8|0),($51|0),($8|0),($51|0))|0); - $139 = tempRet0; - $140 = ($23|0)<(0); - $141 = $140 << 31 >> 31; - $142 = (___muldi3(($23|0),($141|0),($10|0),($55|0))|0); - $143 = tempRet0; - $144 = ($28|0)<(0); - $145 = $144 << 31 >> 31; - $146 = (___muldi3(($28|0),($145|0),($23|0),($141|0))|0); - $147 = tempRet0; - $148 = (___muldi3(($29|0),($131|0),($8|0),($51|0))|0); - $149 = tempRet0; - $150 = (___muldi3(($30|0),($117|0),($23|0),($141|0))|0); - $151 = tempRet0; - $152 = (___muldi3(($31|0),($99|0),($8|0),($51|0))|0); - $153 = tempRet0; - $154 = ($27|0)<(0); - $155 = $154 << 31 >> 31; - $156 = (___muldi3(($27|0),($155|0),($10|0),($55|0))|0); - $157 = tempRet0; - $158 = (___muldi3(($28|0),($145|0),($24|0),($87|0))|0); - $159 = tempRet0; - $160 = (___muldi3(($29|0),($131|0),($24|0),($87|0))|0); - $161 = tempRet0; - $162 = (___muldi3(($30|0),($117|0),($24|0),($87|0))|0); - $163 = tempRet0; - $164 = (___muldi3(($31|0),($99|0),($24|0),($87|0))|0); - $165 = tempRet0; - $166 = (___muldi3(($28|0),($145|0),($12|0),($59|0))|0); - $167 = tempRet0; - $168 = (___muldi3(($29|0),($131|0),($12|0),($59|0))|0); - $169 = tempRet0; - $170 = ($25|0)<(0); - $171 = $170 << 31 >> 31; - $172 = (___muldi3(($30|0),($117|0),($25|0),($171|0))|0); - $173 = tempRet0; - $174 = (___muldi3(($31|0),($99|0),($12|0),($59|0))|0); - $175 = tempRet0; - $176 = (___muldi3(($29|0),($131|0),($14|0),($63|0))|0); - $177 = tempRet0; - $178 = (___muldi3(($30|0),($117|0),($26|0),($93|0))|0); - $179 = tempRet0; - $180 = (___muldi3(($31|0),($99|0),($26|0),($93|0))|0); - $181 = tempRet0; - $182 = (___muldi3(($30|0),($117|0),($16|0),($67|0))|0); - $183 = tempRet0; - $184 = (___muldi3(($31|0),($99|0),($16|0),($67|0))|0); - $185 = tempRet0; - $186 = (___muldi3(($31|0),($99|0),($18|0),($71|0))|0); - $187 = tempRet0; - $188 = (_i64Add(($156|0),($157|0),($34|0),($35|0))|0); - $189 = tempRet0; - $190 = (_i64Add(($188|0),($189|0),($146|0),($147|0))|0); - $191 = tempRet0; - $192 = (_i64Add(($190|0),($191|0),($132|0),($133|0))|0); - $193 = tempRet0; - $194 = (_i64Add(($192|0),($193|0),($118|0),($119|0))|0); - $195 = tempRet0; - $196 = (_i64Add(($194|0),($195|0),($100|0),($101|0))|0); - $197 = tempRet0; - $198 = (_i64Add(($44|0),($45|0),($76|0),($77|0))|0); - $199 = tempRet0; - $200 = (_i64Add(($48|0),($49|0),($78|0),($79|0))|0); - $201 = tempRet0; - $202 = (_i64Add(($82|0),($83|0),($102|0),($103|0))|0); - $203 = tempRet0; - $204 = (_i64Add(($202|0),($203|0),($52|0),($53|0))|0); - $205 = tempRet0; - $206 = (_i64Add(($204|0),($205|0),($176|0),($177|0))|0); - $207 = tempRet0; - $208 = (_i64Add(($206|0),($207|0),($172|0),($173|0))|0); - $209 = tempRet0; - $210 = (_i64Add(($208|0),($209|0),($164|0),($165|0))|0); - $211 = tempRet0; - $212 = (_i64Add(($196|0),($197|0),33554432,0)|0); - $213 = tempRet0; - $214 = (_bitshift64Ashr(($212|0),($213|0),26)|0); - $215 = tempRet0; - $216 = (_i64Add(($158|0),($159|0),($40|0),($41|0))|0); - $217 = tempRet0; - $218 = (_i64Add(($216|0),($217|0),($148|0),($149|0))|0); - $219 = tempRet0; - $220 = (_i64Add(($218|0),($219|0),($134|0),($135|0))|0); - $221 = tempRet0; - $222 = (_i64Add(($220|0),($221|0),($120|0),($121|0))|0); - $223 = tempRet0; - $224 = (_i64Add(($222|0),($223|0),($214|0),($215|0))|0); - $225 = tempRet0; - $226 = (_bitshift64Shl(($214|0),($215|0),26)|0); - $227 = tempRet0; - $228 = (_i64Subtract(($196|0),($197|0),($226|0),($227|0))|0); - $229 = tempRet0; - $230 = (_i64Add(($210|0),($211|0),33554432,0)|0); - $231 = tempRet0; - $232 = (_bitshift64Ashr(($230|0),($231|0),26)|0); - $233 = tempRet0; - $234 = (_i64Add(($84|0),($85|0),($106|0),($107|0))|0); - $235 = tempRet0; - $236 = (_i64Add(($234|0),($235|0),($56|0),($57|0))|0); - $237 = tempRet0; - $238 = (_i64Add(($236|0),($237|0),($178|0),($179|0))|0); - $239 = tempRet0; - $240 = (_i64Add(($238|0),($239|0),($174|0),($175|0))|0); - $241 = tempRet0; - $242 = (_i64Add(($240|0),($241|0),($232|0),($233|0))|0); - $243 = tempRet0; - $244 = (_bitshift64Shl(($232|0),($233|0),26)|0); - $245 = tempRet0; - $246 = (_i64Subtract(($210|0),($211|0),($244|0),($245|0))|0); - $247 = tempRet0; - $248 = (_i64Add(($224|0),($225|0),16777216,0)|0); - $249 = tempRet0; - $250 = (_bitshift64Ashr(($248|0),($249|0),25)|0); - $251 = tempRet0; - $252 = (_i64Add(($198|0),($199|0),($166|0),($167|0))|0); - $253 = tempRet0; - $254 = (_i64Add(($252|0),($253|0),($160|0),($161|0))|0); - $255 = tempRet0; - $256 = (_i64Add(($254|0),($255|0),($150|0),($151|0))|0); - $257 = tempRet0; - $258 = (_i64Add(($256|0),($257|0),($136|0),($137|0))|0); - $259 = tempRet0; - $260 = (_i64Add(($258|0),($259|0),($250|0),($251|0))|0); - $261 = tempRet0; - $262 = (_bitshift64Shl(($250|0),($251|0),25)|0); - $263 = tempRet0; - $264 = (_i64Subtract(($224|0),($225|0),($262|0),($263|0))|0); - $265 = tempRet0; - $266 = (_i64Add(($242|0),($243|0),16777216,0)|0); - $267 = tempRet0; - $268 = (_bitshift64Ashr(($266|0),($267|0),25)|0); - $269 = tempRet0; - $270 = (_i64Add(($122|0),($123|0),($108|0),($109|0))|0); - $271 = tempRet0; - $272 = (_i64Add(($270|0),($271|0),($88|0),($89|0))|0); - $273 = tempRet0; - $274 = (_i64Add(($272|0),($273|0),($60|0),($61|0))|0); - $275 = tempRet0; - $276 = (_i64Add(($274|0),($275|0),($182|0),($183|0))|0); - $277 = tempRet0; - $278 = (_i64Add(($276|0),($277|0),($180|0),($181|0))|0); - $279 = tempRet0; - $280 = (_i64Add(($278|0),($279|0),($268|0),($269|0))|0); - $281 = tempRet0; - $282 = (_bitshift64Shl(($268|0),($269|0),25)|0); - $283 = tempRet0; - $284 = (_i64Subtract(($242|0),($243|0),($282|0),($283|0))|0); - $285 = tempRet0; - $286 = (_i64Add(($260|0),($261|0),33554432,0)|0); - $287 = tempRet0; - $288 = (_bitshift64Ashr(($286|0),($287|0),26)|0); - $289 = tempRet0; - $290 = (_i64Add(($200|0),($201|0),($168|0),($169|0))|0); - $291 = tempRet0; - $292 = (_i64Add(($290|0),($291|0),($162|0),($163|0))|0); - $293 = tempRet0; - $294 = (_i64Add(($292|0),($293|0),($152|0),($153|0))|0); - $295 = tempRet0; - $296 = (_i64Add(($294|0),($295|0),($288|0),($289|0))|0); - $297 = tempRet0; - $298 = (_bitshift64Shl(($288|0),($289|0),26)|0); - $299 = tempRet0; - $300 = (_i64Subtract(($260|0),($261|0),($298|0),($299|0))|0); - $301 = tempRet0; - $302 = (_i64Add(($280|0),($281|0),33554432,0)|0); - $303 = tempRet0; - $304 = (_bitshift64Ashr(($302|0),($303|0),26)|0); - $305 = tempRet0; - $306 = (_i64Add(($110|0),($111|0),($124|0),($125|0))|0); - $307 = tempRet0; - $308 = (_i64Add(($306|0),($307|0),($90|0),($91|0))|0); - $309 = tempRet0; - $310 = (_i64Add(($308|0),($309|0),($64|0),($65|0))|0); - $311 = tempRet0; - $312 = (_i64Add(($310|0),($311|0),($184|0),($185|0))|0); - $313 = tempRet0; - $314 = (_i64Add(($312|0),($313|0),($304|0),($305|0))|0); - $315 = tempRet0; - $316 = (_bitshift64Shl(($304|0),($305|0),26)|0); - $317 = tempRet0; - $318 = (_i64Subtract(($280|0),($281|0),($316|0),($317|0))|0); - $319 = tempRet0; - $320 = (_i64Add(($296|0),($297|0),16777216,0)|0); - $321 = tempRet0; - $322 = (_bitshift64Ashr(($320|0),($321|0),25)|0); - $323 = tempRet0; - $324 = (_i64Add(($322|0),($323|0),($246|0),($247|0))|0); - $325 = tempRet0; - $326 = (_bitshift64Shl(($322|0),($323|0),25)|0); - $327 = tempRet0; - $328 = (_i64Subtract(($296|0),($297|0),($326|0),($327|0))|0); - $329 = tempRet0; - $330 = (_i64Add(($314|0),($315|0),16777216,0)|0); - $331 = tempRet0; - $332 = (_bitshift64Ashr(($330|0),($331|0),25)|0); - $333 = tempRet0; - $334 = (_i64Add(($112|0),($113|0),($138|0),($139|0))|0); - $335 = tempRet0; - $336 = (_i64Add(($334|0),($335|0),($126|0),($127|0))|0); - $337 = tempRet0; - $338 = (_i64Add(($336|0),($337|0),($94|0),($95|0))|0); - $339 = tempRet0; - $340 = (_i64Add(($338|0),($339|0),($68|0),($69|0))|0); - $341 = tempRet0; - $342 = (_i64Add(($340|0),($341|0),($186|0),($187|0))|0); - $343 = tempRet0; - $344 = (_i64Add(($342|0),($343|0),($332|0),($333|0))|0); - $345 = tempRet0; - $346 = (_bitshift64Shl(($332|0),($333|0),25)|0); - $347 = tempRet0; - $348 = (_i64Subtract(($314|0),($315|0),($346|0),($347|0))|0); - $349 = tempRet0; - $350 = (_i64Add(($324|0),($325|0),33554432,0)|0); - $351 = tempRet0; - $352 = (_bitshift64Ashr(($350|0),($351|0),26)|0); - $353 = tempRet0; - $354 = (_i64Add(($284|0),($285|0),($352|0),($353|0))|0); - $355 = tempRet0; - $356 = (_bitshift64Shl(($352|0),($353|0),26)|0); - $357 = tempRet0; - $358 = (_i64Subtract(($324|0),($325|0),($356|0),($357|0))|0); - $359 = tempRet0; - $360 = (_i64Add(($344|0),($345|0),33554432,0)|0); - $361 = tempRet0; - $362 = (_bitshift64Ashr(($360|0),($361|0),26)|0); - $363 = tempRet0; - $364 = (_i64Add(($128|0),($129|0),($142|0),($143|0))|0); - $365 = tempRet0; - $366 = (_i64Add(($364|0),($365|0),($114|0),($115|0))|0); - $367 = tempRet0; - $368 = (_i64Add(($366|0),($367|0),($96|0),($97|0))|0); - $369 = tempRet0; - $370 = (_i64Add(($368|0),($369|0),($72|0),($73|0))|0); - $371 = tempRet0; - $372 = (_i64Add(($370|0),($371|0),($362|0),($363|0))|0); - $373 = tempRet0; - $374 = (_bitshift64Shl(($362|0),($363|0),26)|0); - $375 = tempRet0; - $376 = (_i64Subtract(($344|0),($345|0),($374|0),($375|0))|0); - $377 = tempRet0; - $378 = (_i64Add(($372|0),($373|0),16777216,0)|0); - $379 = tempRet0; - $380 = (_bitshift64Ashr(($378|0),($379|0),25)|0); - $381 = tempRet0; - $382 = (___muldi3(($380|0),($381|0),19,0)|0); - $383 = tempRet0; - $384 = (_i64Add(($382|0),($383|0),($228|0),($229|0))|0); - $385 = tempRet0; - $386 = (_bitshift64Shl(($380|0),($381|0),25)|0); - $387 = tempRet0; - $388 = (_i64Subtract(($372|0),($373|0),($386|0),($387|0))|0); - $389 = tempRet0; - $390 = (_i64Add(($384|0),($385|0),33554432,0)|0); - $391 = tempRet0; - $392 = (_bitshift64Ashr(($390|0),($391|0),26)|0); - $393 = tempRet0; - $394 = (_i64Add(($264|0),($265|0),($392|0),($393|0))|0); - $395 = tempRet0; - $396 = (_bitshift64Shl(($392|0),($393|0),26)|0); - $397 = tempRet0; - $398 = (_i64Subtract(($384|0),($385|0),($396|0),($397|0))|0); - $399 = tempRet0; - HEAP32[$h>>2] = $398; - $400 = ((($h)) + 4|0); - HEAP32[$400>>2] = $394; - $401 = ((($h)) + 8|0); - HEAP32[$401>>2] = $300; - $402 = ((($h)) + 12|0); - HEAP32[$402>>2] = $328; - $403 = ((($h)) + 16|0); - HEAP32[$403>>2] = $358; - $404 = ((($h)) + 20|0); - HEAP32[$404>>2] = $354; - $405 = ((($h)) + 24|0); - HEAP32[$405>>2] = $318; - $406 = ((($h)) + 28|0); - HEAP32[$406>>2] = $348; - $407 = ((($h)) + 32|0); - HEAP32[$407>>2] = $376; - $408 = ((($h)) + 36|0); - HEAP32[$408>>2] = $388; - return; -} -function _crypto_sign_ed25519_ref10_fe_sq2($h,$f) { - $h = $h|0; - $f = $f|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; - var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; - var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; - var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; - var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; - var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; - var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; - var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; - var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; - var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; - var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; - var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; - var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0; - var $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0; - var $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0; - var $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0; - var $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); - $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); - $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); - $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); - $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); - $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); - $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); - $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); - $18 = HEAP32[$17>>2]|0; - $19 = $0 << 1; - $20 = $2 << 1; - $21 = $4 << 1; - $22 = $6 << 1; - $23 = $8 << 1; - $24 = $10 << 1; - $25 = $12 << 1; - $26 = $14 << 1; - $27 = ($10*38)|0; - $28 = ($12*19)|0; - $29 = ($14*38)|0; - $30 = ($16*19)|0; - $31 = ($18*38)|0; - $32 = ($0|0)<(0); - $33 = $32 << 31 >> 31; - $34 = (___muldi3(($0|0),($33|0),($0|0),($33|0))|0); - $35 = tempRet0; - $36 = ($19|0)<(0); - $37 = $36 << 31 >> 31; - $38 = ($2|0)<(0); - $39 = $38 << 31 >> 31; - $40 = (___muldi3(($19|0),($37|0),($2|0),($39|0))|0); - $41 = tempRet0; - $42 = ($4|0)<(0); - $43 = $42 << 31 >> 31; - $44 = (___muldi3(($4|0),($43|0),($19|0),($37|0))|0); - $45 = tempRet0; - $46 = ($6|0)<(0); - $47 = $46 << 31 >> 31; - $48 = (___muldi3(($6|0),($47|0),($19|0),($37|0))|0); - $49 = tempRet0; - $50 = ($8|0)<(0); - $51 = $50 << 31 >> 31; - $52 = (___muldi3(($8|0),($51|0),($19|0),($37|0))|0); - $53 = tempRet0; - $54 = ($10|0)<(0); - $55 = $54 << 31 >> 31; - $56 = (___muldi3(($10|0),($55|0),($19|0),($37|0))|0); - $57 = tempRet0; - $58 = ($12|0)<(0); - $59 = $58 << 31 >> 31; - $60 = (___muldi3(($12|0),($59|0),($19|0),($37|0))|0); - $61 = tempRet0; - $62 = ($14|0)<(0); - $63 = $62 << 31 >> 31; - $64 = (___muldi3(($14|0),($63|0),($19|0),($37|0))|0); - $65 = tempRet0; - $66 = ($16|0)<(0); - $67 = $66 << 31 >> 31; - $68 = (___muldi3(($16|0),($67|0),($19|0),($37|0))|0); - $69 = tempRet0; - $70 = ($18|0)<(0); - $71 = $70 << 31 >> 31; - $72 = (___muldi3(($18|0),($71|0),($19|0),($37|0))|0); - $73 = tempRet0; - $74 = ($20|0)<(0); - $75 = $74 << 31 >> 31; - $76 = (___muldi3(($20|0),($75|0),($2|0),($39|0))|0); - $77 = tempRet0; - $78 = (___muldi3(($20|0),($75|0),($4|0),($43|0))|0); - $79 = tempRet0; - $80 = ($22|0)<(0); - $81 = $80 << 31 >> 31; - $82 = (___muldi3(($22|0),($81|0),($20|0),($75|0))|0); - $83 = tempRet0; - $84 = (___muldi3(($8|0),($51|0),($20|0),($75|0))|0); - $85 = tempRet0; - $86 = ($24|0)<(0); - $87 = $86 << 31 >> 31; - $88 = (___muldi3(($24|0),($87|0),($20|0),($75|0))|0); - $89 = tempRet0; - $90 = (___muldi3(($12|0),($59|0),($20|0),($75|0))|0); - $91 = tempRet0; - $92 = ($26|0)<(0); - $93 = $92 << 31 >> 31; - $94 = (___muldi3(($26|0),($93|0),($20|0),($75|0))|0); - $95 = tempRet0; - $96 = (___muldi3(($16|0),($67|0),($20|0),($75|0))|0); - $97 = tempRet0; - $98 = ($31|0)<(0); - $99 = $98 << 31 >> 31; - $100 = (___muldi3(($31|0),($99|0),($20|0),($75|0))|0); - $101 = tempRet0; - $102 = (___muldi3(($4|0),($43|0),($4|0),($43|0))|0); - $103 = tempRet0; - $104 = ($21|0)<(0); - $105 = $104 << 31 >> 31; - $106 = (___muldi3(($21|0),($105|0),($6|0),($47|0))|0); - $107 = tempRet0; - $108 = (___muldi3(($8|0),($51|0),($21|0),($105|0))|0); - $109 = tempRet0; - $110 = (___muldi3(($10|0),($55|0),($21|0),($105|0))|0); - $111 = tempRet0; - $112 = (___muldi3(($12|0),($59|0),($21|0),($105|0))|0); - $113 = tempRet0; - $114 = (___muldi3(($14|0),($63|0),($21|0),($105|0))|0); - $115 = tempRet0; - $116 = ($30|0)<(0); - $117 = $116 << 31 >> 31; - $118 = (___muldi3(($30|0),($117|0),($21|0),($105|0))|0); - $119 = tempRet0; - $120 = (___muldi3(($31|0),($99|0),($4|0),($43|0))|0); - $121 = tempRet0; - $122 = (___muldi3(($22|0),($81|0),($6|0),($47|0))|0); - $123 = tempRet0; - $124 = (___muldi3(($22|0),($81|0),($8|0),($51|0))|0); - $125 = tempRet0; - $126 = (___muldi3(($24|0),($87|0),($22|0),($81|0))|0); - $127 = tempRet0; - $128 = (___muldi3(($12|0),($59|0),($22|0),($81|0))|0); - $129 = tempRet0; - $130 = ($29|0)<(0); - $131 = $130 << 31 >> 31; - $132 = (___muldi3(($29|0),($131|0),($22|0),($81|0))|0); - $133 = tempRet0; - $134 = (___muldi3(($30|0),($117|0),($22|0),($81|0))|0); - $135 = tempRet0; - $136 = (___muldi3(($31|0),($99|0),($22|0),($81|0))|0); - $137 = tempRet0; - $138 = (___muldi3(($8|0),($51|0),($8|0),($51|0))|0); - $139 = tempRet0; - $140 = ($23|0)<(0); - $141 = $140 << 31 >> 31; - $142 = (___muldi3(($23|0),($141|0),($10|0),($55|0))|0); - $143 = tempRet0; - $144 = ($28|0)<(0); - $145 = $144 << 31 >> 31; - $146 = (___muldi3(($28|0),($145|0),($23|0),($141|0))|0); - $147 = tempRet0; - $148 = (___muldi3(($29|0),($131|0),($8|0),($51|0))|0); - $149 = tempRet0; - $150 = (___muldi3(($30|0),($117|0),($23|0),($141|0))|0); - $151 = tempRet0; - $152 = (___muldi3(($31|0),($99|0),($8|0),($51|0))|0); - $153 = tempRet0; - $154 = ($27|0)<(0); - $155 = $154 << 31 >> 31; - $156 = (___muldi3(($27|0),($155|0),($10|0),($55|0))|0); - $157 = tempRet0; - $158 = (___muldi3(($28|0),($145|0),($24|0),($87|0))|0); - $159 = tempRet0; - $160 = (___muldi3(($29|0),($131|0),($24|0),($87|0))|0); - $161 = tempRet0; - $162 = (___muldi3(($30|0),($117|0),($24|0),($87|0))|0); - $163 = tempRet0; - $164 = (___muldi3(($31|0),($99|0),($24|0),($87|0))|0); - $165 = tempRet0; - $166 = (___muldi3(($28|0),($145|0),($12|0),($59|0))|0); - $167 = tempRet0; - $168 = (___muldi3(($29|0),($131|0),($12|0),($59|0))|0); - $169 = tempRet0; - $170 = ($25|0)<(0); - $171 = $170 << 31 >> 31; - $172 = (___muldi3(($30|0),($117|0),($25|0),($171|0))|0); - $173 = tempRet0; - $174 = (___muldi3(($31|0),($99|0),($12|0),($59|0))|0); - $175 = tempRet0; - $176 = (___muldi3(($29|0),($131|0),($14|0),($63|0))|0); - $177 = tempRet0; - $178 = (___muldi3(($30|0),($117|0),($26|0),($93|0))|0); - $179 = tempRet0; - $180 = (___muldi3(($31|0),($99|0),($26|0),($93|0))|0); - $181 = tempRet0; - $182 = (___muldi3(($30|0),($117|0),($16|0),($67|0))|0); - $183 = tempRet0; - $184 = (___muldi3(($31|0),($99|0),($16|0),($67|0))|0); - $185 = tempRet0; - $186 = (___muldi3(($31|0),($99|0),($18|0),($71|0))|0); - $187 = tempRet0; - $188 = (_i64Add(($156|0),($157|0),($34|0),($35|0))|0); - $189 = tempRet0; - $190 = (_i64Add(($188|0),($189|0),($146|0),($147|0))|0); - $191 = tempRet0; - $192 = (_i64Add(($190|0),($191|0),($132|0),($133|0))|0); - $193 = tempRet0; - $194 = (_i64Add(($192|0),($193|0),($118|0),($119|0))|0); - $195 = tempRet0; - $196 = (_i64Add(($194|0),($195|0),($100|0),($101|0))|0); - $197 = tempRet0; - $198 = (_i64Add(($158|0),($159|0),($40|0),($41|0))|0); - $199 = tempRet0; - $200 = (_i64Add(($198|0),($199|0),($148|0),($149|0))|0); - $201 = tempRet0; - $202 = (_i64Add(($200|0),($201|0),($134|0),($135|0))|0); - $203 = tempRet0; - $204 = (_i64Add(($202|0),($203|0),($120|0),($121|0))|0); - $205 = tempRet0; - $206 = (_i64Add(($44|0),($45|0),($76|0),($77|0))|0); - $207 = tempRet0; - $208 = (_i64Add(($206|0),($207|0),($166|0),($167|0))|0); - $209 = tempRet0; - $210 = (_i64Add(($208|0),($209|0),($160|0),($161|0))|0); - $211 = tempRet0; - $212 = (_i64Add(($210|0),($211|0),($150|0),($151|0))|0); - $213 = tempRet0; - $214 = (_i64Add(($212|0),($213|0),($136|0),($137|0))|0); - $215 = tempRet0; - $216 = (_i64Add(($48|0),($49|0),($78|0),($79|0))|0); - $217 = tempRet0; - $218 = (_i64Add(($216|0),($217|0),($168|0),($169|0))|0); - $219 = tempRet0; - $220 = (_i64Add(($218|0),($219|0),($162|0),($163|0))|0); - $221 = tempRet0; - $222 = (_i64Add(($220|0),($221|0),($152|0),($153|0))|0); - $223 = tempRet0; - $224 = (_i64Add(($82|0),($83|0),($102|0),($103|0))|0); - $225 = tempRet0; - $226 = (_i64Add(($224|0),($225|0),($52|0),($53|0))|0); - $227 = tempRet0; - $228 = (_i64Add(($226|0),($227|0),($176|0),($177|0))|0); - $229 = tempRet0; - $230 = (_i64Add(($228|0),($229|0),($172|0),($173|0))|0); - $231 = tempRet0; - $232 = (_i64Add(($230|0),($231|0),($164|0),($165|0))|0); - $233 = tempRet0; - $234 = (_i64Add(($84|0),($85|0),($106|0),($107|0))|0); - $235 = tempRet0; - $236 = (_i64Add(($234|0),($235|0),($56|0),($57|0))|0); - $237 = tempRet0; - $238 = (_i64Add(($236|0),($237|0),($178|0),($179|0))|0); - $239 = tempRet0; - $240 = (_i64Add(($238|0),($239|0),($174|0),($175|0))|0); - $241 = tempRet0; - $242 = (_i64Add(($122|0),($123|0),($108|0),($109|0))|0); - $243 = tempRet0; - $244 = (_i64Add(($242|0),($243|0),($88|0),($89|0))|0); - $245 = tempRet0; - $246 = (_i64Add(($244|0),($245|0),($60|0),($61|0))|0); - $247 = tempRet0; - $248 = (_i64Add(($246|0),($247|0),($182|0),($183|0))|0); - $249 = tempRet0; - $250 = (_i64Add(($248|0),($249|0),($180|0),($181|0))|0); - $251 = tempRet0; - $252 = (_i64Add(($110|0),($111|0),($124|0),($125|0))|0); - $253 = tempRet0; - $254 = (_i64Add(($252|0),($253|0),($90|0),($91|0))|0); - $255 = tempRet0; - $256 = (_i64Add(($254|0),($255|0),($64|0),($65|0))|0); - $257 = tempRet0; - $258 = (_i64Add(($256|0),($257|0),($184|0),($185|0))|0); - $259 = tempRet0; - $260 = (_i64Add(($112|0),($113|0),($138|0),($139|0))|0); - $261 = tempRet0; - $262 = (_i64Add(($260|0),($261|0),($126|0),($127|0))|0); - $263 = tempRet0; - $264 = (_i64Add(($262|0),($263|0),($94|0),($95|0))|0); - $265 = tempRet0; - $266 = (_i64Add(($264|0),($265|0),($68|0),($69|0))|0); - $267 = tempRet0; - $268 = (_i64Add(($266|0),($267|0),($186|0),($187|0))|0); - $269 = tempRet0; - $270 = (_i64Add(($128|0),($129|0),($142|0),($143|0))|0); - $271 = tempRet0; - $272 = (_i64Add(($270|0),($271|0),($114|0),($115|0))|0); - $273 = tempRet0; - $274 = (_i64Add(($272|0),($273|0),($96|0),($97|0))|0); - $275 = tempRet0; - $276 = (_i64Add(($274|0),($275|0),($72|0),($73|0))|0); - $277 = tempRet0; - $278 = (_bitshift64Shl(($196|0),($197|0),1)|0); - $279 = tempRet0; - $280 = (_bitshift64Shl(($204|0),($205|0),1)|0); - $281 = tempRet0; - $282 = (_bitshift64Shl(($214|0),($215|0),1)|0); - $283 = tempRet0; - $284 = (_bitshift64Shl(($222|0),($223|0),1)|0); - $285 = tempRet0; - $286 = (_bitshift64Shl(($232|0),($233|0),1)|0); - $287 = tempRet0; - $288 = (_bitshift64Shl(($240|0),($241|0),1)|0); - $289 = tempRet0; - $290 = (_bitshift64Shl(($250|0),($251|0),1)|0); - $291 = tempRet0; - $292 = (_bitshift64Shl(($258|0),($259|0),1)|0); - $293 = tempRet0; - $294 = (_bitshift64Shl(($268|0),($269|0),1)|0); - $295 = tempRet0; - $296 = (_bitshift64Shl(($276|0),($277|0),1)|0); - $297 = tempRet0; - $298 = (_i64Add(($278|0),($279|0),33554432,0)|0); - $299 = tempRet0; - $300 = (_bitshift64Ashr(($298|0),($299|0),26)|0); - $301 = tempRet0; - $302 = (_i64Add(($300|0),($301|0),($280|0),($281|0))|0); - $303 = tempRet0; - $304 = (_bitshift64Shl(($300|0),($301|0),26)|0); - $305 = tempRet0; - $306 = (_i64Subtract(($278|0),($279|0),($304|0),($305|0))|0); - $307 = tempRet0; - $308 = (_i64Add(($286|0),($287|0),33554432,0)|0); - $309 = tempRet0; - $310 = (_bitshift64Ashr(($308|0),($309|0),26)|0); - $311 = tempRet0; - $312 = (_i64Add(($310|0),($311|0),($288|0),($289|0))|0); - $313 = tempRet0; - $314 = (_bitshift64Shl(($310|0),($311|0),26)|0); - $315 = tempRet0; - $316 = (_i64Subtract(($286|0),($287|0),($314|0),($315|0))|0); - $317 = tempRet0; - $318 = (_i64Add(($302|0),($303|0),16777216,0)|0); - $319 = tempRet0; - $320 = (_bitshift64Ashr(($318|0),($319|0),25)|0); - $321 = tempRet0; - $322 = (_i64Add(($320|0),($321|0),($282|0),($283|0))|0); - $323 = tempRet0; - $324 = (_bitshift64Shl(($320|0),($321|0),25)|0); - $325 = tempRet0; - $326 = (_i64Subtract(($302|0),($303|0),($324|0),($325|0))|0); - $327 = tempRet0; - $328 = (_i64Add(($312|0),($313|0),16777216,0)|0); - $329 = tempRet0; - $330 = (_bitshift64Ashr(($328|0),($329|0),25)|0); - $331 = tempRet0; - $332 = (_i64Add(($330|0),($331|0),($290|0),($291|0))|0); - $333 = tempRet0; - $334 = (_bitshift64Shl(($330|0),($331|0),25)|0); - $335 = tempRet0; - $336 = (_i64Subtract(($312|0),($313|0),($334|0),($335|0))|0); - $337 = tempRet0; - $338 = (_i64Add(($322|0),($323|0),33554432,0)|0); - $339 = tempRet0; - $340 = (_bitshift64Ashr(($338|0),($339|0),26)|0); - $341 = tempRet0; - $342 = (_i64Add(($340|0),($341|0),($284|0),($285|0))|0); - $343 = tempRet0; - $344 = (_bitshift64Shl(($340|0),($341|0),26)|0); - $345 = tempRet0; - $346 = (_i64Subtract(($322|0),($323|0),($344|0),($345|0))|0); - $347 = tempRet0; - $348 = (_i64Add(($332|0),($333|0),33554432,0)|0); - $349 = tempRet0; - $350 = (_bitshift64Ashr(($348|0),($349|0),26)|0); - $351 = tempRet0; - $352 = (_i64Add(($350|0),($351|0),($292|0),($293|0))|0); - $353 = tempRet0; - $354 = (_bitshift64Shl(($350|0),($351|0),26)|0); - $355 = tempRet0; - $356 = (_i64Subtract(($332|0),($333|0),($354|0),($355|0))|0); - $357 = tempRet0; - $358 = (_i64Add(($342|0),($343|0),16777216,0)|0); - $359 = tempRet0; - $360 = (_bitshift64Ashr(($358|0),($359|0),25)|0); - $361 = tempRet0; - $362 = (_i64Add(($360|0),($361|0),($316|0),($317|0))|0); - $363 = tempRet0; - $364 = (_bitshift64Shl(($360|0),($361|0),25)|0); - $365 = tempRet0; - $366 = (_i64Subtract(($342|0),($343|0),($364|0),($365|0))|0); - $367 = tempRet0; - $368 = (_i64Add(($352|0),($353|0),16777216,0)|0); - $369 = tempRet0; - $370 = (_bitshift64Ashr(($368|0),($369|0),25)|0); - $371 = tempRet0; - $372 = (_i64Add(($370|0),($371|0),($294|0),($295|0))|0); - $373 = tempRet0; - $374 = (_bitshift64Shl(($370|0),($371|0),25)|0); - $375 = tempRet0; - $376 = (_i64Subtract(($352|0),($353|0),($374|0),($375|0))|0); - $377 = tempRet0; - $378 = (_i64Add(($362|0),($363|0),33554432,0)|0); - $379 = tempRet0; - $380 = (_bitshift64Ashr(($378|0),($379|0),26)|0); - $381 = tempRet0; - $382 = (_i64Add(($336|0),($337|0),($380|0),($381|0))|0); - $383 = tempRet0; - $384 = (_bitshift64Shl(($380|0),($381|0),26)|0); - $385 = tempRet0; - $386 = (_i64Subtract(($362|0),($363|0),($384|0),($385|0))|0); - $387 = tempRet0; - $388 = (_i64Add(($372|0),($373|0),33554432,0)|0); - $389 = tempRet0; - $390 = (_bitshift64Ashr(($388|0),($389|0),26)|0); - $391 = tempRet0; - $392 = (_i64Add(($390|0),($391|0),($296|0),($297|0))|0); - $393 = tempRet0; - $394 = (_bitshift64Shl(($390|0),($391|0),26)|0); - $395 = tempRet0; - $396 = (_i64Subtract(($372|0),($373|0),($394|0),($395|0))|0); - $397 = tempRet0; - $398 = (_i64Add(($392|0),($393|0),16777216,0)|0); - $399 = tempRet0; - $400 = (_bitshift64Ashr(($398|0),($399|0),25)|0); - $401 = tempRet0; - $402 = (___muldi3(($400|0),($401|0),19,0)|0); - $403 = tempRet0; - $404 = (_i64Add(($402|0),($403|0),($306|0),($307|0))|0); - $405 = tempRet0; - $406 = (_bitshift64Shl(($400|0),($401|0),25)|0); - $407 = tempRet0; - $408 = (_i64Subtract(($392|0),($393|0),($406|0),($407|0))|0); - $409 = tempRet0; - $410 = (_i64Add(($404|0),($405|0),33554432,0)|0); - $411 = tempRet0; - $412 = (_bitshift64Ashr(($410|0),($411|0),26)|0); - $413 = tempRet0; - $414 = (_i64Add(($326|0),($327|0),($412|0),($413|0))|0); - $415 = tempRet0; - $416 = (_bitshift64Shl(($412|0),($413|0),26)|0); - $417 = tempRet0; - $418 = (_i64Subtract(($404|0),($405|0),($416|0),($417|0))|0); - $419 = tempRet0; - HEAP32[$h>>2] = $418; - $420 = ((($h)) + 4|0); - HEAP32[$420>>2] = $414; - $421 = ((($h)) + 8|0); - HEAP32[$421>>2] = $346; - $422 = ((($h)) + 12|0); - HEAP32[$422>>2] = $366; - $423 = ((($h)) + 16|0); - HEAP32[$423>>2] = $386; - $424 = ((($h)) + 20|0); - HEAP32[$424>>2] = $382; - $425 = ((($h)) + 24|0); - HEAP32[$425>>2] = $356; - $426 = ((($h)) + 28|0); - HEAP32[$426>>2] = $376; - $427 = ((($h)) + 32|0); - HEAP32[$427>>2] = $396; - $428 = ((($h)) + 36|0); - HEAP32[$428>>2] = $408; - return; -} -function _crypto_sign_ed25519_ref10_fe_sub($h,$f,$g) { - $h = $h|0; - $f = $f|0; - $g = $g|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; - var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); - $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); - $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); - $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); - $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); - $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); - $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); - $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); - $18 = HEAP32[$17>>2]|0; - $19 = HEAP32[$g>>2]|0; - $20 = ((($g)) + 4|0); - $21 = HEAP32[$20>>2]|0; - $22 = ((($g)) + 8|0); - $23 = HEAP32[$22>>2]|0; - $24 = ((($g)) + 12|0); - $25 = HEAP32[$24>>2]|0; - $26 = ((($g)) + 16|0); - $27 = HEAP32[$26>>2]|0; - $28 = ((($g)) + 20|0); - $29 = HEAP32[$28>>2]|0; - $30 = ((($g)) + 24|0); - $31 = HEAP32[$30>>2]|0; - $32 = ((($g)) + 28|0); - $33 = HEAP32[$32>>2]|0; - $34 = ((($g)) + 32|0); - $35 = HEAP32[$34>>2]|0; - $36 = ((($g)) + 36|0); - $37 = HEAP32[$36>>2]|0; - $38 = (($0) - ($19))|0; - $39 = (($2) - ($21))|0; - $40 = (($4) - ($23))|0; - $41 = (($6) - ($25))|0; - $42 = (($8) - ($27))|0; - $43 = (($10) - ($29))|0; - $44 = (($12) - ($31))|0; - $45 = (($14) - ($33))|0; - $46 = (($16) - ($35))|0; - $47 = (($18) - ($37))|0; - HEAP32[$h>>2] = $38; - $48 = ((($h)) + 4|0); - HEAP32[$48>>2] = $39; - $49 = ((($h)) + 8|0); - HEAP32[$49>>2] = $40; - $50 = ((($h)) + 12|0); - HEAP32[$50>>2] = $41; - $51 = ((($h)) + 16|0); - HEAP32[$51>>2] = $42; - $52 = ((($h)) + 20|0); - HEAP32[$52>>2] = $43; - $53 = ((($h)) + 24|0); - HEAP32[$53>>2] = $44; - $54 = ((($h)) + 28|0); - HEAP32[$54>>2] = $45; - $55 = ((($h)) + 32|0); - HEAP32[$55>>2] = $46; - $56 = ((($h)) + 36|0); - HEAP32[$56>>2] = $47; - return; -} -function _crypto_sign_ed25519_ref10_fe_tobytes($s,$h) { - $s = $s|0; - $h = $h|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0; - var $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0; - var $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0; - var $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0; - var $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP32[$h>>2]|0; - $1 = ((($h)) + 4|0); - $2 = HEAP32[$1>>2]|0; - $3 = ((($h)) + 8|0); - $4 = HEAP32[$3>>2]|0; - $5 = ((($h)) + 12|0); - $6 = HEAP32[$5>>2]|0; - $7 = ((($h)) + 16|0); - $8 = HEAP32[$7>>2]|0; - $9 = ((($h)) + 20|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($h)) + 24|0); - $12 = HEAP32[$11>>2]|0; - $13 = ((($h)) + 28|0); - $14 = HEAP32[$13>>2]|0; - $15 = ((($h)) + 32|0); - $16 = HEAP32[$15>>2]|0; - $17 = ((($h)) + 36|0); - $18 = HEAP32[$17>>2]|0; - $19 = ($18*19)|0; - $20 = (($19) + 16777216)|0; - $21 = $20 >> 25; - $22 = (($21) + ($0))|0; - $23 = $22 >> 26; - $24 = (($23) + ($2))|0; - $25 = $24 >> 25; - $26 = (($25) + ($4))|0; - $27 = $26 >> 26; - $28 = (($27) + ($6))|0; - $29 = $28 >> 25; - $30 = (($29) + ($8))|0; - $31 = $30 >> 26; - $32 = (($31) + ($10))|0; - $33 = $32 >> 25; - $34 = (($33) + ($12))|0; - $35 = $34 >> 26; - $36 = (($35) + ($14))|0; - $37 = $36 >> 25; - $38 = (($37) + ($16))|0; - $39 = $38 >> 26; - $40 = (($39) + ($18))|0; - $41 = $40 >> 25; - $42 = ($41*19)|0; - $43 = (($42) + ($0))|0; - $44 = $43 >> 26; - $45 = (($44) + ($2))|0; - $46 = $44 << 26; - $47 = (($43) - ($46))|0; - $48 = $45 >> 25; - $49 = (($48) + ($4))|0; - $50 = $48 << 25; - $51 = (($45) - ($50))|0; - $52 = $49 >> 26; - $53 = (($52) + ($6))|0; - $54 = $52 << 26; - $55 = (($49) - ($54))|0; - $56 = $53 >> 25; - $57 = (($56) + ($8))|0; - $58 = $56 << 25; - $59 = (($53) - ($58))|0; - $60 = $57 >> 26; - $61 = (($60) + ($10))|0; - $62 = $60 << 26; - $63 = (($57) - ($62))|0; - $64 = $61 >> 25; - $65 = (($64) + ($12))|0; - $66 = $64 << 25; - $67 = (($61) - ($66))|0; - $68 = $65 >> 26; - $69 = (($68) + ($14))|0; - $70 = $68 << 26; - $71 = (($65) - ($70))|0; - $72 = $69 >> 25; - $73 = (($72) + ($16))|0; - $74 = $72 << 25; - $75 = (($69) - ($74))|0; - $76 = $73 >> 26; - $77 = (($76) + ($18))|0; - $78 = $76 << 26; - $79 = (($73) - ($78))|0; - $80 = $77 & 33554431; - $81 = $47&255; - HEAP8[$s>>0] = $81; - $82 = $47 >>> 8; - $83 = $82&255; - $84 = ((($s)) + 1|0); - HEAP8[$84>>0] = $83; - $85 = $47 >>> 16; - $86 = $85&255; - $87 = ((($s)) + 2|0); - HEAP8[$87>>0] = $86; - $88 = $47 >>> 24; - $89 = $51 << 2; - $90 = $89 | $88; - $91 = $90&255; - $92 = ((($s)) + 3|0); - HEAP8[$92>>0] = $91; - $93 = $51 >>> 6; - $94 = $93&255; - $95 = ((($s)) + 4|0); - HEAP8[$95>>0] = $94; - $96 = $51 >>> 14; - $97 = $96&255; - $98 = ((($s)) + 5|0); - HEAP8[$98>>0] = $97; - $99 = $51 >>> 22; - $100 = $55 << 3; - $101 = $100 | $99; - $102 = $101&255; - $103 = ((($s)) + 6|0); - HEAP8[$103>>0] = $102; - $104 = $55 >>> 5; - $105 = $104&255; - $106 = ((($s)) + 7|0); - HEAP8[$106>>0] = $105; - $107 = $55 >>> 13; - $108 = $107&255; - $109 = ((($s)) + 8|0); - HEAP8[$109>>0] = $108; - $110 = $55 >>> 21; - $111 = $59 << 5; - $112 = $111 | $110; - $113 = $112&255; - $114 = ((($s)) + 9|0); - HEAP8[$114>>0] = $113; - $115 = $59 >>> 3; - $116 = $115&255; - $117 = ((($s)) + 10|0); - HEAP8[$117>>0] = $116; - $118 = $59 >>> 11; - $119 = $118&255; - $120 = ((($s)) + 11|0); - HEAP8[$120>>0] = $119; - $121 = $59 >>> 19; - $122 = $63 << 6; - $123 = $122 | $121; - $124 = $123&255; - $125 = ((($s)) + 12|0); - HEAP8[$125>>0] = $124; - $126 = $63 >>> 2; - $127 = $126&255; - $128 = ((($s)) + 13|0); - HEAP8[$128>>0] = $127; - $129 = $63 >>> 10; - $130 = $129&255; - $131 = ((($s)) + 14|0); - HEAP8[$131>>0] = $130; - $132 = $63 >>> 18; - $133 = $132&255; - $134 = ((($s)) + 15|0); - HEAP8[$134>>0] = $133; - $135 = $67&255; - $136 = ((($s)) + 16|0); - HEAP8[$136>>0] = $135; - $137 = $67 >>> 8; - $138 = $137&255; - $139 = ((($s)) + 17|0); - HEAP8[$139>>0] = $138; - $140 = $67 >>> 16; - $141 = $140&255; - $142 = ((($s)) + 18|0); - HEAP8[$142>>0] = $141; - $143 = $67 >>> 24; - $144 = $71 << 1; - $145 = $144 | $143; - $146 = $145&255; - $147 = ((($s)) + 19|0); - HEAP8[$147>>0] = $146; - $148 = $71 >>> 7; - $149 = $148&255; - $150 = ((($s)) + 20|0); - HEAP8[$150>>0] = $149; - $151 = $71 >>> 15; - $152 = $151&255; - $153 = ((($s)) + 21|0); - HEAP8[$153>>0] = $152; - $154 = $71 >>> 23; - $155 = $75 << 3; - $156 = $155 | $154; - $157 = $156&255; - $158 = ((($s)) + 22|0); - HEAP8[$158>>0] = $157; - $159 = $75 >>> 5; - $160 = $159&255; - $161 = ((($s)) + 23|0); - HEAP8[$161>>0] = $160; - $162 = $75 >>> 13; - $163 = $162&255; - $164 = ((($s)) + 24|0); - HEAP8[$164>>0] = $163; - $165 = $75 >>> 21; - $166 = $79 << 4; - $167 = $166 | $165; - $168 = $167&255; - $169 = ((($s)) + 25|0); - HEAP8[$169>>0] = $168; - $170 = $79 >>> 4; - $171 = $170&255; - $172 = ((($s)) + 26|0); - HEAP8[$172>>0] = $171; - $173 = $79 >>> 12; - $174 = $173&255; - $175 = ((($s)) + 27|0); - HEAP8[$175>>0] = $174; - $176 = $79 >>> 20; - $177 = $80 << 6; - $178 = $176 | $177; - $179 = $178&255; - $180 = ((($s)) + 28|0); - HEAP8[$180>>0] = $179; - $181 = $77 >>> 2; - $182 = $181&255; - $183 = ((($s)) + 29|0); - HEAP8[$183>>0] = $182; - $184 = $77 >>> 10; - $185 = $184&255; - $186 = ((($s)) + 30|0); - HEAP8[$186>>0] = $185; - $187 = $80 >>> 18; - $188 = $187&255; - $189 = ((($s)) + 31|0); - HEAP8[$189>>0] = $188; - return; -} -function _crypto_sign_ed25519_ref10_ge_add($r,$p,$q) { - $r = $r|0; - $p = $p|0; - $q = $q|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $t0 = 0, label = 0, sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 48|0; - $t0 = sp; - $0 = ((($p)) + 40|0); - _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); - $1 = ((($r)) + 40|0); - _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); - $2 = ((($r)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($2,$r,$q); - $3 = ((($q)) + 40|0); - _crypto_sign_ed25519_ref10_fe_mul($1,$1,$3); - $4 = ((($r)) + 120|0); - $5 = ((($q)) + 120|0); - $6 = ((($p)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); - $7 = ((($p)) + 80|0); - $8 = ((($q)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($r,$7,$8); - _crypto_sign_ed25519_ref10_fe_add($t0,$r,$r); - _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); - _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); - _crypto_sign_ed25519_ref10_fe_add($2,$t0,$4); - _crypto_sign_ed25519_ref10_fe_sub($4,$t0,$4); - STACKTOP = sp;return; -} -function _crypto_sign_ed25519_ref10_ge_double_scalarmult_vartime($r,$a,$A,$b) { - $r = $r|0; - $a = $a|0; - $A = $A|0; - $b = $b|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $5 = 0, $6 = 0, $7 = 0; - var $8 = 0, $9 = 0, $A2 = 0, $Ai = 0, $aslide = 0, $bslide = 0, $i$0$lcssa = 0, $i$02 = 0, $i$11 = 0, $t = 0, $u = 0, label = 0, sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 2272|0; - $aslide = sp + 2016|0; - $bslide = sp + 1760|0; - $Ai = sp + 480|0; - $t = sp + 320|0; - $u = sp + 160|0; - $A2 = sp; - _slide($aslide,$a); - _slide($bslide,$b); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($Ai,$A); - _crypto_sign_ed25519_ref10_ge_p3_dbl($t,$A); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($A2,$t); - _crypto_sign_ed25519_ref10_ge_add($t,$A2,$Ai); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $0 = ((($Ai)) + 160|0); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($0,$u); - _crypto_sign_ed25519_ref10_ge_add($t,$A2,$0); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $1 = ((($Ai)) + 320|0); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($1,$u); - _crypto_sign_ed25519_ref10_ge_add($t,$A2,$1); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $2 = ((($Ai)) + 480|0); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($2,$u); - _crypto_sign_ed25519_ref10_ge_add($t,$A2,$2); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $3 = ((($Ai)) + 640|0); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($3,$u); - _crypto_sign_ed25519_ref10_ge_add($t,$A2,$3); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $4 = ((($Ai)) + 800|0); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($4,$u); - _crypto_sign_ed25519_ref10_ge_add($t,$A2,$4); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $5 = ((($Ai)) + 960|0); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($5,$u); - _crypto_sign_ed25519_ref10_ge_add($t,$A2,$5); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $6 = ((($Ai)) + 1120|0); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($6,$u); - _crypto_sign_ed25519_ref10_ge_p2_0($r); - $i$02 = 255; - while(1) { - $7 = (($aslide) + ($i$02)|0); - $8 = HEAP8[$7>>0]|0; - $9 = ($8<<24>>24)==(0); - if (!($9)) { - $i$0$lcssa = $i$02; - break; - } - $10 = (($bslide) + ($i$02)|0); - $11 = HEAP8[$10>>0]|0; - $12 = ($11<<24>>24)==(0); - if (!($12)) { - $i$0$lcssa = $i$02; - break; + ret += len; + } + return ret; + } catch (e) { + if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); + return -e.errno; } - $14 = (($i$02) + -1)|0; - $15 = ($i$02|0)>(0); - if ($15) { - $i$02 = $14; - } else { - $i$0$lcssa = $14; - break; } - } - $13 = ($i$0$lcssa|0)>(-1); - if ($13) { - $i$11 = $i$0$lcssa; - } else { - STACKTOP = sp;return; - } - while(1) { - _crypto_sign_ed25519_ref10_ge_p2_dbl($t,$r); - $16 = (($aslide) + ($i$11)|0); - $17 = HEAP8[$16>>0]|0; - $18 = ($17<<24>>24)>(0); - if ($18) { - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $19 = HEAP8[$16>>0]|0; - $20 = $19 << 24 >> 24; - $21 = (($20|0) / 2)&-1; - $22 = (($Ai) + (($21*160)|0)|0); - _crypto_sign_ed25519_ref10_ge_add($t,$u,$22); - } else { - $23 = ($17<<24>>24)<(0); - if ($23) { - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $24 = HEAP8[$16>>0]|0; - $25 = $24 << 24 >> 24; - $26 = (($25|0) / -2)&-1; - $27 = (($Ai) + (($26*160)|0)|0); - _crypto_sign_ed25519_ref10_ge_sub($t,$u,$27); - } + + function ___syscall54(which, varargs) {SYSCALLS.varargs = varargs; + try { + // ioctl + return 0; + } catch (e) { + if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); + return -e.errno; } - $28 = (($bslide) + ($i$11)|0); - $29 = HEAP8[$28>>0]|0; - $30 = ($29<<24>>24)>(0); - if ($30) { - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $31 = HEAP8[$28>>0]|0; - $32 = $31 << 24 >> 24; - $33 = (($32|0) / 2)&-1; - $34 = (712 + (($33*120)|0)|0); - _crypto_sign_ed25519_ref10_ge_madd($t,$u,$34); - } else { - $35 = ($29<<24>>24)<(0); - if ($35) { - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $36 = HEAP8[$28>>0]|0; - $37 = $36 << 24 >> 24; - $38 = (($37|0) / -2)&-1; - $39 = (712 + (($38*120)|0)|0); - _crypto_sign_ed25519_ref10_ge_msub($t,$u,$39); - } } - _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($r,$t); - $40 = (($i$11) + -1)|0; - $41 = ($i$11|0)>(0); - if ($41) { - $i$11 = $40; - } else { - break; +/* flush anything remaining in the buffer during shutdown */ __ATEXIT__.push(function() { var fflush = Module["_fflush"]; if (fflush) fflush(0); var printChar = ___syscall146.printChar; if (!printChar) return; var buffers = ___syscall146.buffers; if (buffers[1].length) printChar(1, 10); if (buffers[2].length) printChar(2, 10); });; +DYNAMICTOP_PTR = allocate(1, "i32", ALLOC_STATIC); + +STACK_BASE = STACKTOP = Runtime.alignMemory(STATICTOP); + +STACK_MAX = STACK_BASE + TOTAL_STACK; + +DYNAMIC_BASE = Runtime.alignMemory(STACK_MAX); + +HEAP32[DYNAMICTOP_PTR>>2] = DYNAMIC_BASE; + +staticSealed = true; // seal the static portion of memory + + +function invoke_ii(index,a1) { + try { + return Module["dynCall_ii"](index,a1); + } catch(e) { + if (typeof e !== 'number' && e !== 'longjmp') throw e; + Module["setThrew"](1, 0); } - } - STACKTOP = sp;return; } -function _slide($r,$a) { - $r = $r|0; - $a = $a|0; - var $$lcssa = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0; - var $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $b$03 = 0, $exitcond = 0, $exitcond9 = 0; - var $i$07 = 0, $i$14 = 0, $k$02 = 0, label = 0, sp = 0; - sp = STACKTOP; - $i$07 = 0; - while(1) { - $0 = $i$07 >> 3; - $1 = (($a) + ($0)|0); - $2 = HEAP8[$1>>0]|0; - $3 = $2&255; - $4 = $i$07 & 7; - $5 = $3 >>> $4; - $6 = $5 & 1; - $7 = $6&255; - $8 = (($r) + ($i$07)|0); - HEAP8[$8>>0] = $7; - $9 = (($i$07) + 1)|0; - $exitcond9 = ($9|0)==(256); - if ($exitcond9) { - $i$14 = 0; - break; - } else { - $i$07 = $9; - } - } - while(1) { - $10 = (($r) + ($i$14)|0); - $11 = HEAP8[$10>>0]|0; - $12 = ($11<<24>>24)==(0); - L5: do { - if (!($12)) { - $b$03 = 1; - while(1) { - $13 = (($b$03) + ($i$14))|0; - $14 = ($13|0)<(256); - if (!($14)) { - break L5; - } - $15 = (($r) + ($13)|0); - $16 = HEAP8[$15>>0]|0; - $17 = ($16<<24>>24)==(0); - L9: do { - if (!($17)) { - $18 = HEAP8[$10>>0]|0; - $19 = $18 << 24 >> 24; - $20 = $16 << 24 >> 24; - $21 = $20 << $b$03; - $22 = (($19) + ($21))|0; - $23 = ($22|0)<(16); - if ($23) { - $24 = $22&255; - HEAP8[$10>>0] = $24; - HEAP8[$15>>0] = 0; - break; - } - $25 = (($19) - ($21))|0; - $26 = ($25|0)>(-16); - if (!($26)) { - break L5; - } - $27 = $25&255; - HEAP8[$10>>0] = $27; - $k$02 = $13; - while(1) { - $28 = (($r) + ($k$02)|0); - $29 = HEAP8[$28>>0]|0; - $30 = ($29<<24>>24)==(0); - if ($30) { - $$lcssa = $28; - break; - } - HEAP8[$28>>0] = 0; - $31 = (($k$02) + 1)|0; - $32 = ($31|0)<(256); - if ($32) { - $k$02 = $31; - } else { - break L9; - } - } - HEAP8[$$lcssa>>0] = 1; - } - } while(0); - $33 = (($b$03) + 1)|0; - $34 = ($33|0)<(7); - if ($34) { - $b$03 = $33; - } else { - break; - } - } - } - } while(0); - $35 = (($i$14) + 1)|0; - $exitcond = ($35|0)==(256); - if ($exitcond) { - break; - } else { - $i$14 = $35; + +function invoke_iiii(index,a1,a2,a3) { + try { + return Module["dynCall_iiii"](index,a1,a2,a3); + } catch(e) { + if (typeof e !== 'number' && e !== 'longjmp') throw e; + Module["setThrew"](1, 0); } - } - return; } -function _crypto_sign_ed25519_ref10_ge_frombytes_negate_vartime($h,$s) { - $h = $h|0; - $s = $s|0; - var $$0 = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $check = 0, $u = 0, $v = 0, $v3 = 0, $vxx = 0, label = 0; - var sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 208|0; - $u = sp + 160|0; - $v = sp + 120|0; - $v3 = sp + 80|0; - $vxx = sp + 40|0; - $check = sp; - $0 = ((($h)) + 40|0); - _crypto_sign_ed25519_ref10_fe_frombytes($0,$s); - $1 = ((($h)) + 80|0); - _crypto_sign_ed25519_ref10_fe_1($1); - _crypto_sign_ed25519_ref10_fe_sq($u,$0); - _crypto_sign_ed25519_ref10_fe_mul($v,$u,1672); - _crypto_sign_ed25519_ref10_fe_sub($u,$u,$1); - _crypto_sign_ed25519_ref10_fe_add($v,$v,$1); - _crypto_sign_ed25519_ref10_fe_sq($v3,$v); - _crypto_sign_ed25519_ref10_fe_mul($v3,$v3,$v); - _crypto_sign_ed25519_ref10_fe_sq($h,$v3); - _crypto_sign_ed25519_ref10_fe_mul($h,$h,$v); - _crypto_sign_ed25519_ref10_fe_mul($h,$h,$u); - _crypto_sign_ed25519_ref10_fe_pow22523($h,$h); - _crypto_sign_ed25519_ref10_fe_mul($h,$h,$v3); - _crypto_sign_ed25519_ref10_fe_mul($h,$h,$u); - _crypto_sign_ed25519_ref10_fe_sq($vxx,$h); - _crypto_sign_ed25519_ref10_fe_mul($vxx,$vxx,$v); - _crypto_sign_ed25519_ref10_fe_sub($check,$vxx,$u); - $2 = (_crypto_sign_ed25519_ref10_fe_isnonzero($check)|0); - $3 = ($2|0)==(0); - do { - if (!($3)) { - _crypto_sign_ed25519_ref10_fe_add($check,$vxx,$u); - $4 = (_crypto_sign_ed25519_ref10_fe_isnonzero($check)|0); - $5 = ($4|0)==(0); - if ($5) { - _crypto_sign_ed25519_ref10_fe_mul($h,$h,1712); - break; - } else { - $$0 = -1; - STACKTOP = sp;return ($$0|0); - } - } - } while(0); - $6 = (_crypto_sign_ed25519_ref10_fe_isnegative($h)|0); - $7 = ((($s)) + 31|0); - $8 = HEAP8[$7>>0]|0; - $9 = $8&255; - $10 = $9 >>> 7; - $11 = ($6|0)==($10|0); - if ($11) { - _crypto_sign_ed25519_ref10_fe_neg($h,$h); - } - $12 = ((($h)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($12,$h,$0); - $$0 = 0; - STACKTOP = sp;return ($$0|0); + +Module.asmGlobalArg = { "Math": Math, "Int8Array": Int8Array, "Int16Array": Int16Array, "Int32Array": Int32Array, "Uint8Array": Uint8Array, "Uint16Array": Uint16Array, "Uint32Array": Uint32Array, "Float32Array": Float32Array, "Float64Array": Float64Array, "NaN": NaN, "Infinity": Infinity }; + +Module.asmLibraryArg = { "abort": abort, "assert": assert, "enlargeMemory": enlargeMemory, "getTotalMemory": getTotalMemory, "abortOnCannotGrowMemory": abortOnCannotGrowMemory, "invoke_ii": invoke_ii, "invoke_iiii": invoke_iiii, "___lock": ___lock, "_abort": _abort, "___setErrNo": ___setErrNo, "___syscall6": ___syscall6, "___syscall140": ___syscall140, "___syscall146": ___syscall146, "_emscripten_memcpy_big": _emscripten_memcpy_big, "___syscall54": ___syscall54, "___unlock": ___unlock, "_llvm_stackrestore": _llvm_stackrestore, "_llvm_stacksave": _llvm_stacksave, "DYNAMICTOP_PTR": DYNAMICTOP_PTR, "tempDoublePtr": tempDoublePtr, "ABORT": ABORT, "STACKTOP": STACKTOP, "STACK_MAX": STACK_MAX }; +// EMSCRIPTEN_START_ASM +var asm = (function(global, env, buffer) { +'use asm'; + + + var HEAP8 = new global.Int8Array(buffer); + var HEAP16 = new global.Int16Array(buffer); + var HEAP32 = new global.Int32Array(buffer); + var HEAPU8 = new global.Uint8Array(buffer); + var HEAPU16 = new global.Uint16Array(buffer); + var HEAPU32 = new global.Uint32Array(buffer); + var HEAPF32 = new global.Float32Array(buffer); + var HEAPF64 = new global.Float64Array(buffer); + + var DYNAMICTOP_PTR=env.DYNAMICTOP_PTR|0; + var tempDoublePtr=env.tempDoublePtr|0; + var ABORT=env.ABORT|0; + var STACKTOP=env.STACKTOP|0; + var STACK_MAX=env.STACK_MAX|0; + + var __THREW__ = 0; + var threwValue = 0; + var setjmpId = 0; + var undef = 0; + var nan = global.NaN, inf = global.Infinity; + var tempInt = 0, tempBigInt = 0, tempBigIntS = 0, tempValue = 0, tempDouble = 0.0; + var tempRet0 = 0; + + var Math_floor=global.Math.floor; + var Math_abs=global.Math.abs; + var Math_sqrt=global.Math.sqrt; + var Math_pow=global.Math.pow; + var Math_cos=global.Math.cos; + var Math_sin=global.Math.sin; + var Math_tan=global.Math.tan; + var Math_acos=global.Math.acos; + var Math_asin=global.Math.asin; + var Math_atan=global.Math.atan; + var Math_atan2=global.Math.atan2; + var Math_exp=global.Math.exp; + var Math_log=global.Math.log; + var Math_ceil=global.Math.ceil; + var Math_imul=global.Math.imul; + var Math_min=global.Math.min; + var Math_max=global.Math.max; + var Math_clz32=global.Math.clz32; + var abort=env.abort; + var assert=env.assert; + var enlargeMemory=env.enlargeMemory; + var getTotalMemory=env.getTotalMemory; + var abortOnCannotGrowMemory=env.abortOnCannotGrowMemory; + var invoke_ii=env.invoke_ii; + var invoke_iiii=env.invoke_iiii; + var ___lock=env.___lock; + var _abort=env._abort; + var ___setErrNo=env.___setErrNo; + var ___syscall6=env.___syscall6; + var ___syscall140=env.___syscall140; + var ___syscall146=env.___syscall146; + var _emscripten_memcpy_big=env._emscripten_memcpy_big; + var ___syscall54=env.___syscall54; + var ___unlock=env.___unlock; + var _llvm_stackrestore=env._llvm_stackrestore; + var _llvm_stacksave=env._llvm_stacksave; + var tempFloat = 0.0; + +// EMSCRIPTEN_START_FUNCS + +function stackAlloc(size) { + size = size|0; + var ret = 0; + ret = STACKTOP; + STACKTOP = (STACKTOP + size)|0; + STACKTOP = (STACKTOP + 15)&-16; + + return ret|0; +} +function stackSave() { + return STACKTOP|0; } -function _crypto_sign_ed25519_ref10_ge_madd($r,$p,$q) { - $r = $r|0; - $p = $p|0; - $q = $q|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $t0 = 0, label = 0, sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 48|0; - $t0 = sp; - $0 = ((($p)) + 40|0); - _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); - $1 = ((($r)) + 40|0); - _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); - $2 = ((($r)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($2,$r,$q); - $3 = ((($q)) + 40|0); - _crypto_sign_ed25519_ref10_fe_mul($1,$1,$3); - $4 = ((($r)) + 120|0); - $5 = ((($q)) + 80|0); - $6 = ((($p)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); - $7 = ((($p)) + 80|0); - _crypto_sign_ed25519_ref10_fe_add($t0,$7,$7); - _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); - _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); - _crypto_sign_ed25519_ref10_fe_add($2,$t0,$4); - _crypto_sign_ed25519_ref10_fe_sub($4,$t0,$4); - STACKTOP = sp;return; +function stackRestore(top) { + top = top|0; + STACKTOP = top; } -function _crypto_sign_ed25519_ref10_ge_msub($r,$p,$q) { - $r = $r|0; - $p = $p|0; - $q = $q|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $t0 = 0, label = 0, sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 48|0; - $t0 = sp; - $0 = ((($p)) + 40|0); - _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); - $1 = ((($r)) + 40|0); - _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); - $2 = ((($r)) + 80|0); - $3 = ((($q)) + 40|0); - _crypto_sign_ed25519_ref10_fe_mul($2,$r,$3); - _crypto_sign_ed25519_ref10_fe_mul($1,$1,$q); - $4 = ((($r)) + 120|0); - $5 = ((($q)) + 80|0); - $6 = ((($p)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); - $7 = ((($p)) + 80|0); - _crypto_sign_ed25519_ref10_fe_add($t0,$7,$7); - _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); - _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); - _crypto_sign_ed25519_ref10_fe_sub($2,$t0,$4); - _crypto_sign_ed25519_ref10_fe_add($4,$t0,$4); - STACKTOP = sp;return; +function establishStackSpace(stackBase, stackMax) { + stackBase = stackBase|0; + stackMax = stackMax|0; + STACKTOP = stackBase; + STACK_MAX = stackMax; } -function _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($r,$p) { - $r = $r|0; - $p = $p|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = ((($p)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($r,$p,$0); - $1 = ((($r)) + 40|0); - $2 = ((($p)) + 40|0); - $3 = ((($p)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($1,$2,$3); - $4 = ((($r)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($4,$3,$0); - return; + +function setThrew(threw, value) { + threw = threw|0; + value = value|0; + if ((__THREW__|0) == 0) { + __THREW__ = threw; + threwValue = value; + } } -function _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($r,$p) { - $r = $r|0; - $p = $p|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = ((($p)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($r,$p,$0); - $1 = ((($r)) + 40|0); - $2 = ((($p)) + 40|0); - $3 = ((($p)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($1,$2,$3); - $4 = ((($r)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($4,$3,$0); - $5 = ((($r)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($5,$p,$2); - return; + +function setTempRet0(value) { + value = value|0; + tempRet0 = value; } -function _crypto_sign_ed25519_ref10_ge_p2_0($h) { - $h = $h|0; - var $0 = 0, $1 = 0, label = 0, sp = 0; +function getTempRet0() { + return tempRet0|0; +} + +function _crypto_verify_32_ref($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0; + var $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0; + var $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0; + var $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0; + var $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; sp = STACKTOP; - _crypto_sign_ed25519_ref10_fe_0($h); - $0 = ((($h)) + 40|0); - _crypto_sign_ed25519_ref10_fe_1($0); - $1 = ((($h)) + 80|0); - _crypto_sign_ed25519_ref10_fe_1($1); - return; + $2 = HEAP8[$0>>0]|0; + $3 = HEAP8[$1>>0]|0; + $4 = $3 ^ $2; + $5 = ((($0)) + 1|0); + $6 = HEAP8[$5>>0]|0; + $7 = ((($1)) + 1|0); + $8 = HEAP8[$7>>0]|0; + $9 = $8 ^ $6; + $10 = $9 | $4; + $11 = ((($0)) + 2|0); + $12 = HEAP8[$11>>0]|0; + $13 = ((($1)) + 2|0); + $14 = HEAP8[$13>>0]|0; + $15 = $14 ^ $12; + $16 = $10 | $15; + $17 = ((($0)) + 3|0); + $18 = HEAP8[$17>>0]|0; + $19 = ((($1)) + 3|0); + $20 = HEAP8[$19>>0]|0; + $21 = $20 ^ $18; + $22 = $16 | $21; + $23 = ((($0)) + 4|0); + $24 = HEAP8[$23>>0]|0; + $25 = ((($1)) + 4|0); + $26 = HEAP8[$25>>0]|0; + $27 = $26 ^ $24; + $28 = $22 | $27; + $29 = ((($0)) + 5|0); + $30 = HEAP8[$29>>0]|0; + $31 = ((($1)) + 5|0); + $32 = HEAP8[$31>>0]|0; + $33 = $32 ^ $30; + $34 = $28 | $33; + $35 = ((($0)) + 6|0); + $36 = HEAP8[$35>>0]|0; + $37 = ((($1)) + 6|0); + $38 = HEAP8[$37>>0]|0; + $39 = $38 ^ $36; + $40 = $34 | $39; + $41 = ((($0)) + 7|0); + $42 = HEAP8[$41>>0]|0; + $43 = ((($1)) + 7|0); + $44 = HEAP8[$43>>0]|0; + $45 = $44 ^ $42; + $46 = $40 | $45; + $47 = ((($0)) + 8|0); + $48 = HEAP8[$47>>0]|0; + $49 = ((($1)) + 8|0); + $50 = HEAP8[$49>>0]|0; + $51 = $50 ^ $48; + $52 = $46 | $51; + $53 = ((($0)) + 9|0); + $54 = HEAP8[$53>>0]|0; + $55 = ((($1)) + 9|0); + $56 = HEAP8[$55>>0]|0; + $57 = $56 ^ $54; + $58 = $52 | $57; + $59 = ((($0)) + 10|0); + $60 = HEAP8[$59>>0]|0; + $61 = ((($1)) + 10|0); + $62 = HEAP8[$61>>0]|0; + $63 = $62 ^ $60; + $64 = $58 | $63; + $65 = ((($0)) + 11|0); + $66 = HEAP8[$65>>0]|0; + $67 = ((($1)) + 11|0); + $68 = HEAP8[$67>>0]|0; + $69 = $68 ^ $66; + $70 = $64 | $69; + $71 = ((($0)) + 12|0); + $72 = HEAP8[$71>>0]|0; + $73 = ((($1)) + 12|0); + $74 = HEAP8[$73>>0]|0; + $75 = $74 ^ $72; + $76 = $70 | $75; + $77 = ((($0)) + 13|0); + $78 = HEAP8[$77>>0]|0; + $79 = ((($1)) + 13|0); + $80 = HEAP8[$79>>0]|0; + $81 = $80 ^ $78; + $82 = $76 | $81; + $83 = ((($0)) + 14|0); + $84 = HEAP8[$83>>0]|0; + $85 = ((($1)) + 14|0); + $86 = HEAP8[$85>>0]|0; + $87 = $86 ^ $84; + $88 = $82 | $87; + $89 = ((($0)) + 15|0); + $90 = HEAP8[$89>>0]|0; + $91 = ((($1)) + 15|0); + $92 = HEAP8[$91>>0]|0; + $93 = $92 ^ $90; + $94 = $88 | $93; + $95 = ((($0)) + 16|0); + $96 = HEAP8[$95>>0]|0; + $97 = ((($1)) + 16|0); + $98 = HEAP8[$97>>0]|0; + $99 = $98 ^ $96; + $100 = $94 | $99; + $101 = ((($0)) + 17|0); + $102 = HEAP8[$101>>0]|0; + $103 = ((($1)) + 17|0); + $104 = HEAP8[$103>>0]|0; + $105 = $104 ^ $102; + $106 = $100 | $105; + $107 = ((($0)) + 18|0); + $108 = HEAP8[$107>>0]|0; + $109 = ((($1)) + 18|0); + $110 = HEAP8[$109>>0]|0; + $111 = $110 ^ $108; + $112 = $106 | $111; + $113 = ((($0)) + 19|0); + $114 = HEAP8[$113>>0]|0; + $115 = ((($1)) + 19|0); + $116 = HEAP8[$115>>0]|0; + $117 = $116 ^ $114; + $118 = $112 | $117; + $119 = ((($0)) + 20|0); + $120 = HEAP8[$119>>0]|0; + $121 = ((($1)) + 20|0); + $122 = HEAP8[$121>>0]|0; + $123 = $122 ^ $120; + $124 = $118 | $123; + $125 = ((($0)) + 21|0); + $126 = HEAP8[$125>>0]|0; + $127 = ((($1)) + 21|0); + $128 = HEAP8[$127>>0]|0; + $129 = $128 ^ $126; + $130 = $124 | $129; + $131 = ((($0)) + 22|0); + $132 = HEAP8[$131>>0]|0; + $133 = ((($1)) + 22|0); + $134 = HEAP8[$133>>0]|0; + $135 = $134 ^ $132; + $136 = $130 | $135; + $137 = ((($0)) + 23|0); + $138 = HEAP8[$137>>0]|0; + $139 = ((($1)) + 23|0); + $140 = HEAP8[$139>>0]|0; + $141 = $140 ^ $138; + $142 = $136 | $141; + $143 = ((($0)) + 24|0); + $144 = HEAP8[$143>>0]|0; + $145 = ((($1)) + 24|0); + $146 = HEAP8[$145>>0]|0; + $147 = $146 ^ $144; + $148 = $142 | $147; + $149 = ((($0)) + 25|0); + $150 = HEAP8[$149>>0]|0; + $151 = ((($1)) + 25|0); + $152 = HEAP8[$151>>0]|0; + $153 = $152 ^ $150; + $154 = $148 | $153; + $155 = ((($0)) + 26|0); + $156 = HEAP8[$155>>0]|0; + $157 = ((($1)) + 26|0); + $158 = HEAP8[$157>>0]|0; + $159 = $158 ^ $156; + $160 = $154 | $159; + $161 = ((($0)) + 27|0); + $162 = HEAP8[$161>>0]|0; + $163 = ((($1)) + 27|0); + $164 = HEAP8[$163>>0]|0; + $165 = $164 ^ $162; + $166 = $160 | $165; + $167 = ((($0)) + 28|0); + $168 = HEAP8[$167>>0]|0; + $169 = ((($1)) + 28|0); + $170 = HEAP8[$169>>0]|0; + $171 = $170 ^ $168; + $172 = $166 | $171; + $173 = ((($0)) + 29|0); + $174 = HEAP8[$173>>0]|0; + $175 = ((($1)) + 29|0); + $176 = HEAP8[$175>>0]|0; + $177 = $176 ^ $174; + $178 = $172 | $177; + $179 = ((($0)) + 30|0); + $180 = HEAP8[$179>>0]|0; + $181 = ((($1)) + 30|0); + $182 = HEAP8[$181>>0]|0; + $183 = $182 ^ $180; + $184 = $178 | $183; + $185 = ((($0)) + 31|0); + $186 = HEAP8[$185>>0]|0; + $187 = ((($1)) + 31|0); + $188 = HEAP8[$187>>0]|0; + $189 = $188 ^ $186; + $190 = $184 | $189; + $191 = $190&255; + $192 = (($191) + 511)|0; + $193 = $192 >>> 8; + $194 = $193 & 1; + $195 = (($194) + -1)|0; + return ($195|0); } -function _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$p) { - $r = $r|0; - $p = $p|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $t0 = 0, label = 0, sp = 0; +function _curve25519_sign($0,$1,$2,$3) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + var $$alloca_mul = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, dest = 0, label = 0; + var sp = 0, src = 0, stop = 0; sp = STACKTOP; - STACKTOP = STACKTOP + 48|0; - $t0 = sp; - _crypto_sign_ed25519_ref10_fe_sq($r,$p); - $0 = ((($r)) + 80|0); - $1 = ((($p)) + 40|0); - _crypto_sign_ed25519_ref10_fe_sq($0,$1); - $2 = ((($r)) + 120|0); - $3 = ((($p)) + 80|0); - _crypto_sign_ed25519_ref10_fe_sq2($2,$3); - $4 = ((($r)) + 40|0); - _crypto_sign_ed25519_ref10_fe_add($4,$p,$1); - _crypto_sign_ed25519_ref10_fe_sq($t0,$4); - _crypto_sign_ed25519_ref10_fe_add($4,$0,$r); - _crypto_sign_ed25519_ref10_fe_sub($0,$0,$r); - _crypto_sign_ed25519_ref10_fe_sub($r,$t0,$4); - _crypto_sign_ed25519_ref10_fe_sub($2,$2,$0); + STACKTOP = STACKTOP + 240|0; + $4 = sp + 8|0; + $5 = sp + 168|0; + $6 = sp; + $7 = (($3) + 64)|0; + $8 = (_llvm_stacksave()|0); + $$alloca_mul = $7; + $9 = STACKTOP; STACKTOP = STACKTOP + ((((1*$$alloca_mul)|0)+15)&-16)|0;; + $10 = $6; + $11 = $10; + HEAP32[$11>>2] = 0; + $12 = (($10) + 4)|0; + $13 = $12; + HEAP32[$13>>2] = 0; + dest=$5; src=$1; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _crypto_sign_ed25519_ref10_ge_scalarmult_base($4,$1); + $14 = ((($5)) + 32|0); + _crypto_sign_ed25519_ref10_ge_p3_tobytes($14,$4); + $15 = ((($5)) + 63|0); + $16 = HEAP8[$15>>0]|0; + $17 = $16 & -128; + (_crypto_sign_modified($9,$6,$2,$3,0,$5)|0); + dest=$0; src=$9; stop=dest+64|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $18 = ((($0)) + 63|0); + $19 = HEAP8[$18>>0]|0; + $20 = $19 | $17; + HEAP8[$18>>0] = $20; + _llvm_stackrestore(($8|0)); STACKTOP = sp;return; } -function _crypto_sign_ed25519_ref10_ge_p3_0($h) { - $h = $h|0; - var $0 = 0, $1 = 0, $2 = 0, label = 0, sp = 0; +function _curve25519_verify($0,$1,$2,$3) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + var $$alloca_mul = 0, $$alloca_mul9 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $4 = 0, $5 = 0, $6 = 0; + var $7 = 0, $8 = 0, $9 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; sp = STACKTOP; - _crypto_sign_ed25519_ref10_fe_0($h); - $0 = ((($h)) + 40|0); - _crypto_sign_ed25519_ref10_fe_1($0); - $1 = ((($h)) + 80|0); - _crypto_sign_ed25519_ref10_fe_1($1); - $2 = ((($h)) + 120|0); - _crypto_sign_ed25519_ref10_fe_0($2); - return; + STACKTOP = STACKTOP + 288|0; + $4 = sp + 208|0; + $5 = sp + 168|0; + $6 = sp + 128|0; + $7 = sp + 88|0; + $8 = sp + 48|0; + $9 = sp + 8|0; + $10 = sp + 248|0; + $11 = sp; + $12 = (($3) + 64)|0; + $13 = (_llvm_stacksave()|0); + $$alloca_mul = $12; + $14 = STACKTOP; STACKTOP = STACKTOP + ((((1*$$alloca_mul)|0)+15)&-16)|0;; + $$alloca_mul9 = $12; + $15 = STACKTOP; STACKTOP = STACKTOP + ((((1*$$alloca_mul9)|0)+15)&-16)|0;; + _crypto_sign_ed25519_ref10_fe_frombytes($4,$1); + _crypto_sign_ed25519_ref10_fe_1($8); + _crypto_sign_ed25519_ref10_fe_sub($5,$4,$8); + _crypto_sign_ed25519_ref10_fe_add($6,$4,$8); + _crypto_sign_ed25519_ref10_fe_invert($7,$6); + _crypto_sign_ed25519_ref10_fe_mul($9,$5,$7); + _crypto_sign_ed25519_ref10_fe_tobytes($10,$9); + $16 = ((($0)) + 63|0); + $17 = HEAP8[$16>>0]|0; + $18 = $17 & -128; + $19 = ((($10)) + 31|0); + $20 = HEAP8[$19>>0]|0; + $21 = $20 | $18; + HEAP8[$19>>0] = $21; + $22 = $17 & 127; + HEAP8[$16>>0] = $22; + dest=$14; src=$0; stop=dest+64|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $23 = ((($14)) + 64|0); + _memcpy(($23|0),($2|0),($3|0))|0; + $24 = (_crypto_sign_edwards25519sha512batch_ref10_open($15,$11,$14,$12,0,$10)|0); + _llvm_stackrestore(($13|0)); + STACKTOP = sp;return ($24|0); } -function _crypto_sign_ed25519_ref10_ge_p3_dbl($r,$p) { - $r = $r|0; - $p = $p|0; - var $q = 0, label = 0, sp = 0; +function _crypto_hash_sha512_ref($0,$1,$2,$3) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + var $4 = 0, label = 0, sp = 0; sp = STACKTOP; - STACKTOP = STACKTOP + 128|0; - $q = sp; - _crypto_sign_ed25519_ref10_ge_p3_to_p2($q,$p); - _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$q); - STACKTOP = sp;return; + STACKTOP = STACKTOP + 208|0; + $4 = sp; + _sph_sha512_init($4); + _sph_sha384($4,$1,$2); + _sph_sha512_close($4,$0); + STACKTOP = sp;return 0; } -function _crypto_sign_ed25519_ref10_ge_p3_to_cached($r,$p) { - $r = $r|0; - $p = $p|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, label = 0, sp = 0; +function _crypto_sign_modified($0,$1,$2,$3,$4,$5) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + $4 = $4|0; + $5 = $5|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; sp = STACKTOP; - $0 = ((($p)) + 40|0); - _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); - $1 = ((($r)) + 40|0); - _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); - $2 = ((($r)) + 80|0); - $3 = ((($p)) + 80|0); - _crypto_sign_ed25519_ref10_fe_copy($2,$3); - $4 = ((($r)) + 120|0); - $5 = ((($p)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($4,$5,1752); - return; + STACKTOP = STACKTOP + 320|0; + $6 = sp + 288|0; + $7 = sp + 224|0; + $8 = sp + 160|0; + $9 = sp; + $10 = ((($5)) + 32|0); + dest=$6; src=$10; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $11 = (_i64Add(($3|0),($4|0),64,0)|0); + $12 = tempRet0; + $13 = $1; + $14 = $13; + HEAP32[$14>>2] = $11; + $15 = (($13) + 4)|0; + $16 = $15; + HEAP32[$16>>2] = $12; + $17 = ((($0)) + 64|0); + _memmove(($17|0),($2|0),($3|0))|0; + $18 = ((($0)) + 32|0); + _memmove(($18|0),($5|0),32)|0; + $19 = (_i64Add(($3|0),($4|0),32,0)|0); + $20 = tempRet0; + (_crypto_hash_sha512_ref($7,$18,$19,$20)|0); + dest=$18; src=$6; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _crypto_sign_ed25519_ref10_sc_reduce($7); + _crypto_sign_ed25519_ref10_ge_scalarmult_base($9,$7); + _crypto_sign_ed25519_ref10_ge_p3_tobytes($0,$9); + (_crypto_hash_sha512_ref($8,$0,$11,$12)|0); + _crypto_sign_ed25519_ref10_sc_reduce($8); + _crypto_sign_ed25519_ref10_sc_muladd($18,$8,$5,$7); + STACKTOP = sp;return 0; } -function _crypto_sign_ed25519_ref10_ge_p3_to_p2($r,$p) { - $r = $r|0; - $p = $p|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, label = 0, sp = 0; +function _curve25519_donna($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; sp = STACKTOP; - _crypto_sign_ed25519_ref10_fe_copy($r,$p); - $0 = ((($r)) + 40|0); - $1 = ((($p)) + 40|0); - _crypto_sign_ed25519_ref10_fe_copy($0,$1); - $2 = ((($r)) + 80|0); - $3 = ((($p)) + 80|0); - _crypto_sign_ed25519_ref10_fe_copy($2,$3); - return; + STACKTOP = STACKTOP + 368|0; + $3 = sp + 248|0; + $4 = sp + 168|0; + $5 = sp + 80|0; + $6 = sp; + $7 = sp + 328|0; + dest=$7; src=$1; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _fexpand($3,$2); + _cmult($4,$5,$7,$3); + _crecip($6,$5); + _fmul($5,$4,$6); + _fcontract($0,$5); + STACKTOP = sp;return 0; } -function _crypto_sign_ed25519_ref10_ge_p3_tobytes($s,$h) { - $s = $s|0; - $h = $h|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $recip = 0, $x = 0, $y = 0, label = 0, sp = 0; +function _fexpand($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0; + var $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0; + var $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0; + var $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0; + var $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0; + var $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $3 = 0, $30 = 0, $31 = 0; + var $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0; + var $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0; + var $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0; + var $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; sp = STACKTOP; - STACKTOP = STACKTOP + 128|0; - $recip = sp + 80|0; - $x = sp + 40|0; - $y = sp; - $0 = ((($h)) + 80|0); - _crypto_sign_ed25519_ref10_fe_invert($recip,$0); - _crypto_sign_ed25519_ref10_fe_mul($x,$h,$recip); - $1 = ((($h)) + 40|0); - _crypto_sign_ed25519_ref10_fe_mul($y,$1,$recip); - _crypto_sign_ed25519_ref10_fe_tobytes($s,$y); - $2 = (_crypto_sign_ed25519_ref10_fe_isnegative($x)|0); - $3 = $2 << 7; - $4 = ((($s)) + 31|0); + $2 = HEAP8[$1>>0]|0; + $3 = $2&255; + $4 = ((($1)) + 1|0); $5 = HEAP8[$4>>0]|0; $6 = $5&255; - $7 = $6 ^ $3; - $8 = $7&255; - HEAP8[$4>>0] = $8; - STACKTOP = sp;return; -} -function _crypto_sign_ed25519_ref10_ge_precomp_0($h) { - $h = $h|0; - var $0 = 0, $1 = 0, label = 0, sp = 0; - sp = STACKTOP; - _crypto_sign_ed25519_ref10_fe_1($h); - $0 = ((($h)) + 40|0); - _crypto_sign_ed25519_ref10_fe_1($0); - $1 = ((($h)) + 80|0); - _crypto_sign_ed25519_ref10_fe_0($1); + $7 = (_bitshift64Shl(($6|0),0,8)|0); + $8 = tempRet0; + $9 = $7 | $3; + $10 = ((($1)) + 2|0); + $11 = HEAP8[$10>>0]|0; + $12 = $11&255; + $13 = (_bitshift64Shl(($12|0),0,16)|0); + $14 = tempRet0; + $15 = $9 | $13; + $16 = $8 | $14; + $17 = ((($1)) + 3|0); + $18 = HEAP8[$17>>0]|0; + $19 = $18&255; + $20 = (_bitshift64Shl(($19|0),0,24)|0); + $21 = tempRet0; + $22 = $20 & 50331648; + $23 = $15 | $22; + $24 = $0; + $25 = $24; + HEAP32[$25>>2] = $23; + $26 = (($24) + 4)|0; + $27 = $26; + HEAP32[$27>>2] = $16; + $28 = HEAP8[$17>>0]|0; + $29 = $28&255; + $30 = ((($1)) + 4|0); + $31 = HEAP8[$30>>0]|0; + $32 = $31&255; + $33 = (_bitshift64Shl(($32|0),0,8)|0); + $34 = tempRet0; + $35 = $33 | $29; + $36 = ((($1)) + 5|0); + $37 = HEAP8[$36>>0]|0; + $38 = $37&255; + $39 = (_bitshift64Shl(($38|0),0,16)|0); + $40 = tempRet0; + $41 = $35 | $39; + $42 = $34 | $40; + $43 = ((($1)) + 6|0); + $44 = HEAP8[$43>>0]|0; + $45 = $44&255; + $46 = (_bitshift64Shl(($45|0),0,24)|0); + $47 = tempRet0; + $48 = $41 | $46; + $49 = $42 | $47; + $50 = (_bitshift64Lshr(($48|0),($49|0),2)|0); + $51 = tempRet0; + $52 = $50 & 33554431; + $53 = ((($0)) + 8|0); + $54 = $53; + $55 = $54; + HEAP32[$55>>2] = $52; + $56 = (($54) + 4)|0; + $57 = $56; + HEAP32[$57>>2] = 0; + $58 = HEAP8[$43>>0]|0; + $59 = $58&255; + $60 = ((($1)) + 7|0); + $61 = HEAP8[$60>>0]|0; + $62 = $61&255; + $63 = (_bitshift64Shl(($62|0),0,8)|0); + $64 = tempRet0; + $65 = $63 | $59; + $66 = ((($1)) + 8|0); + $67 = HEAP8[$66>>0]|0; + $68 = $67&255; + $69 = (_bitshift64Shl(($68|0),0,16)|0); + $70 = tempRet0; + $71 = $65 | $69; + $72 = $64 | $70; + $73 = ((($1)) + 9|0); + $74 = HEAP8[$73>>0]|0; + $75 = $74&255; + $76 = (_bitshift64Shl(($75|0),0,24)|0); + $77 = tempRet0; + $78 = $71 | $76; + $79 = $72 | $77; + $80 = (_bitshift64Lshr(($78|0),($79|0),3)|0); + $81 = tempRet0; + $82 = $80 & 67108863; + $83 = ((($0)) + 16|0); + $84 = $83; + $85 = $84; + HEAP32[$85>>2] = $82; + $86 = (($84) + 4)|0; + $87 = $86; + HEAP32[$87>>2] = 0; + $88 = HEAP8[$73>>0]|0; + $89 = $88&255; + $90 = ((($1)) + 10|0); + $91 = HEAP8[$90>>0]|0; + $92 = $91&255; + $93 = (_bitshift64Shl(($92|0),0,8)|0); + $94 = tempRet0; + $95 = $93 | $89; + $96 = ((($1)) + 11|0); + $97 = HEAP8[$96>>0]|0; + $98 = $97&255; + $99 = (_bitshift64Shl(($98|0),0,16)|0); + $100 = tempRet0; + $101 = $95 | $99; + $102 = $94 | $100; + $103 = ((($1)) + 12|0); + $104 = HEAP8[$103>>0]|0; + $105 = $104&255; + $106 = (_bitshift64Shl(($105|0),0,24)|0); + $107 = tempRet0; + $108 = $101 | $106; + $109 = $102 | $107; + $110 = (_bitshift64Lshr(($108|0),($109|0),5)|0); + $111 = tempRet0; + $112 = $110 & 33554431; + $113 = ((($0)) + 24|0); + $114 = $113; + $115 = $114; + HEAP32[$115>>2] = $112; + $116 = (($114) + 4)|0; + $117 = $116; + HEAP32[$117>>2] = 0; + $118 = HEAP8[$103>>0]|0; + $119 = $118&255; + $120 = ((($1)) + 13|0); + $121 = HEAP8[$120>>0]|0; + $122 = $121&255; + $123 = (_bitshift64Shl(($122|0),0,8)|0); + $124 = tempRet0; + $125 = $123 | $119; + $126 = ((($1)) + 14|0); + $127 = HEAP8[$126>>0]|0; + $128 = $127&255; + $129 = (_bitshift64Shl(($128|0),0,16)|0); + $130 = tempRet0; + $131 = $125 | $129; + $132 = $124 | $130; + $133 = ((($1)) + 15|0); + $134 = HEAP8[$133>>0]|0; + $135 = $134&255; + $136 = (_bitshift64Shl(($135|0),0,24)|0); + $137 = tempRet0; + $138 = $131 | $136; + $139 = $132 | $137; + $140 = (_bitshift64Lshr(($138|0),($139|0),6)|0); + $141 = tempRet0; + $142 = $140 & 67108863; + $143 = ((($0)) + 32|0); + $144 = $143; + $145 = $144; + HEAP32[$145>>2] = $142; + $146 = (($144) + 4)|0; + $147 = $146; + HEAP32[$147>>2] = 0; + $148 = ((($1)) + 16|0); + $149 = HEAP8[$148>>0]|0; + $150 = $149&255; + $151 = ((($1)) + 17|0); + $152 = HEAP8[$151>>0]|0; + $153 = $152&255; + $154 = (_bitshift64Shl(($153|0),0,8)|0); + $155 = tempRet0; + $156 = $154 | $150; + $157 = ((($1)) + 18|0); + $158 = HEAP8[$157>>0]|0; + $159 = $158&255; + $160 = (_bitshift64Shl(($159|0),0,16)|0); + $161 = tempRet0; + $162 = $156 | $160; + $163 = $155 | $161; + $164 = ((($1)) + 19|0); + $165 = HEAP8[$164>>0]|0; + $166 = $165&255; + $167 = (_bitshift64Shl(($166|0),0,24)|0); + $168 = tempRet0; + $169 = $167 & 16777216; + $170 = $162 | $169; + $171 = ((($0)) + 40|0); + $172 = $171; + $173 = $172; + HEAP32[$173>>2] = $170; + $174 = (($172) + 4)|0; + $175 = $174; + HEAP32[$175>>2] = $163; + $176 = HEAP8[$164>>0]|0; + $177 = $176&255; + $178 = ((($1)) + 20|0); + $179 = HEAP8[$178>>0]|0; + $180 = $179&255; + $181 = (_bitshift64Shl(($180|0),0,8)|0); + $182 = tempRet0; + $183 = $181 | $177; + $184 = ((($1)) + 21|0); + $185 = HEAP8[$184>>0]|0; + $186 = $185&255; + $187 = (_bitshift64Shl(($186|0),0,16)|0); + $188 = tempRet0; + $189 = $183 | $187; + $190 = $182 | $188; + $191 = ((($1)) + 22|0); + $192 = HEAP8[$191>>0]|0; + $193 = $192&255; + $194 = (_bitshift64Shl(($193|0),0,24)|0); + $195 = tempRet0; + $196 = $189 | $194; + $197 = $190 | $195; + $198 = (_bitshift64Lshr(($196|0),($197|0),1)|0); + $199 = tempRet0; + $200 = $198 & 67108863; + $201 = ((($0)) + 48|0); + $202 = $201; + $203 = $202; + HEAP32[$203>>2] = $200; + $204 = (($202) + 4)|0; + $205 = $204; + HEAP32[$205>>2] = 0; + $206 = HEAP8[$191>>0]|0; + $207 = $206&255; + $208 = ((($1)) + 23|0); + $209 = HEAP8[$208>>0]|0; + $210 = $209&255; + $211 = (_bitshift64Shl(($210|0),0,8)|0); + $212 = tempRet0; + $213 = $211 | $207; + $214 = ((($1)) + 24|0); + $215 = HEAP8[$214>>0]|0; + $216 = $215&255; + $217 = (_bitshift64Shl(($216|0),0,16)|0); + $218 = tempRet0; + $219 = $213 | $217; + $220 = $212 | $218; + $221 = ((($1)) + 25|0); + $222 = HEAP8[$221>>0]|0; + $223 = $222&255; + $224 = (_bitshift64Shl(($223|0),0,24)|0); + $225 = tempRet0; + $226 = $219 | $224; + $227 = $220 | $225; + $228 = (_bitshift64Lshr(($226|0),($227|0),3)|0); + $229 = tempRet0; + $230 = $228 & 33554431; + $231 = ((($0)) + 56|0); + $232 = $231; + $233 = $232; + HEAP32[$233>>2] = $230; + $234 = (($232) + 4)|0; + $235 = $234; + HEAP32[$235>>2] = 0; + $236 = HEAP8[$221>>0]|0; + $237 = $236&255; + $238 = ((($1)) + 26|0); + $239 = HEAP8[$238>>0]|0; + $240 = $239&255; + $241 = (_bitshift64Shl(($240|0),0,8)|0); + $242 = tempRet0; + $243 = $241 | $237; + $244 = ((($1)) + 27|0); + $245 = HEAP8[$244>>0]|0; + $246 = $245&255; + $247 = (_bitshift64Shl(($246|0),0,16)|0); + $248 = tempRet0; + $249 = $243 | $247; + $250 = $242 | $248; + $251 = ((($1)) + 28|0); + $252 = HEAP8[$251>>0]|0; + $253 = $252&255; + $254 = (_bitshift64Shl(($253|0),0,24)|0); + $255 = tempRet0; + $256 = $249 | $254; + $257 = $250 | $255; + $258 = (_bitshift64Lshr(($256|0),($257|0),4)|0); + $259 = tempRet0; + $260 = $258 & 67108863; + $261 = ((($0)) + 64|0); + $262 = $261; + $263 = $262; + HEAP32[$263>>2] = $260; + $264 = (($262) + 4)|0; + $265 = $264; + HEAP32[$265>>2] = 0; + $266 = HEAP8[$251>>0]|0; + $267 = $266&255; + $268 = ((($1)) + 29|0); + $269 = HEAP8[$268>>0]|0; + $270 = $269&255; + $271 = (_bitshift64Shl(($270|0),0,8)|0); + $272 = tempRet0; + $273 = $271 | $267; + $274 = ((($1)) + 30|0); + $275 = HEAP8[$274>>0]|0; + $276 = $275&255; + $277 = (_bitshift64Shl(($276|0),0,16)|0); + $278 = tempRet0; + $279 = $273 | $277; + $280 = $272 | $278; + $281 = ((($1)) + 31|0); + $282 = HEAP8[$281>>0]|0; + $283 = $282&255; + $284 = (_bitshift64Shl(($283|0),0,24)|0); + $285 = tempRet0; + $286 = $279 | $284; + $287 = $280 | $285; + $288 = (_bitshift64Lshr(($286|0),($287|0),6)|0); + $289 = tempRet0; + $290 = $288 & 33554431; + $291 = ((($0)) + 72|0); + $292 = $291; + $293 = $292; + HEAP32[$293>>2] = $290; + $294 = (($292) + 4)|0; + $295 = $294; + HEAP32[$295>>2] = 0; return; } -function _crypto_sign_ed25519_ref10_ge_scalarmult_base($h,$a) { - $h = $h|0; - $a = $a|0; - var $$lcssa = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0; - var $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $carry$04 = 0, $e = 0, $exitcond = 0; - var $exitcond7 = 0, $i$06 = 0, $i$15 = 0, $i$23 = 0, $i$32 = 0, $r = 0, $s = 0, $sext = 0, $sext1 = 0, $t = 0, label = 0, sp = 0; +function _cmult($0,$1,$2,$3) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + var $$0104 = 0, $$06994 = 0, $$07093 = 0, $$071103 = 0, $$072102 = 0, $$074101 = 0, $$076100 = 0, $$07899 = 0, $$08098 = 0, $$08297 = 0, $$08496 = 0, $$17392 = 0, $$17392$phi = 0, $$17591 = 0, $$17591$phi = 0, $$17790 = 0, $$17790$phi = 0, $$17989 = 0, $$17989$phi = 0, $$18188 = 0; + var $$18188$phi = 0, $$18387 = 0, $$18387$phi = 0, $$18586 = 0, $$18586$phi = 0, $$195 = 0, $$195$phi = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0; + var $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0; + var $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $exitcond = 0, $exitcond105 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; sp = STACKTOP; - STACKTOP = STACKTOP + 464|0; - $e = sp + 400|0; - $r = sp + 240|0; - $s = sp + 120|0; - $t = sp; - $i$06 = 0; + STACKTOP = STACKTOP + 1216|0; + $4 = sp + 1064|0; + $5 = sp + 912|0; + $6 = sp + 760|0; + $7 = sp + 608|0; + $8 = sp + 456|0; + $9 = sp + 304|0; + $10 = sp + 152|0; + $11 = sp; + $12 = ((($5)) + 8|0); + _memset(($12|0),0,144)|0; + $13 = $5; + $14 = $13; + HEAP32[$14>>2] = 1; + $15 = (($13) + 4)|0; + $16 = $15; + HEAP32[$16>>2] = 0; + $17 = ((($6)) + 8|0); + _memset(($17|0),0,144)|0; + $18 = $6; + $19 = $18; + HEAP32[$19>>2] = 1; + $20 = (($18) + 4)|0; + $21 = $20; + HEAP32[$21>>2] = 0; + _memset(($7|0),0,152)|0; + _memset(($8|0),0,152)|0; + $22 = ((($9)) + 8|0); + _memset(($22|0),0,144)|0; + $23 = $9; + $24 = $23; + HEAP32[$24>>2] = 1; + $25 = (($23) + 4)|0; + $26 = $25; + HEAP32[$26>>2] = 0; + _memset(($10|0),0,152)|0; + $27 = ((($11)) + 8|0); + _memset(($27|0),0,144)|0; + $28 = $11; + $29 = $28; + HEAP32[$29>>2] = 1; + $30 = (($28) + 4)|0; + $31 = $30; + HEAP32[$31>>2] = 0; + $32 = ((($4)) + 80|0); + dest=$32; stop=dest+72|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); + dest=$4; src=$3; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + $$0104 = $4;$$071103 = 0;$$072102 = $11;$$074101 = $10;$$076100 = $9;$$07899 = $8;$$08098 = $5;$$08297 = $7;$$08496 = $6; while(1) { - $0 = (($a) + ($i$06)|0); - $1 = HEAP8[$0>>0]|0; - $2 = $1&255; - $3 = $2 & 15; - $4 = $3&255; - $5 = $i$06 << 1; - $6 = (($e) + ($5)|0); - HEAP8[$6>>0] = $4; - $7 = HEAP8[$0>>0]|0; - $8 = ($7&255) >>> 4; - $9 = $5 | 1; - $10 = (($e) + ($9)|0); - HEAP8[$10>>0] = $8; - $11 = (($i$06) + 1)|0; - $exitcond7 = ($11|0)==(32); - if ($exitcond7) { - $carry$04 = 0;$i$15 = 0; + $33 = (31 - ($$071103))|0; + $34 = (($2) + ($33)|0); + $35 = HEAP8[$34>>0]|0; + $$06994 = $35;$$07093 = 0;$$17392 = $$072102;$$17591 = $$074101;$$17790 = $$076100;$$17989 = $$07899;$$18188 = $$08098;$$18387 = $$08297;$$18586 = $$08496;$$195 = $$0104; + while(1) { + $36 = $$06994&255; + $37 = $36 >>> 7; + _swap_conditional($$18586,$$195,$37,0); + _swap_conditional($$18387,$$18188,$37,0); + _fmonty($$17591,$$17392,$$17989,$$17790,$$18586,$$18387,$$195,$$18188,$3); + _swap_conditional($$17591,$$17989,$37,0); + _swap_conditional($$17392,$$17790,$37,0); + $38 = $36 << 1; + $39 = $38&255; + $40 = (($$07093) + 1)|0; + $exitcond = ($40|0)==(8); + if ($exitcond) { + break; + } else { + $$195$phi = $$17989;$$18586$phi = $$17591;$$18387$phi = $$17392;$$18188$phi = $$17790;$$17989$phi = $$195;$$17790$phi = $$18188;$$17591$phi = $$18586;$$17392$phi = $$18387;$$06994 = $39;$$07093 = $40;$$195 = $$195$phi;$$18586 = $$18586$phi;$$18387 = $$18387$phi;$$18188 = $$18188$phi;$$17989 = $$17989$phi;$$17790 = $$17790$phi;$$17591 = $$17591$phi;$$17392 = $$17392$phi; + } + } + $41 = (($$071103) + 1)|0; + $exitcond105 = ($41|0)==(32); + if ($exitcond105) { break; } else { - $i$06 = $11; + $$0104 = $$17989;$$071103 = $41;$$072102 = $$18387;$$074101 = $$18586;$$076100 = $$18188;$$07899 = $$195;$$08098 = $$17790;$$08297 = $$17392;$$08496 = $$17591; } } + dest=$0; src=$$17591; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + dest=$1; src=$$17392; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + STACKTOP = sp;return; +} +function _crecip($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$317 = 0, $$416 = 0, $$515 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0; + var sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 800|0; + $2 = sp + 720|0; + $3 = sp + 640|0; + $4 = sp + 560|0; + $5 = sp + 480|0; + $6 = sp + 400|0; + $7 = sp + 320|0; + $8 = sp + 240|0; + $9 = sp + 160|0; + $10 = sp + 80|0; + $11 = sp; + _fsquare($2,$1); + _fsquare($11,$2); + _fsquare($10,$11); + _fmul($3,$10,$1); + _fmul($4,$3,$2); + _fsquare($10,$4); + _fmul($5,$10,$3); + _fsquare($10,$5); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fmul($6,$10,$5); + _fsquare($10,$6); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fmul($7,$11,$6); + _fsquare($10,$7); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fmul($10,$11,$7); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fmul($8,$10,$6); + _fsquare($10,$8); + _fsquare($11,$10); + $$317 = 2; while(1) { - $12 = (($e) + ($i$15)|0); - $13 = HEAP8[$12>>0]|0; - $14 = $13&255; - $15 = (($14) + ($carry$04))|0; - $sext = $15 << 24; - $sext1 = (($sext) + 134217728)|0; - $16 = $sext1 >> 28; - $17 = $16 << 4; - $18 = (($15) - ($17))|0; - $19 = $18&255; - HEAP8[$12>>0] = $19; - $20 = (($i$15) + 1)|0; - $exitcond = ($20|0)==(63); - if ($exitcond) { - $$lcssa = $16; - break; + _fsquare($10,$11); + _fsquare($11,$10); + $12 = (($$317) + 2)|0; + $13 = ($12|0)<(50); + if ($13) { + $$317 = $12; } else { - $carry$04 = $16;$i$15 = $20; + break; } } - $21 = ((($e)) + 63|0); - $22 = HEAP8[$21>>0]|0; - $23 = $22&255; - $24 = (($23) + ($$lcssa))|0; - $25 = $24&255; - HEAP8[$21>>0] = $25; - _crypto_sign_ed25519_ref10_ge_p3_0($h); - $i$23 = 1; + _fmul($9,$11,$8); + _fsquare($11,$9); + _fsquare($10,$11); + $$416 = 2; while(1) { - $26 = (($i$23|0) / 2)&-1; - $27 = (($e) + ($i$23)|0); - $28 = HEAP8[$27>>0]|0; - _select60($t,$26,$28); - _crypto_sign_ed25519_ref10_ge_madd($r,$h,$t); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($h,$r); - $29 = (($i$23) + 2)|0; - $30 = ($29|0)<(64); - if ($30) { - $i$23 = $29; + _fsquare($11,$10); + _fsquare($10,$11); + $14 = (($$416) + 2)|0; + $15 = ($14|0)<(100); + if ($15) { + $$416 = $14; } else { break; } } - _crypto_sign_ed25519_ref10_ge_p3_dbl($r,$h); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($s,$r); - _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$s); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($s,$r); - _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$s); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($s,$r); - _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$s); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($h,$r); - $i$32 = 0; + _fmul($11,$10,$9); + _fsquare($10,$11); + _fsquare($11,$10); + $$515 = 2; while(1) { - $31 = (($i$32|0) / 2)&-1; - $32 = (($e) + ($i$32)|0); - $33 = HEAP8[$32>>0]|0; - _select60($t,$31,$33); - _crypto_sign_ed25519_ref10_ge_madd($r,$h,$t); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($h,$r); - $34 = (($i$32) + 2)|0; - $35 = ($34|0)<(64); - if ($35) { - $i$32 = $34; + _fsquare($10,$11); + _fsquare($11,$10); + $16 = (($$515) + 2)|0; + $17 = ($16|0)<(50); + if ($17) { + $$515 = $16; } else { break; } } + _fmul($10,$11,$8); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fmul($0,$11,$4); STACKTOP = sp;return; } -function _select60($t,$pos,$b) { - $t = $t|0; - $pos = $pos|0; - $b = $b|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $minust = 0, label = 0, sp = 0; +function _fmul($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $3 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; sp = STACKTOP; - STACKTOP = STACKTOP + 128|0; - $minust = sp; - $0 = (_negative($b)|0); - $1 = $b << 24 >> 24; - $2 = $0&255; - $3 = (0 - ($2))|0; - $4 = $1 & $3; - $5 = $4 << 1; - $6 = (($1) - ($5))|0; - $7 = $6&255; - _crypto_sign_ed25519_ref10_ge_precomp_0($t); - $8 = (1792 + (($pos*960)|0)|0); - $9 = (_equal($7,1)|0); - _cmov($t,$8,$9); - $10 = (((1792 + (($pos*960)|0)|0)) + 120|0); - $11 = (_equal($7,2)|0); - _cmov($t,$10,$11); - $12 = (((1792 + (($pos*960)|0)|0)) + 240|0); - $13 = (_equal($7,3)|0); - _cmov($t,$12,$13); - $14 = (((1792 + (($pos*960)|0)|0)) + 360|0); - $15 = (_equal($7,4)|0); - _cmov($t,$14,$15); - $16 = (((1792 + (($pos*960)|0)|0)) + 480|0); - $17 = (_equal($7,5)|0); - _cmov($t,$16,$17); - $18 = (((1792 + (($pos*960)|0)|0)) + 600|0); - $19 = (_equal($7,6)|0); - _cmov($t,$18,$19); - $20 = (((1792 + (($pos*960)|0)|0)) + 720|0); - $21 = (_equal($7,7)|0); - _cmov($t,$20,$21); - $22 = (((1792 + (($pos*960)|0)|0)) + 840|0); - $23 = (_equal($7,8)|0); - _cmov($t,$22,$23); - $24 = ((($t)) + 40|0); - _crypto_sign_ed25519_ref10_fe_copy($minust,$24); - $25 = ((($minust)) + 40|0); - _crypto_sign_ed25519_ref10_fe_copy($25,$t); - $26 = ((($minust)) + 80|0); - $27 = ((($t)) + 80|0); - _crypto_sign_ed25519_ref10_fe_neg($26,$27); - _cmov($t,$minust,$0); + STACKTOP = STACKTOP + 160|0; + $3 = sp; + _fproduct($3,$1,$2); + _freduce_degree($3); + _freduce_coefficients($3); + dest=$0; src=$3; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); STACKTOP = sp;return; } -function _negative($b) { - $b = $b|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = $b << 24 >> 24; - $1 = ($0|0)<(0); - $2 = $1 << 31 >> 31; - $3 = (_bitshift64Lshr(($0|0),($2|0),63)|0); - $4 = tempRet0; - $5 = $3&255; - return ($5|0); -} -function _equal($b,$c) { - $b = $b|0; - $c = $c|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = $c ^ $b; - $1 = $0&255; - $2 = (($1) + -1)|0; - $3 = $2 >>> 31; - $4 = $3&255; - return ($4|0); -} -function _cmov($t,$u,$b) { - $t = $t|0; - $u = $u|0; - $b = $b|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = $b&255; - _crypto_sign_ed25519_ref10_fe_cmov($t,$u,$0); - $1 = ((($t)) + 40|0); - $2 = ((($u)) + 40|0); - _crypto_sign_ed25519_ref10_fe_cmov($1,$2,$0); - $3 = ((($t)) + 80|0); - $4 = ((($u)) + 80|0); - _crypto_sign_ed25519_ref10_fe_cmov($3,$4,$0); - return; -} -function _crypto_sign_ed25519_ref10_ge_sub($r,$p,$q) { - $r = $r|0; - $p = $p|0; - $q = $q|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $t0 = 0, label = 0, sp = 0; +function _fcontract($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$0135149 = 0, $$1136 = 0, $$3150 = 0, $$promoted = 0, $$promoted163 = 0, $$promoted165 = 0, $$promoted167 = 0, $$promoted169 = 0, $$promoted171 = 0, $$promoted173 = 0, $$promoted175 = 0, $$promoted177 = 0, $$promoted179 = 0, $$sink141 = 0, $$sink141$1 = 0, $$sink141$1$1 = 0, $$sink141$1199 = 0, $$sink141$2 = 0, $$sink141$2$1 = 0, $$sink141$3 = 0; + var $$sink141$3$1 = 0, $$sink141$4 = 0, $$sink141$4$1 = 0, $$sink141$5 = 0, $$sink141$5$1 = 0, $$sink141$6 = 0, $$sink141$6$1 = 0, $$sink141$7 = 0, $$sink141$7$1 = 0, $$sink141$8 = 0, $$sink141$8$1 = 0, $$sink3 = 0, $$sink3$1 = 0, $$sink3$2 = 0, $$sink3$3 = 0, $$sink3$4 = 0, $$sink3$5 = 0, $$sink3$6 = 0, $$sink3$7 = 0, $$sink3$8 = 0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0; + var $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0; + var $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0; + var $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0; + var $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0; + var $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0; + var $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0; + var $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0; + var $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0; + var $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0; + var $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0; + var $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0; + var $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0; + var $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0; + var $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0; + var $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0; + var $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0; + var $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0; + var $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; + var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; + var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $exitcond = 0, label = 0; + var sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 48|0; - $t0 = sp; - $0 = ((($p)) + 40|0); - _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); - $1 = ((($r)) + 40|0); - _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); - $2 = ((($r)) + 80|0); - $3 = ((($q)) + 40|0); - _crypto_sign_ed25519_ref10_fe_mul($2,$r,$3); - _crypto_sign_ed25519_ref10_fe_mul($1,$1,$q); - $4 = ((($r)) + 120|0); - $5 = ((($q)) + 120|0); - $6 = ((($p)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); - $7 = ((($p)) + 80|0); - $8 = ((($q)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($r,$7,$8); - _crypto_sign_ed25519_ref10_fe_add($t0,$r,$r); - _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); - _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); - _crypto_sign_ed25519_ref10_fe_sub($2,$t0,$4); - _crypto_sign_ed25519_ref10_fe_add($4,$t0,$4); + $2 = sp; + $3 = $1; + $4 = $3; + $5 = HEAP32[$4>>2]|0; + $6 = (($3) + 4)|0; + $7 = $6; + $8 = HEAP32[$7>>2]|0; + HEAP32[$2>>2] = $5; + $9 = ((($1)) + 8|0); + $10 = $9; + $11 = $10; + $12 = HEAP32[$11>>2]|0; + $13 = (($10) + 4)|0; + $14 = $13; + $15 = HEAP32[$14>>2]|0; + $16 = ((($2)) + 4|0); + HEAP32[$16>>2] = $12; + $17 = ((($1)) + 16|0); + $18 = $17; + $19 = $18; + $20 = HEAP32[$19>>2]|0; + $21 = (($18) + 4)|0; + $22 = $21; + $23 = HEAP32[$22>>2]|0; + $24 = ((($2)) + 8|0); + HEAP32[$24>>2] = $20; + $25 = ((($1)) + 24|0); + $26 = $25; + $27 = $26; + $28 = HEAP32[$27>>2]|0; + $29 = (($26) + 4)|0; + $30 = $29; + $31 = HEAP32[$30>>2]|0; + $32 = ((($2)) + 12|0); + HEAP32[$32>>2] = $28; + $33 = ((($1)) + 32|0); + $34 = $33; + $35 = $34; + $36 = HEAP32[$35>>2]|0; + $37 = (($34) + 4)|0; + $38 = $37; + $39 = HEAP32[$38>>2]|0; + $40 = ((($2)) + 16|0); + HEAP32[$40>>2] = $36; + $41 = ((($1)) + 40|0); + $42 = $41; + $43 = $42; + $44 = HEAP32[$43>>2]|0; + $45 = (($42) + 4)|0; + $46 = $45; + $47 = HEAP32[$46>>2]|0; + $48 = ((($2)) + 20|0); + HEAP32[$48>>2] = $44; + $49 = ((($1)) + 48|0); + $50 = $49; + $51 = $50; + $52 = HEAP32[$51>>2]|0; + $53 = (($50) + 4)|0; + $54 = $53; + $55 = HEAP32[$54>>2]|0; + $56 = ((($2)) + 24|0); + HEAP32[$56>>2] = $52; + $57 = ((($1)) + 56|0); + $58 = $57; + $59 = $58; + $60 = HEAP32[$59>>2]|0; + $61 = (($58) + 4)|0; + $62 = $61; + $63 = HEAP32[$62>>2]|0; + $64 = ((($2)) + 28|0); + HEAP32[$64>>2] = $60; + $65 = ((($1)) + 64|0); + $66 = $65; + $67 = $66; + $68 = HEAP32[$67>>2]|0; + $69 = (($66) + 4)|0; + $70 = $69; + $71 = HEAP32[$70>>2]|0; + $72 = ((($2)) + 32|0); + HEAP32[$72>>2] = $68; + $73 = ((($1)) + 72|0); + $74 = $73; + $75 = $74; + $76 = HEAP32[$75>>2]|0; + $77 = (($74) + 4)|0; + $78 = $77; + $79 = HEAP32[$78>>2]|0; + $80 = ((($2)) + 36|0); + HEAP32[$80>>2] = $76; + $81 = ((($2)) + 4|0); + $82 = ((($2)) + 8|0); + $83 = ((($2)) + 12|0); + $84 = ((($2)) + 16|0); + $85 = ((($2)) + 20|0); + $86 = ((($2)) + 24|0); + $87 = ((($2)) + 28|0); + $88 = ((($2)) + 32|0); + $89 = ((($2)) + 36|0); + $$promoted163 = HEAP32[$2>>2]|0; + $$promoted179 = HEAP32[$89>>2]|0; + $$promoted177 = HEAP32[$88>>2]|0; + $$promoted175 = HEAP32[$87>>2]|0; + $$promoted173 = HEAP32[$86>>2]|0; + $$promoted171 = HEAP32[$85>>2]|0; + $$promoted169 = HEAP32[$84>>2]|0; + $$promoted167 = HEAP32[$83>>2]|0; + $$promoted165 = HEAP32[$82>>2]|0; + $$promoted = HEAP32[$81>>2]|0; + $90 = $$promoted163 >> 31; + $91 = $90 & $$promoted163; + $$sink141 = $91 >> 26; + $92 = (0 - ($$sink141))|0; + $93 = $92 << 26; + $94 = (($93) + ($$promoted163))|0; + $95 = (($$sink141) + ($$promoted))|0; + $96 = $95 >> 31; + $97 = $96 & $95; + $$sink141$1 = $97 >> 25; + $98 = (0 - ($$sink141$1))|0; + $99 = $98 << 25; + $100 = (($99) + ($95))|0; + $101 = (($$sink141$1) + ($$promoted165))|0; + $102 = $101 >> 31; + $103 = $102 & $101; + $$sink141$2 = $103 >> 26; + $104 = (0 - ($$sink141$2))|0; + $105 = $104 << 26; + $106 = (($105) + ($101))|0; + $107 = (($$sink141$2) + ($$promoted167))|0; + $108 = $107 >> 31; + $109 = $108 & $107; + $$sink141$3 = $109 >> 25; + $110 = (0 - ($$sink141$3))|0; + $111 = $110 << 25; + $112 = (($111) + ($107))|0; + $113 = (($$sink141$3) + ($$promoted169))|0; + $114 = $113 >> 31; + $115 = $114 & $113; + $$sink141$4 = $115 >> 26; + $116 = (0 - ($$sink141$4))|0; + $117 = $116 << 26; + $118 = (($117) + ($113))|0; + $119 = (($$sink141$4) + ($$promoted171))|0; + $120 = $119 >> 31; + $121 = $120 & $119; + $$sink141$5 = $121 >> 25; + $122 = (0 - ($$sink141$5))|0; + $123 = $122 << 25; + $124 = (($123) + ($119))|0; + $125 = (($$sink141$5) + ($$promoted173))|0; + $126 = $125 >> 31; + $127 = $126 & $125; + $$sink141$6 = $127 >> 26; + $128 = (0 - ($$sink141$6))|0; + $129 = $128 << 26; + $130 = (($129) + ($125))|0; + $131 = (($$sink141$6) + ($$promoted175))|0; + $132 = $131 >> 31; + $133 = $132 & $131; + $$sink141$7 = $133 >> 25; + $134 = (0 - ($$sink141$7))|0; + $135 = $134 << 25; + $136 = (($135) + ($131))|0; + $137 = (($$sink141$7) + ($$promoted177))|0; + $138 = $137 >> 31; + $139 = $138 & $137; + $$sink141$8 = $139 >> 26; + $140 = (0 - ($$sink141$8))|0; + $141 = $140 << 26; + $142 = (($141) + ($137))|0; + $143 = (($$sink141$8) + ($$promoted179))|0; + $144 = $143 >> 31; + $145 = $144 & $143; + $146 = $145 >> 25; + $147 = Math_imul($146, -33554432)|0; + $148 = (($147) + ($143))|0; + $149 = ($146*19)|0; + $150 = (($149) + ($94))|0; + $151 = $150 >> 31; + $152 = $151 & $150; + $$sink141$1199 = $152 >> 26; + $153 = (0 - ($$sink141$1199))|0; + $154 = $153 << 26; + $155 = (($154) + ($150))|0; + $156 = (($$sink141$1199) + ($100))|0; + $157 = $156 >> 31; + $158 = $157 & $156; + $$sink141$1$1 = $158 >> 25; + $159 = (0 - ($$sink141$1$1))|0; + $160 = $159 << 25; + $161 = (($160) + ($156))|0; + $162 = (($$sink141$1$1) + ($106))|0; + $163 = $162 >> 31; + $164 = $163 & $162; + $$sink141$2$1 = $164 >> 26; + $165 = (0 - ($$sink141$2$1))|0; + $166 = $165 << 26; + $167 = (($166) + ($162))|0; + $168 = (($$sink141$2$1) + ($112))|0; + $169 = $168 >> 31; + $170 = $169 & $168; + $$sink141$3$1 = $170 >> 25; + $171 = (0 - ($$sink141$3$1))|0; + $172 = $171 << 25; + $173 = (($172) + ($168))|0; + $174 = (($$sink141$3$1) + ($118))|0; + $175 = $174 >> 31; + $176 = $175 & $174; + $$sink141$4$1 = $176 >> 26; + $177 = (0 - ($$sink141$4$1))|0; + $178 = $177 << 26; + $179 = (($178) + ($174))|0; + $180 = (($$sink141$4$1) + ($124))|0; + $181 = $180 >> 31; + $182 = $181 & $180; + $$sink141$5$1 = $182 >> 25; + $183 = (0 - ($$sink141$5$1))|0; + $184 = $183 << 25; + $185 = (($184) + ($180))|0; + $186 = (($$sink141$5$1) + ($130))|0; + $187 = $186 >> 31; + $188 = $187 & $186; + $$sink141$6$1 = $188 >> 26; + $189 = (0 - ($$sink141$6$1))|0; + $190 = $189 << 26; + $191 = (($190) + ($186))|0; + $192 = (($$sink141$6$1) + ($136))|0; + $193 = $192 >> 31; + $194 = $193 & $192; + $$sink141$7$1 = $194 >> 25; + $195 = (0 - ($$sink141$7$1))|0; + $196 = $195 << 25; + $197 = (($196) + ($192))|0; + $198 = (($$sink141$7$1) + ($142))|0; + $199 = $198 >> 31; + $200 = $199 & $198; + $$sink141$8$1 = $200 >> 26; + $201 = (0 - ($$sink141$8$1))|0; + $202 = $201 << 26; + $203 = (($202) + ($198))|0; + $204 = (($$sink141$8$1) + ($148))|0; + $205 = $204 >> 31; + $206 = $205 & $204; + $207 = $206 >> 25; + $208 = Math_imul($207, -33554432)|0; + $209 = (($208) + ($204))|0; + $210 = ($207*19)|0; + $211 = (($210) + ($155))|0; + HEAP32[$81>>2] = $161; + HEAP32[$2>>2] = $211; + HEAP32[$82>>2] = $167; + HEAP32[$83>>2] = $173; + HEAP32[$84>>2] = $179; + HEAP32[$85>>2] = $185; + HEAP32[$86>>2] = $191; + HEAP32[$87>>2] = $197; + HEAP32[$88>>2] = $203; + HEAP32[$89>>2] = $209; + $212 = HEAP32[$2>>2]|0; + $213 = $212 >> 31; + $214 = $213 & $212; + $215 = $214 >> 26; + $216 = Math_imul($215, -67108864)|0; + $217 = (($216) + ($212))|0; + HEAP32[$2>>2] = $217; + $218 = ((($2)) + 4|0); + $219 = HEAP32[$218>>2]|0; + $220 = (($215) + ($219))|0; + HEAP32[$218>>2] = $220; + $221 = ((($2)) + 36|0); + $222 = HEAP32[$2>>2]|0; + $223 = $222 >> 26; + $224 = $222 & 67108863; + HEAP32[$2>>2] = $224; + $225 = (($220) + ($223))|0; + $226 = ((($2)) + 4|0); + $227 = ((($2)) + 8|0); + $228 = HEAP32[$227>>2]|0; + $229 = $225 >> 25; + $230 = $225 & 33554431; + HEAP32[$226>>2] = $230; + $231 = (($228) + ($229))|0; + $232 = ((($2)) + 8|0); + $233 = ((($2)) + 12|0); + $234 = HEAP32[$233>>2]|0; + $235 = $231 >> 26; + $236 = $231 & 67108863; + HEAP32[$232>>2] = $236; + $237 = (($234) + ($235))|0; + $238 = ((($2)) + 12|0); + $239 = ((($2)) + 16|0); + $240 = HEAP32[$239>>2]|0; + $241 = $237 >> 25; + $242 = $237 & 33554431; + HEAP32[$238>>2] = $242; + $243 = (($240) + ($241))|0; + $244 = ((($2)) + 16|0); + $245 = ((($2)) + 20|0); + $246 = HEAP32[$245>>2]|0; + $247 = $243 >> 26; + $248 = $243 & 67108863; + HEAP32[$244>>2] = $248; + $249 = (($246) + ($247))|0; + $250 = ((($2)) + 20|0); + $251 = ((($2)) + 24|0); + $252 = HEAP32[$251>>2]|0; + $253 = $249 >> 25; + $254 = $249 & 33554431; + HEAP32[$250>>2] = $254; + $255 = (($252) + ($253))|0; + $256 = ((($2)) + 24|0); + $257 = ((($2)) + 28|0); + $258 = HEAP32[$257>>2]|0; + $259 = $255 >> 26; + $260 = $255 & 67108863; + HEAP32[$256>>2] = $260; + $261 = (($258) + ($259))|0; + $262 = ((($2)) + 28|0); + $263 = ((($2)) + 32|0); + $264 = HEAP32[$263>>2]|0; + $265 = $261 >> 25; + $266 = $261 & 33554431; + HEAP32[$262>>2] = $266; + $267 = (($264) + ($265))|0; + $268 = ((($2)) + 32|0); + $269 = ((($2)) + 36|0); + $270 = HEAP32[$269>>2]|0; + $271 = $267 >> 26; + $272 = $267 & 67108863; + HEAP32[$268>>2] = $272; + $273 = (($270) + ($271))|0; + $274 = $273 >> 25; + $275 = $273 & 33554431; + HEAP32[$221>>2] = $275; + $276 = ($274*19)|0; + $277 = HEAP32[$2>>2]|0; + $278 = (($277) + ($276))|0; + HEAP32[$2>>2] = $278; + $279 = ((($2)) + 4|0); + $280 = HEAP32[$279>>2]|0; + $281 = $278 >> 26; + $282 = $278 & 67108863; + HEAP32[$2>>2] = $282; + $283 = (($280) + ($281))|0; + $284 = ((($2)) + 4|0); + $285 = ((($2)) + 8|0); + $286 = HEAP32[$285>>2]|0; + $287 = $283 >> 25; + $288 = $283 & 33554431; + HEAP32[$284>>2] = $288; + $289 = (($286) + ($287))|0; + $290 = ((($2)) + 8|0); + $291 = ((($2)) + 12|0); + $292 = HEAP32[$291>>2]|0; + $293 = $289 >> 26; + $294 = $289 & 67108863; + HEAP32[$290>>2] = $294; + $295 = (($292) + ($293))|0; + $296 = ((($2)) + 12|0); + $297 = ((($2)) + 16|0); + $298 = HEAP32[$297>>2]|0; + $299 = $295 >> 25; + $300 = $295 & 33554431; + HEAP32[$296>>2] = $300; + $301 = (($298) + ($299))|0; + $302 = ((($2)) + 16|0); + $303 = ((($2)) + 20|0); + $304 = HEAP32[$303>>2]|0; + $305 = $301 >> 26; + $306 = $301 & 67108863; + HEAP32[$302>>2] = $306; + $307 = (($304) + ($305))|0; + $308 = ((($2)) + 20|0); + $309 = ((($2)) + 24|0); + $310 = HEAP32[$309>>2]|0; + $311 = $307 >> 25; + $312 = $307 & 33554431; + HEAP32[$308>>2] = $312; + $313 = (($310) + ($311))|0; + $314 = ((($2)) + 24|0); + $315 = ((($2)) + 28|0); + $316 = HEAP32[$315>>2]|0; + $317 = $313 >> 26; + $318 = $313 & 67108863; + HEAP32[$314>>2] = $318; + $319 = (($316) + ($317))|0; + $320 = ((($2)) + 28|0); + $321 = ((($2)) + 32|0); + $322 = HEAP32[$321>>2]|0; + $323 = $319 >> 25; + $324 = $319 & 33554431; + HEAP32[$320>>2] = $324; + $325 = (($322) + ($323))|0; + $326 = ((($2)) + 32|0); + $327 = ((($2)) + 36|0); + $328 = HEAP32[$327>>2]|0; + $329 = $325 >> 26; + $330 = $325 & 67108863; + HEAP32[$326>>2] = $330; + $331 = (($328) + ($329))|0; + $332 = $331 >> 25; + $333 = $331 & 33554431; + HEAP32[$221>>2] = $333; + $334 = ($332*19)|0; + $335 = HEAP32[$2>>2]|0; + $336 = (($335) + ($334))|0; + HEAP32[$2>>2] = $336; + $337 = (_s32_gte($336)|0); + $$0135149 = $337;$$3150 = 1; + while(1) { + $338 = (($2) + ($$3150<<2)|0); + $339 = HEAP32[$338>>2]|0; + $340 = $$3150 << 25; + $341 = $340 & 33554432; + $342 = $341 ^ 67108863; + $343 = (_s32_eq($339,$342)|0); + $$1136 = $343 & $$0135149; + $344 = (($$3150) + 1)|0; + $exitcond = ($344|0)==(10); + if ($exitcond) { + break; + } else { + $$0135149 = $$1136;$$3150 = $344; + } + } + $345 = $$1136 & 67108845; + $346 = HEAP32[$2>>2]|0; + $347 = (($346) - ($345))|0; + HEAP32[$2>>2] = $347; + $$sink3 = $$1136 & 33554431; + $348 = ((($2)) + 4|0); + $349 = HEAP32[$348>>2]|0; + $350 = (($349) - ($$sink3))|0; + HEAP32[$348>>2] = $350; + $$sink3$1 = $$1136 & 67108863; + $351 = ((($2)) + 8|0); + $352 = HEAP32[$351>>2]|0; + $353 = (($352) - ($$sink3$1))|0; + HEAP32[$351>>2] = $353; + $$sink3$2 = $$1136 & 33554431; + $354 = ((($2)) + 12|0); + $355 = HEAP32[$354>>2]|0; + $356 = (($355) - ($$sink3$2))|0; + HEAP32[$354>>2] = $356; + $$sink3$3 = $$1136 & 67108863; + $357 = ((($2)) + 16|0); + $358 = HEAP32[$357>>2]|0; + $359 = (($358) - ($$sink3$3))|0; + HEAP32[$357>>2] = $359; + $$sink3$4 = $$1136 & 33554431; + $360 = ((($2)) + 20|0); + $361 = HEAP32[$360>>2]|0; + $362 = (($361) - ($$sink3$4))|0; + HEAP32[$360>>2] = $362; + $$sink3$5 = $$1136 & 67108863; + $363 = ((($2)) + 24|0); + $364 = HEAP32[$363>>2]|0; + $365 = (($364) - ($$sink3$5))|0; + HEAP32[$363>>2] = $365; + $$sink3$6 = $$1136 & 33554431; + $366 = ((($2)) + 28|0); + $367 = HEAP32[$366>>2]|0; + $368 = (($367) - ($$sink3$6))|0; + HEAP32[$366>>2] = $368; + $$sink3$7 = $$1136 & 67108863; + $369 = ((($2)) + 32|0); + $370 = HEAP32[$369>>2]|0; + $371 = (($370) - ($$sink3$7))|0; + HEAP32[$369>>2] = $371; + $$sink3$8 = $$1136 & 33554431; + $372 = ((($2)) + 36|0); + $373 = HEAP32[$372>>2]|0; + $374 = (($373) - ($$sink3$8))|0; + HEAP32[$372>>2] = $374; + $375 = HEAP32[$218>>2]|0; + $376 = $375 << 2; + HEAP32[$218>>2] = $376; + $377 = ((($2)) + 8|0); + $378 = HEAP32[$377>>2]|0; + $379 = $378 << 3; + HEAP32[$377>>2] = $379; + $380 = ((($2)) + 12|0); + $381 = HEAP32[$380>>2]|0; + $382 = $381 << 5; + HEAP32[$380>>2] = $382; + $383 = ((($2)) + 16|0); + $384 = HEAP32[$383>>2]|0; + $385 = $384 << 6; + HEAP32[$383>>2] = $385; + $386 = ((($2)) + 24|0); + $387 = HEAP32[$386>>2]|0; + $388 = $387 << 1; + HEAP32[$386>>2] = $388; + $389 = ((($2)) + 28|0); + $390 = HEAP32[$389>>2]|0; + $391 = $390 << 3; + HEAP32[$389>>2] = $391; + $392 = ((($2)) + 32|0); + $393 = HEAP32[$392>>2]|0; + $394 = $393 << 4; + HEAP32[$392>>2] = $394; + $395 = ((($2)) + 36|0); + $396 = HEAP32[$395>>2]|0; + $397 = $396 << 6; + HEAP32[$395>>2] = $397; + $398 = ((($0)) + 16|0); + HEAP8[$398>>0] = 0; + $399 = HEAP32[$2>>2]|0; + $400 = $399&255; + HEAP8[$0>>0] = $400; + $401 = $399 >>> 8; + $402 = $401&255; + $403 = ((($0)) + 1|0); + HEAP8[$403>>0] = $402; + $404 = $399 >>> 16; + $405 = $404&255; + $406 = ((($0)) + 2|0); + HEAP8[$406>>0] = $405; + $407 = $399 >>> 24; + $408 = ((($0)) + 3|0); + $409 = HEAP32[$218>>2]|0; + $410 = $409 | $407; + $411 = $410&255; + HEAP8[$408>>0] = $411; + $412 = $409 >>> 8; + $413 = $412&255; + $414 = ((($0)) + 4|0); + HEAP8[$414>>0] = $413; + $415 = $409 >>> 16; + $416 = $415&255; + $417 = ((($0)) + 5|0); + HEAP8[$417>>0] = $416; + $418 = $409 >>> 24; + $419 = ((($0)) + 6|0); + $420 = HEAP32[$377>>2]|0; + $421 = $420 | $418; + $422 = $421&255; + HEAP8[$419>>0] = $422; + $423 = $420 >>> 8; + $424 = $423&255; + $425 = ((($0)) + 7|0); + HEAP8[$425>>0] = $424; + $426 = $420 >>> 16; + $427 = $426&255; + $428 = ((($0)) + 8|0); + HEAP8[$428>>0] = $427; + $429 = $420 >>> 24; + $430 = ((($0)) + 9|0); + $431 = HEAP32[$380>>2]|0; + $432 = $431 | $429; + $433 = $432&255; + HEAP8[$430>>0] = $433; + $434 = $431 >>> 8; + $435 = $434&255; + $436 = ((($0)) + 10|0); + HEAP8[$436>>0] = $435; + $437 = HEAP32[$380>>2]|0; + $438 = $437 >>> 16; + $439 = $438&255; + $440 = ((($0)) + 11|0); + HEAP8[$440>>0] = $439; + $441 = $437 >>> 24; + $442 = ((($0)) + 12|0); + $443 = HEAP32[$383>>2]|0; + $444 = $443 | $441; + $445 = $444&255; + HEAP8[$442>>0] = $445; + $446 = $443 >>> 8; + $447 = $446&255; + $448 = ((($0)) + 13|0); + HEAP8[$448>>0] = $447; + $449 = HEAP32[$383>>2]|0; + $450 = $449 >>> 16; + $451 = $450&255; + $452 = ((($0)) + 14|0); + HEAP8[$452>>0] = $451; + $453 = $449 >>> 24; + $454 = $453&255; + $455 = ((($0)) + 15|0); + HEAP8[$455>>0] = $454; + $456 = ((($2)) + 20|0); + $457 = HEAP32[$456>>2]|0; + $458 = HEAP8[$398>>0]|0; + $459 = $458&255; + $460 = $459 | $457; + $461 = $460&255; + HEAP8[$398>>0] = $461; + $462 = $457 >>> 8; + $463 = $462&255; + $464 = ((($0)) + 17|0); + HEAP8[$464>>0] = $463; + $465 = HEAP32[$456>>2]|0; + $466 = $465 >>> 16; + $467 = $466&255; + $468 = ((($0)) + 18|0); + HEAP8[$468>>0] = $467; + $469 = $465 >>> 24; + $470 = ((($0)) + 19|0); + $471 = HEAP32[$386>>2]|0; + $472 = $471 | $469; + $473 = $472&255; + HEAP8[$470>>0] = $473; + $474 = $471 >>> 8; + $475 = $474&255; + $476 = ((($0)) + 20|0); + HEAP8[$476>>0] = $475; + $477 = HEAP32[$386>>2]|0; + $478 = $477 >>> 16; + $479 = $478&255; + $480 = ((($0)) + 21|0); + HEAP8[$480>>0] = $479; + $481 = $477 >>> 24; + $482 = ((($0)) + 22|0); + $483 = HEAP32[$389>>2]|0; + $484 = $483 | $481; + $485 = $484&255; + HEAP8[$482>>0] = $485; + $486 = $483 >>> 8; + $487 = $486&255; + $488 = ((($0)) + 23|0); + HEAP8[$488>>0] = $487; + $489 = HEAP32[$389>>2]|0; + $490 = $489 >>> 16; + $491 = $490&255; + $492 = ((($0)) + 24|0); + HEAP8[$492>>0] = $491; + $493 = $489 >>> 24; + $494 = ((($0)) + 25|0); + $495 = HEAP32[$392>>2]|0; + $496 = $495 | $493; + $497 = $496&255; + HEAP8[$494>>0] = $497; + $498 = $495 >>> 8; + $499 = $498&255; + $500 = ((($0)) + 26|0); + HEAP8[$500>>0] = $499; + $501 = HEAP32[$392>>2]|0; + $502 = $501 >>> 16; + $503 = $502&255; + $504 = ((($0)) + 27|0); + HEAP8[$504>>0] = $503; + $505 = $501 >>> 24; + $506 = ((($0)) + 28|0); + $507 = HEAP32[$395>>2]|0; + $508 = $507 | $505; + $509 = $508&255; + HEAP8[$506>>0] = $509; + $510 = $507 >>> 8; + $511 = $510&255; + $512 = ((($0)) + 29|0); + HEAP8[$512>>0] = $511; + $513 = HEAP32[$395>>2]|0; + $514 = $513 >>> 16; + $515 = $514&255; + $516 = ((($0)) + 30|0); + HEAP8[$516>>0] = $515; + $517 = $513 >>> 24; + $518 = $517&255; + $519 = ((($0)) + 31|0); + HEAP8[$519>>0] = $518; STACKTOP = sp;return; } -function _crypto_sign_ed25519_ref10_ge_tobytes($s,$h) { - $s = $s|0; - $h = $h|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $recip = 0, $x = 0, $y = 0, label = 0, sp = 0; +function _s32_gte($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, $3 = 0, label = 0, sp = 0; sp = STACKTOP; - STACKTOP = STACKTOP + 128|0; - $recip = sp + 80|0; - $x = sp + 40|0; - $y = sp; - $0 = ((($h)) + 80|0); - _crypto_sign_ed25519_ref10_fe_invert($recip,$0); - _crypto_sign_ed25519_ref10_fe_mul($x,$h,$recip); - $1 = ((($h)) + 40|0); - _crypto_sign_ed25519_ref10_fe_mul($y,$1,$recip); - _crypto_sign_ed25519_ref10_fe_tobytes($s,$y); - $2 = (_crypto_sign_ed25519_ref10_fe_isnegative($x)|0); - $3 = $2 << 7; - $4 = ((($s)) + 31|0); - $5 = HEAP8[$4>>0]|0; - $6 = $5&255; - $7 = $6 ^ $3; - $8 = $7&255; - HEAP8[$4>>0] = $8; - STACKTOP = sp;return; + $1 = (($0) + -67108845)|0; + $2 = $1 >> 31; + $3 = $2 ^ -1; + return ($3|0); } -function _crypto_sign_edwards25519sha512batch_ref10_open($m,$mlen,$sm,$0,$1,$pk) { - $m = $m|0; - $mlen = $mlen|0; - $sm = $sm|0; +function _s32_eq($0,$1) { $0 = $0|0; $1 = $1|0; - $pk = $pk|0; - var $$0 = 0, $$sum = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $A = 0, $R = 0, $h = 0, $pkcopy1 = 0, $rcheck = 0, $rcopy = 0, $scopy = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - STACKTOP = STACKTOP + 480|0; - $pkcopy1 = sp + 440|0; - $rcopy = sp + 344|0; - $scopy = sp + 312|0; - $h = sp + 376|0; - $rcheck = sp + 280|0; - $A = sp + 120|0; - $R = sp; - $2 = ($1>>>0)<(0); - $3 = ($0>>>0)<(64); - $4 = ($1|0)==(0); + $2 = $0 ^ -1; + $3 = $2 ^ $1; + $4 = $3 << 16; $5 = $4 & $3; - $6 = $2 | $5; - if (!($6)) { - $7 = ((($sm)) + 63|0); - $8 = HEAP8[$7>>0]|0; - $9 = ($8&255)>(31); - if (!($9)) { - $10 = (_crypto_sign_ed25519_ref10_ge_frombytes_negate_vartime($A,$pk)|0); - $11 = ($10|0)==(0); - if ($11) { - dest=$pkcopy1; src=$pk; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - dest=$rcopy; src=$sm; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - $12 = ((($sm)) + 32|0); - dest=$scopy; src=$12; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - _memmove(($m|0),($sm|0),($0|0))|0; - $13 = ((($m)) + 32|0); - dest=$13; src=$pkcopy1; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - (_crypto_hash_sha512_ref($h,$m,$0,$1)|0); - _crypto_sign_ed25519_ref10_sc_reduce($h); - _crypto_sign_ed25519_ref10_ge_double_scalarmult_vartime($R,$h,$A,$scopy); - _crypto_sign_ed25519_ref10_ge_tobytes($rcheck,$R); - $14 = (_crypto_verify_32_ref($rcheck,$rcopy)|0); - $15 = ($14|0)==(0); - if ($15) { - $16 = ((($m)) + 64|0); - $17 = (_i64Add(($0|0),($1|0),-64,-1)|0); - $18 = tempRet0; - _memmove(($m|0),($16|0),($17|0))|0; - $$sum = (($0) + -64)|0; - $19 = (($m) + ($$sum)|0); - dest=$19; stop=dest+64|0; do { HEAP8[dest>>0]=0|0; dest=dest+1|0; } while ((dest|0) < (stop|0)); - $20 = $mlen; - $21 = $20; - HEAP32[$21>>2] = $17; - $22 = (($20) + 4)|0; - $23 = $22; - HEAP32[$23>>2] = $18; - $$0 = 0; - STACKTOP = sp;return ($$0|0); - } - } - } - } - $24 = $mlen; - $25 = $24; - HEAP32[$25>>2] = -1; - $26 = (($24) + 4)|0; - $27 = $26; - HEAP32[$27>>2] = -1; - _memset(($m|0),0,($0|0))|0; - $$0 = -1; - STACKTOP = sp;return ($$0|0); + $6 = $5 << 8; + $7 = $6 & $5; + $8 = $7 << 4; + $9 = $8 & $7; + $10 = $9 << 2; + $11 = $10 & $9; + $12 = $11 << 1; + $13 = $12 & $11; + $14 = $13 >> 31; + return ($14|0); } -function _crypto_sign_ed25519_ref10_sc_muladd($s,$a,$b,$c) { - $s = $s|0; - $a = $a|0; - $b = $b|0; - $c = $c|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; - var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0; - var $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0; - var $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0; - var $107 = 0, $1070 = 0, $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0; - var $1088 = 0, $1089 = 0, $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0; - var $1105 = 0, $1106 = 0, $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $1119 = 0, $112 = 0, $1120 = 0, $1121 = 0, $1122 = 0; - var $1123 = 0, $1124 = 0, $1125 = 0, $1126 = 0, $1127 = 0, $1128 = 0, $1129 = 0, $113 = 0, $1130 = 0, $1131 = 0, $1132 = 0, $1133 = 0, $1134 = 0, $1135 = 0, $1136 = 0, $1137 = 0, $1138 = 0, $1139 = 0, $114 = 0, $1140 = 0; - var $1141 = 0, $1142 = 0, $1143 = 0, $1144 = 0, $1145 = 0, $1146 = 0, $1147 = 0, $1148 = 0, $1149 = 0, $115 = 0, $1150 = 0, $1151 = 0, $1152 = 0, $1153 = 0, $1154 = 0, $1155 = 0, $1156 = 0, $1157 = 0, $1158 = 0, $1159 = 0; - var $116 = 0, $1160 = 0, $1161 = 0, $1162 = 0, $1163 = 0, $1164 = 0, $1165 = 0, $1166 = 0, $1167 = 0, $1168 = 0, $1169 = 0, $117 = 0, $1170 = 0, $1171 = 0, $1172 = 0, $1173 = 0, $1174 = 0, $1175 = 0, $1176 = 0, $1177 = 0; - var $1178 = 0, $1179 = 0, $118 = 0, $1180 = 0, $1181 = 0, $1182 = 0, $1183 = 0, $1184 = 0, $1185 = 0, $1186 = 0, $1187 = 0, $1188 = 0, $1189 = 0, $119 = 0, $1190 = 0, $1191 = 0, $1192 = 0, $1193 = 0, $1194 = 0, $1195 = 0; - var $1196 = 0, $1197 = 0, $1198 = 0, $1199 = 0, $12 = 0, $120 = 0, $1200 = 0, $1201 = 0, $1202 = 0, $1203 = 0, $1204 = 0, $1205 = 0, $1206 = 0, $1207 = 0, $1208 = 0, $1209 = 0, $121 = 0, $1210 = 0, $1211 = 0, $1212 = 0; - var $1213 = 0, $1214 = 0, $1215 = 0, $1216 = 0, $1217 = 0, $1218 = 0, $1219 = 0, $122 = 0, $1220 = 0, $1221 = 0, $1222 = 0, $1223 = 0, $1224 = 0, $1225 = 0, $1226 = 0, $1227 = 0, $1228 = 0, $1229 = 0, $123 = 0, $1230 = 0; - var $1231 = 0, $1232 = 0, $1233 = 0, $1234 = 0, $1235 = 0, $1236 = 0, $1237 = 0, $1238 = 0, $1239 = 0, $124 = 0, $1240 = 0, $1241 = 0, $1242 = 0, $1243 = 0, $1244 = 0, $1245 = 0, $1246 = 0, $1247 = 0, $1248 = 0, $1249 = 0; - var $125 = 0, $1250 = 0, $1251 = 0, $1252 = 0, $1253 = 0, $1254 = 0, $1255 = 0, $1256 = 0, $1257 = 0, $1258 = 0, $1259 = 0, $126 = 0, $1260 = 0, $1261 = 0, $1262 = 0, $1263 = 0, $1264 = 0, $1265 = 0, $1266 = 0, $1267 = 0; - var $1268 = 0, $1269 = 0, $127 = 0, $1270 = 0, $1271 = 0, $1272 = 0, $1273 = 0, $1274 = 0, $1275 = 0, $1276 = 0, $1277 = 0, $1278 = 0, $1279 = 0, $128 = 0, $1280 = 0, $1281 = 0, $1282 = 0, $1283 = 0, $1284 = 0, $1285 = 0; - var $1286 = 0, $1287 = 0, $1288 = 0, $1289 = 0, $129 = 0, $1290 = 0, $1291 = 0, $1292 = 0, $1293 = 0, $1294 = 0, $1295 = 0, $1296 = 0, $1297 = 0, $1298 = 0, $1299 = 0, $13 = 0, $130 = 0, $1300 = 0, $1301 = 0, $1302 = 0; - var $1303 = 0, $1304 = 0, $1305 = 0, $1306 = 0, $1307 = 0, $1308 = 0, $1309 = 0, $131 = 0, $1310 = 0, $1311 = 0, $1312 = 0, $1313 = 0, $1314 = 0, $1315 = 0, $1316 = 0, $1317 = 0, $1318 = 0, $1319 = 0, $132 = 0, $1320 = 0; - var $1321 = 0, $1322 = 0, $1323 = 0, $1324 = 0, $1325 = 0, $1326 = 0, $1327 = 0, $1328 = 0, $1329 = 0, $133 = 0, $1330 = 0, $1331 = 0, $1332 = 0, $1333 = 0, $1334 = 0, $1335 = 0, $1336 = 0, $1337 = 0, $1338 = 0, $1339 = 0; - var $134 = 0, $1340 = 0, $1341 = 0, $1342 = 0, $1343 = 0, $1344 = 0, $1345 = 0, $1346 = 0, $1347 = 0, $1348 = 0, $1349 = 0, $135 = 0, $1350 = 0, $1351 = 0, $1352 = 0, $1353 = 0, $1354 = 0, $1355 = 0, $1356 = 0, $1357 = 0; - var $1358 = 0, $1359 = 0, $136 = 0, $1360 = 0, $1361 = 0, $1362 = 0, $1363 = 0, $1364 = 0, $1365 = 0, $1366 = 0, $1367 = 0, $1368 = 0, $1369 = 0, $137 = 0, $1370 = 0, $1371 = 0, $1372 = 0, $1373 = 0, $1374 = 0, $1375 = 0; - var $1376 = 0, $1377 = 0, $1378 = 0, $1379 = 0, $138 = 0, $1380 = 0, $1381 = 0, $1382 = 0, $1383 = 0, $1384 = 0, $1385 = 0, $1386 = 0, $1387 = 0, $1388 = 0, $1389 = 0, $139 = 0, $1390 = 0, $1391 = 0, $1392 = 0, $1393 = 0; - var $1394 = 0, $1395 = 0, $1396 = 0, $1397 = 0, $1398 = 0, $1399 = 0, $14 = 0, $140 = 0, $1400 = 0, $1401 = 0, $1402 = 0, $1403 = 0, $1404 = 0, $1405 = 0, $1406 = 0, $1407 = 0, $1408 = 0, $1409 = 0, $141 = 0, $1410 = 0; - var $1411 = 0, $1412 = 0, $1413 = 0, $1414 = 0, $1415 = 0, $1416 = 0, $1417 = 0, $1418 = 0, $1419 = 0, $142 = 0, $1420 = 0, $1421 = 0, $1422 = 0, $1423 = 0, $1424 = 0, $1425 = 0, $1426 = 0, $1427 = 0, $1428 = 0, $1429 = 0; - var $143 = 0, $1430 = 0, $1431 = 0, $1432 = 0, $1433 = 0, $1434 = 0, $1435 = 0, $1436 = 0, $1437 = 0, $1438 = 0, $1439 = 0, $144 = 0, $1440 = 0, $1441 = 0, $1442 = 0, $1443 = 0, $1444 = 0, $1445 = 0, $1446 = 0, $1447 = 0; - var $1448 = 0, $1449 = 0, $145 = 0, $1450 = 0, $1451 = 0, $1452 = 0, $1453 = 0, $1454 = 0, $1455 = 0, $1456 = 0, $1457 = 0, $1458 = 0, $1459 = 0, $146 = 0, $1460 = 0, $1461 = 0, $1462 = 0, $1463 = 0, $1464 = 0, $1465 = 0; - var $1466 = 0, $1467 = 0, $1468 = 0, $1469 = 0, $147 = 0, $1470 = 0, $1471 = 0, $1472 = 0, $1473 = 0, $1474 = 0, $1475 = 0, $1476 = 0, $1477 = 0, $1478 = 0, $1479 = 0, $148 = 0, $1480 = 0, $1481 = 0, $1482 = 0, $1483 = 0; - var $1484 = 0, $1485 = 0, $1486 = 0, $1487 = 0, $1488 = 0, $1489 = 0, $149 = 0, $1490 = 0, $1491 = 0, $1492 = 0, $1493 = 0, $1494 = 0, $1495 = 0, $1496 = 0, $1497 = 0, $1498 = 0, $1499 = 0, $15 = 0, $150 = 0, $1500 = 0; - var $1501 = 0, $1502 = 0, $1503 = 0, $1504 = 0, $1505 = 0, $1506 = 0, $1507 = 0, $1508 = 0, $1509 = 0, $151 = 0, $1510 = 0, $1511 = 0, $1512 = 0, $1513 = 0, $1514 = 0, $1515 = 0, $1516 = 0, $1517 = 0, $1518 = 0, $1519 = 0; - var $152 = 0, $1520 = 0, $1521 = 0, $1522 = 0, $1523 = 0, $1524 = 0, $1525 = 0, $1526 = 0, $1527 = 0, $1528 = 0, $1529 = 0, $153 = 0, $1530 = 0, $1531 = 0, $1532 = 0, $1533 = 0, $1534 = 0, $1535 = 0, $1536 = 0, $1537 = 0; - var $1538 = 0, $1539 = 0, $154 = 0, $1540 = 0, $1541 = 0, $1542 = 0, $1543 = 0, $1544 = 0, $1545 = 0, $1546 = 0, $1547 = 0, $1548 = 0, $1549 = 0, $155 = 0, $1550 = 0, $1551 = 0, $1552 = 0, $1553 = 0, $1554 = 0, $1555 = 0; - var $1556 = 0, $1557 = 0, $1558 = 0, $1559 = 0, $156 = 0, $1560 = 0, $1561 = 0, $1562 = 0, $1563 = 0, $1564 = 0, $1565 = 0, $1566 = 0, $1567 = 0, $1568 = 0, $1569 = 0, $157 = 0, $1570 = 0, $1571 = 0, $1572 = 0, $1573 = 0; - var $1574 = 0, $1575 = 0, $1576 = 0, $1577 = 0, $1578 = 0, $1579 = 0, $158 = 0, $1580 = 0, $1581 = 0, $1582 = 0, $1583 = 0, $1584 = 0, $1585 = 0, $1586 = 0, $1587 = 0, $1588 = 0, $1589 = 0, $159 = 0, $1590 = 0, $1591 = 0; - var $1592 = 0, $1593 = 0, $1594 = 0, $1595 = 0, $1596 = 0, $1597 = 0, $1598 = 0, $1599 = 0, $16 = 0, $160 = 0, $1600 = 0, $1601 = 0, $1602 = 0, $1603 = 0, $1604 = 0, $1605 = 0, $1606 = 0, $1607 = 0, $1608 = 0, $1609 = 0; - var $161 = 0, $1610 = 0, $1611 = 0, $1612 = 0, $1613 = 0, $1614 = 0, $1615 = 0, $1616 = 0, $1617 = 0, $1618 = 0, $1619 = 0, $162 = 0, $1620 = 0, $1621 = 0, $1622 = 0, $1623 = 0, $1624 = 0, $1625 = 0, $1626 = 0, $1627 = 0; - var $1628 = 0, $1629 = 0, $163 = 0, $1630 = 0, $1631 = 0, $1632 = 0, $1633 = 0, $1634 = 0, $1635 = 0, $1636 = 0, $1637 = 0, $1638 = 0, $1639 = 0, $164 = 0, $1640 = 0, $1641 = 0, $1642 = 0, $1643 = 0, $1644 = 0, $1645 = 0; - var $1646 = 0, $1647 = 0, $1648 = 0, $1649 = 0, $165 = 0, $1650 = 0, $1651 = 0, $1652 = 0, $1653 = 0, $1654 = 0, $1655 = 0, $1656 = 0, $1657 = 0, $1658 = 0, $1659 = 0, $166 = 0, $1660 = 0, $1661 = 0, $1662 = 0, $1663 = 0; - var $1664 = 0, $1665 = 0, $1666 = 0, $1667 = 0, $1668 = 0, $1669 = 0, $167 = 0, $1670 = 0, $1671 = 0, $1672 = 0, $1673 = 0, $1674 = 0, $1675 = 0, $1676 = 0, $1677 = 0, $1678 = 0, $1679 = 0, $168 = 0, $1680 = 0, $1681 = 0; - var $1682 = 0, $1683 = 0, $1684 = 0, $1685 = 0, $1686 = 0, $1687 = 0, $1688 = 0, $1689 = 0, $169 = 0, $1690 = 0, $1691 = 0, $1692 = 0, $1693 = 0, $1694 = 0, $1695 = 0, $1696 = 0, $1697 = 0, $1698 = 0, $1699 = 0, $17 = 0; - var $170 = 0, $1700 = 0, $1701 = 0, $1702 = 0, $1703 = 0, $1704 = 0, $1705 = 0, $1706 = 0, $1707 = 0, $1708 = 0, $1709 = 0, $171 = 0, $1710 = 0, $1711 = 0, $1712 = 0, $1713 = 0, $1714 = 0, $1715 = 0, $1716 = 0, $1717 = 0; - var $1718 = 0, $1719 = 0, $172 = 0, $1720 = 0, $1721 = 0, $1722 = 0, $1723 = 0, $1724 = 0, $1725 = 0, $1726 = 0, $1727 = 0, $1728 = 0, $1729 = 0, $173 = 0, $1730 = 0, $1731 = 0, $1732 = 0, $1733 = 0, $1734 = 0, $1735 = 0; - var $1736 = 0, $1737 = 0, $1738 = 0, $1739 = 0, $174 = 0, $1740 = 0, $1741 = 0, $1742 = 0, $1743 = 0, $1744 = 0, $1745 = 0, $1746 = 0, $1747 = 0, $1748 = 0, $1749 = 0, $175 = 0, $1750 = 0, $1751 = 0, $1752 = 0, $1753 = 0; - var $1754 = 0, $1755 = 0, $1756 = 0, $1757 = 0, $1758 = 0, $1759 = 0, $176 = 0, $1760 = 0, $1761 = 0, $1762 = 0, $1763 = 0, $1764 = 0, $1765 = 0, $1766 = 0, $1767 = 0, $1768 = 0, $1769 = 0, $177 = 0, $1770 = 0, $1771 = 0; - var $1772 = 0, $1773 = 0, $1774 = 0, $1775 = 0, $1776 = 0, $1777 = 0, $1778 = 0, $1779 = 0, $178 = 0, $1780 = 0, $1781 = 0, $1782 = 0, $1783 = 0, $1784 = 0, $1785 = 0, $1786 = 0, $1787 = 0, $1788 = 0, $1789 = 0, $179 = 0; - var $1790 = 0, $1791 = 0, $1792 = 0, $1793 = 0, $1794 = 0, $1795 = 0, $1796 = 0, $1797 = 0, $1798 = 0, $1799 = 0, $18 = 0, $180 = 0, $1800 = 0, $1801 = 0, $1802 = 0, $1803 = 0, $1804 = 0, $1805 = 0, $1806 = 0, $1807 = 0; - var $1808 = 0, $1809 = 0, $181 = 0, $1810 = 0, $1811 = 0, $1812 = 0, $1813 = 0, $1814 = 0, $1815 = 0, $1816 = 0, $1817 = 0, $1818 = 0, $1819 = 0, $182 = 0, $1820 = 0, $1821 = 0, $1822 = 0, $1823 = 0, $1824 = 0, $1825 = 0; - var $1826 = 0, $1827 = 0, $1828 = 0, $1829 = 0, $183 = 0, $1830 = 0, $1831 = 0, $1832 = 0, $1833 = 0, $1834 = 0, $1835 = 0, $1836 = 0, $1837 = 0, $1838 = 0, $1839 = 0, $184 = 0, $1840 = 0, $1841 = 0, $1842 = 0, $1843 = 0; - var $1844 = 0, $1845 = 0, $1846 = 0, $1847 = 0, $1848 = 0, $1849 = 0, $185 = 0, $1850 = 0, $1851 = 0, $1852 = 0, $1853 = 0, $1854 = 0, $1855 = 0, $1856 = 0, $1857 = 0, $1858 = 0, $1859 = 0, $186 = 0, $1860 = 0, $1861 = 0; - var $1862 = 0, $1863 = 0, $1864 = 0, $1865 = 0, $1866 = 0, $1867 = 0, $1868 = 0, $1869 = 0, $187 = 0, $1870 = 0, $1871 = 0, $1872 = 0, $1873 = 0, $1874 = 0, $1875 = 0, $1876 = 0, $1877 = 0, $1878 = 0, $188 = 0, $189 = 0; - var $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0; - var $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0; - var $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0; - var $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0; - var $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0; - var $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0; - var $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0; - var $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0; - var $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0; - var $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0; - var $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0; - var $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0; - var $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0; - var $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0; - var $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0; - var $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0; - var $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0; - var $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0; - var $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0; - var $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0; - var $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0; - var $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0; - var $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0; - var $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0; - var $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0; - var $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0; - var $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0; - var $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0; - var $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0; - var $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0; - var $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0; - var $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0; - var $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0; - var $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0; - var $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0; - var $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0; - var $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0; - var $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0; - var $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0; - var $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0; - var $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0; - var $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0; - var $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0; - var $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0; - var $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, label = 0; - var sp = 0; +function _fproduct($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0, $1015 = 0, $1016 = 0; + var $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0, $1033 = 0, $1034 = 0; + var $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0, $1051 = 0, $1052 = 0; + var $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0, $107 = 0, $1070 = 0; + var $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0, $1088 = 0, $1089 = 0; + var $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0, $1105 = 0, $1106 = 0; + var $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $1119 = 0, $112 = 0, $1120 = 0, $1121 = 0, $1122 = 0, $1123 = 0, $1124 = 0; + var $1125 = 0, $1126 = 0, $1127 = 0, $1128 = 0, $1129 = 0, $113 = 0, $1130 = 0, $1131 = 0, $1132 = 0, $1133 = 0, $1134 = 0, $1135 = 0, $1136 = 0, $1137 = 0, $1138 = 0, $1139 = 0, $114 = 0, $1140 = 0, $1141 = 0, $1142 = 0; + var $1143 = 0, $1144 = 0, $1145 = 0, $1146 = 0, $1147 = 0, $1148 = 0, $1149 = 0, $115 = 0, $1150 = 0, $1151 = 0, $1152 = 0, $1153 = 0, $1154 = 0, $1155 = 0, $1156 = 0, $1157 = 0, $1158 = 0, $1159 = 0, $116 = 0, $1160 = 0; + var $1161 = 0, $1162 = 0, $1163 = 0, $1164 = 0, $1165 = 0, $1166 = 0, $1167 = 0, $1168 = 0, $1169 = 0, $117 = 0, $1170 = 0, $1171 = 0, $1172 = 0, $1173 = 0, $1174 = 0, $1175 = 0, $1176 = 0, $1177 = 0, $1178 = 0, $1179 = 0; + var $118 = 0, $1180 = 0, $1181 = 0, $1182 = 0, $1183 = 0, $1184 = 0, $1185 = 0, $1186 = 0, $1187 = 0, $1188 = 0, $1189 = 0, $119 = 0, $1190 = 0, $1191 = 0, $1192 = 0, $1193 = 0, $1194 = 0, $1195 = 0, $1196 = 0, $1197 = 0; + var $1198 = 0, $1199 = 0, $12 = 0, $120 = 0, $1200 = 0, $1201 = 0, $1202 = 0, $1203 = 0, $1204 = 0, $1205 = 0, $1206 = 0, $1207 = 0, $1208 = 0, $1209 = 0, $121 = 0, $1210 = 0, $1211 = 0, $1212 = 0, $1213 = 0, $1214 = 0; + var $1215 = 0, $1216 = 0, $1217 = 0, $1218 = 0, $1219 = 0, $122 = 0, $1220 = 0, $1221 = 0, $1222 = 0, $1223 = 0, $1224 = 0, $1225 = 0, $1226 = 0, $1227 = 0, $1228 = 0, $1229 = 0, $123 = 0, $1230 = 0, $1231 = 0, $1232 = 0; + var $1233 = 0, $1234 = 0, $1235 = 0, $1236 = 0, $1237 = 0, $1238 = 0, $1239 = 0, $124 = 0, $1240 = 0, $1241 = 0, $1242 = 0, $1243 = 0, $1244 = 0, $1245 = 0, $1246 = 0, $1247 = 0, $1248 = 0, $1249 = 0, $125 = 0, $1250 = 0; + var $1251 = 0, $1252 = 0, $1253 = 0, $1254 = 0, $1255 = 0, $1256 = 0, $1257 = 0, $1258 = 0, $1259 = 0, $126 = 0, $1260 = 0, $1261 = 0, $1262 = 0, $1263 = 0, $1264 = 0, $1265 = 0, $1266 = 0, $1267 = 0, $1268 = 0, $1269 = 0; + var $127 = 0, $1270 = 0, $1271 = 0, $1272 = 0, $1273 = 0, $1274 = 0, $1275 = 0, $1276 = 0, $1277 = 0, $1278 = 0, $1279 = 0, $128 = 0, $1280 = 0, $1281 = 0, $1282 = 0, $1283 = 0, $1284 = 0, $1285 = 0, $1286 = 0, $1287 = 0; + var $1288 = 0, $1289 = 0, $129 = 0, $1290 = 0, $1291 = 0, $1292 = 0, $1293 = 0, $1294 = 0, $1295 = 0, $1296 = 0, $1297 = 0, $1298 = 0, $1299 = 0, $13 = 0, $130 = 0, $1300 = 0, $1301 = 0, $1302 = 0, $1303 = 0, $1304 = 0; + var $1305 = 0, $1306 = 0, $1307 = 0, $1308 = 0, $1309 = 0, $131 = 0, $1310 = 0, $1311 = 0, $1312 = 0, $1313 = 0, $1314 = 0, $1315 = 0, $1316 = 0, $1317 = 0, $1318 = 0, $1319 = 0, $132 = 0, $1320 = 0, $1321 = 0, $1322 = 0; + var $1323 = 0, $1324 = 0, $1325 = 0, $1326 = 0, $1327 = 0, $1328 = 0, $1329 = 0, $133 = 0, $1330 = 0, $1331 = 0, $1332 = 0, $1333 = 0, $1334 = 0, $1335 = 0, $1336 = 0, $1337 = 0, $1338 = 0, $1339 = 0, $134 = 0, $1340 = 0; + var $1341 = 0, $1342 = 0, $1343 = 0, $1344 = 0, $1345 = 0, $1346 = 0, $1347 = 0, $1348 = 0, $1349 = 0, $135 = 0, $1350 = 0, $1351 = 0, $1352 = 0, $1353 = 0, $1354 = 0, $1355 = 0, $1356 = 0, $1357 = 0, $1358 = 0, $1359 = 0; + var $136 = 0, $1360 = 0, $1361 = 0, $1362 = 0, $1363 = 0, $1364 = 0, $1365 = 0, $1366 = 0, $1367 = 0, $1368 = 0, $1369 = 0, $137 = 0, $1370 = 0, $1371 = 0, $1372 = 0, $1373 = 0, $1374 = 0, $1375 = 0, $1376 = 0, $1377 = 0; + var $1378 = 0, $1379 = 0, $138 = 0, $1380 = 0, $1381 = 0, $1382 = 0, $1383 = 0, $1384 = 0, $1385 = 0, $1386 = 0, $1387 = 0, $1388 = 0, $1389 = 0, $139 = 0, $1390 = 0, $1391 = 0, $1392 = 0, $1393 = 0, $1394 = 0, $1395 = 0; + var $1396 = 0, $1397 = 0, $1398 = 0, $1399 = 0, $14 = 0, $140 = 0, $1400 = 0, $1401 = 0, $1402 = 0, $1403 = 0, $1404 = 0, $1405 = 0, $1406 = 0, $1407 = 0, $1408 = 0, $1409 = 0, $141 = 0, $1410 = 0, $1411 = 0, $1412 = 0; + var $1413 = 0, $1414 = 0, $1415 = 0, $1416 = 0, $1417 = 0, $1418 = 0, $1419 = 0, $142 = 0, $1420 = 0, $1421 = 0, $1422 = 0, $1423 = 0, $1424 = 0, $1425 = 0, $1426 = 0, $1427 = 0, $1428 = 0, $1429 = 0, $143 = 0, $1430 = 0; + var $1431 = 0, $1432 = 0, $1433 = 0, $1434 = 0, $1435 = 0, $1436 = 0, $1437 = 0, $1438 = 0, $1439 = 0, $144 = 0, $1440 = 0, $1441 = 0, $1442 = 0, $1443 = 0, $1444 = 0, $1445 = 0, $1446 = 0, $1447 = 0, $1448 = 0, $1449 = 0; + var $145 = 0, $1450 = 0, $1451 = 0, $1452 = 0, $1453 = 0, $1454 = 0, $1455 = 0, $1456 = 0, $1457 = 0, $1458 = 0, $1459 = 0, $146 = 0, $1460 = 0, $1461 = 0, $1462 = 0, $1463 = 0, $1464 = 0, $1465 = 0, $1466 = 0, $1467 = 0; + var $1468 = 0, $1469 = 0, $147 = 0, $1470 = 0, $1471 = 0, $1472 = 0, $1473 = 0, $1474 = 0, $1475 = 0, $1476 = 0, $1477 = 0, $1478 = 0, $1479 = 0, $148 = 0, $1480 = 0, $1481 = 0, $1482 = 0, $1483 = 0, $1484 = 0, $1485 = 0; + var $1486 = 0, $1487 = 0, $1488 = 0, $1489 = 0, $149 = 0, $1490 = 0, $1491 = 0, $1492 = 0, $1493 = 0, $1494 = 0, $1495 = 0, $1496 = 0, $1497 = 0, $1498 = 0, $1499 = 0, $15 = 0, $150 = 0, $1500 = 0, $1501 = 0, $1502 = 0; + var $1503 = 0, $1504 = 0, $1505 = 0, $1506 = 0, $1507 = 0, $1508 = 0, $1509 = 0, $151 = 0, $1510 = 0, $1511 = 0, $1512 = 0, $1513 = 0, $1514 = 0, $1515 = 0, $1516 = 0, $1517 = 0, $1518 = 0, $1519 = 0, $152 = 0, $1520 = 0; + var $1521 = 0, $1522 = 0, $1523 = 0, $1524 = 0, $1525 = 0, $1526 = 0, $1527 = 0, $1528 = 0, $1529 = 0, $153 = 0, $1530 = 0, $1531 = 0, $1532 = 0, $1533 = 0, $1534 = 0, $1535 = 0, $1536 = 0, $1537 = 0, $1538 = 0, $1539 = 0; + var $154 = 0, $1540 = 0, $1541 = 0, $1542 = 0, $1543 = 0, $1544 = 0, $1545 = 0, $1546 = 0, $1547 = 0, $1548 = 0, $1549 = 0, $155 = 0, $1550 = 0, $1551 = 0, $1552 = 0, $1553 = 0, $1554 = 0, $1555 = 0, $1556 = 0, $1557 = 0; + var $1558 = 0, $1559 = 0, $156 = 0, $1560 = 0, $1561 = 0, $1562 = 0, $1563 = 0, $1564 = 0, $1565 = 0, $1566 = 0, $1567 = 0, $1568 = 0, $1569 = 0, $157 = 0, $1570 = 0, $1571 = 0, $1572 = 0, $1573 = 0, $1574 = 0, $1575 = 0; + var $1576 = 0, $1577 = 0, $1578 = 0, $1579 = 0, $158 = 0, $1580 = 0, $1581 = 0, $1582 = 0, $1583 = 0, $1584 = 0, $1585 = 0, $1586 = 0, $1587 = 0, $1588 = 0, $1589 = 0, $159 = 0, $1590 = 0, $1591 = 0, $1592 = 0, $1593 = 0; + var $1594 = 0, $1595 = 0, $1596 = 0, $1597 = 0, $1598 = 0, $1599 = 0, $16 = 0, $160 = 0, $1600 = 0, $1601 = 0, $1602 = 0, $1603 = 0, $1604 = 0, $1605 = 0, $1606 = 0, $1607 = 0, $1608 = 0, $1609 = 0, $161 = 0, $1610 = 0; + var $1611 = 0, $1612 = 0, $1613 = 0, $1614 = 0, $1615 = 0, $1616 = 0, $1617 = 0, $1618 = 0, $1619 = 0, $162 = 0, $1620 = 0, $1621 = 0, $1622 = 0, $1623 = 0, $1624 = 0, $1625 = 0, $1626 = 0, $1627 = 0, $1628 = 0, $1629 = 0; + var $163 = 0, $1630 = 0, $1631 = 0, $1632 = 0, $1633 = 0, $1634 = 0, $1635 = 0, $1636 = 0, $1637 = 0, $1638 = 0, $1639 = 0, $164 = 0, $1640 = 0, $1641 = 0, $1642 = 0, $1643 = 0, $1644 = 0, $1645 = 0, $1646 = 0, $1647 = 0; + var $1648 = 0, $1649 = 0, $165 = 0, $1650 = 0, $1651 = 0, $1652 = 0, $1653 = 0, $1654 = 0, $1655 = 0, $1656 = 0, $1657 = 0, $1658 = 0, $1659 = 0, $166 = 0, $1660 = 0, $1661 = 0, $1662 = 0, $1663 = 0, $1664 = 0, $1665 = 0; + var $1666 = 0, $1667 = 0, $1668 = 0, $1669 = 0, $167 = 0, $1670 = 0, $1671 = 0, $1672 = 0, $1673 = 0, $1674 = 0, $1675 = 0, $1676 = 0, $1677 = 0, $1678 = 0, $1679 = 0, $168 = 0, $1680 = 0, $1681 = 0, $1682 = 0, $1683 = 0; + var $1684 = 0, $1685 = 0, $1686 = 0, $1687 = 0, $1688 = 0, $1689 = 0, $169 = 0, $1690 = 0, $1691 = 0, $1692 = 0, $1693 = 0, $1694 = 0, $1695 = 0, $1696 = 0, $1697 = 0, $1698 = 0, $1699 = 0, $17 = 0, $170 = 0, $1700 = 0; + var $1701 = 0, $1702 = 0, $1703 = 0, $1704 = 0, $1705 = 0, $1706 = 0, $1707 = 0, $1708 = 0, $1709 = 0, $171 = 0, $1710 = 0, $1711 = 0, $1712 = 0, $1713 = 0, $1714 = 0, $1715 = 0, $1716 = 0, $1717 = 0, $1718 = 0, $1719 = 0; + var $172 = 0, $1720 = 0, $1721 = 0, $1722 = 0, $1723 = 0, $1724 = 0, $1725 = 0, $1726 = 0, $1727 = 0, $1728 = 0, $1729 = 0, $173 = 0, $1730 = 0, $1731 = 0, $1732 = 0, $1733 = 0, $1734 = 0, $1735 = 0, $1736 = 0, $1737 = 0; + var $1738 = 0, $1739 = 0, $174 = 0, $1740 = 0, $1741 = 0, $1742 = 0, $1743 = 0, $1744 = 0, $1745 = 0, $1746 = 0, $1747 = 0, $1748 = 0, $1749 = 0, $175 = 0, $1750 = 0, $1751 = 0, $1752 = 0, $1753 = 0, $1754 = 0, $1755 = 0; + var $1756 = 0, $1757 = 0, $1758 = 0, $1759 = 0, $176 = 0, $1760 = 0, $1761 = 0, $1762 = 0, $1763 = 0, $1764 = 0, $1765 = 0, $1766 = 0, $1767 = 0, $1768 = 0, $1769 = 0, $177 = 0, $1770 = 0, $1771 = 0, $1772 = 0, $1773 = 0; + var $1774 = 0, $1775 = 0, $1776 = 0, $1777 = 0, $1778 = 0, $1779 = 0, $178 = 0, $1780 = 0, $1781 = 0, $1782 = 0, $1783 = 0, $1784 = 0, $1785 = 0, $1786 = 0, $1787 = 0, $1788 = 0, $1789 = 0, $179 = 0, $1790 = 0, $1791 = 0; + var $1792 = 0, $1793 = 0, $1794 = 0, $1795 = 0, $1796 = 0, $1797 = 0, $1798 = 0, $1799 = 0, $18 = 0, $180 = 0, $1800 = 0, $1801 = 0, $1802 = 0, $1803 = 0, $1804 = 0, $1805 = 0, $1806 = 0, $1807 = 0, $1808 = 0, $1809 = 0; + var $181 = 0, $1810 = 0, $1811 = 0, $1812 = 0, $1813 = 0, $1814 = 0, $1815 = 0, $1816 = 0, $1817 = 0, $1818 = 0, $1819 = 0, $182 = 0, $1820 = 0, $1821 = 0, $1822 = 0, $1823 = 0, $1824 = 0, $1825 = 0, $1826 = 0, $1827 = 0; + var $1828 = 0, $1829 = 0, $183 = 0, $1830 = 0, $1831 = 0, $1832 = 0, $1833 = 0, $1834 = 0, $1835 = 0, $1836 = 0, $1837 = 0, $1838 = 0, $1839 = 0, $184 = 0, $1840 = 0, $1841 = 0, $1842 = 0, $1843 = 0, $1844 = 0, $1845 = 0; + var $1846 = 0, $1847 = 0, $1848 = 0, $1849 = 0, $185 = 0, $1850 = 0, $1851 = 0, $1852 = 0, $1853 = 0, $1854 = 0, $1855 = 0, $1856 = 0, $1857 = 0, $1858 = 0, $1859 = 0, $186 = 0, $1860 = 0, $1861 = 0, $1862 = 0, $1863 = 0; + var $1864 = 0, $1865 = 0, $1866 = 0, $1867 = 0, $1868 = 0, $1869 = 0, $187 = 0, $1870 = 0, $1871 = 0, $1872 = 0, $1873 = 0, $1874 = 0, $1875 = 0, $1876 = 0, $1877 = 0, $1878 = 0, $1879 = 0, $188 = 0, $1880 = 0, $1881 = 0; + var $1882 = 0, $1883 = 0, $1884 = 0, $1885 = 0, $1886 = 0, $1887 = 0, $1888 = 0, $1889 = 0, $189 = 0, $1890 = 0, $1891 = 0, $1892 = 0, $1893 = 0, $1894 = 0, $1895 = 0, $1896 = 0, $1897 = 0, $1898 = 0, $1899 = 0, $19 = 0; + var $190 = 0, $1900 = 0, $1901 = 0, $1902 = 0, $1903 = 0, $1904 = 0, $1905 = 0, $1906 = 0, $1907 = 0, $1908 = 0, $1909 = 0, $191 = 0, $1910 = 0, $1911 = 0, $1912 = 0, $1913 = 0, $1914 = 0, $1915 = 0, $1916 = 0, $1917 = 0; + var $1918 = 0, $1919 = 0, $192 = 0, $1920 = 0, $1921 = 0, $1922 = 0, $1923 = 0, $1924 = 0, $1925 = 0, $1926 = 0, $1927 = 0, $1928 = 0, $1929 = 0, $193 = 0, $1930 = 0, $1931 = 0, $1932 = 0, $1933 = 0, $1934 = 0, $1935 = 0; + var $1936 = 0, $1937 = 0, $1938 = 0, $1939 = 0, $194 = 0, $1940 = 0, $1941 = 0, $1942 = 0, $1943 = 0, $1944 = 0, $1945 = 0, $1946 = 0, $1947 = 0, $1948 = 0, $1949 = 0, $195 = 0, $1950 = 0, $1951 = 0, $1952 = 0, $1953 = 0; + var $1954 = 0, $1955 = 0, $1956 = 0, $1957 = 0, $1958 = 0, $1959 = 0, $196 = 0, $1960 = 0, $1961 = 0, $1962 = 0, $1963 = 0, $1964 = 0, $1965 = 0, $1966 = 0, $1967 = 0, $1968 = 0, $1969 = 0, $197 = 0, $1970 = 0, $1971 = 0; + var $1972 = 0, $1973 = 0, $1974 = 0, $1975 = 0, $1976 = 0, $1977 = 0, $1978 = 0, $1979 = 0, $198 = 0, $1980 = 0, $1981 = 0, $1982 = 0, $1983 = 0, $1984 = 0, $1985 = 0, $1986 = 0, $1987 = 0, $1988 = 0, $1989 = 0, $199 = 0; + var $1990 = 0, $1991 = 0, $1992 = 0, $1993 = 0, $1994 = 0, $1995 = 0, $1996 = 0, $1997 = 0, $1998 = 0, $1999 = 0, $20 = 0, $200 = 0, $2000 = 0, $2001 = 0, $2002 = 0, $2003 = 0, $2004 = 0, $2005 = 0, $2006 = 0, $2007 = 0; + var $2008 = 0, $2009 = 0, $201 = 0, $2010 = 0, $2011 = 0, $2012 = 0, $2013 = 0, $2014 = 0, $2015 = 0, $2016 = 0, $2017 = 0, $2018 = 0, $2019 = 0, $202 = 0, $2020 = 0, $2021 = 0, $2022 = 0, $2023 = 0, $2024 = 0, $2025 = 0; + var $2026 = 0, $2027 = 0, $2028 = 0, $2029 = 0, $203 = 0, $2030 = 0, $2031 = 0, $2032 = 0, $2033 = 0, $2034 = 0, $2035 = 0, $2036 = 0, $2037 = 0, $2038 = 0, $2039 = 0, $204 = 0, $2040 = 0, $2041 = 0, $2042 = 0, $2043 = 0; + var $2044 = 0, $2045 = 0, $2046 = 0, $2047 = 0, $2048 = 0, $2049 = 0, $205 = 0, $2050 = 0, $2051 = 0, $2052 = 0, $2053 = 0, $2054 = 0, $2055 = 0, $2056 = 0, $2057 = 0, $2058 = 0, $2059 = 0, $206 = 0, $2060 = 0, $2061 = 0; + var $2062 = 0, $2063 = 0, $2064 = 0, $2065 = 0, $2066 = 0, $2067 = 0, $2068 = 0, $2069 = 0, $207 = 0, $2070 = 0, $2071 = 0, $2072 = 0, $2073 = 0, $2074 = 0, $2075 = 0, $2076 = 0, $2077 = 0, $2078 = 0, $2079 = 0, $208 = 0; + var $2080 = 0, $2081 = 0, $2082 = 0, $2083 = 0, $2084 = 0, $2085 = 0, $2086 = 0, $2087 = 0, $2088 = 0, $2089 = 0, $209 = 0, $2090 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0; + var $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0; + var $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0; + var $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0; + var $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0; + var $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0; + var $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0; + var $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0; + var $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0; + var $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0; + var $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0; + var $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0; + var $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0; + var $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0; + var $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0; + var $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0; + var $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0; + var $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0; + var $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0; + var $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0; + var $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0; + var $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0; + var $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0; + var $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0; + var $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0; + var $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0; + var $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0; + var $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0; + var $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0; + var $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0; + var $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0; + var $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0; + var $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0; + var $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0; + var $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0; + var $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0; + var $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0; + var $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0; + var $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0; + var $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0; + var $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0; + var $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0; + var $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0, $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0; + var $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0; + var $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = (_load_347($a)|0); - $1 = tempRet0; - $2 = $0 & 2097151; - $3 = ((($a)) + 2|0); - $4 = (_load_448($3)|0); - $5 = tempRet0; - $6 = (_bitshift64Lshr(($4|0),($5|0),5)|0); - $7 = tempRet0; - $8 = $6 & 2097151; - $9 = ((($a)) + 5|0); - $10 = (_load_347($9)|0); - $11 = tempRet0; - $12 = (_bitshift64Lshr(($10|0),($11|0),2)|0); - $13 = tempRet0; - $14 = $12 & 2097151; - $15 = ((($a)) + 7|0); - $16 = (_load_448($15)|0); - $17 = tempRet0; - $18 = (_bitshift64Lshr(($16|0),($17|0),7)|0); - $19 = tempRet0; - $20 = $18 & 2097151; - $21 = ((($a)) + 10|0); - $22 = (_load_448($21)|0); - $23 = tempRet0; - $24 = (_bitshift64Lshr(($22|0),($23|0),4)|0); - $25 = tempRet0; - $26 = $24 & 2097151; - $27 = ((($a)) + 13|0); - $28 = (_load_347($27)|0); - $29 = tempRet0; - $30 = (_bitshift64Lshr(($28|0),($29|0),1)|0); - $31 = tempRet0; - $32 = $30 & 2097151; - $33 = ((($a)) + 15|0); - $34 = (_load_448($33)|0); - $35 = tempRet0; - $36 = (_bitshift64Lshr(($34|0),($35|0),6)|0); - $37 = tempRet0; - $38 = $36 & 2097151; - $39 = ((($a)) + 18|0); - $40 = (_load_347($39)|0); + $3 = $1; + $4 = $3; + $5 = HEAP32[$4>>2]|0; + $6 = (($3) + 4)|0; + $7 = $6; + $8 = HEAP32[$7>>2]|0; + $9 = (_bitshift64Ashr(0,($5|0),32)|0); + $10 = tempRet0; + $11 = $2; + $12 = $11; + $13 = HEAP32[$12>>2]|0; + $14 = (($11) + 4)|0; + $15 = $14; + $16 = HEAP32[$15>>2]|0; + $17 = (_bitshift64Ashr(0,($13|0),32)|0); + $18 = tempRet0; + $19 = (___muldi3(($17|0),($18|0),($9|0),($10|0))|0); + $20 = tempRet0; + $21 = $0; + $22 = $21; + HEAP32[$22>>2] = $19; + $23 = (($21) + 4)|0; + $24 = $23; + HEAP32[$24>>2] = $20; + $25 = $1; + $26 = $25; + $27 = HEAP32[$26>>2]|0; + $28 = (($25) + 4)|0; + $29 = $28; + $30 = HEAP32[$29>>2]|0; + $31 = (_bitshift64Ashr(0,($27|0),32)|0); + $32 = tempRet0; + $33 = ((($2)) + 8|0); + $34 = $33; + $35 = $34; + $36 = HEAP32[$35>>2]|0; + $37 = (($34) + 4)|0; + $38 = $37; + $39 = HEAP32[$38>>2]|0; + $40 = (_bitshift64Ashr(0,($36|0),32)|0); $41 = tempRet0; - $42 = (_bitshift64Lshr(($40|0),($41|0),3)|0); + $42 = (___muldi3(($40|0),($41|0),($31|0),($32|0))|0); $43 = tempRet0; - $44 = $42 & 2097151; - $45 = ((($a)) + 21|0); - $46 = (_load_347($45)|0); - $47 = tempRet0; - $48 = $46 & 2097151; - $49 = ((($a)) + 23|0); - $50 = (_load_448($49)|0); - $51 = tempRet0; - $52 = (_bitshift64Lshr(($50|0),($51|0),5)|0); - $53 = tempRet0; - $54 = $52 & 2097151; - $55 = ((($a)) + 26|0); - $56 = (_load_347($55)|0); - $57 = tempRet0; - $58 = (_bitshift64Lshr(($56|0),($57|0),2)|0); - $59 = tempRet0; - $60 = $58 & 2097151; - $61 = ((($a)) + 28|0); - $62 = (_load_448($61)|0); - $63 = tempRet0; - $64 = (_bitshift64Lshr(($62|0),($63|0),7)|0); - $65 = tempRet0; - $66 = (_load_347($b)|0); - $67 = tempRet0; - $68 = $66 & 2097151; - $69 = ((($b)) + 2|0); - $70 = (_load_448($69)|0); - $71 = tempRet0; - $72 = (_bitshift64Lshr(($70|0),($71|0),5)|0); - $73 = tempRet0; - $74 = $72 & 2097151; - $75 = ((($b)) + 5|0); - $76 = (_load_347($75)|0); + $44 = ((($1)) + 8|0); + $45 = $44; + $46 = $45; + $47 = HEAP32[$46>>2]|0; + $48 = (($45) + 4)|0; + $49 = $48; + $50 = HEAP32[$49>>2]|0; + $51 = (_bitshift64Ashr(0,($47|0),32)|0); + $52 = tempRet0; + $53 = $2; + $54 = $53; + $55 = HEAP32[$54>>2]|0; + $56 = (($53) + 4)|0; + $57 = $56; + $58 = HEAP32[$57>>2]|0; + $59 = (_bitshift64Ashr(0,($55|0),32)|0); + $60 = tempRet0; + $61 = (___muldi3(($59|0),($60|0),($51|0),($52|0))|0); + $62 = tempRet0; + $63 = (_i64Add(($61|0),($62|0),($42|0),($43|0))|0); + $64 = tempRet0; + $65 = ((($0)) + 8|0); + $66 = $65; + $67 = $66; + HEAP32[$67>>2] = $63; + $68 = (($66) + 4)|0; + $69 = $68; + HEAP32[$69>>2] = $64; + $70 = $44; + $71 = $70; + $72 = HEAP32[$71>>2]|0; + $73 = (($70) + 4)|0; + $74 = $73; + $75 = HEAP32[$74>>2]|0; + $76 = (_bitshift64Ashr(0,($72|0),31)|0); $77 = tempRet0; - $78 = (_bitshift64Lshr(($76|0),($77|0),2)|0); - $79 = tempRet0; - $80 = $78 & 2097151; - $81 = ((($b)) + 7|0); - $82 = (_load_448($81)|0); - $83 = tempRet0; - $84 = (_bitshift64Lshr(($82|0),($83|0),7)|0); + $78 = $33; + $79 = $78; + $80 = HEAP32[$79>>2]|0; + $81 = (($78) + 4)|0; + $82 = $81; + $83 = HEAP32[$82>>2]|0; + $84 = (_bitshift64Ashr(0,($80|0),32)|0); $85 = tempRet0; - $86 = $84 & 2097151; - $87 = ((($b)) + 10|0); - $88 = (_load_448($87)|0); - $89 = tempRet0; - $90 = (_bitshift64Lshr(($88|0),($89|0),4)|0); - $91 = tempRet0; - $92 = $90 & 2097151; - $93 = ((($b)) + 13|0); - $94 = (_load_347($93)|0); + $86 = (___muldi3(($84|0),($85|0),($76|0),($77|0))|0); + $87 = tempRet0; + $88 = $1; + $89 = $88; + $90 = HEAP32[$89>>2]|0; + $91 = (($88) + 4)|0; + $92 = $91; + $93 = HEAP32[$92>>2]|0; + $94 = (_bitshift64Ashr(0,($90|0),32)|0); $95 = tempRet0; - $96 = (_bitshift64Lshr(($94|0),($95|0),1)|0); - $97 = tempRet0; - $98 = $96 & 2097151; - $99 = ((($b)) + 15|0); - $100 = (_load_448($99)|0); - $101 = tempRet0; - $102 = (_bitshift64Lshr(($100|0),($101|0),6)|0); - $103 = tempRet0; - $104 = $102 & 2097151; - $105 = ((($b)) + 18|0); - $106 = (_load_347($105)|0); - $107 = tempRet0; - $108 = (_bitshift64Lshr(($106|0),($107|0),3)|0); - $109 = tempRet0; - $110 = $108 & 2097151; - $111 = ((($b)) + 21|0); - $112 = (_load_347($111)|0); - $113 = tempRet0; - $114 = $112 & 2097151; - $115 = ((($b)) + 23|0); - $116 = (_load_448($115)|0); + $96 = ((($2)) + 16|0); + $97 = $96; + $98 = $97; + $99 = HEAP32[$98>>2]|0; + $100 = (($97) + 4)|0; + $101 = $100; + $102 = HEAP32[$101>>2]|0; + $103 = (_bitshift64Ashr(0,($99|0),32)|0); + $104 = tempRet0; + $105 = (___muldi3(($103|0),($104|0),($94|0),($95|0))|0); + $106 = tempRet0; + $107 = (_i64Add(($105|0),($106|0),($86|0),($87|0))|0); + $108 = tempRet0; + $109 = ((($1)) + 16|0); + $110 = $109; + $111 = $110; + $112 = HEAP32[$111>>2]|0; + $113 = (($110) + 4)|0; + $114 = $113; + $115 = HEAP32[$114>>2]|0; + $116 = (_bitshift64Ashr(0,($112|0),32)|0); $117 = tempRet0; - $118 = (_bitshift64Lshr(($116|0),($117|0),5)|0); - $119 = tempRet0; - $120 = $118 & 2097151; - $121 = ((($b)) + 26|0); - $122 = (_load_347($121)|0); - $123 = tempRet0; - $124 = (_bitshift64Lshr(($122|0),($123|0),2)|0); + $118 = $2; + $119 = $118; + $120 = HEAP32[$119>>2]|0; + $121 = (($118) + 4)|0; + $122 = $121; + $123 = HEAP32[$122>>2]|0; + $124 = (_bitshift64Ashr(0,($120|0),32)|0); $125 = tempRet0; - $126 = $124 & 2097151; - $127 = ((($b)) + 28|0); - $128 = (_load_448($127)|0); + $126 = (___muldi3(($124|0),($125|0),($116|0),($117|0))|0); + $127 = tempRet0; + $128 = (_i64Add(($107|0),($108|0),($126|0),($127|0))|0); $129 = tempRet0; - $130 = (_bitshift64Lshr(($128|0),($129|0),7)|0); - $131 = tempRet0; - $132 = (_load_347($c)|0); - $133 = tempRet0; - $134 = $132 & 2097151; - $135 = ((($c)) + 2|0); - $136 = (_load_448($135)|0); - $137 = tempRet0; - $138 = (_bitshift64Lshr(($136|0),($137|0),5)|0); - $139 = tempRet0; - $140 = $138 & 2097151; - $141 = ((($c)) + 5|0); - $142 = (_load_347($141)|0); - $143 = tempRet0; - $144 = (_bitshift64Lshr(($142|0),($143|0),2)|0); - $145 = tempRet0; - $146 = $144 & 2097151; - $147 = ((($c)) + 7|0); - $148 = (_load_448($147)|0); - $149 = tempRet0; - $150 = (_bitshift64Lshr(($148|0),($149|0),7)|0); - $151 = tempRet0; - $152 = $150 & 2097151; - $153 = ((($c)) + 10|0); - $154 = (_load_448($153)|0); - $155 = tempRet0; - $156 = (_bitshift64Lshr(($154|0),($155|0),4)|0); - $157 = tempRet0; - $158 = $156 & 2097151; - $159 = ((($c)) + 13|0); - $160 = (_load_347($159)|0); - $161 = tempRet0; - $162 = (_bitshift64Lshr(($160|0),($161|0),1)|0); - $163 = tempRet0; - $164 = $162 & 2097151; - $165 = ((($c)) + 15|0); - $166 = (_load_448($165)|0); - $167 = tempRet0; - $168 = (_bitshift64Lshr(($166|0),($167|0),6)|0); - $169 = tempRet0; - $170 = $168 & 2097151; - $171 = ((($c)) + 18|0); - $172 = (_load_347($171)|0); - $173 = tempRet0; - $174 = (_bitshift64Lshr(($172|0),($173|0),3)|0); - $175 = tempRet0; - $176 = $174 & 2097151; - $177 = ((($c)) + 21|0); - $178 = (_load_347($177)|0); - $179 = tempRet0; - $180 = $178 & 2097151; - $181 = ((($c)) + 23|0); - $182 = (_load_448($181)|0); - $183 = tempRet0; - $184 = (_bitshift64Lshr(($182|0),($183|0),5)|0); - $185 = tempRet0; - $186 = $184 & 2097151; - $187 = ((($c)) + 26|0); - $188 = (_load_347($187)|0); + $130 = ((($0)) + 16|0); + $131 = $130; + $132 = $131; + HEAP32[$132>>2] = $128; + $133 = (($131) + 4)|0; + $134 = $133; + HEAP32[$134>>2] = $129; + $135 = $44; + $136 = $135; + $137 = HEAP32[$136>>2]|0; + $138 = (($135) + 4)|0; + $139 = $138; + $140 = HEAP32[$139>>2]|0; + $141 = (_bitshift64Ashr(0,($137|0),32)|0); + $142 = tempRet0; + $143 = $96; + $144 = $143; + $145 = HEAP32[$144>>2]|0; + $146 = (($143) + 4)|0; + $147 = $146; + $148 = HEAP32[$147>>2]|0; + $149 = (_bitshift64Ashr(0,($145|0),32)|0); + $150 = tempRet0; + $151 = (___muldi3(($149|0),($150|0),($141|0),($142|0))|0); + $152 = tempRet0; + $153 = $109; + $154 = $153; + $155 = HEAP32[$154>>2]|0; + $156 = (($153) + 4)|0; + $157 = $156; + $158 = HEAP32[$157>>2]|0; + $159 = (_bitshift64Ashr(0,($155|0),32)|0); + $160 = tempRet0; + $161 = $33; + $162 = $161; + $163 = HEAP32[$162>>2]|0; + $164 = (($161) + 4)|0; + $165 = $164; + $166 = HEAP32[$165>>2]|0; + $167 = (_bitshift64Ashr(0,($163|0),32)|0); + $168 = tempRet0; + $169 = (___muldi3(($167|0),($168|0),($159|0),($160|0))|0); + $170 = tempRet0; + $171 = (_i64Add(($169|0),($170|0),($151|0),($152|0))|0); + $172 = tempRet0; + $173 = $1; + $174 = $173; + $175 = HEAP32[$174>>2]|0; + $176 = (($173) + 4)|0; + $177 = $176; + $178 = HEAP32[$177>>2]|0; + $179 = (_bitshift64Ashr(0,($175|0),32)|0); + $180 = tempRet0; + $181 = ((($2)) + 24|0); + $182 = $181; + $183 = $182; + $184 = HEAP32[$183>>2]|0; + $185 = (($182) + 4)|0; + $186 = $185; + $187 = HEAP32[$186>>2]|0; + $188 = (_bitshift64Ashr(0,($184|0),32)|0); $189 = tempRet0; - $190 = (_bitshift64Lshr(($188|0),($189|0),2)|0); + $190 = (___muldi3(($188|0),($189|0),($179|0),($180|0))|0); $191 = tempRet0; - $192 = $190 & 2097151; - $193 = ((($c)) + 28|0); - $194 = (_load_448($193)|0); - $195 = tempRet0; - $196 = (_bitshift64Lshr(($194|0),($195|0),7)|0); - $197 = tempRet0; - $198 = (___muldi3(($68|0),0,($2|0),0)|0); - $199 = tempRet0; - $200 = (_i64Add(($134|0),0,($198|0),($199|0))|0); - $201 = tempRet0; - $202 = (___muldi3(($74|0),0,($2|0),0)|0); - $203 = tempRet0; - $204 = (___muldi3(($68|0),0,($8|0),0)|0); - $205 = tempRet0; - $206 = (___muldi3(($80|0),0,($2|0),0)|0); - $207 = tempRet0; - $208 = (___muldi3(($74|0),0,($8|0),0)|0); - $209 = tempRet0; - $210 = (___muldi3(($68|0),0,($14|0),0)|0); - $211 = tempRet0; - $212 = (_i64Add(($208|0),($209|0),($210|0),($211|0))|0); - $213 = tempRet0; - $214 = (_i64Add(($212|0),($213|0),($206|0),($207|0))|0); - $215 = tempRet0; - $216 = (_i64Add(($214|0),($215|0),($146|0),0)|0); - $217 = tempRet0; - $218 = (___muldi3(($86|0),0,($2|0),0)|0); - $219 = tempRet0; - $220 = (___muldi3(($80|0),0,($8|0),0)|0); - $221 = tempRet0; - $222 = (___muldi3(($74|0),0,($14|0),0)|0); - $223 = tempRet0; - $224 = (___muldi3(($68|0),0,($20|0),0)|0); - $225 = tempRet0; - $226 = (___muldi3(($92|0),0,($2|0),0)|0); - $227 = tempRet0; - $228 = (___muldi3(($86|0),0,($8|0),0)|0); - $229 = tempRet0; - $230 = (___muldi3(($80|0),0,($14|0),0)|0); - $231 = tempRet0; - $232 = (___muldi3(($74|0),0,($20|0),0)|0); - $233 = tempRet0; - $234 = (___muldi3(($68|0),0,($26|0),0)|0); - $235 = tempRet0; - $236 = (_i64Add(($232|0),($233|0),($234|0),($235|0))|0); - $237 = tempRet0; - $238 = (_i64Add(($236|0),($237|0),($230|0),($231|0))|0); - $239 = tempRet0; - $240 = (_i64Add(($238|0),($239|0),($228|0),($229|0))|0); - $241 = tempRet0; - $242 = (_i64Add(($240|0),($241|0),($226|0),($227|0))|0); - $243 = tempRet0; - $244 = (_i64Add(($242|0),($243|0),($158|0),0)|0); - $245 = tempRet0; - $246 = (___muldi3(($98|0),0,($2|0),0)|0); - $247 = tempRet0; - $248 = (___muldi3(($92|0),0,($8|0),0)|0); - $249 = tempRet0; - $250 = (___muldi3(($86|0),0,($14|0),0)|0); - $251 = tempRet0; - $252 = (___muldi3(($80|0),0,($20|0),0)|0); - $253 = tempRet0; - $254 = (___muldi3(($74|0),0,($26|0),0)|0); - $255 = tempRet0; - $256 = (___muldi3(($68|0),0,($32|0),0)|0); - $257 = tempRet0; - $258 = (___muldi3(($104|0),0,($2|0),0)|0); - $259 = tempRet0; - $260 = (___muldi3(($98|0),0,($8|0),0)|0); - $261 = tempRet0; - $262 = (___muldi3(($92|0),0,($14|0),0)|0); - $263 = tempRet0; - $264 = (___muldi3(($86|0),0,($20|0),0)|0); - $265 = tempRet0; - $266 = (___muldi3(($80|0),0,($26|0),0)|0); - $267 = tempRet0; - $268 = (___muldi3(($74|0),0,($32|0),0)|0); - $269 = tempRet0; - $270 = (___muldi3(($68|0),0,($38|0),0)|0); - $271 = tempRet0; - $272 = (_i64Add(($268|0),($269|0),($270|0),($271|0))|0); - $273 = tempRet0; - $274 = (_i64Add(($272|0),($273|0),($266|0),($267|0))|0); - $275 = tempRet0; - $276 = (_i64Add(($274|0),($275|0),($264|0),($265|0))|0); - $277 = tempRet0; - $278 = (_i64Add(($276|0),($277|0),($262|0),($263|0))|0); - $279 = tempRet0; - $280 = (_i64Add(($278|0),($279|0),($260|0),($261|0))|0); - $281 = tempRet0; - $282 = (_i64Add(($280|0),($281|0),($258|0),($259|0))|0); - $283 = tempRet0; - $284 = (_i64Add(($282|0),($283|0),($170|0),0)|0); - $285 = tempRet0; - $286 = (___muldi3(($110|0),0,($2|0),0)|0); - $287 = tempRet0; - $288 = (___muldi3(($104|0),0,($8|0),0)|0); - $289 = tempRet0; - $290 = (___muldi3(($98|0),0,($14|0),0)|0); - $291 = tempRet0; - $292 = (___muldi3(($92|0),0,($20|0),0)|0); - $293 = tempRet0; - $294 = (___muldi3(($86|0),0,($26|0),0)|0); - $295 = tempRet0; - $296 = (___muldi3(($80|0),0,($32|0),0)|0); - $297 = tempRet0; - $298 = (___muldi3(($74|0),0,($38|0),0)|0); - $299 = tempRet0; - $300 = (___muldi3(($68|0),0,($44|0),0)|0); - $301 = tempRet0; - $302 = (___muldi3(($114|0),0,($2|0),0)|0); - $303 = tempRet0; - $304 = (___muldi3(($110|0),0,($8|0),0)|0); - $305 = tempRet0; - $306 = (___muldi3(($104|0),0,($14|0),0)|0); - $307 = tempRet0; - $308 = (___muldi3(($98|0),0,($20|0),0)|0); - $309 = tempRet0; - $310 = (___muldi3(($92|0),0,($26|0),0)|0); - $311 = tempRet0; - $312 = (___muldi3(($86|0),0,($32|0),0)|0); - $313 = tempRet0; - $314 = (___muldi3(($80|0),0,($38|0),0)|0); - $315 = tempRet0; - $316 = (___muldi3(($74|0),0,($44|0),0)|0); - $317 = tempRet0; - $318 = (___muldi3(($68|0),0,($48|0),0)|0); - $319 = tempRet0; - $320 = (_i64Add(($316|0),($317|0),($318|0),($319|0))|0); - $321 = tempRet0; - $322 = (_i64Add(($320|0),($321|0),($314|0),($315|0))|0); - $323 = tempRet0; - $324 = (_i64Add(($322|0),($323|0),($312|0),($313|0))|0); - $325 = tempRet0; - $326 = (_i64Add(($324|0),($325|0),($310|0),($311|0))|0); - $327 = tempRet0; - $328 = (_i64Add(($326|0),($327|0),($308|0),($309|0))|0); - $329 = tempRet0; - $330 = (_i64Add(($328|0),($329|0),($306|0),($307|0))|0); - $331 = tempRet0; - $332 = (_i64Add(($330|0),($331|0),($302|0),($303|0))|0); - $333 = tempRet0; - $334 = (_i64Add(($332|0),($333|0),($304|0),($305|0))|0); - $335 = tempRet0; - $336 = (_i64Add(($334|0),($335|0),($180|0),0)|0); - $337 = tempRet0; - $338 = (___muldi3(($120|0),0,($2|0),0)|0); - $339 = tempRet0; - $340 = (___muldi3(($114|0),0,($8|0),0)|0); - $341 = tempRet0; - $342 = (___muldi3(($110|0),0,($14|0),0)|0); - $343 = tempRet0; - $344 = (___muldi3(($104|0),0,($20|0),0)|0); - $345 = tempRet0; - $346 = (___muldi3(($98|0),0,($26|0),0)|0); - $347 = tempRet0; - $348 = (___muldi3(($92|0),0,($32|0),0)|0); - $349 = tempRet0; - $350 = (___muldi3(($86|0),0,($38|0),0)|0); - $351 = tempRet0; - $352 = (___muldi3(($80|0),0,($44|0),0)|0); - $353 = tempRet0; - $354 = (___muldi3(($74|0),0,($48|0),0)|0); - $355 = tempRet0; - $356 = (___muldi3(($68|0),0,($54|0),0)|0); - $357 = tempRet0; - $358 = (___muldi3(($126|0),0,($2|0),0)|0); - $359 = tempRet0; - $360 = (___muldi3(($120|0),0,($8|0),0)|0); - $361 = tempRet0; - $362 = (___muldi3(($114|0),0,($14|0),0)|0); - $363 = tempRet0; - $364 = (___muldi3(($110|0),0,($20|0),0)|0); - $365 = tempRet0; - $366 = (___muldi3(($104|0),0,($26|0),0)|0); - $367 = tempRet0; - $368 = (___muldi3(($98|0),0,($32|0),0)|0); - $369 = tempRet0; - $370 = (___muldi3(($92|0),0,($38|0),0)|0); - $371 = tempRet0; - $372 = (___muldi3(($86|0),0,($44|0),0)|0); - $373 = tempRet0; - $374 = (___muldi3(($80|0),0,($48|0),0)|0); - $375 = tempRet0; - $376 = (___muldi3(($74|0),0,($54|0),0)|0); - $377 = tempRet0; - $378 = (___muldi3(($68|0),0,($60|0),0)|0); - $379 = tempRet0; - $380 = (_i64Add(($376|0),($377|0),($378|0),($379|0))|0); - $381 = tempRet0; - $382 = (_i64Add(($380|0),($381|0),($374|0),($375|0))|0); - $383 = tempRet0; - $384 = (_i64Add(($382|0),($383|0),($372|0),($373|0))|0); - $385 = tempRet0; - $386 = (_i64Add(($384|0),($385|0),($370|0),($371|0))|0); - $387 = tempRet0; - $388 = (_i64Add(($386|0),($387|0),($368|0),($369|0))|0); - $389 = tempRet0; - $390 = (_i64Add(($388|0),($389|0),($366|0),($367|0))|0); - $391 = tempRet0; - $392 = (_i64Add(($390|0),($391|0),($362|0),($363|0))|0); - $393 = tempRet0; - $394 = (_i64Add(($392|0),($393|0),($364|0),($365|0))|0); - $395 = tempRet0; - $396 = (_i64Add(($394|0),($395|0),($360|0),($361|0))|0); - $397 = tempRet0; - $398 = (_i64Add(($396|0),($397|0),($358|0),($359|0))|0); - $399 = tempRet0; - $400 = (_i64Add(($398|0),($399|0),($192|0),0)|0); - $401 = tempRet0; - $402 = (___muldi3(($130|0),($131|0),($2|0),0)|0); - $403 = tempRet0; - $404 = (___muldi3(($126|0),0,($8|0),0)|0); - $405 = tempRet0; - $406 = (___muldi3(($120|0),0,($14|0),0)|0); - $407 = tempRet0; - $408 = (___muldi3(($114|0),0,($20|0),0)|0); - $409 = tempRet0; - $410 = (___muldi3(($110|0),0,($26|0),0)|0); - $411 = tempRet0; - $412 = (___muldi3(($104|0),0,($32|0),0)|0); - $413 = tempRet0; - $414 = (___muldi3(($98|0),0,($38|0),0)|0); - $415 = tempRet0; - $416 = (___muldi3(($92|0),0,($44|0),0)|0); - $417 = tempRet0; - $418 = (___muldi3(($86|0),0,($48|0),0)|0); - $419 = tempRet0; - $420 = (___muldi3(($80|0),0,($54|0),0)|0); + $192 = (_i64Add(($171|0),($172|0),($190|0),($191|0))|0); + $193 = tempRet0; + $194 = ((($1)) + 24|0); + $195 = $194; + $196 = $195; + $197 = HEAP32[$196>>2]|0; + $198 = (($195) + 4)|0; + $199 = $198; + $200 = HEAP32[$199>>2]|0; + $201 = (_bitshift64Ashr(0,($197|0),32)|0); + $202 = tempRet0; + $203 = $2; + $204 = $203; + $205 = HEAP32[$204>>2]|0; + $206 = (($203) + 4)|0; + $207 = $206; + $208 = HEAP32[$207>>2]|0; + $209 = (_bitshift64Ashr(0,($205|0),32)|0); + $210 = tempRet0; + $211 = (___muldi3(($209|0),($210|0),($201|0),($202|0))|0); + $212 = tempRet0; + $213 = (_i64Add(($192|0),($193|0),($211|0),($212|0))|0); + $214 = tempRet0; + $215 = ((($0)) + 24|0); + $216 = $215; + $217 = $216; + HEAP32[$217>>2] = $213; + $218 = (($216) + 4)|0; + $219 = $218; + HEAP32[$219>>2] = $214; + $220 = $109; + $221 = $220; + $222 = HEAP32[$221>>2]|0; + $223 = (($220) + 4)|0; + $224 = $223; + $225 = HEAP32[$224>>2]|0; + $226 = (_bitshift64Ashr(0,($222|0),32)|0); + $227 = tempRet0; + $228 = $96; + $229 = $228; + $230 = HEAP32[$229>>2]|0; + $231 = (($228) + 4)|0; + $232 = $231; + $233 = HEAP32[$232>>2]|0; + $234 = (_bitshift64Ashr(0,($230|0),32)|0); + $235 = tempRet0; + $236 = (___muldi3(($234|0),($235|0),($226|0),($227|0))|0); + $237 = tempRet0; + $238 = $44; + $239 = $238; + $240 = HEAP32[$239>>2]|0; + $241 = (($238) + 4)|0; + $242 = $241; + $243 = HEAP32[$242>>2]|0; + $244 = (_bitshift64Ashr(0,($240|0),32)|0); + $245 = tempRet0; + $246 = $181; + $247 = $246; + $248 = HEAP32[$247>>2]|0; + $249 = (($246) + 4)|0; + $250 = $249; + $251 = HEAP32[$250>>2]|0; + $252 = (_bitshift64Ashr(0,($248|0),32)|0); + $253 = tempRet0; + $254 = (___muldi3(($252|0),($253|0),($244|0),($245|0))|0); + $255 = tempRet0; + $256 = $194; + $257 = $256; + $258 = HEAP32[$257>>2]|0; + $259 = (($256) + 4)|0; + $260 = $259; + $261 = HEAP32[$260>>2]|0; + $262 = (_bitshift64Ashr(0,($258|0),32)|0); + $263 = tempRet0; + $264 = $33; + $265 = $264; + $266 = HEAP32[$265>>2]|0; + $267 = (($264) + 4)|0; + $268 = $267; + $269 = HEAP32[$268>>2]|0; + $270 = (_bitshift64Ashr(0,($266|0),32)|0); + $271 = tempRet0; + $272 = (___muldi3(($270|0),($271|0),($262|0),($263|0))|0); + $273 = tempRet0; + $274 = (_i64Add(($272|0),($273|0),($254|0),($255|0))|0); + $275 = tempRet0; + $276 = (_bitshift64Shl(($274|0),($275|0),1)|0); + $277 = tempRet0; + $278 = (_i64Add(($276|0),($277|0),($236|0),($237|0))|0); + $279 = tempRet0; + $280 = $1; + $281 = $280; + $282 = HEAP32[$281>>2]|0; + $283 = (($280) + 4)|0; + $284 = $283; + $285 = HEAP32[$284>>2]|0; + $286 = (_bitshift64Ashr(0,($282|0),32)|0); + $287 = tempRet0; + $288 = ((($2)) + 32|0); + $289 = $288; + $290 = $289; + $291 = HEAP32[$290>>2]|0; + $292 = (($289) + 4)|0; + $293 = $292; + $294 = HEAP32[$293>>2]|0; + $295 = (_bitshift64Ashr(0,($291|0),32)|0); + $296 = tempRet0; + $297 = (___muldi3(($295|0),($296|0),($286|0),($287|0))|0); + $298 = tempRet0; + $299 = (_i64Add(($278|0),($279|0),($297|0),($298|0))|0); + $300 = tempRet0; + $301 = ((($1)) + 32|0); + $302 = $301; + $303 = $302; + $304 = HEAP32[$303>>2]|0; + $305 = (($302) + 4)|0; + $306 = $305; + $307 = HEAP32[$306>>2]|0; + $308 = (_bitshift64Ashr(0,($304|0),32)|0); + $309 = tempRet0; + $310 = $2; + $311 = $310; + $312 = HEAP32[$311>>2]|0; + $313 = (($310) + 4)|0; + $314 = $313; + $315 = HEAP32[$314>>2]|0; + $316 = (_bitshift64Ashr(0,($312|0),32)|0); + $317 = tempRet0; + $318 = (___muldi3(($316|0),($317|0),($308|0),($309|0))|0); + $319 = tempRet0; + $320 = (_i64Add(($299|0),($300|0),($318|0),($319|0))|0); + $321 = tempRet0; + $322 = ((($0)) + 32|0); + $323 = $322; + $324 = $323; + HEAP32[$324>>2] = $320; + $325 = (($323) + 4)|0; + $326 = $325; + HEAP32[$326>>2] = $321; + $327 = $109; + $328 = $327; + $329 = HEAP32[$328>>2]|0; + $330 = (($327) + 4)|0; + $331 = $330; + $332 = HEAP32[$331>>2]|0; + $333 = (_bitshift64Ashr(0,($329|0),32)|0); + $334 = tempRet0; + $335 = $181; + $336 = $335; + $337 = HEAP32[$336>>2]|0; + $338 = (($335) + 4)|0; + $339 = $338; + $340 = HEAP32[$339>>2]|0; + $341 = (_bitshift64Ashr(0,($337|0),32)|0); + $342 = tempRet0; + $343 = (___muldi3(($341|0),($342|0),($333|0),($334|0))|0); + $344 = tempRet0; + $345 = $194; + $346 = $345; + $347 = HEAP32[$346>>2]|0; + $348 = (($345) + 4)|0; + $349 = $348; + $350 = HEAP32[$349>>2]|0; + $351 = (_bitshift64Ashr(0,($347|0),32)|0); + $352 = tempRet0; + $353 = $96; + $354 = $353; + $355 = HEAP32[$354>>2]|0; + $356 = (($353) + 4)|0; + $357 = $356; + $358 = HEAP32[$357>>2]|0; + $359 = (_bitshift64Ashr(0,($355|0),32)|0); + $360 = tempRet0; + $361 = (___muldi3(($359|0),($360|0),($351|0),($352|0))|0); + $362 = tempRet0; + $363 = (_i64Add(($361|0),($362|0),($343|0),($344|0))|0); + $364 = tempRet0; + $365 = $44; + $366 = $365; + $367 = HEAP32[$366>>2]|0; + $368 = (($365) + 4)|0; + $369 = $368; + $370 = HEAP32[$369>>2]|0; + $371 = (_bitshift64Ashr(0,($367|0),32)|0); + $372 = tempRet0; + $373 = $288; + $374 = $373; + $375 = HEAP32[$374>>2]|0; + $376 = (($373) + 4)|0; + $377 = $376; + $378 = HEAP32[$377>>2]|0; + $379 = (_bitshift64Ashr(0,($375|0),32)|0); + $380 = tempRet0; + $381 = (___muldi3(($379|0),($380|0),($371|0),($372|0))|0); + $382 = tempRet0; + $383 = (_i64Add(($363|0),($364|0),($381|0),($382|0))|0); + $384 = tempRet0; + $385 = $301; + $386 = $385; + $387 = HEAP32[$386>>2]|0; + $388 = (($385) + 4)|0; + $389 = $388; + $390 = HEAP32[$389>>2]|0; + $391 = (_bitshift64Ashr(0,($387|0),32)|0); + $392 = tempRet0; + $393 = $33; + $394 = $393; + $395 = HEAP32[$394>>2]|0; + $396 = (($393) + 4)|0; + $397 = $396; + $398 = HEAP32[$397>>2]|0; + $399 = (_bitshift64Ashr(0,($395|0),32)|0); + $400 = tempRet0; + $401 = (___muldi3(($399|0),($400|0),($391|0),($392|0))|0); + $402 = tempRet0; + $403 = (_i64Add(($383|0),($384|0),($401|0),($402|0))|0); + $404 = tempRet0; + $405 = $1; + $406 = $405; + $407 = HEAP32[$406>>2]|0; + $408 = (($405) + 4)|0; + $409 = $408; + $410 = HEAP32[$409>>2]|0; + $411 = (_bitshift64Ashr(0,($407|0),32)|0); + $412 = tempRet0; + $413 = ((($2)) + 40|0); + $414 = $413; + $415 = $414; + $416 = HEAP32[$415>>2]|0; + $417 = (($414) + 4)|0; + $418 = $417; + $419 = HEAP32[$418>>2]|0; + $420 = (_bitshift64Ashr(0,($416|0),32)|0); $421 = tempRet0; - $422 = (___muldi3(($74|0),0,($60|0),0)|0); + $422 = (___muldi3(($420|0),($421|0),($411|0),($412|0))|0); $423 = tempRet0; - $424 = (___muldi3(($68|0),0,($64|0),($65|0))|0); + $424 = (_i64Add(($403|0),($404|0),($422|0),($423|0))|0); $425 = tempRet0; - $426 = (___muldi3(($130|0),($131|0),($8|0),0)|0); - $427 = tempRet0; - $428 = (___muldi3(($126|0),0,($14|0),0)|0); - $429 = tempRet0; - $430 = (___muldi3(($120|0),0,($20|0),0)|0); - $431 = tempRet0; - $432 = (___muldi3(($114|0),0,($26|0),0)|0); - $433 = tempRet0; - $434 = (___muldi3(($110|0),0,($32|0),0)|0); - $435 = tempRet0; - $436 = (___muldi3(($104|0),0,($38|0),0)|0); - $437 = tempRet0; - $438 = (___muldi3(($98|0),0,($44|0),0)|0); - $439 = tempRet0; - $440 = (___muldi3(($92|0),0,($48|0),0)|0); - $441 = tempRet0; - $442 = (___muldi3(($86|0),0,($54|0),0)|0); - $443 = tempRet0; - $444 = (___muldi3(($80|0),0,($60|0),0)|0); - $445 = tempRet0; - $446 = (___muldi3(($74|0),0,($64|0),($65|0))|0); - $447 = tempRet0; - $448 = (_i64Add(($444|0),($445|0),($446|0),($447|0))|0); - $449 = tempRet0; - $450 = (_i64Add(($448|0),($449|0),($442|0),($443|0))|0); - $451 = tempRet0; - $452 = (_i64Add(($450|0),($451|0),($440|0),($441|0))|0); - $453 = tempRet0; - $454 = (_i64Add(($452|0),($453|0),($438|0),($439|0))|0); - $455 = tempRet0; - $456 = (_i64Add(($454|0),($455|0),($436|0),($437|0))|0); - $457 = tempRet0; - $458 = (_i64Add(($456|0),($457|0),($432|0),($433|0))|0); + $426 = ((($1)) + 40|0); + $427 = $426; + $428 = $427; + $429 = HEAP32[$428>>2]|0; + $430 = (($427) + 4)|0; + $431 = $430; + $432 = HEAP32[$431>>2]|0; + $433 = (_bitshift64Ashr(0,($429|0),32)|0); + $434 = tempRet0; + $435 = $2; + $436 = $435; + $437 = HEAP32[$436>>2]|0; + $438 = (($435) + 4)|0; + $439 = $438; + $440 = HEAP32[$439>>2]|0; + $441 = (_bitshift64Ashr(0,($437|0),32)|0); + $442 = tempRet0; + $443 = (___muldi3(($441|0),($442|0),($433|0),($434|0))|0); + $444 = tempRet0; + $445 = (_i64Add(($424|0),($425|0),($443|0),($444|0))|0); + $446 = tempRet0; + $447 = ((($0)) + 40|0); + $448 = $447; + $449 = $448; + HEAP32[$449>>2] = $445; + $450 = (($448) + 4)|0; + $451 = $450; + HEAP32[$451>>2] = $446; + $452 = $194; + $453 = $452; + $454 = HEAP32[$453>>2]|0; + $455 = (($452) + 4)|0; + $456 = $455; + $457 = HEAP32[$456>>2]|0; + $458 = (_bitshift64Ashr(0,($454|0),32)|0); $459 = tempRet0; - $460 = (_i64Add(($458|0),($459|0),($434|0),($435|0))|0); - $461 = tempRet0; - $462 = (_i64Add(($460|0),($461|0),($430|0),($431|0))|0); - $463 = tempRet0; - $464 = (_i64Add(($462|0),($463|0),($428|0),($429|0))|0); - $465 = tempRet0; - $466 = (_i64Add(($464|0),($465|0),($426|0),($427|0))|0); + $460 = $181; + $461 = $460; + $462 = HEAP32[$461>>2]|0; + $463 = (($460) + 4)|0; + $464 = $463; + $465 = HEAP32[$464>>2]|0; + $466 = (_bitshift64Ashr(0,($462|0),32)|0); $467 = tempRet0; - $468 = (___muldi3(($130|0),($131|0),($14|0),0)|0); + $468 = (___muldi3(($466|0),($467|0),($458|0),($459|0))|0); $469 = tempRet0; - $470 = (___muldi3(($126|0),0,($20|0),0)|0); - $471 = tempRet0; - $472 = (___muldi3(($120|0),0,($26|0),0)|0); - $473 = tempRet0; - $474 = (___muldi3(($114|0),0,($32|0),0)|0); - $475 = tempRet0; - $476 = (___muldi3(($110|0),0,($38|0),0)|0); + $470 = $44; + $471 = $470; + $472 = HEAP32[$471>>2]|0; + $473 = (($470) + 4)|0; + $474 = $473; + $475 = HEAP32[$474>>2]|0; + $476 = (_bitshift64Ashr(0,($472|0),32)|0); $477 = tempRet0; - $478 = (___muldi3(($104|0),0,($44|0),0)|0); - $479 = tempRet0; - $480 = (___muldi3(($98|0),0,($48|0),0)|0); - $481 = tempRet0; - $482 = (___muldi3(($92|0),0,($54|0),0)|0); - $483 = tempRet0; - $484 = (___muldi3(($86|0),0,($60|0),0)|0); + $478 = $413; + $479 = $478; + $480 = HEAP32[$479>>2]|0; + $481 = (($478) + 4)|0; + $482 = $481; + $483 = HEAP32[$482>>2]|0; + $484 = (_bitshift64Ashr(0,($480|0),32)|0); $485 = tempRet0; - $486 = (___muldi3(($80|0),0,($64|0),($65|0))|0); + $486 = (___muldi3(($484|0),($485|0),($476|0),($477|0))|0); $487 = tempRet0; - $488 = (___muldi3(($130|0),($131|0),($20|0),0)|0); + $488 = (_i64Add(($486|0),($487|0),($468|0),($469|0))|0); $489 = tempRet0; - $490 = (___muldi3(($126|0),0,($26|0),0)|0); - $491 = tempRet0; - $492 = (___muldi3(($120|0),0,($32|0),0)|0); - $493 = tempRet0; - $494 = (___muldi3(($114|0),0,($38|0),0)|0); - $495 = tempRet0; - $496 = (___muldi3(($110|0),0,($44|0),0)|0); + $490 = $426; + $491 = $490; + $492 = HEAP32[$491>>2]|0; + $493 = (($490) + 4)|0; + $494 = $493; + $495 = HEAP32[$494>>2]|0; + $496 = (_bitshift64Ashr(0,($492|0),32)|0); $497 = tempRet0; - $498 = (___muldi3(($104|0),0,($48|0),0)|0); - $499 = tempRet0; - $500 = (___muldi3(($98|0),0,($54|0),0)|0); - $501 = tempRet0; - $502 = (___muldi3(($92|0),0,($60|0),0)|0); - $503 = tempRet0; - $504 = (___muldi3(($86|0),0,($64|0),($65|0))|0); + $498 = $33; + $499 = $498; + $500 = HEAP32[$499>>2]|0; + $501 = (($498) + 4)|0; + $502 = $501; + $503 = HEAP32[$502>>2]|0; + $504 = (_bitshift64Ashr(0,($500|0),32)|0); $505 = tempRet0; - $506 = (_i64Add(($502|0),($503|0),($504|0),($505|0))|0); + $506 = (___muldi3(($504|0),($505|0),($496|0),($497|0))|0); $507 = tempRet0; - $508 = (_i64Add(($506|0),($507|0),($500|0),($501|0))|0); + $508 = (_i64Add(($488|0),($489|0),($506|0),($507|0))|0); $509 = tempRet0; - $510 = (_i64Add(($508|0),($509|0),($498|0),($499|0))|0); + $510 = (_bitshift64Shl(($508|0),($509|0),1)|0); $511 = tempRet0; - $512 = (_i64Add(($510|0),($511|0),($494|0),($495|0))|0); - $513 = tempRet0; - $514 = (_i64Add(($512|0),($513|0),($496|0),($497|0))|0); - $515 = tempRet0; - $516 = (_i64Add(($514|0),($515|0),($492|0),($493|0))|0); - $517 = tempRet0; - $518 = (_i64Add(($516|0),($517|0),($490|0),($491|0))|0); + $512 = $109; + $513 = $512; + $514 = HEAP32[$513>>2]|0; + $515 = (($512) + 4)|0; + $516 = $515; + $517 = HEAP32[$516>>2]|0; + $518 = (_bitshift64Ashr(0,($514|0),32)|0); $519 = tempRet0; - $520 = (_i64Add(($518|0),($519|0),($488|0),($489|0))|0); - $521 = tempRet0; - $522 = (___muldi3(($130|0),($131|0),($26|0),0)|0); - $523 = tempRet0; - $524 = (___muldi3(($126|0),0,($32|0),0)|0); - $525 = tempRet0; - $526 = (___muldi3(($120|0),0,($38|0),0)|0); + $520 = $288; + $521 = $520; + $522 = HEAP32[$521>>2]|0; + $523 = (($520) + 4)|0; + $524 = $523; + $525 = HEAP32[$524>>2]|0; + $526 = (_bitshift64Ashr(0,($522|0),32)|0); $527 = tempRet0; - $528 = (___muldi3(($114|0),0,($44|0),0)|0); + $528 = (___muldi3(($526|0),($527|0),($518|0),($519|0))|0); $529 = tempRet0; - $530 = (___muldi3(($110|0),0,($48|0),0)|0); + $530 = (_i64Add(($510|0),($511|0),($528|0),($529|0))|0); $531 = tempRet0; - $532 = (___muldi3(($104|0),0,($54|0),0)|0); - $533 = tempRet0; - $534 = (___muldi3(($98|0),0,($60|0),0)|0); - $535 = tempRet0; - $536 = (___muldi3(($92|0),0,($64|0),($65|0))|0); - $537 = tempRet0; - $538 = (___muldi3(($130|0),($131|0),($32|0),0)|0); + $532 = $301; + $533 = $532; + $534 = HEAP32[$533>>2]|0; + $535 = (($532) + 4)|0; + $536 = $535; + $537 = HEAP32[$536>>2]|0; + $538 = (_bitshift64Ashr(0,($534|0),32)|0); $539 = tempRet0; - $540 = (___muldi3(($126|0),0,($38|0),0)|0); - $541 = tempRet0; - $542 = (___muldi3(($120|0),0,($44|0),0)|0); - $543 = tempRet0; - $544 = (___muldi3(($114|0),0,($48|0),0)|0); - $545 = tempRet0; - $546 = (___muldi3(($110|0),0,($54|0),0)|0); + $540 = $96; + $541 = $540; + $542 = HEAP32[$541>>2]|0; + $543 = (($540) + 4)|0; + $544 = $543; + $545 = HEAP32[$544>>2]|0; + $546 = (_bitshift64Ashr(0,($542|0),32)|0); $547 = tempRet0; - $548 = (___muldi3(($104|0),0,($60|0),0)|0); + $548 = (___muldi3(($546|0),($547|0),($538|0),($539|0))|0); $549 = tempRet0; - $550 = (___muldi3(($98|0),0,($64|0),($65|0))|0); + $550 = (_i64Add(($530|0),($531|0),($548|0),($549|0))|0); $551 = tempRet0; - $552 = (_i64Add(($548|0),($549|0),($550|0),($551|0))|0); - $553 = tempRet0; - $554 = (_i64Add(($552|0),($553|0),($544|0),($545|0))|0); - $555 = tempRet0; - $556 = (_i64Add(($554|0),($555|0),($546|0),($547|0))|0); - $557 = tempRet0; - $558 = (_i64Add(($556|0),($557|0),($542|0),($543|0))|0); + $552 = $1; + $553 = $552; + $554 = HEAP32[$553>>2]|0; + $555 = (($552) + 4)|0; + $556 = $555; + $557 = HEAP32[$556>>2]|0; + $558 = (_bitshift64Ashr(0,($554|0),32)|0); $559 = tempRet0; - $560 = (_i64Add(($558|0),($559|0),($540|0),($541|0))|0); - $561 = tempRet0; - $562 = (_i64Add(($560|0),($561|0),($538|0),($539|0))|0); - $563 = tempRet0; - $564 = (___muldi3(($130|0),($131|0),($38|0),0)|0); - $565 = tempRet0; - $566 = (___muldi3(($126|0),0,($44|0),0)|0); - $567 = tempRet0; - $568 = (___muldi3(($120|0),0,($48|0),0)|0); - $569 = tempRet0; - $570 = (___muldi3(($114|0),0,($54|0),0)|0); - $571 = tempRet0; - $572 = (___muldi3(($110|0),0,($60|0),0)|0); - $573 = tempRet0; - $574 = (___muldi3(($104|0),0,($64|0),($65|0))|0); - $575 = tempRet0; - $576 = (___muldi3(($130|0),($131|0),($44|0),0)|0); - $577 = tempRet0; - $578 = (___muldi3(($126|0),0,($48|0),0)|0); - $579 = tempRet0; - $580 = (___muldi3(($120|0),0,($54|0),0)|0); + $560 = ((($2)) + 48|0); + $561 = $560; + $562 = $561; + $563 = HEAP32[$562>>2]|0; + $564 = (($561) + 4)|0; + $565 = $564; + $566 = HEAP32[$565>>2]|0; + $567 = (_bitshift64Ashr(0,($563|0),32)|0); + $568 = tempRet0; + $569 = (___muldi3(($567|0),($568|0),($558|0),($559|0))|0); + $570 = tempRet0; + $571 = (_i64Add(($550|0),($551|0),($569|0),($570|0))|0); + $572 = tempRet0; + $573 = ((($1)) + 48|0); + $574 = $573; + $575 = $574; + $576 = HEAP32[$575>>2]|0; + $577 = (($574) + 4)|0; + $578 = $577; + $579 = HEAP32[$578>>2]|0; + $580 = (_bitshift64Ashr(0,($576|0),32)|0); $581 = tempRet0; - $582 = (___muldi3(($114|0),0,($60|0),0)|0); - $583 = tempRet0; - $584 = (___muldi3(($110|0),0,($64|0),($65|0))|0); - $585 = tempRet0; - $586 = (_i64Add(($584|0),($585|0),($582|0),($583|0))|0); - $587 = tempRet0; - $588 = (_i64Add(($586|0),($587|0),($580|0),($581|0))|0); + $582 = $2; + $583 = $582; + $584 = HEAP32[$583>>2]|0; + $585 = (($582) + 4)|0; + $586 = $585; + $587 = HEAP32[$586>>2]|0; + $588 = (_bitshift64Ashr(0,($584|0),32)|0); $589 = tempRet0; - $590 = (_i64Add(($588|0),($589|0),($578|0),($579|0))|0); + $590 = (___muldi3(($588|0),($589|0),($580|0),($581|0))|0); $591 = tempRet0; - $592 = (_i64Add(($590|0),($591|0),($576|0),($577|0))|0); + $592 = (_i64Add(($571|0),($572|0),($590|0),($591|0))|0); $593 = tempRet0; - $594 = (___muldi3(($130|0),($131|0),($48|0),0)|0); - $595 = tempRet0; - $596 = (___muldi3(($126|0),0,($54|0),0)|0); - $597 = tempRet0; - $598 = (___muldi3(($120|0),0,($60|0),0)|0); - $599 = tempRet0; - $600 = (___muldi3(($114|0),0,($64|0),($65|0))|0); - $601 = tempRet0; - $602 = (___muldi3(($130|0),($131|0),($54|0),0)|0); - $603 = tempRet0; - $604 = (___muldi3(($126|0),0,($60|0),0)|0); - $605 = tempRet0; - $606 = (___muldi3(($120|0),0,($64|0),($65|0))|0); - $607 = tempRet0; - $608 = (_i64Add(($604|0),($605|0),($606|0),($607|0))|0); - $609 = tempRet0; - $610 = (_i64Add(($608|0),($609|0),($602|0),($603|0))|0); - $611 = tempRet0; - $612 = (___muldi3(($130|0),($131|0),($60|0),0)|0); - $613 = tempRet0; - $614 = (___muldi3(($126|0),0,($64|0),($65|0))|0); - $615 = tempRet0; - $616 = (_i64Add(($612|0),($613|0),($614|0),($615|0))|0); - $617 = tempRet0; - $618 = (___muldi3(($130|0),($131|0),($64|0),($65|0))|0); - $619 = tempRet0; - $620 = (_i64Add(($200|0),($201|0),1048576,0)|0); - $621 = tempRet0; - $622 = (_bitshift64Lshr(($620|0),($621|0),21)|0); - $623 = tempRet0; - $624 = (_i64Add(($202|0),($203|0),($204|0),($205|0))|0); - $625 = tempRet0; - $626 = (_i64Add(($624|0),($625|0),($140|0),0)|0); - $627 = tempRet0; - $628 = (_i64Add(($626|0),($627|0),($622|0),($623|0))|0); - $629 = tempRet0; - $630 = (_bitshift64Shl(($622|0),($623|0),21)|0); - $631 = tempRet0; - $632 = (_i64Subtract(($200|0),($201|0),($630|0),($631|0))|0); - $633 = tempRet0; - $634 = (_i64Add(($216|0),($217|0),1048576,0)|0); - $635 = tempRet0; - $636 = (_bitshift64Lshr(($634|0),($635|0),21)|0); - $637 = tempRet0; - $638 = (_i64Add(($222|0),($223|0),($224|0),($225|0))|0); - $639 = tempRet0; - $640 = (_i64Add(($638|0),($639|0),($220|0),($221|0))|0); - $641 = tempRet0; - $642 = (_i64Add(($640|0),($641|0),($218|0),($219|0))|0); - $643 = tempRet0; - $644 = (_i64Add(($642|0),($643|0),($152|0),0)|0); - $645 = tempRet0; - $646 = (_i64Add(($644|0),($645|0),($636|0),($637|0))|0); - $647 = tempRet0; - $648 = (_bitshift64Shl(($636|0),($637|0),21)|0); - $649 = tempRet0; - $650 = (_i64Add(($244|0),($245|0),1048576,0)|0); - $651 = tempRet0; - $652 = (_bitshift64Ashr(($650|0),($651|0),21)|0); - $653 = tempRet0; - $654 = (_i64Add(($254|0),($255|0),($256|0),($257|0))|0); - $655 = tempRet0; - $656 = (_i64Add(($654|0),($655|0),($252|0),($253|0))|0); - $657 = tempRet0; - $658 = (_i64Add(($656|0),($657|0),($250|0),($251|0))|0); - $659 = tempRet0; - $660 = (_i64Add(($658|0),($659|0),($248|0),($249|0))|0); - $661 = tempRet0; - $662 = (_i64Add(($660|0),($661|0),($246|0),($247|0))|0); - $663 = tempRet0; - $664 = (_i64Add(($662|0),($663|0),($164|0),0)|0); - $665 = tempRet0; - $666 = (_i64Add(($664|0),($665|0),($652|0),($653|0))|0); - $667 = tempRet0; - $668 = (_bitshift64Shl(($652|0),($653|0),21)|0); - $669 = tempRet0; - $670 = (_i64Subtract(($244|0),($245|0),($668|0),($669|0))|0); - $671 = tempRet0; - $672 = (_i64Add(($284|0),($285|0),1048576,0)|0); - $673 = tempRet0; - $674 = (_bitshift64Ashr(($672|0),($673|0),21)|0); - $675 = tempRet0; - $676 = (_i64Add(($298|0),($299|0),($300|0),($301|0))|0); - $677 = tempRet0; - $678 = (_i64Add(($676|0),($677|0),($296|0),($297|0))|0); - $679 = tempRet0; - $680 = (_i64Add(($678|0),($679|0),($294|0),($295|0))|0); - $681 = tempRet0; - $682 = (_i64Add(($680|0),($681|0),($292|0),($293|0))|0); - $683 = tempRet0; - $684 = (_i64Add(($682|0),($683|0),($290|0),($291|0))|0); - $685 = tempRet0; - $686 = (_i64Add(($684|0),($685|0),($288|0),($289|0))|0); - $687 = tempRet0; - $688 = (_i64Add(($686|0),($687|0),($286|0),($287|0))|0); - $689 = tempRet0; - $690 = (_i64Add(($688|0),($689|0),($176|0),0)|0); - $691 = tempRet0; - $692 = (_i64Add(($690|0),($691|0),($674|0),($675|0))|0); - $693 = tempRet0; - $694 = (_bitshift64Shl(($674|0),($675|0),21)|0); - $695 = tempRet0; - $696 = (_i64Add(($336|0),($337|0),1048576,0)|0); - $697 = tempRet0; - $698 = (_bitshift64Ashr(($696|0),($697|0),21)|0); - $699 = tempRet0; - $700 = (_i64Add(($354|0),($355|0),($356|0),($357|0))|0); - $701 = tempRet0; - $702 = (_i64Add(($700|0),($701|0),($352|0),($353|0))|0); - $703 = tempRet0; - $704 = (_i64Add(($702|0),($703|0),($350|0),($351|0))|0); - $705 = tempRet0; - $706 = (_i64Add(($704|0),($705|0),($348|0),($349|0))|0); - $707 = tempRet0; - $708 = (_i64Add(($706|0),($707|0),($346|0),($347|0))|0); - $709 = tempRet0; - $710 = (_i64Add(($708|0),($709|0),($344|0),($345|0))|0); - $711 = tempRet0; - $712 = (_i64Add(($710|0),($711|0),($340|0),($341|0))|0); - $713 = tempRet0; - $714 = (_i64Add(($712|0),($713|0),($342|0),($343|0))|0); - $715 = tempRet0; - $716 = (_i64Add(($714|0),($715|0),($338|0),($339|0))|0); - $717 = tempRet0; - $718 = (_i64Add(($716|0),($717|0),($186|0),0)|0); - $719 = tempRet0; - $720 = (_i64Add(($718|0),($719|0),($698|0),($699|0))|0); - $721 = tempRet0; - $722 = (_bitshift64Shl(($698|0),($699|0),21)|0); - $723 = tempRet0; - $724 = (_i64Add(($400|0),($401|0),1048576,0)|0); - $725 = tempRet0; - $726 = (_bitshift64Ashr(($724|0),($725|0),21)|0); - $727 = tempRet0; - $728 = (_i64Add(($422|0),($423|0),($424|0),($425|0))|0); - $729 = tempRet0; - $730 = (_i64Add(($728|0),($729|0),($420|0),($421|0))|0); - $731 = tempRet0; - $732 = (_i64Add(($730|0),($731|0),($418|0),($419|0))|0); + $594 = ((($0)) + 48|0); + $595 = $594; + $596 = $595; + HEAP32[$596>>2] = $592; + $597 = (($595) + 4)|0; + $598 = $597; + HEAP32[$598>>2] = $593; + $599 = $194; + $600 = $599; + $601 = HEAP32[$600>>2]|0; + $602 = (($599) + 4)|0; + $603 = $602; + $604 = HEAP32[$603>>2]|0; + $605 = (_bitshift64Ashr(0,($601|0),32)|0); + $606 = tempRet0; + $607 = $288; + $608 = $607; + $609 = HEAP32[$608>>2]|0; + $610 = (($607) + 4)|0; + $611 = $610; + $612 = HEAP32[$611>>2]|0; + $613 = (_bitshift64Ashr(0,($609|0),32)|0); + $614 = tempRet0; + $615 = (___muldi3(($613|0),($614|0),($605|0),($606|0))|0); + $616 = tempRet0; + $617 = $301; + $618 = $617; + $619 = HEAP32[$618>>2]|0; + $620 = (($617) + 4)|0; + $621 = $620; + $622 = HEAP32[$621>>2]|0; + $623 = (_bitshift64Ashr(0,($619|0),32)|0); + $624 = tempRet0; + $625 = $181; + $626 = $625; + $627 = HEAP32[$626>>2]|0; + $628 = (($625) + 4)|0; + $629 = $628; + $630 = HEAP32[$629>>2]|0; + $631 = (_bitshift64Ashr(0,($627|0),32)|0); + $632 = tempRet0; + $633 = (___muldi3(($631|0),($632|0),($623|0),($624|0))|0); + $634 = tempRet0; + $635 = (_i64Add(($633|0),($634|0),($615|0),($616|0))|0); + $636 = tempRet0; + $637 = $109; + $638 = $637; + $639 = HEAP32[$638>>2]|0; + $640 = (($637) + 4)|0; + $641 = $640; + $642 = HEAP32[$641>>2]|0; + $643 = (_bitshift64Ashr(0,($639|0),32)|0); + $644 = tempRet0; + $645 = $413; + $646 = $645; + $647 = HEAP32[$646>>2]|0; + $648 = (($645) + 4)|0; + $649 = $648; + $650 = HEAP32[$649>>2]|0; + $651 = (_bitshift64Ashr(0,($647|0),32)|0); + $652 = tempRet0; + $653 = (___muldi3(($651|0),($652|0),($643|0),($644|0))|0); + $654 = tempRet0; + $655 = (_i64Add(($635|0),($636|0),($653|0),($654|0))|0); + $656 = tempRet0; + $657 = $426; + $658 = $657; + $659 = HEAP32[$658>>2]|0; + $660 = (($657) + 4)|0; + $661 = $660; + $662 = HEAP32[$661>>2]|0; + $663 = (_bitshift64Ashr(0,($659|0),32)|0); + $664 = tempRet0; + $665 = $96; + $666 = $665; + $667 = HEAP32[$666>>2]|0; + $668 = (($665) + 4)|0; + $669 = $668; + $670 = HEAP32[$669>>2]|0; + $671 = (_bitshift64Ashr(0,($667|0),32)|0); + $672 = tempRet0; + $673 = (___muldi3(($671|0),($672|0),($663|0),($664|0))|0); + $674 = tempRet0; + $675 = (_i64Add(($655|0),($656|0),($673|0),($674|0))|0); + $676 = tempRet0; + $677 = $44; + $678 = $677; + $679 = HEAP32[$678>>2]|0; + $680 = (($677) + 4)|0; + $681 = $680; + $682 = HEAP32[$681>>2]|0; + $683 = (_bitshift64Ashr(0,($679|0),32)|0); + $684 = tempRet0; + $685 = $560; + $686 = $685; + $687 = HEAP32[$686>>2]|0; + $688 = (($685) + 4)|0; + $689 = $688; + $690 = HEAP32[$689>>2]|0; + $691 = (_bitshift64Ashr(0,($687|0),32)|0); + $692 = tempRet0; + $693 = (___muldi3(($691|0),($692|0),($683|0),($684|0))|0); + $694 = tempRet0; + $695 = (_i64Add(($675|0),($676|0),($693|0),($694|0))|0); + $696 = tempRet0; + $697 = $573; + $698 = $697; + $699 = HEAP32[$698>>2]|0; + $700 = (($697) + 4)|0; + $701 = $700; + $702 = HEAP32[$701>>2]|0; + $703 = (_bitshift64Ashr(0,($699|0),32)|0); + $704 = tempRet0; + $705 = $33; + $706 = $705; + $707 = HEAP32[$706>>2]|0; + $708 = (($705) + 4)|0; + $709 = $708; + $710 = HEAP32[$709>>2]|0; + $711 = (_bitshift64Ashr(0,($707|0),32)|0); + $712 = tempRet0; + $713 = (___muldi3(($711|0),($712|0),($703|0),($704|0))|0); + $714 = tempRet0; + $715 = (_i64Add(($695|0),($696|0),($713|0),($714|0))|0); + $716 = tempRet0; + $717 = $1; + $718 = $717; + $719 = HEAP32[$718>>2]|0; + $720 = (($717) + 4)|0; + $721 = $720; + $722 = HEAP32[$721>>2]|0; + $723 = (_bitshift64Ashr(0,($719|0),32)|0); + $724 = tempRet0; + $725 = ((($2)) + 56|0); + $726 = $725; + $727 = $726; + $728 = HEAP32[$727>>2]|0; + $729 = (($726) + 4)|0; + $730 = $729; + $731 = HEAP32[$730>>2]|0; + $732 = (_bitshift64Ashr(0,($728|0),32)|0); $733 = tempRet0; - $734 = (_i64Add(($732|0),($733|0),($416|0),($417|0))|0); + $734 = (___muldi3(($732|0),($733|0),($723|0),($724|0))|0); $735 = tempRet0; - $736 = (_i64Add(($734|0),($735|0),($414|0),($415|0))|0); + $736 = (_i64Add(($715|0),($716|0),($734|0),($735|0))|0); $737 = tempRet0; - $738 = (_i64Add(($736|0),($737|0),($412|0),($413|0))|0); - $739 = tempRet0; - $740 = (_i64Add(($738|0),($739|0),($408|0),($409|0))|0); - $741 = tempRet0; - $742 = (_i64Add(($740|0),($741|0),($410|0),($411|0))|0); - $743 = tempRet0; - $744 = (_i64Add(($742|0),($743|0),($406|0),($407|0))|0); - $745 = tempRet0; - $746 = (_i64Add(($744|0),($745|0),($402|0),($403|0))|0); - $747 = tempRet0; - $748 = (_i64Add(($746|0),($747|0),($404|0),($405|0))|0); - $749 = tempRet0; - $750 = (_i64Add(($748|0),($749|0),($196|0),($197|0))|0); - $751 = tempRet0; - $752 = (_i64Add(($750|0),($751|0),($726|0),($727|0))|0); - $753 = tempRet0; - $754 = (_bitshift64Shl(($726|0),($727|0),21)|0); - $755 = tempRet0; - $756 = (_i64Subtract(($400|0),($401|0),($754|0),($755|0))|0); - $757 = tempRet0; - $758 = (_i64Add(($466|0),($467|0),1048576,0)|0); - $759 = tempRet0; - $760 = (_bitshift64Ashr(($758|0),($759|0),21)|0); - $761 = tempRet0; - $762 = (_i64Add(($484|0),($485|0),($486|0),($487|0))|0); - $763 = tempRet0; - $764 = (_i64Add(($762|0),($763|0),($482|0),($483|0))|0); - $765 = tempRet0; - $766 = (_i64Add(($764|0),($765|0),($480|0),($481|0))|0); - $767 = tempRet0; - $768 = (_i64Add(($766|0),($767|0),($478|0),($479|0))|0); - $769 = tempRet0; - $770 = (_i64Add(($768|0),($769|0),($474|0),($475|0))|0); + $738 = ((($1)) + 56|0); + $739 = $738; + $740 = $739; + $741 = HEAP32[$740>>2]|0; + $742 = (($739) + 4)|0; + $743 = $742; + $744 = HEAP32[$743>>2]|0; + $745 = (_bitshift64Ashr(0,($741|0),32)|0); + $746 = tempRet0; + $747 = $2; + $748 = $747; + $749 = HEAP32[$748>>2]|0; + $750 = (($747) + 4)|0; + $751 = $750; + $752 = HEAP32[$751>>2]|0; + $753 = (_bitshift64Ashr(0,($749|0),32)|0); + $754 = tempRet0; + $755 = (___muldi3(($753|0),($754|0),($745|0),($746|0))|0); + $756 = tempRet0; + $757 = (_i64Add(($736|0),($737|0),($755|0),($756|0))|0); + $758 = tempRet0; + $759 = ((($0)) + 56|0); + $760 = $759; + $761 = $760; + HEAP32[$761>>2] = $757; + $762 = (($760) + 4)|0; + $763 = $762; + HEAP32[$763>>2] = $758; + $764 = $301; + $765 = $764; + $766 = HEAP32[$765>>2]|0; + $767 = (($764) + 4)|0; + $768 = $767; + $769 = HEAP32[$768>>2]|0; + $770 = (_bitshift64Ashr(0,($766|0),32)|0); $771 = tempRet0; - $772 = (_i64Add(($770|0),($771|0),($476|0),($477|0))|0); - $773 = tempRet0; - $774 = (_i64Add(($772|0),($773|0),($472|0),($473|0))|0); - $775 = tempRet0; - $776 = (_i64Add(($774|0),($775|0),($470|0),($471|0))|0); - $777 = tempRet0; - $778 = (_i64Add(($776|0),($777|0),($468|0),($469|0))|0); + $772 = $288; + $773 = $772; + $774 = HEAP32[$773>>2]|0; + $775 = (($772) + 4)|0; + $776 = $775; + $777 = HEAP32[$776>>2]|0; + $778 = (_bitshift64Ashr(0,($774|0),32)|0); $779 = tempRet0; - $780 = (_i64Add(($778|0),($779|0),($760|0),($761|0))|0); + $780 = (___muldi3(($778|0),($779|0),($770|0),($771|0))|0); $781 = tempRet0; - $782 = (_bitshift64Shl(($760|0),($761|0),21)|0); - $783 = tempRet0; - $784 = (_i64Subtract(($466|0),($467|0),($782|0),($783|0))|0); - $785 = tempRet0; - $786 = (_i64Add(($520|0),($521|0),1048576,0)|0); - $787 = tempRet0; - $788 = (_bitshift64Ashr(($786|0),($787|0),21)|0); + $782 = $194; + $783 = $782; + $784 = HEAP32[$783>>2]|0; + $785 = (($782) + 4)|0; + $786 = $785; + $787 = HEAP32[$786>>2]|0; + $788 = (_bitshift64Ashr(0,($784|0),32)|0); $789 = tempRet0; - $790 = (_i64Add(($534|0),($535|0),($536|0),($537|0))|0); - $791 = tempRet0; - $792 = (_i64Add(($790|0),($791|0),($532|0),($533|0))|0); - $793 = tempRet0; - $794 = (_i64Add(($792|0),($793|0),($528|0),($529|0))|0); - $795 = tempRet0; - $796 = (_i64Add(($794|0),($795|0),($530|0),($531|0))|0); + $790 = $413; + $791 = $790; + $792 = HEAP32[$791>>2]|0; + $793 = (($790) + 4)|0; + $794 = $793; + $795 = HEAP32[$794>>2]|0; + $796 = (_bitshift64Ashr(0,($792|0),32)|0); $797 = tempRet0; - $798 = (_i64Add(($796|0),($797|0),($526|0),($527|0))|0); + $798 = (___muldi3(($796|0),($797|0),($788|0),($789|0))|0); $799 = tempRet0; - $800 = (_i64Add(($798|0),($799|0),($524|0),($525|0))|0); - $801 = tempRet0; - $802 = (_i64Add(($800|0),($801|0),($522|0),($523|0))|0); - $803 = tempRet0; - $804 = (_i64Add(($802|0),($803|0),($788|0),($789|0))|0); - $805 = tempRet0; - $806 = (_bitshift64Shl(($788|0),($789|0),21)|0); + $800 = $426; + $801 = $800; + $802 = HEAP32[$801>>2]|0; + $803 = (($800) + 4)|0; + $804 = $803; + $805 = HEAP32[$804>>2]|0; + $806 = (_bitshift64Ashr(0,($802|0),32)|0); $807 = tempRet0; - $808 = (_i64Subtract(($520|0),($521|0),($806|0),($807|0))|0); - $809 = tempRet0; - $810 = (_i64Add(($562|0),($563|0),1048576,0)|0); - $811 = tempRet0; - $812 = (_bitshift64Ashr(($810|0),($811|0),21)|0); - $813 = tempRet0; - $814 = (_i64Add(($570|0),($571|0),($574|0),($575|0))|0); + $808 = $181; + $809 = $808; + $810 = HEAP32[$809>>2]|0; + $811 = (($808) + 4)|0; + $812 = $811; + $813 = HEAP32[$812>>2]|0; + $814 = (_bitshift64Ashr(0,($810|0),32)|0); $815 = tempRet0; - $816 = (_i64Add(($814|0),($815|0),($572|0),($573|0))|0); + $816 = (___muldi3(($814|0),($815|0),($806|0),($807|0))|0); $817 = tempRet0; - $818 = (_i64Add(($816|0),($817|0),($568|0),($569|0))|0); + $818 = (_i64Add(($816|0),($817|0),($798|0),($799|0))|0); $819 = tempRet0; - $820 = (_i64Add(($818|0),($819|0),($566|0),($567|0))|0); - $821 = tempRet0; - $822 = (_i64Add(($820|0),($821|0),($564|0),($565|0))|0); - $823 = tempRet0; - $824 = (_i64Add(($822|0),($823|0),($812|0),($813|0))|0); - $825 = tempRet0; - $826 = (_bitshift64Shl(($812|0),($813|0),21)|0); + $820 = $44; + $821 = $820; + $822 = HEAP32[$821>>2]|0; + $823 = (($820) + 4)|0; + $824 = $823; + $825 = HEAP32[$824>>2]|0; + $826 = (_bitshift64Ashr(0,($822|0),32)|0); $827 = tempRet0; - $828 = (_i64Subtract(($562|0),($563|0),($826|0),($827|0))|0); - $829 = tempRet0; - $830 = (_i64Add(($592|0),($593|0),1048576,0)|0); - $831 = tempRet0; - $832 = (_bitshift64Ashr(($830|0),($831|0),21)|0); - $833 = tempRet0; - $834 = (_i64Add(($598|0),($599|0),($600|0),($601|0))|0); + $828 = $725; + $829 = $828; + $830 = HEAP32[$829>>2]|0; + $831 = (($828) + 4)|0; + $832 = $831; + $833 = HEAP32[$832>>2]|0; + $834 = (_bitshift64Ashr(0,($830|0),32)|0); $835 = tempRet0; - $836 = (_i64Add(($834|0),($835|0),($596|0),($597|0))|0); + $836 = (___muldi3(($834|0),($835|0),($826|0),($827|0))|0); $837 = tempRet0; - $838 = (_i64Add(($836|0),($837|0),($594|0),($595|0))|0); + $838 = (_i64Add(($818|0),($819|0),($836|0),($837|0))|0); $839 = tempRet0; - $840 = (_i64Add(($838|0),($839|0),($832|0),($833|0))|0); - $841 = tempRet0; - $842 = (_bitshift64Shl(($832|0),($833|0),21)|0); - $843 = tempRet0; - $844 = (_i64Subtract(($592|0),($593|0),($842|0),($843|0))|0); - $845 = tempRet0; - $846 = (_i64Add(($610|0),($611|0),1048576,0)|0); + $840 = $738; + $841 = $840; + $842 = HEAP32[$841>>2]|0; + $843 = (($840) + 4)|0; + $844 = $843; + $845 = HEAP32[$844>>2]|0; + $846 = (_bitshift64Ashr(0,($842|0),32)|0); $847 = tempRet0; - $848 = (_bitshift64Lshr(($846|0),($847|0),21)|0); - $849 = tempRet0; - $850 = (_i64Add(($616|0),($617|0),($848|0),($849|0))|0); - $851 = tempRet0; - $852 = (_bitshift64Shl(($848|0),($849|0),21)|0); - $853 = tempRet0; - $854 = (_i64Subtract(($610|0),($611|0),($852|0),($853|0))|0); + $848 = $33; + $849 = $848; + $850 = HEAP32[$849>>2]|0; + $851 = (($848) + 4)|0; + $852 = $851; + $853 = HEAP32[$852>>2]|0; + $854 = (_bitshift64Ashr(0,($850|0),32)|0); $855 = tempRet0; - $856 = (_i64Add(($618|0),($619|0),1048576,0)|0); + $856 = (___muldi3(($854|0),($855|0),($846|0),($847|0))|0); $857 = tempRet0; - $858 = (_bitshift64Lshr(($856|0),($857|0),21)|0); + $858 = (_i64Add(($838|0),($839|0),($856|0),($857|0))|0); $859 = tempRet0; - $860 = (_bitshift64Shl(($858|0),($859|0),21)|0); + $860 = (_bitshift64Shl(($858|0),($859|0),1)|0); $861 = tempRet0; - $862 = (_i64Subtract(($618|0),($619|0),($860|0),($861|0))|0); + $862 = (_i64Add(($860|0),($861|0),($780|0),($781|0))|0); $863 = tempRet0; - $864 = (_i64Add(($628|0),($629|0),1048576,0)|0); - $865 = tempRet0; - $866 = (_bitshift64Lshr(($864|0),($865|0),21)|0); - $867 = tempRet0; - $868 = (_bitshift64Shl(($866|0),($867|0),21)|0); - $869 = tempRet0; - $870 = (_i64Subtract(($628|0),($629|0),($868|0),($869|0))|0); + $864 = $109; + $865 = $864; + $866 = HEAP32[$865>>2]|0; + $867 = (($864) + 4)|0; + $868 = $867; + $869 = HEAP32[$868>>2]|0; + $870 = (_bitshift64Ashr(0,($866|0),32)|0); $871 = tempRet0; - $872 = (_i64Add(($646|0),($647|0),1048576,0)|0); - $873 = tempRet0; - $874 = (_bitshift64Ashr(($872|0),($873|0),21)|0); - $875 = tempRet0; - $876 = (_i64Add(($874|0),($875|0),($670|0),($671|0))|0); - $877 = tempRet0; - $878 = (_bitshift64Shl(($874|0),($875|0),21)|0); + $872 = $560; + $873 = $872; + $874 = HEAP32[$873>>2]|0; + $875 = (($872) + 4)|0; + $876 = $875; + $877 = HEAP32[$876>>2]|0; + $878 = (_bitshift64Ashr(0,($874|0),32)|0); $879 = tempRet0; - $880 = (_i64Subtract(($646|0),($647|0),($878|0),($879|0))|0); + $880 = (___muldi3(($878|0),($879|0),($870|0),($871|0))|0); $881 = tempRet0; - $882 = (_i64Add(($666|0),($667|0),1048576,0)|0); + $882 = (_i64Add(($862|0),($863|0),($880|0),($881|0))|0); $883 = tempRet0; - $884 = (_bitshift64Ashr(($882|0),($883|0),21)|0); - $885 = tempRet0; - $886 = (_bitshift64Shl(($884|0),($885|0),21)|0); - $887 = tempRet0; - $888 = (_i64Subtract(($666|0),($667|0),($886|0),($887|0))|0); - $889 = tempRet0; - $890 = (_i64Add(($692|0),($693|0),1048576,0)|0); + $884 = $573; + $885 = $884; + $886 = HEAP32[$885>>2]|0; + $887 = (($884) + 4)|0; + $888 = $887; + $889 = HEAP32[$888>>2]|0; + $890 = (_bitshift64Ashr(0,($886|0),32)|0); $891 = tempRet0; - $892 = (_bitshift64Ashr(($890|0),($891|0),21)|0); - $893 = tempRet0; - $894 = (_bitshift64Shl(($892|0),($893|0),21)|0); - $895 = tempRet0; - $896 = (_i64Add(($720|0),($721|0),1048576,0)|0); - $897 = tempRet0; - $898 = (_bitshift64Ashr(($896|0),($897|0),21)|0); + $892 = $96; + $893 = $892; + $894 = HEAP32[$893>>2]|0; + $895 = (($892) + 4)|0; + $896 = $895; + $897 = HEAP32[$896>>2]|0; + $898 = (_bitshift64Ashr(0,($894|0),32)|0); $899 = tempRet0; - $900 = (_i64Add(($898|0),($899|0),($756|0),($757|0))|0); + $900 = (___muldi3(($898|0),($899|0),($890|0),($891|0))|0); $901 = tempRet0; - $902 = (_bitshift64Shl(($898|0),($899|0),21)|0); + $902 = (_i64Add(($882|0),($883|0),($900|0),($901|0))|0); $903 = tempRet0; - $904 = (_i64Subtract(($720|0),($721|0),($902|0),($903|0))|0); - $905 = tempRet0; - $906 = (_i64Add(($752|0),($753|0),1048576,0)|0); - $907 = tempRet0; - $908 = (_bitshift64Ashr(($906|0),($907|0),21)|0); - $909 = tempRet0; - $910 = (_i64Add(($784|0),($785|0),($908|0),($909|0))|0); + $904 = $1; + $905 = $904; + $906 = HEAP32[$905>>2]|0; + $907 = (($904) + 4)|0; + $908 = $907; + $909 = HEAP32[$908>>2]|0; + $910 = (_bitshift64Ashr(0,($906|0),32)|0); $911 = tempRet0; - $912 = (_bitshift64Shl(($908|0),($909|0),21)|0); - $913 = tempRet0; - $914 = (_i64Subtract(($752|0),($753|0),($912|0),($913|0))|0); - $915 = tempRet0; - $916 = (_i64Add(($780|0),($781|0),1048576,0)|0); - $917 = tempRet0; - $918 = (_bitshift64Ashr(($916|0),($917|0),21)|0); - $919 = tempRet0; - $920 = (_i64Add(($808|0),($809|0),($918|0),($919|0))|0); - $921 = tempRet0; - $922 = (_bitshift64Shl(($918|0),($919|0),21)|0); - $923 = tempRet0; - $924 = (_i64Subtract(($780|0),($781|0),($922|0),($923|0))|0); - $925 = tempRet0; - $926 = (_i64Add(($804|0),($805|0),1048576,0)|0); - $927 = tempRet0; - $928 = (_bitshift64Ashr(($926|0),($927|0),21)|0); - $929 = tempRet0; - $930 = (_i64Add(($828|0),($829|0),($928|0),($929|0))|0); - $931 = tempRet0; - $932 = (_bitshift64Shl(($928|0),($929|0),21)|0); + $912 = ((($2)) + 64|0); + $913 = $912; + $914 = $913; + $915 = HEAP32[$914>>2]|0; + $916 = (($913) + 4)|0; + $917 = $916; + $918 = HEAP32[$917>>2]|0; + $919 = (_bitshift64Ashr(0,($915|0),32)|0); + $920 = tempRet0; + $921 = (___muldi3(($919|0),($920|0),($910|0),($911|0))|0); + $922 = tempRet0; + $923 = (_i64Add(($902|0),($903|0),($921|0),($922|0))|0); + $924 = tempRet0; + $925 = ((($1)) + 64|0); + $926 = $925; + $927 = $926; + $928 = HEAP32[$927>>2]|0; + $929 = (($926) + 4)|0; + $930 = $929; + $931 = HEAP32[$930>>2]|0; + $932 = (_bitshift64Ashr(0,($928|0),32)|0); $933 = tempRet0; - $934 = (_i64Subtract(($804|0),($805|0),($932|0),($933|0))|0); - $935 = tempRet0; - $936 = (_i64Add(($824|0),($825|0),1048576,0)|0); - $937 = tempRet0; - $938 = (_bitshift64Ashr(($936|0),($937|0),21)|0); - $939 = tempRet0; - $940 = (_i64Add(($938|0),($939|0),($844|0),($845|0))|0); + $934 = $2; + $935 = $934; + $936 = HEAP32[$935>>2]|0; + $937 = (($934) + 4)|0; + $938 = $937; + $939 = HEAP32[$938>>2]|0; + $940 = (_bitshift64Ashr(0,($936|0),32)|0); $941 = tempRet0; - $942 = (_bitshift64Shl(($938|0),($939|0),21)|0); + $942 = (___muldi3(($940|0),($941|0),($932|0),($933|0))|0); $943 = tempRet0; - $944 = (_i64Subtract(($824|0),($825|0),($942|0),($943|0))|0); + $944 = (_i64Add(($923|0),($924|0),($942|0),($943|0))|0); $945 = tempRet0; - $946 = (_i64Add(($840|0),($841|0),1048576,0)|0); - $947 = tempRet0; - $948 = (_bitshift64Ashr(($946|0),($947|0),21)|0); - $949 = tempRet0; - $950 = (_i64Add(($948|0),($949|0),($854|0),($855|0))|0); - $951 = tempRet0; - $952 = (_bitshift64Shl(($948|0),($949|0),21)|0); - $953 = tempRet0; - $954 = (_i64Subtract(($840|0),($841|0),($952|0),($953|0))|0); - $955 = tempRet0; - $956 = (_i64Add(($850|0),($851|0),1048576,0)|0); - $957 = tempRet0; - $958 = (_bitshift64Lshr(($956|0),($957|0),21)|0); - $959 = tempRet0; - $960 = (_i64Add(($958|0),($959|0),($862|0),($863|0))|0); - $961 = tempRet0; - $962 = (_bitshift64Shl(($958|0),($959|0),21)|0); - $963 = tempRet0; - $964 = (_i64Subtract(($850|0),($851|0),($962|0),($963|0))|0); - $965 = tempRet0; - $966 = (___muldi3(($858|0),($859|0),666643,0)|0); - $967 = tempRet0; - $968 = (_i64Add(($966|0),($967|0),($914|0),($915|0))|0); - $969 = tempRet0; - $970 = (___muldi3(($858|0),($859|0),470296,0)|0); - $971 = tempRet0; - $972 = (_i64Add(($970|0),($971|0),($910|0),($911|0))|0); - $973 = tempRet0; - $974 = (___muldi3(($858|0),($859|0),654183,0)|0); - $975 = tempRet0; - $976 = (_i64Add(($974|0),($975|0),($924|0),($925|0))|0); - $977 = tempRet0; - $978 = (___muldi3(($858|0),($859|0),-997805,-1)|0); - $979 = tempRet0; - $980 = (_i64Add(($978|0),($979|0),($920|0),($921|0))|0); - $981 = tempRet0; - $982 = (___muldi3(($858|0),($859|0),136657,0)|0); - $983 = tempRet0; - $984 = (_i64Add(($982|0),($983|0),($934|0),($935|0))|0); - $985 = tempRet0; - $986 = (___muldi3(($858|0),($859|0),-683901,-1)|0); - $987 = tempRet0; - $988 = (_i64Add(($930|0),($931|0),($986|0),($987|0))|0); - $989 = tempRet0; - $990 = (___muldi3(($960|0),($961|0),666643,0)|0); - $991 = tempRet0; - $992 = (_i64Add(($990|0),($991|0),($900|0),($901|0))|0); - $993 = tempRet0; - $994 = (___muldi3(($960|0),($961|0),470296,0)|0); - $995 = tempRet0; - $996 = (_i64Add(($994|0),($995|0),($968|0),($969|0))|0); - $997 = tempRet0; - $998 = (___muldi3(($960|0),($961|0),654183,0)|0); - $999 = tempRet0; - $1000 = (_i64Add(($998|0),($999|0),($972|0),($973|0))|0); - $1001 = tempRet0; - $1002 = (___muldi3(($960|0),($961|0),-997805,-1)|0); - $1003 = tempRet0; - $1004 = (_i64Add(($1002|0),($1003|0),($976|0),($977|0))|0); - $1005 = tempRet0; - $1006 = (___muldi3(($960|0),($961|0),136657,0)|0); - $1007 = tempRet0; - $1008 = (_i64Add(($1006|0),($1007|0),($980|0),($981|0))|0); - $1009 = tempRet0; - $1010 = (___muldi3(($960|0),($961|0),-683901,-1)|0); - $1011 = tempRet0; - $1012 = (_i64Add(($984|0),($985|0),($1010|0),($1011|0))|0); - $1013 = tempRet0; - $1014 = (___muldi3(($964|0),($965|0),666643,0)|0); - $1015 = tempRet0; - $1016 = (_i64Add(($1014|0),($1015|0),($904|0),($905|0))|0); - $1017 = tempRet0; - $1018 = (___muldi3(($964|0),($965|0),470296,0)|0); - $1019 = tempRet0; - $1020 = (_i64Add(($1018|0),($1019|0),($992|0),($993|0))|0); - $1021 = tempRet0; - $1022 = (___muldi3(($964|0),($965|0),654183,0)|0); - $1023 = tempRet0; - $1024 = (_i64Add(($1022|0),($1023|0),($996|0),($997|0))|0); - $1025 = tempRet0; - $1026 = (___muldi3(($964|0),($965|0),-997805,-1)|0); - $1027 = tempRet0; - $1028 = (_i64Add(($1026|0),($1027|0),($1000|0),($1001|0))|0); - $1029 = tempRet0; - $1030 = (___muldi3(($964|0),($965|0),136657,0)|0); - $1031 = tempRet0; - $1032 = (_i64Add(($1030|0),($1031|0),($1004|0),($1005|0))|0); - $1033 = tempRet0; - $1034 = (___muldi3(($964|0),($965|0),-683901,-1)|0); - $1035 = tempRet0; - $1036 = (_i64Add(($1008|0),($1009|0),($1034|0),($1035|0))|0); - $1037 = tempRet0; - $1038 = (___muldi3(($950|0),($951|0),666643,0)|0); - $1039 = tempRet0; - $1040 = (___muldi3(($950|0),($951|0),470296,0)|0); - $1041 = tempRet0; - $1042 = (_i64Add(($1040|0),($1041|0),($1016|0),($1017|0))|0); - $1043 = tempRet0; - $1044 = (___muldi3(($950|0),($951|0),654183,0)|0); - $1045 = tempRet0; - $1046 = (_i64Add(($1044|0),($1045|0),($1020|0),($1021|0))|0); - $1047 = tempRet0; - $1048 = (___muldi3(($950|0),($951|0),-997805,-1)|0); - $1049 = tempRet0; - $1050 = (_i64Add(($1048|0),($1049|0),($1024|0),($1025|0))|0); - $1051 = tempRet0; - $1052 = (___muldi3(($950|0),($951|0),136657,0)|0); - $1053 = tempRet0; - $1054 = (_i64Add(($1052|0),($1053|0),($1028|0),($1029|0))|0); - $1055 = tempRet0; - $1056 = (___muldi3(($950|0),($951|0),-683901,-1)|0); - $1057 = tempRet0; - $1058 = (_i64Add(($1032|0),($1033|0),($1056|0),($1057|0))|0); - $1059 = tempRet0; - $1060 = (___muldi3(($954|0),($955|0),666643,0)|0); - $1061 = tempRet0; - $1062 = (___muldi3(($954|0),($955|0),470296,0)|0); - $1063 = tempRet0; - $1064 = (___muldi3(($954|0),($955|0),654183,0)|0); - $1065 = tempRet0; - $1066 = (_i64Add(($1064|0),($1065|0),($1042|0),($1043|0))|0); - $1067 = tempRet0; - $1068 = (___muldi3(($954|0),($955|0),-997805,-1)|0); - $1069 = tempRet0; - $1070 = (_i64Add(($1046|0),($1047|0),($1068|0),($1069|0))|0); - $1071 = tempRet0; - $1072 = (___muldi3(($954|0),($955|0),136657,0)|0); - $1073 = tempRet0; - $1074 = (_i64Add(($1072|0),($1073|0),($1050|0),($1051|0))|0); - $1075 = tempRet0; - $1076 = (___muldi3(($954|0),($955|0),-683901,-1)|0); - $1077 = tempRet0; - $1078 = (_i64Add(($1054|0),($1055|0),($1076|0),($1077|0))|0); - $1079 = tempRet0; - $1080 = (___muldi3(($940|0),($941|0),666643,0)|0); - $1081 = tempRet0; - $1082 = (_i64Add(($284|0),($285|0),($1080|0),($1081|0))|0); - $1083 = tempRet0; - $1084 = (_i64Add(($1082|0),($1083|0),($884|0),($885|0))|0); - $1085 = tempRet0; - $1086 = (_i64Subtract(($1084|0),($1085|0),($694|0),($695|0))|0); - $1087 = tempRet0; - $1088 = (___muldi3(($940|0),($941|0),470296,0)|0); - $1089 = tempRet0; - $1090 = (___muldi3(($940|0),($941|0),654183,0)|0); - $1091 = tempRet0; - $1092 = (_i64Add(($1062|0),($1063|0),($1038|0),($1039|0))|0); - $1093 = tempRet0; - $1094 = (_i64Add(($1092|0),($1093|0),($1090|0),($1091|0))|0); - $1095 = tempRet0; - $1096 = (_i64Add(($1094|0),($1095|0),($336|0),($337|0))|0); - $1097 = tempRet0; - $1098 = (_i64Add(($1096|0),($1097|0),($892|0),($893|0))|0); - $1099 = tempRet0; - $1100 = (_i64Subtract(($1098|0),($1099|0),($722|0),($723|0))|0); - $1101 = tempRet0; - $1102 = (___muldi3(($940|0),($941|0),-997805,-1)|0); - $1103 = tempRet0; - $1104 = (_i64Add(($1066|0),($1067|0),($1102|0),($1103|0))|0); - $1105 = tempRet0; - $1106 = (___muldi3(($940|0),($941|0),136657,0)|0); - $1107 = tempRet0; - $1108 = (_i64Add(($1070|0),($1071|0),($1106|0),($1107|0))|0); - $1109 = tempRet0; - $1110 = (___muldi3(($940|0),($941|0),-683901,-1)|0); - $1111 = tempRet0; - $1112 = (_i64Add(($1074|0),($1075|0),($1110|0),($1111|0))|0); - $1113 = tempRet0; - $1114 = (_i64Add(($1086|0),($1087|0),1048576,0)|0); - $1115 = tempRet0; - $1116 = (_bitshift64Ashr(($1114|0),($1115|0),21)|0); - $1117 = tempRet0; - $1118 = (_i64Add(($1088|0),($1089|0),($1060|0),($1061|0))|0); - $1119 = tempRet0; - $1120 = (_i64Add(($1118|0),($1119|0),($692|0),($693|0))|0); - $1121 = tempRet0; - $1122 = (_i64Subtract(($1120|0),($1121|0),($894|0),($895|0))|0); - $1123 = tempRet0; - $1124 = (_i64Add(($1122|0),($1123|0),($1116|0),($1117|0))|0); + $946 = ((($0)) + 64|0); + $947 = $946; + $948 = $947; + HEAP32[$948>>2] = $944; + $949 = (($947) + 4)|0; + $950 = $949; + HEAP32[$950>>2] = $945; + $951 = $301; + $952 = $951; + $953 = HEAP32[$952>>2]|0; + $954 = (($951) + 4)|0; + $955 = $954; + $956 = HEAP32[$955>>2]|0; + $957 = (_bitshift64Ashr(0,($953|0),32)|0); + $958 = tempRet0; + $959 = $413; + $960 = $959; + $961 = HEAP32[$960>>2]|0; + $962 = (($959) + 4)|0; + $963 = $962; + $964 = HEAP32[$963>>2]|0; + $965 = (_bitshift64Ashr(0,($961|0),32)|0); + $966 = tempRet0; + $967 = (___muldi3(($965|0),($966|0),($957|0),($958|0))|0); + $968 = tempRet0; + $969 = $426; + $970 = $969; + $971 = HEAP32[$970>>2]|0; + $972 = (($969) + 4)|0; + $973 = $972; + $974 = HEAP32[$973>>2]|0; + $975 = (_bitshift64Ashr(0,($971|0),32)|0); + $976 = tempRet0; + $977 = $288; + $978 = $977; + $979 = HEAP32[$978>>2]|0; + $980 = (($977) + 4)|0; + $981 = $980; + $982 = HEAP32[$981>>2]|0; + $983 = (_bitshift64Ashr(0,($979|0),32)|0); + $984 = tempRet0; + $985 = (___muldi3(($983|0),($984|0),($975|0),($976|0))|0); + $986 = tempRet0; + $987 = (_i64Add(($985|0),($986|0),($967|0),($968|0))|0); + $988 = tempRet0; + $989 = $194; + $990 = $989; + $991 = HEAP32[$990>>2]|0; + $992 = (($989) + 4)|0; + $993 = $992; + $994 = HEAP32[$993>>2]|0; + $995 = (_bitshift64Ashr(0,($991|0),32)|0); + $996 = tempRet0; + $997 = $560; + $998 = $997; + $999 = HEAP32[$998>>2]|0; + $1000 = (($997) + 4)|0; + $1001 = $1000; + $1002 = HEAP32[$1001>>2]|0; + $1003 = (_bitshift64Ashr(0,($999|0),32)|0); + $1004 = tempRet0; + $1005 = (___muldi3(($1003|0),($1004|0),($995|0),($996|0))|0); + $1006 = tempRet0; + $1007 = (_i64Add(($987|0),($988|0),($1005|0),($1006|0))|0); + $1008 = tempRet0; + $1009 = $573; + $1010 = $1009; + $1011 = HEAP32[$1010>>2]|0; + $1012 = (($1009) + 4)|0; + $1013 = $1012; + $1014 = HEAP32[$1013>>2]|0; + $1015 = (_bitshift64Ashr(0,($1011|0),32)|0); + $1016 = tempRet0; + $1017 = $181; + $1018 = $1017; + $1019 = HEAP32[$1018>>2]|0; + $1020 = (($1017) + 4)|0; + $1021 = $1020; + $1022 = HEAP32[$1021>>2]|0; + $1023 = (_bitshift64Ashr(0,($1019|0),32)|0); + $1024 = tempRet0; + $1025 = (___muldi3(($1023|0),($1024|0),($1015|0),($1016|0))|0); + $1026 = tempRet0; + $1027 = (_i64Add(($1007|0),($1008|0),($1025|0),($1026|0))|0); + $1028 = tempRet0; + $1029 = $109; + $1030 = $1029; + $1031 = HEAP32[$1030>>2]|0; + $1032 = (($1029) + 4)|0; + $1033 = $1032; + $1034 = HEAP32[$1033>>2]|0; + $1035 = (_bitshift64Ashr(0,($1031|0),32)|0); + $1036 = tempRet0; + $1037 = $725; + $1038 = $1037; + $1039 = HEAP32[$1038>>2]|0; + $1040 = (($1037) + 4)|0; + $1041 = $1040; + $1042 = HEAP32[$1041>>2]|0; + $1043 = (_bitshift64Ashr(0,($1039|0),32)|0); + $1044 = tempRet0; + $1045 = (___muldi3(($1043|0),($1044|0),($1035|0),($1036|0))|0); + $1046 = tempRet0; + $1047 = (_i64Add(($1027|0),($1028|0),($1045|0),($1046|0))|0); + $1048 = tempRet0; + $1049 = $738; + $1050 = $1049; + $1051 = HEAP32[$1050>>2]|0; + $1052 = (($1049) + 4)|0; + $1053 = $1052; + $1054 = HEAP32[$1053>>2]|0; + $1055 = (_bitshift64Ashr(0,($1051|0),32)|0); + $1056 = tempRet0; + $1057 = $96; + $1058 = $1057; + $1059 = HEAP32[$1058>>2]|0; + $1060 = (($1057) + 4)|0; + $1061 = $1060; + $1062 = HEAP32[$1061>>2]|0; + $1063 = (_bitshift64Ashr(0,($1059|0),32)|0); + $1064 = tempRet0; + $1065 = (___muldi3(($1063|0),($1064|0),($1055|0),($1056|0))|0); + $1066 = tempRet0; + $1067 = (_i64Add(($1047|0),($1048|0),($1065|0),($1066|0))|0); + $1068 = tempRet0; + $1069 = $44; + $1070 = $1069; + $1071 = HEAP32[$1070>>2]|0; + $1072 = (($1069) + 4)|0; + $1073 = $1072; + $1074 = HEAP32[$1073>>2]|0; + $1075 = (_bitshift64Ashr(0,($1071|0),32)|0); + $1076 = tempRet0; + $1077 = $912; + $1078 = $1077; + $1079 = HEAP32[$1078>>2]|0; + $1080 = (($1077) + 4)|0; + $1081 = $1080; + $1082 = HEAP32[$1081>>2]|0; + $1083 = (_bitshift64Ashr(0,($1079|0),32)|0); + $1084 = tempRet0; + $1085 = (___muldi3(($1083|0),($1084|0),($1075|0),($1076|0))|0); + $1086 = tempRet0; + $1087 = (_i64Add(($1067|0),($1068|0),($1085|0),($1086|0))|0); + $1088 = tempRet0; + $1089 = $925; + $1090 = $1089; + $1091 = HEAP32[$1090>>2]|0; + $1092 = (($1089) + 4)|0; + $1093 = $1092; + $1094 = HEAP32[$1093>>2]|0; + $1095 = (_bitshift64Ashr(0,($1091|0),32)|0); + $1096 = tempRet0; + $1097 = $33; + $1098 = $1097; + $1099 = HEAP32[$1098>>2]|0; + $1100 = (($1097) + 4)|0; + $1101 = $1100; + $1102 = HEAP32[$1101>>2]|0; + $1103 = (_bitshift64Ashr(0,($1099|0),32)|0); + $1104 = tempRet0; + $1105 = (___muldi3(($1103|0),($1104|0),($1095|0),($1096|0))|0); + $1106 = tempRet0; + $1107 = (_i64Add(($1087|0),($1088|0),($1105|0),($1106|0))|0); + $1108 = tempRet0; + $1109 = $1; + $1110 = $1109; + $1111 = HEAP32[$1110>>2]|0; + $1112 = (($1109) + 4)|0; + $1113 = $1112; + $1114 = HEAP32[$1113>>2]|0; + $1115 = (_bitshift64Ashr(0,($1111|0),32)|0); + $1116 = tempRet0; + $1117 = ((($2)) + 72|0); + $1118 = $1117; + $1119 = $1118; + $1120 = HEAP32[$1119>>2]|0; + $1121 = (($1118) + 4)|0; + $1122 = $1121; + $1123 = HEAP32[$1122>>2]|0; + $1124 = (_bitshift64Ashr(0,($1120|0),32)|0); $1125 = tempRet0; - $1126 = (_bitshift64Shl(($1116|0),($1117|0),21)|0); + $1126 = (___muldi3(($1124|0),($1125|0),($1115|0),($1116|0))|0); $1127 = tempRet0; - $1128 = (_i64Subtract(($1086|0),($1087|0),($1126|0),($1127|0))|0); + $1128 = (_i64Add(($1107|0),($1108|0),($1126|0),($1127|0))|0); $1129 = tempRet0; - $1130 = (_i64Add(($1100|0),($1101|0),1048576,0)|0); - $1131 = tempRet0; - $1132 = (_bitshift64Ashr(($1130|0),($1131|0),21)|0); - $1133 = tempRet0; - $1134 = (_i64Add(($1104|0),($1105|0),($1132|0),($1133|0))|0); - $1135 = tempRet0; - $1136 = (_bitshift64Shl(($1132|0),($1133|0),21)|0); - $1137 = tempRet0; - $1138 = (_i64Subtract(($1100|0),($1101|0),($1136|0),($1137|0))|0); - $1139 = tempRet0; - $1140 = (_i64Add(($1108|0),($1109|0),1048576,0)|0); - $1141 = tempRet0; - $1142 = (_bitshift64Ashr(($1140|0),($1141|0),21)|0); - $1143 = tempRet0; - $1144 = (_i64Add(($1112|0),($1113|0),($1142|0),($1143|0))|0); - $1145 = tempRet0; - $1146 = (_bitshift64Shl(($1142|0),($1143|0),21)|0); - $1147 = tempRet0; - $1148 = (_i64Subtract(($1108|0),($1109|0),($1146|0),($1147|0))|0); - $1149 = tempRet0; - $1150 = (_i64Add(($1078|0),($1079|0),1048576,0)|0); - $1151 = tempRet0; - $1152 = (_bitshift64Ashr(($1150|0),($1151|0),21)|0); - $1153 = tempRet0; - $1154 = (_i64Add(($1152|0),($1153|0),($1058|0),($1059|0))|0); - $1155 = tempRet0; - $1156 = (_bitshift64Shl(($1152|0),($1153|0),21)|0); - $1157 = tempRet0; - $1158 = (_i64Subtract(($1078|0),($1079|0),($1156|0),($1157|0))|0); - $1159 = tempRet0; - $1160 = (_i64Add(($1036|0),($1037|0),1048576,0)|0); - $1161 = tempRet0; - $1162 = (_bitshift64Ashr(($1160|0),($1161|0),21)|0); + $1130 = ((($1)) + 72|0); + $1131 = $1130; + $1132 = $1131; + $1133 = HEAP32[$1132>>2]|0; + $1134 = (($1131) + 4)|0; + $1135 = $1134; + $1136 = HEAP32[$1135>>2]|0; + $1137 = (_bitshift64Ashr(0,($1133|0),32)|0); + $1138 = tempRet0; + $1139 = $2; + $1140 = $1139; + $1141 = HEAP32[$1140>>2]|0; + $1142 = (($1139) + 4)|0; + $1143 = $1142; + $1144 = HEAP32[$1143>>2]|0; + $1145 = (_bitshift64Ashr(0,($1141|0),32)|0); + $1146 = tempRet0; + $1147 = (___muldi3(($1145|0),($1146|0),($1137|0),($1138|0))|0); + $1148 = tempRet0; + $1149 = (_i64Add(($1128|0),($1129|0),($1147|0),($1148|0))|0); + $1150 = tempRet0; + $1151 = ((($0)) + 72|0); + $1152 = $1151; + $1153 = $1152; + HEAP32[$1153>>2] = $1149; + $1154 = (($1152) + 4)|0; + $1155 = $1154; + HEAP32[$1155>>2] = $1150; + $1156 = $426; + $1157 = $1156; + $1158 = HEAP32[$1157>>2]|0; + $1159 = (($1156) + 4)|0; + $1160 = $1159; + $1161 = HEAP32[$1160>>2]|0; + $1162 = (_bitshift64Ashr(0,($1158|0),32)|0); $1163 = tempRet0; - $1164 = (_i64Add(($1162|0),($1163|0),($1012|0),($1013|0))|0); - $1165 = tempRet0; - $1166 = (_bitshift64Shl(($1162|0),($1163|0),21)|0); - $1167 = tempRet0; - $1168 = (_i64Subtract(($1036|0),($1037|0),($1166|0),($1167|0))|0); - $1169 = tempRet0; - $1170 = (_i64Add(($988|0),($989|0),1048576,0)|0); + $1164 = $413; + $1165 = $1164; + $1166 = HEAP32[$1165>>2]|0; + $1167 = (($1164) + 4)|0; + $1168 = $1167; + $1169 = HEAP32[$1168>>2]|0; + $1170 = (_bitshift64Ashr(0,($1166|0),32)|0); $1171 = tempRet0; - $1172 = (_bitshift64Ashr(($1170|0),($1171|0),21)|0); + $1172 = (___muldi3(($1170|0),($1171|0),($1162|0),($1163|0))|0); $1173 = tempRet0; - $1174 = (_i64Add(($1172|0),($1173|0),($944|0),($945|0))|0); - $1175 = tempRet0; - $1176 = (_bitshift64Shl(($1172|0),($1173|0),21)|0); - $1177 = tempRet0; - $1178 = (_i64Subtract(($988|0),($989|0),($1176|0),($1177|0))|0); - $1179 = tempRet0; - $1180 = (_i64Add(($1124|0),($1125|0),1048576,0)|0); + $1174 = $194; + $1175 = $1174; + $1176 = HEAP32[$1175>>2]|0; + $1177 = (($1174) + 4)|0; + $1178 = $1177; + $1179 = HEAP32[$1178>>2]|0; + $1180 = (_bitshift64Ashr(0,($1176|0),32)|0); $1181 = tempRet0; - $1182 = (_bitshift64Ashr(($1180|0),($1181|0),21)|0); - $1183 = tempRet0; - $1184 = (_i64Add(($1182|0),($1183|0),($1138|0),($1139|0))|0); - $1185 = tempRet0; - $1186 = (_bitshift64Shl(($1182|0),($1183|0),21)|0); - $1187 = tempRet0; - $1188 = (_i64Subtract(($1124|0),($1125|0),($1186|0),($1187|0))|0); + $1182 = $725; + $1183 = $1182; + $1184 = HEAP32[$1183>>2]|0; + $1185 = (($1182) + 4)|0; + $1186 = $1185; + $1187 = HEAP32[$1186>>2]|0; + $1188 = (_bitshift64Ashr(0,($1184|0),32)|0); $1189 = tempRet0; - $1190 = (_i64Add(($1134|0),($1135|0),1048576,0)|0); + $1190 = (___muldi3(($1188|0),($1189|0),($1180|0),($1181|0))|0); $1191 = tempRet0; - $1192 = (_bitshift64Ashr(($1190|0),($1191|0),21)|0); + $1192 = (_i64Add(($1190|0),($1191|0),($1172|0),($1173|0))|0); $1193 = tempRet0; - $1194 = (_i64Add(($1192|0),($1193|0),($1148|0),($1149|0))|0); - $1195 = tempRet0; - $1196 = (_bitshift64Shl(($1192|0),($1193|0),21)|0); - $1197 = tempRet0; - $1198 = (_i64Subtract(($1134|0),($1135|0),($1196|0),($1197|0))|0); - $1199 = tempRet0; - $1200 = (_i64Add(($1144|0),($1145|0),1048576,0)|0); + $1194 = $738; + $1195 = $1194; + $1196 = HEAP32[$1195>>2]|0; + $1197 = (($1194) + 4)|0; + $1198 = $1197; + $1199 = HEAP32[$1198>>2]|0; + $1200 = (_bitshift64Ashr(0,($1196|0),32)|0); $1201 = tempRet0; - $1202 = (_bitshift64Ashr(($1200|0),($1201|0),21)|0); - $1203 = tempRet0; - $1204 = (_i64Add(($1202|0),($1203|0),($1158|0),($1159|0))|0); - $1205 = tempRet0; - $1206 = (_bitshift64Shl(($1202|0),($1203|0),21)|0); - $1207 = tempRet0; - $1208 = (_i64Subtract(($1144|0),($1145|0),($1206|0),($1207|0))|0); + $1202 = $181; + $1203 = $1202; + $1204 = HEAP32[$1203>>2]|0; + $1205 = (($1202) + 4)|0; + $1206 = $1205; + $1207 = HEAP32[$1206>>2]|0; + $1208 = (_bitshift64Ashr(0,($1204|0),32)|0); $1209 = tempRet0; - $1210 = (_i64Add(($1154|0),($1155|0),1048576,0)|0); + $1210 = (___muldi3(($1208|0),($1209|0),($1200|0),($1201|0))|0); $1211 = tempRet0; - $1212 = (_bitshift64Ashr(($1210|0),($1211|0),21)|0); + $1212 = (_i64Add(($1192|0),($1193|0),($1210|0),($1211|0))|0); $1213 = tempRet0; - $1214 = (_i64Add(($1212|0),($1213|0),($1168|0),($1169|0))|0); - $1215 = tempRet0; - $1216 = (_bitshift64Shl(($1212|0),($1213|0),21)|0); - $1217 = tempRet0; - $1218 = (_i64Subtract(($1154|0),($1155|0),($1216|0),($1217|0))|0); - $1219 = tempRet0; - $1220 = (_i64Add(($1164|0),($1165|0),1048576,0)|0); + $1214 = $44; + $1215 = $1214; + $1216 = HEAP32[$1215>>2]|0; + $1217 = (($1214) + 4)|0; + $1218 = $1217; + $1219 = HEAP32[$1218>>2]|0; + $1220 = (_bitshift64Ashr(0,($1216|0),32)|0); $1221 = tempRet0; - $1222 = (_bitshift64Ashr(($1220|0),($1221|0),21)|0); - $1223 = tempRet0; - $1224 = (_i64Add(($1222|0),($1223|0),($1178|0),($1179|0))|0); - $1225 = tempRet0; - $1226 = (_bitshift64Shl(($1222|0),($1223|0),21)|0); - $1227 = tempRet0; - $1228 = (_i64Subtract(($1164|0),($1165|0),($1226|0),($1227|0))|0); + $1222 = $1117; + $1223 = $1222; + $1224 = HEAP32[$1223>>2]|0; + $1225 = (($1222) + 4)|0; + $1226 = $1225; + $1227 = HEAP32[$1226>>2]|0; + $1228 = (_bitshift64Ashr(0,($1224|0),32)|0); $1229 = tempRet0; - $1230 = (___muldi3(($1174|0),($1175|0),666643,0)|0); + $1230 = (___muldi3(($1228|0),($1229|0),($1220|0),($1221|0))|0); $1231 = tempRet0; - $1232 = (_i64Add(($888|0),($889|0),($1230|0),($1231|0))|0); + $1232 = (_i64Add(($1212|0),($1213|0),($1230|0),($1231|0))|0); $1233 = tempRet0; - $1234 = (___muldi3(($1174|0),($1175|0),470296,0)|0); - $1235 = tempRet0; - $1236 = (_i64Add(($1234|0),($1235|0),($1128|0),($1129|0))|0); - $1237 = tempRet0; - $1238 = (___muldi3(($1174|0),($1175|0),654183,0)|0); - $1239 = tempRet0; - $1240 = (_i64Add(($1238|0),($1239|0),($1188|0),($1189|0))|0); + $1234 = $1130; + $1235 = $1234; + $1236 = HEAP32[$1235>>2]|0; + $1237 = (($1234) + 4)|0; + $1238 = $1237; + $1239 = HEAP32[$1238>>2]|0; + $1240 = (_bitshift64Ashr(0,($1236|0),32)|0); $1241 = tempRet0; - $1242 = (___muldi3(($1174|0),($1175|0),-997805,-1)|0); - $1243 = tempRet0; - $1244 = (_i64Add(($1242|0),($1243|0),($1184|0),($1185|0))|0); - $1245 = tempRet0; - $1246 = (___muldi3(($1174|0),($1175|0),136657,0)|0); - $1247 = tempRet0; - $1248 = (_i64Add(($1246|0),($1247|0),($1198|0),($1199|0))|0); + $1242 = $33; + $1243 = $1242; + $1244 = HEAP32[$1243>>2]|0; + $1245 = (($1242) + 4)|0; + $1246 = $1245; + $1247 = HEAP32[$1246>>2]|0; + $1248 = (_bitshift64Ashr(0,($1244|0),32)|0); $1249 = tempRet0; - $1250 = (___muldi3(($1174|0),($1175|0),-683901,-1)|0); + $1250 = (___muldi3(($1248|0),($1249|0),($1240|0),($1241|0))|0); $1251 = tempRet0; - $1252 = (_i64Add(($1194|0),($1195|0),($1250|0),($1251|0))|0); + $1252 = (_i64Add(($1232|0),($1233|0),($1250|0),($1251|0))|0); $1253 = tempRet0; - $1254 = (___muldi3(($1224|0),($1225|0),666643,0)|0); + $1254 = (_bitshift64Shl(($1252|0),($1253|0),1)|0); $1255 = tempRet0; - $1256 = (_i64Add(($876|0),($877|0),($1254|0),($1255|0))|0); - $1257 = tempRet0; - $1258 = (___muldi3(($1224|0),($1225|0),470296,0)|0); - $1259 = tempRet0; - $1260 = (_i64Add(($1232|0),($1233|0),($1258|0),($1259|0))|0); - $1261 = tempRet0; - $1262 = (___muldi3(($1224|0),($1225|0),654183,0)|0); + $1256 = $301; + $1257 = $1256; + $1258 = HEAP32[$1257>>2]|0; + $1259 = (($1256) + 4)|0; + $1260 = $1259; + $1261 = HEAP32[$1260>>2]|0; + $1262 = (_bitshift64Ashr(0,($1258|0),32)|0); $1263 = tempRet0; - $1264 = (_i64Add(($1236|0),($1237|0),($1262|0),($1263|0))|0); - $1265 = tempRet0; - $1266 = (___muldi3(($1224|0),($1225|0),-997805,-1)|0); - $1267 = tempRet0; - $1268 = (_i64Add(($1266|0),($1267|0),($1240|0),($1241|0))|0); - $1269 = tempRet0; - $1270 = (___muldi3(($1224|0),($1225|0),136657,0)|0); + $1264 = $560; + $1265 = $1264; + $1266 = HEAP32[$1265>>2]|0; + $1267 = (($1264) + 4)|0; + $1268 = $1267; + $1269 = HEAP32[$1268>>2]|0; + $1270 = (_bitshift64Ashr(0,($1266|0),32)|0); $1271 = tempRet0; - $1272 = (_i64Add(($1270|0),($1271|0),($1244|0),($1245|0))|0); + $1272 = (___muldi3(($1270|0),($1271|0),($1262|0),($1263|0))|0); $1273 = tempRet0; - $1274 = (___muldi3(($1224|0),($1225|0),-683901,-1)|0); + $1274 = (_i64Add(($1254|0),($1255|0),($1272|0),($1273|0))|0); $1275 = tempRet0; - $1276 = (_i64Add(($1248|0),($1249|0),($1274|0),($1275|0))|0); - $1277 = tempRet0; - $1278 = (___muldi3(($1228|0),($1229|0),666643,0)|0); - $1279 = tempRet0; - $1280 = (_i64Add(($880|0),($881|0),($1278|0),($1279|0))|0); - $1281 = tempRet0; - $1282 = (___muldi3(($1228|0),($1229|0),470296,0)|0); + $1276 = $573; + $1277 = $1276; + $1278 = HEAP32[$1277>>2]|0; + $1279 = (($1276) + 4)|0; + $1280 = $1279; + $1281 = HEAP32[$1280>>2]|0; + $1282 = (_bitshift64Ashr(0,($1278|0),32)|0); $1283 = tempRet0; - $1284 = (_i64Add(($1256|0),($1257|0),($1282|0),($1283|0))|0); - $1285 = tempRet0; - $1286 = (___muldi3(($1228|0),($1229|0),654183,0)|0); - $1287 = tempRet0; - $1288 = (_i64Add(($1260|0),($1261|0),($1286|0),($1287|0))|0); - $1289 = tempRet0; - $1290 = (___muldi3(($1228|0),($1229|0),-997805,-1)|0); + $1284 = $288; + $1285 = $1284; + $1286 = HEAP32[$1285>>2]|0; + $1287 = (($1284) + 4)|0; + $1288 = $1287; + $1289 = HEAP32[$1288>>2]|0; + $1290 = (_bitshift64Ashr(0,($1286|0),32)|0); $1291 = tempRet0; - $1292 = (_i64Add(($1264|0),($1265|0),($1290|0),($1291|0))|0); + $1292 = (___muldi3(($1290|0),($1291|0),($1282|0),($1283|0))|0); $1293 = tempRet0; - $1294 = (___muldi3(($1228|0),($1229|0),136657,0)|0); + $1294 = (_i64Add(($1274|0),($1275|0),($1292|0),($1293|0))|0); $1295 = tempRet0; - $1296 = (_i64Add(($1294|0),($1295|0),($1268|0),($1269|0))|0); - $1297 = tempRet0; - $1298 = (___muldi3(($1228|0),($1229|0),-683901,-1)|0); - $1299 = tempRet0; - $1300 = (_i64Add(($1272|0),($1273|0),($1298|0),($1299|0))|0); - $1301 = tempRet0; - $1302 = (___muldi3(($1214|0),($1215|0),666643,0)|0); + $1296 = $109; + $1297 = $1296; + $1298 = HEAP32[$1297>>2]|0; + $1299 = (($1296) + 4)|0; + $1300 = $1299; + $1301 = HEAP32[$1300>>2]|0; + $1302 = (_bitshift64Ashr(0,($1298|0),32)|0); $1303 = tempRet0; - $1304 = (___muldi3(($1214|0),($1215|0),470296,0)|0); - $1305 = tempRet0; - $1306 = (_i64Add(($1280|0),($1281|0),($1304|0),($1305|0))|0); - $1307 = tempRet0; - $1308 = (___muldi3(($1214|0),($1215|0),654183,0)|0); - $1309 = tempRet0; - $1310 = (_i64Add(($1284|0),($1285|0),($1308|0),($1309|0))|0); + $1304 = $912; + $1305 = $1304; + $1306 = HEAP32[$1305>>2]|0; + $1307 = (($1304) + 4)|0; + $1308 = $1307; + $1309 = HEAP32[$1308>>2]|0; + $1310 = (_bitshift64Ashr(0,($1306|0),32)|0); $1311 = tempRet0; - $1312 = (___muldi3(($1214|0),($1215|0),-997805,-1)|0); + $1312 = (___muldi3(($1310|0),($1311|0),($1302|0),($1303|0))|0); $1313 = tempRet0; - $1314 = (_i64Add(($1288|0),($1289|0),($1312|0),($1313|0))|0); + $1314 = (_i64Add(($1294|0),($1295|0),($1312|0),($1313|0))|0); $1315 = tempRet0; - $1316 = (___muldi3(($1214|0),($1215|0),136657,0)|0); - $1317 = tempRet0; - $1318 = (_i64Add(($1292|0),($1293|0),($1316|0),($1317|0))|0); - $1319 = tempRet0; - $1320 = (___muldi3(($1214|0),($1215|0),-683901,-1)|0); - $1321 = tempRet0; - $1322 = (_i64Add(($1296|0),($1297|0),($1320|0),($1321|0))|0); + $1316 = $925; + $1317 = $1316; + $1318 = HEAP32[$1317>>2]|0; + $1319 = (($1316) + 4)|0; + $1320 = $1319; + $1321 = HEAP32[$1320>>2]|0; + $1322 = (_bitshift64Ashr(0,($1318|0),32)|0); $1323 = tempRet0; - $1324 = (___muldi3(($1218|0),($1219|0),666643,0)|0); - $1325 = tempRet0; - $1326 = (___muldi3(($1218|0),($1219|0),470296,0)|0); - $1327 = tempRet0; - $1328 = (___muldi3(($1218|0),($1219|0),654183,0)|0); - $1329 = tempRet0; - $1330 = (_i64Add(($1306|0),($1307|0),($1328|0),($1329|0))|0); - $1331 = tempRet0; - $1332 = (___muldi3(($1218|0),($1219|0),-997805,-1)|0); - $1333 = tempRet0; - $1334 = (_i64Add(($1310|0),($1311|0),($1332|0),($1333|0))|0); - $1335 = tempRet0; - $1336 = (___muldi3(($1218|0),($1219|0),136657,0)|0); - $1337 = tempRet0; - $1338 = (_i64Add(($1314|0),($1315|0),($1336|0),($1337|0))|0); - $1339 = tempRet0; - $1340 = (___muldi3(($1218|0),($1219|0),-683901,-1)|0); - $1341 = tempRet0; - $1342 = (_i64Add(($1318|0),($1319|0),($1340|0),($1341|0))|0); - $1343 = tempRet0; - $1344 = (___muldi3(($1204|0),($1205|0),666643,0)|0); - $1345 = tempRet0; - $1346 = (_i64Add(($1344|0),($1345|0),($632|0),($633|0))|0); - $1347 = tempRet0; - $1348 = (___muldi3(($1204|0),($1205|0),470296,0)|0); - $1349 = tempRet0; - $1350 = (___muldi3(($1204|0),($1205|0),654183,0)|0); - $1351 = tempRet0; - $1352 = (_i64Add(($866|0),($867|0),($216|0),($217|0))|0); - $1353 = tempRet0; - $1354 = (_i64Subtract(($1352|0),($1353|0),($648|0),($649|0))|0); - $1355 = tempRet0; - $1356 = (_i64Add(($1354|0),($1355|0),($1302|0),($1303|0))|0); - $1357 = tempRet0; - $1358 = (_i64Add(($1356|0),($1357|0),($1350|0),($1351|0))|0); - $1359 = tempRet0; - $1360 = (_i64Add(($1358|0),($1359|0),($1326|0),($1327|0))|0); - $1361 = tempRet0; - $1362 = (___muldi3(($1204|0),($1205|0),-997805,-1)|0); - $1363 = tempRet0; - $1364 = (_i64Add(($1330|0),($1331|0),($1362|0),($1363|0))|0); - $1365 = tempRet0; - $1366 = (___muldi3(($1204|0),($1205|0),136657,0)|0); - $1367 = tempRet0; - $1368 = (_i64Add(($1334|0),($1335|0),($1366|0),($1367|0))|0); - $1369 = tempRet0; - $1370 = (___muldi3(($1204|0),($1205|0),-683901,-1)|0); - $1371 = tempRet0; - $1372 = (_i64Add(($1338|0),($1339|0),($1370|0),($1371|0))|0); - $1373 = tempRet0; - $1374 = (_i64Add(($1346|0),($1347|0),1048576,0)|0); - $1375 = tempRet0; - $1376 = (_bitshift64Ashr(($1374|0),($1375|0),21)|0); - $1377 = tempRet0; - $1378 = (_i64Add(($870|0),($871|0),($1348|0),($1349|0))|0); - $1379 = tempRet0; - $1380 = (_i64Add(($1378|0),($1379|0),($1324|0),($1325|0))|0); - $1381 = tempRet0; - $1382 = (_i64Add(($1380|0),($1381|0),($1376|0),($1377|0))|0); - $1383 = tempRet0; - $1384 = (_bitshift64Shl(($1376|0),($1377|0),21)|0); - $1385 = tempRet0; - $1386 = (_i64Subtract(($1346|0),($1347|0),($1384|0),($1385|0))|0); - $1387 = tempRet0; - $1388 = (_i64Add(($1360|0),($1361|0),1048576,0)|0); - $1389 = tempRet0; - $1390 = (_bitshift64Ashr(($1388|0),($1389|0),21)|0); - $1391 = tempRet0; - $1392 = (_i64Add(($1390|0),($1391|0),($1364|0),($1365|0))|0); - $1393 = tempRet0; - $1394 = (_bitshift64Shl(($1390|0),($1391|0),21)|0); - $1395 = tempRet0; - $1396 = (_i64Add(($1368|0),($1369|0),1048576,0)|0); - $1397 = tempRet0; - $1398 = (_bitshift64Ashr(($1396|0),($1397|0),21)|0); - $1399 = tempRet0; - $1400 = (_i64Add(($1398|0),($1399|0),($1372|0),($1373|0))|0); - $1401 = tempRet0; - $1402 = (_bitshift64Shl(($1398|0),($1399|0),21)|0); - $1403 = tempRet0; - $1404 = (_i64Add(($1342|0),($1343|0),1048576,0)|0); - $1405 = tempRet0; - $1406 = (_bitshift64Ashr(($1404|0),($1405|0),21)|0); - $1407 = tempRet0; - $1408 = (_i64Add(($1406|0),($1407|0),($1322|0),($1323|0))|0); - $1409 = tempRet0; - $1410 = (_bitshift64Shl(($1406|0),($1407|0),21)|0); - $1411 = tempRet0; - $1412 = (_i64Subtract(($1342|0),($1343|0),($1410|0),($1411|0))|0); - $1413 = tempRet0; - $1414 = (_i64Add(($1300|0),($1301|0),1048576,0)|0); - $1415 = tempRet0; - $1416 = (_bitshift64Ashr(($1414|0),($1415|0),21)|0); - $1417 = tempRet0; - $1418 = (_i64Add(($1276|0),($1277|0),($1416|0),($1417|0))|0); - $1419 = tempRet0; - $1420 = (_bitshift64Shl(($1416|0),($1417|0),21)|0); - $1421 = tempRet0; - $1422 = (_i64Subtract(($1300|0),($1301|0),($1420|0),($1421|0))|0); - $1423 = tempRet0; - $1424 = (_i64Add(($1252|0),($1253|0),1048576,0)|0); - $1425 = tempRet0; - $1426 = (_bitshift64Ashr(($1424|0),($1425|0),21)|0); - $1427 = tempRet0; - $1428 = (_i64Add(($1208|0),($1209|0),($1426|0),($1427|0))|0); - $1429 = tempRet0; - $1430 = (_bitshift64Shl(($1426|0),($1427|0),21)|0); - $1431 = tempRet0; - $1432 = (_i64Add(($1382|0),($1383|0),1048576,0)|0); - $1433 = tempRet0; - $1434 = (_bitshift64Ashr(($1432|0),($1433|0),21)|0); - $1435 = tempRet0; - $1436 = (_bitshift64Shl(($1434|0),($1435|0),21)|0); - $1437 = tempRet0; - $1438 = (_i64Add(($1392|0),($1393|0),1048576,0)|0); - $1439 = tempRet0; - $1440 = (_bitshift64Ashr(($1438|0),($1439|0),21)|0); - $1441 = tempRet0; - $1442 = (_bitshift64Shl(($1440|0),($1441|0),21)|0); - $1443 = tempRet0; - $1444 = (_i64Subtract(($1392|0),($1393|0),($1442|0),($1443|0))|0); - $1445 = tempRet0; - $1446 = (_i64Add(($1400|0),($1401|0),1048576,0)|0); - $1447 = tempRet0; - $1448 = (_bitshift64Ashr(($1446|0),($1447|0),21)|0); - $1449 = tempRet0; - $1450 = (_i64Add(($1412|0),($1413|0),($1448|0),($1449|0))|0); - $1451 = tempRet0; - $1452 = (_bitshift64Shl(($1448|0),($1449|0),21)|0); - $1453 = tempRet0; - $1454 = (_i64Subtract(($1400|0),($1401|0),($1452|0),($1453|0))|0); - $1455 = tempRet0; - $1456 = (_i64Add(($1408|0),($1409|0),1048576,0)|0); - $1457 = tempRet0; - $1458 = (_bitshift64Ashr(($1456|0),($1457|0),21)|0); - $1459 = tempRet0; - $1460 = (_i64Add(($1422|0),($1423|0),($1458|0),($1459|0))|0); - $1461 = tempRet0; - $1462 = (_bitshift64Shl(($1458|0),($1459|0),21)|0); - $1463 = tempRet0; - $1464 = (_i64Subtract(($1408|0),($1409|0),($1462|0),($1463|0))|0); - $1465 = tempRet0; - $1466 = (_i64Add(($1418|0),($1419|0),1048576,0)|0); - $1467 = tempRet0; - $1468 = (_bitshift64Ashr(($1466|0),($1467|0),21)|0); - $1469 = tempRet0; - $1470 = (_bitshift64Shl(($1468|0),($1469|0),21)|0); - $1471 = tempRet0; - $1472 = (_i64Subtract(($1418|0),($1419|0),($1470|0),($1471|0))|0); - $1473 = tempRet0; - $1474 = (_i64Add(($1428|0),($1429|0),1048576,0)|0); - $1475 = tempRet0; - $1476 = (_bitshift64Ashr(($1474|0),($1475|0),21)|0); - $1477 = tempRet0; - $1478 = (_bitshift64Shl(($1476|0),($1477|0),21)|0); - $1479 = tempRet0; - $1480 = (_i64Subtract(($1428|0),($1429|0),($1478|0),($1479|0))|0); - $1481 = tempRet0; - $1482 = (___muldi3(($1476|0),($1477|0),666643,0)|0); - $1483 = tempRet0; - $1484 = (_i64Add(($1386|0),($1387|0),($1482|0),($1483|0))|0); - $1485 = tempRet0; - $1486 = (___muldi3(($1476|0),($1477|0),470296,0)|0); - $1487 = tempRet0; - $1488 = (___muldi3(($1476|0),($1477|0),654183,0)|0); - $1489 = tempRet0; - $1490 = (___muldi3(($1476|0),($1477|0),-997805,-1)|0); - $1491 = tempRet0; - $1492 = (_i64Add(($1444|0),($1445|0),($1490|0),($1491|0))|0); - $1493 = tempRet0; - $1494 = (___muldi3(($1476|0),($1477|0),136657,0)|0); - $1495 = tempRet0; - $1496 = (___muldi3(($1476|0),($1477|0),-683901,-1)|0); - $1497 = tempRet0; - $1498 = (_i64Add(($1454|0),($1455|0),($1496|0),($1497|0))|0); - $1499 = tempRet0; - $1500 = (_bitshift64Ashr(($1484|0),($1485|0),21)|0); - $1501 = tempRet0; - $1502 = (_i64Add(($1486|0),($1487|0),($1382|0),($1383|0))|0); - $1503 = tempRet0; - $1504 = (_i64Subtract(($1502|0),($1503|0),($1436|0),($1437|0))|0); - $1505 = tempRet0; - $1506 = (_i64Add(($1504|0),($1505|0),($1500|0),($1501|0))|0); - $1507 = tempRet0; - $1508 = (_bitshift64Shl(($1500|0),($1501|0),21)|0); - $1509 = tempRet0; - $1510 = (_i64Subtract(($1484|0),($1485|0),($1508|0),($1509|0))|0); + $1324 = $96; + $1325 = $1324; + $1326 = HEAP32[$1325>>2]|0; + $1327 = (($1324) + 4)|0; + $1328 = $1327; + $1329 = HEAP32[$1328>>2]|0; + $1330 = (_bitshift64Ashr(0,($1326|0),32)|0); + $1331 = tempRet0; + $1332 = (___muldi3(($1330|0),($1331|0),($1322|0),($1323|0))|0); + $1333 = tempRet0; + $1334 = (_i64Add(($1314|0),($1315|0),($1332|0),($1333|0))|0); + $1335 = tempRet0; + $1336 = ((($0)) + 80|0); + $1337 = $1336; + $1338 = $1337; + HEAP32[$1338>>2] = $1334; + $1339 = (($1337) + 4)|0; + $1340 = $1339; + HEAP32[$1340>>2] = $1335; + $1341 = $426; + $1342 = $1341; + $1343 = HEAP32[$1342>>2]|0; + $1344 = (($1341) + 4)|0; + $1345 = $1344; + $1346 = HEAP32[$1345>>2]|0; + $1347 = (_bitshift64Ashr(0,($1343|0),32)|0); + $1348 = tempRet0; + $1349 = $560; + $1350 = $1349; + $1351 = HEAP32[$1350>>2]|0; + $1352 = (($1349) + 4)|0; + $1353 = $1352; + $1354 = HEAP32[$1353>>2]|0; + $1355 = (_bitshift64Ashr(0,($1351|0),32)|0); + $1356 = tempRet0; + $1357 = (___muldi3(($1355|0),($1356|0),($1347|0),($1348|0))|0); + $1358 = tempRet0; + $1359 = $573; + $1360 = $1359; + $1361 = HEAP32[$1360>>2]|0; + $1362 = (($1359) + 4)|0; + $1363 = $1362; + $1364 = HEAP32[$1363>>2]|0; + $1365 = (_bitshift64Ashr(0,($1361|0),32)|0); + $1366 = tempRet0; + $1367 = $413; + $1368 = $1367; + $1369 = HEAP32[$1368>>2]|0; + $1370 = (($1367) + 4)|0; + $1371 = $1370; + $1372 = HEAP32[$1371>>2]|0; + $1373 = (_bitshift64Ashr(0,($1369|0),32)|0); + $1374 = tempRet0; + $1375 = (___muldi3(($1373|0),($1374|0),($1365|0),($1366|0))|0); + $1376 = tempRet0; + $1377 = (_i64Add(($1375|0),($1376|0),($1357|0),($1358|0))|0); + $1378 = tempRet0; + $1379 = $301; + $1380 = $1379; + $1381 = HEAP32[$1380>>2]|0; + $1382 = (($1379) + 4)|0; + $1383 = $1382; + $1384 = HEAP32[$1383>>2]|0; + $1385 = (_bitshift64Ashr(0,($1381|0),32)|0); + $1386 = tempRet0; + $1387 = $725; + $1388 = $1387; + $1389 = HEAP32[$1388>>2]|0; + $1390 = (($1387) + 4)|0; + $1391 = $1390; + $1392 = HEAP32[$1391>>2]|0; + $1393 = (_bitshift64Ashr(0,($1389|0),32)|0); + $1394 = tempRet0; + $1395 = (___muldi3(($1393|0),($1394|0),($1385|0),($1386|0))|0); + $1396 = tempRet0; + $1397 = (_i64Add(($1377|0),($1378|0),($1395|0),($1396|0))|0); + $1398 = tempRet0; + $1399 = $738; + $1400 = $1399; + $1401 = HEAP32[$1400>>2]|0; + $1402 = (($1399) + 4)|0; + $1403 = $1402; + $1404 = HEAP32[$1403>>2]|0; + $1405 = (_bitshift64Ashr(0,($1401|0),32)|0); + $1406 = tempRet0; + $1407 = $288; + $1408 = $1407; + $1409 = HEAP32[$1408>>2]|0; + $1410 = (($1407) + 4)|0; + $1411 = $1410; + $1412 = HEAP32[$1411>>2]|0; + $1413 = (_bitshift64Ashr(0,($1409|0),32)|0); + $1414 = tempRet0; + $1415 = (___muldi3(($1413|0),($1414|0),($1405|0),($1406|0))|0); + $1416 = tempRet0; + $1417 = (_i64Add(($1397|0),($1398|0),($1415|0),($1416|0))|0); + $1418 = tempRet0; + $1419 = $194; + $1420 = $1419; + $1421 = HEAP32[$1420>>2]|0; + $1422 = (($1419) + 4)|0; + $1423 = $1422; + $1424 = HEAP32[$1423>>2]|0; + $1425 = (_bitshift64Ashr(0,($1421|0),32)|0); + $1426 = tempRet0; + $1427 = $912; + $1428 = $1427; + $1429 = HEAP32[$1428>>2]|0; + $1430 = (($1427) + 4)|0; + $1431 = $1430; + $1432 = HEAP32[$1431>>2]|0; + $1433 = (_bitshift64Ashr(0,($1429|0),32)|0); + $1434 = tempRet0; + $1435 = (___muldi3(($1433|0),($1434|0),($1425|0),($1426|0))|0); + $1436 = tempRet0; + $1437 = (_i64Add(($1417|0),($1418|0),($1435|0),($1436|0))|0); + $1438 = tempRet0; + $1439 = $925; + $1440 = $1439; + $1441 = HEAP32[$1440>>2]|0; + $1442 = (($1439) + 4)|0; + $1443 = $1442; + $1444 = HEAP32[$1443>>2]|0; + $1445 = (_bitshift64Ashr(0,($1441|0),32)|0); + $1446 = tempRet0; + $1447 = $181; + $1448 = $1447; + $1449 = HEAP32[$1448>>2]|0; + $1450 = (($1447) + 4)|0; + $1451 = $1450; + $1452 = HEAP32[$1451>>2]|0; + $1453 = (_bitshift64Ashr(0,($1449|0),32)|0); + $1454 = tempRet0; + $1455 = (___muldi3(($1453|0),($1454|0),($1445|0),($1446|0))|0); + $1456 = tempRet0; + $1457 = (_i64Add(($1437|0),($1438|0),($1455|0),($1456|0))|0); + $1458 = tempRet0; + $1459 = $109; + $1460 = $1459; + $1461 = HEAP32[$1460>>2]|0; + $1462 = (($1459) + 4)|0; + $1463 = $1462; + $1464 = HEAP32[$1463>>2]|0; + $1465 = (_bitshift64Ashr(0,($1461|0),32)|0); + $1466 = tempRet0; + $1467 = $1117; + $1468 = $1467; + $1469 = HEAP32[$1468>>2]|0; + $1470 = (($1467) + 4)|0; + $1471 = $1470; + $1472 = HEAP32[$1471>>2]|0; + $1473 = (_bitshift64Ashr(0,($1469|0),32)|0); + $1474 = tempRet0; + $1475 = (___muldi3(($1473|0),($1474|0),($1465|0),($1466|0))|0); + $1476 = tempRet0; + $1477 = (_i64Add(($1457|0),($1458|0),($1475|0),($1476|0))|0); + $1478 = tempRet0; + $1479 = $1130; + $1480 = $1479; + $1481 = HEAP32[$1480>>2]|0; + $1482 = (($1479) + 4)|0; + $1483 = $1482; + $1484 = HEAP32[$1483>>2]|0; + $1485 = (_bitshift64Ashr(0,($1481|0),32)|0); + $1486 = tempRet0; + $1487 = $96; + $1488 = $1487; + $1489 = HEAP32[$1488>>2]|0; + $1490 = (($1487) + 4)|0; + $1491 = $1490; + $1492 = HEAP32[$1491>>2]|0; + $1493 = (_bitshift64Ashr(0,($1489|0),32)|0); + $1494 = tempRet0; + $1495 = (___muldi3(($1493|0),($1494|0),($1485|0),($1486|0))|0); + $1496 = tempRet0; + $1497 = (_i64Add(($1477|0),($1478|0),($1495|0),($1496|0))|0); + $1498 = tempRet0; + $1499 = ((($0)) + 88|0); + $1500 = $1499; + $1501 = $1500; + HEAP32[$1501>>2] = $1497; + $1502 = (($1500) + 4)|0; + $1503 = $1502; + HEAP32[$1503>>2] = $1498; + $1504 = $573; + $1505 = $1504; + $1506 = HEAP32[$1505>>2]|0; + $1507 = (($1504) + 4)|0; + $1508 = $1507; + $1509 = HEAP32[$1508>>2]|0; + $1510 = (_bitshift64Ashr(0,($1506|0),32)|0); $1511 = tempRet0; - $1512 = (_bitshift64Ashr(($1506|0),($1507|0),21)|0); - $1513 = tempRet0; - $1514 = (_i64Add(($1488|0),($1489|0),($1360|0),($1361|0))|0); - $1515 = tempRet0; - $1516 = (_i64Subtract(($1514|0),($1515|0),($1394|0),($1395|0))|0); - $1517 = tempRet0; - $1518 = (_i64Add(($1516|0),($1517|0),($1434|0),($1435|0))|0); + $1512 = $560; + $1513 = $1512; + $1514 = HEAP32[$1513>>2]|0; + $1515 = (($1512) + 4)|0; + $1516 = $1515; + $1517 = HEAP32[$1516>>2]|0; + $1518 = (_bitshift64Ashr(0,($1514|0),32)|0); $1519 = tempRet0; - $1520 = (_i64Add(($1518|0),($1519|0),($1512|0),($1513|0))|0); + $1520 = (___muldi3(($1518|0),($1519|0),($1510|0),($1511|0))|0); $1521 = tempRet0; - $1522 = (_bitshift64Shl(($1512|0),($1513|0),21)|0); - $1523 = tempRet0; - $1524 = (_i64Subtract(($1506|0),($1507|0),($1522|0),($1523|0))|0); - $1525 = tempRet0; - $1526 = (_bitshift64Ashr(($1520|0),($1521|0),21)|0); - $1527 = tempRet0; - $1528 = (_i64Add(($1526|0),($1527|0),($1492|0),($1493|0))|0); + $1522 = $426; + $1523 = $1522; + $1524 = HEAP32[$1523>>2]|0; + $1525 = (($1522) + 4)|0; + $1526 = $1525; + $1527 = HEAP32[$1526>>2]|0; + $1528 = (_bitshift64Ashr(0,($1524|0),32)|0); $1529 = tempRet0; - $1530 = (_bitshift64Shl(($1526|0),($1527|0),21)|0); - $1531 = tempRet0; - $1532 = (_i64Subtract(($1520|0),($1521|0),($1530|0),($1531|0))|0); - $1533 = tempRet0; - $1534 = (_bitshift64Ashr(($1528|0),($1529|0),21)|0); - $1535 = tempRet0; - $1536 = (_i64Add(($1494|0),($1495|0),($1368|0),($1369|0))|0); + $1530 = $725; + $1531 = $1530; + $1532 = HEAP32[$1531>>2]|0; + $1533 = (($1530) + 4)|0; + $1534 = $1533; + $1535 = HEAP32[$1534>>2]|0; + $1536 = (_bitshift64Ashr(0,($1532|0),32)|0); $1537 = tempRet0; - $1538 = (_i64Subtract(($1536|0),($1537|0),($1402|0),($1403|0))|0); + $1538 = (___muldi3(($1536|0),($1537|0),($1528|0),($1529|0))|0); $1539 = tempRet0; - $1540 = (_i64Add(($1538|0),($1539|0),($1440|0),($1441|0))|0); - $1541 = tempRet0; - $1542 = (_i64Add(($1540|0),($1541|0),($1534|0),($1535|0))|0); - $1543 = tempRet0; - $1544 = (_bitshift64Shl(($1534|0),($1535|0),21)|0); - $1545 = tempRet0; - $1546 = (_i64Subtract(($1528|0),($1529|0),($1544|0),($1545|0))|0); + $1540 = $738; + $1541 = $1540; + $1542 = HEAP32[$1541>>2]|0; + $1543 = (($1540) + 4)|0; + $1544 = $1543; + $1545 = HEAP32[$1544>>2]|0; + $1546 = (_bitshift64Ashr(0,($1542|0),32)|0); $1547 = tempRet0; - $1548 = (_bitshift64Ashr(($1542|0),($1543|0),21)|0); - $1549 = tempRet0; - $1550 = (_i64Add(($1548|0),($1549|0),($1498|0),($1499|0))|0); - $1551 = tempRet0; - $1552 = (_bitshift64Shl(($1548|0),($1549|0),21)|0); - $1553 = tempRet0; - $1554 = (_i64Subtract(($1542|0),($1543|0),($1552|0),($1553|0))|0); + $1548 = $413; + $1549 = $1548; + $1550 = HEAP32[$1549>>2]|0; + $1551 = (($1548) + 4)|0; + $1552 = $1551; + $1553 = HEAP32[$1552>>2]|0; + $1554 = (_bitshift64Ashr(0,($1550|0),32)|0); $1555 = tempRet0; - $1556 = (_bitshift64Ashr(($1550|0),($1551|0),21)|0); + $1556 = (___muldi3(($1554|0),($1555|0),($1546|0),($1547|0))|0); $1557 = tempRet0; - $1558 = (_i64Add(($1450|0),($1451|0),($1556|0),($1557|0))|0); + $1558 = (_i64Add(($1556|0),($1557|0),($1538|0),($1539|0))|0); $1559 = tempRet0; - $1560 = (_bitshift64Shl(($1556|0),($1557|0),21)|0); - $1561 = tempRet0; - $1562 = (_i64Subtract(($1550|0),($1551|0),($1560|0),($1561|0))|0); - $1563 = tempRet0; - $1564 = (_bitshift64Ashr(($1558|0),($1559|0),21)|0); - $1565 = tempRet0; - $1566 = (_i64Add(($1564|0),($1565|0),($1464|0),($1465|0))|0); + $1560 = $194; + $1561 = $1560; + $1562 = HEAP32[$1561>>2]|0; + $1563 = (($1560) + 4)|0; + $1564 = $1563; + $1565 = HEAP32[$1564>>2]|0; + $1566 = (_bitshift64Ashr(0,($1562|0),32)|0); $1567 = tempRet0; - $1568 = (_bitshift64Shl(($1564|0),($1565|0),21)|0); - $1569 = tempRet0; - $1570 = (_i64Subtract(($1558|0),($1559|0),($1568|0),($1569|0))|0); - $1571 = tempRet0; - $1572 = (_bitshift64Ashr(($1566|0),($1567|0),21)|0); - $1573 = tempRet0; - $1574 = (_i64Add(($1460|0),($1461|0),($1572|0),($1573|0))|0); + $1568 = $1117; + $1569 = $1568; + $1570 = HEAP32[$1569>>2]|0; + $1571 = (($1568) + 4)|0; + $1572 = $1571; + $1573 = HEAP32[$1572>>2]|0; + $1574 = (_bitshift64Ashr(0,($1570|0),32)|0); $1575 = tempRet0; - $1576 = (_bitshift64Shl(($1572|0),($1573|0),21)|0); + $1576 = (___muldi3(($1574|0),($1575|0),($1566|0),($1567|0))|0); $1577 = tempRet0; - $1578 = (_i64Subtract(($1566|0),($1567|0),($1576|0),($1577|0))|0); + $1578 = (_i64Add(($1558|0),($1559|0),($1576|0),($1577|0))|0); $1579 = tempRet0; - $1580 = (_bitshift64Ashr(($1574|0),($1575|0),21)|0); - $1581 = tempRet0; - $1582 = (_i64Add(($1580|0),($1581|0),($1472|0),($1473|0))|0); - $1583 = tempRet0; - $1584 = (_bitshift64Shl(($1580|0),($1581|0),21)|0); - $1585 = tempRet0; - $1586 = (_i64Subtract(($1574|0),($1575|0),($1584|0),($1585|0))|0); + $1580 = $1130; + $1581 = $1580; + $1582 = HEAP32[$1581>>2]|0; + $1583 = (($1580) + 4)|0; + $1584 = $1583; + $1585 = HEAP32[$1584>>2]|0; + $1586 = (_bitshift64Ashr(0,($1582|0),32)|0); $1587 = tempRet0; - $1588 = (_bitshift64Ashr(($1582|0),($1583|0),21)|0); - $1589 = tempRet0; - $1590 = (_i64Add(($1468|0),($1469|0),($1252|0),($1253|0))|0); - $1591 = tempRet0; - $1592 = (_i64Subtract(($1590|0),($1591|0),($1430|0),($1431|0))|0); - $1593 = tempRet0; - $1594 = (_i64Add(($1592|0),($1593|0),($1588|0),($1589|0))|0); + $1588 = $181; + $1589 = $1588; + $1590 = HEAP32[$1589>>2]|0; + $1591 = (($1588) + 4)|0; + $1592 = $1591; + $1593 = HEAP32[$1592>>2]|0; + $1594 = (_bitshift64Ashr(0,($1590|0),32)|0); $1595 = tempRet0; - $1596 = (_bitshift64Shl(($1588|0),($1589|0),21)|0); + $1596 = (___muldi3(($1594|0),($1595|0),($1586|0),($1587|0))|0); $1597 = tempRet0; - $1598 = (_i64Subtract(($1582|0),($1583|0),($1596|0),($1597|0))|0); + $1598 = (_i64Add(($1578|0),($1579|0),($1596|0),($1597|0))|0); $1599 = tempRet0; - $1600 = (_bitshift64Ashr(($1594|0),($1595|0),21)|0); + $1600 = (_bitshift64Shl(($1598|0),($1599|0),1)|0); $1601 = tempRet0; - $1602 = (_i64Add(($1600|0),($1601|0),($1480|0),($1481|0))|0); + $1602 = (_i64Add(($1600|0),($1601|0),($1520|0),($1521|0))|0); $1603 = tempRet0; - $1604 = (_bitshift64Shl(($1600|0),($1601|0),21)|0); - $1605 = tempRet0; - $1606 = (_i64Subtract(($1594|0),($1595|0),($1604|0),($1605|0))|0); - $1607 = tempRet0; - $1608 = (_bitshift64Ashr(($1602|0),($1603|0),21)|0); - $1609 = tempRet0; - $1610 = (_bitshift64Shl(($1608|0),($1609|0),21)|0); + $1604 = $301; + $1605 = $1604; + $1606 = HEAP32[$1605>>2]|0; + $1607 = (($1604) + 4)|0; + $1608 = $1607; + $1609 = HEAP32[$1608>>2]|0; + $1610 = (_bitshift64Ashr(0,($1606|0),32)|0); $1611 = tempRet0; - $1612 = (_i64Subtract(($1602|0),($1603|0),($1610|0),($1611|0))|0); - $1613 = tempRet0; - $1614 = (___muldi3(($1608|0),($1609|0),666643,0)|0); - $1615 = tempRet0; - $1616 = (_i64Add(($1614|0),($1615|0),($1510|0),($1511|0))|0); - $1617 = tempRet0; - $1618 = (___muldi3(($1608|0),($1609|0),470296,0)|0); + $1612 = $912; + $1613 = $1612; + $1614 = HEAP32[$1613>>2]|0; + $1615 = (($1612) + 4)|0; + $1616 = $1615; + $1617 = HEAP32[$1616>>2]|0; + $1618 = (_bitshift64Ashr(0,($1614|0),32)|0); $1619 = tempRet0; - $1620 = (_i64Add(($1524|0),($1525|0),($1618|0),($1619|0))|0); + $1620 = (___muldi3(($1618|0),($1619|0),($1610|0),($1611|0))|0); $1621 = tempRet0; - $1622 = (___muldi3(($1608|0),($1609|0),654183,0)|0); + $1622 = (_i64Add(($1602|0),($1603|0),($1620|0),($1621|0))|0); $1623 = tempRet0; - $1624 = (_i64Add(($1532|0),($1533|0),($1622|0),($1623|0))|0); - $1625 = tempRet0; - $1626 = (___muldi3(($1608|0),($1609|0),-997805,-1)|0); - $1627 = tempRet0; - $1628 = (_i64Add(($1546|0),($1547|0),($1626|0),($1627|0))|0); - $1629 = tempRet0; - $1630 = (___muldi3(($1608|0),($1609|0),136657,0)|0); + $1624 = $925; + $1625 = $1624; + $1626 = HEAP32[$1625>>2]|0; + $1627 = (($1624) + 4)|0; + $1628 = $1627; + $1629 = HEAP32[$1628>>2]|0; + $1630 = (_bitshift64Ashr(0,($1626|0),32)|0); $1631 = tempRet0; - $1632 = (_i64Add(($1554|0),($1555|0),($1630|0),($1631|0))|0); - $1633 = tempRet0; - $1634 = (___muldi3(($1608|0),($1609|0),-683901,-1)|0); - $1635 = tempRet0; - $1636 = (_i64Add(($1562|0),($1563|0),($1634|0),($1635|0))|0); - $1637 = tempRet0; - $1638 = (_bitshift64Ashr(($1616|0),($1617|0),21)|0); + $1632 = $288; + $1633 = $1632; + $1634 = HEAP32[$1633>>2]|0; + $1635 = (($1632) + 4)|0; + $1636 = $1635; + $1637 = HEAP32[$1636>>2]|0; + $1638 = (_bitshift64Ashr(0,($1634|0),32)|0); $1639 = tempRet0; - $1640 = (_i64Add(($1620|0),($1621|0),($1638|0),($1639|0))|0); + $1640 = (___muldi3(($1638|0),($1639|0),($1630|0),($1631|0))|0); $1641 = tempRet0; - $1642 = (_bitshift64Shl(($1638|0),($1639|0),21)|0); + $1642 = (_i64Add(($1622|0),($1623|0),($1640|0),($1641|0))|0); $1643 = tempRet0; - $1644 = (_i64Subtract(($1616|0),($1617|0),($1642|0),($1643|0))|0); - $1645 = tempRet0; - $1646 = (_bitshift64Ashr(($1640|0),($1641|0),21)|0); - $1647 = tempRet0; - $1648 = (_i64Add(($1624|0),($1625|0),($1646|0),($1647|0))|0); - $1649 = tempRet0; - $1650 = (_bitshift64Shl(($1646|0),($1647|0),21)|0); - $1651 = tempRet0; - $1652 = (_i64Subtract(($1640|0),($1641|0),($1650|0),($1651|0))|0); - $1653 = tempRet0; - $1654 = (_bitshift64Ashr(($1648|0),($1649|0),21)|0); - $1655 = tempRet0; - $1656 = (_i64Add(($1654|0),($1655|0),($1628|0),($1629|0))|0); - $1657 = tempRet0; - $1658 = (_bitshift64Shl(($1654|0),($1655|0),21)|0); - $1659 = tempRet0; - $1660 = (_i64Subtract(($1648|0),($1649|0),($1658|0),($1659|0))|0); - $1661 = tempRet0; - $1662 = (_bitshift64Ashr(($1656|0),($1657|0),21)|0); - $1663 = tempRet0; - $1664 = (_i64Add(($1632|0),($1633|0),($1662|0),($1663|0))|0); - $1665 = tempRet0; - $1666 = (_bitshift64Shl(($1662|0),($1663|0),21)|0); - $1667 = tempRet0; - $1668 = (_i64Subtract(($1656|0),($1657|0),($1666|0),($1667|0))|0); - $1669 = tempRet0; - $1670 = (_bitshift64Ashr(($1664|0),($1665|0),21)|0); - $1671 = tempRet0; - $1672 = (_i64Add(($1670|0),($1671|0),($1636|0),($1637|0))|0); - $1673 = tempRet0; - $1674 = (_bitshift64Shl(($1670|0),($1671|0),21)|0); - $1675 = tempRet0; - $1676 = (_i64Subtract(($1664|0),($1665|0),($1674|0),($1675|0))|0); - $1677 = tempRet0; - $1678 = (_bitshift64Ashr(($1672|0),($1673|0),21)|0); - $1679 = tempRet0; - $1680 = (_i64Add(($1678|0),($1679|0),($1570|0),($1571|0))|0); - $1681 = tempRet0; - $1682 = (_bitshift64Shl(($1678|0),($1679|0),21)|0); - $1683 = tempRet0; - $1684 = (_i64Subtract(($1672|0),($1673|0),($1682|0),($1683|0))|0); - $1685 = tempRet0; - $1686 = (_bitshift64Ashr(($1680|0),($1681|0),21)|0); - $1687 = tempRet0; - $1688 = (_i64Add(($1686|0),($1687|0),($1578|0),($1579|0))|0); - $1689 = tempRet0; - $1690 = (_bitshift64Shl(($1686|0),($1687|0),21)|0); - $1691 = tempRet0; - $1692 = (_i64Subtract(($1680|0),($1681|0),($1690|0),($1691|0))|0); - $1693 = tempRet0; - $1694 = (_bitshift64Ashr(($1688|0),($1689|0),21)|0); - $1695 = tempRet0; - $1696 = (_i64Add(($1694|0),($1695|0),($1586|0),($1587|0))|0); - $1697 = tempRet0; - $1698 = (_bitshift64Shl(($1694|0),($1695|0),21)|0); - $1699 = tempRet0; - $1700 = (_i64Subtract(($1688|0),($1689|0),($1698|0),($1699|0))|0); - $1701 = tempRet0; - $1702 = (_bitshift64Ashr(($1696|0),($1697|0),21)|0); - $1703 = tempRet0; - $1704 = (_i64Add(($1702|0),($1703|0),($1598|0),($1599|0))|0); - $1705 = tempRet0; - $1706 = (_bitshift64Shl(($1702|0),($1703|0),21)|0); - $1707 = tempRet0; - $1708 = (_i64Subtract(($1696|0),($1697|0),($1706|0),($1707|0))|0); - $1709 = tempRet0; - $1710 = (_bitshift64Ashr(($1704|0),($1705|0),21)|0); - $1711 = tempRet0; - $1712 = (_i64Add(($1710|0),($1711|0),($1606|0),($1607|0))|0); - $1713 = tempRet0; - $1714 = (_bitshift64Shl(($1710|0),($1711|0),21)|0); - $1715 = tempRet0; - $1716 = (_i64Subtract(($1704|0),($1705|0),($1714|0),($1715|0))|0); - $1717 = tempRet0; - $1718 = (_bitshift64Ashr(($1712|0),($1713|0),21)|0); - $1719 = tempRet0; - $1720 = (_i64Add(($1718|0),($1719|0),($1612|0),($1613|0))|0); - $1721 = tempRet0; - $1722 = (_bitshift64Shl(($1718|0),($1719|0),21)|0); - $1723 = tempRet0; - $1724 = (_i64Subtract(($1712|0),($1713|0),($1722|0),($1723|0))|0); - $1725 = tempRet0; - $1726 = $1644&255; - HEAP8[$s>>0] = $1726; - $1727 = (_bitshift64Lshr(($1644|0),($1645|0),8)|0); - $1728 = tempRet0; - $1729 = $1727&255; - $1730 = ((($s)) + 1|0); - HEAP8[$1730>>0] = $1729; - $1731 = (_bitshift64Lshr(($1644|0),($1645|0),16)|0); - $1732 = tempRet0; - $1733 = (_bitshift64Shl(($1652|0),($1653|0),5)|0); + $1644 = ((($0)) + 96|0); + $1645 = $1644; + $1646 = $1645; + HEAP32[$1646>>2] = $1642; + $1647 = (($1645) + 4)|0; + $1648 = $1647; + HEAP32[$1648>>2] = $1643; + $1649 = $573; + $1650 = $1649; + $1651 = HEAP32[$1650>>2]|0; + $1652 = (($1649) + 4)|0; + $1653 = $1652; + $1654 = HEAP32[$1653>>2]|0; + $1655 = (_bitshift64Ashr(0,($1651|0),32)|0); + $1656 = tempRet0; + $1657 = $725; + $1658 = $1657; + $1659 = HEAP32[$1658>>2]|0; + $1660 = (($1657) + 4)|0; + $1661 = $1660; + $1662 = HEAP32[$1661>>2]|0; + $1663 = (_bitshift64Ashr(0,($1659|0),32)|0); + $1664 = tempRet0; + $1665 = (___muldi3(($1663|0),($1664|0),($1655|0),($1656|0))|0); + $1666 = tempRet0; + $1667 = $738; + $1668 = $1667; + $1669 = HEAP32[$1668>>2]|0; + $1670 = (($1667) + 4)|0; + $1671 = $1670; + $1672 = HEAP32[$1671>>2]|0; + $1673 = (_bitshift64Ashr(0,($1669|0),32)|0); + $1674 = tempRet0; + $1675 = $560; + $1676 = $1675; + $1677 = HEAP32[$1676>>2]|0; + $1678 = (($1675) + 4)|0; + $1679 = $1678; + $1680 = HEAP32[$1679>>2]|0; + $1681 = (_bitshift64Ashr(0,($1677|0),32)|0); + $1682 = tempRet0; + $1683 = (___muldi3(($1681|0),($1682|0),($1673|0),($1674|0))|0); + $1684 = tempRet0; + $1685 = (_i64Add(($1683|0),($1684|0),($1665|0),($1666|0))|0); + $1686 = tempRet0; + $1687 = $426; + $1688 = $1687; + $1689 = HEAP32[$1688>>2]|0; + $1690 = (($1687) + 4)|0; + $1691 = $1690; + $1692 = HEAP32[$1691>>2]|0; + $1693 = (_bitshift64Ashr(0,($1689|0),32)|0); + $1694 = tempRet0; + $1695 = $912; + $1696 = $1695; + $1697 = HEAP32[$1696>>2]|0; + $1698 = (($1695) + 4)|0; + $1699 = $1698; + $1700 = HEAP32[$1699>>2]|0; + $1701 = (_bitshift64Ashr(0,($1697|0),32)|0); + $1702 = tempRet0; + $1703 = (___muldi3(($1701|0),($1702|0),($1693|0),($1694|0))|0); + $1704 = tempRet0; + $1705 = (_i64Add(($1685|0),($1686|0),($1703|0),($1704|0))|0); + $1706 = tempRet0; + $1707 = $925; + $1708 = $1707; + $1709 = HEAP32[$1708>>2]|0; + $1710 = (($1707) + 4)|0; + $1711 = $1710; + $1712 = HEAP32[$1711>>2]|0; + $1713 = (_bitshift64Ashr(0,($1709|0),32)|0); + $1714 = tempRet0; + $1715 = $413; + $1716 = $1715; + $1717 = HEAP32[$1716>>2]|0; + $1718 = (($1715) + 4)|0; + $1719 = $1718; + $1720 = HEAP32[$1719>>2]|0; + $1721 = (_bitshift64Ashr(0,($1717|0),32)|0); + $1722 = tempRet0; + $1723 = (___muldi3(($1721|0),($1722|0),($1713|0),($1714|0))|0); + $1724 = tempRet0; + $1725 = (_i64Add(($1705|0),($1706|0),($1723|0),($1724|0))|0); + $1726 = tempRet0; + $1727 = $301; + $1728 = $1727; + $1729 = HEAP32[$1728>>2]|0; + $1730 = (($1727) + 4)|0; + $1731 = $1730; + $1732 = HEAP32[$1731>>2]|0; + $1733 = (_bitshift64Ashr(0,($1729|0),32)|0); $1734 = tempRet0; - $1735 = $1733 | $1731; - $1734 | $1732; - $1736 = $1735&255; - $1737 = ((($s)) + 2|0); - HEAP8[$1737>>0] = $1736; - $1738 = (_bitshift64Lshr(($1652|0),($1653|0),3)|0); - $1739 = tempRet0; - $1740 = $1738&255; - $1741 = ((($s)) + 3|0); - HEAP8[$1741>>0] = $1740; - $1742 = (_bitshift64Lshr(($1652|0),($1653|0),11)|0); - $1743 = tempRet0; - $1744 = $1742&255; - $1745 = ((($s)) + 4|0); - HEAP8[$1745>>0] = $1744; - $1746 = (_bitshift64Lshr(($1652|0),($1653|0),19)|0); - $1747 = tempRet0; - $1748 = (_bitshift64Shl(($1660|0),($1661|0),2)|0); - $1749 = tempRet0; - $1750 = $1748 | $1746; - $1749 | $1747; - $1751 = $1750&255; - $1752 = ((($s)) + 5|0); - HEAP8[$1752>>0] = $1751; - $1753 = (_bitshift64Lshr(($1660|0),($1661|0),6)|0); + $1735 = $1117; + $1736 = $1735; + $1737 = HEAP32[$1736>>2]|0; + $1738 = (($1735) + 4)|0; + $1739 = $1738; + $1740 = HEAP32[$1739>>2]|0; + $1741 = (_bitshift64Ashr(0,($1737|0),32)|0); + $1742 = tempRet0; + $1743 = (___muldi3(($1741|0),($1742|0),($1733|0),($1734|0))|0); + $1744 = tempRet0; + $1745 = (_i64Add(($1725|0),($1726|0),($1743|0),($1744|0))|0); + $1746 = tempRet0; + $1747 = $1130; + $1748 = $1747; + $1749 = HEAP32[$1748>>2]|0; + $1750 = (($1747) + 4)|0; + $1751 = $1750; + $1752 = HEAP32[$1751>>2]|0; + $1753 = (_bitshift64Ashr(0,($1749|0),32)|0); $1754 = tempRet0; - $1755 = $1753&255; - $1756 = ((($s)) + 6|0); - HEAP8[$1756>>0] = $1755; - $1757 = (_bitshift64Lshr(($1660|0),($1661|0),14)|0); - $1758 = tempRet0; - $1759 = (_bitshift64Shl(($1668|0),($1669|0),7)|0); - $1760 = tempRet0; - $1761 = $1759 | $1757; - $1760 | $1758; - $1762 = $1761&255; - $1763 = ((($s)) + 7|0); - HEAP8[$1763>>0] = $1762; - $1764 = (_bitshift64Lshr(($1668|0),($1669|0),1)|0); - $1765 = tempRet0; - $1766 = $1764&255; - $1767 = ((($s)) + 8|0); - HEAP8[$1767>>0] = $1766; - $1768 = (_bitshift64Lshr(($1668|0),($1669|0),9)|0); - $1769 = tempRet0; - $1770 = $1768&255; - $1771 = ((($s)) + 9|0); - HEAP8[$1771>>0] = $1770; - $1772 = (_bitshift64Lshr(($1668|0),($1669|0),17)|0); - $1773 = tempRet0; - $1774 = (_bitshift64Shl(($1676|0),($1677|0),4)|0); - $1775 = tempRet0; - $1776 = $1774 | $1772; - $1775 | $1773; - $1777 = $1776&255; - $1778 = ((($s)) + 10|0); - HEAP8[$1778>>0] = $1777; - $1779 = (_bitshift64Lshr(($1676|0),($1677|0),4)|0); - $1780 = tempRet0; - $1781 = $1779&255; - $1782 = ((($s)) + 11|0); - HEAP8[$1782>>0] = $1781; - $1783 = (_bitshift64Lshr(($1676|0),($1677|0),12)|0); - $1784 = tempRet0; - $1785 = $1783&255; - $1786 = ((($s)) + 12|0); - HEAP8[$1786>>0] = $1785; - $1787 = (_bitshift64Lshr(($1676|0),($1677|0),20)|0); - $1788 = tempRet0; - $1789 = (_bitshift64Shl(($1684|0),($1685|0),1)|0); - $1790 = tempRet0; - $1791 = $1789 | $1787; - $1790 | $1788; - $1792 = $1791&255; - $1793 = ((($s)) + 13|0); - HEAP8[$1793>>0] = $1792; - $1794 = (_bitshift64Lshr(($1684|0),($1685|0),7)|0); - $1795 = tempRet0; - $1796 = $1794&255; - $1797 = ((($s)) + 14|0); - HEAP8[$1797>>0] = $1796; - $1798 = (_bitshift64Lshr(($1684|0),($1685|0),15)|0); - $1799 = tempRet0; - $1800 = (_bitshift64Shl(($1692|0),($1693|0),6)|0); - $1801 = tempRet0; - $1802 = $1800 | $1798; - $1801 | $1799; - $1803 = $1802&255; - $1804 = ((($s)) + 15|0); - HEAP8[$1804>>0] = $1803; - $1805 = (_bitshift64Lshr(($1692|0),($1693|0),2)|0); - $1806 = tempRet0; - $1807 = $1805&255; - $1808 = ((($s)) + 16|0); - HEAP8[$1808>>0] = $1807; - $1809 = (_bitshift64Lshr(($1692|0),($1693|0),10)|0); - $1810 = tempRet0; - $1811 = $1809&255; - $1812 = ((($s)) + 17|0); - HEAP8[$1812>>0] = $1811; - $1813 = (_bitshift64Lshr(($1692|0),($1693|0),18)|0); - $1814 = tempRet0; - $1815 = (_bitshift64Shl(($1700|0),($1701|0),3)|0); - $1816 = tempRet0; - $1817 = $1815 | $1813; - $1816 | $1814; - $1818 = $1817&255; - $1819 = ((($s)) + 18|0); - HEAP8[$1819>>0] = $1818; - $1820 = (_bitshift64Lshr(($1700|0),($1701|0),5)|0); - $1821 = tempRet0; - $1822 = $1820&255; - $1823 = ((($s)) + 19|0); - HEAP8[$1823>>0] = $1822; - $1824 = (_bitshift64Lshr(($1700|0),($1701|0),13)|0); + $1755 = $288; + $1756 = $1755; + $1757 = HEAP32[$1756>>2]|0; + $1758 = (($1755) + 4)|0; + $1759 = $1758; + $1760 = HEAP32[$1759>>2]|0; + $1761 = (_bitshift64Ashr(0,($1757|0),32)|0); + $1762 = tempRet0; + $1763 = (___muldi3(($1761|0),($1762|0),($1753|0),($1754|0))|0); + $1764 = tempRet0; + $1765 = (_i64Add(($1745|0),($1746|0),($1763|0),($1764|0))|0); + $1766 = tempRet0; + $1767 = ((($0)) + 104|0); + $1768 = $1767; + $1769 = $1768; + HEAP32[$1769>>2] = $1765; + $1770 = (($1768) + 4)|0; + $1771 = $1770; + HEAP32[$1771>>2] = $1766; + $1772 = $738; + $1773 = $1772; + $1774 = HEAP32[$1773>>2]|0; + $1775 = (($1772) + 4)|0; + $1776 = $1775; + $1777 = HEAP32[$1776>>2]|0; + $1778 = (_bitshift64Ashr(0,($1774|0),32)|0); + $1779 = tempRet0; + $1780 = $725; + $1781 = $1780; + $1782 = HEAP32[$1781>>2]|0; + $1783 = (($1780) + 4)|0; + $1784 = $1783; + $1785 = HEAP32[$1784>>2]|0; + $1786 = (_bitshift64Ashr(0,($1782|0),32)|0); + $1787 = tempRet0; + $1788 = (___muldi3(($1786|0),($1787|0),($1778|0),($1779|0))|0); + $1789 = tempRet0; + $1790 = $426; + $1791 = $1790; + $1792 = HEAP32[$1791>>2]|0; + $1793 = (($1790) + 4)|0; + $1794 = $1793; + $1795 = HEAP32[$1794>>2]|0; + $1796 = (_bitshift64Ashr(0,($1792|0),32)|0); + $1797 = tempRet0; + $1798 = $1117; + $1799 = $1798; + $1800 = HEAP32[$1799>>2]|0; + $1801 = (($1798) + 4)|0; + $1802 = $1801; + $1803 = HEAP32[$1802>>2]|0; + $1804 = (_bitshift64Ashr(0,($1800|0),32)|0); + $1805 = tempRet0; + $1806 = (___muldi3(($1804|0),($1805|0),($1796|0),($1797|0))|0); + $1807 = tempRet0; + $1808 = (_i64Add(($1806|0),($1807|0),($1788|0),($1789|0))|0); + $1809 = tempRet0; + $1810 = $1130; + $1811 = $1810; + $1812 = HEAP32[$1811>>2]|0; + $1813 = (($1810) + 4)|0; + $1814 = $1813; + $1815 = HEAP32[$1814>>2]|0; + $1816 = (_bitshift64Ashr(0,($1812|0),32)|0); + $1817 = tempRet0; + $1818 = $413; + $1819 = $1818; + $1820 = HEAP32[$1819>>2]|0; + $1821 = (($1818) + 4)|0; + $1822 = $1821; + $1823 = HEAP32[$1822>>2]|0; + $1824 = (_bitshift64Ashr(0,($1820|0),32)|0); $1825 = tempRet0; - $1826 = $1824&255; - $1827 = ((($s)) + 20|0); - HEAP8[$1827>>0] = $1826; - $1828 = $1708&255; - $1829 = ((($s)) + 21|0); - HEAP8[$1829>>0] = $1828; - $1830 = (_bitshift64Lshr(($1708|0),($1709|0),8)|0); + $1826 = (___muldi3(($1824|0),($1825|0),($1816|0),($1817|0))|0); + $1827 = tempRet0; + $1828 = (_i64Add(($1808|0),($1809|0),($1826|0),($1827|0))|0); + $1829 = tempRet0; + $1830 = (_bitshift64Shl(($1828|0),($1829|0),1)|0); $1831 = tempRet0; - $1832 = $1830&255; - $1833 = ((($s)) + 22|0); - HEAP8[$1833>>0] = $1832; - $1834 = (_bitshift64Lshr(($1708|0),($1709|0),16)|0); - $1835 = tempRet0; - $1836 = (_bitshift64Shl(($1716|0),($1717|0),5)|0); - $1837 = tempRet0; - $1838 = $1836 | $1834; - $1837 | $1835; - $1839 = $1838&255; - $1840 = ((($s)) + 23|0); - HEAP8[$1840>>0] = $1839; - $1841 = (_bitshift64Lshr(($1716|0),($1717|0),3)|0); - $1842 = tempRet0; - $1843 = $1841&255; - $1844 = ((($s)) + 24|0); - HEAP8[$1844>>0] = $1843; - $1845 = (_bitshift64Lshr(($1716|0),($1717|0),11)|0); - $1846 = tempRet0; - $1847 = $1845&255; - $1848 = ((($s)) + 25|0); - HEAP8[$1848>>0] = $1847; - $1849 = (_bitshift64Lshr(($1716|0),($1717|0),19)|0); - $1850 = tempRet0; - $1851 = (_bitshift64Shl(($1724|0),($1725|0),2)|0); - $1852 = tempRet0; - $1853 = $1851 | $1849; - $1852 | $1850; - $1854 = $1853&255; - $1855 = ((($s)) + 26|0); - HEAP8[$1855>>0] = $1854; - $1856 = (_bitshift64Lshr(($1724|0),($1725|0),6)|0); - $1857 = tempRet0; - $1858 = $1856&255; - $1859 = ((($s)) + 27|0); - HEAP8[$1859>>0] = $1858; - $1860 = (_bitshift64Lshr(($1724|0),($1725|0),14)|0); - $1861 = tempRet0; - $1862 = (_bitshift64Shl(($1720|0),($1721|0),7)|0); - $1863 = tempRet0; - $1864 = $1860 | $1862; - $1861 | $1863; - $1865 = $1864&255; - $1866 = ((($s)) + 28|0); - HEAP8[$1866>>0] = $1865; - $1867 = (_bitshift64Lshr(($1720|0),($1721|0),1)|0); - $1868 = tempRet0; - $1869 = $1867&255; - $1870 = ((($s)) + 29|0); - HEAP8[$1870>>0] = $1869; - $1871 = (_bitshift64Lshr(($1720|0),($1721|0),9)|0); - $1872 = tempRet0; - $1873 = $1871&255; - $1874 = ((($s)) + 30|0); - HEAP8[$1874>>0] = $1873; - $1875 = (_bitshift64Lshr(($1720|0),($1721|0),17)|0); - $1876 = tempRet0; - $1877 = $1875&255; - $1878 = ((($s)) + 31|0); - HEAP8[$1878>>0] = $1877; + $1832 = $573; + $1833 = $1832; + $1834 = HEAP32[$1833>>2]|0; + $1835 = (($1832) + 4)|0; + $1836 = $1835; + $1837 = HEAP32[$1836>>2]|0; + $1838 = (_bitshift64Ashr(0,($1834|0),32)|0); + $1839 = tempRet0; + $1840 = $912; + $1841 = $1840; + $1842 = HEAP32[$1841>>2]|0; + $1843 = (($1840) + 4)|0; + $1844 = $1843; + $1845 = HEAP32[$1844>>2]|0; + $1846 = (_bitshift64Ashr(0,($1842|0),32)|0); + $1847 = tempRet0; + $1848 = (___muldi3(($1846|0),($1847|0),($1838|0),($1839|0))|0); + $1849 = tempRet0; + $1850 = (_i64Add(($1830|0),($1831|0),($1848|0),($1849|0))|0); + $1851 = tempRet0; + $1852 = $925; + $1853 = $1852; + $1854 = HEAP32[$1853>>2]|0; + $1855 = (($1852) + 4)|0; + $1856 = $1855; + $1857 = HEAP32[$1856>>2]|0; + $1858 = (_bitshift64Ashr(0,($1854|0),32)|0); + $1859 = tempRet0; + $1860 = $560; + $1861 = $1860; + $1862 = HEAP32[$1861>>2]|0; + $1863 = (($1860) + 4)|0; + $1864 = $1863; + $1865 = HEAP32[$1864>>2]|0; + $1866 = (_bitshift64Ashr(0,($1862|0),32)|0); + $1867 = tempRet0; + $1868 = (___muldi3(($1866|0),($1867|0),($1858|0),($1859|0))|0); + $1869 = tempRet0; + $1870 = (_i64Add(($1850|0),($1851|0),($1868|0),($1869|0))|0); + $1871 = tempRet0; + $1872 = ((($0)) + 112|0); + $1873 = $1872; + $1874 = $1873; + HEAP32[$1874>>2] = $1870; + $1875 = (($1873) + 4)|0; + $1876 = $1875; + HEAP32[$1876>>2] = $1871; + $1877 = $738; + $1878 = $1877; + $1879 = HEAP32[$1878>>2]|0; + $1880 = (($1877) + 4)|0; + $1881 = $1880; + $1882 = HEAP32[$1881>>2]|0; + $1883 = (_bitshift64Ashr(0,($1879|0),32)|0); + $1884 = tempRet0; + $1885 = $912; + $1886 = $1885; + $1887 = HEAP32[$1886>>2]|0; + $1888 = (($1885) + 4)|0; + $1889 = $1888; + $1890 = HEAP32[$1889>>2]|0; + $1891 = (_bitshift64Ashr(0,($1887|0),32)|0); + $1892 = tempRet0; + $1893 = (___muldi3(($1891|0),($1892|0),($1883|0),($1884|0))|0); + $1894 = tempRet0; + $1895 = $925; + $1896 = $1895; + $1897 = HEAP32[$1896>>2]|0; + $1898 = (($1895) + 4)|0; + $1899 = $1898; + $1900 = HEAP32[$1899>>2]|0; + $1901 = (_bitshift64Ashr(0,($1897|0),32)|0); + $1902 = tempRet0; + $1903 = $725; + $1904 = $1903; + $1905 = HEAP32[$1904>>2]|0; + $1906 = (($1903) + 4)|0; + $1907 = $1906; + $1908 = HEAP32[$1907>>2]|0; + $1909 = (_bitshift64Ashr(0,($1905|0),32)|0); + $1910 = tempRet0; + $1911 = (___muldi3(($1909|0),($1910|0),($1901|0),($1902|0))|0); + $1912 = tempRet0; + $1913 = (_i64Add(($1911|0),($1912|0),($1893|0),($1894|0))|0); + $1914 = tempRet0; + $1915 = $573; + $1916 = $1915; + $1917 = HEAP32[$1916>>2]|0; + $1918 = (($1915) + 4)|0; + $1919 = $1918; + $1920 = HEAP32[$1919>>2]|0; + $1921 = (_bitshift64Ashr(0,($1917|0),32)|0); + $1922 = tempRet0; + $1923 = $1117; + $1924 = $1923; + $1925 = HEAP32[$1924>>2]|0; + $1926 = (($1923) + 4)|0; + $1927 = $1926; + $1928 = HEAP32[$1927>>2]|0; + $1929 = (_bitshift64Ashr(0,($1925|0),32)|0); + $1930 = tempRet0; + $1931 = (___muldi3(($1929|0),($1930|0),($1921|0),($1922|0))|0); + $1932 = tempRet0; + $1933 = (_i64Add(($1913|0),($1914|0),($1931|0),($1932|0))|0); + $1934 = tempRet0; + $1935 = $1130; + $1936 = $1935; + $1937 = HEAP32[$1936>>2]|0; + $1938 = (($1935) + 4)|0; + $1939 = $1938; + $1940 = HEAP32[$1939>>2]|0; + $1941 = (_bitshift64Ashr(0,($1937|0),32)|0); + $1942 = tempRet0; + $1943 = $560; + $1944 = $1943; + $1945 = HEAP32[$1944>>2]|0; + $1946 = (($1943) + 4)|0; + $1947 = $1946; + $1948 = HEAP32[$1947>>2]|0; + $1949 = (_bitshift64Ashr(0,($1945|0),32)|0); + $1950 = tempRet0; + $1951 = (___muldi3(($1949|0),($1950|0),($1941|0),($1942|0))|0); + $1952 = tempRet0; + $1953 = (_i64Add(($1933|0),($1934|0),($1951|0),($1952|0))|0); + $1954 = tempRet0; + $1955 = ((($0)) + 120|0); + $1956 = $1955; + $1957 = $1956; + HEAP32[$1957>>2] = $1953; + $1958 = (($1956) + 4)|0; + $1959 = $1958; + HEAP32[$1959>>2] = $1954; + $1960 = $925; + $1961 = $1960; + $1962 = HEAP32[$1961>>2]|0; + $1963 = (($1960) + 4)|0; + $1964 = $1963; + $1965 = HEAP32[$1964>>2]|0; + $1966 = (_bitshift64Ashr(0,($1962|0),32)|0); + $1967 = tempRet0; + $1968 = $912; + $1969 = $1968; + $1970 = HEAP32[$1969>>2]|0; + $1971 = (($1968) + 4)|0; + $1972 = $1971; + $1973 = HEAP32[$1972>>2]|0; + $1974 = (_bitshift64Ashr(0,($1970|0),32)|0); + $1975 = tempRet0; + $1976 = (___muldi3(($1974|0),($1975|0),($1966|0),($1967|0))|0); + $1977 = tempRet0; + $1978 = $738; + $1979 = $1978; + $1980 = HEAP32[$1979>>2]|0; + $1981 = (($1978) + 4)|0; + $1982 = $1981; + $1983 = HEAP32[$1982>>2]|0; + $1984 = (_bitshift64Ashr(0,($1980|0),32)|0); + $1985 = tempRet0; + $1986 = $1117; + $1987 = $1986; + $1988 = HEAP32[$1987>>2]|0; + $1989 = (($1986) + 4)|0; + $1990 = $1989; + $1991 = HEAP32[$1990>>2]|0; + $1992 = (_bitshift64Ashr(0,($1988|0),32)|0); + $1993 = tempRet0; + $1994 = (___muldi3(($1992|0),($1993|0),($1984|0),($1985|0))|0); + $1995 = tempRet0; + $1996 = $1130; + $1997 = $1996; + $1998 = HEAP32[$1997>>2]|0; + $1999 = (($1996) + 4)|0; + $2000 = $1999; + $2001 = HEAP32[$2000>>2]|0; + $2002 = (_bitshift64Ashr(0,($1998|0),32)|0); + $2003 = tempRet0; + $2004 = $725; + $2005 = $2004; + $2006 = HEAP32[$2005>>2]|0; + $2007 = (($2004) + 4)|0; + $2008 = $2007; + $2009 = HEAP32[$2008>>2]|0; + $2010 = (_bitshift64Ashr(0,($2006|0),32)|0); + $2011 = tempRet0; + $2012 = (___muldi3(($2010|0),($2011|0),($2002|0),($2003|0))|0); + $2013 = tempRet0; + $2014 = (_i64Add(($2012|0),($2013|0),($1994|0),($1995|0))|0); + $2015 = tempRet0; + $2016 = (_bitshift64Shl(($2014|0),($2015|0),1)|0); + $2017 = tempRet0; + $2018 = (_i64Add(($2016|0),($2017|0),($1976|0),($1977|0))|0); + $2019 = tempRet0; + $2020 = ((($0)) + 128|0); + $2021 = $2020; + $2022 = $2021; + HEAP32[$2022>>2] = $2018; + $2023 = (($2021) + 4)|0; + $2024 = $2023; + HEAP32[$2024>>2] = $2019; + $2025 = $925; + $2026 = $2025; + $2027 = HEAP32[$2026>>2]|0; + $2028 = (($2025) + 4)|0; + $2029 = $2028; + $2030 = HEAP32[$2029>>2]|0; + $2031 = (_bitshift64Ashr(0,($2027|0),32)|0); + $2032 = tempRet0; + $2033 = $1117; + $2034 = $2033; + $2035 = HEAP32[$2034>>2]|0; + $2036 = (($2033) + 4)|0; + $2037 = $2036; + $2038 = HEAP32[$2037>>2]|0; + $2039 = (_bitshift64Ashr(0,($2035|0),32)|0); + $2040 = tempRet0; + $2041 = (___muldi3(($2039|0),($2040|0),($2031|0),($2032|0))|0); + $2042 = tempRet0; + $2043 = $1130; + $2044 = $2043; + $2045 = HEAP32[$2044>>2]|0; + $2046 = (($2043) + 4)|0; + $2047 = $2046; + $2048 = HEAP32[$2047>>2]|0; + $2049 = (_bitshift64Ashr(0,($2045|0),32)|0); + $2050 = tempRet0; + $2051 = $912; + $2052 = $2051; + $2053 = HEAP32[$2052>>2]|0; + $2054 = (($2051) + 4)|0; + $2055 = $2054; + $2056 = HEAP32[$2055>>2]|0; + $2057 = (_bitshift64Ashr(0,($2053|0),32)|0); + $2058 = tempRet0; + $2059 = (___muldi3(($2057|0),($2058|0),($2049|0),($2050|0))|0); + $2060 = tempRet0; + $2061 = (_i64Add(($2059|0),($2060|0),($2041|0),($2042|0))|0); + $2062 = tempRet0; + $2063 = ((($0)) + 136|0); + $2064 = $2063; + $2065 = $2064; + HEAP32[$2065>>2] = $2061; + $2066 = (($2064) + 4)|0; + $2067 = $2066; + HEAP32[$2067>>2] = $2062; + $2068 = $1130; + $2069 = $2068; + $2070 = HEAP32[$2069>>2]|0; + $2071 = (($2068) + 4)|0; + $2072 = $2071; + $2073 = HEAP32[$2072>>2]|0; + $2074 = (_bitshift64Ashr(0,($2070|0),31)|0); + $2075 = tempRet0; + $2076 = $1117; + $2077 = $2076; + $2078 = HEAP32[$2077>>2]|0; + $2079 = (($2076) + 4)|0; + $2080 = $2079; + $2081 = HEAP32[$2080>>2]|0; + $2082 = (_bitshift64Ashr(0,($2078|0),32)|0); + $2083 = tempRet0; + $2084 = (___muldi3(($2082|0),($2083|0),($2074|0),($2075|0))|0); + $2085 = tempRet0; + $2086 = ((($0)) + 144|0); + $2087 = $2086; + $2088 = $2087; + HEAP32[$2088>>2] = $2084; + $2089 = (($2087) + 4)|0; + $2090 = $2089; + HEAP32[$2090>>2] = $2085; + return; +} +function _freduce_degree($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0; + var $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0; + var $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0; + var $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0; + var $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0; + var $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0; + var $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0; + var $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0; + var $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0; + var $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0; + var $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0; + var sp = 0; + sp = STACKTOP; + $1 = ((($0)) + 144|0); + $2 = $1; + $3 = $2; + $4 = HEAP32[$3>>2]|0; + $5 = (($2) + 4)|0; + $6 = $5; + $7 = HEAP32[$6>>2]|0; + $8 = ((($0)) + 64|0); + $9 = $8; + $10 = $9; + $11 = HEAP32[$10>>2]|0; + $12 = (($9) + 4)|0; + $13 = $12; + $14 = HEAP32[$13>>2]|0; + $15 = (___muldi3(($4|0),($7|0),18,0)|0); + $16 = tempRet0; + $17 = (_i64Add(($11|0),($14|0),($4|0),($7|0))|0); + $18 = tempRet0; + $19 = (_i64Add(($17|0),($18|0),($15|0),($16|0))|0); + $20 = tempRet0; + $21 = $8; + $22 = $21; + HEAP32[$22>>2] = $19; + $23 = (($21) + 4)|0; + $24 = $23; + HEAP32[$24>>2] = $20; + $25 = ((($0)) + 136|0); + $26 = $25; + $27 = $26; + $28 = HEAP32[$27>>2]|0; + $29 = (($26) + 4)|0; + $30 = $29; + $31 = HEAP32[$30>>2]|0; + $32 = ((($0)) + 56|0); + $33 = $32; + $34 = $33; + $35 = HEAP32[$34>>2]|0; + $36 = (($33) + 4)|0; + $37 = $36; + $38 = HEAP32[$37>>2]|0; + $39 = (___muldi3(($28|0),($31|0),18,0)|0); + $40 = tempRet0; + $41 = (_i64Add(($35|0),($38|0),($28|0),($31|0))|0); + $42 = tempRet0; + $43 = (_i64Add(($41|0),($42|0),($39|0),($40|0))|0); + $44 = tempRet0; + $45 = $32; + $46 = $45; + HEAP32[$46>>2] = $43; + $47 = (($45) + 4)|0; + $48 = $47; + HEAP32[$48>>2] = $44; + $49 = ((($0)) + 128|0); + $50 = $49; + $51 = $50; + $52 = HEAP32[$51>>2]|0; + $53 = (($50) + 4)|0; + $54 = $53; + $55 = HEAP32[$54>>2]|0; + $56 = ((($0)) + 48|0); + $57 = $56; + $58 = $57; + $59 = HEAP32[$58>>2]|0; + $60 = (($57) + 4)|0; + $61 = $60; + $62 = HEAP32[$61>>2]|0; + $63 = (___muldi3(($52|0),($55|0),18,0)|0); + $64 = tempRet0; + $65 = (_i64Add(($59|0),($62|0),($52|0),($55|0))|0); + $66 = tempRet0; + $67 = (_i64Add(($65|0),($66|0),($63|0),($64|0))|0); + $68 = tempRet0; + $69 = $56; + $70 = $69; + HEAP32[$70>>2] = $67; + $71 = (($69) + 4)|0; + $72 = $71; + HEAP32[$72>>2] = $68; + $73 = ((($0)) + 120|0); + $74 = $73; + $75 = $74; + $76 = HEAP32[$75>>2]|0; + $77 = (($74) + 4)|0; + $78 = $77; + $79 = HEAP32[$78>>2]|0; + $80 = ((($0)) + 40|0); + $81 = $80; + $82 = $81; + $83 = HEAP32[$82>>2]|0; + $84 = (($81) + 4)|0; + $85 = $84; + $86 = HEAP32[$85>>2]|0; + $87 = (___muldi3(($76|0),($79|0),18,0)|0); + $88 = tempRet0; + $89 = (_i64Add(($83|0),($86|0),($76|0),($79|0))|0); + $90 = tempRet0; + $91 = (_i64Add(($89|0),($90|0),($87|0),($88|0))|0); + $92 = tempRet0; + $93 = $80; + $94 = $93; + HEAP32[$94>>2] = $91; + $95 = (($93) + 4)|0; + $96 = $95; + HEAP32[$96>>2] = $92; + $97 = ((($0)) + 112|0); + $98 = $97; + $99 = $98; + $100 = HEAP32[$99>>2]|0; + $101 = (($98) + 4)|0; + $102 = $101; + $103 = HEAP32[$102>>2]|0; + $104 = ((($0)) + 32|0); + $105 = $104; + $106 = $105; + $107 = HEAP32[$106>>2]|0; + $108 = (($105) + 4)|0; + $109 = $108; + $110 = HEAP32[$109>>2]|0; + $111 = (___muldi3(($100|0),($103|0),18,0)|0); + $112 = tempRet0; + $113 = (_i64Add(($107|0),($110|0),($100|0),($103|0))|0); + $114 = tempRet0; + $115 = (_i64Add(($113|0),($114|0),($111|0),($112|0))|0); + $116 = tempRet0; + $117 = $104; + $118 = $117; + HEAP32[$118>>2] = $115; + $119 = (($117) + 4)|0; + $120 = $119; + HEAP32[$120>>2] = $116; + $121 = ((($0)) + 104|0); + $122 = $121; + $123 = $122; + $124 = HEAP32[$123>>2]|0; + $125 = (($122) + 4)|0; + $126 = $125; + $127 = HEAP32[$126>>2]|0; + $128 = ((($0)) + 24|0); + $129 = $128; + $130 = $129; + $131 = HEAP32[$130>>2]|0; + $132 = (($129) + 4)|0; + $133 = $132; + $134 = HEAP32[$133>>2]|0; + $135 = (___muldi3(($124|0),($127|0),18,0)|0); + $136 = tempRet0; + $137 = (_i64Add(($131|0),($134|0),($124|0),($127|0))|0); + $138 = tempRet0; + $139 = (_i64Add(($137|0),($138|0),($135|0),($136|0))|0); + $140 = tempRet0; + $141 = $128; + $142 = $141; + HEAP32[$142>>2] = $139; + $143 = (($141) + 4)|0; + $144 = $143; + HEAP32[$144>>2] = $140; + $145 = ((($0)) + 96|0); + $146 = $145; + $147 = $146; + $148 = HEAP32[$147>>2]|0; + $149 = (($146) + 4)|0; + $150 = $149; + $151 = HEAP32[$150>>2]|0; + $152 = ((($0)) + 16|0); + $153 = $152; + $154 = $153; + $155 = HEAP32[$154>>2]|0; + $156 = (($153) + 4)|0; + $157 = $156; + $158 = HEAP32[$157>>2]|0; + $159 = (___muldi3(($148|0),($151|0),18,0)|0); + $160 = tempRet0; + $161 = (_i64Add(($155|0),($158|0),($148|0),($151|0))|0); + $162 = tempRet0; + $163 = (_i64Add(($161|0),($162|0),($159|0),($160|0))|0); + $164 = tempRet0; + $165 = $152; + $166 = $165; + HEAP32[$166>>2] = $163; + $167 = (($165) + 4)|0; + $168 = $167; + HEAP32[$168>>2] = $164; + $169 = ((($0)) + 88|0); + $170 = $169; + $171 = $170; + $172 = HEAP32[$171>>2]|0; + $173 = (($170) + 4)|0; + $174 = $173; + $175 = HEAP32[$174>>2]|0; + $176 = ((($0)) + 8|0); + $177 = $176; + $178 = $177; + $179 = HEAP32[$178>>2]|0; + $180 = (($177) + 4)|0; + $181 = $180; + $182 = HEAP32[$181>>2]|0; + $183 = (___muldi3(($172|0),($175|0),18,0)|0); + $184 = tempRet0; + $185 = (_i64Add(($179|0),($182|0),($172|0),($175|0))|0); + $186 = tempRet0; + $187 = (_i64Add(($185|0),($186|0),($183|0),($184|0))|0); + $188 = tempRet0; + $189 = $176; + $190 = $189; + HEAP32[$190>>2] = $187; + $191 = (($189) + 4)|0; + $192 = $191; + HEAP32[$192>>2] = $188; + $193 = ((($0)) + 80|0); + $194 = $193; + $195 = $194; + $196 = HEAP32[$195>>2]|0; + $197 = (($194) + 4)|0; + $198 = $197; + $199 = HEAP32[$198>>2]|0; + $200 = (_bitshift64Shl(($196|0),($199|0),4)|0); + $201 = tempRet0; + $202 = $0; + $203 = $202; + $204 = HEAP32[$203>>2]|0; + $205 = (($202) + 4)|0; + $206 = $205; + $207 = HEAP32[$206>>2]|0; + $208 = (_i64Add(($204|0),($207|0),($200|0),($201|0))|0); + $209 = tempRet0; + $210 = (_bitshift64Shl(($196|0),($199|0),1)|0); + $211 = tempRet0; + $212 = (_i64Add(($208|0),($209|0),($210|0),($211|0))|0); + $213 = tempRet0; + $214 = (_i64Add(($212|0),($213|0),($196|0),($199|0))|0); + $215 = tempRet0; + $216 = $0; + $217 = $216; + HEAP32[$217>>2] = $214; + $218 = (($216) + 4)|0; + $219 = $218; + HEAP32[$219>>2] = $215; + return; +} +function _freduce_coefficients($0) { + $0 = $0|0; + var $$036 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0; + var $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0; + var $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0; + var $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0; + var $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0; + var $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $1 = ((($0)) + 80|0); + $2 = $1; + $3 = $2; + HEAP32[$3>>2] = 0; + $4 = (($2) + 4)|0; + $5 = $4; + HEAP32[$5>>2] = 0; + $$036 = 0; + while(1) { + $6 = (($0) + ($$036<<3)|0); + $7 = $6; + $8 = $7; + $9 = HEAP32[$8>>2]|0; + $10 = (($7) + 4)|0; + $11 = $10; + $12 = HEAP32[$11>>2]|0; + $13 = (_div_by_2_26($9,$12)|0); + $14 = tempRet0; + $15 = (_bitshift64Shl(($13|0),($14|0),26)|0); + $16 = tempRet0; + $17 = (_i64Subtract(($9|0),($12|0),($15|0),($16|0))|0); + $18 = tempRet0; + $19 = $6; + $20 = $19; + HEAP32[$20>>2] = $17; + $21 = (($19) + 4)|0; + $22 = $21; + HEAP32[$22>>2] = $18; + $23 = $$036 | 1; + $24 = (($0) + ($23<<3)|0); + $25 = $24; + $26 = $25; + $27 = HEAP32[$26>>2]|0; + $28 = (($25) + 4)|0; + $29 = $28; + $30 = HEAP32[$29>>2]|0; + $31 = (_i64Add(($27|0),($30|0),($13|0),($14|0))|0); + $32 = tempRet0; + $33 = (_div_by_2_25($31,$32)|0); + $34 = tempRet0; + $35 = (_bitshift64Shl(($33|0),($34|0),25)|0); + $36 = tempRet0; + $37 = (_i64Subtract(($31|0),($32|0),($35|0),($36|0))|0); + $38 = tempRet0; + $39 = $24; + $40 = $39; + HEAP32[$40>>2] = $37; + $41 = (($39) + 4)|0; + $42 = $41; + HEAP32[$42>>2] = $38; + $43 = (($$036) + 2)|0; + $44 = (($0) + ($43<<3)|0); + $45 = $44; + $46 = $45; + $47 = HEAP32[$46>>2]|0; + $48 = (($45) + 4)|0; + $49 = $48; + $50 = HEAP32[$49>>2]|0; + $51 = (_i64Add(($47|0),($50|0),($33|0),($34|0))|0); + $52 = tempRet0; + $53 = $44; + $54 = $53; + HEAP32[$54>>2] = $51; + $55 = (($53) + 4)|0; + $56 = $55; + HEAP32[$56>>2] = $52; + $57 = ($43>>>0)<(10); + if ($57) { + $$036 = $43; + } else { + break; + } + } + $58 = $1; + $59 = $58; + $60 = HEAP32[$59>>2]|0; + $61 = (($58) + 4)|0; + $62 = $61; + $63 = HEAP32[$62>>2]|0; + $64 = $0; + $65 = $64; + $66 = HEAP32[$65>>2]|0; + $67 = (($64) + 4)|0; + $68 = $67; + $69 = HEAP32[$68>>2]|0; + $70 = (___muldi3(($60|0),($63|0),18,0)|0); + $71 = tempRet0; + $72 = (_i64Add(($66|0),($69|0),($60|0),($63|0))|0); + $73 = tempRet0; + $74 = (_i64Add(($72|0),($73|0),($70|0),($71|0))|0); + $75 = tempRet0; + $76 = $1; + $77 = $76; + HEAP32[$77>>2] = 0; + $78 = (($76) + 4)|0; + $79 = $78; + HEAP32[$79>>2] = 0; + $80 = (_div_by_2_26($74,$75)|0); + $81 = tempRet0; + $82 = (_bitshift64Shl(($80|0),($81|0),26)|0); + $83 = tempRet0; + $84 = (_i64Subtract(($74|0),($75|0),($82|0),($83|0))|0); + $85 = tempRet0; + $86 = $0; + $87 = $86; + HEAP32[$87>>2] = $84; + $88 = (($86) + 4)|0; + $89 = $88; + HEAP32[$89>>2] = $85; + $90 = ((($0)) + 8|0); + $91 = $90; + $92 = $91; + $93 = HEAP32[$92>>2]|0; + $94 = (($91) + 4)|0; + $95 = $94; + $96 = HEAP32[$95>>2]|0; + $97 = (_i64Add(($93|0),($96|0),($80|0),($81|0))|0); + $98 = tempRet0; + $99 = $90; + $100 = $99; + HEAP32[$100>>2] = $97; + $101 = (($99) + 4)|0; + $102 = $101; + HEAP32[$102>>2] = $98; + return; +} +function _div_by_2_26($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = $1 >> 31; + $3 = $2 >>> 6; + $4 = (_i64Add(($3|0),0,($0|0),($1|0))|0); + $5 = tempRet0; + $6 = (_bitshift64Ashr(($4|0),($5|0),26)|0); + $7 = tempRet0; + tempRet0 = ($7); + return ($6|0); +} +function _div_by_2_25($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = $1 >> 31; + $3 = $2 >>> 7; + $4 = (_i64Add(($3|0),0,($0|0),($1|0))|0); + $5 = tempRet0; + $6 = (_bitshift64Ashr(($4|0),($5|0),25)|0); + $7 = tempRet0; + tempRet0 = ($7); + return ($6|0); +} +function _fsquare($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 160|0; + $2 = sp; + _fsquare_inner($2,$1); + _freduce_degree($2); + _freduce_coefficients($2); + dest=$0; src=$2; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + STACKTOP = sp;return; +} +function _fsquare_inner($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0, $1015 = 0, $1016 = 0; + var $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0, $1033 = 0, $1034 = 0; + var $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0, $1051 = 0, $1052 = 0; + var $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0, $107 = 0, $1070 = 0; + var $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0, $1088 = 0, $1089 = 0; + var $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0, $1105 = 0, $1106 = 0; + var $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $1119 = 0, $112 = 0, $1120 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0; + var $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0; + var $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0; + var $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0; + var $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0; + var $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0; + var $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0; + var $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0; + var $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0; + var $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0; + var $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0; + var $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0; + var $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0; + var $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0; + var $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0; + var $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0; + var $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0; + var $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0; + var $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0; + var $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0; + var $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0; + var $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0; + var $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0; + var $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0; + var $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0; + var $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0; + var $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0; + var $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0; + var $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0; + var $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0; + var $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0; + var $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0; + var $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0; + var $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0; + var $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0; + var $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0; + var $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0; + var $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0; + var $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0; + var $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0; + var $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0; + var $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0; + var $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0; + var $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0; + var $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0; + var $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0; + var $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0; + var $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0; + var $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0; + var $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, label = 0; + var sp = 0; + sp = STACKTOP; + $2 = $1; + $3 = $2; + $4 = HEAP32[$3>>2]|0; + $5 = (($2) + 4)|0; + $6 = $5; + $7 = HEAP32[$6>>2]|0; + $8 = (_bitshift64Ashr(0,($4|0),32)|0); + $9 = tempRet0; + $10 = (___muldi3(($8|0),($9|0),($8|0),($9|0))|0); + $11 = tempRet0; + $12 = $0; + $13 = $12; + HEAP32[$13>>2] = $10; + $14 = (($12) + 4)|0; + $15 = $14; + HEAP32[$15>>2] = $11; + $16 = $1; + $17 = $16; + $18 = HEAP32[$17>>2]|0; + $19 = (($16) + 4)|0; + $20 = $19; + $21 = HEAP32[$20>>2]|0; + $22 = (_bitshift64Ashr(0,($18|0),31)|0); + $23 = tempRet0; + $24 = ((($1)) + 8|0); + $25 = $24; + $26 = $25; + $27 = HEAP32[$26>>2]|0; + $28 = (($25) + 4)|0; + $29 = $28; + $30 = HEAP32[$29>>2]|0; + $31 = (_bitshift64Ashr(0,($27|0),32)|0); + $32 = tempRet0; + $33 = (___muldi3(($31|0),($32|0),($22|0),($23|0))|0); + $34 = tempRet0; + $35 = ((($0)) + 8|0); + $36 = $35; + $37 = $36; + HEAP32[$37>>2] = $33; + $38 = (($36) + 4)|0; + $39 = $38; + HEAP32[$39>>2] = $34; + $40 = $24; + $41 = $40; + $42 = HEAP32[$41>>2]|0; + $43 = (($40) + 4)|0; + $44 = $43; + $45 = HEAP32[$44>>2]|0; + $46 = (_bitshift64Ashr(0,($42|0),32)|0); + $47 = tempRet0; + $48 = (___muldi3(($46|0),($47|0),($46|0),($47|0))|0); + $49 = tempRet0; + $50 = $1; + $51 = $50; + $52 = HEAP32[$51>>2]|0; + $53 = (($50) + 4)|0; + $54 = $53; + $55 = HEAP32[$54>>2]|0; + $56 = (_bitshift64Ashr(0,($52|0),32)|0); + $57 = tempRet0; + $58 = ((($1)) + 16|0); + $59 = $58; + $60 = $59; + $61 = HEAP32[$60>>2]|0; + $62 = (($59) + 4)|0; + $63 = $62; + $64 = HEAP32[$63>>2]|0; + $65 = (_bitshift64Ashr(0,($61|0),32)|0); + $66 = tempRet0; + $67 = (___muldi3(($65|0),($66|0),($56|0),($57|0))|0); + $68 = tempRet0; + $69 = (_i64Add(($67|0),($68|0),($48|0),($49|0))|0); + $70 = tempRet0; + $71 = (_bitshift64Shl(($69|0),($70|0),1)|0); + $72 = tempRet0; + $73 = ((($0)) + 16|0); + $74 = $73; + $75 = $74; + HEAP32[$75>>2] = $71; + $76 = (($74) + 4)|0; + $77 = $76; + HEAP32[$77>>2] = $72; + $78 = $24; + $79 = $78; + $80 = HEAP32[$79>>2]|0; + $81 = (($78) + 4)|0; + $82 = $81; + $83 = HEAP32[$82>>2]|0; + $84 = (_bitshift64Ashr(0,($80|0),32)|0); + $85 = tempRet0; + $86 = $58; + $87 = $86; + $88 = HEAP32[$87>>2]|0; + $89 = (($86) + 4)|0; + $90 = $89; + $91 = HEAP32[$90>>2]|0; + $92 = (_bitshift64Ashr(0,($88|0),32)|0); + $93 = tempRet0; + $94 = (___muldi3(($92|0),($93|0),($84|0),($85|0))|0); + $95 = tempRet0; + $96 = $1; + $97 = $96; + $98 = HEAP32[$97>>2]|0; + $99 = (($96) + 4)|0; + $100 = $99; + $101 = HEAP32[$100>>2]|0; + $102 = (_bitshift64Ashr(0,($98|0),32)|0); + $103 = tempRet0; + $104 = ((($1)) + 24|0); + $105 = $104; + $106 = $105; + $107 = HEAP32[$106>>2]|0; + $108 = (($105) + 4)|0; + $109 = $108; + $110 = HEAP32[$109>>2]|0; + $111 = (_bitshift64Ashr(0,($107|0),32)|0); + $112 = tempRet0; + $113 = (___muldi3(($111|0),($112|0),($102|0),($103|0))|0); + $114 = tempRet0; + $115 = (_i64Add(($113|0),($114|0),($94|0),($95|0))|0); + $116 = tempRet0; + $117 = (_bitshift64Shl(($115|0),($116|0),1)|0); + $118 = tempRet0; + $119 = ((($0)) + 24|0); + $120 = $119; + $121 = $120; + HEAP32[$121>>2] = $117; + $122 = (($120) + 4)|0; + $123 = $122; + HEAP32[$123>>2] = $118; + $124 = $58; + $125 = $124; + $126 = HEAP32[$125>>2]|0; + $127 = (($124) + 4)|0; + $128 = $127; + $129 = HEAP32[$128>>2]|0; + $130 = (_bitshift64Ashr(0,($126|0),32)|0); + $131 = tempRet0; + $132 = (___muldi3(($130|0),($131|0),($130|0),($131|0))|0); + $133 = tempRet0; + $134 = $24; + $135 = $134; + $136 = HEAP32[$135>>2]|0; + $137 = (($134) + 4)|0; + $138 = $137; + $139 = HEAP32[$138>>2]|0; + $140 = (_bitshift64Ashr(0,($136|0),30)|0); + $141 = tempRet0; + $142 = $104; + $143 = $142; + $144 = HEAP32[$143>>2]|0; + $145 = (($142) + 4)|0; + $146 = $145; + $147 = HEAP32[$146>>2]|0; + $148 = (_bitshift64Ashr(0,($144|0),32)|0); + $149 = tempRet0; + $150 = (___muldi3(($148|0),($149|0),($140|0),($141|0))|0); + $151 = tempRet0; + $152 = (_i64Add(($150|0),($151|0),($132|0),($133|0))|0); + $153 = tempRet0; + $154 = $1; + $155 = $154; + $156 = HEAP32[$155>>2]|0; + $157 = (($154) + 4)|0; + $158 = $157; + $159 = HEAP32[$158>>2]|0; + $160 = (_bitshift64Ashr(0,($156|0),31)|0); + $161 = tempRet0; + $162 = ((($1)) + 32|0); + $163 = $162; + $164 = $163; + $165 = HEAP32[$164>>2]|0; + $166 = (($163) + 4)|0; + $167 = $166; + $168 = HEAP32[$167>>2]|0; + $169 = (_bitshift64Ashr(0,($165|0),32)|0); + $170 = tempRet0; + $171 = (___muldi3(($169|0),($170|0),($160|0),($161|0))|0); + $172 = tempRet0; + $173 = (_i64Add(($152|0),($153|0),($171|0),($172|0))|0); + $174 = tempRet0; + $175 = ((($0)) + 32|0); + $176 = $175; + $177 = $176; + HEAP32[$177>>2] = $173; + $178 = (($176) + 4)|0; + $179 = $178; + HEAP32[$179>>2] = $174; + $180 = $58; + $181 = $180; + $182 = HEAP32[$181>>2]|0; + $183 = (($180) + 4)|0; + $184 = $183; + $185 = HEAP32[$184>>2]|0; + $186 = (_bitshift64Ashr(0,($182|0),32)|0); + $187 = tempRet0; + $188 = $104; + $189 = $188; + $190 = HEAP32[$189>>2]|0; + $191 = (($188) + 4)|0; + $192 = $191; + $193 = HEAP32[$192>>2]|0; + $194 = (_bitshift64Ashr(0,($190|0),32)|0); + $195 = tempRet0; + $196 = (___muldi3(($194|0),($195|0),($186|0),($187|0))|0); + $197 = tempRet0; + $198 = $24; + $199 = $198; + $200 = HEAP32[$199>>2]|0; + $201 = (($198) + 4)|0; + $202 = $201; + $203 = HEAP32[$202>>2]|0; + $204 = (_bitshift64Ashr(0,($200|0),32)|0); + $205 = tempRet0; + $206 = $162; + $207 = $206; + $208 = HEAP32[$207>>2]|0; + $209 = (($206) + 4)|0; + $210 = $209; + $211 = HEAP32[$210>>2]|0; + $212 = (_bitshift64Ashr(0,($208|0),32)|0); + $213 = tempRet0; + $214 = (___muldi3(($212|0),($213|0),($204|0),($205|0))|0); + $215 = tempRet0; + $216 = (_i64Add(($214|0),($215|0),($196|0),($197|0))|0); + $217 = tempRet0; + $218 = $1; + $219 = $218; + $220 = HEAP32[$219>>2]|0; + $221 = (($218) + 4)|0; + $222 = $221; + $223 = HEAP32[$222>>2]|0; + $224 = (_bitshift64Ashr(0,($220|0),32)|0); + $225 = tempRet0; + $226 = ((($1)) + 40|0); + $227 = $226; + $228 = $227; + $229 = HEAP32[$228>>2]|0; + $230 = (($227) + 4)|0; + $231 = $230; + $232 = HEAP32[$231>>2]|0; + $233 = (_bitshift64Ashr(0,($229|0),32)|0); + $234 = tempRet0; + $235 = (___muldi3(($233|0),($234|0),($224|0),($225|0))|0); + $236 = tempRet0; + $237 = (_i64Add(($216|0),($217|0),($235|0),($236|0))|0); + $238 = tempRet0; + $239 = (_bitshift64Shl(($237|0),($238|0),1)|0); + $240 = tempRet0; + $241 = ((($0)) + 40|0); + $242 = $241; + $243 = $242; + HEAP32[$243>>2] = $239; + $244 = (($242) + 4)|0; + $245 = $244; + HEAP32[$245>>2] = $240; + $246 = $104; + $247 = $246; + $248 = HEAP32[$247>>2]|0; + $249 = (($246) + 4)|0; + $250 = $249; + $251 = HEAP32[$250>>2]|0; + $252 = (_bitshift64Ashr(0,($248|0),32)|0); + $253 = tempRet0; + $254 = (___muldi3(($252|0),($253|0),($252|0),($253|0))|0); + $255 = tempRet0; + $256 = $58; + $257 = $256; + $258 = HEAP32[$257>>2]|0; + $259 = (($256) + 4)|0; + $260 = $259; + $261 = HEAP32[$260>>2]|0; + $262 = (_bitshift64Ashr(0,($258|0),32)|0); + $263 = tempRet0; + $264 = $162; + $265 = $264; + $266 = HEAP32[$265>>2]|0; + $267 = (($264) + 4)|0; + $268 = $267; + $269 = HEAP32[$268>>2]|0; + $270 = (_bitshift64Ashr(0,($266|0),32)|0); + $271 = tempRet0; + $272 = (___muldi3(($270|0),($271|0),($262|0),($263|0))|0); + $273 = tempRet0; + $274 = (_i64Add(($272|0),($273|0),($254|0),($255|0))|0); + $275 = tempRet0; + $276 = $1; + $277 = $276; + $278 = HEAP32[$277>>2]|0; + $279 = (($276) + 4)|0; + $280 = $279; + $281 = HEAP32[$280>>2]|0; + $282 = (_bitshift64Ashr(0,($278|0),32)|0); + $283 = tempRet0; + $284 = ((($1)) + 48|0); + $285 = $284; + $286 = $285; + $287 = HEAP32[$286>>2]|0; + $288 = (($285) + 4)|0; + $289 = $288; + $290 = HEAP32[$289>>2]|0; + $291 = (_bitshift64Ashr(0,($287|0),32)|0); + $292 = tempRet0; + $293 = (___muldi3(($291|0),($292|0),($282|0),($283|0))|0); + $294 = tempRet0; + $295 = (_i64Add(($274|0),($275|0),($293|0),($294|0))|0); + $296 = tempRet0; + $297 = $24; + $298 = $297; + $299 = HEAP32[$298>>2]|0; + $300 = (($297) + 4)|0; + $301 = $300; + $302 = HEAP32[$301>>2]|0; + $303 = (_bitshift64Ashr(0,($299|0),31)|0); + $304 = tempRet0; + $305 = $226; + $306 = $305; + $307 = HEAP32[$306>>2]|0; + $308 = (($305) + 4)|0; + $309 = $308; + $310 = HEAP32[$309>>2]|0; + $311 = (_bitshift64Ashr(0,($307|0),32)|0); + $312 = tempRet0; + $313 = (___muldi3(($311|0),($312|0),($303|0),($304|0))|0); + $314 = tempRet0; + $315 = (_i64Add(($295|0),($296|0),($313|0),($314|0))|0); + $316 = tempRet0; + $317 = (_bitshift64Shl(($315|0),($316|0),1)|0); + $318 = tempRet0; + $319 = ((($0)) + 48|0); + $320 = $319; + $321 = $320; + HEAP32[$321>>2] = $317; + $322 = (($320) + 4)|0; + $323 = $322; + HEAP32[$323>>2] = $318; + $324 = $104; + $325 = $324; + $326 = HEAP32[$325>>2]|0; + $327 = (($324) + 4)|0; + $328 = $327; + $329 = HEAP32[$328>>2]|0; + $330 = (_bitshift64Ashr(0,($326|0),32)|0); + $331 = tempRet0; + $332 = $162; + $333 = $332; + $334 = HEAP32[$333>>2]|0; + $335 = (($332) + 4)|0; + $336 = $335; + $337 = HEAP32[$336>>2]|0; + $338 = (_bitshift64Ashr(0,($334|0),32)|0); + $339 = tempRet0; + $340 = (___muldi3(($338|0),($339|0),($330|0),($331|0))|0); + $341 = tempRet0; + $342 = $58; + $343 = $342; + $344 = HEAP32[$343>>2]|0; + $345 = (($342) + 4)|0; + $346 = $345; + $347 = HEAP32[$346>>2]|0; + $348 = (_bitshift64Ashr(0,($344|0),32)|0); + $349 = tempRet0; + $350 = $226; + $351 = $350; + $352 = HEAP32[$351>>2]|0; + $353 = (($350) + 4)|0; + $354 = $353; + $355 = HEAP32[$354>>2]|0; + $356 = (_bitshift64Ashr(0,($352|0),32)|0); + $357 = tempRet0; + $358 = (___muldi3(($356|0),($357|0),($348|0),($349|0))|0); + $359 = tempRet0; + $360 = (_i64Add(($358|0),($359|0),($340|0),($341|0))|0); + $361 = tempRet0; + $362 = $24; + $363 = $362; + $364 = HEAP32[$363>>2]|0; + $365 = (($362) + 4)|0; + $366 = $365; + $367 = HEAP32[$366>>2]|0; + $368 = (_bitshift64Ashr(0,($364|0),32)|0); + $369 = tempRet0; + $370 = $284; + $371 = $370; + $372 = HEAP32[$371>>2]|0; + $373 = (($370) + 4)|0; + $374 = $373; + $375 = HEAP32[$374>>2]|0; + $376 = (_bitshift64Ashr(0,($372|0),32)|0); + $377 = tempRet0; + $378 = (___muldi3(($376|0),($377|0),($368|0),($369|0))|0); + $379 = tempRet0; + $380 = (_i64Add(($360|0),($361|0),($378|0),($379|0))|0); + $381 = tempRet0; + $382 = $1; + $383 = $382; + $384 = HEAP32[$383>>2]|0; + $385 = (($382) + 4)|0; + $386 = $385; + $387 = HEAP32[$386>>2]|0; + $388 = (_bitshift64Ashr(0,($384|0),32)|0); + $389 = tempRet0; + $390 = ((($1)) + 56|0); + $391 = $390; + $392 = $391; + $393 = HEAP32[$392>>2]|0; + $394 = (($391) + 4)|0; + $395 = $394; + $396 = HEAP32[$395>>2]|0; + $397 = (_bitshift64Ashr(0,($393|0),32)|0); + $398 = tempRet0; + $399 = (___muldi3(($397|0),($398|0),($388|0),($389|0))|0); + $400 = tempRet0; + $401 = (_i64Add(($380|0),($381|0),($399|0),($400|0))|0); + $402 = tempRet0; + $403 = (_bitshift64Shl(($401|0),($402|0),1)|0); + $404 = tempRet0; + $405 = ((($0)) + 56|0); + $406 = $405; + $407 = $406; + HEAP32[$407>>2] = $403; + $408 = (($406) + 4)|0; + $409 = $408; + HEAP32[$409>>2] = $404; + $410 = $162; + $411 = $410; + $412 = HEAP32[$411>>2]|0; + $413 = (($410) + 4)|0; + $414 = $413; + $415 = HEAP32[$414>>2]|0; + $416 = (_bitshift64Ashr(0,($412|0),32)|0); + $417 = tempRet0; + $418 = (___muldi3(($416|0),($417|0),($416|0),($417|0))|0); + $419 = tempRet0; + $420 = $58; + $421 = $420; + $422 = HEAP32[$421>>2]|0; + $423 = (($420) + 4)|0; + $424 = $423; + $425 = HEAP32[$424>>2]|0; + $426 = (_bitshift64Ashr(0,($422|0),32)|0); + $427 = tempRet0; + $428 = $284; + $429 = $428; + $430 = HEAP32[$429>>2]|0; + $431 = (($428) + 4)|0; + $432 = $431; + $433 = HEAP32[$432>>2]|0; + $434 = (_bitshift64Ashr(0,($430|0),32)|0); + $435 = tempRet0; + $436 = (___muldi3(($434|0),($435|0),($426|0),($427|0))|0); + $437 = tempRet0; + $438 = $1; + $439 = $438; + $440 = HEAP32[$439>>2]|0; + $441 = (($438) + 4)|0; + $442 = $441; + $443 = HEAP32[$442>>2]|0; + $444 = (_bitshift64Ashr(0,($440|0),32)|0); + $445 = tempRet0; + $446 = ((($1)) + 64|0); + $447 = $446; + $448 = $447; + $449 = HEAP32[$448>>2]|0; + $450 = (($447) + 4)|0; + $451 = $450; + $452 = HEAP32[$451>>2]|0; + $453 = (_bitshift64Ashr(0,($449|0),32)|0); + $454 = tempRet0; + $455 = (___muldi3(($453|0),($454|0),($444|0),($445|0))|0); + $456 = tempRet0; + $457 = (_i64Add(($455|0),($456|0),($436|0),($437|0))|0); + $458 = tempRet0; + $459 = $24; + $460 = $459; + $461 = HEAP32[$460>>2]|0; + $462 = (($459) + 4)|0; + $463 = $462; + $464 = HEAP32[$463>>2]|0; + $465 = (_bitshift64Ashr(0,($461|0),32)|0); + $466 = tempRet0; + $467 = $390; + $468 = $467; + $469 = HEAP32[$468>>2]|0; + $470 = (($467) + 4)|0; + $471 = $470; + $472 = HEAP32[$471>>2]|0; + $473 = (_bitshift64Ashr(0,($469|0),32)|0); + $474 = tempRet0; + $475 = (___muldi3(($473|0),($474|0),($465|0),($466|0))|0); + $476 = tempRet0; + $477 = $104; + $478 = $477; + $479 = HEAP32[$478>>2]|0; + $480 = (($477) + 4)|0; + $481 = $480; + $482 = HEAP32[$481>>2]|0; + $483 = (_bitshift64Ashr(0,($479|0),32)|0); + $484 = tempRet0; + $485 = $226; + $486 = $485; + $487 = HEAP32[$486>>2]|0; + $488 = (($485) + 4)|0; + $489 = $488; + $490 = HEAP32[$489>>2]|0; + $491 = (_bitshift64Ashr(0,($487|0),32)|0); + $492 = tempRet0; + $493 = (___muldi3(($491|0),($492|0),($483|0),($484|0))|0); + $494 = tempRet0; + $495 = (_i64Add(($493|0),($494|0),($475|0),($476|0))|0); + $496 = tempRet0; + $497 = (_bitshift64Shl(($495|0),($496|0),1)|0); + $498 = tempRet0; + $499 = (_i64Add(($457|0),($458|0),($497|0),($498|0))|0); + $500 = tempRet0; + $501 = (_bitshift64Shl(($499|0),($500|0),1)|0); + $502 = tempRet0; + $503 = (_i64Add(($501|0),($502|0),($418|0),($419|0))|0); + $504 = tempRet0; + $505 = ((($0)) + 64|0); + $506 = $505; + $507 = $506; + HEAP32[$507>>2] = $503; + $508 = (($506) + 4)|0; + $509 = $508; + HEAP32[$509>>2] = $504; + $510 = $162; + $511 = $510; + $512 = HEAP32[$511>>2]|0; + $513 = (($510) + 4)|0; + $514 = $513; + $515 = HEAP32[$514>>2]|0; + $516 = (_bitshift64Ashr(0,($512|0),32)|0); + $517 = tempRet0; + $518 = $226; + $519 = $518; + $520 = HEAP32[$519>>2]|0; + $521 = (($518) + 4)|0; + $522 = $521; + $523 = HEAP32[$522>>2]|0; + $524 = (_bitshift64Ashr(0,($520|0),32)|0); + $525 = tempRet0; + $526 = (___muldi3(($524|0),($525|0),($516|0),($517|0))|0); + $527 = tempRet0; + $528 = $104; + $529 = $528; + $530 = HEAP32[$529>>2]|0; + $531 = (($528) + 4)|0; + $532 = $531; + $533 = HEAP32[$532>>2]|0; + $534 = (_bitshift64Ashr(0,($530|0),32)|0); + $535 = tempRet0; + $536 = $284; + $537 = $536; + $538 = HEAP32[$537>>2]|0; + $539 = (($536) + 4)|0; + $540 = $539; + $541 = HEAP32[$540>>2]|0; + $542 = (_bitshift64Ashr(0,($538|0),32)|0); + $543 = tempRet0; + $544 = (___muldi3(($542|0),($543|0),($534|0),($535|0))|0); + $545 = tempRet0; + $546 = (_i64Add(($544|0),($545|0),($526|0),($527|0))|0); + $547 = tempRet0; + $548 = $58; + $549 = $548; + $550 = HEAP32[$549>>2]|0; + $551 = (($548) + 4)|0; + $552 = $551; + $553 = HEAP32[$552>>2]|0; + $554 = (_bitshift64Ashr(0,($550|0),32)|0); + $555 = tempRet0; + $556 = $390; + $557 = $556; + $558 = HEAP32[$557>>2]|0; + $559 = (($556) + 4)|0; + $560 = $559; + $561 = HEAP32[$560>>2]|0; + $562 = (_bitshift64Ashr(0,($558|0),32)|0); + $563 = tempRet0; + $564 = (___muldi3(($562|0),($563|0),($554|0),($555|0))|0); + $565 = tempRet0; + $566 = (_i64Add(($546|0),($547|0),($564|0),($565|0))|0); + $567 = tempRet0; + $568 = $24; + $569 = $568; + $570 = HEAP32[$569>>2]|0; + $571 = (($568) + 4)|0; + $572 = $571; + $573 = HEAP32[$572>>2]|0; + $574 = (_bitshift64Ashr(0,($570|0),32)|0); + $575 = tempRet0; + $576 = $446; + $577 = $576; + $578 = HEAP32[$577>>2]|0; + $579 = (($576) + 4)|0; + $580 = $579; + $581 = HEAP32[$580>>2]|0; + $582 = (_bitshift64Ashr(0,($578|0),32)|0); + $583 = tempRet0; + $584 = (___muldi3(($582|0),($583|0),($574|0),($575|0))|0); + $585 = tempRet0; + $586 = (_i64Add(($566|0),($567|0),($584|0),($585|0))|0); + $587 = tempRet0; + $588 = $1; + $589 = $588; + $590 = HEAP32[$589>>2]|0; + $591 = (($588) + 4)|0; + $592 = $591; + $593 = HEAP32[$592>>2]|0; + $594 = (_bitshift64Ashr(0,($590|0),32)|0); + $595 = tempRet0; + $596 = ((($1)) + 72|0); + $597 = $596; + $598 = $597; + $599 = HEAP32[$598>>2]|0; + $600 = (($597) + 4)|0; + $601 = $600; + $602 = HEAP32[$601>>2]|0; + $603 = (_bitshift64Ashr(0,($599|0),32)|0); + $604 = tempRet0; + $605 = (___muldi3(($603|0),($604|0),($594|0),($595|0))|0); + $606 = tempRet0; + $607 = (_i64Add(($586|0),($587|0),($605|0),($606|0))|0); + $608 = tempRet0; + $609 = (_bitshift64Shl(($607|0),($608|0),1)|0); + $610 = tempRet0; + $611 = ((($0)) + 72|0); + $612 = $611; + $613 = $612; + HEAP32[$613>>2] = $609; + $614 = (($612) + 4)|0; + $615 = $614; + HEAP32[$615>>2] = $610; + $616 = $226; + $617 = $616; + $618 = HEAP32[$617>>2]|0; + $619 = (($616) + 4)|0; + $620 = $619; + $621 = HEAP32[$620>>2]|0; + $622 = (_bitshift64Ashr(0,($618|0),32)|0); + $623 = tempRet0; + $624 = (___muldi3(($622|0),($623|0),($622|0),($623|0))|0); + $625 = tempRet0; + $626 = $162; + $627 = $626; + $628 = HEAP32[$627>>2]|0; + $629 = (($626) + 4)|0; + $630 = $629; + $631 = HEAP32[$630>>2]|0; + $632 = (_bitshift64Ashr(0,($628|0),32)|0); + $633 = tempRet0; + $634 = $284; + $635 = $634; + $636 = HEAP32[$635>>2]|0; + $637 = (($634) + 4)|0; + $638 = $637; + $639 = HEAP32[$638>>2]|0; + $640 = (_bitshift64Ashr(0,($636|0),32)|0); + $641 = tempRet0; + $642 = (___muldi3(($640|0),($641|0),($632|0),($633|0))|0); + $643 = tempRet0; + $644 = (_i64Add(($642|0),($643|0),($624|0),($625|0))|0); + $645 = tempRet0; + $646 = $58; + $647 = $646; + $648 = HEAP32[$647>>2]|0; + $649 = (($646) + 4)|0; + $650 = $649; + $651 = HEAP32[$650>>2]|0; + $652 = (_bitshift64Ashr(0,($648|0),32)|0); + $653 = tempRet0; + $654 = $446; + $655 = $654; + $656 = HEAP32[$655>>2]|0; + $657 = (($654) + 4)|0; + $658 = $657; + $659 = HEAP32[$658>>2]|0; + $660 = (_bitshift64Ashr(0,($656|0),32)|0); + $661 = tempRet0; + $662 = (___muldi3(($660|0),($661|0),($652|0),($653|0))|0); + $663 = tempRet0; + $664 = (_i64Add(($644|0),($645|0),($662|0),($663|0))|0); + $665 = tempRet0; + $666 = $104; + $667 = $666; + $668 = HEAP32[$667>>2]|0; + $669 = (($666) + 4)|0; + $670 = $669; + $671 = HEAP32[$670>>2]|0; + $672 = (_bitshift64Ashr(0,($668|0),32)|0); + $673 = tempRet0; + $674 = $390; + $675 = $674; + $676 = HEAP32[$675>>2]|0; + $677 = (($674) + 4)|0; + $678 = $677; + $679 = HEAP32[$678>>2]|0; + $680 = (_bitshift64Ashr(0,($676|0),32)|0); + $681 = tempRet0; + $682 = (___muldi3(($680|0),($681|0),($672|0),($673|0))|0); + $683 = tempRet0; + $684 = $24; + $685 = $684; + $686 = HEAP32[$685>>2]|0; + $687 = (($684) + 4)|0; + $688 = $687; + $689 = HEAP32[$688>>2]|0; + $690 = (_bitshift64Ashr(0,($686|0),32)|0); + $691 = tempRet0; + $692 = $596; + $693 = $692; + $694 = HEAP32[$693>>2]|0; + $695 = (($692) + 4)|0; + $696 = $695; + $697 = HEAP32[$696>>2]|0; + $698 = (_bitshift64Ashr(0,($694|0),32)|0); + $699 = tempRet0; + $700 = (___muldi3(($698|0),($699|0),($690|0),($691|0))|0); + $701 = tempRet0; + $702 = (_i64Add(($700|0),($701|0),($682|0),($683|0))|0); + $703 = tempRet0; + $704 = (_bitshift64Shl(($702|0),($703|0),1)|0); + $705 = tempRet0; + $706 = (_i64Add(($664|0),($665|0),($704|0),($705|0))|0); + $707 = tempRet0; + $708 = (_bitshift64Shl(($706|0),($707|0),1)|0); + $709 = tempRet0; + $710 = ((($0)) + 80|0); + $711 = $710; + $712 = $711; + HEAP32[$712>>2] = $708; + $713 = (($711) + 4)|0; + $714 = $713; + HEAP32[$714>>2] = $709; + $715 = $226; + $716 = $715; + $717 = HEAP32[$716>>2]|0; + $718 = (($715) + 4)|0; + $719 = $718; + $720 = HEAP32[$719>>2]|0; + $721 = (_bitshift64Ashr(0,($717|0),32)|0); + $722 = tempRet0; + $723 = $284; + $724 = $723; + $725 = HEAP32[$724>>2]|0; + $726 = (($723) + 4)|0; + $727 = $726; + $728 = HEAP32[$727>>2]|0; + $729 = (_bitshift64Ashr(0,($725|0),32)|0); + $730 = tempRet0; + $731 = (___muldi3(($729|0),($730|0),($721|0),($722|0))|0); + $732 = tempRet0; + $733 = $162; + $734 = $733; + $735 = HEAP32[$734>>2]|0; + $736 = (($733) + 4)|0; + $737 = $736; + $738 = HEAP32[$737>>2]|0; + $739 = (_bitshift64Ashr(0,($735|0),32)|0); + $740 = tempRet0; + $741 = $390; + $742 = $741; + $743 = HEAP32[$742>>2]|0; + $744 = (($741) + 4)|0; + $745 = $744; + $746 = HEAP32[$745>>2]|0; + $747 = (_bitshift64Ashr(0,($743|0),32)|0); + $748 = tempRet0; + $749 = (___muldi3(($747|0),($748|0),($739|0),($740|0))|0); + $750 = tempRet0; + $751 = (_i64Add(($749|0),($750|0),($731|0),($732|0))|0); + $752 = tempRet0; + $753 = $104; + $754 = $753; + $755 = HEAP32[$754>>2]|0; + $756 = (($753) + 4)|0; + $757 = $756; + $758 = HEAP32[$757>>2]|0; + $759 = (_bitshift64Ashr(0,($755|0),32)|0); + $760 = tempRet0; + $761 = $446; + $762 = $761; + $763 = HEAP32[$762>>2]|0; + $764 = (($761) + 4)|0; + $765 = $764; + $766 = HEAP32[$765>>2]|0; + $767 = (_bitshift64Ashr(0,($763|0),32)|0); + $768 = tempRet0; + $769 = (___muldi3(($767|0),($768|0),($759|0),($760|0))|0); + $770 = tempRet0; + $771 = (_i64Add(($751|0),($752|0),($769|0),($770|0))|0); + $772 = tempRet0; + $773 = $58; + $774 = $773; + $775 = HEAP32[$774>>2]|0; + $776 = (($773) + 4)|0; + $777 = $776; + $778 = HEAP32[$777>>2]|0; + $779 = (_bitshift64Ashr(0,($775|0),32)|0); + $780 = tempRet0; + $781 = $596; + $782 = $781; + $783 = HEAP32[$782>>2]|0; + $784 = (($781) + 4)|0; + $785 = $784; + $786 = HEAP32[$785>>2]|0; + $787 = (_bitshift64Ashr(0,($783|0),32)|0); + $788 = tempRet0; + $789 = (___muldi3(($787|0),($788|0),($779|0),($780|0))|0); + $790 = tempRet0; + $791 = (_i64Add(($771|0),($772|0),($789|0),($790|0))|0); + $792 = tempRet0; + $793 = (_bitshift64Shl(($791|0),($792|0),1)|0); + $794 = tempRet0; + $795 = ((($0)) + 88|0); + $796 = $795; + $797 = $796; + HEAP32[$797>>2] = $793; + $798 = (($796) + 4)|0; + $799 = $798; + HEAP32[$799>>2] = $794; + $800 = $284; + $801 = $800; + $802 = HEAP32[$801>>2]|0; + $803 = (($800) + 4)|0; + $804 = $803; + $805 = HEAP32[$804>>2]|0; + $806 = (_bitshift64Ashr(0,($802|0),32)|0); + $807 = tempRet0; + $808 = (___muldi3(($806|0),($807|0),($806|0),($807|0))|0); + $809 = tempRet0; + $810 = $162; + $811 = $810; + $812 = HEAP32[$811>>2]|0; + $813 = (($810) + 4)|0; + $814 = $813; + $815 = HEAP32[$814>>2]|0; + $816 = (_bitshift64Ashr(0,($812|0),32)|0); + $817 = tempRet0; + $818 = $446; + $819 = $818; + $820 = HEAP32[$819>>2]|0; + $821 = (($818) + 4)|0; + $822 = $821; + $823 = HEAP32[$822>>2]|0; + $824 = (_bitshift64Ashr(0,($820|0),32)|0); + $825 = tempRet0; + $826 = (___muldi3(($824|0),($825|0),($816|0),($817|0))|0); + $827 = tempRet0; + $828 = $226; + $829 = $828; + $830 = HEAP32[$829>>2]|0; + $831 = (($828) + 4)|0; + $832 = $831; + $833 = HEAP32[$832>>2]|0; + $834 = (_bitshift64Ashr(0,($830|0),32)|0); + $835 = tempRet0; + $836 = $390; + $837 = $836; + $838 = HEAP32[$837>>2]|0; + $839 = (($836) + 4)|0; + $840 = $839; + $841 = HEAP32[$840>>2]|0; + $842 = (_bitshift64Ashr(0,($838|0),32)|0); + $843 = tempRet0; + $844 = (___muldi3(($842|0),($843|0),($834|0),($835|0))|0); + $845 = tempRet0; + $846 = $104; + $847 = $846; + $848 = HEAP32[$847>>2]|0; + $849 = (($846) + 4)|0; + $850 = $849; + $851 = HEAP32[$850>>2]|0; + $852 = (_bitshift64Ashr(0,($848|0),32)|0); + $853 = tempRet0; + $854 = $596; + $855 = $854; + $856 = HEAP32[$855>>2]|0; + $857 = (($854) + 4)|0; + $858 = $857; + $859 = HEAP32[$858>>2]|0; + $860 = (_bitshift64Ashr(0,($856|0),32)|0); + $861 = tempRet0; + $862 = (___muldi3(($860|0),($861|0),($852|0),($853|0))|0); + $863 = tempRet0; + $864 = (_i64Add(($862|0),($863|0),($844|0),($845|0))|0); + $865 = tempRet0; + $866 = (_bitshift64Shl(($864|0),($865|0),1)|0); + $867 = tempRet0; + $868 = (_i64Add(($866|0),($867|0),($826|0),($827|0))|0); + $869 = tempRet0; + $870 = (_bitshift64Shl(($868|0),($869|0),1)|0); + $871 = tempRet0; + $872 = (_i64Add(($870|0),($871|0),($808|0),($809|0))|0); + $873 = tempRet0; + $874 = ((($0)) + 96|0); + $875 = $874; + $876 = $875; + HEAP32[$876>>2] = $872; + $877 = (($875) + 4)|0; + $878 = $877; + HEAP32[$878>>2] = $873; + $879 = $284; + $880 = $879; + $881 = HEAP32[$880>>2]|0; + $882 = (($879) + 4)|0; + $883 = $882; + $884 = HEAP32[$883>>2]|0; + $885 = (_bitshift64Ashr(0,($881|0),32)|0); + $886 = tempRet0; + $887 = $390; + $888 = $887; + $889 = HEAP32[$888>>2]|0; + $890 = (($887) + 4)|0; + $891 = $890; + $892 = HEAP32[$891>>2]|0; + $893 = (_bitshift64Ashr(0,($889|0),32)|0); + $894 = tempRet0; + $895 = (___muldi3(($893|0),($894|0),($885|0),($886|0))|0); + $896 = tempRet0; + $897 = $226; + $898 = $897; + $899 = HEAP32[$898>>2]|0; + $900 = (($897) + 4)|0; + $901 = $900; + $902 = HEAP32[$901>>2]|0; + $903 = (_bitshift64Ashr(0,($899|0),32)|0); + $904 = tempRet0; + $905 = $446; + $906 = $905; + $907 = HEAP32[$906>>2]|0; + $908 = (($905) + 4)|0; + $909 = $908; + $910 = HEAP32[$909>>2]|0; + $911 = (_bitshift64Ashr(0,($907|0),32)|0); + $912 = tempRet0; + $913 = (___muldi3(($911|0),($912|0),($903|0),($904|0))|0); + $914 = tempRet0; + $915 = (_i64Add(($913|0),($914|0),($895|0),($896|0))|0); + $916 = tempRet0; + $917 = $162; + $918 = $917; + $919 = HEAP32[$918>>2]|0; + $920 = (($917) + 4)|0; + $921 = $920; + $922 = HEAP32[$921>>2]|0; + $923 = (_bitshift64Ashr(0,($919|0),32)|0); + $924 = tempRet0; + $925 = $596; + $926 = $925; + $927 = HEAP32[$926>>2]|0; + $928 = (($925) + 4)|0; + $929 = $928; + $930 = HEAP32[$929>>2]|0; + $931 = (_bitshift64Ashr(0,($927|0),32)|0); + $932 = tempRet0; + $933 = (___muldi3(($931|0),($932|0),($923|0),($924|0))|0); + $934 = tempRet0; + $935 = (_i64Add(($915|0),($916|0),($933|0),($934|0))|0); + $936 = tempRet0; + $937 = (_bitshift64Shl(($935|0),($936|0),1)|0); + $938 = tempRet0; + $939 = ((($0)) + 104|0); + $940 = $939; + $941 = $940; + HEAP32[$941>>2] = $937; + $942 = (($940) + 4)|0; + $943 = $942; + HEAP32[$943>>2] = $938; + $944 = $390; + $945 = $944; + $946 = HEAP32[$945>>2]|0; + $947 = (($944) + 4)|0; + $948 = $947; + $949 = HEAP32[$948>>2]|0; + $950 = (_bitshift64Ashr(0,($946|0),32)|0); + $951 = tempRet0; + $952 = (___muldi3(($950|0),($951|0),($950|0),($951|0))|0); + $953 = tempRet0; + $954 = $284; + $955 = $954; + $956 = HEAP32[$955>>2]|0; + $957 = (($954) + 4)|0; + $958 = $957; + $959 = HEAP32[$958>>2]|0; + $960 = (_bitshift64Ashr(0,($956|0),32)|0); + $961 = tempRet0; + $962 = $446; + $963 = $962; + $964 = HEAP32[$963>>2]|0; + $965 = (($962) + 4)|0; + $966 = $965; + $967 = HEAP32[$966>>2]|0; + $968 = (_bitshift64Ashr(0,($964|0),32)|0); + $969 = tempRet0; + $970 = (___muldi3(($968|0),($969|0),($960|0),($961|0))|0); + $971 = tempRet0; + $972 = (_i64Add(($970|0),($971|0),($952|0),($953|0))|0); + $973 = tempRet0; + $974 = $226; + $975 = $974; + $976 = HEAP32[$975>>2]|0; + $977 = (($974) + 4)|0; + $978 = $977; + $979 = HEAP32[$978>>2]|0; + $980 = (_bitshift64Ashr(0,($976|0),31)|0); + $981 = tempRet0; + $982 = $596; + $983 = $982; + $984 = HEAP32[$983>>2]|0; + $985 = (($982) + 4)|0; + $986 = $985; + $987 = HEAP32[$986>>2]|0; + $988 = (_bitshift64Ashr(0,($984|0),32)|0); + $989 = tempRet0; + $990 = (___muldi3(($988|0),($989|0),($980|0),($981|0))|0); + $991 = tempRet0; + $992 = (_i64Add(($972|0),($973|0),($990|0),($991|0))|0); + $993 = tempRet0; + $994 = (_bitshift64Shl(($992|0),($993|0),1)|0); + $995 = tempRet0; + $996 = ((($0)) + 112|0); + $997 = $996; + $998 = $997; + HEAP32[$998>>2] = $994; + $999 = (($997) + 4)|0; + $1000 = $999; + HEAP32[$1000>>2] = $995; + $1001 = $390; + $1002 = $1001; + $1003 = HEAP32[$1002>>2]|0; + $1004 = (($1001) + 4)|0; + $1005 = $1004; + $1006 = HEAP32[$1005>>2]|0; + $1007 = (_bitshift64Ashr(0,($1003|0),32)|0); + $1008 = tempRet0; + $1009 = $446; + $1010 = $1009; + $1011 = HEAP32[$1010>>2]|0; + $1012 = (($1009) + 4)|0; + $1013 = $1012; + $1014 = HEAP32[$1013>>2]|0; + $1015 = (_bitshift64Ashr(0,($1011|0),32)|0); + $1016 = tempRet0; + $1017 = (___muldi3(($1015|0),($1016|0),($1007|0),($1008|0))|0); + $1018 = tempRet0; + $1019 = $284; + $1020 = $1019; + $1021 = HEAP32[$1020>>2]|0; + $1022 = (($1019) + 4)|0; + $1023 = $1022; + $1024 = HEAP32[$1023>>2]|0; + $1025 = (_bitshift64Ashr(0,($1021|0),32)|0); + $1026 = tempRet0; + $1027 = $596; + $1028 = $1027; + $1029 = HEAP32[$1028>>2]|0; + $1030 = (($1027) + 4)|0; + $1031 = $1030; + $1032 = HEAP32[$1031>>2]|0; + $1033 = (_bitshift64Ashr(0,($1029|0),32)|0); + $1034 = tempRet0; + $1035 = (___muldi3(($1033|0),($1034|0),($1025|0),($1026|0))|0); + $1036 = tempRet0; + $1037 = (_i64Add(($1035|0),($1036|0),($1017|0),($1018|0))|0); + $1038 = tempRet0; + $1039 = (_bitshift64Shl(($1037|0),($1038|0),1)|0); + $1040 = tempRet0; + $1041 = ((($0)) + 120|0); + $1042 = $1041; + $1043 = $1042; + HEAP32[$1043>>2] = $1039; + $1044 = (($1042) + 4)|0; + $1045 = $1044; + HEAP32[$1045>>2] = $1040; + $1046 = $446; + $1047 = $1046; + $1048 = HEAP32[$1047>>2]|0; + $1049 = (($1046) + 4)|0; + $1050 = $1049; + $1051 = HEAP32[$1050>>2]|0; + $1052 = (_bitshift64Ashr(0,($1048|0),32)|0); + $1053 = tempRet0; + $1054 = (___muldi3(($1052|0),($1053|0),($1052|0),($1053|0))|0); + $1055 = tempRet0; + $1056 = $390; + $1057 = $1056; + $1058 = HEAP32[$1057>>2]|0; + $1059 = (($1056) + 4)|0; + $1060 = $1059; + $1061 = HEAP32[$1060>>2]|0; + $1062 = (_bitshift64Ashr(0,($1058|0),30)|0); + $1063 = tempRet0; + $1064 = $596; + $1065 = $1064; + $1066 = HEAP32[$1065>>2]|0; + $1067 = (($1064) + 4)|0; + $1068 = $1067; + $1069 = HEAP32[$1068>>2]|0; + $1070 = (_bitshift64Ashr(0,($1066|0),32)|0); + $1071 = tempRet0; + $1072 = (___muldi3(($1070|0),($1071|0),($1062|0),($1063|0))|0); + $1073 = tempRet0; + $1074 = (_i64Add(($1072|0),($1073|0),($1054|0),($1055|0))|0); + $1075 = tempRet0; + $1076 = ((($0)) + 128|0); + $1077 = $1076; + $1078 = $1077; + HEAP32[$1078>>2] = $1074; + $1079 = (($1077) + 4)|0; + $1080 = $1079; + HEAP32[$1080>>2] = $1075; + $1081 = $446; + $1082 = $1081; + $1083 = HEAP32[$1082>>2]|0; + $1084 = (($1081) + 4)|0; + $1085 = $1084; + $1086 = HEAP32[$1085>>2]|0; + $1087 = (_bitshift64Ashr(0,($1083|0),31)|0); + $1088 = tempRet0; + $1089 = $596; + $1090 = $1089; + $1091 = HEAP32[$1090>>2]|0; + $1092 = (($1089) + 4)|0; + $1093 = $1092; + $1094 = HEAP32[$1093>>2]|0; + $1095 = (_bitshift64Ashr(0,($1091|0),32)|0); + $1096 = tempRet0; + $1097 = (___muldi3(($1095|0),($1096|0),($1087|0),($1088|0))|0); + $1098 = tempRet0; + $1099 = ((($0)) + 136|0); + $1100 = $1099; + $1101 = $1100; + HEAP32[$1101>>2] = $1097; + $1102 = (($1100) + 4)|0; + $1103 = $1102; + HEAP32[$1103>>2] = $1098; + $1104 = $596; + $1105 = $1104; + $1106 = HEAP32[$1105>>2]|0; + $1107 = (($1104) + 4)|0; + $1108 = $1107; + $1109 = HEAP32[$1108>>2]|0; + $1110 = (_bitshift64Ashr(0,($1106|0),32)|0); + $1111 = tempRet0; + $1112 = (_bitshift64Ashr(0,($1106|0),31)|0); + $1113 = tempRet0; + $1114 = (___muldi3(($1112|0),($1113|0),($1110|0),($1111|0))|0); + $1115 = tempRet0; + $1116 = ((($0)) + 144|0); + $1117 = $1116; + $1118 = $1117; + HEAP32[$1118>>2] = $1114; + $1119 = (($1117) + 4)|0; + $1120 = $1119; + HEAP32[$1120>>2] = $1115; + return; +} +function _swap_conditional($0,$1,$2,$3) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0; + var $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0; + var $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0; + var $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0; + var $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0; + var $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0; + var $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0; + var $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0; + var $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0; + var $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0; + var $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; + var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0; + var $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0; + var $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0; + var label = 0, sp = 0; + sp = STACKTOP; + $4 = (_i64Subtract(0,0,($2|0),($3|0))|0); + $5 = tempRet0; + $6 = $0; + $7 = $6; + $8 = HEAP32[$7>>2]|0; + $9 = (($6) + 4)|0; + $10 = $9; + $11 = HEAP32[$10>>2]|0; + $12 = $1; + $13 = $12; + $14 = HEAP32[$13>>2]|0; + $15 = (($12) + 4)|0; + $16 = $15; + $17 = HEAP32[$16>>2]|0; + $18 = $14 ^ $8; + $19 = $17 ^ $11; + $20 = $18 & $4; + $21 = $19 & $5; + $22 = $20 ^ $8; + $21 ^ $11; + $23 = (_bitshift64Ashr(0,($22|0),32)|0); + $24 = tempRet0; + $25 = $0; + $26 = $25; + HEAP32[$26>>2] = $23; + $27 = (($25) + 4)|0; + $28 = $27; + HEAP32[$28>>2] = $24; + $29 = $1; + $30 = $29; + $31 = HEAP32[$30>>2]|0; + $32 = (($29) + 4)|0; + $33 = $32; + $34 = HEAP32[$33>>2]|0; + $35 = $31 ^ $20; + $34 ^ $21; + $36 = (_bitshift64Ashr(0,($35|0),32)|0); + $37 = tempRet0; + $38 = $1; + $39 = $38; + HEAP32[$39>>2] = $36; + $40 = (($38) + 4)|0; + $41 = $40; + HEAP32[$41>>2] = $37; + $42 = ((($0)) + 8|0); + $43 = $42; + $44 = $43; + $45 = HEAP32[$44>>2]|0; + $46 = (($43) + 4)|0; + $47 = $46; + $48 = HEAP32[$47>>2]|0; + $49 = ((($1)) + 8|0); + $50 = $49; + $51 = $50; + $52 = HEAP32[$51>>2]|0; + $53 = (($50) + 4)|0; + $54 = $53; + $55 = HEAP32[$54>>2]|0; + $56 = $52 ^ $45; + $57 = $55 ^ $48; + $58 = $56 & $4; + $59 = $57 & $5; + $60 = $58 ^ $45; + $59 ^ $48; + $61 = (_bitshift64Ashr(0,($60|0),32)|0); + $62 = tempRet0; + $63 = $42; + $64 = $63; + HEAP32[$64>>2] = $61; + $65 = (($63) + 4)|0; + $66 = $65; + HEAP32[$66>>2] = $62; + $67 = $49; + $68 = $67; + $69 = HEAP32[$68>>2]|0; + $70 = (($67) + 4)|0; + $71 = $70; + $72 = HEAP32[$71>>2]|0; + $73 = $69 ^ $58; + $72 ^ $59; + $74 = (_bitshift64Ashr(0,($73|0),32)|0); + $75 = tempRet0; + $76 = $49; + $77 = $76; + HEAP32[$77>>2] = $74; + $78 = (($76) + 4)|0; + $79 = $78; + HEAP32[$79>>2] = $75; + $80 = ((($0)) + 16|0); + $81 = $80; + $82 = $81; + $83 = HEAP32[$82>>2]|0; + $84 = (($81) + 4)|0; + $85 = $84; + $86 = HEAP32[$85>>2]|0; + $87 = ((($1)) + 16|0); + $88 = $87; + $89 = $88; + $90 = HEAP32[$89>>2]|0; + $91 = (($88) + 4)|0; + $92 = $91; + $93 = HEAP32[$92>>2]|0; + $94 = $90 ^ $83; + $95 = $93 ^ $86; + $96 = $94 & $4; + $97 = $95 & $5; + $98 = $96 ^ $83; + $97 ^ $86; + $99 = (_bitshift64Ashr(0,($98|0),32)|0); + $100 = tempRet0; + $101 = $80; + $102 = $101; + HEAP32[$102>>2] = $99; + $103 = (($101) + 4)|0; + $104 = $103; + HEAP32[$104>>2] = $100; + $105 = $87; + $106 = $105; + $107 = HEAP32[$106>>2]|0; + $108 = (($105) + 4)|0; + $109 = $108; + $110 = HEAP32[$109>>2]|0; + $111 = $107 ^ $96; + $110 ^ $97; + $112 = (_bitshift64Ashr(0,($111|0),32)|0); + $113 = tempRet0; + $114 = $87; + $115 = $114; + HEAP32[$115>>2] = $112; + $116 = (($114) + 4)|0; + $117 = $116; + HEAP32[$117>>2] = $113; + $118 = ((($0)) + 24|0); + $119 = $118; + $120 = $119; + $121 = HEAP32[$120>>2]|0; + $122 = (($119) + 4)|0; + $123 = $122; + $124 = HEAP32[$123>>2]|0; + $125 = ((($1)) + 24|0); + $126 = $125; + $127 = $126; + $128 = HEAP32[$127>>2]|0; + $129 = (($126) + 4)|0; + $130 = $129; + $131 = HEAP32[$130>>2]|0; + $132 = $128 ^ $121; + $133 = $131 ^ $124; + $134 = $132 & $4; + $135 = $133 & $5; + $136 = $134 ^ $121; + $135 ^ $124; + $137 = (_bitshift64Ashr(0,($136|0),32)|0); + $138 = tempRet0; + $139 = $118; + $140 = $139; + HEAP32[$140>>2] = $137; + $141 = (($139) + 4)|0; + $142 = $141; + HEAP32[$142>>2] = $138; + $143 = $125; + $144 = $143; + $145 = HEAP32[$144>>2]|0; + $146 = (($143) + 4)|0; + $147 = $146; + $148 = HEAP32[$147>>2]|0; + $149 = $145 ^ $134; + $148 ^ $135; + $150 = (_bitshift64Ashr(0,($149|0),32)|0); + $151 = tempRet0; + $152 = $125; + $153 = $152; + HEAP32[$153>>2] = $150; + $154 = (($152) + 4)|0; + $155 = $154; + HEAP32[$155>>2] = $151; + $156 = ((($0)) + 32|0); + $157 = $156; + $158 = $157; + $159 = HEAP32[$158>>2]|0; + $160 = (($157) + 4)|0; + $161 = $160; + $162 = HEAP32[$161>>2]|0; + $163 = ((($1)) + 32|0); + $164 = $163; + $165 = $164; + $166 = HEAP32[$165>>2]|0; + $167 = (($164) + 4)|0; + $168 = $167; + $169 = HEAP32[$168>>2]|0; + $170 = $166 ^ $159; + $171 = $169 ^ $162; + $172 = $170 & $4; + $173 = $171 & $5; + $174 = $172 ^ $159; + $173 ^ $162; + $175 = (_bitshift64Ashr(0,($174|0),32)|0); + $176 = tempRet0; + $177 = $156; + $178 = $177; + HEAP32[$178>>2] = $175; + $179 = (($177) + 4)|0; + $180 = $179; + HEAP32[$180>>2] = $176; + $181 = $163; + $182 = $181; + $183 = HEAP32[$182>>2]|0; + $184 = (($181) + 4)|0; + $185 = $184; + $186 = HEAP32[$185>>2]|0; + $187 = $183 ^ $172; + $186 ^ $173; + $188 = (_bitshift64Ashr(0,($187|0),32)|0); + $189 = tempRet0; + $190 = $163; + $191 = $190; + HEAP32[$191>>2] = $188; + $192 = (($190) + 4)|0; + $193 = $192; + HEAP32[$193>>2] = $189; + $194 = ((($0)) + 40|0); + $195 = $194; + $196 = $195; + $197 = HEAP32[$196>>2]|0; + $198 = (($195) + 4)|0; + $199 = $198; + $200 = HEAP32[$199>>2]|0; + $201 = ((($1)) + 40|0); + $202 = $201; + $203 = $202; + $204 = HEAP32[$203>>2]|0; + $205 = (($202) + 4)|0; + $206 = $205; + $207 = HEAP32[$206>>2]|0; + $208 = $204 ^ $197; + $209 = $207 ^ $200; + $210 = $208 & $4; + $211 = $209 & $5; + $212 = $210 ^ $197; + $211 ^ $200; + $213 = (_bitshift64Ashr(0,($212|0),32)|0); + $214 = tempRet0; + $215 = $194; + $216 = $215; + HEAP32[$216>>2] = $213; + $217 = (($215) + 4)|0; + $218 = $217; + HEAP32[$218>>2] = $214; + $219 = $201; + $220 = $219; + $221 = HEAP32[$220>>2]|0; + $222 = (($219) + 4)|0; + $223 = $222; + $224 = HEAP32[$223>>2]|0; + $225 = $221 ^ $210; + $224 ^ $211; + $226 = (_bitshift64Ashr(0,($225|0),32)|0); + $227 = tempRet0; + $228 = $201; + $229 = $228; + HEAP32[$229>>2] = $226; + $230 = (($228) + 4)|0; + $231 = $230; + HEAP32[$231>>2] = $227; + $232 = ((($0)) + 48|0); + $233 = $232; + $234 = $233; + $235 = HEAP32[$234>>2]|0; + $236 = (($233) + 4)|0; + $237 = $236; + $238 = HEAP32[$237>>2]|0; + $239 = ((($1)) + 48|0); + $240 = $239; + $241 = $240; + $242 = HEAP32[$241>>2]|0; + $243 = (($240) + 4)|0; + $244 = $243; + $245 = HEAP32[$244>>2]|0; + $246 = $242 ^ $235; + $247 = $245 ^ $238; + $248 = $246 & $4; + $249 = $247 & $5; + $250 = $248 ^ $235; + $249 ^ $238; + $251 = (_bitshift64Ashr(0,($250|0),32)|0); + $252 = tempRet0; + $253 = $232; + $254 = $253; + HEAP32[$254>>2] = $251; + $255 = (($253) + 4)|0; + $256 = $255; + HEAP32[$256>>2] = $252; + $257 = $239; + $258 = $257; + $259 = HEAP32[$258>>2]|0; + $260 = (($257) + 4)|0; + $261 = $260; + $262 = HEAP32[$261>>2]|0; + $263 = $259 ^ $248; + $262 ^ $249; + $264 = (_bitshift64Ashr(0,($263|0),32)|0); + $265 = tempRet0; + $266 = $239; + $267 = $266; + HEAP32[$267>>2] = $264; + $268 = (($266) + 4)|0; + $269 = $268; + HEAP32[$269>>2] = $265; + $270 = ((($0)) + 56|0); + $271 = $270; + $272 = $271; + $273 = HEAP32[$272>>2]|0; + $274 = (($271) + 4)|0; + $275 = $274; + $276 = HEAP32[$275>>2]|0; + $277 = ((($1)) + 56|0); + $278 = $277; + $279 = $278; + $280 = HEAP32[$279>>2]|0; + $281 = (($278) + 4)|0; + $282 = $281; + $283 = HEAP32[$282>>2]|0; + $284 = $280 ^ $273; + $285 = $283 ^ $276; + $286 = $284 & $4; + $287 = $285 & $5; + $288 = $286 ^ $273; + $287 ^ $276; + $289 = (_bitshift64Ashr(0,($288|0),32)|0); + $290 = tempRet0; + $291 = $270; + $292 = $291; + HEAP32[$292>>2] = $289; + $293 = (($291) + 4)|0; + $294 = $293; + HEAP32[$294>>2] = $290; + $295 = $277; + $296 = $295; + $297 = HEAP32[$296>>2]|0; + $298 = (($295) + 4)|0; + $299 = $298; + $300 = HEAP32[$299>>2]|0; + $301 = $297 ^ $286; + $300 ^ $287; + $302 = (_bitshift64Ashr(0,($301|0),32)|0); + $303 = tempRet0; + $304 = $277; + $305 = $304; + HEAP32[$305>>2] = $302; + $306 = (($304) + 4)|0; + $307 = $306; + HEAP32[$307>>2] = $303; + $308 = ((($0)) + 64|0); + $309 = $308; + $310 = $309; + $311 = HEAP32[$310>>2]|0; + $312 = (($309) + 4)|0; + $313 = $312; + $314 = HEAP32[$313>>2]|0; + $315 = ((($1)) + 64|0); + $316 = $315; + $317 = $316; + $318 = HEAP32[$317>>2]|0; + $319 = (($316) + 4)|0; + $320 = $319; + $321 = HEAP32[$320>>2]|0; + $322 = $318 ^ $311; + $323 = $321 ^ $314; + $324 = $322 & $4; + $325 = $323 & $5; + $326 = $324 ^ $311; + $325 ^ $314; + $327 = (_bitshift64Ashr(0,($326|0),32)|0); + $328 = tempRet0; + $329 = $308; + $330 = $329; + HEAP32[$330>>2] = $327; + $331 = (($329) + 4)|0; + $332 = $331; + HEAP32[$332>>2] = $328; + $333 = $315; + $334 = $333; + $335 = HEAP32[$334>>2]|0; + $336 = (($333) + 4)|0; + $337 = $336; + $338 = HEAP32[$337>>2]|0; + $339 = $335 ^ $324; + $338 ^ $325; + $340 = (_bitshift64Ashr(0,($339|0),32)|0); + $341 = tempRet0; + $342 = $315; + $343 = $342; + HEAP32[$343>>2] = $340; + $344 = (($342) + 4)|0; + $345 = $344; + HEAP32[$345>>2] = $341; + $346 = ((($0)) + 72|0); + $347 = $346; + $348 = $347; + $349 = HEAP32[$348>>2]|0; + $350 = (($347) + 4)|0; + $351 = $350; + $352 = HEAP32[$351>>2]|0; + $353 = ((($1)) + 72|0); + $354 = $353; + $355 = $354; + $356 = HEAP32[$355>>2]|0; + $357 = (($354) + 4)|0; + $358 = $357; + $359 = HEAP32[$358>>2]|0; + $360 = $356 ^ $349; + $361 = $359 ^ $352; + $362 = $360 & $4; + $363 = $361 & $5; + $364 = $362 ^ $349; + $363 ^ $352; + $365 = (_bitshift64Ashr(0,($364|0),32)|0); + $366 = tempRet0; + $367 = $346; + $368 = $367; + HEAP32[$368>>2] = $365; + $369 = (($367) + 4)|0; + $370 = $369; + HEAP32[$370>>2] = $366; + $371 = $353; + $372 = $371; + $373 = HEAP32[$372>>2]|0; + $374 = (($371) + 4)|0; + $375 = $374; + $376 = HEAP32[$375>>2]|0; + $377 = $373 ^ $362; + $376 ^ $363; + $378 = (_bitshift64Ashr(0,($377|0),32)|0); + $379 = tempRet0; + $380 = $353; + $381 = $380; + HEAP32[$381>>2] = $378; + $382 = (($380) + 4)|0; + $383 = $382; + HEAP32[$383>>2] = $379; + return; +} +function _fmonty($0,$1,$2,$3,$4,$5,$6,$7,$8) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + $4 = $4|0; + $5 = $5|0; + $6 = $6|0; + $7 = $7|0; + $8 = $8|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $9 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 1232|0; + $9 = sp + 1144|0; + $10 = sp + 1064|0; + $11 = sp + 912|0; + $12 = sp + 760|0; + $13 = sp + 608|0; + $14 = sp + 456|0; + $15 = sp + 304|0; + $16 = sp + 152|0; + $17 = sp; + dest=$9; src=$4; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsum($4,$5); + _fdifference($5,$9); + dest=$10; src=$6; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsum($6,$7); + _fdifference($7,$10); + _fproduct($14,$6,$5); + _fproduct($15,$4,$7); + _freduce_degree($14); + _freduce_coefficients($14); + _freduce_degree($15); + _freduce_coefficients($15); + dest=$10; src=$14; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsum($14,$15); + _fdifference($15,$10); + _fsquare($17,$14); + _fsquare($16,$15); + _fproduct($15,$16,$8); + _freduce_degree($15); + _freduce_coefficients($15); + dest=$2; src=$17; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + dest=$3; src=$15; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsquare($12,$4); + _fsquare($13,$5); + _fproduct($0,$12,$13); + _freduce_degree($0); + _freduce_coefficients($0); + _fdifference($13,$12); + $18 = ((($11)) + 80|0); + dest=$18; stop=dest+72|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); + _fscalar_product($11,$13); + _freduce_coefficients($11); + _fsum($11,$12); + _fproduct($1,$13,$11); + _freduce_degree($1); + _freduce_coefficients($1); + STACKTOP = sp;return; +} +function _fsum($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; + var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; + var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; + var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = $0; + $3 = $2; + $4 = HEAP32[$3>>2]|0; + $5 = (($2) + 4)|0; + $6 = $5; + $7 = HEAP32[$6>>2]|0; + $8 = $1; + $9 = $8; + $10 = HEAP32[$9>>2]|0; + $11 = (($8) + 4)|0; + $12 = $11; + $13 = HEAP32[$12>>2]|0; + $14 = (_i64Add(($10|0),($13|0),($4|0),($7|0))|0); + $15 = tempRet0; + $16 = $0; + $17 = $16; + HEAP32[$17>>2] = $14; + $18 = (($16) + 4)|0; + $19 = $18; + HEAP32[$19>>2] = $15; + $20 = ((($0)) + 8|0); + $21 = $20; + $22 = $21; + $23 = HEAP32[$22>>2]|0; + $24 = (($21) + 4)|0; + $25 = $24; + $26 = HEAP32[$25>>2]|0; + $27 = ((($1)) + 8|0); + $28 = $27; + $29 = $28; + $30 = HEAP32[$29>>2]|0; + $31 = (($28) + 4)|0; + $32 = $31; + $33 = HEAP32[$32>>2]|0; + $34 = (_i64Add(($30|0),($33|0),($23|0),($26|0))|0); + $35 = tempRet0; + $36 = $20; + $37 = $36; + HEAP32[$37>>2] = $34; + $38 = (($36) + 4)|0; + $39 = $38; + HEAP32[$39>>2] = $35; + $40 = ((($0)) + 16|0); + $41 = $40; + $42 = $41; + $43 = HEAP32[$42>>2]|0; + $44 = (($41) + 4)|0; + $45 = $44; + $46 = HEAP32[$45>>2]|0; + $47 = ((($1)) + 16|0); + $48 = $47; + $49 = $48; + $50 = HEAP32[$49>>2]|0; + $51 = (($48) + 4)|0; + $52 = $51; + $53 = HEAP32[$52>>2]|0; + $54 = (_i64Add(($50|0),($53|0),($43|0),($46|0))|0); + $55 = tempRet0; + $56 = $40; + $57 = $56; + HEAP32[$57>>2] = $54; + $58 = (($56) + 4)|0; + $59 = $58; + HEAP32[$59>>2] = $55; + $60 = ((($0)) + 24|0); + $61 = $60; + $62 = $61; + $63 = HEAP32[$62>>2]|0; + $64 = (($61) + 4)|0; + $65 = $64; + $66 = HEAP32[$65>>2]|0; + $67 = ((($1)) + 24|0); + $68 = $67; + $69 = $68; + $70 = HEAP32[$69>>2]|0; + $71 = (($68) + 4)|0; + $72 = $71; + $73 = HEAP32[$72>>2]|0; + $74 = (_i64Add(($70|0),($73|0),($63|0),($66|0))|0); + $75 = tempRet0; + $76 = $60; + $77 = $76; + HEAP32[$77>>2] = $74; + $78 = (($76) + 4)|0; + $79 = $78; + HEAP32[$79>>2] = $75; + $80 = ((($0)) + 32|0); + $81 = $80; + $82 = $81; + $83 = HEAP32[$82>>2]|0; + $84 = (($81) + 4)|0; + $85 = $84; + $86 = HEAP32[$85>>2]|0; + $87 = ((($1)) + 32|0); + $88 = $87; + $89 = $88; + $90 = HEAP32[$89>>2]|0; + $91 = (($88) + 4)|0; + $92 = $91; + $93 = HEAP32[$92>>2]|0; + $94 = (_i64Add(($90|0),($93|0),($83|0),($86|0))|0); + $95 = tempRet0; + $96 = $80; + $97 = $96; + HEAP32[$97>>2] = $94; + $98 = (($96) + 4)|0; + $99 = $98; + HEAP32[$99>>2] = $95; + $100 = ((($0)) + 40|0); + $101 = $100; + $102 = $101; + $103 = HEAP32[$102>>2]|0; + $104 = (($101) + 4)|0; + $105 = $104; + $106 = HEAP32[$105>>2]|0; + $107 = ((($1)) + 40|0); + $108 = $107; + $109 = $108; + $110 = HEAP32[$109>>2]|0; + $111 = (($108) + 4)|0; + $112 = $111; + $113 = HEAP32[$112>>2]|0; + $114 = (_i64Add(($110|0),($113|0),($103|0),($106|0))|0); + $115 = tempRet0; + $116 = $100; + $117 = $116; + HEAP32[$117>>2] = $114; + $118 = (($116) + 4)|0; + $119 = $118; + HEAP32[$119>>2] = $115; + $120 = ((($0)) + 48|0); + $121 = $120; + $122 = $121; + $123 = HEAP32[$122>>2]|0; + $124 = (($121) + 4)|0; + $125 = $124; + $126 = HEAP32[$125>>2]|0; + $127 = ((($1)) + 48|0); + $128 = $127; + $129 = $128; + $130 = HEAP32[$129>>2]|0; + $131 = (($128) + 4)|0; + $132 = $131; + $133 = HEAP32[$132>>2]|0; + $134 = (_i64Add(($130|0),($133|0),($123|0),($126|0))|0); + $135 = tempRet0; + $136 = $120; + $137 = $136; + HEAP32[$137>>2] = $134; + $138 = (($136) + 4)|0; + $139 = $138; + HEAP32[$139>>2] = $135; + $140 = ((($0)) + 56|0); + $141 = $140; + $142 = $141; + $143 = HEAP32[$142>>2]|0; + $144 = (($141) + 4)|0; + $145 = $144; + $146 = HEAP32[$145>>2]|0; + $147 = ((($1)) + 56|0); + $148 = $147; + $149 = $148; + $150 = HEAP32[$149>>2]|0; + $151 = (($148) + 4)|0; + $152 = $151; + $153 = HEAP32[$152>>2]|0; + $154 = (_i64Add(($150|0),($153|0),($143|0),($146|0))|0); + $155 = tempRet0; + $156 = $140; + $157 = $156; + HEAP32[$157>>2] = $154; + $158 = (($156) + 4)|0; + $159 = $158; + HEAP32[$159>>2] = $155; + $160 = ((($0)) + 64|0); + $161 = $160; + $162 = $161; + $163 = HEAP32[$162>>2]|0; + $164 = (($161) + 4)|0; + $165 = $164; + $166 = HEAP32[$165>>2]|0; + $167 = ((($1)) + 64|0); + $168 = $167; + $169 = $168; + $170 = HEAP32[$169>>2]|0; + $171 = (($168) + 4)|0; + $172 = $171; + $173 = HEAP32[$172>>2]|0; + $174 = (_i64Add(($170|0),($173|0),($163|0),($166|0))|0); + $175 = tempRet0; + $176 = $160; + $177 = $176; + HEAP32[$177>>2] = $174; + $178 = (($176) + 4)|0; + $179 = $178; + HEAP32[$179>>2] = $175; + $180 = ((($0)) + 72|0); + $181 = $180; + $182 = $181; + $183 = HEAP32[$182>>2]|0; + $184 = (($181) + 4)|0; + $185 = $184; + $186 = HEAP32[$185>>2]|0; + $187 = ((($1)) + 72|0); + $188 = $187; + $189 = $188; + $190 = HEAP32[$189>>2]|0; + $191 = (($188) + 4)|0; + $192 = $191; + $193 = HEAP32[$192>>2]|0; + $194 = (_i64Add(($190|0),($193|0),($183|0),($186|0))|0); + $195 = tempRet0; + $196 = $180; + $197 = $196; + HEAP32[$197>>2] = $194; + $198 = (($196) + 4)|0; + $199 = $198; + HEAP32[$199>>2] = $195; + return; +} +function _fdifference($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; + var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; + var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; + var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = $1; + $3 = $2; + $4 = HEAP32[$3>>2]|0; + $5 = (($2) + 4)|0; + $6 = $5; + $7 = HEAP32[$6>>2]|0; + $8 = $0; + $9 = $8; + $10 = HEAP32[$9>>2]|0; + $11 = (($8) + 4)|0; + $12 = $11; + $13 = HEAP32[$12>>2]|0; + $14 = (_i64Subtract(($4|0),($7|0),($10|0),($13|0))|0); + $15 = tempRet0; + $16 = $0; + $17 = $16; + HEAP32[$17>>2] = $14; + $18 = (($16) + 4)|0; + $19 = $18; + HEAP32[$19>>2] = $15; + $20 = ((($1)) + 8|0); + $21 = $20; + $22 = $21; + $23 = HEAP32[$22>>2]|0; + $24 = (($21) + 4)|0; + $25 = $24; + $26 = HEAP32[$25>>2]|0; + $27 = ((($0)) + 8|0); + $28 = $27; + $29 = $28; + $30 = HEAP32[$29>>2]|0; + $31 = (($28) + 4)|0; + $32 = $31; + $33 = HEAP32[$32>>2]|0; + $34 = (_i64Subtract(($23|0),($26|0),($30|0),($33|0))|0); + $35 = tempRet0; + $36 = $27; + $37 = $36; + HEAP32[$37>>2] = $34; + $38 = (($36) + 4)|0; + $39 = $38; + HEAP32[$39>>2] = $35; + $40 = ((($1)) + 16|0); + $41 = $40; + $42 = $41; + $43 = HEAP32[$42>>2]|0; + $44 = (($41) + 4)|0; + $45 = $44; + $46 = HEAP32[$45>>2]|0; + $47 = ((($0)) + 16|0); + $48 = $47; + $49 = $48; + $50 = HEAP32[$49>>2]|0; + $51 = (($48) + 4)|0; + $52 = $51; + $53 = HEAP32[$52>>2]|0; + $54 = (_i64Subtract(($43|0),($46|0),($50|0),($53|0))|0); + $55 = tempRet0; + $56 = $47; + $57 = $56; + HEAP32[$57>>2] = $54; + $58 = (($56) + 4)|0; + $59 = $58; + HEAP32[$59>>2] = $55; + $60 = ((($1)) + 24|0); + $61 = $60; + $62 = $61; + $63 = HEAP32[$62>>2]|0; + $64 = (($61) + 4)|0; + $65 = $64; + $66 = HEAP32[$65>>2]|0; + $67 = ((($0)) + 24|0); + $68 = $67; + $69 = $68; + $70 = HEAP32[$69>>2]|0; + $71 = (($68) + 4)|0; + $72 = $71; + $73 = HEAP32[$72>>2]|0; + $74 = (_i64Subtract(($63|0),($66|0),($70|0),($73|0))|0); + $75 = tempRet0; + $76 = $67; + $77 = $76; + HEAP32[$77>>2] = $74; + $78 = (($76) + 4)|0; + $79 = $78; + HEAP32[$79>>2] = $75; + $80 = ((($1)) + 32|0); + $81 = $80; + $82 = $81; + $83 = HEAP32[$82>>2]|0; + $84 = (($81) + 4)|0; + $85 = $84; + $86 = HEAP32[$85>>2]|0; + $87 = ((($0)) + 32|0); + $88 = $87; + $89 = $88; + $90 = HEAP32[$89>>2]|0; + $91 = (($88) + 4)|0; + $92 = $91; + $93 = HEAP32[$92>>2]|0; + $94 = (_i64Subtract(($83|0),($86|0),($90|0),($93|0))|0); + $95 = tempRet0; + $96 = $87; + $97 = $96; + HEAP32[$97>>2] = $94; + $98 = (($96) + 4)|0; + $99 = $98; + HEAP32[$99>>2] = $95; + $100 = ((($1)) + 40|0); + $101 = $100; + $102 = $101; + $103 = HEAP32[$102>>2]|0; + $104 = (($101) + 4)|0; + $105 = $104; + $106 = HEAP32[$105>>2]|0; + $107 = ((($0)) + 40|0); + $108 = $107; + $109 = $108; + $110 = HEAP32[$109>>2]|0; + $111 = (($108) + 4)|0; + $112 = $111; + $113 = HEAP32[$112>>2]|0; + $114 = (_i64Subtract(($103|0),($106|0),($110|0),($113|0))|0); + $115 = tempRet0; + $116 = $107; + $117 = $116; + HEAP32[$117>>2] = $114; + $118 = (($116) + 4)|0; + $119 = $118; + HEAP32[$119>>2] = $115; + $120 = ((($1)) + 48|0); + $121 = $120; + $122 = $121; + $123 = HEAP32[$122>>2]|0; + $124 = (($121) + 4)|0; + $125 = $124; + $126 = HEAP32[$125>>2]|0; + $127 = ((($0)) + 48|0); + $128 = $127; + $129 = $128; + $130 = HEAP32[$129>>2]|0; + $131 = (($128) + 4)|0; + $132 = $131; + $133 = HEAP32[$132>>2]|0; + $134 = (_i64Subtract(($123|0),($126|0),($130|0),($133|0))|0); + $135 = tempRet0; + $136 = $127; + $137 = $136; + HEAP32[$137>>2] = $134; + $138 = (($136) + 4)|0; + $139 = $138; + HEAP32[$139>>2] = $135; + $140 = ((($1)) + 56|0); + $141 = $140; + $142 = $141; + $143 = HEAP32[$142>>2]|0; + $144 = (($141) + 4)|0; + $145 = $144; + $146 = HEAP32[$145>>2]|0; + $147 = ((($0)) + 56|0); + $148 = $147; + $149 = $148; + $150 = HEAP32[$149>>2]|0; + $151 = (($148) + 4)|0; + $152 = $151; + $153 = HEAP32[$152>>2]|0; + $154 = (_i64Subtract(($143|0),($146|0),($150|0),($153|0))|0); + $155 = tempRet0; + $156 = $147; + $157 = $156; + HEAP32[$157>>2] = $154; + $158 = (($156) + 4)|0; + $159 = $158; + HEAP32[$159>>2] = $155; + $160 = ((($1)) + 64|0); + $161 = $160; + $162 = $161; + $163 = HEAP32[$162>>2]|0; + $164 = (($161) + 4)|0; + $165 = $164; + $166 = HEAP32[$165>>2]|0; + $167 = ((($0)) + 64|0); + $168 = $167; + $169 = $168; + $170 = HEAP32[$169>>2]|0; + $171 = (($168) + 4)|0; + $172 = $171; + $173 = HEAP32[$172>>2]|0; + $174 = (_i64Subtract(($163|0),($166|0),($170|0),($173|0))|0); + $175 = tempRet0; + $176 = $167; + $177 = $176; + HEAP32[$177>>2] = $174; + $178 = (($176) + 4)|0; + $179 = $178; + HEAP32[$179>>2] = $175; + $180 = ((($1)) + 72|0); + $181 = $180; + $182 = $181; + $183 = HEAP32[$182>>2]|0; + $184 = (($181) + 4)|0; + $185 = $184; + $186 = HEAP32[$185>>2]|0; + $187 = ((($0)) + 72|0); + $188 = $187; + $189 = $188; + $190 = HEAP32[$189>>2]|0; + $191 = (($188) + 4)|0; + $192 = $191; + $193 = HEAP32[$192>>2]|0; + $194 = (_i64Subtract(($183|0),($186|0),($190|0),($193|0))|0); + $195 = tempRet0; + $196 = $187; + $197 = $196; + HEAP32[$197>>2] = $194; + $198 = (($196) + 4)|0; + $199 = $198; + HEAP32[$199>>2] = $195; + return; +} +function _fscalar_product($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; + var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; + var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; + var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = $1; + $3 = $2; + $4 = HEAP32[$3>>2]|0; + $5 = (($2) + 4)|0; + $6 = $5; + $7 = HEAP32[$6>>2]|0; + $8 = (___muldi3(($4|0),($7|0),121665,0)|0); + $9 = tempRet0; + $10 = $0; + $11 = $10; + HEAP32[$11>>2] = $8; + $12 = (($10) + 4)|0; + $13 = $12; + HEAP32[$13>>2] = $9; + $14 = ((($1)) + 8|0); + $15 = $14; + $16 = $15; + $17 = HEAP32[$16>>2]|0; + $18 = (($15) + 4)|0; + $19 = $18; + $20 = HEAP32[$19>>2]|0; + $21 = (___muldi3(($17|0),($20|0),121665,0)|0); + $22 = tempRet0; + $23 = ((($0)) + 8|0); + $24 = $23; + $25 = $24; + HEAP32[$25>>2] = $21; + $26 = (($24) + 4)|0; + $27 = $26; + HEAP32[$27>>2] = $22; + $28 = ((($1)) + 16|0); + $29 = $28; + $30 = $29; + $31 = HEAP32[$30>>2]|0; + $32 = (($29) + 4)|0; + $33 = $32; + $34 = HEAP32[$33>>2]|0; + $35 = (___muldi3(($31|0),($34|0),121665,0)|0); + $36 = tempRet0; + $37 = ((($0)) + 16|0); + $38 = $37; + $39 = $38; + HEAP32[$39>>2] = $35; + $40 = (($38) + 4)|0; + $41 = $40; + HEAP32[$41>>2] = $36; + $42 = ((($1)) + 24|0); + $43 = $42; + $44 = $43; + $45 = HEAP32[$44>>2]|0; + $46 = (($43) + 4)|0; + $47 = $46; + $48 = HEAP32[$47>>2]|0; + $49 = (___muldi3(($45|0),($48|0),121665,0)|0); + $50 = tempRet0; + $51 = ((($0)) + 24|0); + $52 = $51; + $53 = $52; + HEAP32[$53>>2] = $49; + $54 = (($52) + 4)|0; + $55 = $54; + HEAP32[$55>>2] = $50; + $56 = ((($1)) + 32|0); + $57 = $56; + $58 = $57; + $59 = HEAP32[$58>>2]|0; + $60 = (($57) + 4)|0; + $61 = $60; + $62 = HEAP32[$61>>2]|0; + $63 = (___muldi3(($59|0),($62|0),121665,0)|0); + $64 = tempRet0; + $65 = ((($0)) + 32|0); + $66 = $65; + $67 = $66; + HEAP32[$67>>2] = $63; + $68 = (($66) + 4)|0; + $69 = $68; + HEAP32[$69>>2] = $64; + $70 = ((($1)) + 40|0); + $71 = $70; + $72 = $71; + $73 = HEAP32[$72>>2]|0; + $74 = (($71) + 4)|0; + $75 = $74; + $76 = HEAP32[$75>>2]|0; + $77 = (___muldi3(($73|0),($76|0),121665,0)|0); + $78 = tempRet0; + $79 = ((($0)) + 40|0); + $80 = $79; + $81 = $80; + HEAP32[$81>>2] = $77; + $82 = (($80) + 4)|0; + $83 = $82; + HEAP32[$83>>2] = $78; + $84 = ((($1)) + 48|0); + $85 = $84; + $86 = $85; + $87 = HEAP32[$86>>2]|0; + $88 = (($85) + 4)|0; + $89 = $88; + $90 = HEAP32[$89>>2]|0; + $91 = (___muldi3(($87|0),($90|0),121665,0)|0); + $92 = tempRet0; + $93 = ((($0)) + 48|0); + $94 = $93; + $95 = $94; + HEAP32[$95>>2] = $91; + $96 = (($94) + 4)|0; + $97 = $96; + HEAP32[$97>>2] = $92; + $98 = ((($1)) + 56|0); + $99 = $98; + $100 = $99; + $101 = HEAP32[$100>>2]|0; + $102 = (($99) + 4)|0; + $103 = $102; + $104 = HEAP32[$103>>2]|0; + $105 = (___muldi3(($101|0),($104|0),121665,0)|0); + $106 = tempRet0; + $107 = ((($0)) + 56|0); + $108 = $107; + $109 = $108; + HEAP32[$109>>2] = $105; + $110 = (($108) + 4)|0; + $111 = $110; + HEAP32[$111>>2] = $106; + $112 = ((($1)) + 64|0); + $113 = $112; + $114 = $113; + $115 = HEAP32[$114>>2]|0; + $116 = (($113) + 4)|0; + $117 = $116; + $118 = HEAP32[$117>>2]|0; + $119 = (___muldi3(($115|0),($118|0),121665,0)|0); + $120 = tempRet0; + $121 = ((($0)) + 64|0); + $122 = $121; + $123 = $122; + HEAP32[$123>>2] = $119; + $124 = (($122) + 4)|0; + $125 = $124; + HEAP32[$125>>2] = $120; + $126 = ((($1)) + 72|0); + $127 = $126; + $128 = $127; + $129 = HEAP32[$128>>2]|0; + $130 = (($127) + 4)|0; + $131 = $130; + $132 = HEAP32[$131>>2]|0; + $133 = (___muldi3(($129|0),($132|0),121665,0)|0); + $134 = tempRet0; + $135 = ((($0)) + 72|0); + $136 = $135; + $137 = $136; + HEAP32[$137>>2] = $133; + $138 = (($136) + 4)|0; + $139 = $138; + HEAP32[$139>>2] = $134; + return; +} +function _crypto_sign_ed25519_ref10_fe_0($0) { + $0 = $0|0; + var dest = 0, label = 0, sp = 0, stop = 0; + sp = STACKTOP; + dest=$0; stop=dest+40|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); + return; +} +function _crypto_sign_ed25519_ref10_fe_1($0) { + $0 = $0|0; + var $1 = 0, dest = 0, label = 0, sp = 0, stop = 0; + sp = STACKTOP; + HEAP32[$0>>2] = 1; + $1 = ((($0)) + 4|0); + dest=$1; stop=dest+36|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); + return; +} +function _crypto_sign_ed25519_ref10_fe_add($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0; + var $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0; + var $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $3 = HEAP32[$1>>2]|0; + $4 = ((($1)) + 4|0); + $5 = HEAP32[$4>>2]|0; + $6 = ((($1)) + 8|0); + $7 = HEAP32[$6>>2]|0; + $8 = ((($1)) + 12|0); + $9 = HEAP32[$8>>2]|0; + $10 = ((($1)) + 16|0); + $11 = HEAP32[$10>>2]|0; + $12 = ((($1)) + 20|0); + $13 = HEAP32[$12>>2]|0; + $14 = ((($1)) + 24|0); + $15 = HEAP32[$14>>2]|0; + $16 = ((($1)) + 28|0); + $17 = HEAP32[$16>>2]|0; + $18 = ((($1)) + 32|0); + $19 = HEAP32[$18>>2]|0; + $20 = ((($1)) + 36|0); + $21 = HEAP32[$20>>2]|0; + $22 = HEAP32[$2>>2]|0; + $23 = ((($2)) + 4|0); + $24 = HEAP32[$23>>2]|0; + $25 = ((($2)) + 8|0); + $26 = HEAP32[$25>>2]|0; + $27 = ((($2)) + 12|0); + $28 = HEAP32[$27>>2]|0; + $29 = ((($2)) + 16|0); + $30 = HEAP32[$29>>2]|0; + $31 = ((($2)) + 20|0); + $32 = HEAP32[$31>>2]|0; + $33 = ((($2)) + 24|0); + $34 = HEAP32[$33>>2]|0; + $35 = ((($2)) + 28|0); + $36 = HEAP32[$35>>2]|0; + $37 = ((($2)) + 32|0); + $38 = HEAP32[$37>>2]|0; + $39 = ((($2)) + 36|0); + $40 = HEAP32[$39>>2]|0; + $41 = (($22) + ($3))|0; + $42 = (($24) + ($5))|0; + $43 = (($26) + ($7))|0; + $44 = (($28) + ($9))|0; + $45 = (($30) + ($11))|0; + $46 = (($32) + ($13))|0; + $47 = (($34) + ($15))|0; + $48 = (($36) + ($17))|0; + $49 = (($38) + ($19))|0; + $50 = (($40) + ($21))|0; + HEAP32[$0>>2] = $41; + $51 = ((($0)) + 4|0); + HEAP32[$51>>2] = $42; + $52 = ((($0)) + 8|0); + HEAP32[$52>>2] = $43; + $53 = ((($0)) + 12|0); + HEAP32[$53>>2] = $44; + $54 = ((($0)) + 16|0); + HEAP32[$54>>2] = $45; + $55 = ((($0)) + 20|0); + HEAP32[$55>>2] = $46; + $56 = ((($0)) + 24|0); + HEAP32[$56>>2] = $47; + $57 = ((($0)) + 28|0); + HEAP32[$57>>2] = $48; + $58 = ((($0)) + 32|0); + HEAP32[$58>>2] = $49; + $59 = ((($0)) + 36|0); + HEAP32[$59>>2] = $50; + return; +} +function _crypto_sign_ed25519_ref10_fe_cmov($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0; + var $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0; + var $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0; + var $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $3 = HEAP32[$0>>2]|0; + $4 = ((($0)) + 4|0); + $5 = HEAP32[$4>>2]|0; + $6 = ((($0)) + 8|0); + $7 = HEAP32[$6>>2]|0; + $8 = ((($0)) + 12|0); + $9 = HEAP32[$8>>2]|0; + $10 = ((($0)) + 16|0); + $11 = HEAP32[$10>>2]|0; + $12 = ((($0)) + 20|0); + $13 = HEAP32[$12>>2]|0; + $14 = ((($0)) + 24|0); + $15 = HEAP32[$14>>2]|0; + $16 = ((($0)) + 28|0); + $17 = HEAP32[$16>>2]|0; + $18 = ((($0)) + 32|0); + $19 = HEAP32[$18>>2]|0; + $20 = ((($0)) + 36|0); + $21 = HEAP32[$20>>2]|0; + $22 = HEAP32[$1>>2]|0; + $23 = ((($1)) + 4|0); + $24 = HEAP32[$23>>2]|0; + $25 = ((($1)) + 8|0); + $26 = HEAP32[$25>>2]|0; + $27 = ((($1)) + 12|0); + $28 = HEAP32[$27>>2]|0; + $29 = ((($1)) + 16|0); + $30 = HEAP32[$29>>2]|0; + $31 = ((($1)) + 20|0); + $32 = HEAP32[$31>>2]|0; + $33 = ((($1)) + 24|0); + $34 = HEAP32[$33>>2]|0; + $35 = ((($1)) + 28|0); + $36 = HEAP32[$35>>2]|0; + $37 = ((($1)) + 32|0); + $38 = HEAP32[$37>>2]|0; + $39 = ((($1)) + 36|0); + $40 = HEAP32[$39>>2]|0; + $41 = $22 ^ $3; + $42 = $24 ^ $5; + $43 = $26 ^ $7; + $44 = $28 ^ $9; + $45 = $30 ^ $11; + $46 = $32 ^ $13; + $47 = $34 ^ $15; + $48 = $36 ^ $17; + $49 = $38 ^ $19; + $50 = $40 ^ $21; + $51 = (0 - ($2))|0; + $52 = $41 & $51; + $53 = $42 & $51; + $54 = $43 & $51; + $55 = $44 & $51; + $56 = $45 & $51; + $57 = $46 & $51; + $58 = $47 & $51; + $59 = $48 & $51; + $60 = $49 & $51; + $61 = $50 & $51; + $62 = $52 ^ $3; + HEAP32[$0>>2] = $62; + $63 = $53 ^ $5; + HEAP32[$4>>2] = $63; + $64 = $54 ^ $7; + HEAP32[$6>>2] = $64; + $65 = $55 ^ $9; + HEAP32[$8>>2] = $65; + $66 = $56 ^ $11; + HEAP32[$10>>2] = $66; + $67 = $57 ^ $13; + HEAP32[$12>>2] = $67; + $68 = $58 ^ $15; + HEAP32[$14>>2] = $68; + $69 = $59 ^ $17; + HEAP32[$16>>2] = $69; + $70 = $60 ^ $19; + HEAP32[$18>>2] = $70; + $71 = $61 ^ $21; + HEAP32[$20>>2] = $71; + return; +} +function _crypto_sign_ed25519_ref10_fe_copy($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = HEAP32[$1>>2]|0; + $3 = ((($1)) + 4|0); + $4 = HEAP32[$3>>2]|0; + $5 = ((($1)) + 8|0); + $6 = HEAP32[$5>>2]|0; + $7 = ((($1)) + 12|0); + $8 = HEAP32[$7>>2]|0; + $9 = ((($1)) + 16|0); + $10 = HEAP32[$9>>2]|0; + $11 = ((($1)) + 20|0); + $12 = HEAP32[$11>>2]|0; + $13 = ((($1)) + 24|0); + $14 = HEAP32[$13>>2]|0; + $15 = ((($1)) + 28|0); + $16 = HEAP32[$15>>2]|0; + $17 = ((($1)) + 32|0); + $18 = HEAP32[$17>>2]|0; + $19 = ((($1)) + 36|0); + $20 = HEAP32[$19>>2]|0; + HEAP32[$0>>2] = $2; + $21 = ((($0)) + 4|0); + HEAP32[$21>>2] = $4; + $22 = ((($0)) + 8|0); + HEAP32[$22>>2] = $6; + $23 = ((($0)) + 12|0); + HEAP32[$23>>2] = $8; + $24 = ((($0)) + 16|0); + HEAP32[$24>>2] = $10; + $25 = ((($0)) + 20|0); + HEAP32[$25>>2] = $12; + $26 = ((($0)) + 24|0); + HEAP32[$26>>2] = $14; + $27 = ((($0)) + 28|0); + HEAP32[$27>>2] = $16; + $28 = ((($0)) + 32|0); + HEAP32[$28>>2] = $18; + $29 = ((($0)) + 36|0); + HEAP32[$29>>2] = $20; + return; +} +function _crypto_sign_ed25519_ref10_fe_frombytes($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; + var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; + var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; + var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = (_load_4($1)|0); + $3 = tempRet0; + $4 = ((($1)) + 4|0); + $5 = (_load_3($4)|0); + $6 = tempRet0; + $7 = (_bitshift64Shl(($5|0),($6|0),6)|0); + $8 = tempRet0; + $9 = ((($1)) + 7|0); + $10 = (_load_3($9)|0); + $11 = tempRet0; + $12 = (_bitshift64Shl(($10|0),($11|0),5)|0); + $13 = tempRet0; + $14 = ((($1)) + 10|0); + $15 = (_load_3($14)|0); + $16 = tempRet0; + $17 = (_bitshift64Shl(($15|0),($16|0),3)|0); + $18 = tempRet0; + $19 = ((($1)) + 13|0); + $20 = (_load_3($19)|0); + $21 = tempRet0; + $22 = (_bitshift64Shl(($20|0),($21|0),2)|0); + $23 = tempRet0; + $24 = ((($1)) + 16|0); + $25 = (_load_4($24)|0); + $26 = tempRet0; + $27 = ((($1)) + 20|0); + $28 = (_load_3($27)|0); + $29 = tempRet0; + $30 = (_bitshift64Shl(($28|0),($29|0),7)|0); + $31 = tempRet0; + $32 = ((($1)) + 23|0); + $33 = (_load_3($32)|0); + $34 = tempRet0; + $35 = (_bitshift64Shl(($33|0),($34|0),5)|0); + $36 = tempRet0; + $37 = ((($1)) + 26|0); + $38 = (_load_3($37)|0); + $39 = tempRet0; + $40 = (_bitshift64Shl(($38|0),($39|0),4)|0); + $41 = tempRet0; + $42 = ((($1)) + 29|0); + $43 = (_load_3($42)|0); + $44 = tempRet0; + $45 = (_bitshift64Shl(($43|0),($44|0),2)|0); + $46 = tempRet0; + $47 = $45 & 33554428; + $48 = (_i64Add(($47|0),0,16777216,0)|0); + $49 = tempRet0; + $50 = (_bitshift64Lshr(($48|0),($49|0),25)|0); + $51 = tempRet0; + $52 = (_i64Subtract(0,0,($50|0),($51|0))|0); + $53 = tempRet0; + $54 = $52 & 19; + $55 = (_i64Add(($54|0),0,($2|0),($3|0))|0); + $56 = tempRet0; + $57 = (_bitshift64Shl(($50|0),($51|0),25)|0); + $58 = tempRet0; + $59 = (_i64Add(($7|0),($8|0),16777216,0)|0); + $60 = tempRet0; + $61 = (_bitshift64Ashr(($59|0),($60|0),25)|0); + $62 = tempRet0; + $63 = (_i64Add(($61|0),($62|0),($12|0),($13|0))|0); + $64 = tempRet0; + $65 = (_bitshift64Shl(($61|0),($62|0),25)|0); + $66 = tempRet0; + $67 = (_i64Subtract(($7|0),($8|0),($65|0),($66|0))|0); + $68 = tempRet0; + $69 = (_i64Add(($17|0),($18|0),16777216,0)|0); + $70 = tempRet0; + $71 = (_bitshift64Ashr(($69|0),($70|0),25)|0); + $72 = tempRet0; + $73 = (_i64Add(($71|0),($72|0),($22|0),($23|0))|0); + $74 = tempRet0; + $75 = (_bitshift64Shl(($71|0),($72|0),25)|0); + $76 = tempRet0; + $77 = (_i64Subtract(($17|0),($18|0),($75|0),($76|0))|0); + $78 = tempRet0; + $79 = (_i64Add(($25|0),($26|0),16777216,0)|0); + $80 = tempRet0; + $81 = (_bitshift64Ashr(($79|0),($80|0),25)|0); + $82 = tempRet0; + $83 = (_i64Add(($30|0),($31|0),($81|0),($82|0))|0); + $84 = tempRet0; + $85 = (_bitshift64Shl(($81|0),($82|0),25)|0); + $86 = tempRet0; + $87 = (_i64Subtract(($25|0),($26|0),($85|0),($86|0))|0); + $88 = tempRet0; + $89 = (_i64Add(($35|0),($36|0),16777216,0)|0); + $90 = tempRet0; + $91 = (_bitshift64Ashr(($89|0),($90|0),25)|0); + $92 = tempRet0; + $93 = (_i64Add(($91|0),($92|0),($40|0),($41|0))|0); + $94 = tempRet0; + $95 = (_bitshift64Shl(($91|0),($92|0),25)|0); + $96 = tempRet0; + $97 = (_i64Add(($55|0),($56|0),33554432,0)|0); + $98 = tempRet0; + $99 = (_bitshift64Ashr(($97|0),($98|0),26)|0); + $100 = tempRet0; + $101 = (_i64Add(($67|0),($68|0),($99|0),($100|0))|0); + $102 = tempRet0; + $103 = (_bitshift64Shl(($99|0),($100|0),26)|0); + $104 = tempRet0; + $105 = (_i64Subtract(($55|0),($56|0),($103|0),($104|0))|0); + $106 = tempRet0; + $107 = (_i64Add(($63|0),($64|0),33554432,0)|0); + $108 = tempRet0; + $109 = (_bitshift64Ashr(($107|0),($108|0),26)|0); + $110 = tempRet0; + $111 = (_i64Add(($77|0),($78|0),($109|0),($110|0))|0); + $112 = tempRet0; + $113 = (_bitshift64Shl(($109|0),($110|0),26)|0); + $114 = tempRet0; + $115 = (_i64Subtract(($63|0),($64|0),($113|0),($114|0))|0); + $116 = tempRet0; + $117 = (_i64Add(($73|0),($74|0),33554432,0)|0); + $118 = tempRet0; + $119 = (_bitshift64Ashr(($117|0),($118|0),26)|0); + $120 = tempRet0; + $121 = (_i64Add(($87|0),($88|0),($119|0),($120|0))|0); + $122 = tempRet0; + $123 = (_bitshift64Shl(($119|0),($120|0),26)|0); + $124 = tempRet0; + $125 = (_i64Subtract(($73|0),($74|0),($123|0),($124|0))|0); + $126 = tempRet0; + $127 = (_i64Add(($83|0),($84|0),33554432,0)|0); + $128 = tempRet0; + $129 = (_bitshift64Ashr(($127|0),($128|0),26)|0); + $130 = tempRet0; + $131 = (_i64Add(($129|0),($130|0),($35|0),($36|0))|0); + $132 = tempRet0; + $133 = (_i64Subtract(($131|0),($132|0),($95|0),($96|0))|0); + $134 = tempRet0; + $135 = (_bitshift64Shl(($129|0),($130|0),26)|0); + $136 = tempRet0; + $137 = (_i64Subtract(($83|0),($84|0),($135|0),($136|0))|0); + $138 = tempRet0; + $139 = (_i64Add(($93|0),($94|0),33554432,0)|0); + $140 = tempRet0; + $141 = (_bitshift64Ashr(($139|0),($140|0),26)|0); + $142 = tempRet0; + $143 = (_i64Add(($141|0),($142|0),($47|0),0)|0); + $144 = tempRet0; + $145 = (_i64Subtract(($143|0),($144|0),($57|0),($58|0))|0); + $146 = tempRet0; + $147 = (_bitshift64Shl(($141|0),($142|0),26)|0); + $148 = tempRet0; + $149 = (_i64Subtract(($93|0),($94|0),($147|0),($148|0))|0); + $150 = tempRet0; + HEAP32[$0>>2] = $105; + $151 = ((($0)) + 4|0); + HEAP32[$151>>2] = $101; + $152 = ((($0)) + 8|0); + HEAP32[$152>>2] = $115; + $153 = ((($0)) + 12|0); + HEAP32[$153>>2] = $111; + $154 = ((($0)) + 16|0); + HEAP32[$154>>2] = $125; + $155 = ((($0)) + 20|0); + HEAP32[$155>>2] = $121; + $156 = ((($0)) + 24|0); + HEAP32[$156>>2] = $137; + $157 = ((($0)) + 28|0); + HEAP32[$157>>2] = $133; + $158 = ((($0)) + 32|0); + HEAP32[$158>>2] = $149; + $159 = ((($0)) + 36|0); + HEAP32[$159>>2] = $145; + return; +} +function _load_4($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; + var $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = ((($0)) + 1|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = (_bitshift64Shl(($5|0),0,8)|0); + $7 = tempRet0; + $8 = $6 | $2; + $9 = ((($0)) + 2|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = (_bitshift64Shl(($11|0),0,16)|0); + $13 = tempRet0; + $14 = $8 | $12; + $15 = $7 | $13; + $16 = ((($0)) + 3|0); + $17 = HEAP8[$16>>0]|0; + $18 = $17&255; + $19 = (_bitshift64Shl(($18|0),0,24)|0); + $20 = tempRet0; + $21 = $14 | $19; + $22 = $15 | $20; + tempRet0 = ($22); + return ($21|0); +} +function _load_3($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = ((($0)) + 1|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = (_bitshift64Shl(($5|0),0,8)|0); + $7 = tempRet0; + $8 = $6 | $2; + $9 = ((($0)) + 2|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = (_bitshift64Shl(($11|0),0,16)|0); + $13 = tempRet0; + $14 = $8 | $12; + $15 = $7 | $13; + tempRet0 = ($15); + return ($14|0); +} +function _crypto_sign_ed25519_ref10_fe_invert($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$728 = 0, $$827 = 0, $$926 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $exitcond = 0, $exitcond34 = 0, $exitcond35 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 160|0; + $2 = sp + 120|0; + $3 = sp + 80|0; + $4 = sp + 40|0; + $5 = sp; + _crypto_sign_ed25519_ref10_fe_sq($2,$1); + _crypto_sign_ed25519_ref10_fe_sq($3,$2); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_mul($3,$1,$3); + _crypto_sign_ed25519_ref10_fe_mul($2,$2,$3); + _crypto_sign_ed25519_ref10_fe_sq($4,$2); + _crypto_sign_ed25519_ref10_fe_mul($3,$3,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$3); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_mul($3,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($4,$3); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_mul($4,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($5,$4); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_mul($4,$5,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_mul($3,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($4,$3); + $$728 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + $6 = (($$728) + 1)|0; + $exitcond35 = ($6|0)==(50); + if ($exitcond35) { + break; + } else { + $$728 = $6; + } + } + _crypto_sign_ed25519_ref10_fe_mul($4,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($5,$4); + $$827 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + $7 = (($$827) + 1)|0; + $exitcond34 = ($7|0)==(100); + if ($exitcond34) { + break; + } else { + $$827 = $7; + } + } + _crypto_sign_ed25519_ref10_fe_mul($4,$5,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + $$926 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + $8 = (($$926) + 1)|0; + $exitcond = ($8|0)==(50); + if ($exitcond) { + break; + } else { + $$926 = $8; + } + } + _crypto_sign_ed25519_ref10_fe_mul($3,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_mul($0,$3,$2); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_isnegative($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 32|0; + $1 = sp; + _crypto_sign_ed25519_ref10_fe_tobytes($1,$0); + $2 = HEAP8[$1>>0]|0; + $3 = $2 & 1; + $4 = $3&255; + STACKTOP = sp;return ($4|0); +} +function _crypto_sign_ed25519_ref10_fe_isnonzero($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 32|0; + $1 = sp; + _crypto_sign_ed25519_ref10_fe_tobytes($1,$0); + $2 = (_crypto_verify_32_ref($1,33460)|0); + STACKTOP = sp;return ($2|0); +} +function _crypto_sign_ed25519_ref10_fe_mul($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0; + var $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0; + var $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0; + var $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0; + var $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0; + var $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0; + var $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0; + var $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0; + var $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0; + var $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0; + var $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0; + var $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0; + var $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0; + var $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0; + var $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0; + var $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0; + var $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0; + var $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0; + var $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0; + var $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0; + var $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0; + var $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0; + var $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0; + var $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0; + var $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0; + var $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0; + var $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $3 = HEAP32[$1>>2]|0; + $4 = ((($1)) + 4|0); + $5 = HEAP32[$4>>2]|0; + $6 = ((($1)) + 8|0); + $7 = HEAP32[$6>>2]|0; + $8 = ((($1)) + 12|0); + $9 = HEAP32[$8>>2]|0; + $10 = ((($1)) + 16|0); + $11 = HEAP32[$10>>2]|0; + $12 = ((($1)) + 20|0); + $13 = HEAP32[$12>>2]|0; + $14 = ((($1)) + 24|0); + $15 = HEAP32[$14>>2]|0; + $16 = ((($1)) + 28|0); + $17 = HEAP32[$16>>2]|0; + $18 = ((($1)) + 32|0); + $19 = HEAP32[$18>>2]|0; + $20 = ((($1)) + 36|0); + $21 = HEAP32[$20>>2]|0; + $22 = HEAP32[$2>>2]|0; + $23 = ((($2)) + 4|0); + $24 = HEAP32[$23>>2]|0; + $25 = ((($2)) + 8|0); + $26 = HEAP32[$25>>2]|0; + $27 = ((($2)) + 12|0); + $28 = HEAP32[$27>>2]|0; + $29 = ((($2)) + 16|0); + $30 = HEAP32[$29>>2]|0; + $31 = ((($2)) + 20|0); + $32 = HEAP32[$31>>2]|0; + $33 = ((($2)) + 24|0); + $34 = HEAP32[$33>>2]|0; + $35 = ((($2)) + 28|0); + $36 = HEAP32[$35>>2]|0; + $37 = ((($2)) + 32|0); + $38 = HEAP32[$37>>2]|0; + $39 = ((($2)) + 36|0); + $40 = HEAP32[$39>>2]|0; + $41 = ($24*19)|0; + $42 = ($26*19)|0; + $43 = ($28*19)|0; + $44 = ($30*19)|0; + $45 = ($32*19)|0; + $46 = ($34*19)|0; + $47 = ($36*19)|0; + $48 = ($38*19)|0; + $49 = ($40*19)|0; + $50 = $5 << 1; + $51 = $9 << 1; + $52 = $13 << 1; + $53 = $17 << 1; + $54 = $21 << 1; + $55 = ($3|0)<(0); + $56 = $55 << 31 >> 31; + $57 = ($22|0)<(0); + $58 = $57 << 31 >> 31; + $59 = (___muldi3(($22|0),($58|0),($3|0),($56|0))|0); + $60 = tempRet0; + $61 = ($24|0)<(0); + $62 = $61 << 31 >> 31; + $63 = (___muldi3(($24|0),($62|0),($3|0),($56|0))|0); + $64 = tempRet0; + $65 = ($26|0)<(0); + $66 = $65 << 31 >> 31; + $67 = (___muldi3(($26|0),($66|0),($3|0),($56|0))|0); + $68 = tempRet0; + $69 = ($28|0)<(0); + $70 = $69 << 31 >> 31; + $71 = (___muldi3(($28|0),($70|0),($3|0),($56|0))|0); + $72 = tempRet0; + $73 = ($30|0)<(0); + $74 = $73 << 31 >> 31; + $75 = (___muldi3(($30|0),($74|0),($3|0),($56|0))|0); + $76 = tempRet0; + $77 = ($32|0)<(0); + $78 = $77 << 31 >> 31; + $79 = (___muldi3(($32|0),($78|0),($3|0),($56|0))|0); + $80 = tempRet0; + $81 = ($34|0)<(0); + $82 = $81 << 31 >> 31; + $83 = (___muldi3(($34|0),($82|0),($3|0),($56|0))|0); + $84 = tempRet0; + $85 = ($36|0)<(0); + $86 = $85 << 31 >> 31; + $87 = (___muldi3(($36|0),($86|0),($3|0),($56|0))|0); + $88 = tempRet0; + $89 = ($38|0)<(0); + $90 = $89 << 31 >> 31; + $91 = (___muldi3(($38|0),($90|0),($3|0),($56|0))|0); + $92 = tempRet0; + $93 = ($40|0)<(0); + $94 = $93 << 31 >> 31; + $95 = (___muldi3(($40|0),($94|0),($3|0),($56|0))|0); + $96 = tempRet0; + $97 = ($5|0)<(0); + $98 = $97 << 31 >> 31; + $99 = (___muldi3(($22|0),($58|0),($5|0),($98|0))|0); + $100 = tempRet0; + $101 = ($50|0)<(0); + $102 = $101 << 31 >> 31; + $103 = (___muldi3(($24|0),($62|0),($50|0),($102|0))|0); + $104 = tempRet0; + $105 = (___muldi3(($26|0),($66|0),($5|0),($98|0))|0); + $106 = tempRet0; + $107 = (___muldi3(($28|0),($70|0),($50|0),($102|0))|0); + $108 = tempRet0; + $109 = (___muldi3(($30|0),($74|0),($5|0),($98|0))|0); + $110 = tempRet0; + $111 = (___muldi3(($32|0),($78|0),($50|0),($102|0))|0); + $112 = tempRet0; + $113 = (___muldi3(($34|0),($82|0),($5|0),($98|0))|0); + $114 = tempRet0; + $115 = (___muldi3(($36|0),($86|0),($50|0),($102|0))|0); + $116 = tempRet0; + $117 = (___muldi3(($38|0),($90|0),($5|0),($98|0))|0); + $118 = tempRet0; + $119 = ($49|0)<(0); + $120 = $119 << 31 >> 31; + $121 = (___muldi3(($49|0),($120|0),($50|0),($102|0))|0); + $122 = tempRet0; + $123 = ($7|0)<(0); + $124 = $123 << 31 >> 31; + $125 = (___muldi3(($22|0),($58|0),($7|0),($124|0))|0); + $126 = tempRet0; + $127 = (___muldi3(($24|0),($62|0),($7|0),($124|0))|0); + $128 = tempRet0; + $129 = (___muldi3(($26|0),($66|0),($7|0),($124|0))|0); + $130 = tempRet0; + $131 = (___muldi3(($28|0),($70|0),($7|0),($124|0))|0); + $132 = tempRet0; + $133 = (___muldi3(($30|0),($74|0),($7|0),($124|0))|0); + $134 = tempRet0; + $135 = (___muldi3(($32|0),($78|0),($7|0),($124|0))|0); + $136 = tempRet0; + $137 = (___muldi3(($34|0),($82|0),($7|0),($124|0))|0); + $138 = tempRet0; + $139 = (___muldi3(($36|0),($86|0),($7|0),($124|0))|0); + $140 = tempRet0; + $141 = ($48|0)<(0); + $142 = $141 << 31 >> 31; + $143 = (___muldi3(($48|0),($142|0),($7|0),($124|0))|0); + $144 = tempRet0; + $145 = (___muldi3(($49|0),($120|0),($7|0),($124|0))|0); + $146 = tempRet0; + $147 = ($9|0)<(0); + $148 = $147 << 31 >> 31; + $149 = (___muldi3(($22|0),($58|0),($9|0),($148|0))|0); + $150 = tempRet0; + $151 = ($51|0)<(0); + $152 = $151 << 31 >> 31; + $153 = (___muldi3(($24|0),($62|0),($51|0),($152|0))|0); + $154 = tempRet0; + $155 = (___muldi3(($26|0),($66|0),($9|0),($148|0))|0); + $156 = tempRet0; + $157 = (___muldi3(($28|0),($70|0),($51|0),($152|0))|0); + $158 = tempRet0; + $159 = (___muldi3(($30|0),($74|0),($9|0),($148|0))|0); + $160 = tempRet0; + $161 = (___muldi3(($32|0),($78|0),($51|0),($152|0))|0); + $162 = tempRet0; + $163 = (___muldi3(($34|0),($82|0),($9|0),($148|0))|0); + $164 = tempRet0; + $165 = ($47|0)<(0); + $166 = $165 << 31 >> 31; + $167 = (___muldi3(($47|0),($166|0),($51|0),($152|0))|0); + $168 = tempRet0; + $169 = (___muldi3(($48|0),($142|0),($9|0),($148|0))|0); + $170 = tempRet0; + $171 = (___muldi3(($49|0),($120|0),($51|0),($152|0))|0); + $172 = tempRet0; + $173 = ($11|0)<(0); + $174 = $173 << 31 >> 31; + $175 = (___muldi3(($22|0),($58|0),($11|0),($174|0))|0); + $176 = tempRet0; + $177 = (___muldi3(($24|0),($62|0),($11|0),($174|0))|0); + $178 = tempRet0; + $179 = (___muldi3(($26|0),($66|0),($11|0),($174|0))|0); + $180 = tempRet0; + $181 = (___muldi3(($28|0),($70|0),($11|0),($174|0))|0); + $182 = tempRet0; + $183 = (___muldi3(($30|0),($74|0),($11|0),($174|0))|0); + $184 = tempRet0; + $185 = (___muldi3(($32|0),($78|0),($11|0),($174|0))|0); + $186 = tempRet0; + $187 = ($46|0)<(0); + $188 = $187 << 31 >> 31; + $189 = (___muldi3(($46|0),($188|0),($11|0),($174|0))|0); + $190 = tempRet0; + $191 = (___muldi3(($47|0),($166|0),($11|0),($174|0))|0); + $192 = tempRet0; + $193 = (___muldi3(($48|0),($142|0),($11|0),($174|0))|0); + $194 = tempRet0; + $195 = (___muldi3(($49|0),($120|0),($11|0),($174|0))|0); + $196 = tempRet0; + $197 = ($13|0)<(0); + $198 = $197 << 31 >> 31; + $199 = (___muldi3(($22|0),($58|0),($13|0),($198|0))|0); + $200 = tempRet0; + $201 = ($52|0)<(0); + $202 = $201 << 31 >> 31; + $203 = (___muldi3(($24|0),($62|0),($52|0),($202|0))|0); + $204 = tempRet0; + $205 = (___muldi3(($26|0),($66|0),($13|0),($198|0))|0); + $206 = tempRet0; + $207 = (___muldi3(($28|0),($70|0),($52|0),($202|0))|0); + $208 = tempRet0; + $209 = (___muldi3(($30|0),($74|0),($13|0),($198|0))|0); + $210 = tempRet0; + $211 = ($45|0)<(0); + $212 = $211 << 31 >> 31; + $213 = (___muldi3(($45|0),($212|0),($52|0),($202|0))|0); + $214 = tempRet0; + $215 = (___muldi3(($46|0),($188|0),($13|0),($198|0))|0); + $216 = tempRet0; + $217 = (___muldi3(($47|0),($166|0),($52|0),($202|0))|0); + $218 = tempRet0; + $219 = (___muldi3(($48|0),($142|0),($13|0),($198|0))|0); + $220 = tempRet0; + $221 = (___muldi3(($49|0),($120|0),($52|0),($202|0))|0); + $222 = tempRet0; + $223 = ($15|0)<(0); + $224 = $223 << 31 >> 31; + $225 = (___muldi3(($22|0),($58|0),($15|0),($224|0))|0); + $226 = tempRet0; + $227 = (___muldi3(($24|0),($62|0),($15|0),($224|0))|0); + $228 = tempRet0; + $229 = (___muldi3(($26|0),($66|0),($15|0),($224|0))|0); + $230 = tempRet0; + $231 = (___muldi3(($28|0),($70|0),($15|0),($224|0))|0); + $232 = tempRet0; + $233 = ($44|0)<(0); + $234 = $233 << 31 >> 31; + $235 = (___muldi3(($44|0),($234|0),($15|0),($224|0))|0); + $236 = tempRet0; + $237 = (___muldi3(($45|0),($212|0),($15|0),($224|0))|0); + $238 = tempRet0; + $239 = (___muldi3(($46|0),($188|0),($15|0),($224|0))|0); + $240 = tempRet0; + $241 = (___muldi3(($47|0),($166|0),($15|0),($224|0))|0); + $242 = tempRet0; + $243 = (___muldi3(($48|0),($142|0),($15|0),($224|0))|0); + $244 = tempRet0; + $245 = (___muldi3(($49|0),($120|0),($15|0),($224|0))|0); + $246 = tempRet0; + $247 = ($17|0)<(0); + $248 = $247 << 31 >> 31; + $249 = (___muldi3(($22|0),($58|0),($17|0),($248|0))|0); + $250 = tempRet0; + $251 = ($53|0)<(0); + $252 = $251 << 31 >> 31; + $253 = (___muldi3(($24|0),($62|0),($53|0),($252|0))|0); + $254 = tempRet0; + $255 = (___muldi3(($26|0),($66|0),($17|0),($248|0))|0); + $256 = tempRet0; + $257 = ($43|0)<(0); + $258 = $257 << 31 >> 31; + $259 = (___muldi3(($43|0),($258|0),($53|0),($252|0))|0); + $260 = tempRet0; + $261 = (___muldi3(($44|0),($234|0),($17|0),($248|0))|0); + $262 = tempRet0; + $263 = (___muldi3(($45|0),($212|0),($53|0),($252|0))|0); + $264 = tempRet0; + $265 = (___muldi3(($46|0),($188|0),($17|0),($248|0))|0); + $266 = tempRet0; + $267 = (___muldi3(($47|0),($166|0),($53|0),($252|0))|0); + $268 = tempRet0; + $269 = (___muldi3(($48|0),($142|0),($17|0),($248|0))|0); + $270 = tempRet0; + $271 = (___muldi3(($49|0),($120|0),($53|0),($252|0))|0); + $272 = tempRet0; + $273 = ($19|0)<(0); + $274 = $273 << 31 >> 31; + $275 = (___muldi3(($22|0),($58|0),($19|0),($274|0))|0); + $276 = tempRet0; + $277 = (___muldi3(($24|0),($62|0),($19|0),($274|0))|0); + $278 = tempRet0; + $279 = ($42|0)<(0); + $280 = $279 << 31 >> 31; + $281 = (___muldi3(($42|0),($280|0),($19|0),($274|0))|0); + $282 = tempRet0; + $283 = (___muldi3(($43|0),($258|0),($19|0),($274|0))|0); + $284 = tempRet0; + $285 = (___muldi3(($44|0),($234|0),($19|0),($274|0))|0); + $286 = tempRet0; + $287 = (___muldi3(($45|0),($212|0),($19|0),($274|0))|0); + $288 = tempRet0; + $289 = (___muldi3(($46|0),($188|0),($19|0),($274|0))|0); + $290 = tempRet0; + $291 = (___muldi3(($47|0),($166|0),($19|0),($274|0))|0); + $292 = tempRet0; + $293 = (___muldi3(($48|0),($142|0),($19|0),($274|0))|0); + $294 = tempRet0; + $295 = (___muldi3(($49|0),($120|0),($19|0),($274|0))|0); + $296 = tempRet0; + $297 = ($21|0)<(0); + $298 = $297 << 31 >> 31; + $299 = (___muldi3(($22|0),($58|0),($21|0),($298|0))|0); + $300 = tempRet0; + $301 = ($54|0)<(0); + $302 = $301 << 31 >> 31; + $303 = ($41|0)<(0); + $304 = $303 << 31 >> 31; + $305 = (___muldi3(($41|0),($304|0),($54|0),($302|0))|0); + $306 = tempRet0; + $307 = (___muldi3(($42|0),($280|0),($21|0),($298|0))|0); + $308 = tempRet0; + $309 = (___muldi3(($43|0),($258|0),($54|0),($302|0))|0); + $310 = tempRet0; + $311 = (___muldi3(($44|0),($234|0),($21|0),($298|0))|0); + $312 = tempRet0; + $313 = (___muldi3(($45|0),($212|0),($54|0),($302|0))|0); + $314 = tempRet0; + $315 = (___muldi3(($46|0),($188|0),($21|0),($298|0))|0); + $316 = tempRet0; + $317 = (___muldi3(($47|0),($166|0),($54|0),($302|0))|0); + $318 = tempRet0; + $319 = (___muldi3(($48|0),($142|0),($21|0),($298|0))|0); + $320 = tempRet0; + $321 = (___muldi3(($49|0),($120|0),($54|0),($302|0))|0); + $322 = tempRet0; + $323 = (_i64Add(($305|0),($306|0),($59|0),($60|0))|0); + $324 = tempRet0; + $325 = (_i64Add(($323|0),($324|0),($281|0),($282|0))|0); + $326 = tempRet0; + $327 = (_i64Add(($325|0),($326|0),($259|0),($260|0))|0); + $328 = tempRet0; + $329 = (_i64Add(($327|0),($328|0),($235|0),($236|0))|0); + $330 = tempRet0; + $331 = (_i64Add(($329|0),($330|0),($213|0),($214|0))|0); + $332 = tempRet0; + $333 = (_i64Add(($331|0),($332|0),($189|0),($190|0))|0); + $334 = tempRet0; + $335 = (_i64Add(($333|0),($334|0),($167|0),($168|0))|0); + $336 = tempRet0; + $337 = (_i64Add(($335|0),($336|0),($143|0),($144|0))|0); + $338 = tempRet0; + $339 = (_i64Add(($337|0),($338|0),($121|0),($122|0))|0); + $340 = tempRet0; + $341 = (_i64Add(($63|0),($64|0),($99|0),($100|0))|0); + $342 = tempRet0; + $343 = (_i64Add(($153|0),($154|0),($175|0),($176|0))|0); + $344 = tempRet0; + $345 = (_i64Add(($343|0),($344|0),($129|0),($130|0))|0); + $346 = tempRet0; + $347 = (_i64Add(($345|0),($346|0),($107|0),($108|0))|0); + $348 = tempRet0; + $349 = (_i64Add(($347|0),($348|0),($75|0),($76|0))|0); + $350 = tempRet0; + $351 = (_i64Add(($349|0),($350|0),($313|0),($314|0))|0); + $352 = tempRet0; + $353 = (_i64Add(($351|0),($352|0),($289|0),($290|0))|0); + $354 = tempRet0; + $355 = (_i64Add(($353|0),($354|0),($267|0),($268|0))|0); + $356 = tempRet0; + $357 = (_i64Add(($355|0),($356|0),($243|0),($244|0))|0); + $358 = tempRet0; + $359 = (_i64Add(($357|0),($358|0),($221|0),($222|0))|0); + $360 = tempRet0; + $361 = (_i64Add(($339|0),($340|0),33554432,0)|0); + $362 = tempRet0; + $363 = (_bitshift64Ashr(($361|0),($362|0),26)|0); + $364 = tempRet0; + $365 = (_i64Add(($341|0),($342|0),($307|0),($308|0))|0); + $366 = tempRet0; + $367 = (_i64Add(($365|0),($366|0),($283|0),($284|0))|0); + $368 = tempRet0; + $369 = (_i64Add(($367|0),($368|0),($261|0),($262|0))|0); + $370 = tempRet0; + $371 = (_i64Add(($369|0),($370|0),($237|0),($238|0))|0); + $372 = tempRet0; + $373 = (_i64Add(($371|0),($372|0),($215|0),($216|0))|0); + $374 = tempRet0; + $375 = (_i64Add(($373|0),($374|0),($191|0),($192|0))|0); + $376 = tempRet0; + $377 = (_i64Add(($375|0),($376|0),($169|0),($170|0))|0); + $378 = tempRet0; + $379 = (_i64Add(($377|0),($378|0),($145|0),($146|0))|0); + $380 = tempRet0; + $381 = (_i64Add(($379|0),($380|0),($363|0),($364|0))|0); + $382 = tempRet0; + $383 = (_bitshift64Shl(($363|0),($364|0),26)|0); + $384 = tempRet0; + $385 = (_i64Subtract(($339|0),($340|0),($383|0),($384|0))|0); + $386 = tempRet0; + $387 = (_i64Add(($359|0),($360|0),33554432,0)|0); + $388 = tempRet0; + $389 = (_bitshift64Ashr(($387|0),($388|0),26)|0); + $390 = tempRet0; + $391 = (_i64Add(($177|0),($178|0),($199|0),($200|0))|0); + $392 = tempRet0; + $393 = (_i64Add(($391|0),($392|0),($155|0),($156|0))|0); + $394 = tempRet0; + $395 = (_i64Add(($393|0),($394|0),($131|0),($132|0))|0); + $396 = tempRet0; + $397 = (_i64Add(($395|0),($396|0),($109|0),($110|0))|0); + $398 = tempRet0; + $399 = (_i64Add(($397|0),($398|0),($79|0),($80|0))|0); + $400 = tempRet0; + $401 = (_i64Add(($399|0),($400|0),($315|0),($316|0))|0); + $402 = tempRet0; + $403 = (_i64Add(($401|0),($402|0),($291|0),($292|0))|0); + $404 = tempRet0; + $405 = (_i64Add(($403|0),($404|0),($269|0),($270|0))|0); + $406 = tempRet0; + $407 = (_i64Add(($405|0),($406|0),($245|0),($246|0))|0); + $408 = tempRet0; + $409 = (_i64Add(($407|0),($408|0),($389|0),($390|0))|0); + $410 = tempRet0; + $411 = (_bitshift64Shl(($389|0),($390|0),26)|0); + $412 = tempRet0; + $413 = (_i64Subtract(($359|0),($360|0),($411|0),($412|0))|0); + $414 = tempRet0; + $415 = (_i64Add(($381|0),($382|0),16777216,0)|0); + $416 = tempRet0; + $417 = (_bitshift64Ashr(($415|0),($416|0),25)|0); + $418 = tempRet0; + $419 = (_i64Add(($103|0),($104|0),($125|0),($126|0))|0); + $420 = tempRet0; + $421 = (_i64Add(($419|0),($420|0),($67|0),($68|0))|0); + $422 = tempRet0; + $423 = (_i64Add(($421|0),($422|0),($309|0),($310|0))|0); + $424 = tempRet0; + $425 = (_i64Add(($423|0),($424|0),($285|0),($286|0))|0); + $426 = tempRet0; + $427 = (_i64Add(($425|0),($426|0),($263|0),($264|0))|0); + $428 = tempRet0; + $429 = (_i64Add(($427|0),($428|0),($239|0),($240|0))|0); + $430 = tempRet0; + $431 = (_i64Add(($429|0),($430|0),($217|0),($218|0))|0); + $432 = tempRet0; + $433 = (_i64Add(($431|0),($432|0),($193|0),($194|0))|0); + $434 = tempRet0; + $435 = (_i64Add(($433|0),($434|0),($171|0),($172|0))|0); + $436 = tempRet0; + $437 = (_i64Add(($435|0),($436|0),($417|0),($418|0))|0); + $438 = tempRet0; + $439 = (_bitshift64Shl(($417|0),($418|0),25)|0); + $440 = tempRet0; + $441 = (_i64Subtract(($381|0),($382|0),($439|0),($440|0))|0); + $442 = tempRet0; + $443 = (_i64Add(($409|0),($410|0),16777216,0)|0); + $444 = tempRet0; + $445 = (_bitshift64Ashr(($443|0),($444|0),25)|0); + $446 = tempRet0; + $447 = (_i64Add(($203|0),($204|0),($225|0),($226|0))|0); + $448 = tempRet0; + $449 = (_i64Add(($447|0),($448|0),($179|0),($180|0))|0); + $450 = tempRet0; + $451 = (_i64Add(($449|0),($450|0),($157|0),($158|0))|0); + $452 = tempRet0; + $453 = (_i64Add(($451|0),($452|0),($133|0),($134|0))|0); + $454 = tempRet0; + $455 = (_i64Add(($453|0),($454|0),($111|0),($112|0))|0); + $456 = tempRet0; + $457 = (_i64Add(($455|0),($456|0),($83|0),($84|0))|0); + $458 = tempRet0; + $459 = (_i64Add(($457|0),($458|0),($317|0),($318|0))|0); + $460 = tempRet0; + $461 = (_i64Add(($459|0),($460|0),($293|0),($294|0))|0); + $462 = tempRet0; + $463 = (_i64Add(($461|0),($462|0),($271|0),($272|0))|0); + $464 = tempRet0; + $465 = (_i64Add(($463|0),($464|0),($445|0),($446|0))|0); + $466 = tempRet0; + $467 = (_bitshift64Shl(($445|0),($446|0),25)|0); + $468 = tempRet0; + $469 = (_i64Subtract(($409|0),($410|0),($467|0),($468|0))|0); + $470 = tempRet0; + $471 = (_i64Add(($437|0),($438|0),33554432,0)|0); + $472 = tempRet0; + $473 = (_bitshift64Ashr(($471|0),($472|0),26)|0); + $474 = tempRet0; + $475 = (_i64Add(($127|0),($128|0),($149|0),($150|0))|0); + $476 = tempRet0; + $477 = (_i64Add(($475|0),($476|0),($105|0),($106|0))|0); + $478 = tempRet0; + $479 = (_i64Add(($477|0),($478|0),($71|0),($72|0))|0); + $480 = tempRet0; + $481 = (_i64Add(($479|0),($480|0),($311|0),($312|0))|0); + $482 = tempRet0; + $483 = (_i64Add(($481|0),($482|0),($287|0),($288|0))|0); + $484 = tempRet0; + $485 = (_i64Add(($483|0),($484|0),($265|0),($266|0))|0); + $486 = tempRet0; + $487 = (_i64Add(($485|0),($486|0),($241|0),($242|0))|0); + $488 = tempRet0; + $489 = (_i64Add(($487|0),($488|0),($219|0),($220|0))|0); + $490 = tempRet0; + $491 = (_i64Add(($489|0),($490|0),($195|0),($196|0))|0); + $492 = tempRet0; + $493 = (_i64Add(($491|0),($492|0),($473|0),($474|0))|0); + $494 = tempRet0; + $495 = (_bitshift64Shl(($473|0),($474|0),26)|0); + $496 = tempRet0; + $497 = (_i64Subtract(($437|0),($438|0),($495|0),($496|0))|0); + $498 = tempRet0; + $499 = (_i64Add(($465|0),($466|0),33554432,0)|0); + $500 = tempRet0; + $501 = (_bitshift64Ashr(($499|0),($500|0),26)|0); + $502 = tempRet0; + $503 = (_i64Add(($227|0),($228|0),($249|0),($250|0))|0); + $504 = tempRet0; + $505 = (_i64Add(($503|0),($504|0),($205|0),($206|0))|0); + $506 = tempRet0; + $507 = (_i64Add(($505|0),($506|0),($181|0),($182|0))|0); + $508 = tempRet0; + $509 = (_i64Add(($507|0),($508|0),($159|0),($160|0))|0); + $510 = tempRet0; + $511 = (_i64Add(($509|0),($510|0),($135|0),($136|0))|0); + $512 = tempRet0; + $513 = (_i64Add(($511|0),($512|0),($113|0),($114|0))|0); + $514 = tempRet0; + $515 = (_i64Add(($513|0),($514|0),($87|0),($88|0))|0); + $516 = tempRet0; + $517 = (_i64Add(($515|0),($516|0),($319|0),($320|0))|0); + $518 = tempRet0; + $519 = (_i64Add(($517|0),($518|0),($295|0),($296|0))|0); + $520 = tempRet0; + $521 = (_i64Add(($519|0),($520|0),($501|0),($502|0))|0); + $522 = tempRet0; + $523 = (_bitshift64Shl(($501|0),($502|0),26)|0); + $524 = tempRet0; + $525 = (_i64Subtract(($465|0),($466|0),($523|0),($524|0))|0); + $526 = tempRet0; + $527 = (_i64Add(($493|0),($494|0),16777216,0)|0); + $528 = tempRet0; + $529 = (_bitshift64Ashr(($527|0),($528|0),25)|0); + $530 = tempRet0; + $531 = (_i64Add(($529|0),($530|0),($413|0),($414|0))|0); + $532 = tempRet0; + $533 = (_bitshift64Shl(($529|0),($530|0),25)|0); + $534 = tempRet0; + $535 = (_i64Subtract(($493|0),($494|0),($533|0),($534|0))|0); + $536 = tempRet0; + $537 = (_i64Add(($521|0),($522|0),16777216,0)|0); + $538 = tempRet0; + $539 = (_bitshift64Ashr(($537|0),($538|0),25)|0); + $540 = tempRet0; + $541 = (_i64Add(($253|0),($254|0),($275|0),($276|0))|0); + $542 = tempRet0; + $543 = (_i64Add(($541|0),($542|0),($229|0),($230|0))|0); + $544 = tempRet0; + $545 = (_i64Add(($543|0),($544|0),($207|0),($208|0))|0); + $546 = tempRet0; + $547 = (_i64Add(($545|0),($546|0),($183|0),($184|0))|0); + $548 = tempRet0; + $549 = (_i64Add(($547|0),($548|0),($161|0),($162|0))|0); + $550 = tempRet0; + $551 = (_i64Add(($549|0),($550|0),($137|0),($138|0))|0); + $552 = tempRet0; + $553 = (_i64Add(($551|0),($552|0),($115|0),($116|0))|0); + $554 = tempRet0; + $555 = (_i64Add(($553|0),($554|0),($91|0),($92|0))|0); + $556 = tempRet0; + $557 = (_i64Add(($555|0),($556|0),($321|0),($322|0))|0); + $558 = tempRet0; + $559 = (_i64Add(($557|0),($558|0),($539|0),($540|0))|0); + $560 = tempRet0; + $561 = (_bitshift64Shl(($539|0),($540|0),25)|0); + $562 = tempRet0; + $563 = (_i64Subtract(($521|0),($522|0),($561|0),($562|0))|0); + $564 = tempRet0; + $565 = (_i64Add(($531|0),($532|0),33554432,0)|0); + $566 = tempRet0; + $567 = (_bitshift64Ashr(($565|0),($566|0),26)|0); + $568 = tempRet0; + $569 = (_i64Add(($469|0),($470|0),($567|0),($568|0))|0); + $570 = tempRet0; + $571 = (_bitshift64Shl(($567|0),($568|0),26)|0); + $572 = tempRet0; + $573 = (_i64Subtract(($531|0),($532|0),($571|0),($572|0))|0); + $574 = tempRet0; + $575 = (_i64Add(($559|0),($560|0),33554432,0)|0); + $576 = tempRet0; + $577 = (_bitshift64Ashr(($575|0),($576|0),26)|0); + $578 = tempRet0; + $579 = (_i64Add(($277|0),($278|0),($299|0),($300|0))|0); + $580 = tempRet0; + $581 = (_i64Add(($579|0),($580|0),($255|0),($256|0))|0); + $582 = tempRet0; + $583 = (_i64Add(($581|0),($582|0),($231|0),($232|0))|0); + $584 = tempRet0; + $585 = (_i64Add(($583|0),($584|0),($209|0),($210|0))|0); + $586 = tempRet0; + $587 = (_i64Add(($585|0),($586|0),($185|0),($186|0))|0); + $588 = tempRet0; + $589 = (_i64Add(($587|0),($588|0),($163|0),($164|0))|0); + $590 = tempRet0; + $591 = (_i64Add(($589|0),($590|0),($139|0),($140|0))|0); + $592 = tempRet0; + $593 = (_i64Add(($591|0),($592|0),($117|0),($118|0))|0); + $594 = tempRet0; + $595 = (_i64Add(($593|0),($594|0),($95|0),($96|0))|0); + $596 = tempRet0; + $597 = (_i64Add(($595|0),($596|0),($577|0),($578|0))|0); + $598 = tempRet0; + $599 = (_bitshift64Shl(($577|0),($578|0),26)|0); + $600 = tempRet0; + $601 = (_i64Subtract(($559|0),($560|0),($599|0),($600|0))|0); + $602 = tempRet0; + $603 = (_i64Add(($597|0),($598|0),16777216,0)|0); + $604 = tempRet0; + $605 = (_bitshift64Ashr(($603|0),($604|0),25)|0); + $606 = tempRet0; + $607 = (___muldi3(($605|0),($606|0),19,0)|0); + $608 = tempRet0; + $609 = (_i64Add(($607|0),($608|0),($385|0),($386|0))|0); + $610 = tempRet0; + $611 = (_bitshift64Shl(($605|0),($606|0),25)|0); + $612 = tempRet0; + $613 = (_i64Subtract(($597|0),($598|0),($611|0),($612|0))|0); + $614 = tempRet0; + $615 = (_i64Add(($609|0),($610|0),33554432,0)|0); + $616 = tempRet0; + $617 = (_bitshift64Ashr(($615|0),($616|0),26)|0); + $618 = tempRet0; + $619 = (_i64Add(($441|0),($442|0),($617|0),($618|0))|0); + $620 = tempRet0; + $621 = (_bitshift64Shl(($617|0),($618|0),26)|0); + $622 = tempRet0; + $623 = (_i64Subtract(($609|0),($610|0),($621|0),($622|0))|0); + $624 = tempRet0; + HEAP32[$0>>2] = $623; + $625 = ((($0)) + 4|0); + HEAP32[$625>>2] = $619; + $626 = ((($0)) + 8|0); + HEAP32[$626>>2] = $497; + $627 = ((($0)) + 12|0); + HEAP32[$627>>2] = $535; + $628 = ((($0)) + 16|0); + HEAP32[$628>>2] = $573; + $629 = ((($0)) + 20|0); + HEAP32[$629>>2] = $569; + $630 = ((($0)) + 24|0); + HEAP32[$630>>2] = $525; + $631 = ((($0)) + 28|0); + HEAP32[$631>>2] = $563; + $632 = ((($0)) + 32|0); + HEAP32[$632>>2] = $601; + $633 = ((($0)) + 36|0); + HEAP32[$633>>2] = $613; + return; +} +function _crypto_sign_ed25519_ref10_fe_neg($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = HEAP32[$1>>2]|0; + $3 = ((($1)) + 4|0); + $4 = HEAP32[$3>>2]|0; + $5 = ((($1)) + 8|0); + $6 = HEAP32[$5>>2]|0; + $7 = ((($1)) + 12|0); + $8 = HEAP32[$7>>2]|0; + $9 = ((($1)) + 16|0); + $10 = HEAP32[$9>>2]|0; + $11 = ((($1)) + 20|0); + $12 = HEAP32[$11>>2]|0; + $13 = ((($1)) + 24|0); + $14 = HEAP32[$13>>2]|0; + $15 = ((($1)) + 28|0); + $16 = HEAP32[$15>>2]|0; + $17 = ((($1)) + 32|0); + $18 = HEAP32[$17>>2]|0; + $19 = ((($1)) + 36|0); + $20 = HEAP32[$19>>2]|0; + $21 = (0 - ($2))|0; + $22 = (0 - ($4))|0; + $23 = (0 - ($6))|0; + $24 = (0 - ($8))|0; + $25 = (0 - ($10))|0; + $26 = (0 - ($12))|0; + $27 = (0 - ($14))|0; + $28 = (0 - ($16))|0; + $29 = (0 - ($18))|0; + $30 = (0 - ($20))|0; + HEAP32[$0>>2] = $21; + $31 = ((($0)) + 4|0); + HEAP32[$31>>2] = $22; + $32 = ((($0)) + 8|0); + HEAP32[$32>>2] = $23; + $33 = ((($0)) + 12|0); + HEAP32[$33>>2] = $24; + $34 = ((($0)) + 16|0); + HEAP32[$34>>2] = $25; + $35 = ((($0)) + 20|0); + HEAP32[$35>>2] = $26; + $36 = ((($0)) + 24|0); + HEAP32[$36>>2] = $27; + $37 = ((($0)) + 28|0); + HEAP32[$37>>2] = $28; + $38 = ((($0)) + 32|0); + HEAP32[$38>>2] = $29; + $39 = ((($0)) + 36|0); + HEAP32[$39>>2] = $30; + return; +} +function _crypto_sign_ed25519_ref10_fe_pow22523($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$729 = 0, $$828 = 0, $$927 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $exitcond = 0, $exitcond35 = 0, $exitcond36 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 128|0; + $2 = sp + 80|0; + $3 = sp + 40|0; + $4 = sp; + _crypto_sign_ed25519_ref10_fe_sq($2,$1); + _crypto_sign_ed25519_ref10_fe_sq($3,$2); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_mul($3,$1,$3); + _crypto_sign_ed25519_ref10_fe_mul($2,$2,$3); + _crypto_sign_ed25519_ref10_fe_sq($2,$2); + _crypto_sign_ed25519_ref10_fe_mul($2,$3,$2); + _crypto_sign_ed25519_ref10_fe_sq($3,$2); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_mul($2,$3,$2); + _crypto_sign_ed25519_ref10_fe_sq($3,$2); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_mul($3,$3,$2); + _crypto_sign_ed25519_ref10_fe_sq($4,$3); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_mul($3,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_mul($2,$3,$2); + _crypto_sign_ed25519_ref10_fe_sq($3,$2); + $$729 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + $5 = (($$729) + 1)|0; + $exitcond36 = ($5|0)==(50); + if ($exitcond36) { + break; + } else { + $$729 = $5; + } + } + _crypto_sign_ed25519_ref10_fe_mul($3,$3,$2); + _crypto_sign_ed25519_ref10_fe_sq($4,$3); + $$828 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + $6 = (($$828) + 1)|0; + $exitcond35 = ($6|0)==(100); + if ($exitcond35) { + break; + } else { + $$828 = $6; + } + } + _crypto_sign_ed25519_ref10_fe_mul($3,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + $$927 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + $7 = (($$927) + 1)|0; + $exitcond = ($7|0)==(50); + if ($exitcond) { + break; + } else { + $$927 = $7; + } + } + _crypto_sign_ed25519_ref10_fe_mul($2,$3,$2); + _crypto_sign_ed25519_ref10_fe_sq($2,$2); + _crypto_sign_ed25519_ref10_fe_sq($2,$2); + _crypto_sign_ed25519_ref10_fe_mul($0,$2,$1); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_sq($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0; + var $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0; + var $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0; + var $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0; + var $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0; + var $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0; + var $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0; + var $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0; + var $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0; + var $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0; + var $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0; + var $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0; + var $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0; + var $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0; + var $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0; + var $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = HEAP32[$1>>2]|0; + $3 = ((($1)) + 4|0); + $4 = HEAP32[$3>>2]|0; + $5 = ((($1)) + 8|0); + $6 = HEAP32[$5>>2]|0; + $7 = ((($1)) + 12|0); + $8 = HEAP32[$7>>2]|0; + $9 = ((($1)) + 16|0); + $10 = HEAP32[$9>>2]|0; + $11 = ((($1)) + 20|0); + $12 = HEAP32[$11>>2]|0; + $13 = ((($1)) + 24|0); + $14 = HEAP32[$13>>2]|0; + $15 = ((($1)) + 28|0); + $16 = HEAP32[$15>>2]|0; + $17 = ((($1)) + 32|0); + $18 = HEAP32[$17>>2]|0; + $19 = ((($1)) + 36|0); + $20 = HEAP32[$19>>2]|0; + $21 = $2 << 1; + $22 = $4 << 1; + $23 = $6 << 1; + $24 = $8 << 1; + $25 = $10 << 1; + $26 = $12 << 1; + $27 = $14 << 1; + $28 = $16 << 1; + $29 = ($12*38)|0; + $30 = ($14*19)|0; + $31 = ($16*38)|0; + $32 = ($18*19)|0; + $33 = ($20*38)|0; + $34 = ($2|0)<(0); + $35 = $34 << 31 >> 31; + $36 = (___muldi3(($2|0),($35|0),($2|0),($35|0))|0); + $37 = tempRet0; + $38 = ($21|0)<(0); + $39 = $38 << 31 >> 31; + $40 = ($4|0)<(0); + $41 = $40 << 31 >> 31; + $42 = (___muldi3(($21|0),($39|0),($4|0),($41|0))|0); + $43 = tempRet0; + $44 = ($6|0)<(0); + $45 = $44 << 31 >> 31; + $46 = (___muldi3(($6|0),($45|0),($21|0),($39|0))|0); + $47 = tempRet0; + $48 = ($8|0)<(0); + $49 = $48 << 31 >> 31; + $50 = (___muldi3(($8|0),($49|0),($21|0),($39|0))|0); + $51 = tempRet0; + $52 = ($10|0)<(0); + $53 = $52 << 31 >> 31; + $54 = (___muldi3(($10|0),($53|0),($21|0),($39|0))|0); + $55 = tempRet0; + $56 = ($12|0)<(0); + $57 = $56 << 31 >> 31; + $58 = (___muldi3(($12|0),($57|0),($21|0),($39|0))|0); + $59 = tempRet0; + $60 = ($14|0)<(0); + $61 = $60 << 31 >> 31; + $62 = (___muldi3(($14|0),($61|0),($21|0),($39|0))|0); + $63 = tempRet0; + $64 = ($16|0)<(0); + $65 = $64 << 31 >> 31; + $66 = (___muldi3(($16|0),($65|0),($21|0),($39|0))|0); + $67 = tempRet0; + $68 = ($18|0)<(0); + $69 = $68 << 31 >> 31; + $70 = (___muldi3(($18|0),($69|0),($21|0),($39|0))|0); + $71 = tempRet0; + $72 = ($20|0)<(0); + $73 = $72 << 31 >> 31; + $74 = (___muldi3(($20|0),($73|0),($21|0),($39|0))|0); + $75 = tempRet0; + $76 = ($22|0)<(0); + $77 = $76 << 31 >> 31; + $78 = (___muldi3(($22|0),($77|0),($4|0),($41|0))|0); + $79 = tempRet0; + $80 = (___muldi3(($22|0),($77|0),($6|0),($45|0))|0); + $81 = tempRet0; + $82 = ($24|0)<(0); + $83 = $82 << 31 >> 31; + $84 = (___muldi3(($24|0),($83|0),($22|0),($77|0))|0); + $85 = tempRet0; + $86 = (___muldi3(($10|0),($53|0),($22|0),($77|0))|0); + $87 = tempRet0; + $88 = ($26|0)<(0); + $89 = $88 << 31 >> 31; + $90 = (___muldi3(($26|0),($89|0),($22|0),($77|0))|0); + $91 = tempRet0; + $92 = (___muldi3(($14|0),($61|0),($22|0),($77|0))|0); + $93 = tempRet0; + $94 = ($28|0)<(0); + $95 = $94 << 31 >> 31; + $96 = (___muldi3(($28|0),($95|0),($22|0),($77|0))|0); + $97 = tempRet0; + $98 = (___muldi3(($18|0),($69|0),($22|0),($77|0))|0); + $99 = tempRet0; + $100 = ($33|0)<(0); + $101 = $100 << 31 >> 31; + $102 = (___muldi3(($33|0),($101|0),($22|0),($77|0))|0); + $103 = tempRet0; + $104 = (___muldi3(($6|0),($45|0),($6|0),($45|0))|0); + $105 = tempRet0; + $106 = ($23|0)<(0); + $107 = $106 << 31 >> 31; + $108 = (___muldi3(($23|0),($107|0),($8|0),($49|0))|0); + $109 = tempRet0; + $110 = (___muldi3(($10|0),($53|0),($23|0),($107|0))|0); + $111 = tempRet0; + $112 = (___muldi3(($12|0),($57|0),($23|0),($107|0))|0); + $113 = tempRet0; + $114 = (___muldi3(($14|0),($61|0),($23|0),($107|0))|0); + $115 = tempRet0; + $116 = (___muldi3(($16|0),($65|0),($23|0),($107|0))|0); + $117 = tempRet0; + $118 = ($32|0)<(0); + $119 = $118 << 31 >> 31; + $120 = (___muldi3(($32|0),($119|0),($23|0),($107|0))|0); + $121 = tempRet0; + $122 = (___muldi3(($33|0),($101|0),($6|0),($45|0))|0); + $123 = tempRet0; + $124 = (___muldi3(($24|0),($83|0),($8|0),($49|0))|0); + $125 = tempRet0; + $126 = (___muldi3(($24|0),($83|0),($10|0),($53|0))|0); + $127 = tempRet0; + $128 = (___muldi3(($26|0),($89|0),($24|0),($83|0))|0); + $129 = tempRet0; + $130 = (___muldi3(($14|0),($61|0),($24|0),($83|0))|0); + $131 = tempRet0; + $132 = ($31|0)<(0); + $133 = $132 << 31 >> 31; + $134 = (___muldi3(($31|0),($133|0),($24|0),($83|0))|0); + $135 = tempRet0; + $136 = (___muldi3(($32|0),($119|0),($24|0),($83|0))|0); + $137 = tempRet0; + $138 = (___muldi3(($33|0),($101|0),($24|0),($83|0))|0); + $139 = tempRet0; + $140 = (___muldi3(($10|0),($53|0),($10|0),($53|0))|0); + $141 = tempRet0; + $142 = ($25|0)<(0); + $143 = $142 << 31 >> 31; + $144 = (___muldi3(($25|0),($143|0),($12|0),($57|0))|0); + $145 = tempRet0; + $146 = ($30|0)<(0); + $147 = $146 << 31 >> 31; + $148 = (___muldi3(($30|0),($147|0),($25|0),($143|0))|0); + $149 = tempRet0; + $150 = (___muldi3(($31|0),($133|0),($10|0),($53|0))|0); + $151 = tempRet0; + $152 = (___muldi3(($32|0),($119|0),($25|0),($143|0))|0); + $153 = tempRet0; + $154 = (___muldi3(($33|0),($101|0),($10|0),($53|0))|0); + $155 = tempRet0; + $156 = ($29|0)<(0); + $157 = $156 << 31 >> 31; + $158 = (___muldi3(($29|0),($157|0),($12|0),($57|0))|0); + $159 = tempRet0; + $160 = (___muldi3(($30|0),($147|0),($26|0),($89|0))|0); + $161 = tempRet0; + $162 = (___muldi3(($31|0),($133|0),($26|0),($89|0))|0); + $163 = tempRet0; + $164 = (___muldi3(($32|0),($119|0),($26|0),($89|0))|0); + $165 = tempRet0; + $166 = (___muldi3(($33|0),($101|0),($26|0),($89|0))|0); + $167 = tempRet0; + $168 = (___muldi3(($30|0),($147|0),($14|0),($61|0))|0); + $169 = tempRet0; + $170 = (___muldi3(($31|0),($133|0),($14|0),($61|0))|0); + $171 = tempRet0; + $172 = ($27|0)<(0); + $173 = $172 << 31 >> 31; + $174 = (___muldi3(($32|0),($119|0),($27|0),($173|0))|0); + $175 = tempRet0; + $176 = (___muldi3(($33|0),($101|0),($14|0),($61|0))|0); + $177 = tempRet0; + $178 = (___muldi3(($31|0),($133|0),($16|0),($65|0))|0); + $179 = tempRet0; + $180 = (___muldi3(($32|0),($119|0),($28|0),($95|0))|0); + $181 = tempRet0; + $182 = (___muldi3(($33|0),($101|0),($28|0),($95|0))|0); + $183 = tempRet0; + $184 = (___muldi3(($32|0),($119|0),($18|0),($69|0))|0); + $185 = tempRet0; + $186 = (___muldi3(($33|0),($101|0),($18|0),($69|0))|0); + $187 = tempRet0; + $188 = (___muldi3(($33|0),($101|0),($20|0),($73|0))|0); + $189 = tempRet0; + $190 = (_i64Add(($158|0),($159|0),($36|0),($37|0))|0); + $191 = tempRet0; + $192 = (_i64Add(($190|0),($191|0),($148|0),($149|0))|0); + $193 = tempRet0; + $194 = (_i64Add(($192|0),($193|0),($134|0),($135|0))|0); + $195 = tempRet0; + $196 = (_i64Add(($194|0),($195|0),($120|0),($121|0))|0); + $197 = tempRet0; + $198 = (_i64Add(($196|0),($197|0),($102|0),($103|0))|0); + $199 = tempRet0; + $200 = (_i64Add(($46|0),($47|0),($78|0),($79|0))|0); + $201 = tempRet0; + $202 = (_i64Add(($50|0),($51|0),($80|0),($81|0))|0); + $203 = tempRet0; + $204 = (_i64Add(($84|0),($85|0),($104|0),($105|0))|0); + $205 = tempRet0; + $206 = (_i64Add(($204|0),($205|0),($54|0),($55|0))|0); + $207 = tempRet0; + $208 = (_i64Add(($206|0),($207|0),($178|0),($179|0))|0); + $209 = tempRet0; + $210 = (_i64Add(($208|0),($209|0),($174|0),($175|0))|0); + $211 = tempRet0; + $212 = (_i64Add(($210|0),($211|0),($166|0),($167|0))|0); + $213 = tempRet0; + $214 = (_i64Add(($198|0),($199|0),33554432,0)|0); + $215 = tempRet0; + $216 = (_bitshift64Ashr(($214|0),($215|0),26)|0); + $217 = tempRet0; + $218 = (_i64Add(($160|0),($161|0),($42|0),($43|0))|0); + $219 = tempRet0; + $220 = (_i64Add(($218|0),($219|0),($150|0),($151|0))|0); + $221 = tempRet0; + $222 = (_i64Add(($220|0),($221|0),($136|0),($137|0))|0); + $223 = tempRet0; + $224 = (_i64Add(($222|0),($223|0),($122|0),($123|0))|0); + $225 = tempRet0; + $226 = (_i64Add(($224|0),($225|0),($216|0),($217|0))|0); + $227 = tempRet0; + $228 = (_bitshift64Shl(($216|0),($217|0),26)|0); + $229 = tempRet0; + $230 = (_i64Subtract(($198|0),($199|0),($228|0),($229|0))|0); + $231 = tempRet0; + $232 = (_i64Add(($212|0),($213|0),33554432,0)|0); + $233 = tempRet0; + $234 = (_bitshift64Ashr(($232|0),($233|0),26)|0); + $235 = tempRet0; + $236 = (_i64Add(($86|0),($87|0),($108|0),($109|0))|0); + $237 = tempRet0; + $238 = (_i64Add(($236|0),($237|0),($58|0),($59|0))|0); + $239 = tempRet0; + $240 = (_i64Add(($238|0),($239|0),($180|0),($181|0))|0); + $241 = tempRet0; + $242 = (_i64Add(($240|0),($241|0),($176|0),($177|0))|0); + $243 = tempRet0; + $244 = (_i64Add(($242|0),($243|0),($234|0),($235|0))|0); + $245 = tempRet0; + $246 = (_bitshift64Shl(($234|0),($235|0),26)|0); + $247 = tempRet0; + $248 = (_i64Subtract(($212|0),($213|0),($246|0),($247|0))|0); + $249 = tempRet0; + $250 = (_i64Add(($226|0),($227|0),16777216,0)|0); + $251 = tempRet0; + $252 = (_bitshift64Ashr(($250|0),($251|0),25)|0); + $253 = tempRet0; + $254 = (_i64Add(($200|0),($201|0),($168|0),($169|0))|0); + $255 = tempRet0; + $256 = (_i64Add(($254|0),($255|0),($162|0),($163|0))|0); + $257 = tempRet0; + $258 = (_i64Add(($256|0),($257|0),($152|0),($153|0))|0); + $259 = tempRet0; + $260 = (_i64Add(($258|0),($259|0),($138|0),($139|0))|0); + $261 = tempRet0; + $262 = (_i64Add(($260|0),($261|0),($252|0),($253|0))|0); + $263 = tempRet0; + $264 = (_bitshift64Shl(($252|0),($253|0),25)|0); + $265 = tempRet0; + $266 = (_i64Subtract(($226|0),($227|0),($264|0),($265|0))|0); + $267 = tempRet0; + $268 = (_i64Add(($244|0),($245|0),16777216,0)|0); + $269 = tempRet0; + $270 = (_bitshift64Ashr(($268|0),($269|0),25)|0); + $271 = tempRet0; + $272 = (_i64Add(($124|0),($125|0),($110|0),($111|0))|0); + $273 = tempRet0; + $274 = (_i64Add(($272|0),($273|0),($90|0),($91|0))|0); + $275 = tempRet0; + $276 = (_i64Add(($274|0),($275|0),($62|0),($63|0))|0); + $277 = tempRet0; + $278 = (_i64Add(($276|0),($277|0),($184|0),($185|0))|0); + $279 = tempRet0; + $280 = (_i64Add(($278|0),($279|0),($182|0),($183|0))|0); + $281 = tempRet0; + $282 = (_i64Add(($280|0),($281|0),($270|0),($271|0))|0); + $283 = tempRet0; + $284 = (_bitshift64Shl(($270|0),($271|0),25)|0); + $285 = tempRet0; + $286 = (_i64Subtract(($244|0),($245|0),($284|0),($285|0))|0); + $287 = tempRet0; + $288 = (_i64Add(($262|0),($263|0),33554432,0)|0); + $289 = tempRet0; + $290 = (_bitshift64Ashr(($288|0),($289|0),26)|0); + $291 = tempRet0; + $292 = (_i64Add(($202|0),($203|0),($170|0),($171|0))|0); + $293 = tempRet0; + $294 = (_i64Add(($292|0),($293|0),($164|0),($165|0))|0); + $295 = tempRet0; + $296 = (_i64Add(($294|0),($295|0),($154|0),($155|0))|0); + $297 = tempRet0; + $298 = (_i64Add(($296|0),($297|0),($290|0),($291|0))|0); + $299 = tempRet0; + $300 = (_bitshift64Shl(($290|0),($291|0),26)|0); + $301 = tempRet0; + $302 = (_i64Subtract(($262|0),($263|0),($300|0),($301|0))|0); + $303 = tempRet0; + $304 = (_i64Add(($282|0),($283|0),33554432,0)|0); + $305 = tempRet0; + $306 = (_bitshift64Ashr(($304|0),($305|0),26)|0); + $307 = tempRet0; + $308 = (_i64Add(($112|0),($113|0),($126|0),($127|0))|0); + $309 = tempRet0; + $310 = (_i64Add(($308|0),($309|0),($92|0),($93|0))|0); + $311 = tempRet0; + $312 = (_i64Add(($310|0),($311|0),($66|0),($67|0))|0); + $313 = tempRet0; + $314 = (_i64Add(($312|0),($313|0),($186|0),($187|0))|0); + $315 = tempRet0; + $316 = (_i64Add(($314|0),($315|0),($306|0),($307|0))|0); + $317 = tempRet0; + $318 = (_bitshift64Shl(($306|0),($307|0),26)|0); + $319 = tempRet0; + $320 = (_i64Subtract(($282|0),($283|0),($318|0),($319|0))|0); + $321 = tempRet0; + $322 = (_i64Add(($298|0),($299|0),16777216,0)|0); + $323 = tempRet0; + $324 = (_bitshift64Ashr(($322|0),($323|0),25)|0); + $325 = tempRet0; + $326 = (_i64Add(($324|0),($325|0),($248|0),($249|0))|0); + $327 = tempRet0; + $328 = (_bitshift64Shl(($324|0),($325|0),25)|0); + $329 = tempRet0; + $330 = (_i64Subtract(($298|0),($299|0),($328|0),($329|0))|0); + $331 = tempRet0; + $332 = (_i64Add(($316|0),($317|0),16777216,0)|0); + $333 = tempRet0; + $334 = (_bitshift64Ashr(($332|0),($333|0),25)|0); + $335 = tempRet0; + $336 = (_i64Add(($114|0),($115|0),($140|0),($141|0))|0); + $337 = tempRet0; + $338 = (_i64Add(($336|0),($337|0),($128|0),($129|0))|0); + $339 = tempRet0; + $340 = (_i64Add(($338|0),($339|0),($96|0),($97|0))|0); + $341 = tempRet0; + $342 = (_i64Add(($340|0),($341|0),($70|0),($71|0))|0); + $343 = tempRet0; + $344 = (_i64Add(($342|0),($343|0),($188|0),($189|0))|0); + $345 = tempRet0; + $346 = (_i64Add(($344|0),($345|0),($334|0),($335|0))|0); + $347 = tempRet0; + $348 = (_bitshift64Shl(($334|0),($335|0),25)|0); + $349 = tempRet0; + $350 = (_i64Subtract(($316|0),($317|0),($348|0),($349|0))|0); + $351 = tempRet0; + $352 = (_i64Add(($326|0),($327|0),33554432,0)|0); + $353 = tempRet0; + $354 = (_bitshift64Ashr(($352|0),($353|0),26)|0); + $355 = tempRet0; + $356 = (_i64Add(($286|0),($287|0),($354|0),($355|0))|0); + $357 = tempRet0; + $358 = (_bitshift64Shl(($354|0),($355|0),26)|0); + $359 = tempRet0; + $360 = (_i64Subtract(($326|0),($327|0),($358|0),($359|0))|0); + $361 = tempRet0; + $362 = (_i64Add(($346|0),($347|0),33554432,0)|0); + $363 = tempRet0; + $364 = (_bitshift64Ashr(($362|0),($363|0),26)|0); + $365 = tempRet0; + $366 = (_i64Add(($130|0),($131|0),($144|0),($145|0))|0); + $367 = tempRet0; + $368 = (_i64Add(($366|0),($367|0),($116|0),($117|0))|0); + $369 = tempRet0; + $370 = (_i64Add(($368|0),($369|0),($98|0),($99|0))|0); + $371 = tempRet0; + $372 = (_i64Add(($370|0),($371|0),($74|0),($75|0))|0); + $373 = tempRet0; + $374 = (_i64Add(($372|0),($373|0),($364|0),($365|0))|0); + $375 = tempRet0; + $376 = (_bitshift64Shl(($364|0),($365|0),26)|0); + $377 = tempRet0; + $378 = (_i64Subtract(($346|0),($347|0),($376|0),($377|0))|0); + $379 = tempRet0; + $380 = (_i64Add(($374|0),($375|0),16777216,0)|0); + $381 = tempRet0; + $382 = (_bitshift64Ashr(($380|0),($381|0),25)|0); + $383 = tempRet0; + $384 = (___muldi3(($382|0),($383|0),19,0)|0); + $385 = tempRet0; + $386 = (_i64Add(($384|0),($385|0),($230|0),($231|0))|0); + $387 = tempRet0; + $388 = (_bitshift64Shl(($382|0),($383|0),25)|0); + $389 = tempRet0; + $390 = (_i64Subtract(($374|0),($375|0),($388|0),($389|0))|0); + $391 = tempRet0; + $392 = (_i64Add(($386|0),($387|0),33554432,0)|0); + $393 = tempRet0; + $394 = (_bitshift64Ashr(($392|0),($393|0),26)|0); + $395 = tempRet0; + $396 = (_i64Add(($266|0),($267|0),($394|0),($395|0))|0); + $397 = tempRet0; + $398 = (_bitshift64Shl(($394|0),($395|0),26)|0); + $399 = tempRet0; + $400 = (_i64Subtract(($386|0),($387|0),($398|0),($399|0))|0); + $401 = tempRet0; + HEAP32[$0>>2] = $400; + $402 = ((($0)) + 4|0); + HEAP32[$402>>2] = $396; + $403 = ((($0)) + 8|0); + HEAP32[$403>>2] = $302; + $404 = ((($0)) + 12|0); + HEAP32[$404>>2] = $330; + $405 = ((($0)) + 16|0); + HEAP32[$405>>2] = $360; + $406 = ((($0)) + 20|0); + HEAP32[$406>>2] = $356; + $407 = ((($0)) + 24|0); + HEAP32[$407>>2] = $320; + $408 = ((($0)) + 28|0); + HEAP32[$408>>2] = $350; + $409 = ((($0)) + 32|0); + HEAP32[$409>>2] = $378; + $410 = ((($0)) + 36|0); + HEAP32[$410>>2] = $390; + return; +} +function _crypto_sign_ed25519_ref10_fe_sq2($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0; + var $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0; + var $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0; + var $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0; + var $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0; + var $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0; + var $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0; + var $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0; + var $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0; + var $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0; + var $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0; + var $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0; + var $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0; + var $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0; + var $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0; + var $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0; + var $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = HEAP32[$1>>2]|0; + $3 = ((($1)) + 4|0); + $4 = HEAP32[$3>>2]|0; + $5 = ((($1)) + 8|0); + $6 = HEAP32[$5>>2]|0; + $7 = ((($1)) + 12|0); + $8 = HEAP32[$7>>2]|0; + $9 = ((($1)) + 16|0); + $10 = HEAP32[$9>>2]|0; + $11 = ((($1)) + 20|0); + $12 = HEAP32[$11>>2]|0; + $13 = ((($1)) + 24|0); + $14 = HEAP32[$13>>2]|0; + $15 = ((($1)) + 28|0); + $16 = HEAP32[$15>>2]|0; + $17 = ((($1)) + 32|0); + $18 = HEAP32[$17>>2]|0; + $19 = ((($1)) + 36|0); + $20 = HEAP32[$19>>2]|0; + $21 = $2 << 1; + $22 = $4 << 1; + $23 = $6 << 1; + $24 = $8 << 1; + $25 = $10 << 1; + $26 = $12 << 1; + $27 = $14 << 1; + $28 = $16 << 1; + $29 = ($12*38)|0; + $30 = ($14*19)|0; + $31 = ($16*38)|0; + $32 = ($18*19)|0; + $33 = ($20*38)|0; + $34 = ($2|0)<(0); + $35 = $34 << 31 >> 31; + $36 = (___muldi3(($2|0),($35|0),($2|0),($35|0))|0); + $37 = tempRet0; + $38 = ($21|0)<(0); + $39 = $38 << 31 >> 31; + $40 = ($4|0)<(0); + $41 = $40 << 31 >> 31; + $42 = (___muldi3(($21|0),($39|0),($4|0),($41|0))|0); + $43 = tempRet0; + $44 = ($6|0)<(0); + $45 = $44 << 31 >> 31; + $46 = (___muldi3(($6|0),($45|0),($21|0),($39|0))|0); + $47 = tempRet0; + $48 = ($8|0)<(0); + $49 = $48 << 31 >> 31; + $50 = (___muldi3(($8|0),($49|0),($21|0),($39|0))|0); + $51 = tempRet0; + $52 = ($10|0)<(0); + $53 = $52 << 31 >> 31; + $54 = (___muldi3(($10|0),($53|0),($21|0),($39|0))|0); + $55 = tempRet0; + $56 = ($12|0)<(0); + $57 = $56 << 31 >> 31; + $58 = (___muldi3(($12|0),($57|0),($21|0),($39|0))|0); + $59 = tempRet0; + $60 = ($14|0)<(0); + $61 = $60 << 31 >> 31; + $62 = (___muldi3(($14|0),($61|0),($21|0),($39|0))|0); + $63 = tempRet0; + $64 = ($16|0)<(0); + $65 = $64 << 31 >> 31; + $66 = (___muldi3(($16|0),($65|0),($21|0),($39|0))|0); + $67 = tempRet0; + $68 = ($18|0)<(0); + $69 = $68 << 31 >> 31; + $70 = (___muldi3(($18|0),($69|0),($21|0),($39|0))|0); + $71 = tempRet0; + $72 = ($20|0)<(0); + $73 = $72 << 31 >> 31; + $74 = (___muldi3(($20|0),($73|0),($21|0),($39|0))|0); + $75 = tempRet0; + $76 = ($22|0)<(0); + $77 = $76 << 31 >> 31; + $78 = (___muldi3(($22|0),($77|0),($4|0),($41|0))|0); + $79 = tempRet0; + $80 = (___muldi3(($22|0),($77|0),($6|0),($45|0))|0); + $81 = tempRet0; + $82 = ($24|0)<(0); + $83 = $82 << 31 >> 31; + $84 = (___muldi3(($24|0),($83|0),($22|0),($77|0))|0); + $85 = tempRet0; + $86 = (___muldi3(($10|0),($53|0),($22|0),($77|0))|0); + $87 = tempRet0; + $88 = ($26|0)<(0); + $89 = $88 << 31 >> 31; + $90 = (___muldi3(($26|0),($89|0),($22|0),($77|0))|0); + $91 = tempRet0; + $92 = (___muldi3(($14|0),($61|0),($22|0),($77|0))|0); + $93 = tempRet0; + $94 = ($28|0)<(0); + $95 = $94 << 31 >> 31; + $96 = (___muldi3(($28|0),($95|0),($22|0),($77|0))|0); + $97 = tempRet0; + $98 = (___muldi3(($18|0),($69|0),($22|0),($77|0))|0); + $99 = tempRet0; + $100 = ($33|0)<(0); + $101 = $100 << 31 >> 31; + $102 = (___muldi3(($33|0),($101|0),($22|0),($77|0))|0); + $103 = tempRet0; + $104 = (___muldi3(($6|0),($45|0),($6|0),($45|0))|0); + $105 = tempRet0; + $106 = ($23|0)<(0); + $107 = $106 << 31 >> 31; + $108 = (___muldi3(($23|0),($107|0),($8|0),($49|0))|0); + $109 = tempRet0; + $110 = (___muldi3(($10|0),($53|0),($23|0),($107|0))|0); + $111 = tempRet0; + $112 = (___muldi3(($12|0),($57|0),($23|0),($107|0))|0); + $113 = tempRet0; + $114 = (___muldi3(($14|0),($61|0),($23|0),($107|0))|0); + $115 = tempRet0; + $116 = (___muldi3(($16|0),($65|0),($23|0),($107|0))|0); + $117 = tempRet0; + $118 = ($32|0)<(0); + $119 = $118 << 31 >> 31; + $120 = (___muldi3(($32|0),($119|0),($23|0),($107|0))|0); + $121 = tempRet0; + $122 = (___muldi3(($33|0),($101|0),($6|0),($45|0))|0); + $123 = tempRet0; + $124 = (___muldi3(($24|0),($83|0),($8|0),($49|0))|0); + $125 = tempRet0; + $126 = (___muldi3(($24|0),($83|0),($10|0),($53|0))|0); + $127 = tempRet0; + $128 = (___muldi3(($26|0),($89|0),($24|0),($83|0))|0); + $129 = tempRet0; + $130 = (___muldi3(($14|0),($61|0),($24|0),($83|0))|0); + $131 = tempRet0; + $132 = ($31|0)<(0); + $133 = $132 << 31 >> 31; + $134 = (___muldi3(($31|0),($133|0),($24|0),($83|0))|0); + $135 = tempRet0; + $136 = (___muldi3(($32|0),($119|0),($24|0),($83|0))|0); + $137 = tempRet0; + $138 = (___muldi3(($33|0),($101|0),($24|0),($83|0))|0); + $139 = tempRet0; + $140 = (___muldi3(($10|0),($53|0),($10|0),($53|0))|0); + $141 = tempRet0; + $142 = ($25|0)<(0); + $143 = $142 << 31 >> 31; + $144 = (___muldi3(($25|0),($143|0),($12|0),($57|0))|0); + $145 = tempRet0; + $146 = ($30|0)<(0); + $147 = $146 << 31 >> 31; + $148 = (___muldi3(($30|0),($147|0),($25|0),($143|0))|0); + $149 = tempRet0; + $150 = (___muldi3(($31|0),($133|0),($10|0),($53|0))|0); + $151 = tempRet0; + $152 = (___muldi3(($32|0),($119|0),($25|0),($143|0))|0); + $153 = tempRet0; + $154 = (___muldi3(($33|0),($101|0),($10|0),($53|0))|0); + $155 = tempRet0; + $156 = ($29|0)<(0); + $157 = $156 << 31 >> 31; + $158 = (___muldi3(($29|0),($157|0),($12|0),($57|0))|0); + $159 = tempRet0; + $160 = (___muldi3(($30|0),($147|0),($26|0),($89|0))|0); + $161 = tempRet0; + $162 = (___muldi3(($31|0),($133|0),($26|0),($89|0))|0); + $163 = tempRet0; + $164 = (___muldi3(($32|0),($119|0),($26|0),($89|0))|0); + $165 = tempRet0; + $166 = (___muldi3(($33|0),($101|0),($26|0),($89|0))|0); + $167 = tempRet0; + $168 = (___muldi3(($30|0),($147|0),($14|0),($61|0))|0); + $169 = tempRet0; + $170 = (___muldi3(($31|0),($133|0),($14|0),($61|0))|0); + $171 = tempRet0; + $172 = ($27|0)<(0); + $173 = $172 << 31 >> 31; + $174 = (___muldi3(($32|0),($119|0),($27|0),($173|0))|0); + $175 = tempRet0; + $176 = (___muldi3(($33|0),($101|0),($14|0),($61|0))|0); + $177 = tempRet0; + $178 = (___muldi3(($31|0),($133|0),($16|0),($65|0))|0); + $179 = tempRet0; + $180 = (___muldi3(($32|0),($119|0),($28|0),($95|0))|0); + $181 = tempRet0; + $182 = (___muldi3(($33|0),($101|0),($28|0),($95|0))|0); + $183 = tempRet0; + $184 = (___muldi3(($32|0),($119|0),($18|0),($69|0))|0); + $185 = tempRet0; + $186 = (___muldi3(($33|0),($101|0),($18|0),($69|0))|0); + $187 = tempRet0; + $188 = (___muldi3(($33|0),($101|0),($20|0),($73|0))|0); + $189 = tempRet0; + $190 = (_i64Add(($158|0),($159|0),($36|0),($37|0))|0); + $191 = tempRet0; + $192 = (_i64Add(($190|0),($191|0),($148|0),($149|0))|0); + $193 = tempRet0; + $194 = (_i64Add(($192|0),($193|0),($134|0),($135|0))|0); + $195 = tempRet0; + $196 = (_i64Add(($194|0),($195|0),($120|0),($121|0))|0); + $197 = tempRet0; + $198 = (_i64Add(($196|0),($197|0),($102|0),($103|0))|0); + $199 = tempRet0; + $200 = (_i64Add(($160|0),($161|0),($42|0),($43|0))|0); + $201 = tempRet0; + $202 = (_i64Add(($200|0),($201|0),($150|0),($151|0))|0); + $203 = tempRet0; + $204 = (_i64Add(($202|0),($203|0),($136|0),($137|0))|0); + $205 = tempRet0; + $206 = (_i64Add(($204|0),($205|0),($122|0),($123|0))|0); + $207 = tempRet0; + $208 = (_i64Add(($46|0),($47|0),($78|0),($79|0))|0); + $209 = tempRet0; + $210 = (_i64Add(($208|0),($209|0),($168|0),($169|0))|0); + $211 = tempRet0; + $212 = (_i64Add(($210|0),($211|0),($162|0),($163|0))|0); + $213 = tempRet0; + $214 = (_i64Add(($212|0),($213|0),($152|0),($153|0))|0); + $215 = tempRet0; + $216 = (_i64Add(($214|0),($215|0),($138|0),($139|0))|0); + $217 = tempRet0; + $218 = (_i64Add(($50|0),($51|0),($80|0),($81|0))|0); + $219 = tempRet0; + $220 = (_i64Add(($218|0),($219|0),($170|0),($171|0))|0); + $221 = tempRet0; + $222 = (_i64Add(($220|0),($221|0),($164|0),($165|0))|0); + $223 = tempRet0; + $224 = (_i64Add(($222|0),($223|0),($154|0),($155|0))|0); + $225 = tempRet0; + $226 = (_i64Add(($84|0),($85|0),($104|0),($105|0))|0); + $227 = tempRet0; + $228 = (_i64Add(($226|0),($227|0),($54|0),($55|0))|0); + $229 = tempRet0; + $230 = (_i64Add(($228|0),($229|0),($178|0),($179|0))|0); + $231 = tempRet0; + $232 = (_i64Add(($230|0),($231|0),($174|0),($175|0))|0); + $233 = tempRet0; + $234 = (_i64Add(($232|0),($233|0),($166|0),($167|0))|0); + $235 = tempRet0; + $236 = (_i64Add(($86|0),($87|0),($108|0),($109|0))|0); + $237 = tempRet0; + $238 = (_i64Add(($236|0),($237|0),($58|0),($59|0))|0); + $239 = tempRet0; + $240 = (_i64Add(($238|0),($239|0),($180|0),($181|0))|0); + $241 = tempRet0; + $242 = (_i64Add(($240|0),($241|0),($176|0),($177|0))|0); + $243 = tempRet0; + $244 = (_i64Add(($124|0),($125|0),($110|0),($111|0))|0); + $245 = tempRet0; + $246 = (_i64Add(($244|0),($245|0),($90|0),($91|0))|0); + $247 = tempRet0; + $248 = (_i64Add(($246|0),($247|0),($62|0),($63|0))|0); + $249 = tempRet0; + $250 = (_i64Add(($248|0),($249|0),($184|0),($185|0))|0); + $251 = tempRet0; + $252 = (_i64Add(($250|0),($251|0),($182|0),($183|0))|0); + $253 = tempRet0; + $254 = (_i64Add(($112|0),($113|0),($126|0),($127|0))|0); + $255 = tempRet0; + $256 = (_i64Add(($254|0),($255|0),($92|0),($93|0))|0); + $257 = tempRet0; + $258 = (_i64Add(($256|0),($257|0),($66|0),($67|0))|0); + $259 = tempRet0; + $260 = (_i64Add(($258|0),($259|0),($186|0),($187|0))|0); + $261 = tempRet0; + $262 = (_i64Add(($114|0),($115|0),($140|0),($141|0))|0); + $263 = tempRet0; + $264 = (_i64Add(($262|0),($263|0),($128|0),($129|0))|0); + $265 = tempRet0; + $266 = (_i64Add(($264|0),($265|0),($96|0),($97|0))|0); + $267 = tempRet0; + $268 = (_i64Add(($266|0),($267|0),($70|0),($71|0))|0); + $269 = tempRet0; + $270 = (_i64Add(($268|0),($269|0),($188|0),($189|0))|0); + $271 = tempRet0; + $272 = (_i64Add(($130|0),($131|0),($144|0),($145|0))|0); + $273 = tempRet0; + $274 = (_i64Add(($272|0),($273|0),($116|0),($117|0))|0); + $275 = tempRet0; + $276 = (_i64Add(($274|0),($275|0),($98|0),($99|0))|0); + $277 = tempRet0; + $278 = (_i64Add(($276|0),($277|0),($74|0),($75|0))|0); + $279 = tempRet0; + $280 = (_bitshift64Shl(($198|0),($199|0),1)|0); + $281 = tempRet0; + $282 = (_bitshift64Shl(($206|0),($207|0),1)|0); + $283 = tempRet0; + $284 = (_bitshift64Shl(($216|0),($217|0),1)|0); + $285 = tempRet0; + $286 = (_bitshift64Shl(($224|0),($225|0),1)|0); + $287 = tempRet0; + $288 = (_bitshift64Shl(($234|0),($235|0),1)|0); + $289 = tempRet0; + $290 = (_bitshift64Shl(($242|0),($243|0),1)|0); + $291 = tempRet0; + $292 = (_bitshift64Shl(($252|0),($253|0),1)|0); + $293 = tempRet0; + $294 = (_bitshift64Shl(($260|0),($261|0),1)|0); + $295 = tempRet0; + $296 = (_bitshift64Shl(($270|0),($271|0),1)|0); + $297 = tempRet0; + $298 = (_bitshift64Shl(($278|0),($279|0),1)|0); + $299 = tempRet0; + $300 = (_i64Add(($280|0),($281|0),33554432,0)|0); + $301 = tempRet0; + $302 = (_bitshift64Ashr(($300|0),($301|0),26)|0); + $303 = tempRet0; + $304 = (_i64Add(($302|0),($303|0),($282|0),($283|0))|0); + $305 = tempRet0; + $306 = (_bitshift64Shl(($302|0),($303|0),26)|0); + $307 = tempRet0; + $308 = (_i64Subtract(($280|0),($281|0),($306|0),($307|0))|0); + $309 = tempRet0; + $310 = (_i64Add(($288|0),($289|0),33554432,0)|0); + $311 = tempRet0; + $312 = (_bitshift64Ashr(($310|0),($311|0),26)|0); + $313 = tempRet0; + $314 = (_i64Add(($312|0),($313|0),($290|0),($291|0))|0); + $315 = tempRet0; + $316 = (_bitshift64Shl(($312|0),($313|0),26)|0); + $317 = tempRet0; + $318 = (_i64Subtract(($288|0),($289|0),($316|0),($317|0))|0); + $319 = tempRet0; + $320 = (_i64Add(($304|0),($305|0),16777216,0)|0); + $321 = tempRet0; + $322 = (_bitshift64Ashr(($320|0),($321|0),25)|0); + $323 = tempRet0; + $324 = (_i64Add(($322|0),($323|0),($284|0),($285|0))|0); + $325 = tempRet0; + $326 = (_bitshift64Shl(($322|0),($323|0),25)|0); + $327 = tempRet0; + $328 = (_i64Subtract(($304|0),($305|0),($326|0),($327|0))|0); + $329 = tempRet0; + $330 = (_i64Add(($314|0),($315|0),16777216,0)|0); + $331 = tempRet0; + $332 = (_bitshift64Ashr(($330|0),($331|0),25)|0); + $333 = tempRet0; + $334 = (_i64Add(($332|0),($333|0),($292|0),($293|0))|0); + $335 = tempRet0; + $336 = (_bitshift64Shl(($332|0),($333|0),25)|0); + $337 = tempRet0; + $338 = (_i64Subtract(($314|0),($315|0),($336|0),($337|0))|0); + $339 = tempRet0; + $340 = (_i64Add(($324|0),($325|0),33554432,0)|0); + $341 = tempRet0; + $342 = (_bitshift64Ashr(($340|0),($341|0),26)|0); + $343 = tempRet0; + $344 = (_i64Add(($342|0),($343|0),($286|0),($287|0))|0); + $345 = tempRet0; + $346 = (_bitshift64Shl(($342|0),($343|0),26)|0); + $347 = tempRet0; + $348 = (_i64Subtract(($324|0),($325|0),($346|0),($347|0))|0); + $349 = tempRet0; + $350 = (_i64Add(($334|0),($335|0),33554432,0)|0); + $351 = tempRet0; + $352 = (_bitshift64Ashr(($350|0),($351|0),26)|0); + $353 = tempRet0; + $354 = (_i64Add(($352|0),($353|0),($294|0),($295|0))|0); + $355 = tempRet0; + $356 = (_bitshift64Shl(($352|0),($353|0),26)|0); + $357 = tempRet0; + $358 = (_i64Subtract(($334|0),($335|0),($356|0),($357|0))|0); + $359 = tempRet0; + $360 = (_i64Add(($344|0),($345|0),16777216,0)|0); + $361 = tempRet0; + $362 = (_bitshift64Ashr(($360|0),($361|0),25)|0); + $363 = tempRet0; + $364 = (_i64Add(($362|0),($363|0),($318|0),($319|0))|0); + $365 = tempRet0; + $366 = (_bitshift64Shl(($362|0),($363|0),25)|0); + $367 = tempRet0; + $368 = (_i64Subtract(($344|0),($345|0),($366|0),($367|0))|0); + $369 = tempRet0; + $370 = (_i64Add(($354|0),($355|0),16777216,0)|0); + $371 = tempRet0; + $372 = (_bitshift64Ashr(($370|0),($371|0),25)|0); + $373 = tempRet0; + $374 = (_i64Add(($372|0),($373|0),($296|0),($297|0))|0); + $375 = tempRet0; + $376 = (_bitshift64Shl(($372|0),($373|0),25)|0); + $377 = tempRet0; + $378 = (_i64Subtract(($354|0),($355|0),($376|0),($377|0))|0); + $379 = tempRet0; + $380 = (_i64Add(($364|0),($365|0),33554432,0)|0); + $381 = tempRet0; + $382 = (_bitshift64Ashr(($380|0),($381|0),26)|0); + $383 = tempRet0; + $384 = (_i64Add(($338|0),($339|0),($382|0),($383|0))|0); + $385 = tempRet0; + $386 = (_bitshift64Shl(($382|0),($383|0),26)|0); + $387 = tempRet0; + $388 = (_i64Subtract(($364|0),($365|0),($386|0),($387|0))|0); + $389 = tempRet0; + $390 = (_i64Add(($374|0),($375|0),33554432,0)|0); + $391 = tempRet0; + $392 = (_bitshift64Ashr(($390|0),($391|0),26)|0); + $393 = tempRet0; + $394 = (_i64Add(($392|0),($393|0),($298|0),($299|0))|0); + $395 = tempRet0; + $396 = (_bitshift64Shl(($392|0),($393|0),26)|0); + $397 = tempRet0; + $398 = (_i64Subtract(($374|0),($375|0),($396|0),($397|0))|0); + $399 = tempRet0; + $400 = (_i64Add(($394|0),($395|0),16777216,0)|0); + $401 = tempRet0; + $402 = (_bitshift64Ashr(($400|0),($401|0),25)|0); + $403 = tempRet0; + $404 = (___muldi3(($402|0),($403|0),19,0)|0); + $405 = tempRet0; + $406 = (_i64Add(($404|0),($405|0),($308|0),($309|0))|0); + $407 = tempRet0; + $408 = (_bitshift64Shl(($402|0),($403|0),25)|0); + $409 = tempRet0; + $410 = (_i64Subtract(($394|0),($395|0),($408|0),($409|0))|0); + $411 = tempRet0; + $412 = (_i64Add(($406|0),($407|0),33554432,0)|0); + $413 = tempRet0; + $414 = (_bitshift64Ashr(($412|0),($413|0),26)|0); + $415 = tempRet0; + $416 = (_i64Add(($328|0),($329|0),($414|0),($415|0))|0); + $417 = tempRet0; + $418 = (_bitshift64Shl(($414|0),($415|0),26)|0); + $419 = tempRet0; + $420 = (_i64Subtract(($406|0),($407|0),($418|0),($419|0))|0); + $421 = tempRet0; + HEAP32[$0>>2] = $420; + $422 = ((($0)) + 4|0); + HEAP32[$422>>2] = $416; + $423 = ((($0)) + 8|0); + HEAP32[$423>>2] = $348; + $424 = ((($0)) + 12|0); + HEAP32[$424>>2] = $368; + $425 = ((($0)) + 16|0); + HEAP32[$425>>2] = $388; + $426 = ((($0)) + 20|0); + HEAP32[$426>>2] = $384; + $427 = ((($0)) + 24|0); + HEAP32[$427>>2] = $358; + $428 = ((($0)) + 28|0); + HEAP32[$428>>2] = $378; + $429 = ((($0)) + 32|0); + HEAP32[$429>>2] = $398; + $430 = ((($0)) + 36|0); + HEAP32[$430>>2] = $410; + return; +} +function _crypto_sign_ed25519_ref10_fe_sub($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0; + var $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0; + var $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $3 = HEAP32[$1>>2]|0; + $4 = ((($1)) + 4|0); + $5 = HEAP32[$4>>2]|0; + $6 = ((($1)) + 8|0); + $7 = HEAP32[$6>>2]|0; + $8 = ((($1)) + 12|0); + $9 = HEAP32[$8>>2]|0; + $10 = ((($1)) + 16|0); + $11 = HEAP32[$10>>2]|0; + $12 = ((($1)) + 20|0); + $13 = HEAP32[$12>>2]|0; + $14 = ((($1)) + 24|0); + $15 = HEAP32[$14>>2]|0; + $16 = ((($1)) + 28|0); + $17 = HEAP32[$16>>2]|0; + $18 = ((($1)) + 32|0); + $19 = HEAP32[$18>>2]|0; + $20 = ((($1)) + 36|0); + $21 = HEAP32[$20>>2]|0; + $22 = HEAP32[$2>>2]|0; + $23 = ((($2)) + 4|0); + $24 = HEAP32[$23>>2]|0; + $25 = ((($2)) + 8|0); + $26 = HEAP32[$25>>2]|0; + $27 = ((($2)) + 12|0); + $28 = HEAP32[$27>>2]|0; + $29 = ((($2)) + 16|0); + $30 = HEAP32[$29>>2]|0; + $31 = ((($2)) + 20|0); + $32 = HEAP32[$31>>2]|0; + $33 = ((($2)) + 24|0); + $34 = HEAP32[$33>>2]|0; + $35 = ((($2)) + 28|0); + $36 = HEAP32[$35>>2]|0; + $37 = ((($2)) + 32|0); + $38 = HEAP32[$37>>2]|0; + $39 = ((($2)) + 36|0); + $40 = HEAP32[$39>>2]|0; + $41 = (($3) - ($22))|0; + $42 = (($5) - ($24))|0; + $43 = (($7) - ($26))|0; + $44 = (($9) - ($28))|0; + $45 = (($11) - ($30))|0; + $46 = (($13) - ($32))|0; + $47 = (($15) - ($34))|0; + $48 = (($17) - ($36))|0; + $49 = (($19) - ($38))|0; + $50 = (($21) - ($40))|0; + HEAP32[$0>>2] = $41; + $51 = ((($0)) + 4|0); + HEAP32[$51>>2] = $42; + $52 = ((($0)) + 8|0); + HEAP32[$52>>2] = $43; + $53 = ((($0)) + 12|0); + HEAP32[$53>>2] = $44; + $54 = ((($0)) + 16|0); + HEAP32[$54>>2] = $45; + $55 = ((($0)) + 20|0); + HEAP32[$55>>2] = $46; + $56 = ((($0)) + 24|0); + HEAP32[$56>>2] = $47; + $57 = ((($0)) + 28|0); + HEAP32[$57>>2] = $48; + $58 = ((($0)) + 32|0); + HEAP32[$58>>2] = $49; + $59 = ((($0)) + 36|0); + HEAP32[$59>>2] = $50; + return; +} +function _crypto_sign_ed25519_ref10_fe_tobytes($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0; + var $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0; + var $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0; + var $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0; + var $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = HEAP32[$1>>2]|0; + $3 = ((($1)) + 4|0); + $4 = HEAP32[$3>>2]|0; + $5 = ((($1)) + 8|0); + $6 = HEAP32[$5>>2]|0; + $7 = ((($1)) + 12|0); + $8 = HEAP32[$7>>2]|0; + $9 = ((($1)) + 16|0); + $10 = HEAP32[$9>>2]|0; + $11 = ((($1)) + 20|0); + $12 = HEAP32[$11>>2]|0; + $13 = ((($1)) + 24|0); + $14 = HEAP32[$13>>2]|0; + $15 = ((($1)) + 28|0); + $16 = HEAP32[$15>>2]|0; + $17 = ((($1)) + 32|0); + $18 = HEAP32[$17>>2]|0; + $19 = ((($1)) + 36|0); + $20 = HEAP32[$19>>2]|0; + $21 = ($20*19)|0; + $22 = (($21) + 16777216)|0; + $23 = $22 >> 25; + $24 = (($23) + ($2))|0; + $25 = $24 >> 26; + $26 = (($25) + ($4))|0; + $27 = $26 >> 25; + $28 = (($27) + ($6))|0; + $29 = $28 >> 26; + $30 = (($29) + ($8))|0; + $31 = $30 >> 25; + $32 = (($31) + ($10))|0; + $33 = $32 >> 26; + $34 = (($33) + ($12))|0; + $35 = $34 >> 25; + $36 = (($35) + ($14))|0; + $37 = $36 >> 26; + $38 = (($37) + ($16))|0; + $39 = $38 >> 25; + $40 = (($39) + ($18))|0; + $41 = $40 >> 26; + $42 = (($41) + ($20))|0; + $43 = $42 >> 25; + $44 = ($43*19)|0; + $45 = (($44) + ($2))|0; + $46 = $45 >> 26; + $47 = (($46) + ($4))|0; + $48 = $46 << 26; + $49 = (($45) - ($48))|0; + $50 = $47 >> 25; + $51 = (($50) + ($6))|0; + $52 = $50 << 25; + $53 = (($47) - ($52))|0; + $54 = $51 >> 26; + $55 = (($54) + ($8))|0; + $56 = $54 << 26; + $57 = (($51) - ($56))|0; + $58 = $55 >> 25; + $59 = (($58) + ($10))|0; + $60 = $58 << 25; + $61 = (($55) - ($60))|0; + $62 = $59 >> 26; + $63 = (($62) + ($12))|0; + $64 = $62 << 26; + $65 = (($59) - ($64))|0; + $66 = $63 >> 25; + $67 = (($66) + ($14))|0; + $68 = $66 << 25; + $69 = (($63) - ($68))|0; + $70 = $67 >> 26; + $71 = (($70) + ($16))|0; + $72 = $70 << 26; + $73 = (($67) - ($72))|0; + $74 = $71 >> 25; + $75 = (($74) + ($18))|0; + $76 = $74 << 25; + $77 = (($71) - ($76))|0; + $78 = $75 >> 26; + $79 = (($78) + ($20))|0; + $80 = $78 << 26; + $81 = (($75) - ($80))|0; + $82 = $79 & 33554431; + $83 = $49&255; + HEAP8[$0>>0] = $83; + $84 = $49 >>> 8; + $85 = $84&255; + $86 = ((($0)) + 1|0); + HEAP8[$86>>0] = $85; + $87 = $49 >>> 16; + $88 = $87&255; + $89 = ((($0)) + 2|0); + HEAP8[$89>>0] = $88; + $90 = $49 >>> 24; + $91 = $53 << 2; + $92 = $91 | $90; + $93 = $92&255; + $94 = ((($0)) + 3|0); + HEAP8[$94>>0] = $93; + $95 = $53 >>> 6; + $96 = $95&255; + $97 = ((($0)) + 4|0); + HEAP8[$97>>0] = $96; + $98 = $53 >>> 14; + $99 = $98&255; + $100 = ((($0)) + 5|0); + HEAP8[$100>>0] = $99; + $101 = $53 >>> 22; + $102 = $57 << 3; + $103 = $102 | $101; + $104 = $103&255; + $105 = ((($0)) + 6|0); + HEAP8[$105>>0] = $104; + $106 = $57 >>> 5; + $107 = $106&255; + $108 = ((($0)) + 7|0); + HEAP8[$108>>0] = $107; + $109 = $57 >>> 13; + $110 = $109&255; + $111 = ((($0)) + 8|0); + HEAP8[$111>>0] = $110; + $112 = $57 >>> 21; + $113 = $61 << 5; + $114 = $113 | $112; + $115 = $114&255; + $116 = ((($0)) + 9|0); + HEAP8[$116>>0] = $115; + $117 = $61 >>> 3; + $118 = $117&255; + $119 = ((($0)) + 10|0); + HEAP8[$119>>0] = $118; + $120 = $61 >>> 11; + $121 = $120&255; + $122 = ((($0)) + 11|0); + HEAP8[$122>>0] = $121; + $123 = $61 >>> 19; + $124 = $65 << 6; + $125 = $124 | $123; + $126 = $125&255; + $127 = ((($0)) + 12|0); + HEAP8[$127>>0] = $126; + $128 = $65 >>> 2; + $129 = $128&255; + $130 = ((($0)) + 13|0); + HEAP8[$130>>0] = $129; + $131 = $65 >>> 10; + $132 = $131&255; + $133 = ((($0)) + 14|0); + HEAP8[$133>>0] = $132; + $134 = $65 >>> 18; + $135 = $134&255; + $136 = ((($0)) + 15|0); + HEAP8[$136>>0] = $135; + $137 = $69&255; + $138 = ((($0)) + 16|0); + HEAP8[$138>>0] = $137; + $139 = $69 >>> 8; + $140 = $139&255; + $141 = ((($0)) + 17|0); + HEAP8[$141>>0] = $140; + $142 = $69 >>> 16; + $143 = $142&255; + $144 = ((($0)) + 18|0); + HEAP8[$144>>0] = $143; + $145 = $69 >>> 24; + $146 = $73 << 1; + $147 = $146 | $145; + $148 = $147&255; + $149 = ((($0)) + 19|0); + HEAP8[$149>>0] = $148; + $150 = $73 >>> 7; + $151 = $150&255; + $152 = ((($0)) + 20|0); + HEAP8[$152>>0] = $151; + $153 = $73 >>> 15; + $154 = $153&255; + $155 = ((($0)) + 21|0); + HEAP8[$155>>0] = $154; + $156 = $73 >>> 23; + $157 = $77 << 3; + $158 = $157 | $156; + $159 = $158&255; + $160 = ((($0)) + 22|0); + HEAP8[$160>>0] = $159; + $161 = $77 >>> 5; + $162 = $161&255; + $163 = ((($0)) + 23|0); + HEAP8[$163>>0] = $162; + $164 = $77 >>> 13; + $165 = $164&255; + $166 = ((($0)) + 24|0); + HEAP8[$166>>0] = $165; + $167 = $77 >>> 21; + $168 = $81 << 4; + $169 = $168 | $167; + $170 = $169&255; + $171 = ((($0)) + 25|0); + HEAP8[$171>>0] = $170; + $172 = $81 >>> 4; + $173 = $172&255; + $174 = ((($0)) + 26|0); + HEAP8[$174>>0] = $173; + $175 = $81 >>> 12; + $176 = $175&255; + $177 = ((($0)) + 27|0); + HEAP8[$177>>0] = $176; + $178 = $81 >>> 20; + $179 = $82 << 6; + $180 = $178 | $179; + $181 = $180&255; + $182 = ((($0)) + 28|0); + HEAP8[$182>>0] = $181; + $183 = $79 >>> 2; + $184 = $183&255; + $185 = ((($0)) + 29|0); + HEAP8[$185>>0] = $184; + $186 = $79 >>> 10; + $187 = $186&255; + $188 = ((($0)) + 30|0); + HEAP8[$188>>0] = $187; + $189 = $82 >>> 18; + $190 = $189&255; + $191 = ((($0)) + 31|0); + HEAP8[$191>>0] = $190; + return; +} +function _crypto_sign_ed25519_ref10_ge_add($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $3 = sp; + $4 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($0,$4,$1); + $5 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($5,$4,$1); + $6 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($6,$0,$2); + $7 = ((($2)) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($5,$5,$7); + $8 = ((($0)) + 120|0); + $9 = ((($2)) + 120|0); + $10 = ((($1)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($8,$9,$10); + $11 = ((($1)) + 80|0); + $12 = ((($2)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($0,$11,$12); + _crypto_sign_ed25519_ref10_fe_add($3,$0,$0); + _crypto_sign_ed25519_ref10_fe_sub($0,$6,$5); + _crypto_sign_ed25519_ref10_fe_add($5,$6,$5); + _crypto_sign_ed25519_ref10_fe_add($6,$3,$8); + _crypto_sign_ed25519_ref10_fe_sub($8,$3,$8); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_double_scalarmult_vartime($0,$1,$2,$3) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + var $$0$lcssa = 0, $$022 = 0, $$121 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0; + var $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 2272|0; + $4 = sp + 2016|0; + $5 = sp + 1760|0; + $6 = sp + 480|0; + $7 = sp + 320|0; + $8 = sp + 160|0; + $9 = sp; + _slide($4,$1); + _slide($5,$3); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($6,$2); + _crypto_sign_ed25519_ref10_ge_p3_dbl($7,$2); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($9,$7); + _crypto_sign_ed25519_ref10_ge_add($7,$9,$6); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $10 = ((($6)) + 160|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($10,$8); + _crypto_sign_ed25519_ref10_ge_add($7,$9,$10); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $11 = ((($6)) + 320|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($11,$8); + _crypto_sign_ed25519_ref10_ge_add($7,$9,$11); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $12 = ((($6)) + 480|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($12,$8); + _crypto_sign_ed25519_ref10_ge_add($7,$9,$12); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $13 = ((($6)) + 640|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($13,$8); + _crypto_sign_ed25519_ref10_ge_add($7,$9,$13); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $14 = ((($6)) + 800|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($14,$8); + _crypto_sign_ed25519_ref10_ge_add($7,$9,$14); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $15 = ((($6)) + 960|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($15,$8); + _crypto_sign_ed25519_ref10_ge_add($7,$9,$15); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $16 = ((($6)) + 1120|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($16,$8); + _crypto_sign_ed25519_ref10_ge_p2_0($0); + $$022 = 255; + while(1) { + $17 = (($4) + ($$022)|0); + $18 = HEAP8[$17>>0]|0; + $19 = ($18<<24>>24)==(0); + if (!($19)) { + $$0$lcssa = $$022; + break; + } + $20 = (($5) + ($$022)|0); + $21 = HEAP8[$20>>0]|0; + $22 = ($21<<24>>24)==(0); + if (!($22)) { + $$0$lcssa = $$022; + break; + } + $24 = (($$022) + -1)|0; + $25 = ($$022|0)>(0); + if ($25) { + $$022 = $24; + } else { + $$0$lcssa = $24; + break; + } + } + $23 = ($$0$lcssa|0)>(-1); + if ($23) { + $$121 = $$0$lcssa; + } else { + STACKTOP = sp;return; + } + while(1) { + _crypto_sign_ed25519_ref10_ge_p2_dbl($7,$0); + $26 = (($4) + ($$121)|0); + $27 = HEAP8[$26>>0]|0; + $28 = ($27<<24>>24)>(0); + if ($28) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $29 = HEAP8[$26>>0]|0; + $30 = (($29<<24>>24) / 2)&-1; + $31 = $30 << 24 >> 24; + $32 = (($6) + (($31*160)|0)|0); + _crypto_sign_ed25519_ref10_ge_add($7,$8,$32); + } else { + $33 = ($27<<24>>24)<(0); + if ($33) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $34 = HEAP8[$26>>0]|0; + $35 = (($34<<24>>24) / -2)&-1; + $36 = $35 << 24 >> 24; + $37 = (($6) + (($36*160)|0)|0); + _crypto_sign_ed25519_ref10_ge_sub($7,$8,$37); + } + } + $38 = (($5) + ($$121)|0); + $39 = HEAP8[$38>>0]|0; + $40 = ($39<<24>>24)>(0); + if ($40) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $41 = HEAP8[$38>>0]|0; + $42 = (($41<<24>>24) / 2)&-1; + $43 = $42 << 24 >> 24; + $44 = (712 + (($43*120)|0)|0); + _crypto_sign_ed25519_ref10_ge_madd($7,$8,$44); + } else { + $45 = ($39<<24>>24)<(0); + if ($45) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $46 = HEAP8[$38>>0]|0; + $47 = (($46<<24>>24) / -2)&-1; + $48 = $47 << 24 >> 24; + $49 = (712 + (($48*120)|0)|0); + _crypto_sign_ed25519_ref10_ge_msub($7,$8,$49); + } + } + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($0,$7); + $50 = (($$121) + -1)|0; + $51 = ($$121|0)>(0); + if ($51) { + $$121 = $50; + } else { + break; + } + } + STACKTOP = sp;return; +} +function _slide($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$05559 = 0, $$05663 = 0, $$058 = 0, $$160 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0; + var $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0; + var $exitcond = 0, $exitcond65 = 0, label = 0, sp = 0; + sp = STACKTOP; + $$05663 = 0; + while(1) { + $2 = $$05663 >> 3; + $3 = (($1) + ($2)|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = $$05663 & 7; + $7 = $5 >>> $6; + $8 = $7 & 1; + $9 = $8&255; + $10 = (($0) + ($$05663)|0); + HEAP8[$10>>0] = $9; + $11 = (($$05663) + 1)|0; + $exitcond65 = ($11|0)==(256); + if ($exitcond65) { + $$160 = 0; + break; + } else { + $$05663 = $11; + } + } + while(1) { + $12 = (($0) + ($$160)|0); + $13 = HEAP8[$12>>0]|0; + $14 = ($13<<24>>24)==(0); + L5: do { + if (!($14)) { + $$05559 = 1; + while(1) { + $15 = (($$05559) + ($$160))|0; + $16 = ($15|0)<(256); + if (!($16)) { + break L5; + } + $17 = (($0) + ($15)|0); + $18 = HEAP8[$17>>0]|0; + $19 = ($18<<24>>24)==(0); + L9: do { + if (!($19)) { + $20 = HEAP8[$12>>0]|0; + $21 = $20 << 24 >> 24; + $22 = $18 << 24 >> 24; + $23 = $22 << $$05559; + $24 = (($21) + ($23))|0; + $25 = ($24|0)<(16); + if ($25) { + $26 = $24&255; + HEAP8[$12>>0] = $26; + HEAP8[$17>>0] = 0; + break; + } + $27 = (($21) - ($23))|0; + $28 = ($27|0)>(-16); + if (!($28)) { + break L5; + } + $29 = $27&255; + HEAP8[$12>>0] = $29; + $$058 = $15; + while(1) { + $30 = (($0) + ($$058)|0); + $31 = HEAP8[$30>>0]|0; + $32 = ($31<<24>>24)==(0); + if ($32) { + break; + } + HEAP8[$30>>0] = 0; + $33 = (($$058) + 1)|0; + $34 = ($33|0)<(256); + if ($34) { + $$058 = $33; + } else { + break L9; + } + } + HEAP8[$30>>0] = 1; + } + } while(0); + $35 = (($$05559) + 1)|0; + $36 = ($35|0)<(7); + if ($36) { + $$05559 = $35; + } else { + break; + } + } + } + } while(0); + $37 = (($$160) + 1)|0; + $exitcond = ($37|0)==(256); + if ($exitcond) { + break; + } else { + $$160 = $37; + } + } + return; +} +function _crypto_sign_ed25519_ref10_ge_frombytes_negate_vartime($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$0 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0; + var sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 208|0; + $2 = sp + 160|0; + $3 = sp + 120|0; + $4 = sp + 80|0; + $5 = sp + 40|0; + $6 = sp; + $7 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_frombytes($7,$1); + $8 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_1($8); + _crypto_sign_ed25519_ref10_fe_sq($2,$7); + _crypto_sign_ed25519_ref10_fe_mul($3,$2,1672); + _crypto_sign_ed25519_ref10_fe_sub($2,$2,$8); + _crypto_sign_ed25519_ref10_fe_add($3,$3,$8); + _crypto_sign_ed25519_ref10_fe_sq($4,$3); + _crypto_sign_ed25519_ref10_fe_mul($4,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($0,$4); + _crypto_sign_ed25519_ref10_fe_mul($0,$0,$3); + _crypto_sign_ed25519_ref10_fe_mul($0,$0,$2); + _crypto_sign_ed25519_ref10_fe_pow22523($0,$0); + _crypto_sign_ed25519_ref10_fe_mul($0,$0,$4); + _crypto_sign_ed25519_ref10_fe_mul($0,$0,$2); + _crypto_sign_ed25519_ref10_fe_sq($5,$0); + _crypto_sign_ed25519_ref10_fe_mul($5,$5,$3); + _crypto_sign_ed25519_ref10_fe_sub($6,$5,$2); + $9 = (_crypto_sign_ed25519_ref10_fe_isnonzero($6)|0); + $10 = ($9|0)==(0); + do { + if (!($10)) { + _crypto_sign_ed25519_ref10_fe_add($6,$5,$2); + $11 = (_crypto_sign_ed25519_ref10_fe_isnonzero($6)|0); + $12 = ($11|0)==(0); + if ($12) { + _crypto_sign_ed25519_ref10_fe_mul($0,$0,1712); + break; + } else { + $$0 = -1; + STACKTOP = sp;return ($$0|0); + } + } + } while(0); + $13 = (_crypto_sign_ed25519_ref10_fe_isnegative($0)|0); + $14 = ((($1)) + 31|0); + $15 = HEAP8[$14>>0]|0; + $16 = $15&255; + $17 = $16 >>> 7; + $18 = ($13|0)==($17|0); + if ($18) { + _crypto_sign_ed25519_ref10_fe_neg($0,$0); + } + $19 = ((($0)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($19,$0,$7); + $$0 = 0; + STACKTOP = sp;return ($$0|0); +} +function _crypto_sign_ed25519_ref10_ge_madd($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $3 = sp; + $4 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($0,$4,$1); + $5 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($5,$4,$1); + $6 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($6,$0,$2); + $7 = ((($2)) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($5,$5,$7); + $8 = ((($0)) + 120|0); + $9 = ((($2)) + 80|0); + $10 = ((($1)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($8,$9,$10); + $11 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_add($3,$11,$11); + _crypto_sign_ed25519_ref10_fe_sub($0,$6,$5); + _crypto_sign_ed25519_ref10_fe_add($5,$6,$5); + _crypto_sign_ed25519_ref10_fe_add($6,$3,$8); + _crypto_sign_ed25519_ref10_fe_sub($8,$3,$8); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_msub($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $3 = sp; + $4 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($0,$4,$1); + $5 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($5,$4,$1); + $6 = ((($0)) + 80|0); + $7 = ((($2)) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($6,$0,$7); + _crypto_sign_ed25519_ref10_fe_mul($5,$5,$2); + $8 = ((($0)) + 120|0); + $9 = ((($2)) + 80|0); + $10 = ((($1)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($8,$9,$10); + $11 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_add($3,$11,$11); + _crypto_sign_ed25519_ref10_fe_sub($0,$6,$5); + _crypto_sign_ed25519_ref10_fe_add($5,$6,$5); + _crypto_sign_ed25519_ref10_fe_sub($6,$3,$8); + _crypto_sign_ed25519_ref10_fe_add($8,$3,$8); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = ((($1)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($0,$1,$2); + $3 = ((($0)) + 40|0); + $4 = ((($1)) + 40|0); + $5 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($3,$4,$5); + $6 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($6,$5,$2); + return; +} +function _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = ((($1)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($0,$1,$2); + $3 = ((($0)) + 40|0); + $4 = ((($1)) + 40|0); + $5 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($3,$4,$5); + $6 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($6,$5,$2); + $7 = ((($0)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($7,$1,$4); + return; +} +function _crypto_sign_ed25519_ref10_ge_p2_0($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, label = 0, sp = 0; + sp = STACKTOP; + _crypto_sign_ed25519_ref10_fe_0($0); + $1 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_1($1); + $2 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_1($2); + return; +} +function _crypto_sign_ed25519_ref10_ge_p2_dbl($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $2 = sp; + _crypto_sign_ed25519_ref10_fe_sq($0,$1); + $3 = ((($0)) + 80|0); + $4 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_sq($3,$4); + $5 = ((($0)) + 120|0); + $6 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_sq2($5,$6); + $7 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($7,$1,$4); + _crypto_sign_ed25519_ref10_fe_sq($2,$7); + _crypto_sign_ed25519_ref10_fe_add($7,$3,$0); + _crypto_sign_ed25519_ref10_fe_sub($3,$3,$0); + _crypto_sign_ed25519_ref10_fe_sub($0,$2,$7); + _crypto_sign_ed25519_ref10_fe_sub($5,$5,$3); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p3_0($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, $3 = 0, label = 0, sp = 0; + sp = STACKTOP; + _crypto_sign_ed25519_ref10_fe_0($0); + $1 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_1($1); + $2 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_1($2); + $3 = ((($0)) + 120|0); + _crypto_sign_ed25519_ref10_fe_0($3); + return; +} +function _crypto_sign_ed25519_ref10_ge_p3_dbl($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 128|0; + $2 = sp; + _crypto_sign_ed25519_ref10_ge_p3_to_p2($2,$1); + _crypto_sign_ed25519_ref10_ge_p2_dbl($0,$2); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p3_to_cached($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($0,$2,$1); + $3 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($3,$2,$1); + $4 = ((($0)) + 80|0); + $5 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_copy($4,$5); + $6 = ((($0)) + 120|0); + $7 = ((($1)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($6,$7,1752); + return; +} +function _crypto_sign_ed25519_ref10_ge_p3_to_p2($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, label = 0, sp = 0; + sp = STACKTOP; + _crypto_sign_ed25519_ref10_fe_copy($0,$1); + $2 = ((($0)) + 40|0); + $3 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_copy($2,$3); + $4 = ((($0)) + 80|0); + $5 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_copy($4,$5); + return; +} +function _crypto_sign_ed25519_ref10_ge_p3_tobytes($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 128|0; + $2 = sp + 80|0; + $3 = sp + 40|0; + $4 = sp; + $5 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_invert($2,$5); + _crypto_sign_ed25519_ref10_fe_mul($3,$1,$2); + $6 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$6,$2); + _crypto_sign_ed25519_ref10_fe_tobytes($0,$4); + $7 = (_crypto_sign_ed25519_ref10_fe_isnegative($3)|0); + $8 = $7 << 7; + $9 = ((($0)) + 31|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = $11 ^ $8; + $13 = $12&255; + HEAP8[$9>>0] = $13; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_precomp_0($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, label = 0, sp = 0; + sp = STACKTOP; + _crypto_sign_ed25519_ref10_fe_1($0); + $1 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_1($1); + $2 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_0($2); + return; +} +function _crypto_sign_ed25519_ref10_ge_scalarmult_base($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$03135 = 0, $$037 = 0, $$136 = 0, $$234 = 0, $$333 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0; + var $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; + var $8 = 0, $9 = 0, $exitcond = 0, $exitcond38 = 0, $sext = 0, $sext32 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 464|0; + $2 = sp + 400|0; + $3 = sp + 240|0; + $4 = sp + 120|0; + $5 = sp; + $$037 = 0; + while(1) { + $6 = (($1) + ($$037)|0); + $7 = HEAP8[$6>>0]|0; + $8 = $7 & 15; + $9 = $$037 << 1; + $10 = (($2) + ($9)|0); + HEAP8[$10>>0] = $8; + $11 = ($7&255) >>> 4; + $12 = $9 | 1; + $13 = (($2) + ($12)|0); + HEAP8[$13>>0] = $11; + $14 = (($$037) + 1)|0; + $exitcond38 = ($14|0)==(32); + if ($exitcond38) { + $$03135 = 0;$$136 = 0; + break; + } else { + $$037 = $14; + } + } + while(1) { + $15 = (($2) + ($$136)|0); + $16 = HEAP8[$15>>0]|0; + $17 = $16&255; + $18 = (($17) + ($$03135))|0; + $sext = $18 << 24; + $sext32 = (($sext) + 134217728)|0; + $19 = $sext32 >> 28; + $20 = $19 << 4; + $21 = (($18) - ($20))|0; + $22 = $21&255; + HEAP8[$15>>0] = $22; + $23 = (($$136) + 1)|0; + $exitcond = ($23|0)==(63); + if ($exitcond) { + break; + } else { + $$03135 = $19;$$136 = $23; + } + } + $24 = ((($2)) + 63|0); + $25 = HEAP8[$24>>0]|0; + $26 = $25&255; + $27 = (($26) + ($19))|0; + $28 = $27&255; + HEAP8[$24>>0] = $28; + _crypto_sign_ed25519_ref10_ge_p3_0($0); + $$234 = 1; + while(1) { + $29 = (($$234|0) / 2)&-1; + $30 = (($2) + ($$234)|0); + $31 = HEAP8[$30>>0]|0; + _select_60($5,$29,$31); + _crypto_sign_ed25519_ref10_ge_madd($3,$0,$5); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($0,$3); + $32 = (($$234) + 2)|0; + $33 = ($32|0)<(64); + if ($33) { + $$234 = $32; + } else { + break; + } + } + _crypto_sign_ed25519_ref10_ge_p3_dbl($3,$0); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($4,$3); + _crypto_sign_ed25519_ref10_ge_p2_dbl($3,$4); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($4,$3); + _crypto_sign_ed25519_ref10_ge_p2_dbl($3,$4); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($4,$3); + _crypto_sign_ed25519_ref10_ge_p2_dbl($3,$4); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($0,$3); + $$333 = 0; + while(1) { + $34 = (($$333|0) / 2)&-1; + $35 = (($2) + ($$333)|0); + $36 = HEAP8[$35>>0]|0; + _select_60($5,$34,$36); + _crypto_sign_ed25519_ref10_ge_madd($3,$0,$5); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($0,$3); + $37 = (($$333) + 2)|0; + $38 = ($37|0)<(64); + if ($38) { + $$333 = $37; + } else { + break; + } + } + STACKTOP = sp;return; +} +function _select_60($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0; + var $3 = 0, $30 = 0, $31 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 128|0; + $3 = sp; + $4 = (_negative($2)|0); + $5 = $2 << 24 >> 24; + $6 = $4&255; + $7 = (0 - ($6))|0; + $8 = $5 & $7; + $9 = $8 << 1; + $10 = (($5) - ($9))|0; + $11 = $10&255; + _crypto_sign_ed25519_ref10_ge_precomp_0($0); + $12 = (1792 + (($1*960)|0)|0); + $13 = (_equal($11,1)|0); + _cmov($0,$12,$13); + $14 = (((1792 + (($1*960)|0)|0)) + 120|0); + $15 = (_equal($11,2)|0); + _cmov($0,$14,$15); + $16 = (((1792 + (($1*960)|0)|0)) + 240|0); + $17 = (_equal($11,3)|0); + _cmov($0,$16,$17); + $18 = (((1792 + (($1*960)|0)|0)) + 360|0); + $19 = (_equal($11,4)|0); + _cmov($0,$18,$19); + $20 = (((1792 + (($1*960)|0)|0)) + 480|0); + $21 = (_equal($11,5)|0); + _cmov($0,$20,$21); + $22 = (((1792 + (($1*960)|0)|0)) + 600|0); + $23 = (_equal($11,6)|0); + _cmov($0,$22,$23); + $24 = (((1792 + (($1*960)|0)|0)) + 720|0); + $25 = (_equal($11,7)|0); + _cmov($0,$24,$25); + $26 = (((1792 + (($1*960)|0)|0)) + 840|0); + $27 = (_equal($11,8)|0); + _cmov($0,$26,$27); + $28 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_copy($3,$28); + $29 = ((($3)) + 40|0); + _crypto_sign_ed25519_ref10_fe_copy($29,$0); + $30 = ((($3)) + 80|0); + $31 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_neg($30,$31); + _cmov($0,$3,$4); + STACKTOP = sp;return; +} +function _negative($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, label = 0, sp = 0; + sp = STACKTOP; + $1 = $0 << 24 >> 24; + $2 = ($1|0)<(0); + $3 = $2 << 31 >> 31; + $4 = (_bitshift64Lshr(($1|0),($3|0),63)|0); + $5 = tempRet0; + $6 = $4&255; + return ($6|0); +} +function _equal($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = $1 ^ $0; + $3 = $2&255; + $4 = (($3) + -1)|0; + $5 = $4 >>> 31; + $6 = $5&255; + return ($6|0); +} +function _cmov($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; + sp = STACKTOP; + $3 = $2&255; + _crypto_sign_ed25519_ref10_fe_cmov($0,$1,$3); + $4 = ((($0)) + 40|0); + $5 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_cmov($4,$5,$3); + $6 = ((($0)) + 80|0); + $7 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_cmov($6,$7,$3); return; } -function _load_347($in) { - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_sub($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP8[$in>>0]|0; - $1 = $0&255; - $2 = ((($in)) + 1|0); - $3 = HEAP8[$2>>0]|0; - $4 = $3&255; - $5 = (_bitshift64Shl(($4|0),0,8)|0); - $6 = tempRet0; - $7 = $5 | $1; - $8 = ((($in)) + 2|0); - $9 = HEAP8[$8>>0]|0; - $10 = $9&255; - $11 = (_bitshift64Shl(($10|0),0,16)|0); - $12 = tempRet0; - $13 = $7 | $11; - $14 = $6 | $12; - tempRet0 = ($14); - return ($13|0); + STACKTOP = STACKTOP + 48|0; + $3 = sp; + $4 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($0,$4,$1); + $5 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($5,$4,$1); + $6 = ((($0)) + 80|0); + $7 = ((($2)) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($6,$0,$7); + _crypto_sign_ed25519_ref10_fe_mul($5,$5,$2); + $8 = ((($0)) + 120|0); + $9 = ((($2)) + 120|0); + $10 = ((($1)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($8,$9,$10); + $11 = ((($1)) + 80|0); + $12 = ((($2)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($0,$11,$12); + _crypto_sign_ed25519_ref10_fe_add($3,$0,$0); + _crypto_sign_ed25519_ref10_fe_sub($0,$6,$5); + _crypto_sign_ed25519_ref10_fe_add($5,$6,$5); + _crypto_sign_ed25519_ref10_fe_sub($6,$3,$8); + _crypto_sign_ed25519_ref10_fe_add($8,$3,$8); + STACKTOP = sp;return; } -function _load_448($in) { - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; - var $8 = 0, $9 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_tobytes($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP8[$in>>0]|0; - $1 = $0&255; - $2 = ((($in)) + 1|0); - $3 = HEAP8[$2>>0]|0; - $4 = $3&255; - $5 = (_bitshift64Shl(($4|0),0,8)|0); - $6 = tempRet0; - $7 = $5 | $1; - $8 = ((($in)) + 2|0); - $9 = HEAP8[$8>>0]|0; - $10 = $9&255; - $11 = (_bitshift64Shl(($10|0),0,16)|0); - $12 = tempRet0; - $13 = $7 | $11; - $14 = $6 | $12; - $15 = ((($in)) + 3|0); - $16 = HEAP8[$15>>0]|0; - $17 = $16&255; - $18 = (_bitshift64Shl(($17|0),0,24)|0); - $19 = tempRet0; - $20 = $13 | $18; - $21 = $14 | $19; - tempRet0 = ($21); - return ($20|0); + STACKTOP = STACKTOP + 128|0; + $2 = sp + 80|0; + $3 = sp + 40|0; + $4 = sp; + $5 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_invert($2,$5); + _crypto_sign_ed25519_ref10_fe_mul($3,$1,$2); + $6 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$6,$2); + _crypto_sign_ed25519_ref10_fe_tobytes($0,$4); + $7 = (_crypto_sign_ed25519_ref10_fe_isnegative($3)|0); + $8 = $7 << 7; + $9 = ((($0)) + 31|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = $11 ^ $8; + $13 = $12&255; + HEAP8[$9>>0] = $13; + STACKTOP = sp;return; } -function _crypto_sign_ed25519_ref10_sc_reduce($s) { - $s = $s|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; - var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0; - var $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0; - var $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0; - var $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0; - var $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0; - var $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0; - var $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0; - var $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0; - var $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0; - var $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0; - var $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0; - var $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0; - var $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0; - var $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0; - var $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0; - var $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0; - var $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0; - var $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0; - var $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0; - var $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0; - var $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0; - var $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0; - var $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0; - var $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0; - var $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0; - var $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0; - var $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0; - var $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0; - var $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0; - var $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0; - var $636 = 0, $637 = 0, $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0; - var $654 = 0, $655 = 0, $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0; - var $672 = 0, $673 = 0, $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0; - var $690 = 0, $691 = 0, $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0; - var $708 = 0, $709 = 0, $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0; - var $726 = 0, $727 = 0, $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0; - var $744 = 0, $745 = 0, $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0; - var $762 = 0, $763 = 0, $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0; - var $780 = 0, $781 = 0, $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0; - var $799 = 0, $8 = 0, $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0; - var $816 = 0, $817 = 0, $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0; - var $834 = 0, $835 = 0, $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0; - var $852 = 0, $853 = 0, $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0; - var $870 = 0, $871 = 0, $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0; - var $889 = 0, $89 = 0, $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0; - var $906 = 0, $907 = 0, $908 = 0, $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0; - var $924 = 0, $925 = 0, $926 = 0, $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0; - var $942 = 0, $943 = 0, $944 = 0, $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0; - var $960 = 0, $961 = 0, $962 = 0, $963 = 0, $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0; - var $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0; - var $997 = 0, $998 = 0, $999 = 0, label = 0, sp = 0; +function _crypto_sign_edwards25519sha512batch_ref10_open($0,$1,$2,$3,$4,$5) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + $4 = $4|0; + $5 = $5|0; + var $$0 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 480|0; + $6 = sp + 440|0; + $7 = sp + 408|0; + $8 = sp + 376|0; + $9 = sp + 312|0; + $10 = sp + 280|0; + $11 = sp + 120|0; + $12 = sp; + $13 = ($4>>>0)<(0); + $14 = ($3>>>0)<(64); + $15 = ($4|0)==(0); + $16 = $15 & $14; + $17 = $13 | $16; + if (!($17)) { + $18 = ((($2)) + 63|0); + $19 = HEAP8[$18>>0]|0; + $20 = ($19&255)>(31); + if (!($20)) { + $21 = (_crypto_sign_ed25519_ref10_ge_frombytes_negate_vartime($11,$5)|0); + $22 = ($21|0)==(0); + if ($22) { + dest=$6; src=$5; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + dest=$7; src=$2; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $23 = ((($2)) + 32|0); + dest=$8; src=$23; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _memmove(($0|0),($2|0),($3|0))|0; + $24 = ((($0)) + 32|0); + dest=$24; src=$6; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + (_crypto_hash_sha512_ref($9,$0,$3,$4)|0); + _crypto_sign_ed25519_ref10_sc_reduce($9); + _crypto_sign_ed25519_ref10_ge_double_scalarmult_vartime($12,$9,$11,$8); + _crypto_sign_ed25519_ref10_ge_tobytes($10,$12); + $25 = (_crypto_verify_32_ref($10,$7)|0); + $26 = ($25|0)==(0); + if ($26) { + $27 = ((($0)) + 64|0); + $28 = (_i64Add(($3|0),($4|0),-64,-1)|0); + $29 = tempRet0; + _memmove(($0|0),($27|0),($28|0))|0; + $30 = (($0) + ($3)|0); + $31 = ((($30)) + -64|0); + dest=$31; stop=dest+64|0; do { HEAP8[dest>>0]=0|0; dest=dest+1|0; } while ((dest|0) < (stop|0)); + $32 = $1; + $33 = $32; + HEAP32[$33>>2] = $28; + $34 = (($32) + 4)|0; + $35 = $34; + HEAP32[$35>>2] = $29; + $$0 = 0; + STACKTOP = sp;return ($$0|0); + } + } + } + } + $36 = $1; + $37 = $36; + HEAP32[$37>>2] = -1; + $38 = (($36) + 4)|0; + $39 = $38; + HEAP32[$39>>2] = -1; + _memset(($0|0),0,($3|0))|0; + $$0 = -1; + STACKTOP = sp;return ($$0|0); +} +function _crypto_sign_ed25519_ref10_sc_muladd($0,$1,$2,$3) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + var $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0, $1015 = 0, $1016 = 0; + var $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0, $1033 = 0, $1034 = 0; + var $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0, $1051 = 0, $1052 = 0; + var $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0, $107 = 0, $1070 = 0; + var $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0, $1088 = 0, $1089 = 0; + var $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0, $1105 = 0, $1106 = 0; + var $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $1119 = 0, $112 = 0, $1120 = 0, $1121 = 0, $1122 = 0, $1123 = 0, $1124 = 0; + var $1125 = 0, $1126 = 0, $1127 = 0, $1128 = 0, $1129 = 0, $113 = 0, $1130 = 0, $1131 = 0, $1132 = 0, $1133 = 0, $1134 = 0, $1135 = 0, $1136 = 0, $1137 = 0, $1138 = 0, $1139 = 0, $114 = 0, $1140 = 0, $1141 = 0, $1142 = 0; + var $1143 = 0, $1144 = 0, $1145 = 0, $1146 = 0, $1147 = 0, $1148 = 0, $1149 = 0, $115 = 0, $1150 = 0, $1151 = 0, $1152 = 0, $1153 = 0, $1154 = 0, $1155 = 0, $1156 = 0, $1157 = 0, $1158 = 0, $1159 = 0, $116 = 0, $1160 = 0; + var $1161 = 0, $1162 = 0, $1163 = 0, $1164 = 0, $1165 = 0, $1166 = 0, $1167 = 0, $1168 = 0, $1169 = 0, $117 = 0, $1170 = 0, $1171 = 0, $1172 = 0, $1173 = 0, $1174 = 0, $1175 = 0, $1176 = 0, $1177 = 0, $1178 = 0, $1179 = 0; + var $118 = 0, $1180 = 0, $1181 = 0, $1182 = 0, $1183 = 0, $1184 = 0, $1185 = 0, $1186 = 0, $1187 = 0, $1188 = 0, $1189 = 0, $119 = 0, $1190 = 0, $1191 = 0, $1192 = 0, $1193 = 0, $1194 = 0, $1195 = 0, $1196 = 0, $1197 = 0; + var $1198 = 0, $1199 = 0, $12 = 0, $120 = 0, $1200 = 0, $1201 = 0, $1202 = 0, $1203 = 0, $1204 = 0, $1205 = 0, $1206 = 0, $1207 = 0, $1208 = 0, $1209 = 0, $121 = 0, $1210 = 0, $1211 = 0, $1212 = 0, $1213 = 0, $1214 = 0; + var $1215 = 0, $1216 = 0, $1217 = 0, $1218 = 0, $1219 = 0, $122 = 0, $1220 = 0, $1221 = 0, $1222 = 0, $1223 = 0, $1224 = 0, $1225 = 0, $1226 = 0, $1227 = 0, $1228 = 0, $1229 = 0, $123 = 0, $1230 = 0, $1231 = 0, $1232 = 0; + var $1233 = 0, $1234 = 0, $1235 = 0, $1236 = 0, $1237 = 0, $1238 = 0, $1239 = 0, $124 = 0, $1240 = 0, $1241 = 0, $1242 = 0, $1243 = 0, $1244 = 0, $1245 = 0, $1246 = 0, $1247 = 0, $1248 = 0, $1249 = 0, $125 = 0, $1250 = 0; + var $1251 = 0, $1252 = 0, $1253 = 0, $1254 = 0, $1255 = 0, $1256 = 0, $1257 = 0, $1258 = 0, $1259 = 0, $126 = 0, $1260 = 0, $1261 = 0, $1262 = 0, $1263 = 0, $1264 = 0, $1265 = 0, $1266 = 0, $1267 = 0, $1268 = 0, $1269 = 0; + var $127 = 0, $1270 = 0, $1271 = 0, $1272 = 0, $1273 = 0, $1274 = 0, $1275 = 0, $1276 = 0, $1277 = 0, $1278 = 0, $1279 = 0, $128 = 0, $1280 = 0, $1281 = 0, $1282 = 0, $1283 = 0, $1284 = 0, $1285 = 0, $1286 = 0, $1287 = 0; + var $1288 = 0, $1289 = 0, $129 = 0, $1290 = 0, $1291 = 0, $1292 = 0, $1293 = 0, $1294 = 0, $1295 = 0, $1296 = 0, $1297 = 0, $1298 = 0, $1299 = 0, $13 = 0, $130 = 0, $1300 = 0, $1301 = 0, $1302 = 0, $1303 = 0, $1304 = 0; + var $1305 = 0, $1306 = 0, $1307 = 0, $1308 = 0, $1309 = 0, $131 = 0, $1310 = 0, $1311 = 0, $1312 = 0, $1313 = 0, $1314 = 0, $1315 = 0, $1316 = 0, $1317 = 0, $1318 = 0, $1319 = 0, $132 = 0, $1320 = 0, $1321 = 0, $1322 = 0; + var $1323 = 0, $1324 = 0, $1325 = 0, $1326 = 0, $1327 = 0, $1328 = 0, $1329 = 0, $133 = 0, $1330 = 0, $1331 = 0, $1332 = 0, $1333 = 0, $1334 = 0, $1335 = 0, $1336 = 0, $1337 = 0, $1338 = 0, $1339 = 0, $134 = 0, $1340 = 0; + var $1341 = 0, $1342 = 0, $1343 = 0, $1344 = 0, $1345 = 0, $1346 = 0, $1347 = 0, $1348 = 0, $1349 = 0, $135 = 0, $1350 = 0, $1351 = 0, $1352 = 0, $1353 = 0, $1354 = 0, $1355 = 0, $1356 = 0, $1357 = 0, $1358 = 0, $1359 = 0; + var $136 = 0, $1360 = 0, $1361 = 0, $1362 = 0, $1363 = 0, $1364 = 0, $1365 = 0, $1366 = 0, $1367 = 0, $1368 = 0, $1369 = 0, $137 = 0, $1370 = 0, $1371 = 0, $1372 = 0, $1373 = 0, $1374 = 0, $1375 = 0, $1376 = 0, $1377 = 0; + var $1378 = 0, $1379 = 0, $138 = 0, $1380 = 0, $1381 = 0, $1382 = 0, $1383 = 0, $1384 = 0, $1385 = 0, $1386 = 0, $1387 = 0, $1388 = 0, $1389 = 0, $139 = 0, $1390 = 0, $1391 = 0, $1392 = 0, $1393 = 0, $1394 = 0, $1395 = 0; + var $1396 = 0, $1397 = 0, $1398 = 0, $1399 = 0, $14 = 0, $140 = 0, $1400 = 0, $1401 = 0, $1402 = 0, $1403 = 0, $1404 = 0, $1405 = 0, $1406 = 0, $1407 = 0, $1408 = 0, $1409 = 0, $141 = 0, $1410 = 0, $1411 = 0, $1412 = 0; + var $1413 = 0, $1414 = 0, $1415 = 0, $1416 = 0, $1417 = 0, $1418 = 0, $1419 = 0, $142 = 0, $1420 = 0, $1421 = 0, $1422 = 0, $1423 = 0, $1424 = 0, $1425 = 0, $1426 = 0, $1427 = 0, $1428 = 0, $1429 = 0, $143 = 0, $1430 = 0; + var $1431 = 0, $1432 = 0, $1433 = 0, $1434 = 0, $1435 = 0, $1436 = 0, $1437 = 0, $1438 = 0, $1439 = 0, $144 = 0, $1440 = 0, $1441 = 0, $1442 = 0, $1443 = 0, $1444 = 0, $1445 = 0, $1446 = 0, $1447 = 0, $1448 = 0, $1449 = 0; + var $145 = 0, $1450 = 0, $1451 = 0, $1452 = 0, $1453 = 0, $1454 = 0, $1455 = 0, $1456 = 0, $1457 = 0, $1458 = 0, $1459 = 0, $146 = 0, $1460 = 0, $1461 = 0, $1462 = 0, $1463 = 0, $1464 = 0, $1465 = 0, $1466 = 0, $1467 = 0; + var $1468 = 0, $1469 = 0, $147 = 0, $1470 = 0, $1471 = 0, $1472 = 0, $1473 = 0, $1474 = 0, $1475 = 0, $1476 = 0, $1477 = 0, $1478 = 0, $1479 = 0, $148 = 0, $1480 = 0, $1481 = 0, $1482 = 0, $1483 = 0, $1484 = 0, $1485 = 0; + var $1486 = 0, $1487 = 0, $1488 = 0, $1489 = 0, $149 = 0, $1490 = 0, $1491 = 0, $1492 = 0, $1493 = 0, $1494 = 0, $1495 = 0, $1496 = 0, $1497 = 0, $1498 = 0, $1499 = 0, $15 = 0, $150 = 0, $1500 = 0, $1501 = 0, $1502 = 0; + var $1503 = 0, $1504 = 0, $1505 = 0, $1506 = 0, $1507 = 0, $1508 = 0, $1509 = 0, $151 = 0, $1510 = 0, $1511 = 0, $1512 = 0, $1513 = 0, $1514 = 0, $1515 = 0, $1516 = 0, $1517 = 0, $1518 = 0, $1519 = 0, $152 = 0, $1520 = 0; + var $1521 = 0, $1522 = 0, $1523 = 0, $1524 = 0, $1525 = 0, $1526 = 0, $1527 = 0, $1528 = 0, $1529 = 0, $153 = 0, $1530 = 0, $1531 = 0, $1532 = 0, $1533 = 0, $1534 = 0, $1535 = 0, $1536 = 0, $1537 = 0, $1538 = 0, $1539 = 0; + var $154 = 0, $1540 = 0, $1541 = 0, $1542 = 0, $1543 = 0, $1544 = 0, $1545 = 0, $1546 = 0, $1547 = 0, $1548 = 0, $1549 = 0, $155 = 0, $1550 = 0, $1551 = 0, $1552 = 0, $1553 = 0, $1554 = 0, $1555 = 0, $1556 = 0, $1557 = 0; + var $1558 = 0, $1559 = 0, $156 = 0, $1560 = 0, $1561 = 0, $1562 = 0, $1563 = 0, $1564 = 0, $1565 = 0, $1566 = 0, $1567 = 0, $1568 = 0, $1569 = 0, $157 = 0, $1570 = 0, $1571 = 0, $1572 = 0, $1573 = 0, $1574 = 0, $1575 = 0; + var $1576 = 0, $1577 = 0, $1578 = 0, $1579 = 0, $158 = 0, $1580 = 0, $1581 = 0, $1582 = 0, $1583 = 0, $1584 = 0, $1585 = 0, $1586 = 0, $1587 = 0, $1588 = 0, $1589 = 0, $159 = 0, $1590 = 0, $1591 = 0, $1592 = 0, $1593 = 0; + var $1594 = 0, $1595 = 0, $1596 = 0, $1597 = 0, $1598 = 0, $1599 = 0, $16 = 0, $160 = 0, $1600 = 0, $1601 = 0, $1602 = 0, $1603 = 0, $1604 = 0, $1605 = 0, $1606 = 0, $1607 = 0, $1608 = 0, $1609 = 0, $161 = 0, $1610 = 0; + var $1611 = 0, $1612 = 0, $1613 = 0, $1614 = 0, $1615 = 0, $1616 = 0, $1617 = 0, $1618 = 0, $1619 = 0, $162 = 0, $1620 = 0, $1621 = 0, $1622 = 0, $1623 = 0, $1624 = 0, $1625 = 0, $1626 = 0, $1627 = 0, $1628 = 0, $1629 = 0; + var $163 = 0, $1630 = 0, $1631 = 0, $1632 = 0, $1633 = 0, $1634 = 0, $1635 = 0, $1636 = 0, $1637 = 0, $1638 = 0, $1639 = 0, $164 = 0, $1640 = 0, $1641 = 0, $1642 = 0, $1643 = 0, $1644 = 0, $1645 = 0, $1646 = 0, $1647 = 0; + var $1648 = 0, $1649 = 0, $165 = 0, $1650 = 0, $1651 = 0, $1652 = 0, $1653 = 0, $1654 = 0, $1655 = 0, $1656 = 0, $1657 = 0, $1658 = 0, $1659 = 0, $166 = 0, $1660 = 0, $1661 = 0, $1662 = 0, $1663 = 0, $1664 = 0, $1665 = 0; + var $1666 = 0, $1667 = 0, $1668 = 0, $1669 = 0, $167 = 0, $1670 = 0, $1671 = 0, $1672 = 0, $1673 = 0, $1674 = 0, $1675 = 0, $1676 = 0, $1677 = 0, $1678 = 0, $1679 = 0, $168 = 0, $1680 = 0, $1681 = 0, $1682 = 0, $1683 = 0; + var $1684 = 0, $1685 = 0, $1686 = 0, $1687 = 0, $1688 = 0, $1689 = 0, $169 = 0, $1690 = 0, $1691 = 0, $1692 = 0, $1693 = 0, $1694 = 0, $1695 = 0, $1696 = 0, $1697 = 0, $1698 = 0, $1699 = 0, $17 = 0, $170 = 0, $1700 = 0; + var $1701 = 0, $1702 = 0, $1703 = 0, $1704 = 0, $1705 = 0, $1706 = 0, $1707 = 0, $1708 = 0, $1709 = 0, $171 = 0, $1710 = 0, $1711 = 0, $1712 = 0, $1713 = 0, $1714 = 0, $1715 = 0, $1716 = 0, $1717 = 0, $1718 = 0, $1719 = 0; + var $172 = 0, $1720 = 0, $1721 = 0, $1722 = 0, $1723 = 0, $1724 = 0, $1725 = 0, $1726 = 0, $1727 = 0, $1728 = 0, $1729 = 0, $173 = 0, $1730 = 0, $1731 = 0, $1732 = 0, $1733 = 0, $1734 = 0, $1735 = 0, $1736 = 0, $1737 = 0; + var $1738 = 0, $1739 = 0, $174 = 0, $1740 = 0, $1741 = 0, $1742 = 0, $1743 = 0, $1744 = 0, $1745 = 0, $1746 = 0, $1747 = 0, $1748 = 0, $1749 = 0, $175 = 0, $1750 = 0, $1751 = 0, $1752 = 0, $1753 = 0, $1754 = 0, $1755 = 0; + var $1756 = 0, $1757 = 0, $1758 = 0, $1759 = 0, $176 = 0, $1760 = 0, $1761 = 0, $1762 = 0, $1763 = 0, $1764 = 0, $1765 = 0, $1766 = 0, $1767 = 0, $1768 = 0, $1769 = 0, $177 = 0, $1770 = 0, $1771 = 0, $1772 = 0, $1773 = 0; + var $1774 = 0, $1775 = 0, $1776 = 0, $1777 = 0, $1778 = 0, $1779 = 0, $178 = 0, $1780 = 0, $1781 = 0, $1782 = 0, $1783 = 0, $1784 = 0, $1785 = 0, $1786 = 0, $1787 = 0, $1788 = 0, $1789 = 0, $179 = 0, $1790 = 0, $1791 = 0; + var $1792 = 0, $1793 = 0, $1794 = 0, $1795 = 0, $1796 = 0, $1797 = 0, $1798 = 0, $1799 = 0, $18 = 0, $180 = 0, $1800 = 0, $1801 = 0, $1802 = 0, $1803 = 0, $1804 = 0, $1805 = 0, $1806 = 0, $1807 = 0, $1808 = 0, $1809 = 0; + var $181 = 0, $1810 = 0, $1811 = 0, $1812 = 0, $1813 = 0, $1814 = 0, $1815 = 0, $1816 = 0, $1817 = 0, $1818 = 0, $1819 = 0, $182 = 0, $1820 = 0, $1821 = 0, $1822 = 0, $1823 = 0, $1824 = 0, $1825 = 0, $1826 = 0, $1827 = 0; + var $1828 = 0, $1829 = 0, $183 = 0, $1830 = 0, $1831 = 0, $1832 = 0, $1833 = 0, $1834 = 0, $1835 = 0, $1836 = 0, $1837 = 0, $1838 = 0, $1839 = 0, $184 = 0, $1840 = 0, $1841 = 0, $1842 = 0, $1843 = 0, $1844 = 0, $1845 = 0; + var $1846 = 0, $1847 = 0, $1848 = 0, $1849 = 0, $185 = 0, $1850 = 0, $1851 = 0, $1852 = 0, $1853 = 0, $1854 = 0, $1855 = 0, $1856 = 0, $1857 = 0, $1858 = 0, $1859 = 0, $186 = 0, $1860 = 0, $1861 = 0, $1862 = 0, $1863 = 0; + var $1864 = 0, $1865 = 0, $1866 = 0, $1867 = 0, $1868 = 0, $1869 = 0, $187 = 0, $1870 = 0, $1871 = 0, $1872 = 0, $1873 = 0, $1874 = 0, $1875 = 0, $1876 = 0, $1877 = 0, $1878 = 0, $1879 = 0, $188 = 0, $1880 = 0, $1881 = 0; + var $1882 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; + var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; + var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; + var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; + var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; + var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; + var $297 = 0, $298 = 0, $299 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0; + var $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0; + var $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0; + var $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0; + var $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0; + var $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0; + var $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0; + var $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0; + var $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0; + var $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0; + var $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0; + var $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0; + var $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0; + var $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0; + var $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0; + var $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0; + var $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0; + var $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0; + var $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0; + var $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0; + var $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0; + var $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0; + var $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0; + var $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0; + var $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0; + var $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0; + var $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0; + var $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0; + var $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0; + var $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0; + var $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0; + var $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0; + var $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0; + var $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0; + var $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0; + var $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0; + var $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0; + var $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0; + var $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, label = 0; + var sp = 0; sp = STACKTOP; - $0 = (_load_351($s)|0); - $1 = tempRet0; - $2 = $0 & 2097151; - $3 = ((($s)) + 2|0); - $4 = (_load_452($3)|0); + $4 = (_load_3_47($1)|0); $5 = tempRet0; - $6 = (_bitshift64Lshr(($4|0),($5|0),5)|0); - $7 = tempRet0; - $8 = $6 & 2097151; - $9 = ((($s)) + 5|0); - $10 = (_load_351($9)|0); + $6 = $4 & 2097151; + $7 = ((($1)) + 2|0); + $8 = (_load_4_48($7)|0); + $9 = tempRet0; + $10 = (_bitshift64Lshr(($8|0),($9|0),5)|0); $11 = tempRet0; - $12 = (_bitshift64Lshr(($10|0),($11|0),2)|0); - $13 = tempRet0; - $14 = $12 & 2097151; - $15 = ((($s)) + 7|0); - $16 = (_load_452($15)|0); + $12 = $10 & 2097151; + $13 = ((($1)) + 5|0); + $14 = (_load_3_47($13)|0); + $15 = tempRet0; + $16 = (_bitshift64Lshr(($14|0),($15|0),2)|0); $17 = tempRet0; - $18 = (_bitshift64Lshr(($16|0),($17|0),7)|0); - $19 = tempRet0; - $20 = $18 & 2097151; - $21 = ((($s)) + 10|0); - $22 = (_load_452($21)|0); + $18 = $16 & 2097151; + $19 = ((($1)) + 7|0); + $20 = (_load_4_48($19)|0); + $21 = tempRet0; + $22 = (_bitshift64Lshr(($20|0),($21|0),7)|0); $23 = tempRet0; - $24 = (_bitshift64Lshr(($22|0),($23|0),4)|0); - $25 = tempRet0; - $26 = $24 & 2097151; - $27 = ((($s)) + 13|0); - $28 = (_load_351($27)|0); + $24 = $22 & 2097151; + $25 = ((($1)) + 10|0); + $26 = (_load_4_48($25)|0); + $27 = tempRet0; + $28 = (_bitshift64Lshr(($26|0),($27|0),4)|0); $29 = tempRet0; - $30 = (_bitshift64Lshr(($28|0),($29|0),1)|0); - $31 = tempRet0; - $32 = $30 & 2097151; - $33 = ((($s)) + 15|0); - $34 = (_load_452($33)|0); + $30 = $28 & 2097151; + $31 = ((($1)) + 13|0); + $32 = (_load_3_47($31)|0); + $33 = tempRet0; + $34 = (_bitshift64Lshr(($32|0),($33|0),1)|0); $35 = tempRet0; - $36 = (_bitshift64Lshr(($34|0),($35|0),6)|0); - $37 = tempRet0; - $38 = $36 & 2097151; - $39 = ((($s)) + 18|0); - $40 = (_load_351($39)|0); + $36 = $34 & 2097151; + $37 = ((($1)) + 15|0); + $38 = (_load_4_48($37)|0); + $39 = tempRet0; + $40 = (_bitshift64Lshr(($38|0),($39|0),6)|0); $41 = tempRet0; - $42 = (_bitshift64Lshr(($40|0),($41|0),3)|0); - $43 = tempRet0; - $44 = $42 & 2097151; - $45 = ((($s)) + 21|0); - $46 = (_load_351($45)|0); + $42 = $40 & 2097151; + $43 = ((($1)) + 18|0); + $44 = (_load_3_47($43)|0); + $45 = tempRet0; + $46 = (_bitshift64Lshr(($44|0),($45|0),3)|0); $47 = tempRet0; $48 = $46 & 2097151; - $49 = ((($s)) + 23|0); - $50 = (_load_452($49)|0); + $49 = ((($1)) + 21|0); + $50 = (_load_3_47($49)|0); $51 = tempRet0; - $52 = (_bitshift64Lshr(($50|0),($51|0),5)|0); - $53 = tempRet0; - $54 = $52 & 2097151; - $55 = ((($s)) + 26|0); - $56 = (_load_351($55)|0); + $52 = $50 & 2097151; + $53 = ((($1)) + 23|0); + $54 = (_load_4_48($53)|0); + $55 = tempRet0; + $56 = (_bitshift64Lshr(($54|0),($55|0),5)|0); $57 = tempRet0; - $58 = (_bitshift64Lshr(($56|0),($57|0),2)|0); - $59 = tempRet0; - $60 = $58 & 2097151; - $61 = ((($s)) + 28|0); - $62 = (_load_452($61)|0); + $58 = $56 & 2097151; + $59 = ((($1)) + 26|0); + $60 = (_load_3_47($59)|0); + $61 = tempRet0; + $62 = (_bitshift64Lshr(($60|0),($61|0),2)|0); $63 = tempRet0; - $64 = (_bitshift64Lshr(($62|0),($63|0),7)|0); - $65 = tempRet0; - $66 = $64 & 2097151; - $67 = ((($s)) + 31|0); - $68 = (_load_452($67)|0); + $64 = $62 & 2097151; + $65 = ((($1)) + 28|0); + $66 = (_load_4_48($65)|0); + $67 = tempRet0; + $68 = (_bitshift64Lshr(($66|0),($67|0),7)|0); $69 = tempRet0; - $70 = (_bitshift64Lshr(($68|0),($69|0),4)|0); + $70 = (_load_3_47($2)|0); $71 = tempRet0; $72 = $70 & 2097151; - $73 = ((($s)) + 34|0); - $74 = (_load_351($73)|0); + $73 = ((($2)) + 2|0); + $74 = (_load_4_48($73)|0); $75 = tempRet0; - $76 = (_bitshift64Lshr(($74|0),($75|0),1)|0); + $76 = (_bitshift64Lshr(($74|0),($75|0),5)|0); $77 = tempRet0; $78 = $76 & 2097151; - $79 = ((($s)) + 36|0); - $80 = (_load_452($79)|0); + $79 = ((($2)) + 5|0); + $80 = (_load_3_47($79)|0); $81 = tempRet0; - $82 = (_bitshift64Lshr(($80|0),($81|0),6)|0); + $82 = (_bitshift64Lshr(($80|0),($81|0),2)|0); $83 = tempRet0; $84 = $82 & 2097151; - $85 = ((($s)) + 39|0); - $86 = (_load_351($85)|0); + $85 = ((($2)) + 7|0); + $86 = (_load_4_48($85)|0); $87 = tempRet0; - $88 = (_bitshift64Lshr(($86|0),($87|0),3)|0); + $88 = (_bitshift64Lshr(($86|0),($87|0),7)|0); $89 = tempRet0; $90 = $88 & 2097151; - $91 = ((($s)) + 42|0); - $92 = (_load_351($91)|0); + $91 = ((($2)) + 10|0); + $92 = (_load_4_48($91)|0); $93 = tempRet0; - $94 = $92 & 2097151; - $95 = ((($s)) + 44|0); - $96 = (_load_452($95)|0); - $97 = tempRet0; - $98 = (_bitshift64Lshr(($96|0),($97|0),5)|0); + $94 = (_bitshift64Lshr(($92|0),($93|0),4)|0); + $95 = tempRet0; + $96 = $94 & 2097151; + $97 = ((($2)) + 13|0); + $98 = (_load_3_47($97)|0); $99 = tempRet0; - $100 = $98 & 2097151; - $101 = ((($s)) + 47|0); - $102 = (_load_351($101)|0); - $103 = tempRet0; - $104 = (_bitshift64Lshr(($102|0),($103|0),2)|0); + $100 = (_bitshift64Lshr(($98|0),($99|0),1)|0); + $101 = tempRet0; + $102 = $100 & 2097151; + $103 = ((($2)) + 15|0); + $104 = (_load_4_48($103)|0); $105 = tempRet0; - $106 = $104 & 2097151; - $107 = ((($s)) + 49|0); - $108 = (_load_452($107)|0); - $109 = tempRet0; - $110 = (_bitshift64Lshr(($108|0),($109|0),7)|0); + $106 = (_bitshift64Lshr(($104|0),($105|0),6)|0); + $107 = tempRet0; + $108 = $106 & 2097151; + $109 = ((($2)) + 18|0); + $110 = (_load_3_47($109)|0); $111 = tempRet0; - $112 = $110 & 2097151; - $113 = ((($s)) + 52|0); - $114 = (_load_452($113)|0); - $115 = tempRet0; - $116 = (_bitshift64Lshr(($114|0),($115|0),4)|0); + $112 = (_bitshift64Lshr(($110|0),($111|0),3)|0); + $113 = tempRet0; + $114 = $112 & 2097151; + $115 = ((($2)) + 21|0); + $116 = (_load_3_47($115)|0); $117 = tempRet0; $118 = $116 & 2097151; - $119 = ((($s)) + 55|0); - $120 = (_load_351($119)|0); + $119 = ((($2)) + 23|0); + $120 = (_load_4_48($119)|0); $121 = tempRet0; - $122 = (_bitshift64Lshr(($120|0),($121|0),1)|0); + $122 = (_bitshift64Lshr(($120|0),($121|0),5)|0); $123 = tempRet0; $124 = $122 & 2097151; - $125 = ((($s)) + 57|0); - $126 = (_load_452($125)|0); + $125 = ((($2)) + 26|0); + $126 = (_load_3_47($125)|0); $127 = tempRet0; - $128 = (_bitshift64Lshr(($126|0),($127|0),6)|0); + $128 = (_bitshift64Lshr(($126|0),($127|0),2)|0); $129 = tempRet0; $130 = $128 & 2097151; - $131 = ((($s)) + 60|0); - $132 = (_load_452($131)|0); + $131 = ((($2)) + 28|0); + $132 = (_load_4_48($131)|0); $133 = tempRet0; - $134 = (_bitshift64Lshr(($132|0),($133|0),3)|0); + $134 = (_bitshift64Lshr(($132|0),($133|0),7)|0); $135 = tempRet0; - $136 = (___muldi3(($134|0),($135|0),666643,0)|0); + $136 = (_load_3_47($3)|0); $137 = tempRet0; - $138 = (_i64Add(($66|0),0,($136|0),($137|0))|0); - $139 = tempRet0; - $140 = (___muldi3(($134|0),($135|0),470296,0)|0); + $138 = $136 & 2097151; + $139 = ((($3)) + 2|0); + $140 = (_load_4_48($139)|0); $141 = tempRet0; - $142 = (_i64Add(($72|0),0,($140|0),($141|0))|0); + $142 = (_bitshift64Lshr(($140|0),($141|0),5)|0); $143 = tempRet0; - $144 = (___muldi3(($134|0),($135|0),654183,0)|0); - $145 = tempRet0; - $146 = (_i64Add(($78|0),0,($144|0),($145|0))|0); + $144 = $142 & 2097151; + $145 = ((($3)) + 5|0); + $146 = (_load_3_47($145)|0); $147 = tempRet0; - $148 = (___muldi3(($134|0),($135|0),-997805,-1)|0); + $148 = (_bitshift64Lshr(($146|0),($147|0),2)|0); $149 = tempRet0; - $150 = (_i64Add(($84|0),0,($148|0),($149|0))|0); - $151 = tempRet0; - $152 = (___muldi3(($134|0),($135|0),136657,0)|0); + $150 = $148 & 2097151; + $151 = ((($3)) + 7|0); + $152 = (_load_4_48($151)|0); $153 = tempRet0; - $154 = (_i64Add(($90|0),0,($152|0),($153|0))|0); + $154 = (_bitshift64Lshr(($152|0),($153|0),7)|0); $155 = tempRet0; - $156 = (___muldi3(($134|0),($135|0),-683901,-1)|0); - $157 = tempRet0; - $158 = (_i64Add(($94|0),0,($156|0),($157|0))|0); + $156 = $154 & 2097151; + $157 = ((($3)) + 10|0); + $158 = (_load_4_48($157)|0); $159 = tempRet0; - $160 = (___muldi3(($130|0),0,666643,0)|0); + $160 = (_bitshift64Lshr(($158|0),($159|0),4)|0); $161 = tempRet0; - $162 = (_i64Add(($60|0),0,($160|0),($161|0))|0); - $163 = tempRet0; - $164 = (___muldi3(($130|0),0,470296,0)|0); + $162 = $160 & 2097151; + $163 = ((($3)) + 13|0); + $164 = (_load_3_47($163)|0); $165 = tempRet0; - $166 = (_i64Add(($164|0),($165|0),($138|0),($139|0))|0); + $166 = (_bitshift64Lshr(($164|0),($165|0),1)|0); $167 = tempRet0; - $168 = (___muldi3(($130|0),0,654183,0)|0); - $169 = tempRet0; - $170 = (_i64Add(($168|0),($169|0),($142|0),($143|0))|0); + $168 = $166 & 2097151; + $169 = ((($3)) + 15|0); + $170 = (_load_4_48($169)|0); $171 = tempRet0; - $172 = (___muldi3(($130|0),0,-997805,-1)|0); + $172 = (_bitshift64Lshr(($170|0),($171|0),6)|0); $173 = tempRet0; - $174 = (_i64Add(($172|0),($173|0),($146|0),($147|0))|0); - $175 = tempRet0; - $176 = (___muldi3(($130|0),0,136657,0)|0); + $174 = $172 & 2097151; + $175 = ((($3)) + 18|0); + $176 = (_load_3_47($175)|0); $177 = tempRet0; - $178 = (_i64Add(($176|0),($177|0),($150|0),($151|0))|0); + $178 = (_bitshift64Lshr(($176|0),($177|0),3)|0); $179 = tempRet0; - $180 = (___muldi3(($130|0),0,-683901,-1)|0); - $181 = tempRet0; - $182 = (_i64Add(($154|0),($155|0),($180|0),($181|0))|0); + $180 = $178 & 2097151; + $181 = ((($3)) + 21|0); + $182 = (_load_3_47($181)|0); $183 = tempRet0; - $184 = (___muldi3(($124|0),0,666643,0)|0); - $185 = tempRet0; - $186 = (_i64Add(($54|0),0,($184|0),($185|0))|0); + $184 = $182 & 2097151; + $185 = ((($3)) + 23|0); + $186 = (_load_4_48($185)|0); $187 = tempRet0; - $188 = (___muldi3(($124|0),0,470296,0)|0); + $188 = (_bitshift64Lshr(($186|0),($187|0),5)|0); $189 = tempRet0; - $190 = (_i64Add(($188|0),($189|0),($162|0),($163|0))|0); - $191 = tempRet0; - $192 = (___muldi3(($124|0),0,654183,0)|0); + $190 = $188 & 2097151; + $191 = ((($3)) + 26|0); + $192 = (_load_3_47($191)|0); $193 = tempRet0; - $194 = (_i64Add(($192|0),($193|0),($166|0),($167|0))|0); + $194 = (_bitshift64Lshr(($192|0),($193|0),2)|0); $195 = tempRet0; - $196 = (___muldi3(($124|0),0,-997805,-1)|0); - $197 = tempRet0; - $198 = (_i64Add(($196|0),($197|0),($170|0),($171|0))|0); + $196 = $194 & 2097151; + $197 = ((($3)) + 28|0); + $198 = (_load_4_48($197)|0); $199 = tempRet0; - $200 = (___muldi3(($124|0),0,136657,0)|0); + $200 = (_bitshift64Lshr(($198|0),($199|0),7)|0); $201 = tempRet0; - $202 = (_i64Add(($200|0),($201|0),($174|0),($175|0))|0); + $202 = (___muldi3(($72|0),0,($6|0),0)|0); $203 = tempRet0; - $204 = (___muldi3(($124|0),0,-683901,-1)|0); + $204 = (_i64Add(($138|0),0,($202|0),($203|0))|0); $205 = tempRet0; - $206 = (_i64Add(($178|0),($179|0),($204|0),($205|0))|0); + $206 = (___muldi3(($78|0),0,($6|0),0)|0); $207 = tempRet0; - $208 = (___muldi3(($118|0),0,666643,0)|0); + $208 = (___muldi3(($72|0),0,($12|0),0)|0); $209 = tempRet0; - $210 = (___muldi3(($118|0),0,470296,0)|0); + $210 = (___muldi3(($84|0),0,($6|0),0)|0); $211 = tempRet0; - $212 = (_i64Add(($210|0),($211|0),($186|0),($187|0))|0); + $212 = (___muldi3(($78|0),0,($12|0),0)|0); $213 = tempRet0; - $214 = (___muldi3(($118|0),0,654183,0)|0); + $214 = (___muldi3(($72|0),0,($18|0),0)|0); $215 = tempRet0; - $216 = (_i64Add(($214|0),($215|0),($190|0),($191|0))|0); + $216 = (_i64Add(($212|0),($213|0),($214|0),($215|0))|0); $217 = tempRet0; - $218 = (___muldi3(($118|0),0,-997805,-1)|0); + $218 = (_i64Add(($216|0),($217|0),($210|0),($211|0))|0); $219 = tempRet0; - $220 = (_i64Add(($218|0),($219|0),($194|0),($195|0))|0); + $220 = (_i64Add(($218|0),($219|0),($150|0),0)|0); $221 = tempRet0; - $222 = (___muldi3(($118|0),0,136657,0)|0); + $222 = (___muldi3(($90|0),0,($6|0),0)|0); $223 = tempRet0; - $224 = (_i64Add(($222|0),($223|0),($198|0),($199|0))|0); + $224 = (___muldi3(($84|0),0,($12|0),0)|0); $225 = tempRet0; - $226 = (___muldi3(($118|0),0,-683901,-1)|0); + $226 = (___muldi3(($78|0),0,($18|0),0)|0); $227 = tempRet0; - $228 = (_i64Add(($202|0),($203|0),($226|0),($227|0))|0); + $228 = (___muldi3(($72|0),0,($24|0),0)|0); $229 = tempRet0; - $230 = (___muldi3(($112|0),0,666643,0)|0); + $230 = (___muldi3(($96|0),0,($6|0),0)|0); $231 = tempRet0; - $232 = (___muldi3(($112|0),0,470296,0)|0); + $232 = (___muldi3(($90|0),0,($12|0),0)|0); $233 = tempRet0; - $234 = (___muldi3(($112|0),0,654183,0)|0); + $234 = (___muldi3(($84|0),0,($18|0),0)|0); $235 = tempRet0; - $236 = (_i64Add(($234|0),($235|0),($212|0),($213|0))|0); + $236 = (___muldi3(($78|0),0,($24|0),0)|0); $237 = tempRet0; - $238 = (___muldi3(($112|0),0,-997805,-1)|0); + $238 = (___muldi3(($72|0),0,($30|0),0)|0); $239 = tempRet0; - $240 = (_i64Add(($216|0),($217|0),($238|0),($239|0))|0); + $240 = (_i64Add(($236|0),($237|0),($238|0),($239|0))|0); $241 = tempRet0; - $242 = (___muldi3(($112|0),0,136657,0)|0); + $242 = (_i64Add(($240|0),($241|0),($234|0),($235|0))|0); $243 = tempRet0; - $244 = (_i64Add(($242|0),($243|0),($220|0),($221|0))|0); + $244 = (_i64Add(($242|0),($243|0),($232|0),($233|0))|0); $245 = tempRet0; - $246 = (___muldi3(($112|0),0,-683901,-1)|0); + $246 = (_i64Add(($244|0),($245|0),($230|0),($231|0))|0); $247 = tempRet0; - $248 = (_i64Add(($224|0),($225|0),($246|0),($247|0))|0); + $248 = (_i64Add(($246|0),($247|0),($162|0),0)|0); $249 = tempRet0; - $250 = (___muldi3(($106|0),0,666643,0)|0); + $250 = (___muldi3(($102|0),0,($6|0),0)|0); $251 = tempRet0; - $252 = (_i64Add(($250|0),($251|0),($38|0),0)|0); + $252 = (___muldi3(($96|0),0,($12|0),0)|0); $253 = tempRet0; - $254 = (___muldi3(($106|0),0,470296,0)|0); + $254 = (___muldi3(($90|0),0,($18|0),0)|0); $255 = tempRet0; - $256 = (___muldi3(($106|0),0,654183,0)|0); + $256 = (___muldi3(($84|0),0,($24|0),0)|0); $257 = tempRet0; - $258 = (_i64Add(($256|0),($257|0),($48|0),0)|0); + $258 = (___muldi3(($78|0),0,($30|0),0)|0); $259 = tempRet0; - $260 = (_i64Add(($258|0),($259|0),($232|0),($233|0))|0); + $260 = (___muldi3(($72|0),0,($36|0),0)|0); $261 = tempRet0; - $262 = (_i64Add(($260|0),($261|0),($208|0),($209|0))|0); + $262 = (___muldi3(($108|0),0,($6|0),0)|0); $263 = tempRet0; - $264 = (___muldi3(($106|0),0,-997805,-1)|0); + $264 = (___muldi3(($102|0),0,($12|0),0)|0); $265 = tempRet0; - $266 = (_i64Add(($236|0),($237|0),($264|0),($265|0))|0); + $266 = (___muldi3(($96|0),0,($18|0),0)|0); $267 = tempRet0; - $268 = (___muldi3(($106|0),0,136657,0)|0); + $268 = (___muldi3(($90|0),0,($24|0),0)|0); $269 = tempRet0; - $270 = (_i64Add(($240|0),($241|0),($268|0),($269|0))|0); + $270 = (___muldi3(($84|0),0,($30|0),0)|0); $271 = tempRet0; - $272 = (___muldi3(($106|0),0,-683901,-1)|0); + $272 = (___muldi3(($78|0),0,($36|0),0)|0); $273 = tempRet0; - $274 = (_i64Add(($244|0),($245|0),($272|0),($273|0))|0); + $274 = (___muldi3(($72|0),0,($42|0),0)|0); $275 = tempRet0; - $276 = (_i64Add(($252|0),($253|0),1048576,0)|0); + $276 = (_i64Add(($272|0),($273|0),($274|0),($275|0))|0); $277 = tempRet0; - $278 = (_bitshift64Lshr(($276|0),($277|0),21)|0); + $278 = (_i64Add(($276|0),($277|0),($270|0),($271|0))|0); $279 = tempRet0; - $280 = (_i64Add(($254|0),($255|0),($44|0),0)|0); + $280 = (_i64Add(($278|0),($279|0),($268|0),($269|0))|0); $281 = tempRet0; - $282 = (_i64Add(($280|0),($281|0),($230|0),($231|0))|0); + $282 = (_i64Add(($280|0),($281|0),($266|0),($267|0))|0); $283 = tempRet0; - $284 = (_i64Add(($282|0),($283|0),($278|0),($279|0))|0); + $284 = (_i64Add(($282|0),($283|0),($264|0),($265|0))|0); $285 = tempRet0; - $286 = (_bitshift64Shl(($278|0),($279|0),21)|0); + $286 = (_i64Add(($284|0),($285|0),($262|0),($263|0))|0); $287 = tempRet0; - $288 = (_i64Subtract(($252|0),($253|0),($286|0),($287|0))|0); + $288 = (_i64Add(($286|0),($287|0),($174|0),0)|0); $289 = tempRet0; - $290 = (_i64Add(($262|0),($263|0),1048576,0)|0); + $290 = (___muldi3(($114|0),0,($6|0),0)|0); $291 = tempRet0; - $292 = (_bitshift64Lshr(($290|0),($291|0),21)|0); + $292 = (___muldi3(($108|0),0,($12|0),0)|0); $293 = tempRet0; - $294 = (_i64Add(($266|0),($267|0),($292|0),($293|0))|0); + $294 = (___muldi3(($102|0),0,($18|0),0)|0); $295 = tempRet0; - $296 = (_bitshift64Shl(($292|0),($293|0),21)|0); + $296 = (___muldi3(($96|0),0,($24|0),0)|0); $297 = tempRet0; - $298 = (_i64Subtract(($262|0),($263|0),($296|0),($297|0))|0); + $298 = (___muldi3(($90|0),0,($30|0),0)|0); $299 = tempRet0; - $300 = (_i64Add(($270|0),($271|0),1048576,0)|0); + $300 = (___muldi3(($84|0),0,($36|0),0)|0); $301 = tempRet0; - $302 = (_bitshift64Ashr(($300|0),($301|0),21)|0); + $302 = (___muldi3(($78|0),0,($42|0),0)|0); $303 = tempRet0; - $304 = (_i64Add(($302|0),($303|0),($274|0),($275|0))|0); + $304 = (___muldi3(($72|0),0,($48|0),0)|0); $305 = tempRet0; - $306 = (_bitshift64Shl(($302|0),($303|0),21)|0); + $306 = (___muldi3(($118|0),0,($6|0),0)|0); $307 = tempRet0; - $308 = (_i64Subtract(($270|0),($271|0),($306|0),($307|0))|0); + $308 = (___muldi3(($114|0),0,($12|0),0)|0); $309 = tempRet0; - $310 = (_i64Add(($248|0),($249|0),1048576,0)|0); + $310 = (___muldi3(($108|0),0,($18|0),0)|0); $311 = tempRet0; - $312 = (_bitshift64Ashr(($310|0),($311|0),21)|0); + $312 = (___muldi3(($102|0),0,($24|0),0)|0); $313 = tempRet0; - $314 = (_i64Add(($312|0),($313|0),($228|0),($229|0))|0); + $314 = (___muldi3(($96|0),0,($30|0),0)|0); $315 = tempRet0; - $316 = (_bitshift64Shl(($312|0),($313|0),21)|0); + $316 = (___muldi3(($90|0),0,($36|0),0)|0); $317 = tempRet0; - $318 = (_i64Subtract(($248|0),($249|0),($316|0),($317|0))|0); + $318 = (___muldi3(($84|0),0,($42|0),0)|0); $319 = tempRet0; - $320 = (_i64Add(($206|0),($207|0),1048576,0)|0); + $320 = (___muldi3(($78|0),0,($48|0),0)|0); $321 = tempRet0; - $322 = (_bitshift64Ashr(($320|0),($321|0),21)|0); + $322 = (___muldi3(($72|0),0,($52|0),0)|0); $323 = tempRet0; - $324 = (_i64Add(($322|0),($323|0),($182|0),($183|0))|0); + $324 = (_i64Add(($320|0),($321|0),($322|0),($323|0))|0); $325 = tempRet0; - $326 = (_bitshift64Shl(($322|0),($323|0),21)|0); + $326 = (_i64Add(($324|0),($325|0),($318|0),($319|0))|0); $327 = tempRet0; - $328 = (_i64Subtract(($206|0),($207|0),($326|0),($327|0))|0); + $328 = (_i64Add(($326|0),($327|0),($316|0),($317|0))|0); $329 = tempRet0; - $330 = (_i64Add(($158|0),($159|0),1048576,0)|0); + $330 = (_i64Add(($328|0),($329|0),($314|0),($315|0))|0); $331 = tempRet0; - $332 = (_bitshift64Ashr(($330|0),($331|0),21)|0); + $332 = (_i64Add(($330|0),($331|0),($312|0),($313|0))|0); $333 = tempRet0; - $334 = (_i64Add(($332|0),($333|0),($100|0),0)|0); + $334 = (_i64Add(($332|0),($333|0),($310|0),($311|0))|0); $335 = tempRet0; - $336 = (_bitshift64Shl(($332|0),($333|0),21)|0); + $336 = (_i64Add(($334|0),($335|0),($306|0),($307|0))|0); $337 = tempRet0; - $338 = (_i64Subtract(($158|0),($159|0),($336|0),($337|0))|0); + $338 = (_i64Add(($336|0),($337|0),($308|0),($309|0))|0); $339 = tempRet0; - $340 = (_i64Add(($284|0),($285|0),1048576,0)|0); + $340 = (_i64Add(($338|0),($339|0),($184|0),0)|0); $341 = tempRet0; - $342 = (_bitshift64Lshr(($340|0),($341|0),21)|0); + $342 = (___muldi3(($124|0),0,($6|0),0)|0); $343 = tempRet0; - $344 = (_i64Add(($342|0),($343|0),($298|0),($299|0))|0); + $344 = (___muldi3(($118|0),0,($12|0),0)|0); $345 = tempRet0; - $346 = (_bitshift64Shl(($342|0),($343|0),21)|0); + $346 = (___muldi3(($114|0),0,($18|0),0)|0); $347 = tempRet0; - $348 = (_i64Subtract(($284|0),($285|0),($346|0),($347|0))|0); + $348 = (___muldi3(($108|0),0,($24|0),0)|0); $349 = tempRet0; - $350 = (_i64Add(($294|0),($295|0),1048576,0)|0); + $350 = (___muldi3(($102|0),0,($30|0),0)|0); $351 = tempRet0; - $352 = (_bitshift64Ashr(($350|0),($351|0),21)|0); + $352 = (___muldi3(($96|0),0,($36|0),0)|0); $353 = tempRet0; - $354 = (_i64Add(($352|0),($353|0),($308|0),($309|0))|0); + $354 = (___muldi3(($90|0),0,($42|0),0)|0); $355 = tempRet0; - $356 = (_bitshift64Shl(($352|0),($353|0),21)|0); + $356 = (___muldi3(($84|0),0,($48|0),0)|0); $357 = tempRet0; - $358 = (_i64Subtract(($294|0),($295|0),($356|0),($357|0))|0); + $358 = (___muldi3(($78|0),0,($52|0),0)|0); $359 = tempRet0; - $360 = (_i64Add(($304|0),($305|0),1048576,0)|0); + $360 = (___muldi3(($72|0),0,($58|0),0)|0); $361 = tempRet0; - $362 = (_bitshift64Ashr(($360|0),($361|0),21)|0); + $362 = (___muldi3(($130|0),0,($6|0),0)|0); $363 = tempRet0; - $364 = (_i64Add(($362|0),($363|0),($318|0),($319|0))|0); + $364 = (___muldi3(($124|0),0,($12|0),0)|0); $365 = tempRet0; - $366 = (_bitshift64Shl(($362|0),($363|0),21)|0); + $366 = (___muldi3(($118|0),0,($18|0),0)|0); $367 = tempRet0; - $368 = (_i64Subtract(($304|0),($305|0),($366|0),($367|0))|0); + $368 = (___muldi3(($114|0),0,($24|0),0)|0); $369 = tempRet0; - $370 = (_i64Add(($314|0),($315|0),1048576,0)|0); + $370 = (___muldi3(($108|0),0,($30|0),0)|0); $371 = tempRet0; - $372 = (_bitshift64Ashr(($370|0),($371|0),21)|0); + $372 = (___muldi3(($102|0),0,($36|0),0)|0); $373 = tempRet0; - $374 = (_i64Add(($372|0),($373|0),($328|0),($329|0))|0); + $374 = (___muldi3(($96|0),0,($42|0),0)|0); $375 = tempRet0; - $376 = (_bitshift64Shl(($372|0),($373|0),21)|0); + $376 = (___muldi3(($90|0),0,($48|0),0)|0); $377 = tempRet0; - $378 = (_i64Subtract(($314|0),($315|0),($376|0),($377|0))|0); + $378 = (___muldi3(($84|0),0,($52|0),0)|0); $379 = tempRet0; - $380 = (_i64Add(($324|0),($325|0),1048576,0)|0); + $380 = (___muldi3(($78|0),0,($58|0),0)|0); $381 = tempRet0; - $382 = (_bitshift64Ashr(($380|0),($381|0),21)|0); + $382 = (___muldi3(($72|0),0,($64|0),0)|0); $383 = tempRet0; - $384 = (_i64Add(($382|0),($383|0),($338|0),($339|0))|0); + $384 = (_i64Add(($380|0),($381|0),($382|0),($383|0))|0); $385 = tempRet0; - $386 = (_bitshift64Shl(($382|0),($383|0),21)|0); + $386 = (_i64Add(($384|0),($385|0),($378|0),($379|0))|0); $387 = tempRet0; - $388 = (_i64Subtract(($324|0),($325|0),($386|0),($387|0))|0); + $388 = (_i64Add(($386|0),($387|0),($376|0),($377|0))|0); $389 = tempRet0; - $390 = (___muldi3(($334|0),($335|0),666643,0)|0); + $390 = (_i64Add(($388|0),($389|0),($374|0),($375|0))|0); $391 = tempRet0; - $392 = (_i64Add(($32|0),0,($390|0),($391|0))|0); + $392 = (_i64Add(($390|0),($391|0),($372|0),($373|0))|0); $393 = tempRet0; - $394 = (___muldi3(($334|0),($335|0),470296,0)|0); + $394 = (_i64Add(($392|0),($393|0),($370|0),($371|0))|0); $395 = tempRet0; - $396 = (_i64Add(($288|0),($289|0),($394|0),($395|0))|0); + $396 = (_i64Add(($394|0),($395|0),($366|0),($367|0))|0); $397 = tempRet0; - $398 = (___muldi3(($334|0),($335|0),654183,0)|0); + $398 = (_i64Add(($396|0),($397|0),($368|0),($369|0))|0); $399 = tempRet0; - $400 = (_i64Add(($348|0),($349|0),($398|0),($399|0))|0); + $400 = (_i64Add(($398|0),($399|0),($364|0),($365|0))|0); $401 = tempRet0; - $402 = (___muldi3(($334|0),($335|0),-997805,-1)|0); + $402 = (_i64Add(($400|0),($401|0),($362|0),($363|0))|0); $403 = tempRet0; - $404 = (_i64Add(($402|0),($403|0),($344|0),($345|0))|0); + $404 = (_i64Add(($402|0),($403|0),($196|0),0)|0); $405 = tempRet0; - $406 = (___muldi3(($334|0),($335|0),136657,0)|0); + $406 = (___muldi3(($134|0),($135|0),($6|0),0)|0); $407 = tempRet0; - $408 = (_i64Add(($406|0),($407|0),($358|0),($359|0))|0); + $408 = (___muldi3(($130|0),0,($12|0),0)|0); $409 = tempRet0; - $410 = (___muldi3(($334|0),($335|0),-683901,-1)|0); + $410 = (___muldi3(($124|0),0,($18|0),0)|0); $411 = tempRet0; - $412 = (_i64Add(($354|0),($355|0),($410|0),($411|0))|0); + $412 = (___muldi3(($118|0),0,($24|0),0)|0); $413 = tempRet0; - $414 = (___muldi3(($384|0),($385|0),666643,0)|0); + $414 = (___muldi3(($114|0),0,($30|0),0)|0); $415 = tempRet0; - $416 = (_i64Add(($26|0),0,($414|0),($415|0))|0); + $416 = (___muldi3(($108|0),0,($36|0),0)|0); $417 = tempRet0; - $418 = (___muldi3(($384|0),($385|0),470296,0)|0); + $418 = (___muldi3(($102|0),0,($42|0),0)|0); $419 = tempRet0; - $420 = (_i64Add(($392|0),($393|0),($418|0),($419|0))|0); + $420 = (___muldi3(($96|0),0,($48|0),0)|0); $421 = tempRet0; - $422 = (___muldi3(($384|0),($385|0),654183,0)|0); + $422 = (___muldi3(($90|0),0,($52|0),0)|0); $423 = tempRet0; - $424 = (_i64Add(($396|0),($397|0),($422|0),($423|0))|0); + $424 = (___muldi3(($84|0),0,($58|0),0)|0); $425 = tempRet0; - $426 = (___muldi3(($384|0),($385|0),-997805,-1)|0); + $426 = (___muldi3(($78|0),0,($64|0),0)|0); $427 = tempRet0; - $428 = (_i64Add(($400|0),($401|0),($426|0),($427|0))|0); + $428 = (___muldi3(($72|0),0,($68|0),($69|0))|0); $429 = tempRet0; - $430 = (___muldi3(($384|0),($385|0),136657,0)|0); + $430 = (___muldi3(($134|0),($135|0),($12|0),0)|0); $431 = tempRet0; - $432 = (_i64Add(($404|0),($405|0),($430|0),($431|0))|0); + $432 = (___muldi3(($130|0),0,($18|0),0)|0); $433 = tempRet0; - $434 = (___muldi3(($384|0),($385|0),-683901,-1)|0); + $434 = (___muldi3(($124|0),0,($24|0),0)|0); $435 = tempRet0; - $436 = (_i64Add(($408|0),($409|0),($434|0),($435|0))|0); + $436 = (___muldi3(($118|0),0,($30|0),0)|0); $437 = tempRet0; - $438 = (___muldi3(($388|0),($389|0),666643,0)|0); + $438 = (___muldi3(($114|0),0,($36|0),0)|0); $439 = tempRet0; - $440 = (_i64Add(($20|0),0,($438|0),($439|0))|0); + $440 = (___muldi3(($108|0),0,($42|0),0)|0); $441 = tempRet0; - $442 = (___muldi3(($388|0),($389|0),470296,0)|0); + $442 = (___muldi3(($102|0),0,($48|0),0)|0); $443 = tempRet0; - $444 = (_i64Add(($416|0),($417|0),($442|0),($443|0))|0); + $444 = (___muldi3(($96|0),0,($52|0),0)|0); $445 = tempRet0; - $446 = (___muldi3(($388|0),($389|0),654183,0)|0); + $446 = (___muldi3(($90|0),0,($58|0),0)|0); $447 = tempRet0; - $448 = (_i64Add(($420|0),($421|0),($446|0),($447|0))|0); + $448 = (___muldi3(($84|0),0,($64|0),0)|0); $449 = tempRet0; - $450 = (___muldi3(($388|0),($389|0),-997805,-1)|0); + $450 = (___muldi3(($78|0),0,($68|0),($69|0))|0); $451 = tempRet0; - $452 = (_i64Add(($424|0),($425|0),($450|0),($451|0))|0); + $452 = (_i64Add(($448|0),($449|0),($450|0),($451|0))|0); $453 = tempRet0; - $454 = (___muldi3(($388|0),($389|0),136657,0)|0); + $454 = (_i64Add(($452|0),($453|0),($446|0),($447|0))|0); $455 = tempRet0; - $456 = (_i64Add(($428|0),($429|0),($454|0),($455|0))|0); + $456 = (_i64Add(($454|0),($455|0),($444|0),($445|0))|0); $457 = tempRet0; - $458 = (___muldi3(($388|0),($389|0),-683901,-1)|0); + $458 = (_i64Add(($456|0),($457|0),($442|0),($443|0))|0); $459 = tempRet0; - $460 = (_i64Add(($432|0),($433|0),($458|0),($459|0))|0); + $460 = (_i64Add(($458|0),($459|0),($440|0),($441|0))|0); $461 = tempRet0; - $462 = (___muldi3(($374|0),($375|0),666643,0)|0); + $462 = (_i64Add(($460|0),($461|0),($436|0),($437|0))|0); $463 = tempRet0; - $464 = (_i64Add(($462|0),($463|0),($14|0),0)|0); + $464 = (_i64Add(($462|0),($463|0),($438|0),($439|0))|0); $465 = tempRet0; - $466 = (___muldi3(($374|0),($375|0),470296,0)|0); + $466 = (_i64Add(($464|0),($465|0),($434|0),($435|0))|0); $467 = tempRet0; - $468 = (_i64Add(($440|0),($441|0),($466|0),($467|0))|0); + $468 = (_i64Add(($466|0),($467|0),($432|0),($433|0))|0); $469 = tempRet0; - $470 = (___muldi3(($374|0),($375|0),654183,0)|0); + $470 = (_i64Add(($468|0),($469|0),($430|0),($431|0))|0); $471 = tempRet0; - $472 = (_i64Add(($444|0),($445|0),($470|0),($471|0))|0); + $472 = (___muldi3(($134|0),($135|0),($18|0),0)|0); $473 = tempRet0; - $474 = (___muldi3(($374|0),($375|0),-997805,-1)|0); + $474 = (___muldi3(($130|0),0,($24|0),0)|0); $475 = tempRet0; - $476 = (_i64Add(($448|0),($449|0),($474|0),($475|0))|0); + $476 = (___muldi3(($124|0),0,($30|0),0)|0); $477 = tempRet0; - $478 = (___muldi3(($374|0),($375|0),136657,0)|0); + $478 = (___muldi3(($118|0),0,($36|0),0)|0); $479 = tempRet0; - $480 = (_i64Add(($452|0),($453|0),($478|0),($479|0))|0); + $480 = (___muldi3(($114|0),0,($42|0),0)|0); $481 = tempRet0; - $482 = (___muldi3(($374|0),($375|0),-683901,-1)|0); + $482 = (___muldi3(($108|0),0,($48|0),0)|0); $483 = tempRet0; - $484 = (_i64Add(($456|0),($457|0),($482|0),($483|0))|0); + $484 = (___muldi3(($102|0),0,($52|0),0)|0); $485 = tempRet0; - $486 = (___muldi3(($378|0),($379|0),666643,0)|0); + $486 = (___muldi3(($96|0),0,($58|0),0)|0); $487 = tempRet0; - $488 = (___muldi3(($378|0),($379|0),470296,0)|0); + $488 = (___muldi3(($90|0),0,($64|0),0)|0); $489 = tempRet0; - $490 = (___muldi3(($378|0),($379|0),654183,0)|0); + $490 = (___muldi3(($84|0),0,($68|0),($69|0))|0); $491 = tempRet0; - $492 = (_i64Add(($468|0),($469|0),($490|0),($491|0))|0); + $492 = (___muldi3(($134|0),($135|0),($24|0),0)|0); $493 = tempRet0; - $494 = (___muldi3(($378|0),($379|0),-997805,-1)|0); + $494 = (___muldi3(($130|0),0,($30|0),0)|0); $495 = tempRet0; - $496 = (_i64Add(($472|0),($473|0),($494|0),($495|0))|0); + $496 = (___muldi3(($124|0),0,($36|0),0)|0); $497 = tempRet0; - $498 = (___muldi3(($378|0),($379|0),136657,0)|0); + $498 = (___muldi3(($118|0),0,($42|0),0)|0); $499 = tempRet0; - $500 = (_i64Add(($476|0),($477|0),($498|0),($499|0))|0); + $500 = (___muldi3(($114|0),0,($48|0),0)|0); $501 = tempRet0; - $502 = (___muldi3(($378|0),($379|0),-683901,-1)|0); + $502 = (___muldi3(($108|0),0,($52|0),0)|0); $503 = tempRet0; - $504 = (_i64Add(($480|0),($481|0),($502|0),($503|0))|0); + $504 = (___muldi3(($102|0),0,($58|0),0)|0); $505 = tempRet0; - $506 = (___muldi3(($364|0),($365|0),666643,0)|0); + $506 = (___muldi3(($96|0),0,($64|0),0)|0); $507 = tempRet0; - $508 = (_i64Add(($506|0),($507|0),($2|0),0)|0); + $508 = (___muldi3(($90|0),0,($68|0),($69|0))|0); $509 = tempRet0; - $510 = (___muldi3(($364|0),($365|0),470296,0)|0); + $510 = (_i64Add(($506|0),($507|0),($508|0),($509|0))|0); $511 = tempRet0; - $512 = (___muldi3(($364|0),($365|0),654183,0)|0); + $512 = (_i64Add(($510|0),($511|0),($504|0),($505|0))|0); $513 = tempRet0; - $514 = (_i64Add(($464|0),($465|0),($512|0),($513|0))|0); + $514 = (_i64Add(($512|0),($513|0),($502|0),($503|0))|0); $515 = tempRet0; - $516 = (_i64Add(($514|0),($515|0),($488|0),($489|0))|0); + $516 = (_i64Add(($514|0),($515|0),($498|0),($499|0))|0); $517 = tempRet0; - $518 = (___muldi3(($364|0),($365|0),-997805,-1)|0); + $518 = (_i64Add(($516|0),($517|0),($500|0),($501|0))|0); $519 = tempRet0; - $520 = (_i64Add(($492|0),($493|0),($518|0),($519|0))|0); + $520 = (_i64Add(($518|0),($519|0),($496|0),($497|0))|0); $521 = tempRet0; - $522 = (___muldi3(($364|0),($365|0),136657,0)|0); + $522 = (_i64Add(($520|0),($521|0),($494|0),($495|0))|0); $523 = tempRet0; - $524 = (_i64Add(($496|0),($497|0),($522|0),($523|0))|0); + $524 = (_i64Add(($522|0),($523|0),($492|0),($493|0))|0); $525 = tempRet0; - $526 = (___muldi3(($364|0),($365|0),-683901,-1)|0); + $526 = (___muldi3(($134|0),($135|0),($30|0),0)|0); $527 = tempRet0; - $528 = (_i64Add(($500|0),($501|0),($526|0),($527|0))|0); + $528 = (___muldi3(($130|0),0,($36|0),0)|0); $529 = tempRet0; - $530 = (_i64Add(($508|0),($509|0),1048576,0)|0); + $530 = (___muldi3(($124|0),0,($42|0),0)|0); $531 = tempRet0; - $532 = (_bitshift64Ashr(($530|0),($531|0),21)|0); + $532 = (___muldi3(($118|0),0,($48|0),0)|0); $533 = tempRet0; - $534 = (_i64Add(($510|0),($511|0),($8|0),0)|0); + $534 = (___muldi3(($114|0),0,($52|0),0)|0); $535 = tempRet0; - $536 = (_i64Add(($534|0),($535|0),($486|0),($487|0))|0); + $536 = (___muldi3(($108|0),0,($58|0),0)|0); $537 = tempRet0; - $538 = (_i64Add(($536|0),($537|0),($532|0),($533|0))|0); + $538 = (___muldi3(($102|0),0,($64|0),0)|0); $539 = tempRet0; - $540 = (_bitshift64Shl(($532|0),($533|0),21)|0); + $540 = (___muldi3(($96|0),0,($68|0),($69|0))|0); $541 = tempRet0; - $542 = (_i64Subtract(($508|0),($509|0),($540|0),($541|0))|0); + $542 = (___muldi3(($134|0),($135|0),($36|0),0)|0); $543 = tempRet0; - $544 = (_i64Add(($516|0),($517|0),1048576,0)|0); + $544 = (___muldi3(($130|0),0,($42|0),0)|0); $545 = tempRet0; - $546 = (_bitshift64Ashr(($544|0),($545|0),21)|0); + $546 = (___muldi3(($124|0),0,($48|0),0)|0); $547 = tempRet0; - $548 = (_i64Add(($546|0),($547|0),($520|0),($521|0))|0); + $548 = (___muldi3(($118|0),0,($52|0),0)|0); $549 = tempRet0; - $550 = (_bitshift64Shl(($546|0),($547|0),21)|0); + $550 = (___muldi3(($114|0),0,($58|0),0)|0); $551 = tempRet0; - $552 = (_i64Add(($524|0),($525|0),1048576,0)|0); + $552 = (___muldi3(($108|0),0,($64|0),0)|0); $553 = tempRet0; - $554 = (_bitshift64Ashr(($552|0),($553|0),21)|0); + $554 = (___muldi3(($102|0),0,($68|0),($69|0))|0); $555 = tempRet0; - $556 = (_i64Add(($554|0),($555|0),($528|0),($529|0))|0); + $556 = (_i64Add(($552|0),($553|0),($554|0),($555|0))|0); $557 = tempRet0; - $558 = (_bitshift64Shl(($554|0),($555|0),21)|0); + $558 = (_i64Add(($556|0),($557|0),($548|0),($549|0))|0); $559 = tempRet0; - $560 = (_i64Add(($504|0),($505|0),1048576,0)|0); + $560 = (_i64Add(($558|0),($559|0),($550|0),($551|0))|0); $561 = tempRet0; - $562 = (_bitshift64Ashr(($560|0),($561|0),21)|0); + $562 = (_i64Add(($560|0),($561|0),($546|0),($547|0))|0); $563 = tempRet0; - $564 = (_i64Add(($562|0),($563|0),($484|0),($485|0))|0); + $564 = (_i64Add(($562|0),($563|0),($544|0),($545|0))|0); $565 = tempRet0; - $566 = (_bitshift64Shl(($562|0),($563|0),21)|0); + $566 = (_i64Add(($564|0),($565|0),($542|0),($543|0))|0); $567 = tempRet0; - $568 = (_i64Subtract(($504|0),($505|0),($566|0),($567|0))|0); + $568 = (___muldi3(($134|0),($135|0),($42|0),0)|0); $569 = tempRet0; - $570 = (_i64Add(($460|0),($461|0),1048576,0)|0); + $570 = (___muldi3(($130|0),0,($48|0),0)|0); $571 = tempRet0; - $572 = (_bitshift64Ashr(($570|0),($571|0),21)|0); + $572 = (___muldi3(($124|0),0,($52|0),0)|0); $573 = tempRet0; - $574 = (_i64Add(($572|0),($573|0),($436|0),($437|0))|0); + $574 = (___muldi3(($118|0),0,($58|0),0)|0); $575 = tempRet0; - $576 = (_bitshift64Shl(($572|0),($573|0),21)|0); + $576 = (___muldi3(($114|0),0,($64|0),0)|0); $577 = tempRet0; - $578 = (_i64Subtract(($460|0),($461|0),($576|0),($577|0))|0); + $578 = (___muldi3(($108|0),0,($68|0),($69|0))|0); $579 = tempRet0; - $580 = (_i64Add(($412|0),($413|0),1048576,0)|0); + $580 = (___muldi3(($134|0),($135|0),($48|0),0)|0); $581 = tempRet0; - $582 = (_bitshift64Ashr(($580|0),($581|0),21)|0); + $582 = (___muldi3(($130|0),0,($52|0),0)|0); $583 = tempRet0; - $584 = (_i64Add(($582|0),($583|0),($368|0),($369|0))|0); + $584 = (___muldi3(($124|0),0,($58|0),0)|0); $585 = tempRet0; - $586 = (_bitshift64Shl(($582|0),($583|0),21)|0); + $586 = (___muldi3(($118|0),0,($64|0),0)|0); $587 = tempRet0; - $588 = (_i64Subtract(($412|0),($413|0),($586|0),($587|0))|0); + $588 = (___muldi3(($114|0),0,($68|0),($69|0))|0); $589 = tempRet0; - $590 = (_i64Add(($538|0),($539|0),1048576,0)|0); + $590 = (_i64Add(($588|0),($589|0),($586|0),($587|0))|0); $591 = tempRet0; - $592 = (_bitshift64Ashr(($590|0),($591|0),21)|0); + $592 = (_i64Add(($590|0),($591|0),($584|0),($585|0))|0); $593 = tempRet0; - $594 = (_bitshift64Shl(($592|0),($593|0),21)|0); + $594 = (_i64Add(($592|0),($593|0),($582|0),($583|0))|0); $595 = tempRet0; - $596 = (_i64Add(($548|0),($549|0),1048576,0)|0); + $596 = (_i64Add(($594|0),($595|0),($580|0),($581|0))|0); $597 = tempRet0; - $598 = (_bitshift64Ashr(($596|0),($597|0),21)|0); + $598 = (___muldi3(($134|0),($135|0),($52|0),0)|0); $599 = tempRet0; - $600 = (_bitshift64Shl(($598|0),($599|0),21)|0); + $600 = (___muldi3(($130|0),0,($58|0),0)|0); $601 = tempRet0; - $602 = (_i64Subtract(($548|0),($549|0),($600|0),($601|0))|0); + $602 = (___muldi3(($124|0),0,($64|0),0)|0); $603 = tempRet0; - $604 = (_i64Add(($556|0),($557|0),1048576,0)|0); + $604 = (___muldi3(($118|0),0,($68|0),($69|0))|0); $605 = tempRet0; - $606 = (_bitshift64Ashr(($604|0),($605|0),21)|0); + $606 = (___muldi3(($134|0),($135|0),($58|0),0)|0); $607 = tempRet0; - $608 = (_i64Add(($568|0),($569|0),($606|0),($607|0))|0); + $608 = (___muldi3(($130|0),0,($64|0),0)|0); $609 = tempRet0; - $610 = (_bitshift64Shl(($606|0),($607|0),21)|0); + $610 = (___muldi3(($124|0),0,($68|0),($69|0))|0); $611 = tempRet0; - $612 = (_i64Subtract(($556|0),($557|0),($610|0),($611|0))|0); + $612 = (_i64Add(($608|0),($609|0),($610|0),($611|0))|0); $613 = tempRet0; - $614 = (_i64Add(($564|0),($565|0),1048576,0)|0); + $614 = (_i64Add(($612|0),($613|0),($606|0),($607|0))|0); $615 = tempRet0; - $616 = (_bitshift64Ashr(($614|0),($615|0),21)|0); + $616 = (___muldi3(($134|0),($135|0),($64|0),0)|0); $617 = tempRet0; - $618 = (_i64Add(($578|0),($579|0),($616|0),($617|0))|0); + $618 = (___muldi3(($130|0),0,($68|0),($69|0))|0); $619 = tempRet0; - $620 = (_bitshift64Shl(($616|0),($617|0),21)|0); + $620 = (_i64Add(($616|0),($617|0),($618|0),($619|0))|0); $621 = tempRet0; - $622 = (_i64Subtract(($564|0),($565|0),($620|0),($621|0))|0); + $622 = (___muldi3(($134|0),($135|0),($68|0),($69|0))|0); $623 = tempRet0; - $624 = (_i64Add(($574|0),($575|0),1048576,0)|0); + $624 = (_i64Add(($204|0),($205|0),1048576,0)|0); $625 = tempRet0; - $626 = (_bitshift64Ashr(($624|0),($625|0),21)|0); + $626 = (_bitshift64Lshr(($624|0),($625|0),21)|0); $627 = tempRet0; - $628 = (_i64Add(($588|0),($589|0),($626|0),($627|0))|0); + $628 = (_i64Add(($206|0),($207|0),($208|0),($209|0))|0); $629 = tempRet0; - $630 = (_bitshift64Shl(($626|0),($627|0),21)|0); + $630 = (_i64Add(($628|0),($629|0),($144|0),0)|0); $631 = tempRet0; - $632 = (_i64Subtract(($574|0),($575|0),($630|0),($631|0))|0); + $632 = (_i64Add(($630|0),($631|0),($626|0),($627|0))|0); $633 = tempRet0; - $634 = (_i64Add(($584|0),($585|0),1048576,0)|0); + $634 = (_bitshift64Shl(($626|0),($627|0),21)|0); $635 = tempRet0; - $636 = (_bitshift64Ashr(($634|0),($635|0),21)|0); + $636 = (_i64Subtract(($204|0),($205|0),($634|0),($635|0))|0); $637 = tempRet0; - $638 = (_bitshift64Shl(($636|0),($637|0),21)|0); + $638 = (_i64Add(($220|0),($221|0),1048576,0)|0); $639 = tempRet0; - $640 = (_i64Subtract(($584|0),($585|0),($638|0),($639|0))|0); + $640 = (_bitshift64Lshr(($638|0),($639|0),21)|0); $641 = tempRet0; - $642 = (___muldi3(($636|0),($637|0),666643,0)|0); + $642 = (_i64Add(($226|0),($227|0),($228|0),($229|0))|0); $643 = tempRet0; - $644 = (_i64Add(($542|0),($543|0),($642|0),($643|0))|0); + $644 = (_i64Add(($642|0),($643|0),($224|0),($225|0))|0); $645 = tempRet0; - $646 = (___muldi3(($636|0),($637|0),470296,0)|0); + $646 = (_i64Add(($644|0),($645|0),($222|0),($223|0))|0); $647 = tempRet0; - $648 = (___muldi3(($636|0),($637|0),654183,0)|0); + $648 = (_i64Add(($646|0),($647|0),($156|0),0)|0); $649 = tempRet0; - $650 = (___muldi3(($636|0),($637|0),-997805,-1)|0); + $650 = (_i64Add(($648|0),($649|0),($640|0),($641|0))|0); $651 = tempRet0; - $652 = (_i64Add(($602|0),($603|0),($650|0),($651|0))|0); + $652 = (_bitshift64Shl(($640|0),($641|0),21)|0); $653 = tempRet0; - $654 = (___muldi3(($636|0),($637|0),136657,0)|0); + $654 = (_i64Add(($248|0),($249|0),1048576,0)|0); $655 = tempRet0; - $656 = (___muldi3(($636|0),($637|0),-683901,-1)|0); + $656 = (_bitshift64Ashr(($654|0),($655|0),21)|0); $657 = tempRet0; - $658 = (_i64Add(($612|0),($613|0),($656|0),($657|0))|0); + $658 = (_i64Add(($258|0),($259|0),($260|0),($261|0))|0); $659 = tempRet0; - $660 = (_bitshift64Ashr(($644|0),($645|0),21)|0); + $660 = (_i64Add(($658|0),($659|0),($256|0),($257|0))|0); $661 = tempRet0; - $662 = (_i64Add(($646|0),($647|0),($538|0),($539|0))|0); + $662 = (_i64Add(($660|0),($661|0),($254|0),($255|0))|0); $663 = tempRet0; - $664 = (_i64Subtract(($662|0),($663|0),($594|0),($595|0))|0); + $664 = (_i64Add(($662|0),($663|0),($252|0),($253|0))|0); $665 = tempRet0; - $666 = (_i64Add(($664|0),($665|0),($660|0),($661|0))|0); + $666 = (_i64Add(($664|0),($665|0),($250|0),($251|0))|0); $667 = tempRet0; - $668 = (_bitshift64Shl(($660|0),($661|0),21)|0); + $668 = (_i64Add(($666|0),($667|0),($168|0),0)|0); $669 = tempRet0; - $670 = (_i64Subtract(($644|0),($645|0),($668|0),($669|0))|0); + $670 = (_i64Add(($668|0),($669|0),($656|0),($657|0))|0); $671 = tempRet0; - $672 = (_bitshift64Ashr(($666|0),($667|0),21)|0); + $672 = (_bitshift64Shl(($656|0),($657|0),21)|0); $673 = tempRet0; - $674 = (_i64Add(($648|0),($649|0),($516|0),($517|0))|0); + $674 = (_i64Add(($288|0),($289|0),1048576,0)|0); $675 = tempRet0; - $676 = (_i64Subtract(($674|0),($675|0),($550|0),($551|0))|0); + $676 = (_bitshift64Ashr(($674|0),($675|0),21)|0); $677 = tempRet0; - $678 = (_i64Add(($676|0),($677|0),($592|0),($593|0))|0); + $678 = (_i64Add(($302|0),($303|0),($304|0),($305|0))|0); $679 = tempRet0; - $680 = (_i64Add(($678|0),($679|0),($672|0),($673|0))|0); + $680 = (_i64Add(($678|0),($679|0),($300|0),($301|0))|0); $681 = tempRet0; - $682 = (_bitshift64Shl(($672|0),($673|0),21)|0); + $682 = (_i64Add(($680|0),($681|0),($298|0),($299|0))|0); $683 = tempRet0; - $684 = (_i64Subtract(($666|0),($667|0),($682|0),($683|0))|0); + $684 = (_i64Add(($682|0),($683|0),($296|0),($297|0))|0); $685 = tempRet0; - $686 = (_bitshift64Ashr(($680|0),($681|0),21)|0); + $686 = (_i64Add(($684|0),($685|0),($294|0),($295|0))|0); $687 = tempRet0; - $688 = (_i64Add(($686|0),($687|0),($652|0),($653|0))|0); + $688 = (_i64Add(($686|0),($687|0),($292|0),($293|0))|0); $689 = tempRet0; - $690 = (_bitshift64Shl(($686|0),($687|0),21)|0); + $690 = (_i64Add(($688|0),($689|0),($290|0),($291|0))|0); $691 = tempRet0; - $692 = (_i64Subtract(($680|0),($681|0),($690|0),($691|0))|0); + $692 = (_i64Add(($690|0),($691|0),($180|0),0)|0); $693 = tempRet0; - $694 = (_bitshift64Ashr(($688|0),($689|0),21)|0); + $694 = (_i64Add(($692|0),($693|0),($676|0),($677|0))|0); $695 = tempRet0; - $696 = (_i64Add(($654|0),($655|0),($524|0),($525|0))|0); + $696 = (_bitshift64Shl(($676|0),($677|0),21)|0); $697 = tempRet0; - $698 = (_i64Subtract(($696|0),($697|0),($558|0),($559|0))|0); + $698 = (_i64Add(($340|0),($341|0),1048576,0)|0); $699 = tempRet0; - $700 = (_i64Add(($698|0),($699|0),($598|0),($599|0))|0); + $700 = (_bitshift64Ashr(($698|0),($699|0),21)|0); $701 = tempRet0; - $702 = (_i64Add(($700|0),($701|0),($694|0),($695|0))|0); + $702 = (_i64Add(($358|0),($359|0),($360|0),($361|0))|0); $703 = tempRet0; - $704 = (_bitshift64Shl(($694|0),($695|0),21)|0); + $704 = (_i64Add(($702|0),($703|0),($356|0),($357|0))|0); $705 = tempRet0; - $706 = (_i64Subtract(($688|0),($689|0),($704|0),($705|0))|0); + $706 = (_i64Add(($704|0),($705|0),($354|0),($355|0))|0); $707 = tempRet0; - $708 = (_bitshift64Ashr(($702|0),($703|0),21)|0); + $708 = (_i64Add(($706|0),($707|0),($352|0),($353|0))|0); $709 = tempRet0; - $710 = (_i64Add(($708|0),($709|0),($658|0),($659|0))|0); + $710 = (_i64Add(($708|0),($709|0),($350|0),($351|0))|0); $711 = tempRet0; - $712 = (_bitshift64Shl(($708|0),($709|0),21)|0); + $712 = (_i64Add(($710|0),($711|0),($348|0),($349|0))|0); $713 = tempRet0; - $714 = (_i64Subtract(($702|0),($703|0),($712|0),($713|0))|0); + $714 = (_i64Add(($712|0),($713|0),($344|0),($345|0))|0); $715 = tempRet0; - $716 = (_bitshift64Ashr(($710|0),($711|0),21)|0); + $716 = (_i64Add(($714|0),($715|0),($346|0),($347|0))|0); $717 = tempRet0; - $718 = (_i64Add(($608|0),($609|0),($716|0),($717|0))|0); + $718 = (_i64Add(($716|0),($717|0),($342|0),($343|0))|0); $719 = tempRet0; - $720 = (_bitshift64Shl(($716|0),($717|0),21)|0); + $720 = (_i64Add(($718|0),($719|0),($190|0),0)|0); $721 = tempRet0; - $722 = (_i64Subtract(($710|0),($711|0),($720|0),($721|0))|0); + $722 = (_i64Add(($720|0),($721|0),($700|0),($701|0))|0); $723 = tempRet0; - $724 = (_bitshift64Ashr(($718|0),($719|0),21)|0); + $724 = (_bitshift64Shl(($700|0),($701|0),21)|0); $725 = tempRet0; - $726 = (_i64Add(($724|0),($725|0),($622|0),($623|0))|0); + $726 = (_i64Add(($404|0),($405|0),1048576,0)|0); $727 = tempRet0; - $728 = (_bitshift64Shl(($724|0),($725|0),21)|0); + $728 = (_bitshift64Ashr(($726|0),($727|0),21)|0); $729 = tempRet0; - $730 = (_i64Subtract(($718|0),($719|0),($728|0),($729|0))|0); + $730 = (_i64Add(($426|0),($427|0),($428|0),($429|0))|0); $731 = tempRet0; - $732 = (_bitshift64Ashr(($726|0),($727|0),21)|0); + $732 = (_i64Add(($730|0),($731|0),($424|0),($425|0))|0); $733 = tempRet0; - $734 = (_i64Add(($618|0),($619|0),($732|0),($733|0))|0); + $734 = (_i64Add(($732|0),($733|0),($422|0),($423|0))|0); $735 = tempRet0; - $736 = (_bitshift64Shl(($732|0),($733|0),21)|0); + $736 = (_i64Add(($734|0),($735|0),($420|0),($421|0))|0); $737 = tempRet0; - $738 = (_i64Subtract(($726|0),($727|0),($736|0),($737|0))|0); + $738 = (_i64Add(($736|0),($737|0),($418|0),($419|0))|0); $739 = tempRet0; - $740 = (_bitshift64Ashr(($734|0),($735|0),21)|0); + $740 = (_i64Add(($738|0),($739|0),($416|0),($417|0))|0); $741 = tempRet0; - $742 = (_i64Add(($740|0),($741|0),($632|0),($633|0))|0); + $742 = (_i64Add(($740|0),($741|0),($412|0),($413|0))|0); $743 = tempRet0; - $744 = (_bitshift64Shl(($740|0),($741|0),21)|0); + $744 = (_i64Add(($742|0),($743|0),($414|0),($415|0))|0); $745 = tempRet0; - $746 = (_i64Subtract(($734|0),($735|0),($744|0),($745|0))|0); + $746 = (_i64Add(($744|0),($745|0),($410|0),($411|0))|0); $747 = tempRet0; - $748 = (_bitshift64Ashr(($742|0),($743|0),21)|0); + $748 = (_i64Add(($746|0),($747|0),($406|0),($407|0))|0); $749 = tempRet0; - $750 = (_i64Add(($628|0),($629|0),($748|0),($749|0))|0); + $750 = (_i64Add(($748|0),($749|0),($408|0),($409|0))|0); $751 = tempRet0; - $752 = (_bitshift64Shl(($748|0),($749|0),21)|0); + $752 = (_i64Add(($750|0),($751|0),($200|0),($201|0))|0); $753 = tempRet0; - $754 = (_i64Subtract(($742|0),($743|0),($752|0),($753|0))|0); + $754 = (_i64Add(($752|0),($753|0),($728|0),($729|0))|0); $755 = tempRet0; - $756 = (_bitshift64Ashr(($750|0),($751|0),21)|0); + $756 = (_bitshift64Shl(($728|0),($729|0),21)|0); $757 = tempRet0; - $758 = (_i64Add(($756|0),($757|0),($640|0),($641|0))|0); + $758 = (_i64Add(($470|0),($471|0),1048576,0)|0); $759 = tempRet0; - $760 = (_bitshift64Shl(($756|0),($757|0),21)|0); + $760 = (_bitshift64Ashr(($758|0),($759|0),21)|0); $761 = tempRet0; - $762 = (_i64Subtract(($750|0),($751|0),($760|0),($761|0))|0); + $762 = (_i64Add(($488|0),($489|0),($490|0),($491|0))|0); $763 = tempRet0; - $764 = (_bitshift64Ashr(($758|0),($759|0),21)|0); + $764 = (_i64Add(($762|0),($763|0),($486|0),($487|0))|0); $765 = tempRet0; - $766 = (_bitshift64Shl(($764|0),($765|0),21)|0); + $766 = (_i64Add(($764|0),($765|0),($484|0),($485|0))|0); $767 = tempRet0; - $768 = (_i64Subtract(($758|0),($759|0),($766|0),($767|0))|0); + $768 = (_i64Add(($766|0),($767|0),($482|0),($483|0))|0); $769 = tempRet0; - $770 = (___muldi3(($764|0),($765|0),666643,0)|0); + $770 = (_i64Add(($768|0),($769|0),($478|0),($479|0))|0); $771 = tempRet0; - $772 = (_i64Add(($770|0),($771|0),($670|0),($671|0))|0); + $772 = (_i64Add(($770|0),($771|0),($480|0),($481|0))|0); $773 = tempRet0; - $774 = (___muldi3(($764|0),($765|0),470296,0)|0); + $774 = (_i64Add(($772|0),($773|0),($476|0),($477|0))|0); $775 = tempRet0; - $776 = (_i64Add(($684|0),($685|0),($774|0),($775|0))|0); + $776 = (_i64Add(($774|0),($775|0),($474|0),($475|0))|0); $777 = tempRet0; - $778 = (___muldi3(($764|0),($765|0),654183,0)|0); + $778 = (_i64Add(($776|0),($777|0),($472|0),($473|0))|0); $779 = tempRet0; - $780 = (_i64Add(($692|0),($693|0),($778|0),($779|0))|0); + $780 = (_i64Add(($778|0),($779|0),($760|0),($761|0))|0); $781 = tempRet0; - $782 = (___muldi3(($764|0),($765|0),-997805,-1)|0); + $782 = (_bitshift64Shl(($760|0),($761|0),21)|0); $783 = tempRet0; - $784 = (_i64Add(($706|0),($707|0),($782|0),($783|0))|0); + $784 = (_i64Add(($524|0),($525|0),1048576,0)|0); $785 = tempRet0; - $786 = (___muldi3(($764|0),($765|0),136657,0)|0); + $786 = (_bitshift64Ashr(($784|0),($785|0),21)|0); $787 = tempRet0; - $788 = (_i64Add(($714|0),($715|0),($786|0),($787|0))|0); + $788 = (_i64Add(($538|0),($539|0),($540|0),($541|0))|0); $789 = tempRet0; - $790 = (___muldi3(($764|0),($765|0),-683901,-1)|0); + $790 = (_i64Add(($788|0),($789|0),($536|0),($537|0))|0); $791 = tempRet0; - $792 = (_i64Add(($722|0),($723|0),($790|0),($791|0))|0); + $792 = (_i64Add(($790|0),($791|0),($532|0),($533|0))|0); $793 = tempRet0; - $794 = (_bitshift64Ashr(($772|0),($773|0),21)|0); + $794 = (_i64Add(($792|0),($793|0),($534|0),($535|0))|0); $795 = tempRet0; - $796 = (_i64Add(($776|0),($777|0),($794|0),($795|0))|0); + $796 = (_i64Add(($794|0),($795|0),($530|0),($531|0))|0); $797 = tempRet0; - $798 = (_bitshift64Shl(($794|0),($795|0),21)|0); + $798 = (_i64Add(($796|0),($797|0),($528|0),($529|0))|0); $799 = tempRet0; - $800 = (_i64Subtract(($772|0),($773|0),($798|0),($799|0))|0); + $800 = (_i64Add(($798|0),($799|0),($526|0),($527|0))|0); $801 = tempRet0; - $802 = (_bitshift64Ashr(($796|0),($797|0),21)|0); + $802 = (_i64Add(($800|0),($801|0),($786|0),($787|0))|0); $803 = tempRet0; - $804 = (_i64Add(($780|0),($781|0),($802|0),($803|0))|0); + $804 = (_bitshift64Shl(($786|0),($787|0),21)|0); $805 = tempRet0; - $806 = (_bitshift64Shl(($802|0),($803|0),21)|0); + $806 = (_i64Add(($566|0),($567|0),1048576,0)|0); $807 = tempRet0; - $808 = (_i64Subtract(($796|0),($797|0),($806|0),($807|0))|0); + $808 = (_bitshift64Ashr(($806|0),($807|0),21)|0); $809 = tempRet0; - $810 = (_bitshift64Ashr(($804|0),($805|0),21)|0); + $810 = (_i64Add(($574|0),($575|0),($578|0),($579|0))|0); $811 = tempRet0; - $812 = (_i64Add(($810|0),($811|0),($784|0),($785|0))|0); + $812 = (_i64Add(($810|0),($811|0),($576|0),($577|0))|0); $813 = tempRet0; - $814 = (_bitshift64Shl(($810|0),($811|0),21)|0); + $814 = (_i64Add(($812|0),($813|0),($572|0),($573|0))|0); $815 = tempRet0; - $816 = (_i64Subtract(($804|0),($805|0),($814|0),($815|0))|0); + $816 = (_i64Add(($814|0),($815|0),($570|0),($571|0))|0); $817 = tempRet0; - $818 = (_bitshift64Ashr(($812|0),($813|0),21)|0); + $818 = (_i64Add(($816|0),($817|0),($568|0),($569|0))|0); $819 = tempRet0; - $820 = (_i64Add(($788|0),($789|0),($818|0),($819|0))|0); + $820 = (_i64Add(($818|0),($819|0),($808|0),($809|0))|0); $821 = tempRet0; - $822 = (_bitshift64Shl(($818|0),($819|0),21)|0); + $822 = (_bitshift64Shl(($808|0),($809|0),21)|0); $823 = tempRet0; - $824 = (_i64Subtract(($812|0),($813|0),($822|0),($823|0))|0); + $824 = (_i64Add(($596|0),($597|0),1048576,0)|0); $825 = tempRet0; - $826 = (_bitshift64Ashr(($820|0),($821|0),21)|0); + $826 = (_bitshift64Ashr(($824|0),($825|0),21)|0); $827 = tempRet0; - $828 = (_i64Add(($826|0),($827|0),($792|0),($793|0))|0); + $828 = (_i64Add(($602|0),($603|0),($604|0),($605|0))|0); $829 = tempRet0; - $830 = (_bitshift64Shl(($826|0),($827|0),21)|0); + $830 = (_i64Add(($828|0),($829|0),($600|0),($601|0))|0); $831 = tempRet0; - $832 = (_i64Subtract(($820|0),($821|0),($830|0),($831|0))|0); + $832 = (_i64Add(($830|0),($831|0),($598|0),($599|0))|0); $833 = tempRet0; - $834 = (_bitshift64Ashr(($828|0),($829|0),21)|0); + $834 = (_i64Add(($832|0),($833|0),($826|0),($827|0))|0); $835 = tempRet0; - $836 = (_i64Add(($834|0),($835|0),($730|0),($731|0))|0); + $836 = (_bitshift64Shl(($826|0),($827|0),21)|0); $837 = tempRet0; - $838 = (_bitshift64Shl(($834|0),($835|0),21)|0); + $838 = (_i64Subtract(($596|0),($597|0),($836|0),($837|0))|0); $839 = tempRet0; - $840 = (_i64Subtract(($828|0),($829|0),($838|0),($839|0))|0); + $840 = (_i64Add(($614|0),($615|0),1048576,0)|0); $841 = tempRet0; - $842 = (_bitshift64Ashr(($836|0),($837|0),21)|0); + $842 = (_bitshift64Lshr(($840|0),($841|0),21)|0); $843 = tempRet0; - $844 = (_i64Add(($842|0),($843|0),($738|0),($739|0))|0); + $844 = (_i64Add(($620|0),($621|0),($842|0),($843|0))|0); $845 = tempRet0; $846 = (_bitshift64Shl(($842|0),($843|0),21)|0); $847 = tempRet0; - $848 = (_i64Subtract(($836|0),($837|0),($846|0),($847|0))|0); + $848 = (_i64Subtract(($614|0),($615|0),($846|0),($847|0))|0); $849 = tempRet0; - $850 = (_bitshift64Ashr(($844|0),($845|0),21)|0); + $850 = (_i64Add(($622|0),($623|0),1048576,0)|0); $851 = tempRet0; - $852 = (_i64Add(($850|0),($851|0),($746|0),($747|0))|0); + $852 = (_bitshift64Lshr(($850|0),($851|0),21)|0); $853 = tempRet0; - $854 = (_bitshift64Shl(($850|0),($851|0),21)|0); + $854 = (_bitshift64Shl(($852|0),($853|0),21)|0); $855 = tempRet0; - $856 = (_i64Subtract(($844|0),($845|0),($854|0),($855|0))|0); + $856 = (_i64Subtract(($622|0),($623|0),($854|0),($855|0))|0); $857 = tempRet0; - $858 = (_bitshift64Ashr(($852|0),($853|0),21)|0); + $858 = (_i64Add(($632|0),($633|0),1048576,0)|0); $859 = tempRet0; - $860 = (_i64Add(($858|0),($859|0),($754|0),($755|0))|0); + $860 = (_bitshift64Lshr(($858|0),($859|0),21)|0); $861 = tempRet0; - $862 = (_bitshift64Shl(($858|0),($859|0),21)|0); + $862 = (_bitshift64Shl(($860|0),($861|0),21)|0); $863 = tempRet0; - $864 = (_i64Subtract(($852|0),($853|0),($862|0),($863|0))|0); + $864 = (_i64Subtract(($632|0),($633|0),($862|0),($863|0))|0); $865 = tempRet0; - $866 = (_bitshift64Ashr(($860|0),($861|0),21)|0); + $866 = (_i64Add(($650|0),($651|0),1048576,0)|0); $867 = tempRet0; - $868 = (_i64Add(($866|0),($867|0),($762|0),($763|0))|0); + $868 = (_bitshift64Ashr(($866|0),($867|0),21)|0); $869 = tempRet0; - $870 = (_bitshift64Shl(($866|0),($867|0),21)|0); + $870 = (_bitshift64Shl(($868|0),($869|0),21)|0); $871 = tempRet0; - $872 = (_i64Subtract(($860|0),($861|0),($870|0),($871|0))|0); + $872 = (_i64Subtract(($650|0),($651|0),($870|0),($871|0))|0); $873 = tempRet0; - $874 = (_bitshift64Ashr(($868|0),($869|0),21)|0); + $874 = (_i64Add(($670|0),($671|0),1048576,0)|0); $875 = tempRet0; - $876 = (_i64Add(($874|0),($875|0),($768|0),($769|0))|0); + $876 = (_bitshift64Ashr(($874|0),($875|0),21)|0); $877 = tempRet0; - $878 = (_bitshift64Shl(($874|0),($875|0),21)|0); + $878 = (_bitshift64Shl(($876|0),($877|0),21)|0); $879 = tempRet0; - $880 = (_i64Subtract(($868|0),($869|0),($878|0),($879|0))|0); + $880 = (_i64Subtract(($670|0),($671|0),($878|0),($879|0))|0); $881 = tempRet0; - $882 = $800&255; - HEAP8[$s>>0] = $882; - $883 = (_bitshift64Lshr(($800|0),($801|0),8)|0); - $884 = tempRet0; - $885 = $883&255; - $886 = ((($s)) + 1|0); - HEAP8[$886>>0] = $885; - $887 = (_bitshift64Lshr(($800|0),($801|0),16)|0); - $888 = tempRet0; - $889 = (_bitshift64Shl(($808|0),($809|0),5)|0); - $890 = tempRet0; - $891 = $889 | $887; - $890 | $888; - $892 = $891&255; - HEAP8[$3>>0] = $892; - $893 = (_bitshift64Lshr(($808|0),($809|0),3)|0); - $894 = tempRet0; - $895 = $893&255; - $896 = ((($s)) + 3|0); - HEAP8[$896>>0] = $895; - $897 = (_bitshift64Lshr(($808|0),($809|0),11)|0); - $898 = tempRet0; - $899 = $897&255; - $900 = ((($s)) + 4|0); - HEAP8[$900>>0] = $899; - $901 = (_bitshift64Lshr(($808|0),($809|0),19)|0); - $902 = tempRet0; - $903 = (_bitshift64Shl(($816|0),($817|0),2)|0); - $904 = tempRet0; - $905 = $903 | $901; - $904 | $902; - $906 = $905&255; - HEAP8[$9>>0] = $906; - $907 = (_bitshift64Lshr(($816|0),($817|0),6)|0); - $908 = tempRet0; - $909 = $907&255; - $910 = ((($s)) + 6|0); - HEAP8[$910>>0] = $909; - $911 = (_bitshift64Lshr(($816|0),($817|0),14)|0); - $912 = tempRet0; - $913 = (_bitshift64Shl(($824|0),($825|0),7)|0); - $914 = tempRet0; - $915 = $913 | $911; - $914 | $912; - $916 = $915&255; - HEAP8[$15>>0] = $916; - $917 = (_bitshift64Lshr(($824|0),($825|0),1)|0); - $918 = tempRet0; - $919 = $917&255; - $920 = ((($s)) + 8|0); - HEAP8[$920>>0] = $919; - $921 = (_bitshift64Lshr(($824|0),($825|0),9)|0); - $922 = tempRet0; - $923 = $921&255; - $924 = ((($s)) + 9|0); - HEAP8[$924>>0] = $923; - $925 = (_bitshift64Lshr(($824|0),($825|0),17)|0); - $926 = tempRet0; - $927 = (_bitshift64Shl(($832|0),($833|0),4)|0); - $928 = tempRet0; - $929 = $927 | $925; - $928 | $926; - $930 = $929&255; - HEAP8[$21>>0] = $930; - $931 = (_bitshift64Lshr(($832|0),($833|0),4)|0); - $932 = tempRet0; - $933 = $931&255; - $934 = ((($s)) + 11|0); - HEAP8[$934>>0] = $933; - $935 = (_bitshift64Lshr(($832|0),($833|0),12)|0); - $936 = tempRet0; - $937 = $935&255; - $938 = ((($s)) + 12|0); - HEAP8[$938>>0] = $937; - $939 = (_bitshift64Lshr(($832|0),($833|0),20)|0); - $940 = tempRet0; - $941 = (_bitshift64Shl(($840|0),($841|0),1)|0); - $942 = tempRet0; - $943 = $941 | $939; - $942 | $940; - $944 = $943&255; - HEAP8[$27>>0] = $944; - $945 = (_bitshift64Lshr(($840|0),($841|0),7)|0); - $946 = tempRet0; - $947 = $945&255; - $948 = ((($s)) + 14|0); - HEAP8[$948>>0] = $947; - $949 = (_bitshift64Lshr(($840|0),($841|0),15)|0); - $950 = tempRet0; - $951 = (_bitshift64Shl(($848|0),($849|0),6)|0); - $952 = tempRet0; - $953 = $951 | $949; - $952 | $950; - $954 = $953&255; - HEAP8[$33>>0] = $954; - $955 = (_bitshift64Lshr(($848|0),($849|0),2)|0); - $956 = tempRet0; - $957 = $955&255; - $958 = ((($s)) + 16|0); - HEAP8[$958>>0] = $957; - $959 = (_bitshift64Lshr(($848|0),($849|0),10)|0); - $960 = tempRet0; - $961 = $959&255; - $962 = ((($s)) + 17|0); - HEAP8[$962>>0] = $961; - $963 = (_bitshift64Lshr(($848|0),($849|0),18)|0); - $964 = tempRet0; - $965 = (_bitshift64Shl(($856|0),($857|0),3)|0); - $966 = tempRet0; - $967 = $965 | $963; - $966 | $964; - $968 = $967&255; - HEAP8[$39>>0] = $968; - $969 = (_bitshift64Lshr(($856|0),($857|0),5)|0); - $970 = tempRet0; - $971 = $969&255; - $972 = ((($s)) + 19|0); - HEAP8[$972>>0] = $971; - $973 = (_bitshift64Lshr(($856|0),($857|0),13)|0); - $974 = tempRet0; - $975 = $973&255; - $976 = ((($s)) + 20|0); - HEAP8[$976>>0] = $975; - $977 = $864&255; - HEAP8[$45>>0] = $977; - $978 = (_bitshift64Lshr(($864|0),($865|0),8)|0); + $882 = (_i64Add(($694|0),($695|0),1048576,0)|0); + $883 = tempRet0; + $884 = (_bitshift64Ashr(($882|0),($883|0),21)|0); + $885 = tempRet0; + $886 = (_bitshift64Shl(($884|0),($885|0),21)|0); + $887 = tempRet0; + $888 = (_i64Add(($722|0),($723|0),1048576,0)|0); + $889 = tempRet0; + $890 = (_bitshift64Ashr(($888|0),($889|0),21)|0); + $891 = tempRet0; + $892 = (_bitshift64Shl(($890|0),($891|0),21)|0); + $893 = tempRet0; + $894 = (_i64Add(($754|0),($755|0),1048576,0)|0); + $895 = tempRet0; + $896 = (_bitshift64Ashr(($894|0),($895|0),21)|0); + $897 = tempRet0; + $898 = (_bitshift64Shl(($896|0),($897|0),21)|0); + $899 = tempRet0; + $900 = (_i64Add(($780|0),($781|0),1048576,0)|0); + $901 = tempRet0; + $902 = (_bitshift64Ashr(($900|0),($901|0),21)|0); + $903 = tempRet0; + $904 = (_bitshift64Shl(($902|0),($903|0),21)|0); + $905 = tempRet0; + $906 = (_i64Add(($802|0),($803|0),1048576,0)|0); + $907 = tempRet0; + $908 = (_bitshift64Ashr(($906|0),($907|0),21)|0); + $909 = tempRet0; + $910 = (_bitshift64Shl(($908|0),($909|0),21)|0); + $911 = tempRet0; + $912 = (_i64Add(($820|0),($821|0),1048576,0)|0); + $913 = tempRet0; + $914 = (_bitshift64Ashr(($912|0),($913|0),21)|0); + $915 = tempRet0; + $916 = (_i64Add(($914|0),($915|0),($838|0),($839|0))|0); + $917 = tempRet0; + $918 = (_bitshift64Shl(($914|0),($915|0),21)|0); + $919 = tempRet0; + $920 = (_i64Subtract(($820|0),($821|0),($918|0),($919|0))|0); + $921 = tempRet0; + $922 = (_i64Add(($834|0),($835|0),1048576,0)|0); + $923 = tempRet0; + $924 = (_bitshift64Ashr(($922|0),($923|0),21)|0); + $925 = tempRet0; + $926 = (_i64Add(($924|0),($925|0),($848|0),($849|0))|0); + $927 = tempRet0; + $928 = (_bitshift64Shl(($924|0),($925|0),21)|0); + $929 = tempRet0; + $930 = (_i64Subtract(($834|0),($835|0),($928|0),($929|0))|0); + $931 = tempRet0; + $932 = (_i64Add(($844|0),($845|0),1048576,0)|0); + $933 = tempRet0; + $934 = (_bitshift64Lshr(($932|0),($933|0),21)|0); + $935 = tempRet0; + $936 = (_i64Add(($934|0),($935|0),($856|0),($857|0))|0); + $937 = tempRet0; + $938 = (_bitshift64Shl(($934|0),($935|0),21)|0); + $939 = tempRet0; + $940 = (_i64Subtract(($844|0),($845|0),($938|0),($939|0))|0); + $941 = tempRet0; + $942 = (___muldi3(($852|0),($853|0),666643,0)|0); + $943 = tempRet0; + $944 = (___muldi3(($852|0),($853|0),470296,0)|0); + $945 = tempRet0; + $946 = (___muldi3(($852|0),($853|0),654183,0)|0); + $947 = tempRet0; + $948 = (___muldi3(($852|0),($853|0),-997805,-1)|0); + $949 = tempRet0; + $950 = (___muldi3(($852|0),($853|0),136657,0)|0); + $951 = tempRet0; + $952 = (___muldi3(($852|0),($853|0),-683901,-1)|0); + $953 = tempRet0; + $954 = (_i64Add(($566|0),($567|0),($952|0),($953|0))|0); + $955 = tempRet0; + $956 = (_i64Subtract(($954|0),($955|0),($822|0),($823|0))|0); + $957 = tempRet0; + $958 = (_i64Add(($956|0),($957|0),($908|0),($909|0))|0); + $959 = tempRet0; + $960 = (___muldi3(($936|0),($937|0),666643,0)|0); + $961 = tempRet0; + $962 = (___muldi3(($936|0),($937|0),470296,0)|0); + $963 = tempRet0; + $964 = (___muldi3(($936|0),($937|0),654183,0)|0); + $965 = tempRet0; + $966 = (___muldi3(($936|0),($937|0),-997805,-1)|0); + $967 = tempRet0; + $968 = (___muldi3(($936|0),($937|0),136657,0)|0); + $969 = tempRet0; + $970 = (___muldi3(($936|0),($937|0),-683901,-1)|0); + $971 = tempRet0; + $972 = (___muldi3(($940|0),($941|0),666643,0)|0); + $973 = tempRet0; + $974 = (___muldi3(($940|0),($941|0),470296,0)|0); + $975 = tempRet0; + $976 = (___muldi3(($940|0),($941|0),654183,0)|0); + $977 = tempRet0; + $978 = (___muldi3(($940|0),($941|0),-997805,-1)|0); $979 = tempRet0; - $980 = $978&255; - $981 = ((($s)) + 22|0); - HEAP8[$981>>0] = $980; - $982 = (_bitshift64Lshr(($864|0),($865|0),16)|0); + $980 = (___muldi3(($940|0),($941|0),136657,0)|0); + $981 = tempRet0; + $982 = (___muldi3(($940|0),($941|0),-683901,-1)|0); $983 = tempRet0; - $984 = (_bitshift64Shl(($872|0),($873|0),5)|0); + $984 = (_i64Add(($524|0),($525|0),($948|0),($949|0))|0); $985 = tempRet0; - $986 = $984 | $982; - $985 | $983; - $987 = $986&255; - HEAP8[$49>>0] = $987; - $988 = (_bitshift64Lshr(($872|0),($873|0),3)|0); + $986 = (_i64Add(($984|0),($985|0),($968|0),($969|0))|0); + $987 = tempRet0; + $988 = (_i64Add(($986|0),($987|0),($982|0),($983|0))|0); $989 = tempRet0; - $990 = $988&255; - $991 = ((($s)) + 24|0); - HEAP8[$991>>0] = $990; - $992 = (_bitshift64Lshr(($872|0),($873|0),11)|0); + $990 = (_i64Subtract(($988|0),($989|0),($804|0),($805|0))|0); + $991 = tempRet0; + $992 = (_i64Add(($990|0),($991|0),($902|0),($903|0))|0); $993 = tempRet0; - $994 = $992&255; - $995 = ((($s)) + 25|0); - HEAP8[$995>>0] = $994; - $996 = (_bitshift64Lshr(($872|0),($873|0),19)|0); + $994 = (___muldi3(($926|0),($927|0),666643,0)|0); + $995 = tempRet0; + $996 = (___muldi3(($926|0),($927|0),470296,0)|0); $997 = tempRet0; - $998 = (_bitshift64Shl(($880|0),($881|0),2)|0); + $998 = (___muldi3(($926|0),($927|0),654183,0)|0); $999 = tempRet0; - $1000 = $998 | $996; - $999 | $997; - $1001 = $1000&255; - HEAP8[$55>>0] = $1001; - $1002 = (_bitshift64Lshr(($880|0),($881|0),6)|0); + $1000 = (___muldi3(($926|0),($927|0),-997805,-1)|0); + $1001 = tempRet0; + $1002 = (___muldi3(($926|0),($927|0),136657,0)|0); $1003 = tempRet0; - $1004 = $1002&255; - $1005 = ((($s)) + 27|0); - HEAP8[$1005>>0] = $1004; - $1006 = (_bitshift64Lshr(($880|0),($881|0),14)|0); + $1004 = (___muldi3(($926|0),($927|0),-683901,-1)|0); + $1005 = tempRet0; + $1006 = (___muldi3(($930|0),($931|0),666643,0)|0); $1007 = tempRet0; - $1008 = (_bitshift64Shl(($876|0),($877|0),7)|0); + $1008 = (___muldi3(($930|0),($931|0),470296,0)|0); $1009 = tempRet0; - $1010 = $1006 | $1008; - $1007 | $1009; - $1011 = $1010&255; - HEAP8[$61>>0] = $1011; - $1012 = (_bitshift64Lshr(($876|0),($877|0),1)|0); + $1010 = (___muldi3(($930|0),($931|0),654183,0)|0); + $1011 = tempRet0; + $1012 = (___muldi3(($930|0),($931|0),-997805,-1)|0); $1013 = tempRet0; - $1014 = $1012&255; - $1015 = ((($s)) + 29|0); - HEAP8[$1015>>0] = $1014; - $1016 = (_bitshift64Lshr(($876|0),($877|0),9)|0); + $1014 = (___muldi3(($930|0),($931|0),136657,0)|0); + $1015 = tempRet0; + $1016 = (___muldi3(($930|0),($931|0),-683901,-1)|0); $1017 = tempRet0; - $1018 = $1016&255; - $1019 = ((($s)) + 30|0); - HEAP8[$1019>>0] = $1018; - $1020 = (_bitshift64Lshr(($876|0),($877|0),17)|0); + $1018 = (_i64Add(($964|0),($965|0),($944|0),($945|0))|0); + $1019 = tempRet0; + $1020 = (_i64Add(($1018|0),($1019|0),($470|0),($471|0))|0); $1021 = tempRet0; - $1022 = $1020&255; - HEAP8[$67>>0] = $1022; + $1022 = (_i64Add(($1020|0),($1021|0),($978|0),($979|0))|0); + $1023 = tempRet0; + $1024 = (_i64Add(($1022|0),($1023|0),($1002|0),($1003|0))|0); + $1025 = tempRet0; + $1026 = (_i64Add(($1024|0),($1025|0),($1016|0),($1017|0))|0); + $1027 = tempRet0; + $1028 = (_i64Subtract(($1026|0),($1027|0),($782|0),($783|0))|0); + $1029 = tempRet0; + $1030 = (_i64Add(($1028|0),($1029|0),($896|0),($897|0))|0); + $1031 = tempRet0; + $1032 = (___muldi3(($916|0),($917|0),666643,0)|0); + $1033 = tempRet0; + $1034 = (_i64Add(($288|0),($289|0),($1032|0),($1033|0))|0); + $1035 = tempRet0; + $1036 = (_i64Add(($1034|0),($1035|0),($876|0),($877|0))|0); + $1037 = tempRet0; + $1038 = (_i64Subtract(($1036|0),($1037|0),($696|0),($697|0))|0); + $1039 = tempRet0; + $1040 = (___muldi3(($916|0),($917|0),470296,0)|0); + $1041 = tempRet0; + $1042 = (___muldi3(($916|0),($917|0),654183,0)|0); + $1043 = tempRet0; + $1044 = (_i64Add(($1008|0),($1009|0),($994|0),($995|0))|0); + $1045 = tempRet0; + $1046 = (_i64Add(($1044|0),($1045|0),($1042|0),($1043|0))|0); + $1047 = tempRet0; + $1048 = (_i64Add(($1046|0),($1047|0),($340|0),($341|0))|0); + $1049 = tempRet0; + $1050 = (_i64Add(($1048|0),($1049|0),($884|0),($885|0))|0); + $1051 = tempRet0; + $1052 = (_i64Subtract(($1050|0),($1051|0),($724|0),($725|0))|0); + $1053 = tempRet0; + $1054 = (___muldi3(($916|0),($917|0),-997805,-1)|0); + $1055 = tempRet0; + $1056 = (___muldi3(($916|0),($917|0),136657,0)|0); + $1057 = tempRet0; + $1058 = (_i64Add(($974|0),($975|0),($960|0),($961|0))|0); + $1059 = tempRet0; + $1060 = (_i64Add(($1058|0),($1059|0),($998|0),($999|0))|0); + $1061 = tempRet0; + $1062 = (_i64Add(($1060|0),($1061|0),($1012|0),($1013|0))|0); + $1063 = tempRet0; + $1064 = (_i64Add(($1062|0),($1063|0),($1056|0),($1057|0))|0); + $1065 = tempRet0; + $1066 = (_i64Add(($1064|0),($1065|0),($404|0),($405|0))|0); + $1067 = tempRet0; + $1068 = (_i64Add(($1066|0),($1067|0),($890|0),($891|0))|0); + $1069 = tempRet0; + $1070 = (_i64Subtract(($1068|0),($1069|0),($756|0),($757|0))|0); + $1071 = tempRet0; + $1072 = (___muldi3(($916|0),($917|0),-683901,-1)|0); + $1073 = tempRet0; + $1074 = (_i64Add(($1038|0),($1039|0),1048576,0)|0); + $1075 = tempRet0; + $1076 = (_bitshift64Ashr(($1074|0),($1075|0),21)|0); + $1077 = tempRet0; + $1078 = (_i64Add(($1040|0),($1041|0),($1006|0),($1007|0))|0); + $1079 = tempRet0; + $1080 = (_i64Add(($1078|0),($1079|0),($694|0),($695|0))|0); + $1081 = tempRet0; + $1082 = (_i64Subtract(($1080|0),($1081|0),($886|0),($887|0))|0); + $1083 = tempRet0; + $1084 = (_i64Add(($1082|0),($1083|0),($1076|0),($1077|0))|0); + $1085 = tempRet0; + $1086 = (_bitshift64Shl(($1076|0),($1077|0),21)|0); + $1087 = tempRet0; + $1088 = (_i64Add(($1052|0),($1053|0),1048576,0)|0); + $1089 = tempRet0; + $1090 = (_bitshift64Ashr(($1088|0),($1089|0),21)|0); + $1091 = tempRet0; + $1092 = (_i64Add(($996|0),($997|0),($972|0),($973|0))|0); + $1093 = tempRet0; + $1094 = (_i64Add(($1092|0),($1093|0),($1010|0),($1011|0))|0); + $1095 = tempRet0; + $1096 = (_i64Add(($1094|0),($1095|0),($1054|0),($1055|0))|0); + $1097 = tempRet0; + $1098 = (_i64Add(($1096|0),($1097|0),($722|0),($723|0))|0); + $1099 = tempRet0; + $1100 = (_i64Subtract(($1098|0),($1099|0),($892|0),($893|0))|0); + $1101 = tempRet0; + $1102 = (_i64Add(($1100|0),($1101|0),($1090|0),($1091|0))|0); + $1103 = tempRet0; + $1104 = (_bitshift64Shl(($1090|0),($1091|0),21)|0); + $1105 = tempRet0; + $1106 = (_i64Add(($1070|0),($1071|0),1048576,0)|0); + $1107 = tempRet0; + $1108 = (_bitshift64Ashr(($1106|0),($1107|0),21)|0); + $1109 = tempRet0; + $1110 = (_i64Add(($962|0),($963|0),($942|0),($943|0))|0); + $1111 = tempRet0; + $1112 = (_i64Add(($1110|0),($1111|0),($976|0),($977|0))|0); + $1113 = tempRet0; + $1114 = (_i64Add(($1112|0),($1113|0),($1000|0),($1001|0))|0); + $1115 = tempRet0; + $1116 = (_i64Add(($1114|0),($1115|0),($1014|0),($1015|0))|0); + $1117 = tempRet0; + $1118 = (_i64Add(($1116|0),($1117|0),($1072|0),($1073|0))|0); + $1119 = tempRet0; + $1120 = (_i64Add(($1118|0),($1119|0),($754|0),($755|0))|0); + $1121 = tempRet0; + $1122 = (_i64Subtract(($1120|0),($1121|0),($898|0),($899|0))|0); + $1123 = tempRet0; + $1124 = (_i64Add(($1122|0),($1123|0),($1108|0),($1109|0))|0); + $1125 = tempRet0; + $1126 = (_bitshift64Shl(($1108|0),($1109|0),21)|0); + $1127 = tempRet0; + $1128 = (_i64Add(($1030|0),($1031|0),1048576,0)|0); + $1129 = tempRet0; + $1130 = (_bitshift64Ashr(($1128|0),($1129|0),21)|0); + $1131 = tempRet0; + $1132 = (_i64Add(($966|0),($967|0),($946|0),($947|0))|0); + $1133 = tempRet0; + $1134 = (_i64Add(($1132|0),($1133|0),($980|0),($981|0))|0); + $1135 = tempRet0; + $1136 = (_i64Add(($1134|0),($1135|0),($1004|0),($1005|0))|0); + $1137 = tempRet0; + $1138 = (_i64Add(($1136|0),($1137|0),($780|0),($781|0))|0); + $1139 = tempRet0; + $1140 = (_i64Subtract(($1138|0),($1139|0),($904|0),($905|0))|0); + $1141 = tempRet0; + $1142 = (_i64Add(($1140|0),($1141|0),($1130|0),($1131|0))|0); + $1143 = tempRet0; + $1144 = (_bitshift64Shl(($1130|0),($1131|0),21)|0); + $1145 = tempRet0; + $1146 = (_i64Subtract(($1030|0),($1031|0),($1144|0),($1145|0))|0); + $1147 = tempRet0; + $1148 = (_i64Add(($992|0),($993|0),1048576,0)|0); + $1149 = tempRet0; + $1150 = (_bitshift64Ashr(($1148|0),($1149|0),21)|0); + $1151 = tempRet0; + $1152 = (_i64Add(($970|0),($971|0),($950|0),($951|0))|0); + $1153 = tempRet0; + $1154 = (_i64Add(($1152|0),($1153|0),($802|0),($803|0))|0); + $1155 = tempRet0; + $1156 = (_i64Subtract(($1154|0),($1155|0),($910|0),($911|0))|0); + $1157 = tempRet0; + $1158 = (_i64Add(($1156|0),($1157|0),($1150|0),($1151|0))|0); + $1159 = tempRet0; + $1160 = (_bitshift64Shl(($1150|0),($1151|0),21)|0); + $1161 = tempRet0; + $1162 = (_i64Subtract(($992|0),($993|0),($1160|0),($1161|0))|0); + $1163 = tempRet0; + $1164 = (_i64Add(($958|0),($959|0),1048576,0)|0); + $1165 = tempRet0; + $1166 = (_bitshift64Ashr(($1164|0),($1165|0),21)|0); + $1167 = tempRet0; + $1168 = (_i64Add(($1166|0),($1167|0),($920|0),($921|0))|0); + $1169 = tempRet0; + $1170 = (_bitshift64Shl(($1166|0),($1167|0),21)|0); + $1171 = tempRet0; + $1172 = (_i64Subtract(($958|0),($959|0),($1170|0),($1171|0))|0); + $1173 = tempRet0; + $1174 = (_i64Add(($1084|0),($1085|0),1048576,0)|0); + $1175 = tempRet0; + $1176 = (_bitshift64Ashr(($1174|0),($1175|0),21)|0); + $1177 = tempRet0; + $1178 = (_bitshift64Shl(($1176|0),($1177|0),21)|0); + $1179 = tempRet0; + $1180 = (_i64Add(($1102|0),($1103|0),1048576,0)|0); + $1181 = tempRet0; + $1182 = (_bitshift64Ashr(($1180|0),($1181|0),21)|0); + $1183 = tempRet0; + $1184 = (_bitshift64Shl(($1182|0),($1183|0),21)|0); + $1185 = tempRet0; + $1186 = (_i64Add(($1124|0),($1125|0),1048576,0)|0); + $1187 = tempRet0; + $1188 = (_bitshift64Ashr(($1186|0),($1187|0),21)|0); + $1189 = tempRet0; + $1190 = (_i64Add(($1188|0),($1189|0),($1146|0),($1147|0))|0); + $1191 = tempRet0; + $1192 = (_bitshift64Shl(($1188|0),($1189|0),21)|0); + $1193 = tempRet0; + $1194 = (_i64Subtract(($1124|0),($1125|0),($1192|0),($1193|0))|0); + $1195 = tempRet0; + $1196 = (_i64Add(($1142|0),($1143|0),1048576,0)|0); + $1197 = tempRet0; + $1198 = (_bitshift64Ashr(($1196|0),($1197|0),21)|0); + $1199 = tempRet0; + $1200 = (_i64Add(($1198|0),($1199|0),($1162|0),($1163|0))|0); + $1201 = tempRet0; + $1202 = (_bitshift64Shl(($1198|0),($1199|0),21)|0); + $1203 = tempRet0; + $1204 = (_i64Subtract(($1142|0),($1143|0),($1202|0),($1203|0))|0); + $1205 = tempRet0; + $1206 = (_i64Add(($1158|0),($1159|0),1048576,0)|0); + $1207 = tempRet0; + $1208 = (_bitshift64Ashr(($1206|0),($1207|0),21)|0); + $1209 = tempRet0; + $1210 = (_i64Add(($1208|0),($1209|0),($1172|0),($1173|0))|0); + $1211 = tempRet0; + $1212 = (_bitshift64Shl(($1208|0),($1209|0),21)|0); + $1213 = tempRet0; + $1214 = (_i64Subtract(($1158|0),($1159|0),($1212|0),($1213|0))|0); + $1215 = tempRet0; + $1216 = (___muldi3(($1168|0),($1169|0),666643,0)|0); + $1217 = tempRet0; + $1218 = (_i64Add(($880|0),($881|0),($1216|0),($1217|0))|0); + $1219 = tempRet0; + $1220 = (___muldi3(($1168|0),($1169|0),470296,0)|0); + $1221 = tempRet0; + $1222 = (___muldi3(($1168|0),($1169|0),654183,0)|0); + $1223 = tempRet0; + $1224 = (___muldi3(($1168|0),($1169|0),-997805,-1)|0); + $1225 = tempRet0; + $1226 = (___muldi3(($1168|0),($1169|0),136657,0)|0); + $1227 = tempRet0; + $1228 = (___muldi3(($1168|0),($1169|0),-683901,-1)|0); + $1229 = tempRet0; + $1230 = (_i64Add(($1070|0),($1071|0),($1228|0),($1229|0))|0); + $1231 = tempRet0; + $1232 = (_i64Add(($1230|0),($1231|0),($1182|0),($1183|0))|0); + $1233 = tempRet0; + $1234 = (_i64Subtract(($1232|0),($1233|0),($1126|0),($1127|0))|0); + $1235 = tempRet0; + $1236 = (___muldi3(($1210|0),($1211|0),666643,0)|0); + $1237 = tempRet0; + $1238 = (___muldi3(($1210|0),($1211|0),470296,0)|0); + $1239 = tempRet0; + $1240 = (_i64Add(($1218|0),($1219|0),($1238|0),($1239|0))|0); + $1241 = tempRet0; + $1242 = (___muldi3(($1210|0),($1211|0),654183,0)|0); + $1243 = tempRet0; + $1244 = (___muldi3(($1210|0),($1211|0),-997805,-1)|0); + $1245 = tempRet0; + $1246 = (___muldi3(($1210|0),($1211|0),136657,0)|0); + $1247 = tempRet0; + $1248 = (___muldi3(($1210|0),($1211|0),-683901,-1)|0); + $1249 = tempRet0; + $1250 = (___muldi3(($1214|0),($1215|0),666643,0)|0); + $1251 = tempRet0; + $1252 = (_i64Add(($872|0),($873|0),($1250|0),($1251|0))|0); + $1253 = tempRet0; + $1254 = (___muldi3(($1214|0),($1215|0),470296,0)|0); + $1255 = tempRet0; + $1256 = (___muldi3(($1214|0),($1215|0),654183,0)|0); + $1257 = tempRet0; + $1258 = (_i64Add(($1240|0),($1241|0),($1256|0),($1257|0))|0); + $1259 = tempRet0; + $1260 = (___muldi3(($1214|0),($1215|0),-997805,-1)|0); + $1261 = tempRet0; + $1262 = (___muldi3(($1214|0),($1215|0),136657,0)|0); + $1263 = tempRet0; + $1264 = (___muldi3(($1214|0),($1215|0),-683901,-1)|0); + $1265 = tempRet0; + $1266 = (_i64Add(($1052|0),($1053|0),($1224|0),($1225|0))|0); + $1267 = tempRet0; + $1268 = (_i64Add(($1266|0),($1267|0),($1176|0),($1177|0))|0); + $1269 = tempRet0; + $1270 = (_i64Add(($1268|0),($1269|0),($1246|0),($1247|0))|0); + $1271 = tempRet0; + $1272 = (_i64Add(($1270|0),($1271|0),($1264|0),($1265|0))|0); + $1273 = tempRet0; + $1274 = (_i64Subtract(($1272|0),($1273|0),($1104|0),($1105|0))|0); + $1275 = tempRet0; + $1276 = (___muldi3(($1200|0),($1201|0),666643,0)|0); + $1277 = tempRet0; + $1278 = (___muldi3(($1200|0),($1201|0),470296,0)|0); + $1279 = tempRet0; + $1280 = (_i64Add(($1252|0),($1253|0),($1278|0),($1279|0))|0); + $1281 = tempRet0; + $1282 = (___muldi3(($1200|0),($1201|0),654183,0)|0); + $1283 = tempRet0; + $1284 = (___muldi3(($1200|0),($1201|0),-997805,-1)|0); + $1285 = tempRet0; + $1286 = (_i64Add(($1258|0),($1259|0),($1284|0),($1285|0))|0); + $1287 = tempRet0; + $1288 = (___muldi3(($1200|0),($1201|0),136657,0)|0); + $1289 = tempRet0; + $1290 = (___muldi3(($1200|0),($1201|0),-683901,-1)|0); + $1291 = tempRet0; + $1292 = (___muldi3(($1204|0),($1205|0),666643,0)|0); + $1293 = tempRet0; + $1294 = (___muldi3(($1204|0),($1205|0),470296,0)|0); + $1295 = tempRet0; + $1296 = (___muldi3(($1204|0),($1205|0),654183,0)|0); + $1297 = tempRet0; + $1298 = (___muldi3(($1204|0),($1205|0),-997805,-1)|0); + $1299 = tempRet0; + $1300 = (___muldi3(($1204|0),($1205|0),136657,0)|0); + $1301 = tempRet0; + $1302 = (___muldi3(($1204|0),($1205|0),-683901,-1)|0); + $1303 = tempRet0; + $1304 = (_i64Add(($1038|0),($1039|0),($1220|0),($1221|0))|0); + $1305 = tempRet0; + $1306 = (_i64Subtract(($1304|0),($1305|0),($1086|0),($1087|0))|0); + $1307 = tempRet0; + $1308 = (_i64Add(($1306|0),($1307|0),($1242|0),($1243|0))|0); + $1309 = tempRet0; + $1310 = (_i64Add(($1308|0),($1309|0),($1260|0),($1261|0))|0); + $1311 = tempRet0; + $1312 = (_i64Add(($1310|0),($1311|0),($1288|0),($1289|0))|0); + $1313 = tempRet0; + $1314 = (_i64Add(($1312|0),($1313|0),($1302|0),($1303|0))|0); + $1315 = tempRet0; + $1316 = (___muldi3(($1190|0),($1191|0),666643,0)|0); + $1317 = tempRet0; + $1318 = (_i64Add(($1316|0),($1317|0),($636|0),($637|0))|0); + $1319 = tempRet0; + $1320 = (___muldi3(($1190|0),($1191|0),470296,0)|0); + $1321 = tempRet0; + $1322 = (___muldi3(($1190|0),($1191|0),654183,0)|0); + $1323 = tempRet0; + $1324 = (_i64Add(($860|0),($861|0),($220|0),($221|0))|0); + $1325 = tempRet0; + $1326 = (_i64Subtract(($1324|0),($1325|0),($652|0),($653|0))|0); + $1327 = tempRet0; + $1328 = (_i64Add(($1326|0),($1327|0),($1276|0),($1277|0))|0); + $1329 = tempRet0; + $1330 = (_i64Add(($1328|0),($1329|0),($1322|0),($1323|0))|0); + $1331 = tempRet0; + $1332 = (_i64Add(($1330|0),($1331|0),($1294|0),($1295|0))|0); + $1333 = tempRet0; + $1334 = (___muldi3(($1190|0),($1191|0),-997805,-1)|0); + $1335 = tempRet0; + $1336 = (___muldi3(($1190|0),($1191|0),136657,0)|0); + $1337 = tempRet0; + $1338 = (_i64Add(($868|0),($869|0),($248|0),($249|0))|0); + $1339 = tempRet0; + $1340 = (_i64Subtract(($1338|0),($1339|0),($672|0),($673|0))|0); + $1341 = tempRet0; + $1342 = (_i64Add(($1340|0),($1341|0),($1236|0),($1237|0))|0); + $1343 = tempRet0; + $1344 = (_i64Add(($1342|0),($1343|0),($1254|0),($1255|0))|0); + $1345 = tempRet0; + $1346 = (_i64Add(($1344|0),($1345|0),($1282|0),($1283|0))|0); + $1347 = tempRet0; + $1348 = (_i64Add(($1346|0),($1347|0),($1336|0),($1337|0))|0); + $1349 = tempRet0; + $1350 = (_i64Add(($1348|0),($1349|0),($1298|0),($1299|0))|0); + $1351 = tempRet0; + $1352 = (___muldi3(($1190|0),($1191|0),-683901,-1)|0); + $1353 = tempRet0; + $1354 = (_i64Add(($1318|0),($1319|0),1048576,0)|0); + $1355 = tempRet0; + $1356 = (_bitshift64Ashr(($1354|0),($1355|0),21)|0); + $1357 = tempRet0; + $1358 = (_i64Add(($864|0),($865|0),($1320|0),($1321|0))|0); + $1359 = tempRet0; + $1360 = (_i64Add(($1358|0),($1359|0),($1292|0),($1293|0))|0); + $1361 = tempRet0; + $1362 = (_i64Add(($1360|0),($1361|0),($1356|0),($1357|0))|0); + $1363 = tempRet0; + $1364 = (_bitshift64Shl(($1356|0),($1357|0),21)|0); + $1365 = tempRet0; + $1366 = (_i64Subtract(($1318|0),($1319|0),($1364|0),($1365|0))|0); + $1367 = tempRet0; + $1368 = (_i64Add(($1332|0),($1333|0),1048576,0)|0); + $1369 = tempRet0; + $1370 = (_bitshift64Ashr(($1368|0),($1369|0),21)|0); + $1371 = tempRet0; + $1372 = (_i64Add(($1280|0),($1281|0),($1334|0),($1335|0))|0); + $1373 = tempRet0; + $1374 = (_i64Add(($1372|0),($1373|0),($1296|0),($1297|0))|0); + $1375 = tempRet0; + $1376 = (_i64Add(($1374|0),($1375|0),($1370|0),($1371|0))|0); + $1377 = tempRet0; + $1378 = (_bitshift64Shl(($1370|0),($1371|0),21)|0); + $1379 = tempRet0; + $1380 = (_i64Add(($1350|0),($1351|0),1048576,0)|0); + $1381 = tempRet0; + $1382 = (_bitshift64Ashr(($1380|0),($1381|0),21)|0); + $1383 = tempRet0; + $1384 = (_i64Add(($1286|0),($1287|0),($1352|0),($1353|0))|0); + $1385 = tempRet0; + $1386 = (_i64Add(($1384|0),($1385|0),($1300|0),($1301|0))|0); + $1387 = tempRet0; + $1388 = (_i64Add(($1386|0),($1387|0),($1382|0),($1383|0))|0); + $1389 = tempRet0; + $1390 = (_bitshift64Shl(($1382|0),($1383|0),21)|0); + $1391 = tempRet0; + $1392 = (_i64Add(($1314|0),($1315|0),1048576,0)|0); + $1393 = tempRet0; + $1394 = (_bitshift64Ashr(($1392|0),($1393|0),21)|0); + $1395 = tempRet0; + $1396 = (_i64Add(($1084|0),($1085|0),($1222|0),($1223|0))|0); + $1397 = tempRet0; + $1398 = (_i64Add(($1396|0),($1397|0),($1244|0),($1245|0))|0); + $1399 = tempRet0; + $1400 = (_i64Subtract(($1398|0),($1399|0),($1178|0),($1179|0))|0); + $1401 = tempRet0; + $1402 = (_i64Add(($1400|0),($1401|0),($1262|0),($1263|0))|0); + $1403 = tempRet0; + $1404 = (_i64Add(($1402|0),($1403|0),($1290|0),($1291|0))|0); + $1405 = tempRet0; + $1406 = (_i64Add(($1404|0),($1405|0),($1394|0),($1395|0))|0); + $1407 = tempRet0; + $1408 = (_bitshift64Shl(($1394|0),($1395|0),21)|0); + $1409 = tempRet0; + $1410 = (_i64Subtract(($1314|0),($1315|0),($1408|0),($1409|0))|0); + $1411 = tempRet0; + $1412 = (_i64Add(($1274|0),($1275|0),1048576,0)|0); + $1413 = tempRet0; + $1414 = (_bitshift64Ashr(($1412|0),($1413|0),21)|0); + $1415 = tempRet0; + $1416 = (_i64Add(($1248|0),($1249|0),($1226|0),($1227|0))|0); + $1417 = tempRet0; + $1418 = (_i64Add(($1416|0),($1417|0),($1102|0),($1103|0))|0); + $1419 = tempRet0; + $1420 = (_i64Subtract(($1418|0),($1419|0),($1184|0),($1185|0))|0); + $1421 = tempRet0; + $1422 = (_i64Add(($1420|0),($1421|0),($1414|0),($1415|0))|0); + $1423 = tempRet0; + $1424 = (_bitshift64Shl(($1414|0),($1415|0),21)|0); + $1425 = tempRet0; + $1426 = (_i64Subtract(($1274|0),($1275|0),($1424|0),($1425|0))|0); + $1427 = tempRet0; + $1428 = (_i64Add(($1234|0),($1235|0),1048576,0)|0); + $1429 = tempRet0; + $1430 = (_bitshift64Ashr(($1428|0),($1429|0),21)|0); + $1431 = tempRet0; + $1432 = (_i64Add(($1194|0),($1195|0),($1430|0),($1431|0))|0); + $1433 = tempRet0; + $1434 = (_bitshift64Shl(($1430|0),($1431|0),21)|0); + $1435 = tempRet0; + $1436 = (_i64Add(($1362|0),($1363|0),1048576,0)|0); + $1437 = tempRet0; + $1438 = (_bitshift64Ashr(($1436|0),($1437|0),21)|0); + $1439 = tempRet0; + $1440 = (_bitshift64Shl(($1438|0),($1439|0),21)|0); + $1441 = tempRet0; + $1442 = (_i64Add(($1376|0),($1377|0),1048576,0)|0); + $1443 = tempRet0; + $1444 = (_bitshift64Ashr(($1442|0),($1443|0),21)|0); + $1445 = tempRet0; + $1446 = (_bitshift64Shl(($1444|0),($1445|0),21)|0); + $1447 = tempRet0; + $1448 = (_i64Add(($1388|0),($1389|0),1048576,0)|0); + $1449 = tempRet0; + $1450 = (_bitshift64Ashr(($1448|0),($1449|0),21)|0); + $1451 = tempRet0; + $1452 = (_i64Add(($1410|0),($1411|0),($1450|0),($1451|0))|0); + $1453 = tempRet0; + $1454 = (_bitshift64Shl(($1450|0),($1451|0),21)|0); + $1455 = tempRet0; + $1456 = (_i64Add(($1406|0),($1407|0),1048576,0)|0); + $1457 = tempRet0; + $1458 = (_bitshift64Ashr(($1456|0),($1457|0),21)|0); + $1459 = tempRet0; + $1460 = (_i64Add(($1426|0),($1427|0),($1458|0),($1459|0))|0); + $1461 = tempRet0; + $1462 = (_bitshift64Shl(($1458|0),($1459|0),21)|0); + $1463 = tempRet0; + $1464 = (_i64Subtract(($1406|0),($1407|0),($1462|0),($1463|0))|0); + $1465 = tempRet0; + $1466 = (_i64Add(($1422|0),($1423|0),1048576,0)|0); + $1467 = tempRet0; + $1468 = (_bitshift64Ashr(($1466|0),($1467|0),21)|0); + $1469 = tempRet0; + $1470 = (_bitshift64Shl(($1468|0),($1469|0),21)|0); + $1471 = tempRet0; + $1472 = (_i64Subtract(($1422|0),($1423|0),($1470|0),($1471|0))|0); + $1473 = tempRet0; + $1474 = (_i64Add(($1432|0),($1433|0),1048576,0)|0); + $1475 = tempRet0; + $1476 = (_bitshift64Ashr(($1474|0),($1475|0),21)|0); + $1477 = tempRet0; + $1478 = (_bitshift64Shl(($1476|0),($1477|0),21)|0); + $1479 = tempRet0; + $1480 = (_i64Subtract(($1432|0),($1433|0),($1478|0),($1479|0))|0); + $1481 = tempRet0; + $1482 = (___muldi3(($1476|0),($1477|0),666643,0)|0); + $1483 = tempRet0; + $1484 = (_i64Add(($1366|0),($1367|0),($1482|0),($1483|0))|0); + $1485 = tempRet0; + $1486 = (___muldi3(($1476|0),($1477|0),470296,0)|0); + $1487 = tempRet0; + $1488 = (___muldi3(($1476|0),($1477|0),654183,0)|0); + $1489 = tempRet0; + $1490 = (___muldi3(($1476|0),($1477|0),-997805,-1)|0); + $1491 = tempRet0; + $1492 = (___muldi3(($1476|0),($1477|0),136657,0)|0); + $1493 = tempRet0; + $1494 = (___muldi3(($1476|0),($1477|0),-683901,-1)|0); + $1495 = tempRet0; + $1496 = (_bitshift64Ashr(($1484|0),($1485|0),21)|0); + $1497 = tempRet0; + $1498 = (_i64Add(($1486|0),($1487|0),($1362|0),($1363|0))|0); + $1499 = tempRet0; + $1500 = (_i64Subtract(($1498|0),($1499|0),($1440|0),($1441|0))|0); + $1501 = tempRet0; + $1502 = (_i64Add(($1500|0),($1501|0),($1496|0),($1497|0))|0); + $1503 = tempRet0; + $1504 = (_bitshift64Shl(($1496|0),($1497|0),21)|0); + $1505 = tempRet0; + $1506 = (_i64Subtract(($1484|0),($1485|0),($1504|0),($1505|0))|0); + $1507 = tempRet0; + $1508 = (_bitshift64Ashr(($1502|0),($1503|0),21)|0); + $1509 = tempRet0; + $1510 = (_i64Add(($1488|0),($1489|0),($1332|0),($1333|0))|0); + $1511 = tempRet0; + $1512 = (_i64Subtract(($1510|0),($1511|0),($1378|0),($1379|0))|0); + $1513 = tempRet0; + $1514 = (_i64Add(($1512|0),($1513|0),($1438|0),($1439|0))|0); + $1515 = tempRet0; + $1516 = (_i64Add(($1514|0),($1515|0),($1508|0),($1509|0))|0); + $1517 = tempRet0; + $1518 = (_bitshift64Shl(($1508|0),($1509|0),21)|0); + $1519 = tempRet0; + $1520 = (_i64Subtract(($1502|0),($1503|0),($1518|0),($1519|0))|0); + $1521 = tempRet0; + $1522 = (_bitshift64Ashr(($1516|0),($1517|0),21)|0); + $1523 = tempRet0; + $1524 = (_i64Add(($1376|0),($1377|0),($1490|0),($1491|0))|0); + $1525 = tempRet0; + $1526 = (_i64Subtract(($1524|0),($1525|0),($1446|0),($1447|0))|0); + $1527 = tempRet0; + $1528 = (_i64Add(($1526|0),($1527|0),($1522|0),($1523|0))|0); + $1529 = tempRet0; + $1530 = (_bitshift64Shl(($1522|0),($1523|0),21)|0); + $1531 = tempRet0; + $1532 = (_i64Subtract(($1516|0),($1517|0),($1530|0),($1531|0))|0); + $1533 = tempRet0; + $1534 = (_bitshift64Ashr(($1528|0),($1529|0),21)|0); + $1535 = tempRet0; + $1536 = (_i64Add(($1492|0),($1493|0),($1350|0),($1351|0))|0); + $1537 = tempRet0; + $1538 = (_i64Subtract(($1536|0),($1537|0),($1390|0),($1391|0))|0); + $1539 = tempRet0; + $1540 = (_i64Add(($1538|0),($1539|0),($1444|0),($1445|0))|0); + $1541 = tempRet0; + $1542 = (_i64Add(($1540|0),($1541|0),($1534|0),($1535|0))|0); + $1543 = tempRet0; + $1544 = (_bitshift64Shl(($1534|0),($1535|0),21)|0); + $1545 = tempRet0; + $1546 = (_i64Subtract(($1528|0),($1529|0),($1544|0),($1545|0))|0); + $1547 = tempRet0; + $1548 = (_bitshift64Ashr(($1542|0),($1543|0),21)|0); + $1549 = tempRet0; + $1550 = (_i64Add(($1388|0),($1389|0),($1494|0),($1495|0))|0); + $1551 = tempRet0; + $1552 = (_i64Subtract(($1550|0),($1551|0),($1454|0),($1455|0))|0); + $1553 = tempRet0; + $1554 = (_i64Add(($1552|0),($1553|0),($1548|0),($1549|0))|0); + $1555 = tempRet0; + $1556 = (_bitshift64Shl(($1548|0),($1549|0),21)|0); + $1557 = tempRet0; + $1558 = (_i64Subtract(($1542|0),($1543|0),($1556|0),($1557|0))|0); + $1559 = tempRet0; + $1560 = (_bitshift64Ashr(($1554|0),($1555|0),21)|0); + $1561 = tempRet0; + $1562 = (_i64Add(($1452|0),($1453|0),($1560|0),($1561|0))|0); + $1563 = tempRet0; + $1564 = (_bitshift64Shl(($1560|0),($1561|0),21)|0); + $1565 = tempRet0; + $1566 = (_i64Subtract(($1554|0),($1555|0),($1564|0),($1565|0))|0); + $1567 = tempRet0; + $1568 = (_bitshift64Ashr(($1562|0),($1563|0),21)|0); + $1569 = tempRet0; + $1570 = (_i64Add(($1568|0),($1569|0),($1464|0),($1465|0))|0); + $1571 = tempRet0; + $1572 = (_bitshift64Shl(($1568|0),($1569|0),21)|0); + $1573 = tempRet0; + $1574 = (_i64Subtract(($1562|0),($1563|0),($1572|0),($1573|0))|0); + $1575 = tempRet0; + $1576 = (_bitshift64Ashr(($1570|0),($1571|0),21)|0); + $1577 = tempRet0; + $1578 = (_i64Add(($1460|0),($1461|0),($1576|0),($1577|0))|0); + $1579 = tempRet0; + $1580 = (_bitshift64Shl(($1576|0),($1577|0),21)|0); + $1581 = tempRet0; + $1582 = (_i64Subtract(($1570|0),($1571|0),($1580|0),($1581|0))|0); + $1583 = tempRet0; + $1584 = (_bitshift64Ashr(($1578|0),($1579|0),21)|0); + $1585 = tempRet0; + $1586 = (_i64Add(($1584|0),($1585|0),($1472|0),($1473|0))|0); + $1587 = tempRet0; + $1588 = (_bitshift64Shl(($1584|0),($1585|0),21)|0); + $1589 = tempRet0; + $1590 = (_i64Subtract(($1578|0),($1579|0),($1588|0),($1589|0))|0); + $1591 = tempRet0; + $1592 = (_bitshift64Ashr(($1586|0),($1587|0),21)|0); + $1593 = tempRet0; + $1594 = (_i64Add(($1468|0),($1469|0),($1234|0),($1235|0))|0); + $1595 = tempRet0; + $1596 = (_i64Subtract(($1594|0),($1595|0),($1434|0),($1435|0))|0); + $1597 = tempRet0; + $1598 = (_i64Add(($1596|0),($1597|0),($1592|0),($1593|0))|0); + $1599 = tempRet0; + $1600 = (_bitshift64Shl(($1592|0),($1593|0),21)|0); + $1601 = tempRet0; + $1602 = (_i64Subtract(($1586|0),($1587|0),($1600|0),($1601|0))|0); + $1603 = tempRet0; + $1604 = (_bitshift64Ashr(($1598|0),($1599|0),21)|0); + $1605 = tempRet0; + $1606 = (_i64Add(($1604|0),($1605|0),($1480|0),($1481|0))|0); + $1607 = tempRet0; + $1608 = (_bitshift64Shl(($1604|0),($1605|0),21)|0); + $1609 = tempRet0; + $1610 = (_i64Subtract(($1598|0),($1599|0),($1608|0),($1609|0))|0); + $1611 = tempRet0; + $1612 = (_bitshift64Ashr(($1606|0),($1607|0),21)|0); + $1613 = tempRet0; + $1614 = (_bitshift64Shl(($1612|0),($1613|0),21)|0); + $1615 = tempRet0; + $1616 = (_i64Subtract(($1606|0),($1607|0),($1614|0),($1615|0))|0); + $1617 = tempRet0; + $1618 = (___muldi3(($1612|0),($1613|0),666643,0)|0); + $1619 = tempRet0; + $1620 = (_i64Add(($1618|0),($1619|0),($1506|0),($1507|0))|0); + $1621 = tempRet0; + $1622 = (___muldi3(($1612|0),($1613|0),470296,0)|0); + $1623 = tempRet0; + $1624 = (_i64Add(($1520|0),($1521|0),($1622|0),($1623|0))|0); + $1625 = tempRet0; + $1626 = (___muldi3(($1612|0),($1613|0),654183,0)|0); + $1627 = tempRet0; + $1628 = (_i64Add(($1532|0),($1533|0),($1626|0),($1627|0))|0); + $1629 = tempRet0; + $1630 = (___muldi3(($1612|0),($1613|0),-997805,-1)|0); + $1631 = tempRet0; + $1632 = (_i64Add(($1546|0),($1547|0),($1630|0),($1631|0))|0); + $1633 = tempRet0; + $1634 = (___muldi3(($1612|0),($1613|0),136657,0)|0); + $1635 = tempRet0; + $1636 = (_i64Add(($1558|0),($1559|0),($1634|0),($1635|0))|0); + $1637 = tempRet0; + $1638 = (___muldi3(($1612|0),($1613|0),-683901,-1)|0); + $1639 = tempRet0; + $1640 = (_i64Add(($1566|0),($1567|0),($1638|0),($1639|0))|0); + $1641 = tempRet0; + $1642 = (_bitshift64Ashr(($1620|0),($1621|0),21)|0); + $1643 = tempRet0; + $1644 = (_i64Add(($1624|0),($1625|0),($1642|0),($1643|0))|0); + $1645 = tempRet0; + $1646 = (_bitshift64Shl(($1642|0),($1643|0),21)|0); + $1647 = tempRet0; + $1648 = (_i64Subtract(($1620|0),($1621|0),($1646|0),($1647|0))|0); + $1649 = tempRet0; + $1650 = (_bitshift64Ashr(($1644|0),($1645|0),21)|0); + $1651 = tempRet0; + $1652 = (_i64Add(($1628|0),($1629|0),($1650|0),($1651|0))|0); + $1653 = tempRet0; + $1654 = (_bitshift64Shl(($1650|0),($1651|0),21)|0); + $1655 = tempRet0; + $1656 = (_i64Subtract(($1644|0),($1645|0),($1654|0),($1655|0))|0); + $1657 = tempRet0; + $1658 = (_bitshift64Ashr(($1652|0),($1653|0),21)|0); + $1659 = tempRet0; + $1660 = (_i64Add(($1632|0),($1633|0),($1658|0),($1659|0))|0); + $1661 = tempRet0; + $1662 = (_bitshift64Shl(($1658|0),($1659|0),21)|0); + $1663 = tempRet0; + $1664 = (_i64Subtract(($1652|0),($1653|0),($1662|0),($1663|0))|0); + $1665 = tempRet0; + $1666 = (_bitshift64Ashr(($1660|0),($1661|0),21)|0); + $1667 = tempRet0; + $1668 = (_i64Add(($1636|0),($1637|0),($1666|0),($1667|0))|0); + $1669 = tempRet0; + $1670 = (_bitshift64Shl(($1666|0),($1667|0),21)|0); + $1671 = tempRet0; + $1672 = (_i64Subtract(($1660|0),($1661|0),($1670|0),($1671|0))|0); + $1673 = tempRet0; + $1674 = (_bitshift64Ashr(($1668|0),($1669|0),21)|0); + $1675 = tempRet0; + $1676 = (_i64Add(($1640|0),($1641|0),($1674|0),($1675|0))|0); + $1677 = tempRet0; + $1678 = (_bitshift64Shl(($1674|0),($1675|0),21)|0); + $1679 = tempRet0; + $1680 = (_i64Subtract(($1668|0),($1669|0),($1678|0),($1679|0))|0); + $1681 = tempRet0; + $1682 = (_bitshift64Ashr(($1676|0),($1677|0),21)|0); + $1683 = tempRet0; + $1684 = (_i64Add(($1682|0),($1683|0),($1574|0),($1575|0))|0); + $1685 = tempRet0; + $1686 = (_bitshift64Shl(($1682|0),($1683|0),21)|0); + $1687 = tempRet0; + $1688 = (_i64Subtract(($1676|0),($1677|0),($1686|0),($1687|0))|0); + $1689 = tempRet0; + $1690 = (_bitshift64Ashr(($1684|0),($1685|0),21)|0); + $1691 = tempRet0; + $1692 = (_i64Add(($1690|0),($1691|0),($1582|0),($1583|0))|0); + $1693 = tempRet0; + $1694 = (_bitshift64Shl(($1690|0),($1691|0),21)|0); + $1695 = tempRet0; + $1696 = (_i64Subtract(($1684|0),($1685|0),($1694|0),($1695|0))|0); + $1697 = tempRet0; + $1698 = (_bitshift64Ashr(($1692|0),($1693|0),21)|0); + $1699 = tempRet0; + $1700 = (_i64Add(($1698|0),($1699|0),($1590|0),($1591|0))|0); + $1701 = tempRet0; + $1702 = (_bitshift64Shl(($1698|0),($1699|0),21)|0); + $1703 = tempRet0; + $1704 = (_i64Subtract(($1692|0),($1693|0),($1702|0),($1703|0))|0); + $1705 = tempRet0; + $1706 = (_bitshift64Ashr(($1700|0),($1701|0),21)|0); + $1707 = tempRet0; + $1708 = (_i64Add(($1706|0),($1707|0),($1602|0),($1603|0))|0); + $1709 = tempRet0; + $1710 = (_bitshift64Shl(($1706|0),($1707|0),21)|0); + $1711 = tempRet0; + $1712 = (_i64Subtract(($1700|0),($1701|0),($1710|0),($1711|0))|0); + $1713 = tempRet0; + $1714 = (_bitshift64Ashr(($1708|0),($1709|0),21)|0); + $1715 = tempRet0; + $1716 = (_i64Add(($1714|0),($1715|0),($1610|0),($1611|0))|0); + $1717 = tempRet0; + $1718 = (_bitshift64Shl(($1714|0),($1715|0),21)|0); + $1719 = tempRet0; + $1720 = (_i64Subtract(($1708|0),($1709|0),($1718|0),($1719|0))|0); + $1721 = tempRet0; + $1722 = (_bitshift64Ashr(($1716|0),($1717|0),21)|0); + $1723 = tempRet0; + $1724 = (_i64Add(($1722|0),($1723|0),($1616|0),($1617|0))|0); + $1725 = tempRet0; + $1726 = (_bitshift64Shl(($1722|0),($1723|0),21)|0); + $1727 = tempRet0; + $1728 = (_i64Subtract(($1716|0),($1717|0),($1726|0),($1727|0))|0); + $1729 = tempRet0; + $1730 = $1648&255; + HEAP8[$0>>0] = $1730; + $1731 = (_bitshift64Lshr(($1648|0),($1649|0),8)|0); + $1732 = tempRet0; + $1733 = $1731&255; + $1734 = ((($0)) + 1|0); + HEAP8[$1734>>0] = $1733; + $1735 = (_bitshift64Lshr(($1648|0),($1649|0),16)|0); + $1736 = tempRet0; + $1737 = (_bitshift64Shl(($1656|0),($1657|0),5)|0); + $1738 = tempRet0; + $1739 = $1737 | $1735; + $1738 | $1736; + $1740 = $1739&255; + $1741 = ((($0)) + 2|0); + HEAP8[$1741>>0] = $1740; + $1742 = (_bitshift64Lshr(($1656|0),($1657|0),3)|0); + $1743 = tempRet0; + $1744 = $1742&255; + $1745 = ((($0)) + 3|0); + HEAP8[$1745>>0] = $1744; + $1746 = (_bitshift64Lshr(($1656|0),($1657|0),11)|0); + $1747 = tempRet0; + $1748 = $1746&255; + $1749 = ((($0)) + 4|0); + HEAP8[$1749>>0] = $1748; + $1750 = (_bitshift64Lshr(($1656|0),($1657|0),19)|0); + $1751 = tempRet0; + $1752 = (_bitshift64Shl(($1664|0),($1665|0),2)|0); + $1753 = tempRet0; + $1754 = $1752 | $1750; + $1753 | $1751; + $1755 = $1754&255; + $1756 = ((($0)) + 5|0); + HEAP8[$1756>>0] = $1755; + $1757 = (_bitshift64Lshr(($1664|0),($1665|0),6)|0); + $1758 = tempRet0; + $1759 = $1757&255; + $1760 = ((($0)) + 6|0); + HEAP8[$1760>>0] = $1759; + $1761 = (_bitshift64Lshr(($1664|0),($1665|0),14)|0); + $1762 = tempRet0; + $1763 = (_bitshift64Shl(($1672|0),($1673|0),7)|0); + $1764 = tempRet0; + $1765 = $1763 | $1761; + $1764 | $1762; + $1766 = $1765&255; + $1767 = ((($0)) + 7|0); + HEAP8[$1767>>0] = $1766; + $1768 = (_bitshift64Lshr(($1672|0),($1673|0),1)|0); + $1769 = tempRet0; + $1770 = $1768&255; + $1771 = ((($0)) + 8|0); + HEAP8[$1771>>0] = $1770; + $1772 = (_bitshift64Lshr(($1672|0),($1673|0),9)|0); + $1773 = tempRet0; + $1774 = $1772&255; + $1775 = ((($0)) + 9|0); + HEAP8[$1775>>0] = $1774; + $1776 = (_bitshift64Lshr(($1672|0),($1673|0),17)|0); + $1777 = tempRet0; + $1778 = (_bitshift64Shl(($1680|0),($1681|0),4)|0); + $1779 = tempRet0; + $1780 = $1778 | $1776; + $1779 | $1777; + $1781 = $1780&255; + $1782 = ((($0)) + 10|0); + HEAP8[$1782>>0] = $1781; + $1783 = (_bitshift64Lshr(($1680|0),($1681|0),4)|0); + $1784 = tempRet0; + $1785 = $1783&255; + $1786 = ((($0)) + 11|0); + HEAP8[$1786>>0] = $1785; + $1787 = (_bitshift64Lshr(($1680|0),($1681|0),12)|0); + $1788 = tempRet0; + $1789 = $1787&255; + $1790 = ((($0)) + 12|0); + HEAP8[$1790>>0] = $1789; + $1791 = (_bitshift64Lshr(($1680|0),($1681|0),20)|0); + $1792 = tempRet0; + $1793 = (_bitshift64Shl(($1688|0),($1689|0),1)|0); + $1794 = tempRet0; + $1795 = $1793 | $1791; + $1794 | $1792; + $1796 = $1795&255; + $1797 = ((($0)) + 13|0); + HEAP8[$1797>>0] = $1796; + $1798 = (_bitshift64Lshr(($1688|0),($1689|0),7)|0); + $1799 = tempRet0; + $1800 = $1798&255; + $1801 = ((($0)) + 14|0); + HEAP8[$1801>>0] = $1800; + $1802 = (_bitshift64Lshr(($1688|0),($1689|0),15)|0); + $1803 = tempRet0; + $1804 = (_bitshift64Shl(($1696|0),($1697|0),6)|0); + $1805 = tempRet0; + $1806 = $1804 | $1802; + $1805 | $1803; + $1807 = $1806&255; + $1808 = ((($0)) + 15|0); + HEAP8[$1808>>0] = $1807; + $1809 = (_bitshift64Lshr(($1696|0),($1697|0),2)|0); + $1810 = tempRet0; + $1811 = $1809&255; + $1812 = ((($0)) + 16|0); + HEAP8[$1812>>0] = $1811; + $1813 = (_bitshift64Lshr(($1696|0),($1697|0),10)|0); + $1814 = tempRet0; + $1815 = $1813&255; + $1816 = ((($0)) + 17|0); + HEAP8[$1816>>0] = $1815; + $1817 = (_bitshift64Lshr(($1696|0),($1697|0),18)|0); + $1818 = tempRet0; + $1819 = (_bitshift64Shl(($1704|0),($1705|0),3)|0); + $1820 = tempRet0; + $1821 = $1819 | $1817; + $1820 | $1818; + $1822 = $1821&255; + $1823 = ((($0)) + 18|0); + HEAP8[$1823>>0] = $1822; + $1824 = (_bitshift64Lshr(($1704|0),($1705|0),5)|0); + $1825 = tempRet0; + $1826 = $1824&255; + $1827 = ((($0)) + 19|0); + HEAP8[$1827>>0] = $1826; + $1828 = (_bitshift64Lshr(($1704|0),($1705|0),13)|0); + $1829 = tempRet0; + $1830 = $1828&255; + $1831 = ((($0)) + 20|0); + HEAP8[$1831>>0] = $1830; + $1832 = $1712&255; + $1833 = ((($0)) + 21|0); + HEAP8[$1833>>0] = $1832; + $1834 = (_bitshift64Lshr(($1712|0),($1713|0),8)|0); + $1835 = tempRet0; + $1836 = $1834&255; + $1837 = ((($0)) + 22|0); + HEAP8[$1837>>0] = $1836; + $1838 = (_bitshift64Lshr(($1712|0),($1713|0),16)|0); + $1839 = tempRet0; + $1840 = (_bitshift64Shl(($1720|0),($1721|0),5)|0); + $1841 = tempRet0; + $1842 = $1840 | $1838; + $1841 | $1839; + $1843 = $1842&255; + $1844 = ((($0)) + 23|0); + HEAP8[$1844>>0] = $1843; + $1845 = (_bitshift64Lshr(($1720|0),($1721|0),3)|0); + $1846 = tempRet0; + $1847 = $1845&255; + $1848 = ((($0)) + 24|0); + HEAP8[$1848>>0] = $1847; + $1849 = (_bitshift64Lshr(($1720|0),($1721|0),11)|0); + $1850 = tempRet0; + $1851 = $1849&255; + $1852 = ((($0)) + 25|0); + HEAP8[$1852>>0] = $1851; + $1853 = (_bitshift64Lshr(($1720|0),($1721|0),19)|0); + $1854 = tempRet0; + $1855 = (_bitshift64Shl(($1728|0),($1729|0),2)|0); + $1856 = tempRet0; + $1857 = $1855 | $1853; + $1856 | $1854; + $1858 = $1857&255; + $1859 = ((($0)) + 26|0); + HEAP8[$1859>>0] = $1858; + $1860 = (_bitshift64Lshr(($1728|0),($1729|0),6)|0); + $1861 = tempRet0; + $1862 = $1860&255; + $1863 = ((($0)) + 27|0); + HEAP8[$1863>>0] = $1862; + $1864 = (_bitshift64Lshr(($1728|0),($1729|0),14)|0); + $1865 = tempRet0; + $1866 = (_bitshift64Shl(($1724|0),($1725|0),7)|0); + $1867 = tempRet0; + $1868 = $1864 | $1866; + $1865 | $1867; + $1869 = $1868&255; + $1870 = ((($0)) + 28|0); + HEAP8[$1870>>0] = $1869; + $1871 = (_bitshift64Lshr(($1724|0),($1725|0),1)|0); + $1872 = tempRet0; + $1873 = $1871&255; + $1874 = ((($0)) + 29|0); + HEAP8[$1874>>0] = $1873; + $1875 = (_bitshift64Lshr(($1724|0),($1725|0),9)|0); + $1876 = tempRet0; + $1877 = $1875&255; + $1878 = ((($0)) + 30|0); + HEAP8[$1878>>0] = $1877; + $1879 = (_bitshift64Lshr(($1724|0),($1725|0),17)|0); + $1880 = tempRet0; + $1881 = $1879&255; + $1882 = ((($0)) + 31|0); + HEAP8[$1882>>0] = $1881; + return; +} +function _load_3_47($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = ((($0)) + 1|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = (_bitshift64Shl(($5|0),0,8)|0); + $7 = tempRet0; + $8 = $6 | $2; + $9 = ((($0)) + 2|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = (_bitshift64Shl(($11|0),0,16)|0); + $13 = tempRet0; + $14 = $8 | $12; + $15 = $7 | $13; + tempRet0 = ($15); + return ($14|0); +} +function _load_4_48($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; + var $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = ((($0)) + 1|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = (_bitshift64Shl(($5|0),0,8)|0); + $7 = tempRet0; + $8 = $6 | $2; + $9 = ((($0)) + 2|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = (_bitshift64Shl(($11|0),0,16)|0); + $13 = tempRet0; + $14 = $8 | $12; + $15 = $7 | $13; + $16 = ((($0)) + 3|0); + $17 = HEAP8[$16>>0]|0; + $18 = $17&255; + $19 = (_bitshift64Shl(($18|0),0,24)|0); + $20 = tempRet0; + $21 = $14 | $19; + $22 = $15 | $20; + tempRet0 = ($22); + return ($21|0); +} +function _crypto_sign_ed25519_ref10_sc_reduce($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0, $1015 = 0; + var $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0; + var $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0; + var $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0; + var $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0; + var $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0; + var $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0; + var $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0; + var $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0; + var $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0; + var $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0; + var $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0; + var $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0; + var $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0; + var $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0; + var $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0; + var $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0; + var $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0; + var $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0; + var $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0; + var $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0; + var $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0; + var $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0; + var $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0; + var $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0; + var $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0; + var $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0; + var $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0; + var $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0; + var $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0; + var $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0; + var $636 = 0, $637 = 0, $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0; + var $654 = 0, $655 = 0, $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0; + var $672 = 0, $673 = 0, $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0; + var $690 = 0, $691 = 0, $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0; + var $708 = 0, $709 = 0, $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0; + var $726 = 0, $727 = 0, $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0; + var $744 = 0, $745 = 0, $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0; + var $762 = 0, $763 = 0, $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0; + var $780 = 0, $781 = 0, $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0; + var $799 = 0, $8 = 0, $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0; + var $816 = 0, $817 = 0, $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0; + var $834 = 0, $835 = 0, $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0; + var $852 = 0, $853 = 0, $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0; + var $870 = 0, $871 = 0, $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0; + var $889 = 0, $89 = 0, $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0; + var $906 = 0, $907 = 0, $908 = 0, $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0; + var $924 = 0, $925 = 0, $926 = 0, $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0; + var $942 = 0, $943 = 0, $944 = 0, $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0; + var $960 = 0, $961 = 0, $962 = 0, $963 = 0, $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0; + var $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0; + var $997 = 0, $998 = 0, $999 = 0, label = 0, sp = 0; + sp = STACKTOP; + $1 = (_load_3_51($0)|0); + $2 = tempRet0; + $3 = $1 & 2097151; + $4 = ((($0)) + 2|0); + $5 = (_load_4_52($4)|0); + $6 = tempRet0; + $7 = (_bitshift64Lshr(($5|0),($6|0),5)|0); + $8 = tempRet0; + $9 = $7 & 2097151; + $10 = ((($0)) + 5|0); + $11 = (_load_3_51($10)|0); + $12 = tempRet0; + $13 = (_bitshift64Lshr(($11|0),($12|0),2)|0); + $14 = tempRet0; + $15 = $13 & 2097151; + $16 = ((($0)) + 7|0); + $17 = (_load_4_52($16)|0); + $18 = tempRet0; + $19 = (_bitshift64Lshr(($17|0),($18|0),7)|0); + $20 = tempRet0; + $21 = $19 & 2097151; + $22 = ((($0)) + 10|0); + $23 = (_load_4_52($22)|0); + $24 = tempRet0; + $25 = (_bitshift64Lshr(($23|0),($24|0),4)|0); + $26 = tempRet0; + $27 = $25 & 2097151; + $28 = ((($0)) + 13|0); + $29 = (_load_3_51($28)|0); + $30 = tempRet0; + $31 = (_bitshift64Lshr(($29|0),($30|0),1)|0); + $32 = tempRet0; + $33 = $31 & 2097151; + $34 = ((($0)) + 15|0); + $35 = (_load_4_52($34)|0); + $36 = tempRet0; + $37 = (_bitshift64Lshr(($35|0),($36|0),6)|0); + $38 = tempRet0; + $39 = $37 & 2097151; + $40 = ((($0)) + 18|0); + $41 = (_load_3_51($40)|0); + $42 = tempRet0; + $43 = (_bitshift64Lshr(($41|0),($42|0),3)|0); + $44 = tempRet0; + $45 = $43 & 2097151; + $46 = ((($0)) + 21|0); + $47 = (_load_3_51($46)|0); + $48 = tempRet0; + $49 = $47 & 2097151; + $50 = ((($0)) + 23|0); + $51 = (_load_4_52($50)|0); + $52 = tempRet0; + $53 = (_bitshift64Lshr(($51|0),($52|0),5)|0); + $54 = tempRet0; + $55 = $53 & 2097151; + $56 = ((($0)) + 26|0); + $57 = (_load_3_51($56)|0); + $58 = tempRet0; + $59 = (_bitshift64Lshr(($57|0),($58|0),2)|0); + $60 = tempRet0; + $61 = $59 & 2097151; + $62 = ((($0)) + 28|0); + $63 = (_load_4_52($62)|0); + $64 = tempRet0; + $65 = (_bitshift64Lshr(($63|0),($64|0),7)|0); + $66 = tempRet0; + $67 = $65 & 2097151; + $68 = ((($0)) + 31|0); + $69 = (_load_4_52($68)|0); + $70 = tempRet0; + $71 = (_bitshift64Lshr(($69|0),($70|0),4)|0); + $72 = tempRet0; + $73 = $71 & 2097151; + $74 = ((($0)) + 34|0); + $75 = (_load_3_51($74)|0); + $76 = tempRet0; + $77 = (_bitshift64Lshr(($75|0),($76|0),1)|0); + $78 = tempRet0; + $79 = $77 & 2097151; + $80 = ((($0)) + 36|0); + $81 = (_load_4_52($80)|0); + $82 = tempRet0; + $83 = (_bitshift64Lshr(($81|0),($82|0),6)|0); + $84 = tempRet0; + $85 = $83 & 2097151; + $86 = ((($0)) + 39|0); + $87 = (_load_3_51($86)|0); + $88 = tempRet0; + $89 = (_bitshift64Lshr(($87|0),($88|0),3)|0); + $90 = tempRet0; + $91 = $89 & 2097151; + $92 = ((($0)) + 42|0); + $93 = (_load_3_51($92)|0); + $94 = tempRet0; + $95 = $93 & 2097151; + $96 = ((($0)) + 44|0); + $97 = (_load_4_52($96)|0); + $98 = tempRet0; + $99 = (_bitshift64Lshr(($97|0),($98|0),5)|0); + $100 = tempRet0; + $101 = $99 & 2097151; + $102 = ((($0)) + 47|0); + $103 = (_load_3_51($102)|0); + $104 = tempRet0; + $105 = (_bitshift64Lshr(($103|0),($104|0),2)|0); + $106 = tempRet0; + $107 = $105 & 2097151; + $108 = ((($0)) + 49|0); + $109 = (_load_4_52($108)|0); + $110 = tempRet0; + $111 = (_bitshift64Lshr(($109|0),($110|0),7)|0); + $112 = tempRet0; + $113 = $111 & 2097151; + $114 = ((($0)) + 52|0); + $115 = (_load_4_52($114)|0); + $116 = tempRet0; + $117 = (_bitshift64Lshr(($115|0),($116|0),4)|0); + $118 = tempRet0; + $119 = $117 & 2097151; + $120 = ((($0)) + 55|0); + $121 = (_load_3_51($120)|0); + $122 = tempRet0; + $123 = (_bitshift64Lshr(($121|0),($122|0),1)|0); + $124 = tempRet0; + $125 = $123 & 2097151; + $126 = ((($0)) + 57|0); + $127 = (_load_4_52($126)|0); + $128 = tempRet0; + $129 = (_bitshift64Lshr(($127|0),($128|0),6)|0); + $130 = tempRet0; + $131 = $129 & 2097151; + $132 = ((($0)) + 60|0); + $133 = (_load_4_52($132)|0); + $134 = tempRet0; + $135 = (_bitshift64Lshr(($133|0),($134|0),3)|0); + $136 = tempRet0; + $137 = (___muldi3(($135|0),($136|0),666643,0)|0); + $138 = tempRet0; + $139 = (___muldi3(($135|0),($136|0),470296,0)|0); + $140 = tempRet0; + $141 = (___muldi3(($135|0),($136|0),654183,0)|0); + $142 = tempRet0; + $143 = (___muldi3(($135|0),($136|0),-997805,-1)|0); + $144 = tempRet0; + $145 = (___muldi3(($135|0),($136|0),136657,0)|0); + $146 = tempRet0; + $147 = (_i64Add(($145|0),($146|0),($91|0),0)|0); + $148 = tempRet0; + $149 = (___muldi3(($135|0),($136|0),-683901,-1)|0); + $150 = tempRet0; + $151 = (_i64Add(($149|0),($150|0),($95|0),0)|0); + $152 = tempRet0; + $153 = (___muldi3(($131|0),0,666643,0)|0); + $154 = tempRet0; + $155 = (___muldi3(($131|0),0,470296,0)|0); + $156 = tempRet0; + $157 = (___muldi3(($131|0),0,654183,0)|0); + $158 = tempRet0; + $159 = (___muldi3(($131|0),0,-997805,-1)|0); + $160 = tempRet0; + $161 = (___muldi3(($131|0),0,136657,0)|0); + $162 = tempRet0; + $163 = (___muldi3(($131|0),0,-683901,-1)|0); + $164 = tempRet0; + $165 = (_i64Add(($147|0),($148|0),($163|0),($164|0))|0); + $166 = tempRet0; + $167 = (___muldi3(($125|0),0,666643,0)|0); + $168 = tempRet0; + $169 = (___muldi3(($125|0),0,470296,0)|0); + $170 = tempRet0; + $171 = (___muldi3(($125|0),0,654183,0)|0); + $172 = tempRet0; + $173 = (___muldi3(($125|0),0,-997805,-1)|0); + $174 = tempRet0; + $175 = (___muldi3(($125|0),0,136657,0)|0); + $176 = tempRet0; + $177 = (___muldi3(($125|0),0,-683901,-1)|0); + $178 = tempRet0; + $179 = (_i64Add(($177|0),($178|0),($85|0),0)|0); + $180 = tempRet0; + $181 = (_i64Add(($179|0),($180|0),($143|0),($144|0))|0); + $182 = tempRet0; + $183 = (_i64Add(($181|0),($182|0),($161|0),($162|0))|0); + $184 = tempRet0; + $185 = (___muldi3(($119|0),0,666643,0)|0); + $186 = tempRet0; + $187 = (___muldi3(($119|0),0,470296,0)|0); + $188 = tempRet0; + $189 = (___muldi3(($119|0),0,654183,0)|0); + $190 = tempRet0; + $191 = (___muldi3(($119|0),0,-997805,-1)|0); + $192 = tempRet0; + $193 = (___muldi3(($119|0),0,136657,0)|0); + $194 = tempRet0; + $195 = (___muldi3(($119|0),0,-683901,-1)|0); + $196 = tempRet0; + $197 = (___muldi3(($113|0),0,666643,0)|0); + $198 = tempRet0; + $199 = (___muldi3(($113|0),0,470296,0)|0); + $200 = tempRet0; + $201 = (___muldi3(($113|0),0,654183,0)|0); + $202 = tempRet0; + $203 = (___muldi3(($113|0),0,-997805,-1)|0); + $204 = tempRet0; + $205 = (___muldi3(($113|0),0,136657,0)|0); + $206 = tempRet0; + $207 = (___muldi3(($113|0),0,-683901,-1)|0); + $208 = tempRet0; + $209 = (_i64Add(($207|0),($208|0),($73|0),0)|0); + $210 = tempRet0; + $211 = (_i64Add(($209|0),($210|0),($193|0),($194|0))|0); + $212 = tempRet0; + $213 = (_i64Add(($211|0),($212|0),($173|0),($174|0))|0); + $214 = tempRet0; + $215 = (_i64Add(($213|0),($214|0),($139|0),($140|0))|0); + $216 = tempRet0; + $217 = (_i64Add(($215|0),($216|0),($157|0),($158|0))|0); + $218 = tempRet0; + $219 = (___muldi3(($107|0),0,666643,0)|0); + $220 = tempRet0; + $221 = (_i64Add(($219|0),($220|0),($39|0),0)|0); + $222 = tempRet0; + $223 = (___muldi3(($107|0),0,470296,0)|0); + $224 = tempRet0; + $225 = (___muldi3(($107|0),0,654183,0)|0); + $226 = tempRet0; + $227 = (_i64Add(($225|0),($226|0),($49|0),0)|0); + $228 = tempRet0; + $229 = (_i64Add(($227|0),($228|0),($199|0),($200|0))|0); + $230 = tempRet0; + $231 = (_i64Add(($229|0),($230|0),($185|0),($186|0))|0); + $232 = tempRet0; + $233 = (___muldi3(($107|0),0,-997805,-1)|0); + $234 = tempRet0; + $235 = (___muldi3(($107|0),0,136657,0)|0); + $236 = tempRet0; + $237 = (_i64Add(($235|0),($236|0),($61|0),0)|0); + $238 = tempRet0; + $239 = (_i64Add(($237|0),($238|0),($203|0),($204|0))|0); + $240 = tempRet0; + $241 = (_i64Add(($239|0),($240|0),($189|0),($190|0))|0); + $242 = tempRet0; + $243 = (_i64Add(($241|0),($242|0),($169|0),($170|0))|0); + $244 = tempRet0; + $245 = (_i64Add(($243|0),($244|0),($153|0),($154|0))|0); + $246 = tempRet0; + $247 = (___muldi3(($107|0),0,-683901,-1)|0); + $248 = tempRet0; + $249 = (_i64Add(($221|0),($222|0),1048576,0)|0); + $250 = tempRet0; + $251 = (_bitshift64Lshr(($249|0),($250|0),21)|0); + $252 = tempRet0; + $253 = (_i64Add(($223|0),($224|0),($45|0),0)|0); + $254 = tempRet0; + $255 = (_i64Add(($253|0),($254|0),($197|0),($198|0))|0); + $256 = tempRet0; + $257 = (_i64Add(($255|0),($256|0),($251|0),($252|0))|0); + $258 = tempRet0; + $259 = (_bitshift64Shl(($251|0),($252|0),21)|0); + $260 = tempRet0; + $261 = (_i64Subtract(($221|0),($222|0),($259|0),($260|0))|0); + $262 = tempRet0; + $263 = (_i64Add(($231|0),($232|0),1048576,0)|0); + $264 = tempRet0; + $265 = (_bitshift64Lshr(($263|0),($264|0),21)|0); + $266 = tempRet0; + $267 = (_i64Add(($233|0),($234|0),($55|0),0)|0); + $268 = tempRet0; + $269 = (_i64Add(($267|0),($268|0),($201|0),($202|0))|0); + $270 = tempRet0; + $271 = (_i64Add(($269|0),($270|0),($187|0),($188|0))|0); + $272 = tempRet0; + $273 = (_i64Add(($271|0),($272|0),($167|0),($168|0))|0); + $274 = tempRet0; + $275 = (_i64Add(($273|0),($274|0),($265|0),($266|0))|0); + $276 = tempRet0; + $277 = (_bitshift64Shl(($265|0),($266|0),21)|0); + $278 = tempRet0; + $279 = (_i64Add(($245|0),($246|0),1048576,0)|0); + $280 = tempRet0; + $281 = (_bitshift64Ashr(($279|0),($280|0),21)|0); + $282 = tempRet0; + $283 = (_i64Add(($247|0),($248|0),($67|0),0)|0); + $284 = tempRet0; + $285 = (_i64Add(($283|0),($284|0),($205|0),($206|0))|0); + $286 = tempRet0; + $287 = (_i64Add(($285|0),($286|0),($191|0),($192|0))|0); + $288 = tempRet0; + $289 = (_i64Add(($287|0),($288|0),($171|0),($172|0))|0); + $290 = tempRet0; + $291 = (_i64Add(($289|0),($290|0),($137|0),($138|0))|0); + $292 = tempRet0; + $293 = (_i64Add(($291|0),($292|0),($155|0),($156|0))|0); + $294 = tempRet0; + $295 = (_i64Add(($293|0),($294|0),($281|0),($282|0))|0); + $296 = tempRet0; + $297 = (_bitshift64Shl(($281|0),($282|0),21)|0); + $298 = tempRet0; + $299 = (_i64Add(($217|0),($218|0),1048576,0)|0); + $300 = tempRet0; + $301 = (_bitshift64Ashr(($299|0),($300|0),21)|0); + $302 = tempRet0; + $303 = (_i64Add(($195|0),($196|0),($79|0),0)|0); + $304 = tempRet0; + $305 = (_i64Add(($303|0),($304|0),($175|0),($176|0))|0); + $306 = tempRet0; + $307 = (_i64Add(($305|0),($306|0),($141|0),($142|0))|0); + $308 = tempRet0; + $309 = (_i64Add(($307|0),($308|0),($159|0),($160|0))|0); + $310 = tempRet0; + $311 = (_i64Add(($309|0),($310|0),($301|0),($302|0))|0); + $312 = tempRet0; + $313 = (_bitshift64Shl(($301|0),($302|0),21)|0); + $314 = tempRet0; + $315 = (_i64Subtract(($217|0),($218|0),($313|0),($314|0))|0); + $316 = tempRet0; + $317 = (_i64Add(($183|0),($184|0),1048576,0)|0); + $318 = tempRet0; + $319 = (_bitshift64Ashr(($317|0),($318|0),21)|0); + $320 = tempRet0; + $321 = (_i64Add(($165|0),($166|0),($319|0),($320|0))|0); + $322 = tempRet0; + $323 = (_bitshift64Shl(($319|0),($320|0),21)|0); + $324 = tempRet0; + $325 = (_i64Subtract(($183|0),($184|0),($323|0),($324|0))|0); + $326 = tempRet0; + $327 = (_i64Add(($151|0),($152|0),1048576,0)|0); + $328 = tempRet0; + $329 = (_bitshift64Ashr(($327|0),($328|0),21)|0); + $330 = tempRet0; + $331 = (_i64Add(($329|0),($330|0),($101|0),0)|0); + $332 = tempRet0; + $333 = (_bitshift64Shl(($329|0),($330|0),21)|0); + $334 = tempRet0; + $335 = (_i64Subtract(($151|0),($152|0),($333|0),($334|0))|0); + $336 = tempRet0; + $337 = (_i64Add(($257|0),($258|0),1048576,0)|0); + $338 = tempRet0; + $339 = (_bitshift64Lshr(($337|0),($338|0),21)|0); + $340 = tempRet0; + $341 = (_bitshift64Shl(($339|0),($340|0),21)|0); + $342 = tempRet0; + $343 = (_i64Subtract(($257|0),($258|0),($341|0),($342|0))|0); + $344 = tempRet0; + $345 = (_i64Add(($275|0),($276|0),1048576,0)|0); + $346 = tempRet0; + $347 = (_bitshift64Ashr(($345|0),($346|0),21)|0); + $348 = tempRet0; + $349 = (_bitshift64Shl(($347|0),($348|0),21)|0); + $350 = tempRet0; + $351 = (_i64Add(($295|0),($296|0),1048576,0)|0); + $352 = tempRet0; + $353 = (_bitshift64Ashr(($351|0),($352|0),21)|0); + $354 = tempRet0; + $355 = (_i64Add(($353|0),($354|0),($315|0),($316|0))|0); + $356 = tempRet0; + $357 = (_bitshift64Shl(($353|0),($354|0),21)|0); + $358 = tempRet0; + $359 = (_i64Subtract(($295|0),($296|0),($357|0),($358|0))|0); + $360 = tempRet0; + $361 = (_i64Add(($311|0),($312|0),1048576,0)|0); + $362 = tempRet0; + $363 = (_bitshift64Ashr(($361|0),($362|0),21)|0); + $364 = tempRet0; + $365 = (_i64Add(($363|0),($364|0),($325|0),($326|0))|0); + $366 = tempRet0; + $367 = (_bitshift64Shl(($363|0),($364|0),21)|0); + $368 = tempRet0; + $369 = (_i64Subtract(($311|0),($312|0),($367|0),($368|0))|0); + $370 = tempRet0; + $371 = (_i64Add(($321|0),($322|0),1048576,0)|0); + $372 = tempRet0; + $373 = (_bitshift64Ashr(($371|0),($372|0),21)|0); + $374 = tempRet0; + $375 = (_i64Add(($373|0),($374|0),($335|0),($336|0))|0); + $376 = tempRet0; + $377 = (_bitshift64Shl(($373|0),($374|0),21)|0); + $378 = tempRet0; + $379 = (_i64Subtract(($321|0),($322|0),($377|0),($378|0))|0); + $380 = tempRet0; + $381 = (___muldi3(($331|0),($332|0),666643,0)|0); + $382 = tempRet0; + $383 = (_i64Add(($381|0),($382|0),($33|0),0)|0); + $384 = tempRet0; + $385 = (___muldi3(($331|0),($332|0),470296,0)|0); + $386 = tempRet0; + $387 = (_i64Add(($261|0),($262|0),($385|0),($386|0))|0); + $388 = tempRet0; + $389 = (___muldi3(($331|0),($332|0),654183,0)|0); + $390 = tempRet0; + $391 = (_i64Add(($343|0),($344|0),($389|0),($390|0))|0); + $392 = tempRet0; + $393 = (___muldi3(($331|0),($332|0),-997805,-1)|0); + $394 = tempRet0; + $395 = (___muldi3(($331|0),($332|0),136657,0)|0); + $396 = tempRet0; + $397 = (___muldi3(($331|0),($332|0),-683901,-1)|0); + $398 = tempRet0; + $399 = (_i64Add(($397|0),($398|0),($245|0),($246|0))|0); + $400 = tempRet0; + $401 = (_i64Add(($399|0),($400|0),($347|0),($348|0))|0); + $402 = tempRet0; + $403 = (_i64Subtract(($401|0),($402|0),($297|0),($298|0))|0); + $404 = tempRet0; + $405 = (___muldi3(($375|0),($376|0),666643,0)|0); + $406 = tempRet0; + $407 = (_i64Add(($405|0),($406|0),($27|0),0)|0); + $408 = tempRet0; + $409 = (___muldi3(($375|0),($376|0),470296,0)|0); + $410 = tempRet0; + $411 = (_i64Add(($383|0),($384|0),($409|0),($410|0))|0); + $412 = tempRet0; + $413 = (___muldi3(($375|0),($376|0),654183,0)|0); + $414 = tempRet0; + $415 = (_i64Add(($387|0),($388|0),($413|0),($414|0))|0); + $416 = tempRet0; + $417 = (___muldi3(($375|0),($376|0),-997805,-1)|0); + $418 = tempRet0; + $419 = (_i64Add(($391|0),($392|0),($417|0),($418|0))|0); + $420 = tempRet0; + $421 = (___muldi3(($375|0),($376|0),136657,0)|0); + $422 = tempRet0; + $423 = (___muldi3(($375|0),($376|0),-683901,-1)|0); + $424 = tempRet0; + $425 = (___muldi3(($379|0),($380|0),666643,0)|0); + $426 = tempRet0; + $427 = (_i64Add(($425|0),($426|0),($21|0),0)|0); + $428 = tempRet0; + $429 = (___muldi3(($379|0),($380|0),470296,0)|0); + $430 = tempRet0; + $431 = (_i64Add(($407|0),($408|0),($429|0),($430|0))|0); + $432 = tempRet0; + $433 = (___muldi3(($379|0),($380|0),654183,0)|0); + $434 = tempRet0; + $435 = (_i64Add(($411|0),($412|0),($433|0),($434|0))|0); + $436 = tempRet0; + $437 = (___muldi3(($379|0),($380|0),-997805,-1)|0); + $438 = tempRet0; + $439 = (_i64Add(($415|0),($416|0),($437|0),($438|0))|0); + $440 = tempRet0; + $441 = (___muldi3(($379|0),($380|0),136657,0)|0); + $442 = tempRet0; + $443 = (_i64Add(($419|0),($420|0),($441|0),($442|0))|0); + $444 = tempRet0; + $445 = (___muldi3(($379|0),($380|0),-683901,-1)|0); + $446 = tempRet0; + $447 = (_i64Add(($339|0),($340|0),($231|0),($232|0))|0); + $448 = tempRet0; + $449 = (_i64Subtract(($447|0),($448|0),($277|0),($278|0))|0); + $450 = tempRet0; + $451 = (_i64Add(($449|0),($450|0),($393|0),($394|0))|0); + $452 = tempRet0; + $453 = (_i64Add(($451|0),($452|0),($421|0),($422|0))|0); + $454 = tempRet0; + $455 = (_i64Add(($453|0),($454|0),($445|0),($446|0))|0); + $456 = tempRet0; + $457 = (___muldi3(($365|0),($366|0),666643,0)|0); + $458 = tempRet0; + $459 = (_i64Add(($457|0),($458|0),($15|0),0)|0); + $460 = tempRet0; + $461 = (___muldi3(($365|0),($366|0),470296,0)|0); + $462 = tempRet0; + $463 = (_i64Add(($427|0),($428|0),($461|0),($462|0))|0); + $464 = tempRet0; + $465 = (___muldi3(($365|0),($366|0),654183,0)|0); + $466 = tempRet0; + $467 = (_i64Add(($431|0),($432|0),($465|0),($466|0))|0); + $468 = tempRet0; + $469 = (___muldi3(($365|0),($366|0),-997805,-1)|0); + $470 = tempRet0; + $471 = (_i64Add(($435|0),($436|0),($469|0),($470|0))|0); + $472 = tempRet0; + $473 = (___muldi3(($365|0),($366|0),136657,0)|0); + $474 = tempRet0; + $475 = (_i64Add(($439|0),($440|0),($473|0),($474|0))|0); + $476 = tempRet0; + $477 = (___muldi3(($365|0),($366|0),-683901,-1)|0); + $478 = tempRet0; + $479 = (_i64Add(($443|0),($444|0),($477|0),($478|0))|0); + $480 = tempRet0; + $481 = (___muldi3(($369|0),($370|0),666643,0)|0); + $482 = tempRet0; + $483 = (___muldi3(($369|0),($370|0),470296,0)|0); + $484 = tempRet0; + $485 = (___muldi3(($369|0),($370|0),654183,0)|0); + $486 = tempRet0; + $487 = (___muldi3(($369|0),($370|0),-997805,-1)|0); + $488 = tempRet0; + $489 = (___muldi3(($369|0),($370|0),136657,0)|0); + $490 = tempRet0; + $491 = (___muldi3(($369|0),($370|0),-683901,-1)|0); + $492 = tempRet0; + $493 = (_i64Add(($475|0),($476|0),($491|0),($492|0))|0); + $494 = tempRet0; + $495 = (___muldi3(($355|0),($356|0),666643,0)|0); + $496 = tempRet0; + $497 = (_i64Add(($495|0),($496|0),($3|0),0)|0); + $498 = tempRet0; + $499 = (___muldi3(($355|0),($356|0),470296,0)|0); + $500 = tempRet0; + $501 = (___muldi3(($355|0),($356|0),654183,0)|0); + $502 = tempRet0; + $503 = (_i64Add(($459|0),($460|0),($501|0),($502|0))|0); + $504 = tempRet0; + $505 = (_i64Add(($503|0),($504|0),($483|0),($484|0))|0); + $506 = tempRet0; + $507 = (___muldi3(($355|0),($356|0),-997805,-1)|0); + $508 = tempRet0; + $509 = (___muldi3(($355|0),($356|0),136657,0)|0); + $510 = tempRet0; + $511 = (_i64Add(($467|0),($468|0),($509|0),($510|0))|0); + $512 = tempRet0; + $513 = (_i64Add(($511|0),($512|0),($487|0),($488|0))|0); + $514 = tempRet0; + $515 = (___muldi3(($355|0),($356|0),-683901,-1)|0); + $516 = tempRet0; + $517 = (_i64Add(($497|0),($498|0),1048576,0)|0); + $518 = tempRet0; + $519 = (_bitshift64Ashr(($517|0),($518|0),21)|0); + $520 = tempRet0; + $521 = (_i64Add(($499|0),($500|0),($9|0),0)|0); + $522 = tempRet0; + $523 = (_i64Add(($521|0),($522|0),($481|0),($482|0))|0); + $524 = tempRet0; + $525 = (_i64Add(($523|0),($524|0),($519|0),($520|0))|0); + $526 = tempRet0; + $527 = (_bitshift64Shl(($519|0),($520|0),21)|0); + $528 = tempRet0; + $529 = (_i64Subtract(($497|0),($498|0),($527|0),($528|0))|0); + $530 = tempRet0; + $531 = (_i64Add(($505|0),($506|0),1048576,0)|0); + $532 = tempRet0; + $533 = (_bitshift64Ashr(($531|0),($532|0),21)|0); + $534 = tempRet0; + $535 = (_i64Add(($463|0),($464|0),($507|0),($508|0))|0); + $536 = tempRet0; + $537 = (_i64Add(($535|0),($536|0),($485|0),($486|0))|0); + $538 = tempRet0; + $539 = (_i64Add(($537|0),($538|0),($533|0),($534|0))|0); + $540 = tempRet0; + $541 = (_bitshift64Shl(($533|0),($534|0),21)|0); + $542 = tempRet0; + $543 = (_i64Add(($513|0),($514|0),1048576,0)|0); + $544 = tempRet0; + $545 = (_bitshift64Ashr(($543|0),($544|0),21)|0); + $546 = tempRet0; + $547 = (_i64Add(($471|0),($472|0),($515|0),($516|0))|0); + $548 = tempRet0; + $549 = (_i64Add(($547|0),($548|0),($489|0),($490|0))|0); + $550 = tempRet0; + $551 = (_i64Add(($549|0),($550|0),($545|0),($546|0))|0); + $552 = tempRet0; + $553 = (_bitshift64Shl(($545|0),($546|0),21)|0); + $554 = tempRet0; + $555 = (_i64Add(($493|0),($494|0),1048576,0)|0); + $556 = tempRet0; + $557 = (_bitshift64Ashr(($555|0),($556|0),21)|0); + $558 = tempRet0; + $559 = (_i64Add(($479|0),($480|0),($557|0),($558|0))|0); + $560 = tempRet0; + $561 = (_bitshift64Shl(($557|0),($558|0),21)|0); + $562 = tempRet0; + $563 = (_i64Subtract(($493|0),($494|0),($561|0),($562|0))|0); + $564 = tempRet0; + $565 = (_i64Add(($455|0),($456|0),1048576,0)|0); + $566 = tempRet0; + $567 = (_bitshift64Ashr(($565|0),($566|0),21)|0); + $568 = tempRet0; + $569 = (_i64Add(($395|0),($396|0),($275|0),($276|0))|0); + $570 = tempRet0; + $571 = (_i64Subtract(($569|0),($570|0),($349|0),($350|0))|0); + $572 = tempRet0; + $573 = (_i64Add(($571|0),($572|0),($423|0),($424|0))|0); + $574 = tempRet0; + $575 = (_i64Add(($573|0),($574|0),($567|0),($568|0))|0); + $576 = tempRet0; + $577 = (_bitshift64Shl(($567|0),($568|0),21)|0); + $578 = tempRet0; + $579 = (_i64Subtract(($455|0),($456|0),($577|0),($578|0))|0); + $580 = tempRet0; + $581 = (_i64Add(($403|0),($404|0),1048576,0)|0); + $582 = tempRet0; + $583 = (_bitshift64Ashr(($581|0),($582|0),21)|0); + $584 = tempRet0; + $585 = (_i64Add(($583|0),($584|0),($359|0),($360|0))|0); + $586 = tempRet0; + $587 = (_bitshift64Shl(($583|0),($584|0),21)|0); + $588 = tempRet0; + $589 = (_i64Subtract(($403|0),($404|0),($587|0),($588|0))|0); + $590 = tempRet0; + $591 = (_i64Add(($525|0),($526|0),1048576,0)|0); + $592 = tempRet0; + $593 = (_bitshift64Ashr(($591|0),($592|0),21)|0); + $594 = tempRet0; + $595 = (_bitshift64Shl(($593|0),($594|0),21)|0); + $596 = tempRet0; + $597 = (_i64Add(($539|0),($540|0),1048576,0)|0); + $598 = tempRet0; + $599 = (_bitshift64Ashr(($597|0),($598|0),21)|0); + $600 = tempRet0; + $601 = (_bitshift64Shl(($599|0),($600|0),21)|0); + $602 = tempRet0; + $603 = (_i64Add(($551|0),($552|0),1048576,0)|0); + $604 = tempRet0; + $605 = (_bitshift64Ashr(($603|0),($604|0),21)|0); + $606 = tempRet0; + $607 = (_i64Add(($563|0),($564|0),($605|0),($606|0))|0); + $608 = tempRet0; + $609 = (_bitshift64Shl(($605|0),($606|0),21)|0); + $610 = tempRet0; + $611 = (_i64Add(($559|0),($560|0),1048576,0)|0); + $612 = tempRet0; + $613 = (_bitshift64Ashr(($611|0),($612|0),21)|0); + $614 = tempRet0; + $615 = (_i64Add(($579|0),($580|0),($613|0),($614|0))|0); + $616 = tempRet0; + $617 = (_bitshift64Shl(($613|0),($614|0),21)|0); + $618 = tempRet0; + $619 = (_i64Subtract(($559|0),($560|0),($617|0),($618|0))|0); + $620 = tempRet0; + $621 = (_i64Add(($575|0),($576|0),1048576,0)|0); + $622 = tempRet0; + $623 = (_bitshift64Ashr(($621|0),($622|0),21)|0); + $624 = tempRet0; + $625 = (_i64Add(($589|0),($590|0),($623|0),($624|0))|0); + $626 = tempRet0; + $627 = (_bitshift64Shl(($623|0),($624|0),21)|0); + $628 = tempRet0; + $629 = (_i64Subtract(($575|0),($576|0),($627|0),($628|0))|0); + $630 = tempRet0; + $631 = (_i64Add(($585|0),($586|0),1048576,0)|0); + $632 = tempRet0; + $633 = (_bitshift64Ashr(($631|0),($632|0),21)|0); + $634 = tempRet0; + $635 = (_bitshift64Shl(($633|0),($634|0),21)|0); + $636 = tempRet0; + $637 = (_i64Subtract(($585|0),($586|0),($635|0),($636|0))|0); + $638 = tempRet0; + $639 = (___muldi3(($633|0),($634|0),666643,0)|0); + $640 = tempRet0; + $641 = (_i64Add(($529|0),($530|0),($639|0),($640|0))|0); + $642 = tempRet0; + $643 = (___muldi3(($633|0),($634|0),470296,0)|0); + $644 = tempRet0; + $645 = (___muldi3(($633|0),($634|0),654183,0)|0); + $646 = tempRet0; + $647 = (___muldi3(($633|0),($634|0),-997805,-1)|0); + $648 = tempRet0; + $649 = (___muldi3(($633|0),($634|0),136657,0)|0); + $650 = tempRet0; + $651 = (___muldi3(($633|0),($634|0),-683901,-1)|0); + $652 = tempRet0; + $653 = (_bitshift64Ashr(($641|0),($642|0),21)|0); + $654 = tempRet0; + $655 = (_i64Add(($643|0),($644|0),($525|0),($526|0))|0); + $656 = tempRet0; + $657 = (_i64Subtract(($655|0),($656|0),($595|0),($596|0))|0); + $658 = tempRet0; + $659 = (_i64Add(($657|0),($658|0),($653|0),($654|0))|0); + $660 = tempRet0; + $661 = (_bitshift64Shl(($653|0),($654|0),21)|0); + $662 = tempRet0; + $663 = (_i64Subtract(($641|0),($642|0),($661|0),($662|0))|0); + $664 = tempRet0; + $665 = (_bitshift64Ashr(($659|0),($660|0),21)|0); + $666 = tempRet0; + $667 = (_i64Add(($645|0),($646|0),($505|0),($506|0))|0); + $668 = tempRet0; + $669 = (_i64Subtract(($667|0),($668|0),($541|0),($542|0))|0); + $670 = tempRet0; + $671 = (_i64Add(($669|0),($670|0),($593|0),($594|0))|0); + $672 = tempRet0; + $673 = (_i64Add(($671|0),($672|0),($665|0),($666|0))|0); + $674 = tempRet0; + $675 = (_bitshift64Shl(($665|0),($666|0),21)|0); + $676 = tempRet0; + $677 = (_i64Subtract(($659|0),($660|0),($675|0),($676|0))|0); + $678 = tempRet0; + $679 = (_bitshift64Ashr(($673|0),($674|0),21)|0); + $680 = tempRet0; + $681 = (_i64Add(($539|0),($540|0),($647|0),($648|0))|0); + $682 = tempRet0; + $683 = (_i64Subtract(($681|0),($682|0),($601|0),($602|0))|0); + $684 = tempRet0; + $685 = (_i64Add(($683|0),($684|0),($679|0),($680|0))|0); + $686 = tempRet0; + $687 = (_bitshift64Shl(($679|0),($680|0),21)|0); + $688 = tempRet0; + $689 = (_i64Subtract(($673|0),($674|0),($687|0),($688|0))|0); + $690 = tempRet0; + $691 = (_bitshift64Ashr(($685|0),($686|0),21)|0); + $692 = tempRet0; + $693 = (_i64Add(($649|0),($650|0),($513|0),($514|0))|0); + $694 = tempRet0; + $695 = (_i64Subtract(($693|0),($694|0),($553|0),($554|0))|0); + $696 = tempRet0; + $697 = (_i64Add(($695|0),($696|0),($599|0),($600|0))|0); + $698 = tempRet0; + $699 = (_i64Add(($697|0),($698|0),($691|0),($692|0))|0); + $700 = tempRet0; + $701 = (_bitshift64Shl(($691|0),($692|0),21)|0); + $702 = tempRet0; + $703 = (_i64Subtract(($685|0),($686|0),($701|0),($702|0))|0); + $704 = tempRet0; + $705 = (_bitshift64Ashr(($699|0),($700|0),21)|0); + $706 = tempRet0; + $707 = (_i64Add(($551|0),($552|0),($651|0),($652|0))|0); + $708 = tempRet0; + $709 = (_i64Subtract(($707|0),($708|0),($609|0),($610|0))|0); + $710 = tempRet0; + $711 = (_i64Add(($709|0),($710|0),($705|0),($706|0))|0); + $712 = tempRet0; + $713 = (_bitshift64Shl(($705|0),($706|0),21)|0); + $714 = tempRet0; + $715 = (_i64Subtract(($699|0),($700|0),($713|0),($714|0))|0); + $716 = tempRet0; + $717 = (_bitshift64Ashr(($711|0),($712|0),21)|0); + $718 = tempRet0; + $719 = (_i64Add(($607|0),($608|0),($717|0),($718|0))|0); + $720 = tempRet0; + $721 = (_bitshift64Shl(($717|0),($718|0),21)|0); + $722 = tempRet0; + $723 = (_i64Subtract(($711|0),($712|0),($721|0),($722|0))|0); + $724 = tempRet0; + $725 = (_bitshift64Ashr(($719|0),($720|0),21)|0); + $726 = tempRet0; + $727 = (_i64Add(($725|0),($726|0),($619|0),($620|0))|0); + $728 = tempRet0; + $729 = (_bitshift64Shl(($725|0),($726|0),21)|0); + $730 = tempRet0; + $731 = (_i64Subtract(($719|0),($720|0),($729|0),($730|0))|0); + $732 = tempRet0; + $733 = (_bitshift64Ashr(($727|0),($728|0),21)|0); + $734 = tempRet0; + $735 = (_i64Add(($615|0),($616|0),($733|0),($734|0))|0); + $736 = tempRet0; + $737 = (_bitshift64Shl(($733|0),($734|0),21)|0); + $738 = tempRet0; + $739 = (_i64Subtract(($727|0),($728|0),($737|0),($738|0))|0); + $740 = tempRet0; + $741 = (_bitshift64Ashr(($735|0),($736|0),21)|0); + $742 = tempRet0; + $743 = (_i64Add(($741|0),($742|0),($629|0),($630|0))|0); + $744 = tempRet0; + $745 = (_bitshift64Shl(($741|0),($742|0),21)|0); + $746 = tempRet0; + $747 = (_i64Subtract(($735|0),($736|0),($745|0),($746|0))|0); + $748 = tempRet0; + $749 = (_bitshift64Ashr(($743|0),($744|0),21)|0); + $750 = tempRet0; + $751 = (_i64Add(($625|0),($626|0),($749|0),($750|0))|0); + $752 = tempRet0; + $753 = (_bitshift64Shl(($749|0),($750|0),21)|0); + $754 = tempRet0; + $755 = (_i64Subtract(($743|0),($744|0),($753|0),($754|0))|0); + $756 = tempRet0; + $757 = (_bitshift64Ashr(($751|0),($752|0),21)|0); + $758 = tempRet0; + $759 = (_i64Add(($757|0),($758|0),($637|0),($638|0))|0); + $760 = tempRet0; + $761 = (_bitshift64Shl(($757|0),($758|0),21)|0); + $762 = tempRet0; + $763 = (_i64Subtract(($751|0),($752|0),($761|0),($762|0))|0); + $764 = tempRet0; + $765 = (_bitshift64Ashr(($759|0),($760|0),21)|0); + $766 = tempRet0; + $767 = (_bitshift64Shl(($765|0),($766|0),21)|0); + $768 = tempRet0; + $769 = (_i64Subtract(($759|0),($760|0),($767|0),($768|0))|0); + $770 = tempRet0; + $771 = (___muldi3(($765|0),($766|0),666643,0)|0); + $772 = tempRet0; + $773 = (_i64Add(($771|0),($772|0),($663|0),($664|0))|0); + $774 = tempRet0; + $775 = (___muldi3(($765|0),($766|0),470296,0)|0); + $776 = tempRet0; + $777 = (_i64Add(($677|0),($678|0),($775|0),($776|0))|0); + $778 = tempRet0; + $779 = (___muldi3(($765|0),($766|0),654183,0)|0); + $780 = tempRet0; + $781 = (_i64Add(($689|0),($690|0),($779|0),($780|0))|0); + $782 = tempRet0; + $783 = (___muldi3(($765|0),($766|0),-997805,-1)|0); + $784 = tempRet0; + $785 = (_i64Add(($703|0),($704|0),($783|0),($784|0))|0); + $786 = tempRet0; + $787 = (___muldi3(($765|0),($766|0),136657,0)|0); + $788 = tempRet0; + $789 = (_i64Add(($715|0),($716|0),($787|0),($788|0))|0); + $790 = tempRet0; + $791 = (___muldi3(($765|0),($766|0),-683901,-1)|0); + $792 = tempRet0; + $793 = (_i64Add(($723|0),($724|0),($791|0),($792|0))|0); + $794 = tempRet0; + $795 = (_bitshift64Ashr(($773|0),($774|0),21)|0); + $796 = tempRet0; + $797 = (_i64Add(($777|0),($778|0),($795|0),($796|0))|0); + $798 = tempRet0; + $799 = (_bitshift64Shl(($795|0),($796|0),21)|0); + $800 = tempRet0; + $801 = (_i64Subtract(($773|0),($774|0),($799|0),($800|0))|0); + $802 = tempRet0; + $803 = (_bitshift64Ashr(($797|0),($798|0),21)|0); + $804 = tempRet0; + $805 = (_i64Add(($781|0),($782|0),($803|0),($804|0))|0); + $806 = tempRet0; + $807 = (_bitshift64Shl(($803|0),($804|0),21)|0); + $808 = tempRet0; + $809 = (_i64Subtract(($797|0),($798|0),($807|0),($808|0))|0); + $810 = tempRet0; + $811 = (_bitshift64Ashr(($805|0),($806|0),21)|0); + $812 = tempRet0; + $813 = (_i64Add(($785|0),($786|0),($811|0),($812|0))|0); + $814 = tempRet0; + $815 = (_bitshift64Shl(($811|0),($812|0),21)|0); + $816 = tempRet0; + $817 = (_i64Subtract(($805|0),($806|0),($815|0),($816|0))|0); + $818 = tempRet0; + $819 = (_bitshift64Ashr(($813|0),($814|0),21)|0); + $820 = tempRet0; + $821 = (_i64Add(($789|0),($790|0),($819|0),($820|0))|0); + $822 = tempRet0; + $823 = (_bitshift64Shl(($819|0),($820|0),21)|0); + $824 = tempRet0; + $825 = (_i64Subtract(($813|0),($814|0),($823|0),($824|0))|0); + $826 = tempRet0; + $827 = (_bitshift64Ashr(($821|0),($822|0),21)|0); + $828 = tempRet0; + $829 = (_i64Add(($793|0),($794|0),($827|0),($828|0))|0); + $830 = tempRet0; + $831 = (_bitshift64Shl(($827|0),($828|0),21)|0); + $832 = tempRet0; + $833 = (_i64Subtract(($821|0),($822|0),($831|0),($832|0))|0); + $834 = tempRet0; + $835 = (_bitshift64Ashr(($829|0),($830|0),21)|0); + $836 = tempRet0; + $837 = (_i64Add(($835|0),($836|0),($731|0),($732|0))|0); + $838 = tempRet0; + $839 = (_bitshift64Shl(($835|0),($836|0),21)|0); + $840 = tempRet0; + $841 = (_i64Subtract(($829|0),($830|0),($839|0),($840|0))|0); + $842 = tempRet0; + $843 = (_bitshift64Ashr(($837|0),($838|0),21)|0); + $844 = tempRet0; + $845 = (_i64Add(($843|0),($844|0),($739|0),($740|0))|0); + $846 = tempRet0; + $847 = (_bitshift64Shl(($843|0),($844|0),21)|0); + $848 = tempRet0; + $849 = (_i64Subtract(($837|0),($838|0),($847|0),($848|0))|0); + $850 = tempRet0; + $851 = (_bitshift64Ashr(($845|0),($846|0),21)|0); + $852 = tempRet0; + $853 = (_i64Add(($851|0),($852|0),($747|0),($748|0))|0); + $854 = tempRet0; + $855 = (_bitshift64Shl(($851|0),($852|0),21)|0); + $856 = tempRet0; + $857 = (_i64Subtract(($845|0),($846|0),($855|0),($856|0))|0); + $858 = tempRet0; + $859 = (_bitshift64Ashr(($853|0),($854|0),21)|0); + $860 = tempRet0; + $861 = (_i64Add(($859|0),($860|0),($755|0),($756|0))|0); + $862 = tempRet0; + $863 = (_bitshift64Shl(($859|0),($860|0),21)|0); + $864 = tempRet0; + $865 = (_i64Subtract(($853|0),($854|0),($863|0),($864|0))|0); + $866 = tempRet0; + $867 = (_bitshift64Ashr(($861|0),($862|0),21)|0); + $868 = tempRet0; + $869 = (_i64Add(($867|0),($868|0),($763|0),($764|0))|0); + $870 = tempRet0; + $871 = (_bitshift64Shl(($867|0),($868|0),21)|0); + $872 = tempRet0; + $873 = (_i64Subtract(($861|0),($862|0),($871|0),($872|0))|0); + $874 = tempRet0; + $875 = (_bitshift64Ashr(($869|0),($870|0),21)|0); + $876 = tempRet0; + $877 = (_i64Add(($875|0),($876|0),($769|0),($770|0))|0); + $878 = tempRet0; + $879 = (_bitshift64Shl(($875|0),($876|0),21)|0); + $880 = tempRet0; + $881 = (_i64Subtract(($869|0),($870|0),($879|0),($880|0))|0); + $882 = tempRet0; + $883 = $801&255; + HEAP8[$0>>0] = $883; + $884 = (_bitshift64Lshr(($801|0),($802|0),8)|0); + $885 = tempRet0; + $886 = $884&255; + $887 = ((($0)) + 1|0); + HEAP8[$887>>0] = $886; + $888 = (_bitshift64Lshr(($801|0),($802|0),16)|0); + $889 = tempRet0; + $890 = (_bitshift64Shl(($809|0),($810|0),5)|0); + $891 = tempRet0; + $892 = $890 | $888; + $891 | $889; + $893 = $892&255; + HEAP8[$4>>0] = $893; + $894 = (_bitshift64Lshr(($809|0),($810|0),3)|0); + $895 = tempRet0; + $896 = $894&255; + $897 = ((($0)) + 3|0); + HEAP8[$897>>0] = $896; + $898 = (_bitshift64Lshr(($809|0),($810|0),11)|0); + $899 = tempRet0; + $900 = $898&255; + $901 = ((($0)) + 4|0); + HEAP8[$901>>0] = $900; + $902 = (_bitshift64Lshr(($809|0),($810|0),19)|0); + $903 = tempRet0; + $904 = (_bitshift64Shl(($817|0),($818|0),2)|0); + $905 = tempRet0; + $906 = $904 | $902; + $905 | $903; + $907 = $906&255; + HEAP8[$10>>0] = $907; + $908 = (_bitshift64Lshr(($817|0),($818|0),6)|0); + $909 = tempRet0; + $910 = $908&255; + $911 = ((($0)) + 6|0); + HEAP8[$911>>0] = $910; + $912 = (_bitshift64Lshr(($817|0),($818|0),14)|0); + $913 = tempRet0; + $914 = (_bitshift64Shl(($825|0),($826|0),7)|0); + $915 = tempRet0; + $916 = $914 | $912; + $915 | $913; + $917 = $916&255; + HEAP8[$16>>0] = $917; + $918 = (_bitshift64Lshr(($825|0),($826|0),1)|0); + $919 = tempRet0; + $920 = $918&255; + $921 = ((($0)) + 8|0); + HEAP8[$921>>0] = $920; + $922 = (_bitshift64Lshr(($825|0),($826|0),9)|0); + $923 = tempRet0; + $924 = $922&255; + $925 = ((($0)) + 9|0); + HEAP8[$925>>0] = $924; + $926 = (_bitshift64Lshr(($825|0),($826|0),17)|0); + $927 = tempRet0; + $928 = (_bitshift64Shl(($833|0),($834|0),4)|0); + $929 = tempRet0; + $930 = $928 | $926; + $929 | $927; + $931 = $930&255; + HEAP8[$22>>0] = $931; + $932 = (_bitshift64Lshr(($833|0),($834|0),4)|0); + $933 = tempRet0; + $934 = $932&255; + $935 = ((($0)) + 11|0); + HEAP8[$935>>0] = $934; + $936 = (_bitshift64Lshr(($833|0),($834|0),12)|0); + $937 = tempRet0; + $938 = $936&255; + $939 = ((($0)) + 12|0); + HEAP8[$939>>0] = $938; + $940 = (_bitshift64Lshr(($833|0),($834|0),20)|0); + $941 = tempRet0; + $942 = (_bitshift64Shl(($841|0),($842|0),1)|0); + $943 = tempRet0; + $944 = $942 | $940; + $943 | $941; + $945 = $944&255; + HEAP8[$28>>0] = $945; + $946 = (_bitshift64Lshr(($841|0),($842|0),7)|0); + $947 = tempRet0; + $948 = $946&255; + $949 = ((($0)) + 14|0); + HEAP8[$949>>0] = $948; + $950 = (_bitshift64Lshr(($841|0),($842|0),15)|0); + $951 = tempRet0; + $952 = (_bitshift64Shl(($849|0),($850|0),6)|0); + $953 = tempRet0; + $954 = $952 | $950; + $953 | $951; + $955 = $954&255; + HEAP8[$34>>0] = $955; + $956 = (_bitshift64Lshr(($849|0),($850|0),2)|0); + $957 = tempRet0; + $958 = $956&255; + $959 = ((($0)) + 16|0); + HEAP8[$959>>0] = $958; + $960 = (_bitshift64Lshr(($849|0),($850|0),10)|0); + $961 = tempRet0; + $962 = $960&255; + $963 = ((($0)) + 17|0); + HEAP8[$963>>0] = $962; + $964 = (_bitshift64Lshr(($849|0),($850|0),18)|0); + $965 = tempRet0; + $966 = (_bitshift64Shl(($857|0),($858|0),3)|0); + $967 = tempRet0; + $968 = $966 | $964; + $967 | $965; + $969 = $968&255; + HEAP8[$40>>0] = $969; + $970 = (_bitshift64Lshr(($857|0),($858|0),5)|0); + $971 = tempRet0; + $972 = $970&255; + $973 = ((($0)) + 19|0); + HEAP8[$973>>0] = $972; + $974 = (_bitshift64Lshr(($857|0),($858|0),13)|0); + $975 = tempRet0; + $976 = $974&255; + $977 = ((($0)) + 20|0); + HEAP8[$977>>0] = $976; + $978 = $865&255; + HEAP8[$46>>0] = $978; + $979 = (_bitshift64Lshr(($865|0),($866|0),8)|0); + $980 = tempRet0; + $981 = $979&255; + $982 = ((($0)) + 22|0); + HEAP8[$982>>0] = $981; + $983 = (_bitshift64Lshr(($865|0),($866|0),16)|0); + $984 = tempRet0; + $985 = (_bitshift64Shl(($873|0),($874|0),5)|0); + $986 = tempRet0; + $987 = $985 | $983; + $986 | $984; + $988 = $987&255; + HEAP8[$50>>0] = $988; + $989 = (_bitshift64Lshr(($873|0),($874|0),3)|0); + $990 = tempRet0; + $991 = $989&255; + $992 = ((($0)) + 24|0); + HEAP8[$992>>0] = $991; + $993 = (_bitshift64Lshr(($873|0),($874|0),11)|0); + $994 = tempRet0; + $995 = $993&255; + $996 = ((($0)) + 25|0); + HEAP8[$996>>0] = $995; + $997 = (_bitshift64Lshr(($873|0),($874|0),19)|0); + $998 = tempRet0; + $999 = (_bitshift64Shl(($881|0),($882|0),2)|0); + $1000 = tempRet0; + $1001 = $999 | $997; + $1000 | $998; + $1002 = $1001&255; + HEAP8[$56>>0] = $1002; + $1003 = (_bitshift64Lshr(($881|0),($882|0),6)|0); + $1004 = tempRet0; + $1005 = $1003&255; + $1006 = ((($0)) + 27|0); + HEAP8[$1006>>0] = $1005; + $1007 = (_bitshift64Lshr(($881|0),($882|0),14)|0); + $1008 = tempRet0; + $1009 = (_bitshift64Shl(($877|0),($878|0),7)|0); + $1010 = tempRet0; + $1011 = $1007 | $1009; + $1008 | $1010; + $1012 = $1011&255; + HEAP8[$62>>0] = $1012; + $1013 = (_bitshift64Lshr(($877|0),($878|0),1)|0); + $1014 = tempRet0; + $1015 = $1013&255; + $1016 = ((($0)) + 29|0); + HEAP8[$1016>>0] = $1015; + $1017 = (_bitshift64Lshr(($877|0),($878|0),9)|0); + $1018 = tempRet0; + $1019 = $1017&255; + $1020 = ((($0)) + 30|0); + HEAP8[$1020>>0] = $1019; + $1021 = (_bitshift64Lshr(($877|0),($878|0),17)|0); + $1022 = tempRet0; + $1023 = $1021&255; + HEAP8[$68>>0] = $1023; return; } -function _load_351($in) { - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; +function _load_3_51($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP8[$in>>0]|0; - $1 = $0&255; - $2 = ((($in)) + 1|0); - $3 = HEAP8[$2>>0]|0; - $4 = $3&255; - $5 = (_bitshift64Shl(($4|0),0,8)|0); - $6 = tempRet0; - $7 = $5 | $1; - $8 = ((($in)) + 2|0); - $9 = HEAP8[$8>>0]|0; - $10 = $9&255; - $11 = (_bitshift64Shl(($10|0),0,16)|0); - $12 = tempRet0; - $13 = $7 | $11; - $14 = $6 | $12; - tempRet0 = ($14); - return ($13|0); + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = ((($0)) + 1|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = (_bitshift64Shl(($5|0),0,8)|0); + $7 = tempRet0; + $8 = $6 | $2; + $9 = ((($0)) + 2|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = (_bitshift64Shl(($11|0),0,16)|0); + $13 = tempRet0; + $14 = $8 | $12; + $15 = $7 | $13; + tempRet0 = ($15); + return ($14|0); } -function _load_452($in) { - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; +function _load_4_52($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; var $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP8[$in>>0]|0; - $1 = $0&255; - $2 = ((($in)) + 1|0); - $3 = HEAP8[$2>>0]|0; - $4 = $3&255; - $5 = (_bitshift64Shl(($4|0),0,8)|0); - $6 = tempRet0; - $7 = $5 | $1; - $8 = ((($in)) + 2|0); - $9 = HEAP8[$8>>0]|0; - $10 = $9&255; - $11 = (_bitshift64Shl(($10|0),0,16)|0); - $12 = tempRet0; - $13 = $7 | $11; - $14 = $6 | $12; - $15 = ((($in)) + 3|0); - $16 = HEAP8[$15>>0]|0; - $17 = $16&255; - $18 = (_bitshift64Shl(($17|0),0,24)|0); - $19 = tempRet0; - $20 = $13 | $18; + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = ((($0)) + 1|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = (_bitshift64Shl(($5|0),0,8)|0); + $7 = tempRet0; + $8 = $6 | $2; + $9 = ((($0)) + 2|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = (_bitshift64Shl(($11|0),0,16)|0); + $13 = tempRet0; + $14 = $8 | $12; + $15 = $7 | $13; + $16 = ((($0)) + 3|0); + $17 = HEAP8[$16>>0]|0; + $18 = $17&255; + $19 = (_bitshift64Shl(($18|0),0,24)|0); + $20 = tempRet0; $21 = $14 | $19; - tempRet0 = ($21); - return ($20|0); + $22 = $15 | $20; + tempRet0 = ($22); + return ($21|0); } -function _sph_sha512_init($cc) { - $cc = $cc|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; +function _sph_sha512_init($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; sp = STACKTOP; - $0 = ((($cc)) + 128|0); - dest=$0; src=8; stop=dest+64|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - $1 = ((($cc)) + 192|0); - $2 = $1; + $1 = ((($0)) + 128|0); + dest=$1; src=8; stop=dest+64|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + $2 = ((($0)) + 192|0); $3 = $2; - HEAP32[$3>>2] = 0; - $4 = (($2) + 4)|0; - $5 = $4; - HEAP32[$5>>2] = 0; + $4 = $3; + HEAP32[$4>>2] = 0; + $5 = (($3) + 4)|0; + $6 = $5; + HEAP32[$6>>2] = 0; return; } -function _sph_sha384($cc,$data,$len) { - $cc = $cc|0; - $data = $data|0; - $len = $len|0; - var $$01$ = 0, $$012 = 0, $$03 = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0; - var $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $current$04 = 0, $current$1 = 0, label = 0, sp = 0; +function _sph_sha384($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $$02631 = 0, $$02730 = 0, $$028$ = 0, $$02829 = 0, $$1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0; + var $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = ((($cc)) + 192|0); - $1 = ($len|0)==(0); - if ($1) { + $3 = ((($0)) + 192|0); + $4 = ($2|0)==(0); + if ($4) { return; } - $2 = $0; - $3 = $2; - $4 = HEAP32[$3>>2]|0; - $5 = (($2) + 4)|0; + $5 = $3; $6 = $5; $7 = HEAP32[$6>>2]|0; - $8 = $4 & 127; - $9 = ((($cc)) + 128|0); - $$012 = $len;$$03 = $data;$current$04 = $8; + $8 = (($5) + 4)|0; + $9 = $8; + $10 = HEAP32[$9>>2]|0; + $11 = $7 & 127; + $12 = ((($0)) + 128|0); + $$02631 = $11;$$02730 = $1;$$02829 = $2; while(1) { - $10 = (128 - ($current$04))|0; - $11 = ($10>>>0)>($$012>>>0); - $$01$ = $11 ? $$012 : $10; - $12 = (($cc) + ($current$04)|0); - _memcpy(($12|0),($$03|0),($$01$|0))|0; - $13 = (($$03) + ($$01$)|0); - $14 = (($$01$) + ($current$04))|0; - $15 = (($$012) - ($$01$))|0; - $16 = ($14|0)==(128); - if ($16) { - _sha3_round($cc,$9); - $current$1 = 0; + $13 = (128 - ($$02631))|0; + $14 = ($13>>>0)>($$02829>>>0); + $$028$ = $14 ? $$02829 : $13; + $15 = (($0) + ($$02631)|0); + _memcpy(($15|0),($$02730|0),($$028$|0))|0; + $16 = (($$02730) + ($$028$)|0); + $17 = (($$028$) + ($$02631))|0; + $18 = (($$02829) - ($$028$))|0; + $19 = ($17|0)==(128); + if ($19) { + _sha3_round($0,$12); + $$1 = 0; } else { - $current$1 = $14; + $$1 = $17; } - $17 = $0; - $18 = $17; - $19 = HEAP32[$18>>2]|0; - $20 = (($17) + 4)|0; + $20 = $3; $21 = $20; $22 = HEAP32[$21>>2]|0; - $23 = (_i64Add(($19|0),($22|0),($$01$|0),0)|0); - $24 = tempRet0; - $25 = $0; - $26 = $25; - HEAP32[$26>>2] = $23; - $27 = (($25) + 4)|0; - $28 = $27; - HEAP32[$28>>2] = $24; - $29 = ($$012|0)==($$01$|0); - if ($29) { + $23 = (($20) + 4)|0; + $24 = $23; + $25 = HEAP32[$24>>2]|0; + $26 = (_i64Add(($22|0),($25|0),($$028$|0),0)|0); + $27 = tempRet0; + $28 = $3; + $29 = $28; + HEAP32[$29>>2] = $26; + $30 = (($28) + 4)|0; + $31 = $30; + HEAP32[$31>>2] = $27; + $32 = ($18|0)==(0); + if ($32) { break; } else { - $$012 = $15;$$03 = $13;$current$04 = $current$1; + $$02631 = $$1;$$02730 = $16;$$02829 = $18; } } return; } -function _sph_sha512_close($cc,$dst) { - $cc = $cc|0; - $dst = $dst|0; - var label = 0, sp = 0; - sp = STACKTOP; - _sha384_close($cc,$dst,8); - _sph_sha512_init($cc); - return; -} -function _sha3_round($data,$r) { - $data = $data|0; - $r = $r|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; - var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; - var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; - var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; - var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; - var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; - var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; - var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; - var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; - var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; - var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; - var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; - var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0; - var $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0; - var $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0; - var $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0; - var $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0; - var $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0; - var $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0; - var $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0; - var $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0; - var $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0; - var $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0; - var $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0; - var $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0; - var $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0; - var $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0; - var $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0; - var $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0; - var $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0; - var $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0; - var $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0; - var $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0; - var $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0; - var $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0; - var $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0; - var $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0; - var $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0; - var $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0; - var $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0; - var $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0; - var $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0; - var $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0; - var $963 = 0, $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $98 = 0, $99 = 0, $W = 0, $exitcond = 0, $exitcond19 = 0, $i$011 = 0, $i$110 = 0, $i$29 = 0, label = 0, sp = 0; +function _sha3_round($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$0344 = 0, $$1343 = 0, $$2342 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0; + var $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0; + var $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0; + var $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0; + var $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0; + var $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0; + var $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0; + var $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0; + var $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0; + var $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0; + var $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0; + var $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0; + var $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0; + var $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0; + var $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0; + var $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0; + var $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0; + var $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0; + var $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0; + var $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0; + var $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0; + var $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0; + var $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0; + var $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0; + var $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0; + var $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0; + var $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0; + var $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0; + var $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0; + var $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0; + var $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0; + var $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0; + var $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0; + var $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0; + var $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0; + var $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0; + var $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0; + var $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0; + var $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0; + var $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0; + var $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0; + var $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0; + var $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0; + var $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0; + var $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0; + var $908 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $exitcond = 0, $exitcond352 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 640|0; - $W = sp; - $i$011 = 0; + $2 = sp; + $$0344 = 0; while(1) { - $0 = $i$011 << 3; - $1 = (($data) + ($0)|0); - $2 = (_sph_dec64be_aligned($1)|0); - $3 = tempRet0; - $4 = (($W) + ($i$011<<3)|0); - $5 = $4; - $6 = $5; - HEAP32[$6>>2] = $2; - $7 = (($5) + 4)|0; + $3 = $$0344 << 3; + $4 = (($0) + ($3)|0); + $5 = (_sph_dec64be_aligned($4)|0); + $6 = tempRet0; + $7 = (($2) + ($$0344<<3)|0); $8 = $7; - HEAP32[$8>>2] = $3; - $9 = (($i$011) + 1)|0; - $exitcond19 = ($9|0)==(16); - if ($exitcond19) { - $i$110 = 16; + $9 = $8; + HEAP32[$9>>2] = $5; + $10 = (($8) + 4)|0; + $11 = $10; + HEAP32[$11>>2] = $6; + $12 = (($$0344) + 1)|0; + $exitcond352 = ($12|0)==(16); + if ($exitcond352) { + $$1343 = 16; break; } else { - $i$011 = $9; + $$0344 = $12; } } while(1) { - $10 = (($i$110) + -2)|0; - $11 = (($W) + ($10<<3)|0); - $12 = $11; - $13 = $12; - $14 = HEAP32[$13>>2]|0; - $15 = (($12) + 4)|0; + $13 = (($$1343) + -2)|0; + $14 = (($2) + ($13<<3)|0); + $15 = $14; $16 = $15; $17 = HEAP32[$16>>2]|0; - $18 = (_bitshift64Shl(($14|0),($17|0),45)|0); - $19 = tempRet0; - $20 = (_bitshift64Lshr(($14|0),($17|0),19)|0); - $21 = tempRet0; - $22 = $18 | $20; - $23 = $19 | $21; - $24 = (_bitshift64Shl(($14|0),($17|0),3)|0); - $25 = tempRet0; - $26 = (_bitshift64Lshr(($14|0),($17|0),61)|0); - $27 = tempRet0; - $28 = $24 | $26; - $29 = $25 | $27; - $30 = (_bitshift64Lshr(($14|0),($17|0),6)|0); - $31 = tempRet0; - $32 = $28 ^ $30; - $33 = $29 ^ $31; - $34 = $32 ^ $22; - $35 = $33 ^ $23; - $36 = (($i$110) + -7)|0; - $37 = (($W) + ($36<<3)|0); - $38 = $37; - $39 = $38; - $40 = HEAP32[$39>>2]|0; - $41 = (($38) + 4)|0; + $18 = (($15) + 4)|0; + $19 = $18; + $20 = HEAP32[$19>>2]|0; + $21 = (_bitshift64Shl(($17|0),($20|0),45)|0); + $22 = tempRet0; + $23 = (_bitshift64Lshr(($17|0),($20|0),19)|0); + $24 = tempRet0; + $25 = $21 | $23; + $26 = $22 | $24; + $27 = (_bitshift64Shl(($17|0),($20|0),3)|0); + $28 = tempRet0; + $29 = (_bitshift64Lshr(($17|0),($20|0),61)|0); + $30 = tempRet0; + $31 = $27 | $29; + $32 = $28 | $30; + $33 = (_bitshift64Lshr(($17|0),($20|0),6)|0); + $34 = tempRet0; + $35 = $31 ^ $33; + $36 = $32 ^ $34; + $37 = $35 ^ $25; + $38 = $36 ^ $26; + $39 = (($$1343) + -7)|0; + $40 = (($2) + ($39<<3)|0); + $41 = $40; $42 = $41; $43 = HEAP32[$42>>2]|0; - $44 = (($i$110) + -15)|0; - $45 = (($W) + ($44<<3)|0); - $46 = $45; - $47 = $46; - $48 = HEAP32[$47>>2]|0; - $49 = (($46) + 4)|0; + $44 = (($41) + 4)|0; + $45 = $44; + $46 = HEAP32[$45>>2]|0; + $47 = (($$1343) + -15)|0; + $48 = (($2) + ($47<<3)|0); + $49 = $48; $50 = $49; $51 = HEAP32[$50>>2]|0; - $52 = (_bitshift64Shl(($48|0),($51|0),63)|0); - $53 = tempRet0; - $54 = (_bitshift64Lshr(($48|0),($51|0),1)|0); - $55 = tempRet0; - $56 = $52 | $54; - $57 = $53 | $55; - $58 = (_bitshift64Shl(($48|0),($51|0),56)|0); - $59 = tempRet0; - $60 = (_bitshift64Lshr(($48|0),($51|0),8)|0); - $61 = tempRet0; - $62 = $58 | $60; - $63 = $59 | $61; - $64 = (_bitshift64Lshr(($48|0),($51|0),7)|0); - $65 = tempRet0; - $66 = $62 ^ $64; - $67 = $63 ^ $65; - $68 = $66 ^ $56; - $69 = $67 ^ $57; - $70 = (($i$110) + -16)|0; - $71 = (($W) + ($70<<3)|0); - $72 = $71; - $73 = $72; - $74 = HEAP32[$73>>2]|0; - $75 = (($72) + 4)|0; + $52 = (($49) + 4)|0; + $53 = $52; + $54 = HEAP32[$53>>2]|0; + $55 = (_bitshift64Shl(($51|0),($54|0),63)|0); + $56 = tempRet0; + $57 = (_bitshift64Lshr(($51|0),($54|0),1)|0); + $58 = tempRet0; + $59 = $55 | $57; + $60 = $56 | $58; + $61 = (_bitshift64Shl(($51|0),($54|0),56)|0); + $62 = tempRet0; + $63 = (_bitshift64Lshr(($51|0),($54|0),8)|0); + $64 = tempRet0; + $65 = $61 | $63; + $66 = $62 | $64; + $67 = (_bitshift64Lshr(($51|0),($54|0),7)|0); + $68 = tempRet0; + $69 = $65 ^ $67; + $70 = $66 ^ $68; + $71 = $69 ^ $59; + $72 = $70 ^ $60; + $73 = (($$1343) + -16)|0; + $74 = (($2) + ($73<<3)|0); + $75 = $74; $76 = $75; $77 = HEAP32[$76>>2]|0; - $78 = (_i64Add(($74|0),($77|0),($40|0),($43|0))|0); - $79 = tempRet0; - $80 = (_i64Add(($78|0),($79|0),($34|0),($35|0))|0); - $81 = tempRet0; - $82 = (_i64Add(($80|0),($81|0),($68|0),($69|0))|0); - $83 = tempRet0; - $84 = (($W) + ($i$110<<3)|0); - $85 = $84; - $86 = $85; - HEAP32[$86>>2] = $82; - $87 = (($85) + 4)|0; + $78 = (($75) + 4)|0; + $79 = $78; + $80 = HEAP32[$79>>2]|0; + $81 = (_i64Add(($77|0),($80|0),($43|0),($46|0))|0); + $82 = tempRet0; + $83 = (_i64Add(($81|0),($82|0),($37|0),($38|0))|0); + $84 = tempRet0; + $85 = (_i64Add(($83|0),($84|0),($71|0),($72|0))|0); + $86 = tempRet0; + $87 = (($2) + ($$1343<<3)|0); $88 = $87; - HEAP32[$88>>2] = $83; - $89 = (($i$110) + 1)|0; - $exitcond = ($89|0)==(80); + $89 = $88; + HEAP32[$89>>2] = $85; + $90 = (($88) + 4)|0; + $91 = $90; + HEAP32[$91>>2] = $86; + $92 = (($$1343) + 1)|0; + $exitcond = ($92|0)==(80); if ($exitcond) { break; } else { - $i$110 = $89; + $$1343 = $92; } } - $90 = $r; - $91 = $90; - $92 = HEAP32[$91>>2]|0; - $93 = (($90) + 4)|0; + $93 = $1; $94 = $93; $95 = HEAP32[$94>>2]|0; - $96 = ((($r)) + 8|0); + $96 = (($93) + 4)|0; $97 = $96; - $98 = $97; - $99 = HEAP32[$98>>2]|0; - $100 = (($97) + 4)|0; + $98 = HEAP32[$97>>2]|0; + $99 = ((($1)) + 8|0); + $100 = $99; $101 = $100; $102 = HEAP32[$101>>2]|0; - $103 = ((($r)) + 16|0); + $103 = (($100) + 4)|0; $104 = $103; - $105 = $104; - $106 = HEAP32[$105>>2]|0; - $107 = (($104) + 4)|0; + $105 = HEAP32[$104>>2]|0; + $106 = ((($1)) + 16|0); + $107 = $106; $108 = $107; $109 = HEAP32[$108>>2]|0; - $110 = ((($r)) + 24|0); + $110 = (($107) + 4)|0; $111 = $110; - $112 = $111; - $113 = HEAP32[$112>>2]|0; - $114 = (($111) + 4)|0; + $112 = HEAP32[$111>>2]|0; + $113 = ((($1)) + 24|0); + $114 = $113; $115 = $114; $116 = HEAP32[$115>>2]|0; - $117 = ((($r)) + 32|0); + $117 = (($114) + 4)|0; $118 = $117; - $119 = $118; - $120 = HEAP32[$119>>2]|0; - $121 = (($118) + 4)|0; + $119 = HEAP32[$118>>2]|0; + $120 = ((($1)) + 32|0); + $121 = $120; $122 = $121; $123 = HEAP32[$122>>2]|0; - $124 = ((($r)) + 40|0); + $124 = (($121) + 4)|0; $125 = $124; - $126 = $125; - $127 = HEAP32[$126>>2]|0; - $128 = (($125) + 4)|0; + $126 = HEAP32[$125>>2]|0; + $127 = ((($1)) + 40|0); + $128 = $127; $129 = $128; $130 = HEAP32[$129>>2]|0; - $131 = ((($r)) + 48|0); + $131 = (($128) + 4)|0; $132 = $131; - $133 = $132; - $134 = HEAP32[$133>>2]|0; - $135 = (($132) + 4)|0; + $133 = HEAP32[$132>>2]|0; + $134 = ((($1)) + 48|0); + $135 = $134; $136 = $135; $137 = HEAP32[$136>>2]|0; - $138 = ((($r)) + 56|0); + $138 = (($135) + 4)|0; $139 = $138; - $140 = $139; - $141 = HEAP32[$140>>2]|0; - $142 = (($139) + 4)|0; + $140 = HEAP32[$139>>2]|0; + $141 = ((($1)) + 56|0); + $142 = $141; $143 = $142; $144 = HEAP32[$143>>2]|0; - $145 = $120;$146 = $123;$170 = $127;$171 = $134;$173 = $130;$174 = $137;$193 = $141;$194 = $144;$203 = $92;$204 = $95;$228 = $99;$230 = $102;$234 = $106;$236 = $109;$241 = $113;$242 = $116;$i$29 = 0; + $145 = (($142) + 4)|0; + $146 = $145; + $147 = HEAP32[$146>>2]|0; + $$2342 = 0;$148 = $123;$149 = $126;$173 = $130;$174 = $137;$176 = $133;$177 = $140;$196 = $144;$197 = $147;$206 = $95;$207 = $98;$231 = $102;$233 = $105;$237 = $109;$239 = $112;$244 = $116;$245 = $119; while(1) { - $147 = (_bitshift64Shl(($145|0),($146|0),50)|0); - $148 = tempRet0; - $149 = (_bitshift64Lshr(($145|0),($146|0),14)|0); - $150 = tempRet0; - $151 = $147 | $149; - $152 = $148 | $150; - $153 = (_bitshift64Shl(($145|0),($146|0),46)|0); - $154 = tempRet0; - $155 = (_bitshift64Lshr(($145|0),($146|0),18)|0); - $156 = tempRet0; - $157 = $153 | $155; - $158 = $154 | $156; - $159 = $151 ^ $157; - $160 = $152 ^ $158; - $161 = (_bitshift64Shl(($145|0),($146|0),23)|0); - $162 = tempRet0; - $163 = (_bitshift64Lshr(($145|0),($146|0),41)|0); - $164 = tempRet0; - $165 = $161 | $163; - $166 = $162 | $164; - $167 = $159 ^ $165; - $168 = $160 ^ $166; - $169 = $170 ^ $171; + $150 = (_bitshift64Shl(($148|0),($149|0),50)|0); + $151 = tempRet0; + $152 = (_bitshift64Lshr(($148|0),($149|0),14)|0); + $153 = tempRet0; + $154 = $150 | $152; + $155 = $151 | $153; + $156 = (_bitshift64Shl(($148|0),($149|0),46)|0); + $157 = tempRet0; + $158 = (_bitshift64Lshr(($148|0),($149|0),18)|0); + $159 = tempRet0; + $160 = $156 | $158; + $161 = $157 | $159; + $162 = $154 ^ $160; + $163 = $155 ^ $161; + $164 = (_bitshift64Shl(($148|0),($149|0),23)|0); + $165 = tempRet0; + $166 = (_bitshift64Lshr(($148|0),($149|0),41)|0); + $167 = tempRet0; + $168 = $164 | $166; + $169 = $165 | $167; + $170 = $162 ^ $168; + $171 = $163 ^ $169; $172 = $173 ^ $174; - $175 = $169 & $145; - $176 = $172 & $146; - $177 = $175 ^ $171; - $178 = $176 ^ $174; - $179 = (72 + ($i$29<<3)|0); - $180 = $179; - $181 = $180; - $182 = HEAP32[$181>>2]|0; - $183 = (($180) + 4)|0; + $175 = $176 ^ $177; + $178 = $172 & $148; + $179 = $175 & $149; + $180 = $178 ^ $174; + $181 = $179 ^ $177; + $182 = (72 + ($$2342<<3)|0); + $183 = $182; $184 = $183; $185 = HEAP32[$184>>2]|0; - $186 = (($W) + ($i$29<<3)|0); + $186 = (($183) + 4)|0; $187 = $186; - $188 = $187; - $189 = HEAP32[$188>>2]|0; - $190 = (($187) + 4)|0; + $188 = HEAP32[$187>>2]|0; + $189 = (($2) + ($$2342<<3)|0); + $190 = $189; $191 = $190; $192 = HEAP32[$191>>2]|0; - $195 = (_i64Add(($177|0),($178|0),($193|0),($194|0))|0); - $196 = tempRet0; - $197 = (_i64Add(($195|0),($196|0),($167|0),($168|0))|0); - $198 = tempRet0; - $199 = (_i64Add(($197|0),($198|0),($182|0),($185|0))|0); - $200 = tempRet0; - $201 = (_i64Add(($199|0),($200|0),($189|0),($192|0))|0); - $202 = tempRet0; - $205 = (_bitshift64Shl(($203|0),($204|0),36)|0); - $206 = tempRet0; - $207 = (_bitshift64Lshr(($203|0),($204|0),28)|0); - $208 = tempRet0; - $209 = $205 | $207; - $210 = $206 | $208; - $211 = (_bitshift64Shl(($203|0),($204|0),30)|0); - $212 = tempRet0; - $213 = (_bitshift64Lshr(($203|0),($204|0),34)|0); - $214 = tempRet0; - $215 = $211 | $213; - $216 = $212 | $214; - $217 = $209 ^ $215; - $218 = $210 ^ $216; - $219 = (_bitshift64Shl(($203|0),($204|0),25)|0); - $220 = tempRet0; - $221 = (_bitshift64Lshr(($203|0),($204|0),39)|0); - $222 = tempRet0; - $223 = $219 | $221; - $224 = $220 | $222; - $225 = $217 ^ $223; - $226 = $218 ^ $224; - $227 = $203 & $228; - $229 = $204 & $230; - $231 = $203 | $228; - $232 = $204 | $230; - $233 = $231 & $234; - $235 = $232 & $236; - $237 = $233 | $227; - $238 = $235 | $229; - $239 = (_i64Add(($225|0),($226|0),($237|0),($238|0))|0); - $240 = tempRet0; - $243 = (_i64Add(($201|0),($202|0),($241|0),($242|0))|0); - $244 = tempRet0; - $245 = (_i64Add(($239|0),($240|0),($201|0),($202|0))|0); - $246 = tempRet0; - $247 = (_bitshift64Shl(($243|0),($244|0),50)|0); - $248 = tempRet0; - $249 = (_bitshift64Lshr(($243|0),($244|0),14)|0); - $250 = tempRet0; - $251 = $247 | $249; - $252 = $248 | $250; - $253 = (_bitshift64Shl(($243|0),($244|0),46)|0); - $254 = tempRet0; - $255 = (_bitshift64Lshr(($243|0),($244|0),18)|0); - $256 = tempRet0; - $257 = $253 | $255; - $258 = $254 | $256; - $259 = $251 ^ $257; - $260 = $252 ^ $258; - $261 = (_bitshift64Shl(($243|0),($244|0),23)|0); - $262 = tempRet0; - $263 = (_bitshift64Lshr(($243|0),($244|0),41)|0); - $264 = tempRet0; - $265 = $261 | $263; - $266 = $262 | $264; - $267 = $259 ^ $265; - $268 = $260 ^ $266; - $269 = $145 ^ $170; - $270 = $146 ^ $173; - $271 = $243 & $269; - $272 = $244 & $270; - $273 = $271 ^ $170; - $274 = $272 ^ $173; - $275 = $i$29 | 1; - $276 = (72 + ($275<<3)|0); - $277 = $276; - $278 = $277; - $279 = HEAP32[$278>>2]|0; - $280 = (($277) + 4)|0; + $193 = (($190) + 4)|0; + $194 = $193; + $195 = HEAP32[$194>>2]|0; + $198 = (_i64Add(($180|0),($181|0),($196|0),($197|0))|0); + $199 = tempRet0; + $200 = (_i64Add(($198|0),($199|0),($170|0),($171|0))|0); + $201 = tempRet0; + $202 = (_i64Add(($200|0),($201|0),($185|0),($188|0))|0); + $203 = tempRet0; + $204 = (_i64Add(($202|0),($203|0),($192|0),($195|0))|0); + $205 = tempRet0; + $208 = (_bitshift64Shl(($206|0),($207|0),36)|0); + $209 = tempRet0; + $210 = (_bitshift64Lshr(($206|0),($207|0),28)|0); + $211 = tempRet0; + $212 = $208 | $210; + $213 = $209 | $211; + $214 = (_bitshift64Shl(($206|0),($207|0),30)|0); + $215 = tempRet0; + $216 = (_bitshift64Lshr(($206|0),($207|0),34)|0); + $217 = tempRet0; + $218 = $214 | $216; + $219 = $215 | $217; + $220 = $212 ^ $218; + $221 = $213 ^ $219; + $222 = (_bitshift64Shl(($206|0),($207|0),25)|0); + $223 = tempRet0; + $224 = (_bitshift64Lshr(($206|0),($207|0),39)|0); + $225 = tempRet0; + $226 = $222 | $224; + $227 = $223 | $225; + $228 = $220 ^ $226; + $229 = $221 ^ $227; + $230 = $206 & $231; + $232 = $207 & $233; + $234 = $206 | $231; + $235 = $207 | $233; + $236 = $234 & $237; + $238 = $235 & $239; + $240 = $236 | $230; + $241 = $238 | $232; + $242 = (_i64Add(($228|0),($229|0),($240|0),($241|0))|0); + $243 = tempRet0; + $246 = (_i64Add(($204|0),($205|0),($244|0),($245|0))|0); + $247 = tempRet0; + $248 = (_i64Add(($242|0),($243|0),($204|0),($205|0))|0); + $249 = tempRet0; + $250 = (_bitshift64Shl(($246|0),($247|0),50)|0); + $251 = tempRet0; + $252 = (_bitshift64Lshr(($246|0),($247|0),14)|0); + $253 = tempRet0; + $254 = $250 | $252; + $255 = $251 | $253; + $256 = (_bitshift64Shl(($246|0),($247|0),46)|0); + $257 = tempRet0; + $258 = (_bitshift64Lshr(($246|0),($247|0),18)|0); + $259 = tempRet0; + $260 = $256 | $258; + $261 = $257 | $259; + $262 = $254 ^ $260; + $263 = $255 ^ $261; + $264 = (_bitshift64Shl(($246|0),($247|0),23)|0); + $265 = tempRet0; + $266 = (_bitshift64Lshr(($246|0),($247|0),41)|0); + $267 = tempRet0; + $268 = $264 | $266; + $269 = $265 | $267; + $270 = $262 ^ $268; + $271 = $263 ^ $269; + $272 = $148 ^ $173; + $273 = $149 ^ $176; + $274 = $246 & $272; + $275 = $247 & $273; + $276 = $274 ^ $173; + $277 = $275 ^ $176; + $278 = $$2342 | 1; + $279 = (72 + ($278<<3)|0); + $280 = $279; $281 = $280; $282 = HEAP32[$281>>2]|0; - $283 = (($W) + ($275<<3)|0); + $283 = (($280) + 4)|0; $284 = $283; - $285 = $284; - $286 = HEAP32[$285>>2]|0; - $287 = (($284) + 4)|0; + $285 = HEAP32[$284>>2]|0; + $286 = (($2) + ($278<<3)|0); + $287 = $286; $288 = $287; $289 = HEAP32[$288>>2]|0; - $290 = (_i64Add(($279|0),($282|0),($171|0),($174|0))|0); - $291 = tempRet0; - $292 = (_i64Add(($290|0),($291|0),($286|0),($289|0))|0); - $293 = tempRet0; - $294 = (_i64Add(($292|0),($293|0),($273|0),($274|0))|0); - $295 = tempRet0; - $296 = (_i64Add(($294|0),($295|0),($267|0),($268|0))|0); - $297 = tempRet0; - $298 = (_bitshift64Shl(($245|0),($246|0),36)|0); - $299 = tempRet0; - $300 = (_bitshift64Lshr(($245|0),($246|0),28)|0); - $301 = tempRet0; - $302 = $298 | $300; - $303 = $299 | $301; - $304 = (_bitshift64Shl(($245|0),($246|0),30)|0); - $305 = tempRet0; - $306 = (_bitshift64Lshr(($245|0),($246|0),34)|0); - $307 = tempRet0; - $308 = $304 | $306; - $309 = $305 | $307; - $310 = $302 ^ $308; - $311 = $303 ^ $309; - $312 = (_bitshift64Shl(($245|0),($246|0),25)|0); - $313 = tempRet0; - $314 = (_bitshift64Lshr(($245|0),($246|0),39)|0); - $315 = tempRet0; - $316 = $312 | $314; - $317 = $313 | $315; - $318 = $310 ^ $316; - $319 = $311 ^ $317; - $320 = $245 & $203; - $321 = $246 & $204; - $322 = $245 | $203; - $323 = $246 | $204; - $324 = $322 & $228; - $325 = $323 & $230; - $326 = $324 | $320; - $327 = $325 | $321; - $328 = (_i64Add(($318|0),($319|0),($326|0),($327|0))|0); - $329 = tempRet0; - $330 = (_i64Add(($296|0),($297|0),($234|0),($236|0))|0); - $331 = tempRet0; - $332 = (_i64Add(($328|0),($329|0),($296|0),($297|0))|0); - $333 = tempRet0; - $334 = (_bitshift64Shl(($330|0),($331|0),50)|0); - $335 = tempRet0; - $336 = (_bitshift64Lshr(($330|0),($331|0),14)|0); - $337 = tempRet0; - $338 = $334 | $336; - $339 = $335 | $337; - $340 = (_bitshift64Shl(($330|0),($331|0),46)|0); - $341 = tempRet0; - $342 = (_bitshift64Lshr(($330|0),($331|0),18)|0); - $343 = tempRet0; - $344 = $340 | $342; - $345 = $341 | $343; - $346 = $338 ^ $344; - $347 = $339 ^ $345; - $348 = (_bitshift64Shl(($330|0),($331|0),23)|0); - $349 = tempRet0; - $350 = (_bitshift64Lshr(($330|0),($331|0),41)|0); - $351 = tempRet0; - $352 = $348 | $350; - $353 = $349 | $351; - $354 = $346 ^ $352; - $355 = $347 ^ $353; - $356 = $243 ^ $145; - $357 = $244 ^ $146; - $358 = $330 & $356; - $359 = $331 & $357; - $360 = $358 ^ $145; - $361 = $359 ^ $146; - $362 = $i$29 | 2; - $363 = (72 + ($362<<3)|0); - $364 = $363; - $365 = $364; - $366 = HEAP32[$365>>2]|0; - $367 = (($364) + 4)|0; + $290 = (($287) + 4)|0; + $291 = $290; + $292 = HEAP32[$291>>2]|0; + $293 = (_i64Add(($282|0),($285|0),($174|0),($177|0))|0); + $294 = tempRet0; + $295 = (_i64Add(($293|0),($294|0),($289|0),($292|0))|0); + $296 = tempRet0; + $297 = (_i64Add(($295|0),($296|0),($276|0),($277|0))|0); + $298 = tempRet0; + $299 = (_i64Add(($297|0),($298|0),($270|0),($271|0))|0); + $300 = tempRet0; + $301 = (_bitshift64Shl(($248|0),($249|0),36)|0); + $302 = tempRet0; + $303 = (_bitshift64Lshr(($248|0),($249|0),28)|0); + $304 = tempRet0; + $305 = $301 | $303; + $306 = $302 | $304; + $307 = (_bitshift64Shl(($248|0),($249|0),30)|0); + $308 = tempRet0; + $309 = (_bitshift64Lshr(($248|0),($249|0),34)|0); + $310 = tempRet0; + $311 = $307 | $309; + $312 = $308 | $310; + $313 = $305 ^ $311; + $314 = $306 ^ $312; + $315 = (_bitshift64Shl(($248|0),($249|0),25)|0); + $316 = tempRet0; + $317 = (_bitshift64Lshr(($248|0),($249|0),39)|0); + $318 = tempRet0; + $319 = $315 | $317; + $320 = $316 | $318; + $321 = $313 ^ $319; + $322 = $314 ^ $320; + $323 = $248 & $206; + $324 = $249 & $207; + $325 = $248 | $206; + $326 = $249 | $207; + $327 = $325 & $231; + $328 = $326 & $233; + $329 = $327 | $323; + $330 = $328 | $324; + $331 = (_i64Add(($321|0),($322|0),($329|0),($330|0))|0); + $332 = tempRet0; + $333 = (_i64Add(($299|0),($300|0),($237|0),($239|0))|0); + $334 = tempRet0; + $335 = (_i64Add(($331|0),($332|0),($299|0),($300|0))|0); + $336 = tempRet0; + $337 = (_bitshift64Shl(($333|0),($334|0),50)|0); + $338 = tempRet0; + $339 = (_bitshift64Lshr(($333|0),($334|0),14)|0); + $340 = tempRet0; + $341 = $337 | $339; + $342 = $338 | $340; + $343 = (_bitshift64Shl(($333|0),($334|0),46)|0); + $344 = tempRet0; + $345 = (_bitshift64Lshr(($333|0),($334|0),18)|0); + $346 = tempRet0; + $347 = $343 | $345; + $348 = $344 | $346; + $349 = $341 ^ $347; + $350 = $342 ^ $348; + $351 = (_bitshift64Shl(($333|0),($334|0),23)|0); + $352 = tempRet0; + $353 = (_bitshift64Lshr(($333|0),($334|0),41)|0); + $354 = tempRet0; + $355 = $351 | $353; + $356 = $352 | $354; + $357 = $349 ^ $355; + $358 = $350 ^ $356; + $359 = $246 ^ $148; + $360 = $247 ^ $149; + $361 = $333 & $359; + $362 = $334 & $360; + $363 = $361 ^ $148; + $364 = $362 ^ $149; + $365 = $$2342 | 2; + $366 = (72 + ($365<<3)|0); + $367 = $366; $368 = $367; $369 = HEAP32[$368>>2]|0; - $370 = (($W) + ($362<<3)|0); + $370 = (($367) + 4)|0; $371 = $370; - $372 = $371; - $373 = HEAP32[$372>>2]|0; - $374 = (($371) + 4)|0; + $372 = HEAP32[$371>>2]|0; + $373 = (($2) + ($365<<3)|0); + $374 = $373; $375 = $374; $376 = HEAP32[$375>>2]|0; - $377 = (_i64Add(($366|0),($369|0),($170|0),($173|0))|0); - $378 = tempRet0; - $379 = (_i64Add(($377|0),($378|0),($373|0),($376|0))|0); - $380 = tempRet0; - $381 = (_i64Add(($379|0),($380|0),($360|0),($361|0))|0); - $382 = tempRet0; - $383 = (_i64Add(($381|0),($382|0),($354|0),($355|0))|0); - $384 = tempRet0; - $385 = (_bitshift64Shl(($332|0),($333|0),36)|0); - $386 = tempRet0; - $387 = (_bitshift64Lshr(($332|0),($333|0),28)|0); - $388 = tempRet0; - $389 = $385 | $387; - $390 = $386 | $388; - $391 = (_bitshift64Shl(($332|0),($333|0),30)|0); - $392 = tempRet0; - $393 = (_bitshift64Lshr(($332|0),($333|0),34)|0); - $394 = tempRet0; - $395 = $391 | $393; - $396 = $392 | $394; - $397 = $389 ^ $395; - $398 = $390 ^ $396; - $399 = (_bitshift64Shl(($332|0),($333|0),25)|0); - $400 = tempRet0; - $401 = (_bitshift64Lshr(($332|0),($333|0),39)|0); - $402 = tempRet0; - $403 = $399 | $401; - $404 = $400 | $402; - $405 = $397 ^ $403; - $406 = $398 ^ $404; - $407 = $332 & $245; - $408 = $333 & $246; - $409 = $332 | $245; - $410 = $333 | $246; - $411 = $409 & $203; - $412 = $410 & $204; - $413 = $411 | $407; - $414 = $412 | $408; - $415 = (_i64Add(($405|0),($406|0),($413|0),($414|0))|0); - $416 = tempRet0; - $417 = (_i64Add(($383|0),($384|0),($228|0),($230|0))|0); - $418 = tempRet0; - $419 = (_i64Add(($415|0),($416|0),($383|0),($384|0))|0); - $420 = tempRet0; - $421 = (_bitshift64Shl(($417|0),($418|0),50)|0); - $422 = tempRet0; - $423 = (_bitshift64Lshr(($417|0),($418|0),14)|0); - $424 = tempRet0; - $425 = $421 | $423; - $426 = $422 | $424; - $427 = (_bitshift64Shl(($417|0),($418|0),46)|0); - $428 = tempRet0; - $429 = (_bitshift64Lshr(($417|0),($418|0),18)|0); - $430 = tempRet0; - $431 = $427 | $429; - $432 = $428 | $430; - $433 = $425 ^ $431; - $434 = $426 ^ $432; - $435 = (_bitshift64Shl(($417|0),($418|0),23)|0); - $436 = tempRet0; - $437 = (_bitshift64Lshr(($417|0),($418|0),41)|0); - $438 = tempRet0; - $439 = $435 | $437; - $440 = $436 | $438; - $441 = $433 ^ $439; - $442 = $434 ^ $440; - $443 = $330 ^ $243; - $444 = $331 ^ $244; - $445 = $417 & $443; - $446 = $418 & $444; - $447 = $445 ^ $243; - $448 = $446 ^ $244; - $449 = $i$29 | 3; - $450 = (72 + ($449<<3)|0); - $451 = $450; - $452 = $451; - $453 = HEAP32[$452>>2]|0; - $454 = (($451) + 4)|0; + $377 = (($374) + 4)|0; + $378 = $377; + $379 = HEAP32[$378>>2]|0; + $380 = (_i64Add(($369|0),($372|0),($173|0),($176|0))|0); + $381 = tempRet0; + $382 = (_i64Add(($380|0),($381|0),($376|0),($379|0))|0); + $383 = tempRet0; + $384 = (_i64Add(($382|0),($383|0),($363|0),($364|0))|0); + $385 = tempRet0; + $386 = (_i64Add(($384|0),($385|0),($357|0),($358|0))|0); + $387 = tempRet0; + $388 = (_bitshift64Shl(($335|0),($336|0),36)|0); + $389 = tempRet0; + $390 = (_bitshift64Lshr(($335|0),($336|0),28)|0); + $391 = tempRet0; + $392 = $388 | $390; + $393 = $389 | $391; + $394 = (_bitshift64Shl(($335|0),($336|0),30)|0); + $395 = tempRet0; + $396 = (_bitshift64Lshr(($335|0),($336|0),34)|0); + $397 = tempRet0; + $398 = $394 | $396; + $399 = $395 | $397; + $400 = $392 ^ $398; + $401 = $393 ^ $399; + $402 = (_bitshift64Shl(($335|0),($336|0),25)|0); + $403 = tempRet0; + $404 = (_bitshift64Lshr(($335|0),($336|0),39)|0); + $405 = tempRet0; + $406 = $402 | $404; + $407 = $403 | $405; + $408 = $400 ^ $406; + $409 = $401 ^ $407; + $410 = $335 & $248; + $411 = $336 & $249; + $412 = $335 | $248; + $413 = $336 | $249; + $414 = $412 & $206; + $415 = $413 & $207; + $416 = $414 | $410; + $417 = $415 | $411; + $418 = (_i64Add(($408|0),($409|0),($416|0),($417|0))|0); + $419 = tempRet0; + $420 = (_i64Add(($386|0),($387|0),($231|0),($233|0))|0); + $421 = tempRet0; + $422 = (_i64Add(($418|0),($419|0),($386|0),($387|0))|0); + $423 = tempRet0; + $424 = (_bitshift64Shl(($420|0),($421|0),50)|0); + $425 = tempRet0; + $426 = (_bitshift64Lshr(($420|0),($421|0),14)|0); + $427 = tempRet0; + $428 = $424 | $426; + $429 = $425 | $427; + $430 = (_bitshift64Shl(($420|0),($421|0),46)|0); + $431 = tempRet0; + $432 = (_bitshift64Lshr(($420|0),($421|0),18)|0); + $433 = tempRet0; + $434 = $430 | $432; + $435 = $431 | $433; + $436 = $428 ^ $434; + $437 = $429 ^ $435; + $438 = (_bitshift64Shl(($420|0),($421|0),23)|0); + $439 = tempRet0; + $440 = (_bitshift64Lshr(($420|0),($421|0),41)|0); + $441 = tempRet0; + $442 = $438 | $440; + $443 = $439 | $441; + $444 = $436 ^ $442; + $445 = $437 ^ $443; + $446 = $333 ^ $246; + $447 = $334 ^ $247; + $448 = $420 & $446; + $449 = $421 & $447; + $450 = $448 ^ $246; + $451 = $449 ^ $247; + $452 = $$2342 | 3; + $453 = (72 + ($452<<3)|0); + $454 = $453; $455 = $454; $456 = HEAP32[$455>>2]|0; - $457 = (($W) + ($449<<3)|0); + $457 = (($454) + 4)|0; $458 = $457; - $459 = $458; - $460 = HEAP32[$459>>2]|0; - $461 = (($458) + 4)|0; + $459 = HEAP32[$458>>2]|0; + $460 = (($2) + ($452<<3)|0); + $461 = $460; $462 = $461; $463 = HEAP32[$462>>2]|0; - $464 = (_i64Add(($453|0),($456|0),($145|0),($146|0))|0); - $465 = tempRet0; - $466 = (_i64Add(($464|0),($465|0),($460|0),($463|0))|0); - $467 = tempRet0; - $468 = (_i64Add(($466|0),($467|0),($447|0),($448|0))|0); - $469 = tempRet0; - $470 = (_i64Add(($468|0),($469|0),($441|0),($442|0))|0); - $471 = tempRet0; - $472 = (_bitshift64Shl(($419|0),($420|0),36)|0); - $473 = tempRet0; - $474 = (_bitshift64Lshr(($419|0),($420|0),28)|0); - $475 = tempRet0; - $476 = $472 | $474; - $477 = $473 | $475; - $478 = (_bitshift64Shl(($419|0),($420|0),30)|0); - $479 = tempRet0; - $480 = (_bitshift64Lshr(($419|0),($420|0),34)|0); - $481 = tempRet0; - $482 = $478 | $480; - $483 = $479 | $481; - $484 = $476 ^ $482; - $485 = $477 ^ $483; - $486 = (_bitshift64Shl(($419|0),($420|0),25)|0); - $487 = tempRet0; - $488 = (_bitshift64Lshr(($419|0),($420|0),39)|0); - $489 = tempRet0; - $490 = $486 | $488; - $491 = $487 | $489; - $492 = $484 ^ $490; - $493 = $485 ^ $491; - $494 = $419 & $332; - $495 = $420 & $333; - $496 = $419 | $332; - $497 = $420 | $333; - $498 = $496 & $245; - $499 = $497 & $246; - $500 = $498 | $494; - $501 = $499 | $495; - $502 = (_i64Add(($492|0),($493|0),($500|0),($501|0))|0); - $503 = tempRet0; - $504 = (_i64Add(($470|0),($471|0),($203|0),($204|0))|0); - $505 = tempRet0; - $506 = (_i64Add(($502|0),($503|0),($470|0),($471|0))|0); - $507 = tempRet0; - $508 = (_bitshift64Shl(($504|0),($505|0),50)|0); - $509 = tempRet0; - $510 = (_bitshift64Lshr(($504|0),($505|0),14)|0); - $511 = tempRet0; - $512 = $508 | $510; - $513 = $509 | $511; - $514 = (_bitshift64Shl(($504|0),($505|0),46)|0); - $515 = tempRet0; - $516 = (_bitshift64Lshr(($504|0),($505|0),18)|0); - $517 = tempRet0; - $518 = $514 | $516; - $519 = $515 | $517; - $520 = $512 ^ $518; - $521 = $513 ^ $519; - $522 = (_bitshift64Shl(($504|0),($505|0),23)|0); - $523 = tempRet0; - $524 = (_bitshift64Lshr(($504|0),($505|0),41)|0); - $525 = tempRet0; - $526 = $522 | $524; - $527 = $523 | $525; - $528 = $520 ^ $526; - $529 = $521 ^ $527; - $530 = $417 ^ $330; - $531 = $418 ^ $331; - $532 = $504 & $530; - $533 = $505 & $531; - $534 = $532 ^ $330; - $535 = $533 ^ $331; - $536 = $i$29 | 4; - $537 = (72 + ($536<<3)|0); - $538 = $537; - $539 = $538; - $540 = HEAP32[$539>>2]|0; - $541 = (($538) + 4)|0; + $464 = (($461) + 4)|0; + $465 = $464; + $466 = HEAP32[$465>>2]|0; + $467 = (_i64Add(($456|0),($459|0),($148|0),($149|0))|0); + $468 = tempRet0; + $469 = (_i64Add(($467|0),($468|0),($463|0),($466|0))|0); + $470 = tempRet0; + $471 = (_i64Add(($469|0),($470|0),($450|0),($451|0))|0); + $472 = tempRet0; + $473 = (_i64Add(($471|0),($472|0),($444|0),($445|0))|0); + $474 = tempRet0; + $475 = (_bitshift64Shl(($422|0),($423|0),36)|0); + $476 = tempRet0; + $477 = (_bitshift64Lshr(($422|0),($423|0),28)|0); + $478 = tempRet0; + $479 = $475 | $477; + $480 = $476 | $478; + $481 = (_bitshift64Shl(($422|0),($423|0),30)|0); + $482 = tempRet0; + $483 = (_bitshift64Lshr(($422|0),($423|0),34)|0); + $484 = tempRet0; + $485 = $481 | $483; + $486 = $482 | $484; + $487 = $479 ^ $485; + $488 = $480 ^ $486; + $489 = (_bitshift64Shl(($422|0),($423|0),25)|0); + $490 = tempRet0; + $491 = (_bitshift64Lshr(($422|0),($423|0),39)|0); + $492 = tempRet0; + $493 = $489 | $491; + $494 = $490 | $492; + $495 = $487 ^ $493; + $496 = $488 ^ $494; + $497 = $422 & $335; + $498 = $423 & $336; + $499 = $422 | $335; + $500 = $423 | $336; + $501 = $499 & $248; + $502 = $500 & $249; + $503 = $501 | $497; + $504 = $502 | $498; + $505 = (_i64Add(($495|0),($496|0),($503|0),($504|0))|0); + $506 = tempRet0; + $507 = (_i64Add(($473|0),($474|0),($206|0),($207|0))|0); + $508 = tempRet0; + $509 = (_i64Add(($505|0),($506|0),($473|0),($474|0))|0); + $510 = tempRet0; + $511 = (_bitshift64Shl(($507|0),($508|0),50)|0); + $512 = tempRet0; + $513 = (_bitshift64Lshr(($507|0),($508|0),14)|0); + $514 = tempRet0; + $515 = $511 | $513; + $516 = $512 | $514; + $517 = (_bitshift64Shl(($507|0),($508|0),46)|0); + $518 = tempRet0; + $519 = (_bitshift64Lshr(($507|0),($508|0),18)|0); + $520 = tempRet0; + $521 = $517 | $519; + $522 = $518 | $520; + $523 = $515 ^ $521; + $524 = $516 ^ $522; + $525 = (_bitshift64Shl(($507|0),($508|0),23)|0); + $526 = tempRet0; + $527 = (_bitshift64Lshr(($507|0),($508|0),41)|0); + $528 = tempRet0; + $529 = $525 | $527; + $530 = $526 | $528; + $531 = $523 ^ $529; + $532 = $524 ^ $530; + $533 = $420 ^ $333; + $534 = $421 ^ $334; + $535 = $507 & $533; + $536 = $508 & $534; + $537 = $535 ^ $333; + $538 = $536 ^ $334; + $539 = $$2342 | 4; + $540 = (72 + ($539<<3)|0); + $541 = $540; $542 = $541; $543 = HEAP32[$542>>2]|0; - $544 = (($W) + ($536<<3)|0); + $544 = (($541) + 4)|0; $545 = $544; - $546 = $545; - $547 = HEAP32[$546>>2]|0; - $548 = (($545) + 4)|0; + $546 = HEAP32[$545>>2]|0; + $547 = (($2) + ($539<<3)|0); + $548 = $547; $549 = $548; $550 = HEAP32[$549>>2]|0; - $551 = (_i64Add(($540|0),($543|0),($243|0),($244|0))|0); - $552 = tempRet0; - $553 = (_i64Add(($551|0),($552|0),($547|0),($550|0))|0); - $554 = tempRet0; - $555 = (_i64Add(($553|0),($554|0),($534|0),($535|0))|0); - $556 = tempRet0; - $557 = (_i64Add(($555|0),($556|0),($528|0),($529|0))|0); - $558 = tempRet0; - $559 = (_bitshift64Shl(($506|0),($507|0),36)|0); - $560 = tempRet0; - $561 = (_bitshift64Lshr(($506|0),($507|0),28)|0); - $562 = tempRet0; - $563 = $559 | $561; - $564 = $560 | $562; - $565 = (_bitshift64Shl(($506|0),($507|0),30)|0); - $566 = tempRet0; - $567 = (_bitshift64Lshr(($506|0),($507|0),34)|0); - $568 = tempRet0; - $569 = $565 | $567; - $570 = $566 | $568; - $571 = $563 ^ $569; - $572 = $564 ^ $570; - $573 = (_bitshift64Shl(($506|0),($507|0),25)|0); - $574 = tempRet0; - $575 = (_bitshift64Lshr(($506|0),($507|0),39)|0); - $576 = tempRet0; - $577 = $573 | $575; - $578 = $574 | $576; - $579 = $571 ^ $577; - $580 = $572 ^ $578; - $581 = $506 & $419; - $582 = $507 & $420; - $583 = $506 | $419; - $584 = $507 | $420; - $585 = $583 & $332; - $586 = $584 & $333; - $587 = $585 | $581; - $588 = $586 | $582; - $589 = (_i64Add(($579|0),($580|0),($587|0),($588|0))|0); - $590 = tempRet0; - $591 = (_i64Add(($557|0),($558|0),($245|0),($246|0))|0); - $592 = tempRet0; - $593 = (_i64Add(($589|0),($590|0),($557|0),($558|0))|0); - $594 = tempRet0; - $595 = (_bitshift64Shl(($591|0),($592|0),50)|0); - $596 = tempRet0; - $597 = (_bitshift64Lshr(($591|0),($592|0),14)|0); - $598 = tempRet0; - $599 = $595 | $597; - $600 = $596 | $598; - $601 = (_bitshift64Shl(($591|0),($592|0),46)|0); - $602 = tempRet0; - $603 = (_bitshift64Lshr(($591|0),($592|0),18)|0); - $604 = tempRet0; - $605 = $601 | $603; - $606 = $602 | $604; - $607 = $599 ^ $605; - $608 = $600 ^ $606; - $609 = (_bitshift64Shl(($591|0),($592|0),23)|0); - $610 = tempRet0; - $611 = (_bitshift64Lshr(($591|0),($592|0),41)|0); - $612 = tempRet0; - $613 = $609 | $611; - $614 = $610 | $612; - $615 = $607 ^ $613; - $616 = $608 ^ $614; - $617 = $504 ^ $417; - $618 = $505 ^ $418; - $619 = $591 & $617; - $620 = $592 & $618; - $621 = $619 ^ $417; - $622 = $620 ^ $418; - $623 = $i$29 | 5; - $624 = (72 + ($623<<3)|0); - $625 = $624; - $626 = $625; - $627 = HEAP32[$626>>2]|0; - $628 = (($625) + 4)|0; + $551 = (($548) + 4)|0; + $552 = $551; + $553 = HEAP32[$552>>2]|0; + $554 = (_i64Add(($543|0),($546|0),($246|0),($247|0))|0); + $555 = tempRet0; + $556 = (_i64Add(($554|0),($555|0),($550|0),($553|0))|0); + $557 = tempRet0; + $558 = (_i64Add(($556|0),($557|0),($537|0),($538|0))|0); + $559 = tempRet0; + $560 = (_i64Add(($558|0),($559|0),($531|0),($532|0))|0); + $561 = tempRet0; + $562 = (_bitshift64Shl(($509|0),($510|0),36)|0); + $563 = tempRet0; + $564 = (_bitshift64Lshr(($509|0),($510|0),28)|0); + $565 = tempRet0; + $566 = $562 | $564; + $567 = $563 | $565; + $568 = (_bitshift64Shl(($509|0),($510|0),30)|0); + $569 = tempRet0; + $570 = (_bitshift64Lshr(($509|0),($510|0),34)|0); + $571 = tempRet0; + $572 = $568 | $570; + $573 = $569 | $571; + $574 = $566 ^ $572; + $575 = $567 ^ $573; + $576 = (_bitshift64Shl(($509|0),($510|0),25)|0); + $577 = tempRet0; + $578 = (_bitshift64Lshr(($509|0),($510|0),39)|0); + $579 = tempRet0; + $580 = $576 | $578; + $581 = $577 | $579; + $582 = $574 ^ $580; + $583 = $575 ^ $581; + $584 = $509 & $422; + $585 = $510 & $423; + $586 = $509 | $422; + $587 = $510 | $423; + $588 = $586 & $335; + $589 = $587 & $336; + $590 = $588 | $584; + $591 = $589 | $585; + $592 = (_i64Add(($582|0),($583|0),($590|0),($591|0))|0); + $593 = tempRet0; + $594 = (_i64Add(($560|0),($561|0),($248|0),($249|0))|0); + $595 = tempRet0; + $596 = (_i64Add(($592|0),($593|0),($560|0),($561|0))|0); + $597 = tempRet0; + $598 = (_bitshift64Shl(($594|0),($595|0),50)|0); + $599 = tempRet0; + $600 = (_bitshift64Lshr(($594|0),($595|0),14)|0); + $601 = tempRet0; + $602 = $598 | $600; + $603 = $599 | $601; + $604 = (_bitshift64Shl(($594|0),($595|0),46)|0); + $605 = tempRet0; + $606 = (_bitshift64Lshr(($594|0),($595|0),18)|0); + $607 = tempRet0; + $608 = $604 | $606; + $609 = $605 | $607; + $610 = $602 ^ $608; + $611 = $603 ^ $609; + $612 = (_bitshift64Shl(($594|0),($595|0),23)|0); + $613 = tempRet0; + $614 = (_bitshift64Lshr(($594|0),($595|0),41)|0); + $615 = tempRet0; + $616 = $612 | $614; + $617 = $613 | $615; + $618 = $610 ^ $616; + $619 = $611 ^ $617; + $620 = $507 ^ $420; + $621 = $508 ^ $421; + $622 = $594 & $620; + $623 = $595 & $621; + $624 = $622 ^ $420; + $625 = $623 ^ $421; + $626 = $$2342 | 5; + $627 = (72 + ($626<<3)|0); + $628 = $627; $629 = $628; $630 = HEAP32[$629>>2]|0; - $631 = (($W) + ($623<<3)|0); + $631 = (($628) + 4)|0; $632 = $631; - $633 = $632; - $634 = HEAP32[$633>>2]|0; - $635 = (($632) + 4)|0; + $633 = HEAP32[$632>>2]|0; + $634 = (($2) + ($626<<3)|0); + $635 = $634; $636 = $635; $637 = HEAP32[$636>>2]|0; - $638 = (_i64Add(($634|0),($637|0),($627|0),($630|0))|0); - $639 = tempRet0; - $640 = (_i64Add(($638|0),($639|0),($330|0),($331|0))|0); - $641 = tempRet0; - $642 = (_i64Add(($640|0),($641|0),($621|0),($622|0))|0); - $643 = tempRet0; - $644 = (_i64Add(($642|0),($643|0),($615|0),($616|0))|0); - $645 = tempRet0; - $646 = (_bitshift64Shl(($593|0),($594|0),36)|0); - $647 = tempRet0; - $648 = (_bitshift64Lshr(($593|0),($594|0),28)|0); - $649 = tempRet0; - $650 = $646 | $648; - $651 = $647 | $649; - $652 = (_bitshift64Shl(($593|0),($594|0),30)|0); - $653 = tempRet0; - $654 = (_bitshift64Lshr(($593|0),($594|0),34)|0); - $655 = tempRet0; - $656 = $652 | $654; - $657 = $653 | $655; - $658 = $650 ^ $656; - $659 = $651 ^ $657; - $660 = (_bitshift64Shl(($593|0),($594|0),25)|0); - $661 = tempRet0; - $662 = (_bitshift64Lshr(($593|0),($594|0),39)|0); - $663 = tempRet0; - $664 = $660 | $662; - $665 = $661 | $663; - $666 = $658 ^ $664; - $667 = $659 ^ $665; - $668 = $593 & $506; - $669 = $594 & $507; - $670 = $593 | $506; - $671 = $594 | $507; - $672 = $670 & $419; - $673 = $671 & $420; - $674 = $672 | $668; - $675 = $673 | $669; - $676 = (_i64Add(($666|0),($667|0),($674|0),($675|0))|0); - $677 = tempRet0; - $678 = (_i64Add(($644|0),($645|0),($332|0),($333|0))|0); - $679 = tempRet0; - $680 = (_i64Add(($676|0),($677|0),($644|0),($645|0))|0); - $681 = tempRet0; - $682 = (_bitshift64Shl(($678|0),($679|0),50)|0); - $683 = tempRet0; - $684 = (_bitshift64Lshr(($678|0),($679|0),14)|0); - $685 = tempRet0; - $686 = $682 | $684; - $687 = $683 | $685; - $688 = (_bitshift64Shl(($678|0),($679|0),46)|0); - $689 = tempRet0; - $690 = (_bitshift64Lshr(($678|0),($679|0),18)|0); - $691 = tempRet0; - $692 = $688 | $690; - $693 = $689 | $691; - $694 = $686 ^ $692; - $695 = $687 ^ $693; - $696 = (_bitshift64Shl(($678|0),($679|0),23)|0); - $697 = tempRet0; - $698 = (_bitshift64Lshr(($678|0),($679|0),41)|0); - $699 = tempRet0; - $700 = $696 | $698; - $701 = $697 | $699; - $702 = $694 ^ $700; - $703 = $695 ^ $701; - $704 = $591 ^ $504; - $705 = $592 ^ $505; - $706 = $678 & $704; - $707 = $679 & $705; - $708 = $706 ^ $504; - $709 = $707 ^ $505; - $710 = $i$29 | 6; - $711 = (72 + ($710<<3)|0); - $712 = $711; - $713 = $712; - $714 = HEAP32[$713>>2]|0; - $715 = (($712) + 4)|0; + $638 = (($635) + 4)|0; + $639 = $638; + $640 = HEAP32[$639>>2]|0; + $641 = (_i64Add(($637|0),($640|0),($630|0),($633|0))|0); + $642 = tempRet0; + $643 = (_i64Add(($641|0),($642|0),($333|0),($334|0))|0); + $644 = tempRet0; + $645 = (_i64Add(($643|0),($644|0),($624|0),($625|0))|0); + $646 = tempRet0; + $647 = (_i64Add(($645|0),($646|0),($618|0),($619|0))|0); + $648 = tempRet0; + $649 = (_bitshift64Shl(($596|0),($597|0),36)|0); + $650 = tempRet0; + $651 = (_bitshift64Lshr(($596|0),($597|0),28)|0); + $652 = tempRet0; + $653 = $649 | $651; + $654 = $650 | $652; + $655 = (_bitshift64Shl(($596|0),($597|0),30)|0); + $656 = tempRet0; + $657 = (_bitshift64Lshr(($596|0),($597|0),34)|0); + $658 = tempRet0; + $659 = $655 | $657; + $660 = $656 | $658; + $661 = $653 ^ $659; + $662 = $654 ^ $660; + $663 = (_bitshift64Shl(($596|0),($597|0),25)|0); + $664 = tempRet0; + $665 = (_bitshift64Lshr(($596|0),($597|0),39)|0); + $666 = tempRet0; + $667 = $663 | $665; + $668 = $664 | $666; + $669 = $661 ^ $667; + $670 = $662 ^ $668; + $671 = $596 & $509; + $672 = $597 & $510; + $673 = $596 | $509; + $674 = $597 | $510; + $675 = $673 & $422; + $676 = $674 & $423; + $677 = $675 | $671; + $678 = $676 | $672; + $679 = (_i64Add(($669|0),($670|0),($677|0),($678|0))|0); + $680 = tempRet0; + $681 = (_i64Add(($647|0),($648|0),($335|0),($336|0))|0); + $682 = tempRet0; + $683 = (_i64Add(($679|0),($680|0),($647|0),($648|0))|0); + $684 = tempRet0; + $685 = (_bitshift64Shl(($681|0),($682|0),50)|0); + $686 = tempRet0; + $687 = (_bitshift64Lshr(($681|0),($682|0),14)|0); + $688 = tempRet0; + $689 = $685 | $687; + $690 = $686 | $688; + $691 = (_bitshift64Shl(($681|0),($682|0),46)|0); + $692 = tempRet0; + $693 = (_bitshift64Lshr(($681|0),($682|0),18)|0); + $694 = tempRet0; + $695 = $691 | $693; + $696 = $692 | $694; + $697 = $689 ^ $695; + $698 = $690 ^ $696; + $699 = (_bitshift64Shl(($681|0),($682|0),23)|0); + $700 = tempRet0; + $701 = (_bitshift64Lshr(($681|0),($682|0),41)|0); + $702 = tempRet0; + $703 = $699 | $701; + $704 = $700 | $702; + $705 = $697 ^ $703; + $706 = $698 ^ $704; + $707 = $594 ^ $507; + $708 = $595 ^ $508; + $709 = $681 & $707; + $710 = $682 & $708; + $711 = $709 ^ $507; + $712 = $710 ^ $508; + $713 = $$2342 | 6; + $714 = (72 + ($713<<3)|0); + $715 = $714; $716 = $715; $717 = HEAP32[$716>>2]|0; - $718 = (($W) + ($710<<3)|0); + $718 = (($715) + 4)|0; $719 = $718; - $720 = $719; - $721 = HEAP32[$720>>2]|0; - $722 = (($719) + 4)|0; + $720 = HEAP32[$719>>2]|0; + $721 = (($2) + ($713<<3)|0); + $722 = $721; $723 = $722; $724 = HEAP32[$723>>2]|0; - $725 = (_i64Add(($721|0),($724|0),($714|0),($717|0))|0); - $726 = tempRet0; - $727 = (_i64Add(($725|0),($726|0),($417|0),($418|0))|0); - $728 = tempRet0; - $729 = (_i64Add(($727|0),($728|0),($708|0),($709|0))|0); - $730 = tempRet0; - $731 = (_i64Add(($729|0),($730|0),($702|0),($703|0))|0); - $732 = tempRet0; - $733 = (_bitshift64Shl(($680|0),($681|0),36)|0); - $734 = tempRet0; - $735 = (_bitshift64Lshr(($680|0),($681|0),28)|0); - $736 = tempRet0; - $737 = $733 | $735; - $738 = $734 | $736; - $739 = (_bitshift64Shl(($680|0),($681|0),30)|0); - $740 = tempRet0; - $741 = (_bitshift64Lshr(($680|0),($681|0),34)|0); - $742 = tempRet0; - $743 = $739 | $741; - $744 = $740 | $742; - $745 = $737 ^ $743; - $746 = $738 ^ $744; - $747 = (_bitshift64Shl(($680|0),($681|0),25)|0); - $748 = tempRet0; - $749 = (_bitshift64Lshr(($680|0),($681|0),39)|0); - $750 = tempRet0; - $751 = $747 | $749; - $752 = $748 | $750; - $753 = $745 ^ $751; - $754 = $746 ^ $752; - $755 = $680 & $593; - $756 = $681 & $594; - $757 = $680 | $593; - $758 = $681 | $594; - $759 = $757 & $506; - $760 = $758 & $507; - $761 = $759 | $755; - $762 = $760 | $756; - $763 = (_i64Add(($753|0),($754|0),($761|0),($762|0))|0); - $764 = tempRet0; - $765 = (_i64Add(($731|0),($732|0),($419|0),($420|0))|0); - $766 = tempRet0; - $767 = (_i64Add(($763|0),($764|0),($731|0),($732|0))|0); - $768 = tempRet0; - $769 = (_bitshift64Shl(($765|0),($766|0),50)|0); - $770 = tempRet0; - $771 = (_bitshift64Lshr(($765|0),($766|0),14)|0); - $772 = tempRet0; - $773 = $769 | $771; - $774 = $770 | $772; - $775 = (_bitshift64Shl(($765|0),($766|0),46)|0); - $776 = tempRet0; - $777 = (_bitshift64Lshr(($765|0),($766|0),18)|0); - $778 = tempRet0; - $779 = $775 | $777; - $780 = $776 | $778; - $781 = $773 ^ $779; - $782 = $774 ^ $780; - $783 = (_bitshift64Shl(($765|0),($766|0),23)|0); - $784 = tempRet0; - $785 = (_bitshift64Lshr(($765|0),($766|0),41)|0); - $786 = tempRet0; - $787 = $783 | $785; - $788 = $784 | $786; - $789 = $781 ^ $787; - $790 = $782 ^ $788; - $791 = $678 ^ $591; - $792 = $679 ^ $592; - $793 = $765 & $791; - $794 = $766 & $792; - $795 = $793 ^ $591; - $796 = $794 ^ $592; - $797 = $i$29 | 7; - $798 = (72 + ($797<<3)|0); - $799 = $798; - $800 = $799; - $801 = HEAP32[$800>>2]|0; - $802 = (($799) + 4)|0; + $725 = (($722) + 4)|0; + $726 = $725; + $727 = HEAP32[$726>>2]|0; + $728 = (_i64Add(($724|0),($727|0),($717|0),($720|0))|0); + $729 = tempRet0; + $730 = (_i64Add(($728|0),($729|0),($420|0),($421|0))|0); + $731 = tempRet0; + $732 = (_i64Add(($730|0),($731|0),($711|0),($712|0))|0); + $733 = tempRet0; + $734 = (_i64Add(($732|0),($733|0),($705|0),($706|0))|0); + $735 = tempRet0; + $736 = (_bitshift64Shl(($683|0),($684|0),36)|0); + $737 = tempRet0; + $738 = (_bitshift64Lshr(($683|0),($684|0),28)|0); + $739 = tempRet0; + $740 = $736 | $738; + $741 = $737 | $739; + $742 = (_bitshift64Shl(($683|0),($684|0),30)|0); + $743 = tempRet0; + $744 = (_bitshift64Lshr(($683|0),($684|0),34)|0); + $745 = tempRet0; + $746 = $742 | $744; + $747 = $743 | $745; + $748 = $740 ^ $746; + $749 = $741 ^ $747; + $750 = (_bitshift64Shl(($683|0),($684|0),25)|0); + $751 = tempRet0; + $752 = (_bitshift64Lshr(($683|0),($684|0),39)|0); + $753 = tempRet0; + $754 = $750 | $752; + $755 = $751 | $753; + $756 = $748 ^ $754; + $757 = $749 ^ $755; + $758 = $683 & $596; + $759 = $684 & $597; + $760 = $683 | $596; + $761 = $684 | $597; + $762 = $760 & $509; + $763 = $761 & $510; + $764 = $762 | $758; + $765 = $763 | $759; + $766 = (_i64Add(($756|0),($757|0),($764|0),($765|0))|0); + $767 = tempRet0; + $768 = (_i64Add(($734|0),($735|0),($422|0),($423|0))|0); + $769 = tempRet0; + $770 = (_i64Add(($766|0),($767|0),($734|0),($735|0))|0); + $771 = tempRet0; + $772 = (_bitshift64Shl(($768|0),($769|0),50)|0); + $773 = tempRet0; + $774 = (_bitshift64Lshr(($768|0),($769|0),14)|0); + $775 = tempRet0; + $776 = $772 | $774; + $777 = $773 | $775; + $778 = (_bitshift64Shl(($768|0),($769|0),46)|0); + $779 = tempRet0; + $780 = (_bitshift64Lshr(($768|0),($769|0),18)|0); + $781 = tempRet0; + $782 = $778 | $780; + $783 = $779 | $781; + $784 = $776 ^ $782; + $785 = $777 ^ $783; + $786 = (_bitshift64Shl(($768|0),($769|0),23)|0); + $787 = tempRet0; + $788 = (_bitshift64Lshr(($768|0),($769|0),41)|0); + $789 = tempRet0; + $790 = $786 | $788; + $791 = $787 | $789; + $792 = $784 ^ $790; + $793 = $785 ^ $791; + $794 = $681 ^ $594; + $795 = $682 ^ $595; + $796 = $768 & $794; + $797 = $769 & $795; + $798 = $796 ^ $594; + $799 = $797 ^ $595; + $800 = $$2342 | 7; + $801 = (72 + ($800<<3)|0); + $802 = $801; $803 = $802; $804 = HEAP32[$803>>2]|0; - $805 = (($W) + ($797<<3)|0); + $805 = (($802) + 4)|0; $806 = $805; - $807 = $806; - $808 = HEAP32[$807>>2]|0; - $809 = (($806) + 4)|0; + $807 = HEAP32[$806>>2]|0; + $808 = (($2) + ($800<<3)|0); + $809 = $808; $810 = $809; $811 = HEAP32[$810>>2]|0; - $812 = (_i64Add(($808|0),($811|0),($801|0),($804|0))|0); - $813 = tempRet0; - $814 = (_i64Add(($812|0),($813|0),($504|0),($505|0))|0); - $815 = tempRet0; - $816 = (_i64Add(($814|0),($815|0),($795|0),($796|0))|0); - $817 = tempRet0; - $818 = (_i64Add(($816|0),($817|0),($789|0),($790|0))|0); - $819 = tempRet0; - $820 = (_bitshift64Shl(($767|0),($768|0),36)|0); - $821 = tempRet0; - $822 = (_bitshift64Lshr(($767|0),($768|0),28)|0); - $823 = tempRet0; - $824 = $820 | $822; - $825 = $821 | $823; - $826 = (_bitshift64Shl(($767|0),($768|0),30)|0); - $827 = tempRet0; - $828 = (_bitshift64Lshr(($767|0),($768|0),34)|0); - $829 = tempRet0; - $830 = $826 | $828; - $831 = $827 | $829; - $832 = $824 ^ $830; - $833 = $825 ^ $831; - $834 = (_bitshift64Shl(($767|0),($768|0),25)|0); - $835 = tempRet0; - $836 = (_bitshift64Lshr(($767|0),($768|0),39)|0); - $837 = tempRet0; - $838 = $834 | $836; - $839 = $835 | $837; - $840 = $832 ^ $838; - $841 = $833 ^ $839; - $842 = $767 & $680; - $843 = $768 & $681; - $844 = $767 | $680; - $845 = $768 | $681; - $846 = $844 & $593; - $847 = $845 & $594; - $848 = $846 | $842; - $849 = $847 | $843; - $850 = (_i64Add(($840|0),($841|0),($848|0),($849|0))|0); - $851 = tempRet0; - $852 = (_i64Add(($818|0),($819|0),($506|0),($507|0))|0); - $853 = tempRet0; - $854 = (_i64Add(($850|0),($851|0),($818|0),($819|0))|0); - $855 = tempRet0; - $856 = (($i$29) + 8)|0; - $857 = ($856|0)<(80); - if ($857) { - $145 = $852;$146 = $853;$170 = $765;$171 = $678;$173 = $766;$174 = $679;$193 = $591;$194 = $592;$203 = $854;$204 = $855;$228 = $767;$230 = $768;$234 = $680;$236 = $681;$241 = $593;$242 = $594;$i$29 = $856; + $812 = (($809) + 4)|0; + $813 = $812; + $814 = HEAP32[$813>>2]|0; + $815 = (_i64Add(($811|0),($814|0),($804|0),($807|0))|0); + $816 = tempRet0; + $817 = (_i64Add(($815|0),($816|0),($507|0),($508|0))|0); + $818 = tempRet0; + $819 = (_i64Add(($817|0),($818|0),($798|0),($799|0))|0); + $820 = tempRet0; + $821 = (_i64Add(($819|0),($820|0),($792|0),($793|0))|0); + $822 = tempRet0; + $823 = (_bitshift64Shl(($770|0),($771|0),36)|0); + $824 = tempRet0; + $825 = (_bitshift64Lshr(($770|0),($771|0),28)|0); + $826 = tempRet0; + $827 = $823 | $825; + $828 = $824 | $826; + $829 = (_bitshift64Shl(($770|0),($771|0),30)|0); + $830 = tempRet0; + $831 = (_bitshift64Lshr(($770|0),($771|0),34)|0); + $832 = tempRet0; + $833 = $829 | $831; + $834 = $830 | $832; + $835 = $827 ^ $833; + $836 = $828 ^ $834; + $837 = (_bitshift64Shl(($770|0),($771|0),25)|0); + $838 = tempRet0; + $839 = (_bitshift64Lshr(($770|0),($771|0),39)|0); + $840 = tempRet0; + $841 = $837 | $839; + $842 = $838 | $840; + $843 = $835 ^ $841; + $844 = $836 ^ $842; + $845 = $770 & $683; + $846 = $771 & $684; + $847 = $770 | $683; + $848 = $771 | $684; + $849 = $847 & $596; + $850 = $848 & $597; + $851 = $849 | $845; + $852 = $850 | $846; + $853 = (_i64Add(($843|0),($844|0),($851|0),($852|0))|0); + $854 = tempRet0; + $855 = (_i64Add(($821|0),($822|0),($509|0),($510|0))|0); + $856 = tempRet0; + $857 = (_i64Add(($853|0),($854|0),($821|0),($822|0))|0); + $858 = tempRet0; + $859 = (($$2342) + 8)|0; + $860 = ($859|0)<(80); + if ($860) { + $$2342 = $859;$148 = $855;$149 = $856;$173 = $768;$174 = $681;$176 = $769;$177 = $682;$196 = $594;$197 = $595;$206 = $857;$207 = $858;$231 = $770;$233 = $771;$237 = $683;$239 = $684;$244 = $596;$245 = $597; } else { - $864 = $854;$865 = $855;$878 = $767;$879 = $768;$892 = $680;$893 = $681;$906 = $593;$907 = $594;$920 = $852;$921 = $853;$934 = $765;$935 = $766;$948 = $678;$949 = $679;$962 = $591;$963 = $592; break; } } - $858 = $r; - $859 = $858; - $860 = HEAP32[$859>>2]|0; - $861 = (($858) + 4)|0; - $862 = $861; - $863 = HEAP32[$862>>2]|0; - $866 = (_i64Add(($860|0),($863|0),($864|0),($865|0))|0); - $867 = tempRet0; - $868 = $r; - $869 = $868; - HEAP32[$869>>2] = $866; - $870 = (($868) + 4)|0; - $871 = $870; - HEAP32[$871>>2] = $867; - $872 = $96; - $873 = $872; - $874 = HEAP32[$873>>2]|0; - $875 = (($872) + 4)|0; + $861 = (_i64Add(($857|0),($858|0),($95|0),($98|0))|0); + $862 = tempRet0; + $863 = $1; + $864 = $863; + HEAP32[$864>>2] = $861; + $865 = (($863) + 4)|0; + $866 = $865; + HEAP32[$866>>2] = $862; + $867 = (_i64Add(($770|0),($771|0),($102|0),($105|0))|0); + $868 = tempRet0; + $869 = $99; + $870 = $869; + HEAP32[$870>>2] = $867; + $871 = (($869) + 4)|0; + $872 = $871; + HEAP32[$872>>2] = $868; + $873 = (_i64Add(($683|0),($684|0),($109|0),($112|0))|0); + $874 = tempRet0; + $875 = $106; $876 = $875; - $877 = HEAP32[$876>>2]|0; - $880 = (_i64Add(($874|0),($877|0),($878|0),($879|0))|0); - $881 = tempRet0; - $882 = $96; - $883 = $882; - HEAP32[$883>>2] = $880; - $884 = (($882) + 4)|0; - $885 = $884; - HEAP32[$885>>2] = $881; - $886 = $103; - $887 = $886; - $888 = HEAP32[$887>>2]|0; - $889 = (($886) + 4)|0; + HEAP32[$876>>2] = $873; + $877 = (($875) + 4)|0; + $878 = $877; + HEAP32[$878>>2] = $874; + $879 = (_i64Add(($596|0),($597|0),($116|0),($119|0))|0); + $880 = tempRet0; + $881 = $113; + $882 = $881; + HEAP32[$882>>2] = $879; + $883 = (($881) + 4)|0; + $884 = $883; + HEAP32[$884>>2] = $880; + $885 = (_i64Add(($855|0),($856|0),($123|0),($126|0))|0); + $886 = tempRet0; + $887 = $120; + $888 = $887; + HEAP32[$888>>2] = $885; + $889 = (($887) + 4)|0; $890 = $889; - $891 = HEAP32[$890>>2]|0; - $894 = (_i64Add(($888|0),($891|0),($892|0),($893|0))|0); - $895 = tempRet0; - $896 = $103; - $897 = $896; - HEAP32[$897>>2] = $894; - $898 = (($896) + 4)|0; - $899 = $898; - HEAP32[$899>>2] = $895; - $900 = $110; - $901 = $900; - $902 = HEAP32[$901>>2]|0; - $903 = (($900) + 4)|0; - $904 = $903; - $905 = HEAP32[$904>>2]|0; - $908 = (_i64Add(($902|0),($905|0),($906|0),($907|0))|0); - $909 = tempRet0; - $910 = $110; - $911 = $910; - HEAP32[$911>>2] = $908; - $912 = (($910) + 4)|0; - $913 = $912; - HEAP32[$913>>2] = $909; - $914 = $117; - $915 = $914; - $916 = HEAP32[$915>>2]|0; - $917 = (($914) + 4)|0; - $918 = $917; - $919 = HEAP32[$918>>2]|0; - $922 = (_i64Add(($916|0),($919|0),($920|0),($921|0))|0); - $923 = tempRet0; - $924 = $117; - $925 = $924; - HEAP32[$925>>2] = $922; - $926 = (($924) + 4)|0; - $927 = $926; - HEAP32[$927>>2] = $923; - $928 = $124; - $929 = $928; - $930 = HEAP32[$929>>2]|0; - $931 = (($928) + 4)|0; - $932 = $931; - $933 = HEAP32[$932>>2]|0; - $936 = (_i64Add(($930|0),($933|0),($934|0),($935|0))|0); - $937 = tempRet0; - $938 = $124; - $939 = $938; - HEAP32[$939>>2] = $936; - $940 = (($938) + 4)|0; - $941 = $940; - HEAP32[$941>>2] = $937; - $942 = $131; - $943 = $942; - $944 = HEAP32[$943>>2]|0; - $945 = (($942) + 4)|0; - $946 = $945; - $947 = HEAP32[$946>>2]|0; - $950 = (_i64Add(($944|0),($947|0),($948|0),($949|0))|0); - $951 = tempRet0; - $952 = $131; - $953 = $952; - HEAP32[$953>>2] = $950; - $954 = (($952) + 4)|0; - $955 = $954; - HEAP32[$955>>2] = $951; - $956 = $138; - $957 = $956; - $958 = HEAP32[$957>>2]|0; - $959 = (($956) + 4)|0; - $960 = $959; - $961 = HEAP32[$960>>2]|0; - $964 = (_i64Add(($958|0),($961|0),($962|0),($963|0))|0); - $965 = tempRet0; - $966 = $138; - $967 = $966; - HEAP32[$967>>2] = $964; - $968 = (($966) + 4)|0; - $969 = $968; - HEAP32[$969>>2] = $965; + HEAP32[$890>>2] = $886; + $891 = (_i64Add(($768|0),($769|0),($130|0),($133|0))|0); + $892 = tempRet0; + $893 = $127; + $894 = $893; + HEAP32[$894>>2] = $891; + $895 = (($893) + 4)|0; + $896 = $895; + HEAP32[$896>>2] = $892; + $897 = (_i64Add(($681|0),($682|0),($137|0),($140|0))|0); + $898 = tempRet0; + $899 = $134; + $900 = $899; + HEAP32[$900>>2] = $897; + $901 = (($899) + 4)|0; + $902 = $901; + HEAP32[$902>>2] = $898; + $903 = (_i64Add(($594|0),($595|0),($144|0),($147|0))|0); + $904 = tempRet0; + $905 = $141; + $906 = $905; + HEAP32[$906>>2] = $903; + $907 = (($905) + 4)|0; + $908 = $907; + HEAP32[$908>>2] = $904; STACKTOP = sp;return; } -function _sha384_close($cc,$dst,$rnum) { - $cc = $cc|0; - $dst = $dst|0; - $rnum = $rnum|0; +function _sph_dec64be_aligned($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0; + var $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0; + var $46 = 0, $47 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = (_bitshift64Shl(($2|0),0,56)|0); + $4 = tempRet0; + $5 = ((($0)) + 1|0); + $6 = HEAP8[$5>>0]|0; + $7 = $6&255; + $8 = (_bitshift64Shl(($7|0),0,48)|0); + $9 = tempRet0; + $10 = $8 | $3; + $11 = $9 | $4; + $12 = ((($0)) + 2|0); + $13 = HEAP8[$12>>0]|0; + $14 = $13&255; + $15 = (_bitshift64Shl(($14|0),0,40)|0); + $16 = tempRet0; + $17 = $10 | $15; + $18 = $11 | $16; + $19 = ((($0)) + 3|0); + $20 = HEAP8[$19>>0]|0; + $21 = $20&255; + $22 = $18 | $21; + $23 = ((($0)) + 4|0); + $24 = HEAP8[$23>>0]|0; + $25 = $24&255; + $26 = (_bitshift64Shl(($25|0),0,24)|0); + $27 = tempRet0; + $28 = $17 | $26; + $29 = $22 | $27; + $30 = ((($0)) + 5|0); + $31 = HEAP8[$30>>0]|0; + $32 = $31&255; + $33 = (_bitshift64Shl(($32|0),0,16)|0); + $34 = tempRet0; + $35 = $28 | $33; + $36 = $29 | $34; + $37 = ((($0)) + 6|0); + $38 = HEAP8[$37>>0]|0; + $39 = $38&255; + $40 = (_bitshift64Shl(($39|0),0,8)|0); + $41 = tempRet0; + $42 = $35 | $40; + $43 = $36 | $41; + $44 = ((($0)) + 7|0); + $45 = HEAP8[$44>>0]|0; + $46 = $45&255; + $47 = $42 | $46; + tempRet0 = ($43); + return ($47|0); +} +function _sha384_close($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; var label = 0, sp = 0; sp = STACKTOP; - _sha384_addbits_and_close($cc,0,0,$dst,$rnum); + _sha384_addbits_and_close($0,0,0,$1,$2); return; } -function _sha384_addbits_and_close($cc,$ub,$n,$dst,$rnum) { - $cc = $cc|0; - $ub = $ub|0; - $n = $n|0; - $dst = $dst|0; - $rnum = $rnum|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; - var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $exitcond = 0, $u$01 = 0, dest = 0, label = 0, sp = 0, stop = 0; +function _sha384_addbits_and_close($0,$1,$2,$3,$4) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + $4 = $4|0; + var $$035 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0; + var $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $exitcond = 0, dest = 0, label = 0, sp = 0, stop = 0; sp = STACKTOP; - $0 = ((($cc)) + 192|0); - $1 = $0; - $2 = $1; - $3 = HEAP32[$2>>2]|0; - $4 = (($1) + 4)|0; - $5 = $4; - $6 = HEAP32[$5>>2]|0; - $7 = $3 & 127; - $8 = 128 >>> $n; - $9 = (0 - ($8))|0; - $10 = $9 & $ub; - $11 = $10 | $8; - $12 = $11&255; - $13 = (($7) + 1)|0; - $14 = (($cc) + ($7)|0); - HEAP8[$14>>0] = $12; - $15 = ($13>>>0)>(112); - $16 = (($cc) + ($13)|0); - if ($15) { - $17 = $7 ^ 127; - _memset(($16|0),0,($17|0))|0; - $18 = ((($cc)) + 128|0); - _sha3_round($cc,$18); - dest=$cc; stop=dest+112|0; do { HEAP8[dest>>0]=0|0; dest=dest+1|0; } while ((dest|0) < (stop|0)); + $5 = ((($0)) + 192|0); + $6 = $5; + $7 = $6; + $8 = HEAP32[$7>>2]|0; + $9 = (($6) + 4)|0; + $10 = $9; + $11 = HEAP32[$10>>2]|0; + $12 = $8 & 127; + $13 = 128 >>> $2; + $14 = (0 - ($13))|0; + $15 = $14 & $1; + $16 = $15 | $13; + $17 = $16&255; + $18 = (($12) + 1)|0; + $19 = (($0) + ($12)|0); + HEAP8[$19>>0] = $17; + $20 = ($18>>>0)>(112); + $21 = (($0) + ($18)|0); + if ($20) { + $22 = $12 ^ 127; + _memset(($21|0),0,($22|0))|0; + $23 = ((($0)) + 128|0); + _sha3_round($0,$23); + dest=$0; stop=dest+112|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); } else { - $19 = (111 - ($7))|0; - _memset(($16|0),0,($19|0))|0; + $24 = (111 - ($12))|0; + _memset(($21|0),0,($24|0))|0; } - $20 = ((($cc)) + 112|0); - $21 = $0; - $22 = $21; - $23 = HEAP32[$22>>2]|0; - $24 = (($21) + 4)|0; - $25 = $24; - $26 = HEAP32[$25>>2]|0; - $27 = (_bitshift64Lshr(($23|0),($26|0),61)|0); - $28 = tempRet0; - _sph_enc64be_aligned($20,$27,$28); - $29 = ((($cc)) + 120|0); - $30 = $0; - $31 = $30; - $32 = HEAP32[$31>>2]|0; - $33 = (($30) + 4)|0; - $34 = $33; - $35 = HEAP32[$34>>2]|0; - $36 = (_bitshift64Shl(($32|0),($35|0),3)|0); - $37 = tempRet0; - $38 = (_i64Add(($36|0),($37|0),($n|0),0)|0); - $39 = tempRet0; - _sph_enc64be_aligned($29,$38,$39); - $40 = ((($cc)) + 128|0); - _sha3_round($cc,$40); - $41 = ($rnum|0)==(0); - if ($41) { + $25 = ((($0)) + 112|0); + $26 = $5; + $27 = $26; + $28 = HEAP32[$27>>2]|0; + $29 = (($26) + 4)|0; + $30 = $29; + $31 = HEAP32[$30>>2]|0; + $32 = (_bitshift64Lshr(($28|0),($31|0),61)|0); + $33 = tempRet0; + _sph_enc64be_aligned($25,$32,$33); + $34 = ((($0)) + 120|0); + $35 = $5; + $36 = $35; + $37 = HEAP32[$36>>2]|0; + $38 = (($35) + 4)|0; + $39 = $38; + $40 = HEAP32[$39>>2]|0; + $41 = (_bitshift64Shl(($37|0),($40|0),3)|0); + $42 = tempRet0; + $43 = (_i64Add(($41|0),($42|0),($2|0),0)|0); + $44 = tempRet0; + _sph_enc64be_aligned($34,$43,$44); + $45 = ((($0)) + 128|0); + _sha3_round($0,$45); + $46 = ($4|0)==(0); + if ($46) { return; } else { - $u$01 = 0; + $$035 = 0; } while(1) { - $42 = $u$01 << 3; - $43 = (($dst) + ($42)|0); - $44 = (($40) + ($u$01<<3)|0); - $45 = $44; - $46 = $45; - $47 = HEAP32[$46>>2]|0; - $48 = (($45) + 4)|0; - $49 = $48; - $50 = HEAP32[$49>>2]|0; - _sph_enc64be($43,$47,$50); - $51 = (($u$01) + 1)|0; - $exitcond = ($51|0)==($rnum|0); + $47 = $$035 << 3; + $48 = (($3) + ($47)|0); + $49 = (($45) + ($$035<<3)|0); + $50 = $49; + $51 = $50; + $52 = HEAP32[$51>>2]|0; + $53 = (($50) + 4)|0; + $54 = $53; + $55 = HEAP32[$54>>2]|0; + _sph_enc64be($48,$52,$55); + $56 = (($$035) + 1)|0; + $exitcond = ($56|0)==($4|0); if ($exitcond) { break; } else { - $u$01 = $51; + $$035 = $56; } } return; } -function _sph_enc64be_aligned($dst,$0,$1) { - $dst = $dst|0; +function _sph_enc64be_aligned($0,$1,$2) { $0 = $0|0; $1 = $1|0; - var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0; var $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $2 = (_bitshift64Lshr(($0|0),($1|0),56)|0); - $3 = tempRet0; - $4 = $2&255; - HEAP8[$dst>>0] = $4; - $5 = (_bitshift64Lshr(($0|0),($1|0),48)|0); - $6 = tempRet0; - $7 = $5&255; - $8 = ((($dst)) + 1|0); - HEAP8[$8>>0] = $7; - $9 = (_bitshift64Lshr(($0|0),($1|0),40)|0); - $10 = tempRet0; - $11 = $9&255; - $12 = ((($dst)) + 2|0); - HEAP8[$12>>0] = $11; - $13 = $1&255; - $14 = ((($dst)) + 3|0); - HEAP8[$14>>0] = $13; - $15 = (_bitshift64Lshr(($0|0),($1|0),24)|0); - $16 = tempRet0; - $17 = $15&255; - $18 = ((($dst)) + 4|0); - HEAP8[$18>>0] = $17; - $19 = (_bitshift64Lshr(($0|0),($1|0),16)|0); - $20 = tempRet0; - $21 = $19&255; - $22 = ((($dst)) + 5|0); - HEAP8[$22>>0] = $21; - $23 = (_bitshift64Lshr(($0|0),($1|0),8)|0); - $24 = tempRet0; - $25 = $23&255; - $26 = ((($dst)) + 6|0); - HEAP8[$26>>0] = $25; - $27 = $0&255; - $28 = ((($dst)) + 7|0); - HEAP8[$28>>0] = $27; + $3 = (_bitshift64Lshr(($1|0),($2|0),56)|0); + $4 = tempRet0; + $5 = $3&255; + HEAP8[$0>>0] = $5; + $6 = (_bitshift64Lshr(($1|0),($2|0),48)|0); + $7 = tempRet0; + $8 = $6&255; + $9 = ((($0)) + 1|0); + HEAP8[$9>>0] = $8; + $10 = (_bitshift64Lshr(($1|0),($2|0),40)|0); + $11 = tempRet0; + $12 = $10&255; + $13 = ((($0)) + 2|0); + HEAP8[$13>>0] = $12; + $14 = $2&255; + $15 = ((($0)) + 3|0); + HEAP8[$15>>0] = $14; + $16 = (_bitshift64Lshr(($1|0),($2|0),24)|0); + $17 = tempRet0; + $18 = $16&255; + $19 = ((($0)) + 4|0); + HEAP8[$19>>0] = $18; + $20 = (_bitshift64Lshr(($1|0),($2|0),16)|0); + $21 = tempRet0; + $22 = $20&255; + $23 = ((($0)) + 5|0); + HEAP8[$23>>0] = $22; + $24 = (_bitshift64Lshr(($1|0),($2|0),8)|0); + $25 = tempRet0; + $26 = $24&255; + $27 = ((($0)) + 6|0); + HEAP8[$27>>0] = $26; + $28 = $1&255; + $29 = ((($0)) + 7|0); + HEAP8[$29>>0] = $28; return; } -function _sph_enc64be($dst,$0,$1) { - $dst = $dst|0; +function _sph_enc64be($0,$1,$2) { $0 = $0|0; $1 = $1|0; - var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0; var $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $2 = (_bitshift64Lshr(($0|0),($1|0),56)|0); - $3 = tempRet0; - $4 = $2&255; - HEAP8[$dst>>0] = $4; - $5 = (_bitshift64Lshr(($0|0),($1|0),48)|0); - $6 = tempRet0; - $7 = $5&255; - $8 = ((($dst)) + 1|0); - HEAP8[$8>>0] = $7; - $9 = (_bitshift64Lshr(($0|0),($1|0),40)|0); - $10 = tempRet0; - $11 = $9&255; - $12 = ((($dst)) + 2|0); - HEAP8[$12>>0] = $11; - $13 = $1&255; - $14 = ((($dst)) + 3|0); - HEAP8[$14>>0] = $13; - $15 = (_bitshift64Lshr(($0|0),($1|0),24)|0); - $16 = tempRet0; - $17 = $15&255; - $18 = ((($dst)) + 4|0); - HEAP8[$18>>0] = $17; - $19 = (_bitshift64Lshr(($0|0),($1|0),16)|0); - $20 = tempRet0; - $21 = $19&255; - $22 = ((($dst)) + 5|0); - HEAP8[$22>>0] = $21; - $23 = (_bitshift64Lshr(($0|0),($1|0),8)|0); - $24 = tempRet0; - $25 = $23&255; - $26 = ((($dst)) + 6|0); - HEAP8[$26>>0] = $25; - $27 = $0&255; - $28 = ((($dst)) + 7|0); - HEAP8[$28>>0] = $27; + $3 = (_bitshift64Lshr(($1|0),($2|0),56)|0); + $4 = tempRet0; + $5 = $3&255; + HEAP8[$0>>0] = $5; + $6 = (_bitshift64Lshr(($1|0),($2|0),48)|0); + $7 = tempRet0; + $8 = $6&255; + $9 = ((($0)) + 1|0); + HEAP8[$9>>0] = $8; + $10 = (_bitshift64Lshr(($1|0),($2|0),40)|0); + $11 = tempRet0; + $12 = $10&255; + $13 = ((($0)) + 2|0); + HEAP8[$13>>0] = $12; + $14 = $2&255; + $15 = ((($0)) + 3|0); + HEAP8[$15>>0] = $14; + $16 = (_bitshift64Lshr(($1|0),($2|0),24)|0); + $17 = tempRet0; + $18 = $16&255; + $19 = ((($0)) + 4|0); + HEAP8[$19>>0] = $18; + $20 = (_bitshift64Lshr(($1|0),($2|0),16)|0); + $21 = tempRet0; + $22 = $20&255; + $23 = ((($0)) + 5|0); + HEAP8[$23>>0] = $22; + $24 = (_bitshift64Lshr(($1|0),($2|0),8)|0); + $25 = tempRet0; + $26 = $24&255; + $27 = ((($0)) + 6|0); + HEAP8[$27>>0] = $26; + $28 = $1&255; + $29 = ((($0)) + 7|0); + HEAP8[$29>>0] = $28; return; } -function _sph_dec64be_aligned($src) { - $src = $src|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; - var $45 = 0, $46 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; +function _sph_sha512_close($0,$1) { + $0 = $0|0; + $1 = $1|0; + var label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP8[$src>>0]|0; - $1 = $0&255; - $2 = (_bitshift64Shl(($1|0),0,56)|0); - $3 = tempRet0; - $4 = ((($src)) + 1|0); - $5 = HEAP8[$4>>0]|0; - $6 = $5&255; - $7 = (_bitshift64Shl(($6|0),0,48)|0); - $8 = tempRet0; - $9 = $7 | $2; - $10 = $8 | $3; - $11 = ((($src)) + 2|0); - $12 = HEAP8[$11>>0]|0; - $13 = $12&255; - $14 = (_bitshift64Shl(($13|0),0,40)|0); - $15 = tempRet0; - $16 = $9 | $14; - $17 = $10 | $15; - $18 = ((($src)) + 3|0); - $19 = HEAP8[$18>>0]|0; - $20 = $19&255; - $21 = $17 | $20; - $22 = ((($src)) + 4|0); - $23 = HEAP8[$22>>0]|0; - $24 = $23&255; - $25 = (_bitshift64Shl(($24|0),0,24)|0); - $26 = tempRet0; - $27 = $16 | $25; - $28 = $21 | $26; - $29 = ((($src)) + 5|0); - $30 = HEAP8[$29>>0]|0; - $31 = $30&255; - $32 = (_bitshift64Shl(($31|0),0,16)|0); - $33 = tempRet0; - $34 = $27 | $32; - $35 = $28 | $33; - $36 = ((($src)) + 6|0); - $37 = HEAP8[$36>>0]|0; - $38 = $37&255; - $39 = (_bitshift64Shl(($38|0),0,8)|0); - $40 = tempRet0; - $41 = $34 | $39; - $42 = $35 | $40; - $43 = ((($src)) + 7|0); - $44 = HEAP8[$43>>0]|0; - $45 = $44&255; - $46 = $41 | $45; - tempRet0 = ($42); - return ($46|0); + _sha384_close($0,$1,8); + _sph_sha512_init($0); + return; } -function ___errno_location() { - var $$0 = 0, $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; +function _emscripten_get_global_libc() { + var label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP32[32512>>2]|0; - $1 = ($0|0)==(0|0); - if ($1) { - $$0 = 32560; + return (32888|0); +} +function ___stdio_close($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $vararg_buffer = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 16|0; + $vararg_buffer = sp; + $1 = ((($0)) + 60|0); + $2 = HEAP32[$1>>2]|0; + $3 = (_dummy_570($2)|0); + HEAP32[$vararg_buffer>>2] = $3; + $4 = (___syscall6(6,($vararg_buffer|0))|0); + $5 = (___syscall_ret($4)|0); + STACKTOP = sp;return ($5|0); +} +function ___stdio_write($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $$0 = 0, $$04756 = 0, $$04855 = 0, $$04954 = 0, $$051 = 0, $$1 = 0, $$150 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0; + var $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0; + var $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $vararg_buffer = 0, $vararg_buffer3 = 0, $vararg_ptr1 = 0, $vararg_ptr2 = 0, $vararg_ptr6 = 0; + var $vararg_ptr7 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $vararg_buffer3 = sp + 16|0; + $vararg_buffer = sp; + $3 = sp + 32|0; + $4 = ((($0)) + 28|0); + $5 = HEAP32[$4>>2]|0; + HEAP32[$3>>2] = $5; + $6 = ((($3)) + 4|0); + $7 = ((($0)) + 20|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($8) - ($5))|0; + HEAP32[$6>>2] = $9; + $10 = ((($3)) + 8|0); + HEAP32[$10>>2] = $1; + $11 = ((($3)) + 12|0); + HEAP32[$11>>2] = $2; + $12 = (($9) + ($2))|0; + $13 = ((($0)) + 60|0); + $14 = HEAP32[$13>>2]|0; + $15 = $3; + HEAP32[$vararg_buffer>>2] = $14; + $vararg_ptr1 = ((($vararg_buffer)) + 4|0); + HEAP32[$vararg_ptr1>>2] = $15; + $vararg_ptr2 = ((($vararg_buffer)) + 8|0); + HEAP32[$vararg_ptr2>>2] = 2; + $16 = (___syscall146(146,($vararg_buffer|0))|0); + $17 = (___syscall_ret($16)|0); + $18 = ($12|0)==($17|0); + L1: do { + if ($18) { + label = 3; + } else { + $$04756 = 2;$$04855 = $12;$$04954 = $3;$26 = $17; + while(1) { + $25 = ($26|0)<(0); + if ($25) { + break; + } + $34 = (($$04855) - ($26))|0; + $35 = ((($$04954)) + 4|0); + $36 = HEAP32[$35>>2]|0; + $37 = ($26>>>0)>($36>>>0); + $38 = ((($$04954)) + 8|0); + $$150 = $37 ? $38 : $$04954; + $39 = $37 << 31 >> 31; + $$1 = (($39) + ($$04756))|0; + $40 = $37 ? $36 : 0; + $$0 = (($26) - ($40))|0; + $41 = HEAP32[$$150>>2]|0; + $42 = (($41) + ($$0)|0); + HEAP32[$$150>>2] = $42; + $43 = ((($$150)) + 4|0); + $44 = HEAP32[$43>>2]|0; + $45 = (($44) - ($$0))|0; + HEAP32[$43>>2] = $45; + $46 = HEAP32[$13>>2]|0; + $47 = $$150; + HEAP32[$vararg_buffer3>>2] = $46; + $vararg_ptr6 = ((($vararg_buffer3)) + 4|0); + HEAP32[$vararg_ptr6>>2] = $47; + $vararg_ptr7 = ((($vararg_buffer3)) + 8|0); + HEAP32[$vararg_ptr7>>2] = $$1; + $48 = (___syscall146(146,($vararg_buffer3|0))|0); + $49 = (___syscall_ret($48)|0); + $50 = ($34|0)==($49|0); + if ($50) { + label = 3; + break L1; + } else { + $$04756 = $$1;$$04855 = $34;$$04954 = $$150;$26 = $49; + } + } + $27 = ((($0)) + 16|0); + HEAP32[$27>>2] = 0; + HEAP32[$4>>2] = 0; + HEAP32[$7>>2] = 0; + $28 = HEAP32[$0>>2]|0; + $29 = $28 | 32; + HEAP32[$0>>2] = $29; + $30 = ($$04756|0)==(2); + if ($30) { + $$051 = 0; + } else { + $31 = ((($$04954)) + 4|0); + $32 = HEAP32[$31>>2]|0; + $33 = (($2) - ($32))|0; + $$051 = $33; + } + } + } while(0); + if ((label|0) == 3) { + $19 = ((($0)) + 44|0); + $20 = HEAP32[$19>>2]|0; + $21 = ((($0)) + 48|0); + $22 = HEAP32[$21>>2]|0; + $23 = (($20) + ($22)|0); + $24 = ((($0)) + 16|0); + HEAP32[$24>>2] = $23; + HEAP32[$4>>2] = $20; + HEAP32[$7>>2] = $20; + $$051 = $2; + } + STACKTOP = sp;return ($$051|0); +} +function ___stdio_seek($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $$pre = 0, $10 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $vararg_buffer = 0, $vararg_ptr1 = 0, $vararg_ptr2 = 0, $vararg_ptr3 = 0, $vararg_ptr4 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 32|0; + $vararg_buffer = sp; + $3 = sp + 20|0; + $4 = ((($0)) + 60|0); + $5 = HEAP32[$4>>2]|0; + $6 = $3; + HEAP32[$vararg_buffer>>2] = $5; + $vararg_ptr1 = ((($vararg_buffer)) + 4|0); + HEAP32[$vararg_ptr1>>2] = 0; + $vararg_ptr2 = ((($vararg_buffer)) + 8|0); + HEAP32[$vararg_ptr2>>2] = $1; + $vararg_ptr3 = ((($vararg_buffer)) + 12|0); + HEAP32[$vararg_ptr3>>2] = $6; + $vararg_ptr4 = ((($vararg_buffer)) + 16|0); + HEAP32[$vararg_ptr4>>2] = $2; + $7 = (___syscall140(140,($vararg_buffer|0))|0); + $8 = (___syscall_ret($7)|0); + $9 = ($8|0)<(0); + if ($9) { + HEAP32[$3>>2] = -1; + $10 = -1; } else { - $2 = (_pthread_self()|0); - $3 = ((($2)) + 60|0); - $4 = HEAP32[$3>>2]|0; - $$0 = $4; + $$pre = HEAP32[$3>>2]|0; + $10 = $$pre; } - return ($$0|0); + STACKTOP = sp;return ($10|0); } -function ___syscall_ret($r) { - $r = $r|0; - var $$0 = 0, $0 = 0, $1 = 0, $2 = 0, label = 0, sp = 0; +function ___syscall_ret($0) { + $0 = $0|0; + var $$0 = 0, $1 = 0, $2 = 0, $3 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = ($r>>>0)>(4294963200); - if ($0) { - $1 = (0 - ($r))|0; - $2 = (___errno_location()|0); - HEAP32[$2>>2] = $1; + $1 = ($0>>>0)>(4294963200); + if ($1) { + $2 = (0 - ($0))|0; + $3 = (___errno_location()|0); + HEAP32[$3>>2] = $2; $$0 = -1; } else { - $$0 = $r; + $$0 = $0; } return ($$0|0); } -function ___lockfile($f) { - $f = $f|0; +function ___errno_location() { + var $0 = 0, $1 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (___pthread_self_103()|0); + $1 = ((($0)) + 64|0); + return ($1|0); +} +function ___pthread_self_103() { + var $0 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (_pthread_self()|0); + return ($0|0); +} +function _pthread_self() { + var label = 0, sp = 0; + sp = STACKTOP; + return (32512|0); +} +function _dummy_570($0) { + $0 = $0|0; + var label = 0, sp = 0; + sp = STACKTOP; + return ($0|0); +} +function ___stdout_write($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $vararg_buffer = 0, $vararg_ptr1 = 0, $vararg_ptr2 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 32|0; + $vararg_buffer = sp; + $3 = sp + 16|0; + $4 = ((($0)) + 36|0); + HEAP32[$4>>2] = 3; + $5 = HEAP32[$0>>2]|0; + $6 = $5 & 64; + $7 = ($6|0)==(0); + if ($7) { + $8 = ((($0)) + 60|0); + $9 = HEAP32[$8>>2]|0; + $10 = $3; + HEAP32[$vararg_buffer>>2] = $9; + $vararg_ptr1 = ((($vararg_buffer)) + 4|0); + HEAP32[$vararg_ptr1>>2] = 21523; + $vararg_ptr2 = ((($vararg_buffer)) + 8|0); + HEAP32[$vararg_ptr2>>2] = $10; + $11 = (___syscall54(54,($vararg_buffer|0))|0); + $12 = ($11|0)==(0); + if (!($12)) { + $13 = ((($0)) + 75|0); + HEAP8[$13>>0] = -1; + } + } + $14 = (___stdio_write($0,$1,$2)|0); + STACKTOP = sp;return ($14|0); +} +function ___lockfile($0) { + $0 = $0|0; var label = 0, sp = 0; sp = STACKTOP; return 0; } -function ___unlockfile($f) { - $f = $f|0; +function ___unlockfile($0) { + $0 = $0|0; var label = 0, sp = 0; sp = STACKTOP; return; } -function ___stdio_close($f) { - $f = $f|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $vararg_buffer = 0, label = 0, sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 16|0; - $vararg_buffer = sp; - $0 = ((($f)) + 60|0); - $1 = HEAP32[$0>>2]|0; - HEAP32[$vararg_buffer>>2] = $1; - $2 = (___syscall6(6,($vararg_buffer|0))|0); - $3 = (___syscall_ret($2)|0); - STACKTOP = sp;return ($3|0); -} -function ___stdio_seek($f,$off,$whence) { - $f = $f|0; - $off = $off|0; - $whence = $whence|0; - var $$pre = 0, $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $ret = 0, $vararg_buffer = 0, $vararg_ptr1 = 0, $vararg_ptr2 = 0, $vararg_ptr3 = 0, $vararg_ptr4 = 0, label = 0, sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 32|0; - $vararg_buffer = sp; - $ret = sp + 20|0; - $0 = ((($f)) + 60|0); - $1 = HEAP32[$0>>2]|0; - HEAP32[$vararg_buffer>>2] = $1; - $vararg_ptr1 = ((($vararg_buffer)) + 4|0); - HEAP32[$vararg_ptr1>>2] = 0; - $vararg_ptr2 = ((($vararg_buffer)) + 8|0); - HEAP32[$vararg_ptr2>>2] = $off; - $vararg_ptr3 = ((($vararg_buffer)) + 12|0); - HEAP32[$vararg_ptr3>>2] = $ret; - $vararg_ptr4 = ((($vararg_buffer)) + 16|0); - HEAP32[$vararg_ptr4>>2] = $whence; - $2 = (___syscall140(140,($vararg_buffer|0))|0); - $3 = (___syscall_ret($2)|0); - $4 = ($3|0)<(0); - if ($4) { - HEAP32[$ret>>2] = -1; - $5 = -1; - } else { - $$pre = HEAP32[$ret>>2]|0; - $5 = $$pre; - } - STACKTOP = sp;return ($5|0); -} -function ___stdio_write($f,$buf,$len) { - $f = $f|0; - $buf = $buf|0; - $len = $len|0; - var $$0 = 0, $$phi$trans$insert = 0, $$pre = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0; - var $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0; - var $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $cnt$0 = 0, $cnt$1 = 0, $iov$0 = 0, $iov$0$lcssa11 = 0, $iov$1 = 0, $iovcnt$0 = 0; - var $iovcnt$0$lcssa12 = 0, $iovcnt$1 = 0, $iovs = 0, $rem$0 = 0, $vararg_buffer = 0, $vararg_buffer3 = 0, $vararg_ptr1 = 0, $vararg_ptr2 = 0, $vararg_ptr6 = 0, $vararg_ptr7 = 0, label = 0, sp = 0; +function ___ofl_lock() { + var label = 0, sp = 0; sp = STACKTOP; - STACKTOP = STACKTOP + 48|0; - $vararg_buffer3 = sp + 16|0; - $vararg_buffer = sp; - $iovs = sp + 32|0; - $0 = ((($f)) + 28|0); - $1 = HEAP32[$0>>2]|0; - HEAP32[$iovs>>2] = $1; - $2 = ((($iovs)) + 4|0); - $3 = ((($f)) + 20|0); - $4 = HEAP32[$3>>2]|0; - $5 = $4; - $6 = (($5) - ($1))|0; - HEAP32[$2>>2] = $6; - $7 = ((($iovs)) + 8|0); - HEAP32[$7>>2] = $buf; - $8 = ((($iovs)) + 12|0); - HEAP32[$8>>2] = $len; - $9 = (($6) + ($len))|0; - $10 = ((($f)) + 60|0); - $11 = ((($f)) + 44|0); - $iov$0 = $iovs;$iovcnt$0 = 2;$rem$0 = $9; - while(1) { - $12 = HEAP32[32512>>2]|0; - $13 = ($12|0)==(0|0); - if ($13) { - $17 = HEAP32[$10>>2]|0; - HEAP32[$vararg_buffer3>>2] = $17; - $vararg_ptr6 = ((($vararg_buffer3)) + 4|0); - HEAP32[$vararg_ptr6>>2] = $iov$0; - $vararg_ptr7 = ((($vararg_buffer3)) + 8|0); - HEAP32[$vararg_ptr7>>2] = $iovcnt$0; - $18 = (___syscall146(146,($vararg_buffer3|0))|0); - $19 = (___syscall_ret($18)|0); - $cnt$0 = $19; - } else { - _pthread_cleanup_push((1|0),($f|0)); - $14 = HEAP32[$10>>2]|0; - HEAP32[$vararg_buffer>>2] = $14; - $vararg_ptr1 = ((($vararg_buffer)) + 4|0); - HEAP32[$vararg_ptr1>>2] = $iov$0; - $vararg_ptr2 = ((($vararg_buffer)) + 8|0); - HEAP32[$vararg_ptr2>>2] = $iovcnt$0; - $15 = (___syscall146(146,($vararg_buffer|0))|0); - $16 = (___syscall_ret($15)|0); - _pthread_cleanup_pop(0); - $cnt$0 = $16; - } - $20 = ($rem$0|0)==($cnt$0|0); - if ($20) { - label = 6; - break; - } - $27 = ($cnt$0|0)<(0); - if ($27) { - $iov$0$lcssa11 = $iov$0;$iovcnt$0$lcssa12 = $iovcnt$0; - label = 8; - break; - } - $35 = (($rem$0) - ($cnt$0))|0; - $36 = ((($iov$0)) + 4|0); - $37 = HEAP32[$36>>2]|0; - $38 = ($cnt$0>>>0)>($37>>>0); - if ($38) { - $39 = HEAP32[$11>>2]|0; - HEAP32[$0>>2] = $39; - HEAP32[$3>>2] = $39; - $40 = (($cnt$0) - ($37))|0; - $41 = ((($iov$0)) + 8|0); - $42 = (($iovcnt$0) + -1)|0; - $$phi$trans$insert = ((($iov$0)) + 12|0); - $$pre = HEAP32[$$phi$trans$insert>>2]|0; - $50 = $$pre;$cnt$1 = $40;$iov$1 = $41;$iovcnt$1 = $42; - } else { - $43 = ($iovcnt$0|0)==(2); - if ($43) { - $44 = HEAP32[$0>>2]|0; - $45 = (($44) + ($cnt$0)|0); - HEAP32[$0>>2] = $45; - $50 = $37;$cnt$1 = $cnt$0;$iov$1 = $iov$0;$iovcnt$1 = 2; - } else { - $50 = $37;$cnt$1 = $cnt$0;$iov$1 = $iov$0;$iovcnt$1 = $iovcnt$0; - } - } - $46 = HEAP32[$iov$1>>2]|0; - $47 = (($46) + ($cnt$1)|0); - HEAP32[$iov$1>>2] = $47; - $48 = ((($iov$1)) + 4|0); - $49 = (($50) - ($cnt$1))|0; - HEAP32[$48>>2] = $49; - $iov$0 = $iov$1;$iovcnt$0 = $iovcnt$1;$rem$0 = $35; - } - if ((label|0) == 6) { - $21 = HEAP32[$11>>2]|0; - $22 = ((($f)) + 48|0); - $23 = HEAP32[$22>>2]|0; - $24 = (($21) + ($23)|0); - $25 = ((($f)) + 16|0); - HEAP32[$25>>2] = $24; - $26 = $21; - HEAP32[$0>>2] = $26; - HEAP32[$3>>2] = $26; - $$0 = $len; - } - else if ((label|0) == 8) { - $28 = ((($f)) + 16|0); - HEAP32[$28>>2] = 0; - HEAP32[$0>>2] = 0; - HEAP32[$3>>2] = 0; - $29 = HEAP32[$f>>2]|0; - $30 = $29 | 32; - HEAP32[$f>>2] = $30; - $31 = ($iovcnt$0$lcssa12|0)==(2); - if ($31) { - $$0 = 0; - } else { - $32 = ((($iov$0$lcssa11)) + 4|0); - $33 = HEAP32[$32>>2]|0; - $34 = (($len) - ($33))|0; - $$0 = $34; - } - } - STACKTOP = sp;return ($$0|0); + ___lock((32952|0)); + return (32960|0); } -function ___stdout_write($f,$buf,$len) { - $f = $f|0; - $buf = $buf|0; - $len = $len|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $tio = 0, $vararg_buffer = 0, $vararg_ptr1 = 0, $vararg_ptr2 = 0, label = 0, sp = 0; +function ___ofl_unlock() { + var label = 0, sp = 0; sp = STACKTOP; - STACKTOP = STACKTOP + 80|0; - $vararg_buffer = sp; - $tio = sp + 12|0; - $0 = ((($f)) + 36|0); - HEAP32[$0>>2] = 3; - $1 = HEAP32[$f>>2]|0; - $2 = $1 & 64; - $3 = ($2|0)==(0); - if ($3) { - $4 = ((($f)) + 60|0); - $5 = HEAP32[$4>>2]|0; - HEAP32[$vararg_buffer>>2] = $5; - $vararg_ptr1 = ((($vararg_buffer)) + 4|0); - HEAP32[$vararg_ptr1>>2] = 21505; - $vararg_ptr2 = ((($vararg_buffer)) + 8|0); - HEAP32[$vararg_ptr2>>2] = $tio; - $6 = (___syscall54(54,($vararg_buffer|0))|0); - $7 = ($6|0)==(0); - if (!($7)) { - $8 = ((($f)) + 75|0); - HEAP8[$8>>0] = -1; - } - } - $9 = (___stdio_write($f,$buf,$len)|0); - STACKTOP = sp;return ($9|0); + ___unlock((32952|0)); + return; } -function _fflush($f) { - $f = $f|0; - var $$0 = 0, $$01 = 0, $$012 = 0, $$014 = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0; - var $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $phitmp = 0, $r$0$lcssa = 0, $r$03 = 0, $r$1 = 0, label = 0, sp = 0; +function _fflush($0) { + $0 = $0|0; + var $$0 = 0, $$023 = 0, $$02325 = 0, $$02327 = 0, $$024$lcssa = 0, $$02426 = 0, $$1 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0; + var $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $phitmp = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = ($f|0)==(0|0); + $1 = ($0|0)==(0|0); do { - if ($0) { - $7 = HEAP32[32556>>2]|0; - $8 = ($7|0)==(0|0); - if ($8) { - $27 = 0; + if ($1) { + $8 = HEAP32[8220]|0; + $9 = ($8|0)==(0|0); + if ($9) { + $29 = 0; } else { - $9 = HEAP32[32556>>2]|0; - $10 = (_fflush($9)|0); - $27 = $10; + $10 = HEAP32[8220]|0; + $11 = (_fflush($10)|0); + $29 = $11; } - ___lock(((32540)|0)); - $$012 = HEAP32[(32536)>>2]|0; - $11 = ($$012|0)==(0|0); - if ($11) { - $r$0$lcssa = $27; + $12 = (___ofl_lock()|0); + $$02325 = HEAP32[$12>>2]|0; + $13 = ($$02325|0)==(0|0); + if ($13) { + $$024$lcssa = $29; } else { - $$014 = $$012;$r$03 = $27; + $$02327 = $$02325;$$02426 = $29; while(1) { - $12 = ((($$014)) + 76|0); - $13 = HEAP32[$12>>2]|0; - $14 = ($13|0)>(-1); - if ($14) { - $15 = (___lockfile($$014)|0); - $24 = $15; + $14 = ((($$02327)) + 76|0); + $15 = HEAP32[$14>>2]|0; + $16 = ($15|0)>(-1); + if ($16) { + $17 = (___lockfile($$02327)|0); + $26 = $17; } else { - $24 = 0; + $26 = 0; } - $16 = ((($$014)) + 20|0); - $17 = HEAP32[$16>>2]|0; - $18 = ((($$014)) + 28|0); + $18 = ((($$02327)) + 20|0); $19 = HEAP32[$18>>2]|0; - $20 = ($17>>>0)>($19>>>0); - if ($20) { - $21 = (___fflush_unlocked($$014)|0); - $22 = $21 | $r$03; - $r$1 = $22; + $20 = ((($$02327)) + 28|0); + $21 = HEAP32[$20>>2]|0; + $22 = ($19>>>0)>($21>>>0); + if ($22) { + $23 = (___fflush_unlocked($$02327)|0); + $24 = $23 | $$02426; + $$1 = $24; } else { - $r$1 = $r$03; + $$1 = $$02426; } - $23 = ($24|0)==(0); - if (!($23)) { - ___unlockfile($$014); + $25 = ($26|0)==(0); + if (!($25)) { + ___unlockfile($$02327); } - $25 = ((($$014)) + 56|0); - $$01 = HEAP32[$25>>2]|0; - $26 = ($$01|0)==(0|0); - if ($26) { - $r$0$lcssa = $r$1; + $27 = ((($$02327)) + 56|0); + $$023 = HEAP32[$27>>2]|0; + $28 = ($$023|0)==(0|0); + if ($28) { + $$024$lcssa = $$1; break; } else { - $$014 = $$01;$r$03 = $r$1; + $$02327 = $$023;$$02426 = $$1; } } } - ___unlock(((32540)|0)); - $$0 = $r$0$lcssa; + ___ofl_unlock(); + $$0 = $$024$lcssa; } else { - $1 = ((($f)) + 76|0); - $2 = HEAP32[$1>>2]|0; - $3 = ($2|0)>(-1); - if (!($3)) { - $4 = (___fflush_unlocked($f)|0); - $$0 = $4; + $2 = ((($0)) + 76|0); + $3 = HEAP32[$2>>2]|0; + $4 = ($3|0)>(-1); + if (!($4)) { + $5 = (___fflush_unlocked($0)|0); + $$0 = $5; break; } - $5 = (___lockfile($f)|0); - $phitmp = ($5|0)==(0); - $6 = (___fflush_unlocked($f)|0); + $6 = (___lockfile($0)|0); + $phitmp = ($6|0)==(0); + $7 = (___fflush_unlocked($0)|0); if ($phitmp) { - $$0 = $6; + $$0 = $7; } else { - ___unlockfile($f); - $$0 = $6; + ___unlockfile($0); + $$0 = $7; } } } while(0); return ($$0|0); } -function _cleanup392($p) { - $p = $p|0; - var $0 = 0, $1 = 0, $2 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = ((($p)) + 68|0); - $1 = HEAP32[$0>>2]|0; - $2 = ($1|0)==(0); - if ($2) { - ___unlockfile($p); - } - return; -} -function ___fflush_unlocked($f) { - $f = $f|0; - var $$0 = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0; +function ___fflush_unlocked($0) { + $0 = $0|0; + var $$0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0; var $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = ((($f)) + 20|0); - $1 = HEAP32[$0>>2]|0; - $2 = ((($f)) + 28|0); - $3 = HEAP32[$2>>2]|0; - $4 = ($1>>>0)>($3>>>0); - if ($4) { - $5 = ((($f)) + 36|0); - $6 = HEAP32[$5>>2]|0; - (FUNCTION_TABLE_iiii[$6 & 3]($f,0,0)|0); - $7 = HEAP32[$0>>2]|0; - $8 = ($7|0)==(0|0); - if ($8) { + $1 = ((($0)) + 20|0); + $2 = HEAP32[$1>>2]|0; + $3 = ((($0)) + 28|0); + $4 = HEAP32[$3>>2]|0; + $5 = ($2>>>0)>($4>>>0); + if ($5) { + $6 = ((($0)) + 36|0); + $7 = HEAP32[$6>>2]|0; + (FUNCTION_TABLE_iiii[$7 & 3]($0,0,0)|0); + $8 = HEAP32[$1>>2]|0; + $9 = ($8|0)==(0|0); + if ($9) { $$0 = -1; } else { label = 3; @@ -20641,140 +17053,135 @@ function ___fflush_unlocked($f) { label = 3; } if ((label|0) == 3) { - $9 = ((($f)) + 4|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 8|0); - $12 = HEAP32[$11>>2]|0; - $13 = ($10>>>0)<($12>>>0); - if ($13) { - $14 = ((($f)) + 40|0); - $15 = HEAP32[$14>>2]|0; - $16 = $10; - $17 = $12; - $18 = (($16) - ($17))|0; - (FUNCTION_TABLE_iiii[$15 & 3]($f,$18,1)|0); + $10 = ((($0)) + 4|0); + $11 = HEAP32[$10>>2]|0; + $12 = ((($0)) + 8|0); + $13 = HEAP32[$12>>2]|0; + $14 = ($11>>>0)<($13>>>0); + if ($14) { + $15 = $11; + $16 = $13; + $17 = (($15) - ($16))|0; + $18 = ((($0)) + 40|0); + $19 = HEAP32[$18>>2]|0; + (FUNCTION_TABLE_iiii[$19 & 3]($0,$17,1)|0); } - $19 = ((($f)) + 16|0); - HEAP32[$19>>2] = 0; - HEAP32[$2>>2] = 0; - HEAP32[$0>>2] = 0; - HEAP32[$11>>2] = 0; - HEAP32[$9>>2] = 0; + $20 = ((($0)) + 16|0); + HEAP32[$20>>2] = 0; + HEAP32[$3>>2] = 0; + HEAP32[$1>>2] = 0; + HEAP32[$12>>2] = 0; + HEAP32[$10>>2] = 0; $$0 = 0; } return ($$0|0); } -function _malloc($bytes) { - $bytes = $bytes|0; - var $$3$i = 0, $$lcssa = 0, $$lcssa211 = 0, $$lcssa215 = 0, $$lcssa216 = 0, $$lcssa217 = 0, $$lcssa219 = 0, $$lcssa222 = 0, $$lcssa224 = 0, $$lcssa226 = 0, $$lcssa228 = 0, $$lcssa230 = 0, $$lcssa232 = 0, $$pre = 0, $$pre$i = 0, $$pre$i$i = 0, $$pre$i22$i = 0, $$pre$i25 = 0, $$pre$phi$i$iZ2D = 0, $$pre$phi$i23$iZ2D = 0; - var $$pre$phi$i26Z2D = 0, $$pre$phi$iZ2D = 0, $$pre$phi58$i$iZ2D = 0, $$pre$phiZ2D = 0, $$pre105 = 0, $$pre106 = 0, $$pre14$i$i = 0, $$pre43$i = 0, $$pre56$i$i = 0, $$pre57$i$i = 0, $$pre8$i = 0, $$rsize$0$i = 0, $$rsize$3$i = 0, $$sum = 0, $$sum$i$i = 0, $$sum$i$i$i = 0, $$sum$i13$i = 0, $$sum$i14$i = 0, $$sum$i17$i = 0, $$sum$i19$i = 0; - var $$sum$i2334 = 0, $$sum$i32 = 0, $$sum$i35 = 0, $$sum1 = 0, $$sum1$i = 0, $$sum1$i$i = 0, $$sum1$i15$i = 0, $$sum1$i20$i = 0, $$sum1$i24 = 0, $$sum10 = 0, $$sum10$i = 0, $$sum10$i$i = 0, $$sum11$i = 0, $$sum11$i$i = 0, $$sum1112 = 0, $$sum112$i = 0, $$sum113$i = 0, $$sum114$i = 0, $$sum115$i = 0, $$sum116$i = 0; - var $$sum117$i = 0, $$sum118$i = 0, $$sum119$i = 0, $$sum12$i = 0, $$sum12$i$i = 0, $$sum120$i = 0, $$sum121$i = 0, $$sum122$i = 0, $$sum123$i = 0, $$sum124$i = 0, $$sum125$i = 0, $$sum13$i = 0, $$sum13$i$i = 0, $$sum14$i$i = 0, $$sum15$i = 0, $$sum15$i$i = 0, $$sum16$i = 0, $$sum16$i$i = 0, $$sum17$i = 0, $$sum17$i$i = 0; - var $$sum18$i = 0, $$sum1819$i$i = 0, $$sum2 = 0, $$sum2$i = 0, $$sum2$i$i = 0, $$sum2$i$i$i = 0, $$sum2$i16$i = 0, $$sum2$i18$i = 0, $$sum2$i21$i = 0, $$sum20$i$i = 0, $$sum21$i$i = 0, $$sum22$i$i = 0, $$sum23$i$i = 0, $$sum24$i$i = 0, $$sum25$i$i = 0, $$sum27$i$i = 0, $$sum28$i$i = 0, $$sum29$i$i = 0, $$sum3$i = 0, $$sum3$i27 = 0; - var $$sum30$i$i = 0, $$sum3132$i$i = 0, $$sum34$i$i = 0, $$sum3536$i$i = 0, $$sum3738$i$i = 0, $$sum39$i$i = 0, $$sum4 = 0, $$sum4$i = 0, $$sum4$i$i = 0, $$sum4$i28 = 0, $$sum40$i$i = 0, $$sum41$i$i = 0, $$sum42$i$i = 0, $$sum5$i = 0, $$sum5$i$i = 0, $$sum56 = 0, $$sum6$i = 0, $$sum67$i$i = 0, $$sum7$i = 0, $$sum8$i = 0; - var $$sum9 = 0, $$sum9$i = 0, $$sum9$i$i = 0, $$tsize$1$i = 0, $$v$0$i = 0, $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0; - var $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0, $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0; - var $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0, $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0; - var $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0, $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0; - var $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0, $107 = 0, $1070 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0; - var $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0; - var $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0; - var $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0; - var $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0; - var $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0; - var $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0; - var $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0; - var $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0; - var $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0; - var $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0; - var $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0; - var $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0; - var $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0; - var $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0; - var $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0; - var $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0; - var $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0; - var $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0; - var $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0; - var $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0; - var $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0; - var $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0; - var $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0; - var $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0; - var $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0; - var $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0; - var $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0; - var $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0; - var $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0; - var $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0; - var $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0; - var $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0; - var $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0; - var $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0; - var $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0; - var $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0; - var $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0; - var $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0; - var $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0; - var $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0; - var $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0; - var $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0; - var $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0; - var $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0, $91 = 0, $910 = 0, $911 = 0; - var $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0, $928 = 0, $929 = 0, $93 = 0; - var $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0, $946 = 0, $947 = 0, $948 = 0; - var $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0, $964 = 0, $965 = 0, $966 = 0; - var $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0; - var $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, $F$0$i$i = 0, $F1$0$i = 0, $F4$0 = 0, $F4$0$i$i = 0; - var $F5$0$i = 0, $I1$0$i$i = 0, $I7$0$i = 0, $I7$0$i$i = 0, $K12$029$i = 0, $K2$07$i$i = 0, $K8$051$i$i = 0, $R$0$i = 0, $R$0$i$i = 0, $R$0$i$i$lcssa = 0, $R$0$i$lcssa = 0, $R$0$i18 = 0, $R$0$i18$lcssa = 0, $R$1$i = 0, $R$1$i$i = 0, $R$1$i20 = 0, $RP$0$i = 0, $RP$0$i$i = 0, $RP$0$i$i$lcssa = 0, $RP$0$i$lcssa = 0; - var $RP$0$i17 = 0, $RP$0$i17$lcssa = 0, $T$0$lcssa$i = 0, $T$0$lcssa$i$i = 0, $T$0$lcssa$i25$i = 0, $T$028$i = 0, $T$028$i$lcssa = 0, $T$050$i$i = 0, $T$050$i$i$lcssa = 0, $T$06$i$i = 0, $T$06$i$i$lcssa = 0, $br$0$ph$i = 0, $cond$i = 0, $cond$i$i = 0, $cond$i21 = 0, $exitcond$i$i = 0, $i$02$i$i = 0, $idx$0$i = 0, $mem$0 = 0, $nb$0 = 0; - var $not$$i = 0, $not$$i$i = 0, $not$$i26$i = 0, $oldfirst$0$i$i = 0, $or$cond$i = 0, $or$cond$i30 = 0, $or$cond1$i = 0, $or$cond19$i = 0, $or$cond2$i = 0, $or$cond3$i = 0, $or$cond5$i = 0, $or$cond57$i = 0, $or$cond6$i = 0, $or$cond8$i = 0, $or$cond9$i = 0, $qsize$0$i$i = 0, $rsize$0$i = 0, $rsize$0$i$lcssa = 0, $rsize$0$i15 = 0, $rsize$1$i = 0; - var $rsize$2$i = 0, $rsize$3$lcssa$i = 0, $rsize$331$i = 0, $rst$0$i = 0, $rst$1$i = 0, $sizebits$0$i = 0, $sp$0$i$i = 0, $sp$0$i$i$i = 0, $sp$084$i = 0, $sp$084$i$lcssa = 0, $sp$183$i = 0, $sp$183$i$lcssa = 0, $ssize$0$$i = 0, $ssize$0$i = 0, $ssize$1$ph$i = 0, $ssize$2$i = 0, $t$0$i = 0, $t$0$i14 = 0, $t$1$i = 0, $t$2$ph$i = 0; - var $t$2$v$3$i = 0, $t$230$i = 0, $tbase$255$i = 0, $tsize$0$ph$i = 0, $tsize$0323944$i = 0, $tsize$1$i = 0, $tsize$254$i = 0, $v$0$i = 0, $v$0$i$lcssa = 0, $v$0$i16 = 0, $v$1$i = 0, $v$2$i = 0, $v$3$lcssa$i = 0, $v$3$ph$i = 0, $v$332$i = 0, label = 0, sp = 0; +function _malloc($0) { + $0 = $0|0; + var $$$0192$i = 0, $$$0193$i = 0, $$$4236$i = 0, $$$4351$i = 0, $$$i = 0, $$0 = 0, $$0$i$i = 0, $$0$i$i$i = 0, $$0$i18$i = 0, $$01$i$i = 0, $$0189$i = 0, $$0192$lcssa$i = 0, $$01928$i = 0, $$0193$lcssa$i = 0, $$01937$i = 0, $$0197 = 0, $$0199 = 0, $$0206$i$i = 0, $$0207$i$i = 0, $$0211$i$i = 0; + var $$0212$i$i = 0, $$024371$i = 0, $$0287$i$i = 0, $$0288$i$i = 0, $$0289$i$i = 0, $$0295$i$i = 0, $$0296$i$i = 0, $$0342$i = 0, $$0344$i = 0, $$0345$i = 0, $$0347$i = 0, $$0353$i = 0, $$0358$i = 0, $$0359$$i = 0, $$0359$i = 0, $$0361$i = 0, $$0362$i = 0, $$0368$i = 0, $$1196$i = 0, $$1198$i = 0; + var $$124470$i = 0, $$1291$i$i = 0, $$1293$i$i = 0, $$1343$i = 0, $$1348$i = 0, $$1363$i = 0, $$1370$i = 0, $$1374$i = 0, $$2234253237$i = 0, $$2247$ph$i = 0, $$2253$ph$i = 0, $$2355$i = 0, $$3$i = 0, $$3$i$i = 0, $$3$i201 = 0, $$3350$i = 0, $$3372$i = 0, $$4$lcssa$i = 0, $$4$ph$i = 0, $$415$i = 0; + var $$4236$i = 0, $$4351$lcssa$i = 0, $$435114$i = 0, $$4357$$4$i = 0, $$4357$ph$i = 0, $$435713$i = 0, $$723948$i = 0, $$749$i = 0, $$pre = 0, $$pre$i = 0, $$pre$i$i = 0, $$pre$i19$i = 0, $$pre$i210 = 0, $$pre$i212 = 0, $$pre$phi$i$iZ2D = 0, $$pre$phi$i20$iZ2D = 0, $$pre$phi$i211Z2D = 0, $$pre$phi$iZ2D = 0, $$pre$phi11$i$iZ2D = 0, $$pre$phiZ2D = 0; + var $$pre10$i$i = 0, $$sink1$i = 0, $$sink1$i$i = 0, $$sink16$i = 0, $$sink2$i = 0, $$sink2$i204 = 0, $$sink3$i = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0; + var $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0, $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0; + var $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0, $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0; + var $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0, $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0; + var $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0; + var $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0; + var $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0; + var $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0; + var $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0; + var $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0; + var $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0; + var $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0; + var $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0; + var $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0; + var $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0; + var $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0; + var $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0; + var $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0; + var $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0; + var $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0; + var $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0; + var $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0; + var $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0; + var $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0; + var $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0; + var $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0; + var $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0; + var $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0; + var $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0; + var $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0; + var $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0; + var $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0; + var $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0; + var $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0; + var $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0; + var $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0; + var $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0; + var $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0; + var $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0; + var $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0; + var $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0; + var $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0; + var $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0; + var $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0; + var $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0; + var $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0; + var $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0; + var $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0; + var $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0; + var $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0; + var $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0; + var $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0, $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0; + var $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0; + var $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, $cond$i = 0, $cond$i$i = 0, $cond$i208 = 0, $exitcond$i$i = 0, $not$$i = 0, $not$$i$i = 0, $not$$i17$i = 0, $not$$i209 = 0, $not$$i216 = 0, $not$1$i = 0, $not$1$i203 = 0, $not$5$i = 0, $not$7$i$i = 0, $not$8$i = 0, $not$9$i = 0; + var $or$cond$i = 0, $or$cond$i214 = 0, $or$cond1$i = 0, $or$cond10$i = 0, $or$cond11$i = 0, $or$cond11$not$i = 0, $or$cond12$i = 0, $or$cond2$i = 0, $or$cond2$i215 = 0, $or$cond5$i = 0, $or$cond50$i = 0, $or$cond51$i = 0, $or$cond7$i = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = ($bytes>>>0)<(245); + STACKTOP = STACKTOP + 16|0; + $1 = sp; + $2 = ($0>>>0)<(245); do { - if ($0) { - $1 = ($bytes>>>0)<(11); - $2 = (($bytes) + 11)|0; - $3 = $2 & -8; - $4 = $1 ? 16 : $3; - $5 = $4 >>> 3; - $6 = HEAP32[32676>>2]|0; - $7 = $6 >>> $5; - $8 = $7 & 3; - $9 = ($8|0)==(0); - if (!($9)) { - $10 = $7 & 1; - $11 = $10 ^ 1; - $12 = (($11) + ($5))|0; - $13 = $12 << 1; - $14 = (32716 + ($13<<2)|0); - $$sum10 = (($13) + 2)|0; - $15 = (32716 + ($$sum10<<2)|0); - $16 = HEAP32[$15>>2]|0; + if ($2) { + $3 = ($0>>>0)<(11); + $4 = (($0) + 11)|0; + $5 = $4 & -8; + $6 = $3 ? 16 : $5; + $7 = $6 >>> 3; + $8 = HEAP32[8241]|0; + $9 = $8 >>> $7; + $10 = $9 & 3; + $11 = ($10|0)==(0); + if (!($11)) { + $12 = $9 & 1; + $13 = $12 ^ 1; + $14 = (($13) + ($7))|0; + $15 = $14 << 1; + $16 = (33004 + ($15<<2)|0); $17 = ((($16)) + 8|0); $18 = HEAP32[$17>>2]|0; - $19 = ($14|0)==($18|0); + $19 = ((($18)) + 8|0); + $20 = HEAP32[$19>>2]|0; + $21 = ($16|0)==($20|0); do { - if ($19) { - $20 = 1 << $12; - $21 = $20 ^ -1; - $22 = $6 & $21; - HEAP32[32676>>2] = $22; + if ($21) { + $22 = 1 << $14; + $23 = $22 ^ -1; + $24 = $8 & $23; + HEAP32[8241] = $24; } else { - $23 = HEAP32[(32692)>>2]|0; - $24 = ($18>>>0)<($23>>>0); - if ($24) { + $25 = HEAP32[(32980)>>2]|0; + $26 = ($20>>>0)<($25>>>0); + if ($26) { _abort(); // unreachable; } - $25 = ((($18)) + 12|0); - $26 = HEAP32[$25>>2]|0; - $27 = ($26|0)==($16|0); - if ($27) { - HEAP32[$25>>2] = $14; - HEAP32[$15>>2] = $18; + $27 = ((($20)) + 12|0); + $28 = HEAP32[$27>>2]|0; + $29 = ($28|0)==($18|0); + if ($29) { + HEAP32[$27>>2] = $16; + HEAP32[$17>>2] = $20; break; } else { _abort(); @@ -20782,81 +17189,79 @@ function _malloc($bytes) { } } } while(0); - $28 = $12 << 3; - $29 = $28 | 3; - $30 = ((($16)) + 4|0); - HEAP32[$30>>2] = $29; - $$sum1112 = $28 | 4; - $31 = (($16) + ($$sum1112)|0); - $32 = HEAP32[$31>>2]|0; - $33 = $32 | 1; - HEAP32[$31>>2] = $33; - $mem$0 = $17; - return ($mem$0|0); + $30 = $14 << 3; + $31 = $30 | 3; + $32 = ((($18)) + 4|0); + HEAP32[$32>>2] = $31; + $33 = (($18) + ($30)|0); + $34 = ((($33)) + 4|0); + $35 = HEAP32[$34>>2]|0; + $36 = $35 | 1; + HEAP32[$34>>2] = $36; + $$0 = $19; + STACKTOP = sp;return ($$0|0); } - $34 = HEAP32[(32684)>>2]|0; - $35 = ($4>>>0)>($34>>>0); - if ($35) { - $36 = ($7|0)==(0); - if (!($36)) { - $37 = $7 << $5; - $38 = 2 << $5; - $39 = (0 - ($38))|0; - $40 = $38 | $39; - $41 = $37 & $40; + $37 = HEAP32[(32972)>>2]|0; + $38 = ($6>>>0)>($37>>>0); + if ($38) { + $39 = ($9|0)==(0); + if (!($39)) { + $40 = $9 << $7; + $41 = 2 << $7; $42 = (0 - ($41))|0; - $43 = $41 & $42; - $44 = (($43) + -1)|0; - $45 = $44 >>> 12; - $46 = $45 & 16; - $47 = $44 >>> $46; - $48 = $47 >>> 5; - $49 = $48 & 8; - $50 = $49 | $46; - $51 = $47 >>> $49; - $52 = $51 >>> 2; - $53 = $52 & 4; - $54 = $50 | $53; - $55 = $51 >>> $53; - $56 = $55 >>> 1; - $57 = $56 & 2; - $58 = $54 | $57; - $59 = $55 >>> $57; - $60 = $59 >>> 1; - $61 = $60 & 1; - $62 = $58 | $61; - $63 = $59 >>> $61; - $64 = (($62) + ($63))|0; - $65 = $64 << 1; - $66 = (32716 + ($65<<2)|0); - $$sum4 = (($65) + 2)|0; - $67 = (32716 + ($$sum4<<2)|0); - $68 = HEAP32[$67>>2]|0; - $69 = ((($68)) + 8|0); - $70 = HEAP32[$69>>2]|0; - $71 = ($66|0)==($70|0); + $43 = $41 | $42; + $44 = $40 & $43; + $45 = (0 - ($44))|0; + $46 = $44 & $45; + $47 = (($46) + -1)|0; + $48 = $47 >>> 12; + $49 = $48 & 16; + $50 = $47 >>> $49; + $51 = $50 >>> 5; + $52 = $51 & 8; + $53 = $52 | $49; + $54 = $50 >>> $52; + $55 = $54 >>> 2; + $56 = $55 & 4; + $57 = $53 | $56; + $58 = $54 >>> $56; + $59 = $58 >>> 1; + $60 = $59 & 2; + $61 = $57 | $60; + $62 = $58 >>> $60; + $63 = $62 >>> 1; + $64 = $63 & 1; + $65 = $61 | $64; + $66 = $62 >>> $64; + $67 = (($65) + ($66))|0; + $68 = $67 << 1; + $69 = (33004 + ($68<<2)|0); + $70 = ((($69)) + 8|0); + $71 = HEAP32[$70>>2]|0; + $72 = ((($71)) + 8|0); + $73 = HEAP32[$72>>2]|0; + $74 = ($69|0)==($73|0); do { - if ($71) { - $72 = 1 << $64; - $73 = $72 ^ -1; - $74 = $6 & $73; - HEAP32[32676>>2] = $74; - $89 = $34; + if ($74) { + $75 = 1 << $67; + $76 = $75 ^ -1; + $77 = $8 & $76; + HEAP32[8241] = $77; + $98 = $77; } else { - $75 = HEAP32[(32692)>>2]|0; - $76 = ($70>>>0)<($75>>>0); - if ($76) { + $78 = HEAP32[(32980)>>2]|0; + $79 = ($73>>>0)<($78>>>0); + if ($79) { _abort(); // unreachable; } - $77 = ((($70)) + 12|0); - $78 = HEAP32[$77>>2]|0; - $79 = ($78|0)==($68|0); - if ($79) { - HEAP32[$77>>2] = $66; - HEAP32[$67>>2] = $70; - $$pre = HEAP32[(32684)>>2]|0; - $89 = $$pre; + $80 = ((($73)) + 12|0); + $81 = HEAP32[$80>>2]|0; + $82 = ($81|0)==($71|0); + if ($82) { + HEAP32[$80>>2] = $69; + HEAP32[$70>>2] = $73; + $98 = $8; break; } else { _abort(); @@ -20864,205 +17269,207 @@ function _malloc($bytes) { } } } while(0); - $80 = $64 << 3; - $81 = (($80) - ($4))|0; - $82 = $4 | 3; - $83 = ((($68)) + 4|0); - HEAP32[$83>>2] = $82; - $84 = (($68) + ($4)|0); - $85 = $81 | 1; - $$sum56 = $4 | 4; - $86 = (($68) + ($$sum56)|0); + $83 = $67 << 3; + $84 = (($83) - ($6))|0; + $85 = $6 | 3; + $86 = ((($71)) + 4|0); HEAP32[$86>>2] = $85; - $87 = (($68) + ($80)|0); - HEAP32[$87>>2] = $81; - $88 = ($89|0)==(0); - if (!($88)) { - $90 = HEAP32[(32696)>>2]|0; - $91 = $89 >>> 3; - $92 = $91 << 1; - $93 = (32716 + ($92<<2)|0); - $94 = HEAP32[32676>>2]|0; - $95 = 1 << $91; - $96 = $94 & $95; - $97 = ($96|0)==(0); - if ($97) { - $98 = $94 | $95; - HEAP32[32676>>2] = $98; - $$pre105 = (($92) + 2)|0; - $$pre106 = (32716 + ($$pre105<<2)|0); - $$pre$phiZ2D = $$pre106;$F4$0 = $93; + $87 = (($71) + ($6)|0); + $88 = $84 | 1; + $89 = ((($87)) + 4|0); + HEAP32[$89>>2] = $88; + $90 = (($87) + ($84)|0); + HEAP32[$90>>2] = $84; + $91 = ($37|0)==(0); + if (!($91)) { + $92 = HEAP32[(32984)>>2]|0; + $93 = $37 >>> 3; + $94 = $93 << 1; + $95 = (33004 + ($94<<2)|0); + $96 = 1 << $93; + $97 = $98 & $96; + $99 = ($97|0)==(0); + if ($99) { + $100 = $98 | $96; + HEAP32[8241] = $100; + $$pre = ((($95)) + 8|0); + $$0199 = $95;$$pre$phiZ2D = $$pre; } else { - $$sum9 = (($92) + 2)|0; - $99 = (32716 + ($$sum9<<2)|0); - $100 = HEAP32[$99>>2]|0; - $101 = HEAP32[(32692)>>2]|0; - $102 = ($100>>>0)<($101>>>0); - if ($102) { + $101 = ((($95)) + 8|0); + $102 = HEAP32[$101>>2]|0; + $103 = HEAP32[(32980)>>2]|0; + $104 = ($102>>>0)<($103>>>0); + if ($104) { _abort(); // unreachable; } else { - $$pre$phiZ2D = $99;$F4$0 = $100; + $$0199 = $102;$$pre$phiZ2D = $101; } } - HEAP32[$$pre$phiZ2D>>2] = $90; - $103 = ((($F4$0)) + 12|0); - HEAP32[$103>>2] = $90; - $104 = ((($90)) + 8|0); - HEAP32[$104>>2] = $F4$0; - $105 = ((($90)) + 12|0); - HEAP32[$105>>2] = $93; + HEAP32[$$pre$phiZ2D>>2] = $92; + $105 = ((($$0199)) + 12|0); + HEAP32[$105>>2] = $92; + $106 = ((($92)) + 8|0); + HEAP32[$106>>2] = $$0199; + $107 = ((($92)) + 12|0); + HEAP32[$107>>2] = $95; } - HEAP32[(32684)>>2] = $81; - HEAP32[(32696)>>2] = $84; - $mem$0 = $69; - return ($mem$0|0); + HEAP32[(32972)>>2] = $84; + HEAP32[(32984)>>2] = $87; + $$0 = $72; + STACKTOP = sp;return ($$0|0); } - $106 = HEAP32[(32680)>>2]|0; - $107 = ($106|0)==(0); - if ($107) { - $nb$0 = $4; + $108 = HEAP32[(32968)>>2]|0; + $109 = ($108|0)==(0); + if ($109) { + $$0197 = $6; } else { - $108 = (0 - ($106))|0; - $109 = $106 & $108; - $110 = (($109) + -1)|0; - $111 = $110 >>> 12; - $112 = $111 & 16; - $113 = $110 >>> $112; - $114 = $113 >>> 5; - $115 = $114 & 8; - $116 = $115 | $112; - $117 = $113 >>> $115; - $118 = $117 >>> 2; - $119 = $118 & 4; - $120 = $116 | $119; - $121 = $117 >>> $119; - $122 = $121 >>> 1; - $123 = $122 & 2; - $124 = $120 | $123; - $125 = $121 >>> $123; - $126 = $125 >>> 1; - $127 = $126 & 1; - $128 = $124 | $127; - $129 = $125 >>> $127; - $130 = (($128) + ($129))|0; - $131 = (32980 + ($130<<2)|0); - $132 = HEAP32[$131>>2]|0; - $133 = ((($132)) + 4|0); + $110 = (0 - ($108))|0; + $111 = $108 & $110; + $112 = (($111) + -1)|0; + $113 = $112 >>> 12; + $114 = $113 & 16; + $115 = $112 >>> $114; + $116 = $115 >>> 5; + $117 = $116 & 8; + $118 = $117 | $114; + $119 = $115 >>> $117; + $120 = $119 >>> 2; + $121 = $120 & 4; + $122 = $118 | $121; + $123 = $119 >>> $121; + $124 = $123 >>> 1; + $125 = $124 & 2; + $126 = $122 | $125; + $127 = $123 >>> $125; + $128 = $127 >>> 1; + $129 = $128 & 1; + $130 = $126 | $129; + $131 = $127 >>> $129; + $132 = (($130) + ($131))|0; + $133 = (33268 + ($132<<2)|0); $134 = HEAP32[$133>>2]|0; - $135 = $134 & -8; - $136 = (($135) - ($4))|0; - $rsize$0$i = $136;$t$0$i = $132;$v$0$i = $132; - while(1) { - $137 = ((($t$0$i)) + 16|0); - $138 = HEAP32[$137>>2]|0; - $139 = ($138|0)==(0|0); - if ($139) { - $140 = ((($t$0$i)) + 20|0); - $141 = HEAP32[$140>>2]|0; - $142 = ($141|0)==(0|0); - if ($142) { - $rsize$0$i$lcssa = $rsize$0$i;$v$0$i$lcssa = $v$0$i; + $135 = ((($134)) + 4|0); + $136 = HEAP32[$135>>2]|0; + $137 = $136 & -8; + $138 = (($137) - ($6))|0; + $139 = ((($134)) + 16|0); + $140 = HEAP32[$139>>2]|0; + $not$5$i = ($140|0)==(0|0); + $$sink16$i = $not$5$i&1; + $141 = (((($134)) + 16|0) + ($$sink16$i<<2)|0); + $142 = HEAP32[$141>>2]|0; + $143 = ($142|0)==(0|0); + if ($143) { + $$0192$lcssa$i = $134;$$0193$lcssa$i = $138; + } else { + $$01928$i = $134;$$01937$i = $138;$145 = $142; + while(1) { + $144 = ((($145)) + 4|0); + $146 = HEAP32[$144>>2]|0; + $147 = $146 & -8; + $148 = (($147) - ($6))|0; + $149 = ($148>>>0)<($$01937$i>>>0); + $$$0193$i = $149 ? $148 : $$01937$i; + $$$0192$i = $149 ? $145 : $$01928$i; + $150 = ((($145)) + 16|0); + $151 = HEAP32[$150>>2]|0; + $not$$i = ($151|0)==(0|0); + $$sink1$i = $not$$i&1; + $152 = (((($145)) + 16|0) + ($$sink1$i<<2)|0); + $153 = HEAP32[$152>>2]|0; + $154 = ($153|0)==(0|0); + if ($154) { + $$0192$lcssa$i = $$$0192$i;$$0193$lcssa$i = $$$0193$i; break; } else { - $144 = $141; + $$01928$i = $$$0192$i;$$01937$i = $$$0193$i;$145 = $153; } - } else { - $144 = $138; } - $143 = ((($144)) + 4|0); - $145 = HEAP32[$143>>2]|0; - $146 = $145 & -8; - $147 = (($146) - ($4))|0; - $148 = ($147>>>0)<($rsize$0$i>>>0); - $$rsize$0$i = $148 ? $147 : $rsize$0$i; - $$v$0$i = $148 ? $144 : $v$0$i; - $rsize$0$i = $$rsize$0$i;$t$0$i = $144;$v$0$i = $$v$0$i; } - $149 = HEAP32[(32692)>>2]|0; - $150 = ($v$0$i$lcssa>>>0)<($149>>>0); - if ($150) { + $155 = HEAP32[(32980)>>2]|0; + $156 = ($$0192$lcssa$i>>>0)<($155>>>0); + if ($156) { _abort(); // unreachable; } - $151 = (($v$0$i$lcssa) + ($4)|0); - $152 = ($v$0$i$lcssa>>>0)<($151>>>0); - if (!($152)) { + $157 = (($$0192$lcssa$i) + ($6)|0); + $158 = ($$0192$lcssa$i>>>0)<($157>>>0); + if (!($158)) { _abort(); // unreachable; } - $153 = ((($v$0$i$lcssa)) + 24|0); - $154 = HEAP32[$153>>2]|0; - $155 = ((($v$0$i$lcssa)) + 12|0); - $156 = HEAP32[$155>>2]|0; - $157 = ($156|0)==($v$0$i$lcssa|0); + $159 = ((($$0192$lcssa$i)) + 24|0); + $160 = HEAP32[$159>>2]|0; + $161 = ((($$0192$lcssa$i)) + 12|0); + $162 = HEAP32[$161>>2]|0; + $163 = ($162|0)==($$0192$lcssa$i|0); do { - if ($157) { - $167 = ((($v$0$i$lcssa)) + 20|0); - $168 = HEAP32[$167>>2]|0; - $169 = ($168|0)==(0|0); - if ($169) { - $170 = ((($v$0$i$lcssa)) + 16|0); - $171 = HEAP32[$170>>2]|0; - $172 = ($171|0)==(0|0); - if ($172) { - $R$1$i = 0; + if ($163) { + $173 = ((($$0192$lcssa$i)) + 20|0); + $174 = HEAP32[$173>>2]|0; + $175 = ($174|0)==(0|0); + if ($175) { + $176 = ((($$0192$lcssa$i)) + 16|0); + $177 = HEAP32[$176>>2]|0; + $178 = ($177|0)==(0|0); + if ($178) { + $$3$i = 0; break; } else { - $R$0$i = $171;$RP$0$i = $170; + $$1196$i = $177;$$1198$i = $176; } } else { - $R$0$i = $168;$RP$0$i = $167; + $$1196$i = $174;$$1198$i = $173; } while(1) { - $173 = ((($R$0$i)) + 20|0); - $174 = HEAP32[$173>>2]|0; - $175 = ($174|0)==(0|0); - if (!($175)) { - $R$0$i = $174;$RP$0$i = $173; + $179 = ((($$1196$i)) + 20|0); + $180 = HEAP32[$179>>2]|0; + $181 = ($180|0)==(0|0); + if (!($181)) { + $$1196$i = $180;$$1198$i = $179; continue; } - $176 = ((($R$0$i)) + 16|0); - $177 = HEAP32[$176>>2]|0; - $178 = ($177|0)==(0|0); - if ($178) { - $R$0$i$lcssa = $R$0$i;$RP$0$i$lcssa = $RP$0$i; + $182 = ((($$1196$i)) + 16|0); + $183 = HEAP32[$182>>2]|0; + $184 = ($183|0)==(0|0); + if ($184) { break; } else { - $R$0$i = $177;$RP$0$i = $176; + $$1196$i = $183;$$1198$i = $182; } } - $179 = ($RP$0$i$lcssa>>>0)<($149>>>0); - if ($179) { + $185 = ($$1198$i>>>0)<($155>>>0); + if ($185) { _abort(); // unreachable; } else { - HEAP32[$RP$0$i$lcssa>>2] = 0; - $R$1$i = $R$0$i$lcssa; + HEAP32[$$1198$i>>2] = 0; + $$3$i = $$1196$i; break; } } else { - $158 = ((($v$0$i$lcssa)) + 8|0); - $159 = HEAP32[$158>>2]|0; - $160 = ($159>>>0)<($149>>>0); - if ($160) { + $164 = ((($$0192$lcssa$i)) + 8|0); + $165 = HEAP32[$164>>2]|0; + $166 = ($165>>>0)<($155>>>0); + if ($166) { _abort(); // unreachable; } - $161 = ((($159)) + 12|0); - $162 = HEAP32[$161>>2]|0; - $163 = ($162|0)==($v$0$i$lcssa|0); - if (!($163)) { + $167 = ((($165)) + 12|0); + $168 = HEAP32[$167>>2]|0; + $169 = ($168|0)==($$0192$lcssa$i|0); + if (!($169)) { _abort(); // unreachable; } - $164 = ((($156)) + 8|0); - $165 = HEAP32[$164>>2]|0; - $166 = ($165|0)==($v$0$i$lcssa|0); - if ($166) { - HEAP32[$161>>2] = $156; - HEAP32[$164>>2] = $159; - $R$1$i = $156; + $170 = ((($162)) + 8|0); + $171 = HEAP32[$170>>2]|0; + $172 = ($171|0)==($$0192$lcssa$i|0); + if ($172) { + HEAP32[$167>>2] = $162; + HEAP32[$170>>2] = $165; + $$3$i = $162; break; } else { _abort(); @@ -21070,434 +17477,426 @@ function _malloc($bytes) { } } } while(0); - $180 = ($154|0)==(0|0); - do { - if (!($180)) { - $181 = ((($v$0$i$lcssa)) + 28|0); - $182 = HEAP32[$181>>2]|0; - $183 = (32980 + ($182<<2)|0); - $184 = HEAP32[$183>>2]|0; - $185 = ($v$0$i$lcssa|0)==($184|0); - if ($185) { - HEAP32[$183>>2] = $R$1$i; - $cond$i = ($R$1$i|0)==(0|0); - if ($cond$i) { - $186 = 1 << $182; - $187 = $186 ^ -1; - $188 = HEAP32[(32680)>>2]|0; - $189 = $188 & $187; - HEAP32[(32680)>>2] = $189; - break; - } - } else { - $190 = HEAP32[(32692)>>2]|0; - $191 = ($154>>>0)<($190>>>0); + $186 = ($160|0)==(0|0); + L73: do { + if (!($186)) { + $187 = ((($$0192$lcssa$i)) + 28|0); + $188 = HEAP32[$187>>2]|0; + $189 = (33268 + ($188<<2)|0); + $190 = HEAP32[$189>>2]|0; + $191 = ($$0192$lcssa$i|0)==($190|0); + do { if ($191) { - _abort(); - // unreachable; - } - $192 = ((($154)) + 16|0); - $193 = HEAP32[$192>>2]|0; - $194 = ($193|0)==($v$0$i$lcssa|0); - if ($194) { - HEAP32[$192>>2] = $R$1$i; + HEAP32[$189>>2] = $$3$i; + $cond$i = ($$3$i|0)==(0|0); + if ($cond$i) { + $192 = 1 << $188; + $193 = $192 ^ -1; + $194 = $108 & $193; + HEAP32[(32968)>>2] = $194; + break L73; + } } else { - $195 = ((($154)) + 20|0); - HEAP32[$195>>2] = $R$1$i; - } - $196 = ($R$1$i|0)==(0|0); - if ($196) { - break; + $195 = HEAP32[(32980)>>2]|0; + $196 = ($160>>>0)<($195>>>0); + if ($196) { + _abort(); + // unreachable; + } else { + $197 = ((($160)) + 16|0); + $198 = HEAP32[$197>>2]|0; + $not$1$i = ($198|0)!=($$0192$lcssa$i|0); + $$sink2$i = $not$1$i&1; + $199 = (((($160)) + 16|0) + ($$sink2$i<<2)|0); + HEAP32[$199>>2] = $$3$i; + $200 = ($$3$i|0)==(0|0); + if ($200) { + break L73; + } else { + break; + } + } } - } - $197 = HEAP32[(32692)>>2]|0; - $198 = ($R$1$i>>>0)<($197>>>0); - if ($198) { + } while(0); + $201 = HEAP32[(32980)>>2]|0; + $202 = ($$3$i>>>0)<($201>>>0); + if ($202) { _abort(); // unreachable; } - $199 = ((($R$1$i)) + 24|0); - HEAP32[$199>>2] = $154; - $200 = ((($v$0$i$lcssa)) + 16|0); - $201 = HEAP32[$200>>2]|0; - $202 = ($201|0)==(0|0); + $203 = ((($$3$i)) + 24|0); + HEAP32[$203>>2] = $160; + $204 = ((($$0192$lcssa$i)) + 16|0); + $205 = HEAP32[$204>>2]|0; + $206 = ($205|0)==(0|0); do { - if (!($202)) { - $203 = ($201>>>0)<($197>>>0); - if ($203) { + if (!($206)) { + $207 = ($205>>>0)<($201>>>0); + if ($207) { _abort(); // unreachable; } else { - $204 = ((($R$1$i)) + 16|0); - HEAP32[$204>>2] = $201; - $205 = ((($201)) + 24|0); - HEAP32[$205>>2] = $R$1$i; + $208 = ((($$3$i)) + 16|0); + HEAP32[$208>>2] = $205; + $209 = ((($205)) + 24|0); + HEAP32[$209>>2] = $$3$i; break; } } } while(0); - $206 = ((($v$0$i$lcssa)) + 20|0); - $207 = HEAP32[$206>>2]|0; - $208 = ($207|0)==(0|0); - if (!($208)) { - $209 = HEAP32[(32692)>>2]|0; - $210 = ($207>>>0)<($209>>>0); - if ($210) { + $210 = ((($$0192$lcssa$i)) + 20|0); + $211 = HEAP32[$210>>2]|0; + $212 = ($211|0)==(0|0); + if (!($212)) { + $213 = HEAP32[(32980)>>2]|0; + $214 = ($211>>>0)<($213>>>0); + if ($214) { _abort(); // unreachable; } else { - $211 = ((($R$1$i)) + 20|0); - HEAP32[$211>>2] = $207; - $212 = ((($207)) + 24|0); - HEAP32[$212>>2] = $R$1$i; + $215 = ((($$3$i)) + 20|0); + HEAP32[$215>>2] = $211; + $216 = ((($211)) + 24|0); + HEAP32[$216>>2] = $$3$i; break; } } } } while(0); - $213 = ($rsize$0$i$lcssa>>>0)<(16); - if ($213) { - $214 = (($rsize$0$i$lcssa) + ($4))|0; - $215 = $214 | 3; - $216 = ((($v$0$i$lcssa)) + 4|0); - HEAP32[$216>>2] = $215; - $$sum4$i = (($214) + 4)|0; - $217 = (($v$0$i$lcssa) + ($$sum4$i)|0); - $218 = HEAP32[$217>>2]|0; - $219 = $218 | 1; - HEAP32[$217>>2] = $219; + $217 = ($$0193$lcssa$i>>>0)<(16); + if ($217) { + $218 = (($$0193$lcssa$i) + ($6))|0; + $219 = $218 | 3; + $220 = ((($$0192$lcssa$i)) + 4|0); + HEAP32[$220>>2] = $219; + $221 = (($$0192$lcssa$i) + ($218)|0); + $222 = ((($221)) + 4|0); + $223 = HEAP32[$222>>2]|0; + $224 = $223 | 1; + HEAP32[$222>>2] = $224; } else { - $220 = $4 | 3; - $221 = ((($v$0$i$lcssa)) + 4|0); - HEAP32[$221>>2] = $220; - $222 = $rsize$0$i$lcssa | 1; - $$sum$i35 = $4 | 4; - $223 = (($v$0$i$lcssa) + ($$sum$i35)|0); - HEAP32[$223>>2] = $222; - $$sum1$i = (($rsize$0$i$lcssa) + ($4))|0; - $224 = (($v$0$i$lcssa) + ($$sum1$i)|0); - HEAP32[$224>>2] = $rsize$0$i$lcssa; - $225 = HEAP32[(32684)>>2]|0; - $226 = ($225|0)==(0); - if (!($226)) { - $227 = HEAP32[(32696)>>2]|0; - $228 = $225 >>> 3; - $229 = $228 << 1; - $230 = (32716 + ($229<<2)|0); - $231 = HEAP32[32676>>2]|0; - $232 = 1 << $228; - $233 = $231 & $232; - $234 = ($233|0)==(0); - if ($234) { - $235 = $231 | $232; - HEAP32[32676>>2] = $235; - $$pre$i = (($229) + 2)|0; - $$pre8$i = (32716 + ($$pre$i<<2)|0); - $$pre$phi$iZ2D = $$pre8$i;$F1$0$i = $230; + $225 = $6 | 3; + $226 = ((($$0192$lcssa$i)) + 4|0); + HEAP32[$226>>2] = $225; + $227 = $$0193$lcssa$i | 1; + $228 = ((($157)) + 4|0); + HEAP32[$228>>2] = $227; + $229 = (($157) + ($$0193$lcssa$i)|0); + HEAP32[$229>>2] = $$0193$lcssa$i; + $230 = ($37|0)==(0); + if (!($230)) { + $231 = HEAP32[(32984)>>2]|0; + $232 = $37 >>> 3; + $233 = $232 << 1; + $234 = (33004 + ($233<<2)|0); + $235 = 1 << $232; + $236 = $8 & $235; + $237 = ($236|0)==(0); + if ($237) { + $238 = $8 | $235; + HEAP32[8241] = $238; + $$pre$i = ((($234)) + 8|0); + $$0189$i = $234;$$pre$phi$iZ2D = $$pre$i; } else { - $$sum3$i = (($229) + 2)|0; - $236 = (32716 + ($$sum3$i<<2)|0); - $237 = HEAP32[$236>>2]|0; - $238 = HEAP32[(32692)>>2]|0; - $239 = ($237>>>0)<($238>>>0); - if ($239) { + $239 = ((($234)) + 8|0); + $240 = HEAP32[$239>>2]|0; + $241 = HEAP32[(32980)>>2]|0; + $242 = ($240>>>0)<($241>>>0); + if ($242) { _abort(); // unreachable; } else { - $$pre$phi$iZ2D = $236;$F1$0$i = $237; + $$0189$i = $240;$$pre$phi$iZ2D = $239; } } - HEAP32[$$pre$phi$iZ2D>>2] = $227; - $240 = ((($F1$0$i)) + 12|0); - HEAP32[$240>>2] = $227; - $241 = ((($227)) + 8|0); - HEAP32[$241>>2] = $F1$0$i; - $242 = ((($227)) + 12|0); - HEAP32[$242>>2] = $230; + HEAP32[$$pre$phi$iZ2D>>2] = $231; + $243 = ((($$0189$i)) + 12|0); + HEAP32[$243>>2] = $231; + $244 = ((($231)) + 8|0); + HEAP32[$244>>2] = $$0189$i; + $245 = ((($231)) + 12|0); + HEAP32[$245>>2] = $234; } - HEAP32[(32684)>>2] = $rsize$0$i$lcssa; - HEAP32[(32696)>>2] = $151; + HEAP32[(32972)>>2] = $$0193$lcssa$i; + HEAP32[(32984)>>2] = $157; } - $243 = ((($v$0$i$lcssa)) + 8|0); - $mem$0 = $243; - return ($mem$0|0); + $246 = ((($$0192$lcssa$i)) + 8|0); + $$0 = $246; + STACKTOP = sp;return ($$0|0); } } else { - $nb$0 = $4; + $$0197 = $6; } } else { - $244 = ($bytes>>>0)>(4294967231); - if ($244) { - $nb$0 = -1; + $247 = ($0>>>0)>(4294967231); + if ($247) { + $$0197 = -1; } else { - $245 = (($bytes) + 11)|0; - $246 = $245 & -8; - $247 = HEAP32[(32680)>>2]|0; - $248 = ($247|0)==(0); - if ($248) { - $nb$0 = $246; + $248 = (($0) + 11)|0; + $249 = $248 & -8; + $250 = HEAP32[(32968)>>2]|0; + $251 = ($250|0)==(0); + if ($251) { + $$0197 = $249; } else { - $249 = (0 - ($246))|0; - $250 = $245 >>> 8; - $251 = ($250|0)==(0); - if ($251) { - $idx$0$i = 0; + $252 = (0 - ($249))|0; + $253 = $248 >>> 8; + $254 = ($253|0)==(0); + if ($254) { + $$0358$i = 0; } else { - $252 = ($246>>>0)>(16777215); - if ($252) { - $idx$0$i = 31; + $255 = ($249>>>0)>(16777215); + if ($255) { + $$0358$i = 31; } else { - $253 = (($250) + 1048320)|0; - $254 = $253 >>> 16; - $255 = $254 & 8; - $256 = $250 << $255; - $257 = (($256) + 520192)|0; - $258 = $257 >>> 16; - $259 = $258 & 4; - $260 = $259 | $255; - $261 = $256 << $259; - $262 = (($261) + 245760)|0; - $263 = $262 >>> 16; - $264 = $263 & 2; - $265 = $260 | $264; - $266 = (14 - ($265))|0; - $267 = $261 << $264; - $268 = $267 >>> 15; - $269 = (($266) + ($268))|0; - $270 = $269 << 1; - $271 = (($269) + 7)|0; - $272 = $246 >>> $271; - $273 = $272 & 1; - $274 = $273 | $270; - $idx$0$i = $274; + $256 = (($253) + 1048320)|0; + $257 = $256 >>> 16; + $258 = $257 & 8; + $259 = $253 << $258; + $260 = (($259) + 520192)|0; + $261 = $260 >>> 16; + $262 = $261 & 4; + $263 = $262 | $258; + $264 = $259 << $262; + $265 = (($264) + 245760)|0; + $266 = $265 >>> 16; + $267 = $266 & 2; + $268 = $263 | $267; + $269 = (14 - ($268))|0; + $270 = $264 << $267; + $271 = $270 >>> 15; + $272 = (($269) + ($271))|0; + $273 = $272 << 1; + $274 = (($272) + 7)|0; + $275 = $249 >>> $274; + $276 = $275 & 1; + $277 = $276 | $273; + $$0358$i = $277; } } - $275 = (32980 + ($idx$0$i<<2)|0); - $276 = HEAP32[$275>>2]|0; - $277 = ($276|0)==(0|0); - L123: do { - if ($277) { - $rsize$2$i = $249;$t$1$i = 0;$v$2$i = 0; - label = 86; + $278 = (33268 + ($$0358$i<<2)|0); + $279 = HEAP32[$278>>2]|0; + $280 = ($279|0)==(0|0); + L117: do { + if ($280) { + $$2355$i = 0;$$3$i201 = 0;$$3350$i = $252; + label = 81; } else { - $278 = ($idx$0$i|0)==(31); - $279 = $idx$0$i >>> 1; - $280 = (25 - ($279))|0; - $281 = $278 ? 0 : $280; - $282 = $246 << $281; - $rsize$0$i15 = $249;$rst$0$i = 0;$sizebits$0$i = $282;$t$0$i14 = $276;$v$0$i16 = 0; + $281 = ($$0358$i|0)==(31); + $282 = $$0358$i >>> 1; + $283 = (25 - ($282))|0; + $284 = $281 ? 0 : $283; + $285 = $249 << $284; + $$0342$i = 0;$$0347$i = $252;$$0353$i = $279;$$0359$i = $285;$$0362$i = 0; while(1) { - $283 = ((($t$0$i14)) + 4|0); - $284 = HEAP32[$283>>2]|0; - $285 = $284 & -8; - $286 = (($285) - ($246))|0; - $287 = ($286>>>0)<($rsize$0$i15>>>0); - if ($287) { - $288 = ($285|0)==($246|0); - if ($288) { - $rsize$331$i = $286;$t$230$i = $t$0$i14;$v$332$i = $t$0$i14; - label = 90; - break L123; + $286 = ((($$0353$i)) + 4|0); + $287 = HEAP32[$286>>2]|0; + $288 = $287 & -8; + $289 = (($288) - ($249))|0; + $290 = ($289>>>0)<($$0347$i>>>0); + if ($290) { + $291 = ($289|0)==(0); + if ($291) { + $$415$i = $$0353$i;$$435114$i = 0;$$435713$i = $$0353$i; + label = 85; + break L117; } else { - $rsize$1$i = $286;$v$1$i = $t$0$i14; + $$1343$i = $$0353$i;$$1348$i = $289; } } else { - $rsize$1$i = $rsize$0$i15;$v$1$i = $v$0$i16; + $$1343$i = $$0342$i;$$1348$i = $$0347$i; } - $289 = ((($t$0$i14)) + 20|0); - $290 = HEAP32[$289>>2]|0; - $291 = $sizebits$0$i >>> 31; - $292 = (((($t$0$i14)) + 16|0) + ($291<<2)|0); + $292 = ((($$0353$i)) + 20|0); $293 = HEAP32[$292>>2]|0; - $294 = ($290|0)==(0|0); - $295 = ($290|0)==($293|0); - $or$cond19$i = $294 | $295; - $rst$1$i = $or$cond19$i ? $rst$0$i : $290; - $296 = ($293|0)==(0|0); - $297 = $sizebits$0$i << 1; - if ($296) { - $rsize$2$i = $rsize$1$i;$t$1$i = $rst$1$i;$v$2$i = $v$1$i; - label = 86; + $294 = $$0359$i >>> 31; + $295 = (((($$0353$i)) + 16|0) + ($294<<2)|0); + $296 = HEAP32[$295>>2]|0; + $297 = ($293|0)==(0|0); + $298 = ($293|0)==($296|0); + $or$cond2$i = $297 | $298; + $$1363$i = $or$cond2$i ? $$0362$i : $293; + $299 = ($296|0)==(0|0); + $not$8$i = $299 ^ 1; + $300 = $not$8$i&1; + $$0359$$i = $$0359$i << $300; + if ($299) { + $$2355$i = $$1363$i;$$3$i201 = $$1343$i;$$3350$i = $$1348$i; + label = 81; break; } else { - $rsize$0$i15 = $rsize$1$i;$rst$0$i = $rst$1$i;$sizebits$0$i = $297;$t$0$i14 = $293;$v$0$i16 = $v$1$i; + $$0342$i = $$1343$i;$$0347$i = $$1348$i;$$0353$i = $296;$$0359$i = $$0359$$i;$$0362$i = $$1363$i; } } } } while(0); - if ((label|0) == 86) { - $298 = ($t$1$i|0)==(0|0); - $299 = ($v$2$i|0)==(0|0); - $or$cond$i = $298 & $299; + if ((label|0) == 81) { + $301 = ($$2355$i|0)==(0|0); + $302 = ($$3$i201|0)==(0|0); + $or$cond$i = $301 & $302; if ($or$cond$i) { - $300 = 2 << $idx$0$i; - $301 = (0 - ($300))|0; - $302 = $300 | $301; - $303 = $247 & $302; - $304 = ($303|0)==(0); - if ($304) { - $nb$0 = $246; + $303 = 2 << $$0358$i; + $304 = (0 - ($303))|0; + $305 = $303 | $304; + $306 = $250 & $305; + $307 = ($306|0)==(0); + if ($307) { + $$0197 = $249; break; } - $305 = (0 - ($303))|0; - $306 = $303 & $305; - $307 = (($306) + -1)|0; - $308 = $307 >>> 12; - $309 = $308 & 16; - $310 = $307 >>> $309; - $311 = $310 >>> 5; - $312 = $311 & 8; - $313 = $312 | $309; - $314 = $310 >>> $312; - $315 = $314 >>> 2; - $316 = $315 & 4; - $317 = $313 | $316; - $318 = $314 >>> $316; - $319 = $318 >>> 1; - $320 = $319 & 2; - $321 = $317 | $320; - $322 = $318 >>> $320; - $323 = $322 >>> 1; - $324 = $323 & 1; - $325 = $321 | $324; - $326 = $322 >>> $324; - $327 = (($325) + ($326))|0; - $328 = (32980 + ($327<<2)|0); - $329 = HEAP32[$328>>2]|0; - $t$2$ph$i = $329;$v$3$ph$i = 0; + $308 = (0 - ($306))|0; + $309 = $306 & $308; + $310 = (($309) + -1)|0; + $311 = $310 >>> 12; + $312 = $311 & 16; + $313 = $310 >>> $312; + $314 = $313 >>> 5; + $315 = $314 & 8; + $316 = $315 | $312; + $317 = $313 >>> $315; + $318 = $317 >>> 2; + $319 = $318 & 4; + $320 = $316 | $319; + $321 = $317 >>> $319; + $322 = $321 >>> 1; + $323 = $322 & 2; + $324 = $320 | $323; + $325 = $321 >>> $323; + $326 = $325 >>> 1; + $327 = $326 & 1; + $328 = $324 | $327; + $329 = $325 >>> $327; + $330 = (($328) + ($329))|0; + $331 = (33268 + ($330<<2)|0); + $332 = HEAP32[$331>>2]|0; + $$4$ph$i = 0;$$4357$ph$i = $332; } else { - $t$2$ph$i = $t$1$i;$v$3$ph$i = $v$2$i; + $$4$ph$i = $$3$i201;$$4357$ph$i = $$2355$i; } - $330 = ($t$2$ph$i|0)==(0|0); - if ($330) { - $rsize$3$lcssa$i = $rsize$2$i;$v$3$lcssa$i = $v$3$ph$i; + $333 = ($$4357$ph$i|0)==(0|0); + if ($333) { + $$4$lcssa$i = $$4$ph$i;$$4351$lcssa$i = $$3350$i; } else { - $rsize$331$i = $rsize$2$i;$t$230$i = $t$2$ph$i;$v$332$i = $v$3$ph$i; - label = 90; + $$415$i = $$4$ph$i;$$435114$i = $$3350$i;$$435713$i = $$4357$ph$i; + label = 85; } } - if ((label|0) == 90) { + if ((label|0) == 85) { while(1) { label = 0; - $331 = ((($t$230$i)) + 4|0); - $332 = HEAP32[$331>>2]|0; - $333 = $332 & -8; - $334 = (($333) - ($246))|0; - $335 = ($334>>>0)<($rsize$331$i>>>0); - $$rsize$3$i = $335 ? $334 : $rsize$331$i; - $t$2$v$3$i = $335 ? $t$230$i : $v$332$i; - $336 = ((($t$230$i)) + 16|0); - $337 = HEAP32[$336>>2]|0; - $338 = ($337|0)==(0|0); - if (!($338)) { - $rsize$331$i = $$rsize$3$i;$t$230$i = $337;$v$332$i = $t$2$v$3$i; - label = 90; - continue; - } - $339 = ((($t$230$i)) + 20|0); + $334 = ((($$435713$i)) + 4|0); + $335 = HEAP32[$334>>2]|0; + $336 = $335 & -8; + $337 = (($336) - ($249))|0; + $338 = ($337>>>0)<($$435114$i>>>0); + $$$4351$i = $338 ? $337 : $$435114$i; + $$4357$$4$i = $338 ? $$435713$i : $$415$i; + $339 = ((($$435713$i)) + 16|0); $340 = HEAP32[$339>>2]|0; - $341 = ($340|0)==(0|0); - if ($341) { - $rsize$3$lcssa$i = $$rsize$3$i;$v$3$lcssa$i = $t$2$v$3$i; + $not$1$i203 = ($340|0)==(0|0); + $$sink2$i204 = $not$1$i203&1; + $341 = (((($$435713$i)) + 16|0) + ($$sink2$i204<<2)|0); + $342 = HEAP32[$341>>2]|0; + $343 = ($342|0)==(0|0); + if ($343) { + $$4$lcssa$i = $$4357$$4$i;$$4351$lcssa$i = $$$4351$i; break; } else { - $rsize$331$i = $$rsize$3$i;$t$230$i = $340;$v$332$i = $t$2$v$3$i; - label = 90; + $$415$i = $$4357$$4$i;$$435114$i = $$$4351$i;$$435713$i = $342; + label = 85; } } } - $342 = ($v$3$lcssa$i|0)==(0|0); - if ($342) { - $nb$0 = $246; + $344 = ($$4$lcssa$i|0)==(0|0); + if ($344) { + $$0197 = $249; } else { - $343 = HEAP32[(32684)>>2]|0; - $344 = (($343) - ($246))|0; - $345 = ($rsize$3$lcssa$i>>>0)<($344>>>0); - if ($345) { - $346 = HEAP32[(32692)>>2]|0; - $347 = ($v$3$lcssa$i>>>0)<($346>>>0); - if ($347) { + $345 = HEAP32[(32972)>>2]|0; + $346 = (($345) - ($249))|0; + $347 = ($$4351$lcssa$i>>>0)<($346>>>0); + if ($347) { + $348 = HEAP32[(32980)>>2]|0; + $349 = ($$4$lcssa$i>>>0)<($348>>>0); + if ($349) { _abort(); // unreachable; } - $348 = (($v$3$lcssa$i) + ($246)|0); - $349 = ($v$3$lcssa$i>>>0)<($348>>>0); - if (!($349)) { + $350 = (($$4$lcssa$i) + ($249)|0); + $351 = ($$4$lcssa$i>>>0)<($350>>>0); + if (!($351)) { _abort(); // unreachable; } - $350 = ((($v$3$lcssa$i)) + 24|0); - $351 = HEAP32[$350>>2]|0; - $352 = ((($v$3$lcssa$i)) + 12|0); + $352 = ((($$4$lcssa$i)) + 24|0); $353 = HEAP32[$352>>2]|0; - $354 = ($353|0)==($v$3$lcssa$i|0); + $354 = ((($$4$lcssa$i)) + 12|0); + $355 = HEAP32[$354>>2]|0; + $356 = ($355|0)==($$4$lcssa$i|0); do { - if ($354) { - $364 = ((($v$3$lcssa$i)) + 20|0); - $365 = HEAP32[$364>>2]|0; - $366 = ($365|0)==(0|0); - if ($366) { - $367 = ((($v$3$lcssa$i)) + 16|0); - $368 = HEAP32[$367>>2]|0; - $369 = ($368|0)==(0|0); - if ($369) { - $R$1$i20 = 0; + if ($356) { + $366 = ((($$4$lcssa$i)) + 20|0); + $367 = HEAP32[$366>>2]|0; + $368 = ($367|0)==(0|0); + if ($368) { + $369 = ((($$4$lcssa$i)) + 16|0); + $370 = HEAP32[$369>>2]|0; + $371 = ($370|0)==(0|0); + if ($371) { + $$3372$i = 0; break; } else { - $R$0$i18 = $368;$RP$0$i17 = $367; + $$1370$i = $370;$$1374$i = $369; } } else { - $R$0$i18 = $365;$RP$0$i17 = $364; + $$1370$i = $367;$$1374$i = $366; } while(1) { - $370 = ((($R$0$i18)) + 20|0); - $371 = HEAP32[$370>>2]|0; - $372 = ($371|0)==(0|0); - if (!($372)) { - $R$0$i18 = $371;$RP$0$i17 = $370; + $372 = ((($$1370$i)) + 20|0); + $373 = HEAP32[$372>>2]|0; + $374 = ($373|0)==(0|0); + if (!($374)) { + $$1370$i = $373;$$1374$i = $372; continue; } - $373 = ((($R$0$i18)) + 16|0); - $374 = HEAP32[$373>>2]|0; - $375 = ($374|0)==(0|0); - if ($375) { - $R$0$i18$lcssa = $R$0$i18;$RP$0$i17$lcssa = $RP$0$i17; + $375 = ((($$1370$i)) + 16|0); + $376 = HEAP32[$375>>2]|0; + $377 = ($376|0)==(0|0); + if ($377) { break; } else { - $R$0$i18 = $374;$RP$0$i17 = $373; + $$1370$i = $376;$$1374$i = $375; } } - $376 = ($RP$0$i17$lcssa>>>0)<($346>>>0); - if ($376) { + $378 = ($$1374$i>>>0)<($348>>>0); + if ($378) { _abort(); // unreachable; } else { - HEAP32[$RP$0$i17$lcssa>>2] = 0; - $R$1$i20 = $R$0$i18$lcssa; + HEAP32[$$1374$i>>2] = 0; + $$3372$i = $$1370$i; break; } } else { - $355 = ((($v$3$lcssa$i)) + 8|0); - $356 = HEAP32[$355>>2]|0; - $357 = ($356>>>0)<($346>>>0); - if ($357) { + $357 = ((($$4$lcssa$i)) + 8|0); + $358 = HEAP32[$357>>2]|0; + $359 = ($358>>>0)<($348>>>0); + if ($359) { _abort(); // unreachable; } - $358 = ((($356)) + 12|0); - $359 = HEAP32[$358>>2]|0; - $360 = ($359|0)==($v$3$lcssa$i|0); - if (!($360)) { + $360 = ((($358)) + 12|0); + $361 = HEAP32[$360>>2]|0; + $362 = ($361|0)==($$4$lcssa$i|0); + if (!($362)) { _abort(); // unreachable; } - $361 = ((($353)) + 8|0); - $362 = HEAP32[$361>>2]|0; - $363 = ($362|0)==($v$3$lcssa$i|0); - if ($363) { - HEAP32[$358>>2] = $353; - HEAP32[$361>>2] = $356; - $R$1$i20 = $353; + $363 = ((($355)) + 8|0); + $364 = HEAP32[$363>>2]|0; + $365 = ($364|0)==($$4$lcssa$i|0); + if ($365) { + HEAP32[$360>>2] = $355; + HEAP32[$363>>2] = $358; + $$3372$i = $355; break; } else { _abort(); @@ -21505,55 +17904,60 @@ function _malloc($bytes) { } } } while(0); - $377 = ($351|0)==(0|0); - do { - if (!($377)) { - $378 = ((($v$3$lcssa$i)) + 28|0); - $379 = HEAP32[$378>>2]|0; - $380 = (32980 + ($379<<2)|0); + $379 = ($353|0)==(0|0); + L164: do { + if ($379) { + $470 = $250; + } else { + $380 = ((($$4$lcssa$i)) + 28|0); $381 = HEAP32[$380>>2]|0; - $382 = ($v$3$lcssa$i|0)==($381|0); - if ($382) { - HEAP32[$380>>2] = $R$1$i20; - $cond$i21 = ($R$1$i20|0)==(0|0); - if ($cond$i21) { - $383 = 1 << $379; - $384 = $383 ^ -1; - $385 = HEAP32[(32680)>>2]|0; - $386 = $385 & $384; - HEAP32[(32680)>>2] = $386; - break; - } - } else { - $387 = HEAP32[(32692)>>2]|0; - $388 = ($351>>>0)<($387>>>0); - if ($388) { - _abort(); - // unreachable; - } - $389 = ((($351)) + 16|0); - $390 = HEAP32[$389>>2]|0; - $391 = ($390|0)==($v$3$lcssa$i|0); - if ($391) { - HEAP32[$389>>2] = $R$1$i20; + $382 = (33268 + ($381<<2)|0); + $383 = HEAP32[$382>>2]|0; + $384 = ($$4$lcssa$i|0)==($383|0); + do { + if ($384) { + HEAP32[$382>>2] = $$3372$i; + $cond$i208 = ($$3372$i|0)==(0|0); + if ($cond$i208) { + $385 = 1 << $381; + $386 = $385 ^ -1; + $387 = $250 & $386; + HEAP32[(32968)>>2] = $387; + $470 = $387; + break L164; + } } else { - $392 = ((($351)) + 20|0); - HEAP32[$392>>2] = $R$1$i20; - } - $393 = ($R$1$i20|0)==(0|0); - if ($393) { - break; + $388 = HEAP32[(32980)>>2]|0; + $389 = ($353>>>0)<($388>>>0); + if ($389) { + _abort(); + // unreachable; + } else { + $390 = ((($353)) + 16|0); + $391 = HEAP32[$390>>2]|0; + $not$$i209 = ($391|0)!=($$4$lcssa$i|0); + $$sink3$i = $not$$i209&1; + $392 = (((($353)) + 16|0) + ($$sink3$i<<2)|0); + HEAP32[$392>>2] = $$3372$i; + $393 = ($$3372$i|0)==(0|0); + if ($393) { + $470 = $250; + break L164; + } else { + break; + } + } } - } - $394 = HEAP32[(32692)>>2]|0; - $395 = ($R$1$i20>>>0)<($394>>>0); + } while(0); + $394 = HEAP32[(32980)>>2]|0; + $395 = ($$3372$i>>>0)<($394>>>0); if ($395) { _abort(); // unreachable; } - $396 = ((($R$1$i20)) + 24|0); - HEAP32[$396>>2] = $351; - $397 = ((($v$3$lcssa$i)) + 16|0); + $396 = ((($$3372$i)) + 24|0); + HEAP32[$396>>2] = $353; + $397 = ((($$4$lcssa$i)) + 16|0); $398 = HEAP32[$397>>2]|0; $399 = ($398|0)==(0|0); do { @@ -21563,930 +17967,862 @@ function _malloc($bytes) { _abort(); // unreachable; } else { - $401 = ((($R$1$i20)) + 16|0); + $401 = ((($$3372$i)) + 16|0); HEAP32[$401>>2] = $398; $402 = ((($398)) + 24|0); - HEAP32[$402>>2] = $R$1$i20; + HEAP32[$402>>2] = $$3372$i; break; } } } while(0); - $403 = ((($v$3$lcssa$i)) + 20|0); + $403 = ((($$4$lcssa$i)) + 20|0); $404 = HEAP32[$403>>2]|0; $405 = ($404|0)==(0|0); - if (!($405)) { - $406 = HEAP32[(32692)>>2]|0; + if ($405) { + $470 = $250; + } else { + $406 = HEAP32[(32980)>>2]|0; $407 = ($404>>>0)<($406>>>0); if ($407) { _abort(); // unreachable; } else { - $408 = ((($R$1$i20)) + 20|0); + $408 = ((($$3372$i)) + 20|0); HEAP32[$408>>2] = $404; $409 = ((($404)) + 24|0); - HEAP32[$409>>2] = $R$1$i20; + HEAP32[$409>>2] = $$3372$i; + $470 = $250; break; } } } } while(0); - $410 = ($rsize$3$lcssa$i>>>0)<(16); - L199: do { + $410 = ($$4351$lcssa$i>>>0)<(16); + do { if ($410) { - $411 = (($rsize$3$lcssa$i) + ($246))|0; + $411 = (($$4351$lcssa$i) + ($249))|0; $412 = $411 | 3; - $413 = ((($v$3$lcssa$i)) + 4|0); + $413 = ((($$4$lcssa$i)) + 4|0); HEAP32[$413>>2] = $412; - $$sum18$i = (($411) + 4)|0; - $414 = (($v$3$lcssa$i) + ($$sum18$i)|0); - $415 = HEAP32[$414>>2]|0; - $416 = $415 | 1; - HEAP32[$414>>2] = $416; + $414 = (($$4$lcssa$i) + ($411)|0); + $415 = ((($414)) + 4|0); + $416 = HEAP32[$415>>2]|0; + $417 = $416 | 1; + HEAP32[$415>>2] = $417; } else { - $417 = $246 | 3; - $418 = ((($v$3$lcssa$i)) + 4|0); - HEAP32[$418>>2] = $417; - $419 = $rsize$3$lcssa$i | 1; - $$sum$i2334 = $246 | 4; - $420 = (($v$3$lcssa$i) + ($$sum$i2334)|0); - HEAP32[$420>>2] = $419; - $$sum1$i24 = (($rsize$3$lcssa$i) + ($246))|0; - $421 = (($v$3$lcssa$i) + ($$sum1$i24)|0); - HEAP32[$421>>2] = $rsize$3$lcssa$i; - $422 = $rsize$3$lcssa$i >>> 3; - $423 = ($rsize$3$lcssa$i>>>0)<(256); - if ($423) { - $424 = $422 << 1; - $425 = (32716 + ($424<<2)|0); - $426 = HEAP32[32676>>2]|0; - $427 = 1 << $422; - $428 = $426 & $427; - $429 = ($428|0)==(0); - if ($429) { - $430 = $426 | $427; - HEAP32[32676>>2] = $430; - $$pre$i25 = (($424) + 2)|0; - $$pre43$i = (32716 + ($$pre$i25<<2)|0); - $$pre$phi$i26Z2D = $$pre43$i;$F5$0$i = $425; + $418 = $249 | 3; + $419 = ((($$4$lcssa$i)) + 4|0); + HEAP32[$419>>2] = $418; + $420 = $$4351$lcssa$i | 1; + $421 = ((($350)) + 4|0); + HEAP32[$421>>2] = $420; + $422 = (($350) + ($$4351$lcssa$i)|0); + HEAP32[$422>>2] = $$4351$lcssa$i; + $423 = $$4351$lcssa$i >>> 3; + $424 = ($$4351$lcssa$i>>>0)<(256); + if ($424) { + $425 = $423 << 1; + $426 = (33004 + ($425<<2)|0); + $427 = HEAP32[8241]|0; + $428 = 1 << $423; + $429 = $427 & $428; + $430 = ($429|0)==(0); + if ($430) { + $431 = $427 | $428; + HEAP32[8241] = $431; + $$pre$i210 = ((($426)) + 8|0); + $$0368$i = $426;$$pre$phi$i211Z2D = $$pre$i210; } else { - $$sum17$i = (($424) + 2)|0; - $431 = (32716 + ($$sum17$i<<2)|0); - $432 = HEAP32[$431>>2]|0; - $433 = HEAP32[(32692)>>2]|0; - $434 = ($432>>>0)<($433>>>0); - if ($434) { + $432 = ((($426)) + 8|0); + $433 = HEAP32[$432>>2]|0; + $434 = HEAP32[(32980)>>2]|0; + $435 = ($433>>>0)<($434>>>0); + if ($435) { _abort(); // unreachable; } else { - $$pre$phi$i26Z2D = $431;$F5$0$i = $432; + $$0368$i = $433;$$pre$phi$i211Z2D = $432; } } - HEAP32[$$pre$phi$i26Z2D>>2] = $348; - $435 = ((($F5$0$i)) + 12|0); - HEAP32[$435>>2] = $348; - $$sum15$i = (($246) + 8)|0; - $436 = (($v$3$lcssa$i) + ($$sum15$i)|0); - HEAP32[$436>>2] = $F5$0$i; - $$sum16$i = (($246) + 12)|0; - $437 = (($v$3$lcssa$i) + ($$sum16$i)|0); - HEAP32[$437>>2] = $425; + HEAP32[$$pre$phi$i211Z2D>>2] = $350; + $436 = ((($$0368$i)) + 12|0); + HEAP32[$436>>2] = $350; + $437 = ((($350)) + 8|0); + HEAP32[$437>>2] = $$0368$i; + $438 = ((($350)) + 12|0); + HEAP32[$438>>2] = $426; break; } - $438 = $rsize$3$lcssa$i >>> 8; - $439 = ($438|0)==(0); - if ($439) { - $I7$0$i = 0; + $439 = $$4351$lcssa$i >>> 8; + $440 = ($439|0)==(0); + if ($440) { + $$0361$i = 0; } else { - $440 = ($rsize$3$lcssa$i>>>0)>(16777215); - if ($440) { - $I7$0$i = 31; + $441 = ($$4351$lcssa$i>>>0)>(16777215); + if ($441) { + $$0361$i = 31; } else { - $441 = (($438) + 1048320)|0; - $442 = $441 >>> 16; - $443 = $442 & 8; - $444 = $438 << $443; - $445 = (($444) + 520192)|0; - $446 = $445 >>> 16; - $447 = $446 & 4; - $448 = $447 | $443; - $449 = $444 << $447; - $450 = (($449) + 245760)|0; - $451 = $450 >>> 16; - $452 = $451 & 2; - $453 = $448 | $452; - $454 = (14 - ($453))|0; - $455 = $449 << $452; - $456 = $455 >>> 15; - $457 = (($454) + ($456))|0; - $458 = $457 << 1; - $459 = (($457) + 7)|0; - $460 = $rsize$3$lcssa$i >>> $459; - $461 = $460 & 1; - $462 = $461 | $458; - $I7$0$i = $462; + $442 = (($439) + 1048320)|0; + $443 = $442 >>> 16; + $444 = $443 & 8; + $445 = $439 << $444; + $446 = (($445) + 520192)|0; + $447 = $446 >>> 16; + $448 = $447 & 4; + $449 = $448 | $444; + $450 = $445 << $448; + $451 = (($450) + 245760)|0; + $452 = $451 >>> 16; + $453 = $452 & 2; + $454 = $449 | $453; + $455 = (14 - ($454))|0; + $456 = $450 << $453; + $457 = $456 >>> 15; + $458 = (($455) + ($457))|0; + $459 = $458 << 1; + $460 = (($458) + 7)|0; + $461 = $$4351$lcssa$i >>> $460; + $462 = $461 & 1; + $463 = $462 | $459; + $$0361$i = $463; } } - $463 = (32980 + ($I7$0$i<<2)|0); - $$sum2$i = (($246) + 28)|0; - $464 = (($v$3$lcssa$i) + ($$sum2$i)|0); - HEAP32[$464>>2] = $I7$0$i; - $$sum3$i27 = (($246) + 16)|0; - $465 = (($v$3$lcssa$i) + ($$sum3$i27)|0); - $$sum4$i28 = (($246) + 20)|0; - $466 = (($v$3$lcssa$i) + ($$sum4$i28)|0); + $464 = (33268 + ($$0361$i<<2)|0); + $465 = ((($350)) + 28|0); + HEAP32[$465>>2] = $$0361$i; + $466 = ((($350)) + 16|0); + $467 = ((($466)) + 4|0); + HEAP32[$467>>2] = 0; HEAP32[$466>>2] = 0; - HEAP32[$465>>2] = 0; - $467 = HEAP32[(32680)>>2]|0; - $468 = 1 << $I7$0$i; - $469 = $467 & $468; - $470 = ($469|0)==(0); - if ($470) { - $471 = $467 | $468; - HEAP32[(32680)>>2] = $471; - HEAP32[$463>>2] = $348; - $$sum5$i = (($246) + 24)|0; - $472 = (($v$3$lcssa$i) + ($$sum5$i)|0); - HEAP32[$472>>2] = $463; - $$sum6$i = (($246) + 12)|0; - $473 = (($v$3$lcssa$i) + ($$sum6$i)|0); - HEAP32[$473>>2] = $348; - $$sum7$i = (($246) + 8)|0; - $474 = (($v$3$lcssa$i) + ($$sum7$i)|0); - HEAP32[$474>>2] = $348; + $468 = 1 << $$0361$i; + $469 = $470 & $468; + $471 = ($469|0)==(0); + if ($471) { + $472 = $470 | $468; + HEAP32[(32968)>>2] = $472; + HEAP32[$464>>2] = $350; + $473 = ((($350)) + 24|0); + HEAP32[$473>>2] = $464; + $474 = ((($350)) + 12|0); + HEAP32[$474>>2] = $350; + $475 = ((($350)) + 8|0); + HEAP32[$475>>2] = $350; break; } - $475 = HEAP32[$463>>2]|0; - $476 = ((($475)) + 4|0); - $477 = HEAP32[$476>>2]|0; - $478 = $477 & -8; - $479 = ($478|0)==($rsize$3$lcssa$i|0); - L217: do { - if ($479) { - $T$0$lcssa$i = $475; + $476 = HEAP32[$464>>2]|0; + $477 = ($$0361$i|0)==(31); + $478 = $$0361$i >>> 1; + $479 = (25 - ($478))|0; + $480 = $477 ? 0 : $479; + $481 = $$4351$lcssa$i << $480; + $$0344$i = $481;$$0345$i = $476; + while(1) { + $482 = ((($$0345$i)) + 4|0); + $483 = HEAP32[$482>>2]|0; + $484 = $483 & -8; + $485 = ($484|0)==($$4351$lcssa$i|0); + if ($485) { + label = 139; + break; + } + $486 = $$0344$i >>> 31; + $487 = (((($$0345$i)) + 16|0) + ($486<<2)|0); + $488 = $$0344$i << 1; + $489 = HEAP32[$487>>2]|0; + $490 = ($489|0)==(0|0); + if ($490) { + label = 136; + break; } else { - $480 = ($I7$0$i|0)==(31); - $481 = $I7$0$i >>> 1; - $482 = (25 - ($481))|0; - $483 = $480 ? 0 : $482; - $484 = $rsize$3$lcssa$i << $483; - $K12$029$i = $484;$T$028$i = $475; - while(1) { - $491 = $K12$029$i >>> 31; - $492 = (((($T$028$i)) + 16|0) + ($491<<2)|0); - $487 = HEAP32[$492>>2]|0; - $493 = ($487|0)==(0|0); - if ($493) { - $$lcssa232 = $492;$T$028$i$lcssa = $T$028$i; - break; - } - $485 = $K12$029$i << 1; - $486 = ((($487)) + 4|0); - $488 = HEAP32[$486>>2]|0; - $489 = $488 & -8; - $490 = ($489|0)==($rsize$3$lcssa$i|0); - if ($490) { - $T$0$lcssa$i = $487; - break L217; - } else { - $K12$029$i = $485;$T$028$i = $487; - } - } - $494 = HEAP32[(32692)>>2]|0; - $495 = ($$lcssa232>>>0)<($494>>>0); - if ($495) { - _abort(); - // unreachable; - } else { - HEAP32[$$lcssa232>>2] = $348; - $$sum11$i = (($246) + 24)|0; - $496 = (($v$3$lcssa$i) + ($$sum11$i)|0); - HEAP32[$496>>2] = $T$028$i$lcssa; - $$sum12$i = (($246) + 12)|0; - $497 = (($v$3$lcssa$i) + ($$sum12$i)|0); - HEAP32[$497>>2] = $348; - $$sum13$i = (($246) + 8)|0; - $498 = (($v$3$lcssa$i) + ($$sum13$i)|0); - HEAP32[$498>>2] = $348; - break L199; - } + $$0344$i = $488;$$0345$i = $489; + } + } + if ((label|0) == 136) { + $491 = HEAP32[(32980)>>2]|0; + $492 = ($487>>>0)<($491>>>0); + if ($492) { + _abort(); + // unreachable; + } else { + HEAP32[$487>>2] = $350; + $493 = ((($350)) + 24|0); + HEAP32[$493>>2] = $$0345$i; + $494 = ((($350)) + 12|0); + HEAP32[$494>>2] = $350; + $495 = ((($350)) + 8|0); + HEAP32[$495>>2] = $350; + break; + } + } + else if ((label|0) == 139) { + $496 = ((($$0345$i)) + 8|0); + $497 = HEAP32[$496>>2]|0; + $498 = HEAP32[(32980)>>2]|0; + $499 = ($497>>>0)>=($498>>>0); + $not$9$i = ($$0345$i>>>0)>=($498>>>0); + $500 = $499 & $not$9$i; + if ($500) { + $501 = ((($497)) + 12|0); + HEAP32[$501>>2] = $350; + HEAP32[$496>>2] = $350; + $502 = ((($350)) + 8|0); + HEAP32[$502>>2] = $497; + $503 = ((($350)) + 12|0); + HEAP32[$503>>2] = $$0345$i; + $504 = ((($350)) + 24|0); + HEAP32[$504>>2] = 0; + break; + } else { + _abort(); + // unreachable; } - } while(0); - $499 = ((($T$0$lcssa$i)) + 8|0); - $500 = HEAP32[$499>>2]|0; - $501 = HEAP32[(32692)>>2]|0; - $502 = ($500>>>0)>=($501>>>0); - $not$$i = ($T$0$lcssa$i>>>0)>=($501>>>0); - $503 = $502 & $not$$i; - if ($503) { - $504 = ((($500)) + 12|0); - HEAP32[$504>>2] = $348; - HEAP32[$499>>2] = $348; - $$sum8$i = (($246) + 8)|0; - $505 = (($v$3$lcssa$i) + ($$sum8$i)|0); - HEAP32[$505>>2] = $500; - $$sum9$i = (($246) + 12)|0; - $506 = (($v$3$lcssa$i) + ($$sum9$i)|0); - HEAP32[$506>>2] = $T$0$lcssa$i; - $$sum10$i = (($246) + 24)|0; - $507 = (($v$3$lcssa$i) + ($$sum10$i)|0); - HEAP32[$507>>2] = 0; - break; - } else { - _abort(); - // unreachable; } } } while(0); - $508 = ((($v$3$lcssa$i)) + 8|0); - $mem$0 = $508; - return ($mem$0|0); + $505 = ((($$4$lcssa$i)) + 8|0); + $$0 = $505; + STACKTOP = sp;return ($$0|0); } else { - $nb$0 = $246; + $$0197 = $249; } } } } } } while(0); - $509 = HEAP32[(32684)>>2]|0; - $510 = ($509>>>0)<($nb$0>>>0); - if (!($510)) { - $511 = (($509) - ($nb$0))|0; - $512 = HEAP32[(32696)>>2]|0; - $513 = ($511>>>0)>(15); - if ($513) { - $514 = (($512) + ($nb$0)|0); - HEAP32[(32696)>>2] = $514; - HEAP32[(32684)>>2] = $511; - $515 = $511 | 1; - $$sum2 = (($nb$0) + 4)|0; - $516 = (($512) + ($$sum2)|0); + $506 = HEAP32[(32972)>>2]|0; + $507 = ($506>>>0)<($$0197>>>0); + if (!($507)) { + $508 = (($506) - ($$0197))|0; + $509 = HEAP32[(32984)>>2]|0; + $510 = ($508>>>0)>(15); + if ($510) { + $511 = (($509) + ($$0197)|0); + HEAP32[(32984)>>2] = $511; + HEAP32[(32972)>>2] = $508; + $512 = $508 | 1; + $513 = ((($511)) + 4|0); + HEAP32[$513>>2] = $512; + $514 = (($511) + ($508)|0); + HEAP32[$514>>2] = $508; + $515 = $$0197 | 3; + $516 = ((($509)) + 4|0); HEAP32[$516>>2] = $515; - $517 = (($512) + ($509)|0); - HEAP32[$517>>2] = $511; - $518 = $nb$0 | 3; - $519 = ((($512)) + 4|0); - HEAP32[$519>>2] = $518; } else { - HEAP32[(32684)>>2] = 0; - HEAP32[(32696)>>2] = 0; - $520 = $509 | 3; - $521 = ((($512)) + 4|0); - HEAP32[$521>>2] = $520; - $$sum1 = (($509) + 4)|0; - $522 = (($512) + ($$sum1)|0); - $523 = HEAP32[$522>>2]|0; - $524 = $523 | 1; - HEAP32[$522>>2] = $524; + HEAP32[(32972)>>2] = 0; + HEAP32[(32984)>>2] = 0; + $517 = $506 | 3; + $518 = ((($509)) + 4|0); + HEAP32[$518>>2] = $517; + $519 = (($509) + ($506)|0); + $520 = ((($519)) + 4|0); + $521 = HEAP32[$520>>2]|0; + $522 = $521 | 1; + HEAP32[$520>>2] = $522; } - $525 = ((($512)) + 8|0); - $mem$0 = $525; - return ($mem$0|0); + $523 = ((($509)) + 8|0); + $$0 = $523; + STACKTOP = sp;return ($$0|0); } - $526 = HEAP32[(32688)>>2]|0; - $527 = ($526>>>0)>($nb$0>>>0); - if ($527) { - $528 = (($526) - ($nb$0))|0; - HEAP32[(32688)>>2] = $528; - $529 = HEAP32[(32700)>>2]|0; - $530 = (($529) + ($nb$0)|0); - HEAP32[(32700)>>2] = $530; - $531 = $528 | 1; - $$sum = (($nb$0) + 4)|0; - $532 = (($529) + ($$sum)|0); + $524 = HEAP32[(32976)>>2]|0; + $525 = ($524>>>0)>($$0197>>>0); + if ($525) { + $526 = (($524) - ($$0197))|0; + HEAP32[(32976)>>2] = $526; + $527 = HEAP32[(32988)>>2]|0; + $528 = (($527) + ($$0197)|0); + HEAP32[(32988)>>2] = $528; + $529 = $526 | 1; + $530 = ((($528)) + 4|0); + HEAP32[$530>>2] = $529; + $531 = $$0197 | 3; + $532 = ((($527)) + 4|0); HEAP32[$532>>2] = $531; - $533 = $nb$0 | 3; - $534 = ((($529)) + 4|0); - HEAP32[$534>>2] = $533; - $535 = ((($529)) + 8|0); - $mem$0 = $535; - return ($mem$0|0); + $533 = ((($527)) + 8|0); + $$0 = $533; + STACKTOP = sp;return ($$0|0); } - $536 = HEAP32[33148>>2]|0; - $537 = ($536|0)==(0); - do { - if ($537) { - $538 = (_sysconf(30)|0); - $539 = (($538) + -1)|0; - $540 = $539 & $538; - $541 = ($540|0)==(0); - if ($541) { - HEAP32[(33156)>>2] = $538; - HEAP32[(33152)>>2] = $538; - HEAP32[(33160)>>2] = -1; - HEAP32[(33164)>>2] = -1; - HEAP32[(33168)>>2] = 0; - HEAP32[(33120)>>2] = 0; - $542 = (_time((0|0))|0); - $543 = $542 & -16; - $544 = $543 ^ 1431655768; - HEAP32[33148>>2] = $544; - break; - } else { - _abort(); - // unreachable; - } - } - } while(0); - $545 = (($nb$0) + 48)|0; - $546 = HEAP32[(33156)>>2]|0; - $547 = (($nb$0) + 47)|0; - $548 = (($546) + ($547))|0; - $549 = (0 - ($546))|0; - $550 = $548 & $549; - $551 = ($550>>>0)>($nb$0>>>0); - if (!($551)) { - $mem$0 = 0; - return ($mem$0|0); + $534 = HEAP32[8359]|0; + $535 = ($534|0)==(0); + if ($535) { + HEAP32[(33444)>>2] = 4096; + HEAP32[(33440)>>2] = 4096; + HEAP32[(33448)>>2] = -1; + HEAP32[(33452)>>2] = -1; + HEAP32[(33456)>>2] = 0; + HEAP32[(33408)>>2] = 0; + $536 = $1; + $537 = $536 & -16; + $538 = $537 ^ 1431655768; + HEAP32[$1>>2] = $538; + HEAP32[8359] = $538; + $542 = 4096; + } else { + $$pre$i212 = HEAP32[(33444)>>2]|0; + $542 = $$pre$i212; + } + $539 = (($$0197) + 48)|0; + $540 = (($$0197) + 47)|0; + $541 = (($542) + ($540))|0; + $543 = (0 - ($542))|0; + $544 = $541 & $543; + $545 = ($544>>>0)>($$0197>>>0); + if (!($545)) { + $$0 = 0; + STACKTOP = sp;return ($$0|0); } - $552 = HEAP32[(33116)>>2]|0; - $553 = ($552|0)==(0); - if (!($553)) { - $554 = HEAP32[(33108)>>2]|0; - $555 = (($554) + ($550))|0; - $556 = ($555>>>0)<=($554>>>0); - $557 = ($555>>>0)>($552>>>0); - $or$cond1$i = $556 | $557; + $546 = HEAP32[(33404)>>2]|0; + $547 = ($546|0)==(0); + if (!($547)) { + $548 = HEAP32[(33396)>>2]|0; + $549 = (($548) + ($544))|0; + $550 = ($549>>>0)<=($548>>>0); + $551 = ($549>>>0)>($546>>>0); + $or$cond1$i = $550 | $551; if ($or$cond1$i) { - $mem$0 = 0; - return ($mem$0|0); + $$0 = 0; + STACKTOP = sp;return ($$0|0); } } - $558 = HEAP32[(33120)>>2]|0; - $559 = $558 & 4; - $560 = ($559|0)==(0); - L258: do { - if ($560) { - $561 = HEAP32[(32700)>>2]|0; - $562 = ($561|0)==(0|0); - L260: do { - if ($562) { - label = 174; + $552 = HEAP32[(33408)>>2]|0; + $553 = $552 & 4; + $554 = ($553|0)==(0); + L244: do { + if ($554) { + $555 = HEAP32[(32988)>>2]|0; + $556 = ($555|0)==(0|0); + L246: do { + if ($556) { + label = 163; } else { - $sp$0$i$i = (33124); + $$0$i$i = (33412); while(1) { - $563 = HEAP32[$sp$0$i$i>>2]|0; - $564 = ($563>>>0)>($561>>>0); - if (!($564)) { - $565 = ((($sp$0$i$i)) + 4|0); - $566 = HEAP32[$565>>2]|0; - $567 = (($563) + ($566)|0); - $568 = ($567>>>0)>($561>>>0); - if ($568) { - $$lcssa228 = $sp$0$i$i;$$lcssa230 = $565; + $557 = HEAP32[$$0$i$i>>2]|0; + $558 = ($557>>>0)>($555>>>0); + if (!($558)) { + $559 = ((($$0$i$i)) + 4|0); + $560 = HEAP32[$559>>2]|0; + $561 = (($557) + ($560)|0); + $562 = ($561>>>0)>($555>>>0); + if ($562) { break; } } - $569 = ((($sp$0$i$i)) + 8|0); - $570 = HEAP32[$569>>2]|0; - $571 = ($570|0)==(0|0); - if ($571) { - label = 174; - break L260; + $563 = ((($$0$i$i)) + 8|0); + $564 = HEAP32[$563>>2]|0; + $565 = ($564|0)==(0|0); + if ($565) { + label = 163; + break L246; } else { - $sp$0$i$i = $570; + $$0$i$i = $564; } } - $594 = HEAP32[(32688)>>2]|0; - $595 = (($548) - ($594))|0; - $596 = $595 & $549; - $597 = ($596>>>0)<(2147483647); - if ($597) { - $598 = (_sbrk(($596|0))|0); - $599 = HEAP32[$$lcssa228>>2]|0; - $600 = HEAP32[$$lcssa230>>2]|0; - $601 = (($599) + ($600)|0); - $602 = ($598|0)==($601|0); - $$3$i = $602 ? $596 : 0; - if ($602) { - $603 = ($598|0)==((-1)|0); - if ($603) { - $tsize$0323944$i = $$3$i; + $588 = (($541) - ($524))|0; + $589 = $588 & $543; + $590 = ($589>>>0)<(2147483647); + if ($590) { + $591 = (_sbrk(($589|0))|0); + $592 = HEAP32[$$0$i$i>>2]|0; + $593 = HEAP32[$559>>2]|0; + $594 = (($592) + ($593)|0); + $595 = ($591|0)==($594|0); + if ($595) { + $596 = ($591|0)==((-1)|0); + if ($596) { + $$2234253237$i = $589; } else { - $tbase$255$i = $598;$tsize$254$i = $$3$i; - label = 194; - break L258; + $$723948$i = $589;$$749$i = $591; + label = 180; + break L244; } } else { - $br$0$ph$i = $598;$ssize$1$ph$i = $596;$tsize$0$ph$i = $$3$i; - label = 184; + $$2247$ph$i = $591;$$2253$ph$i = $589; + label = 171; } } else { - $tsize$0323944$i = 0; + $$2234253237$i = 0; } } } while(0); do { - if ((label|0) == 174) { - $572 = (_sbrk(0)|0); - $573 = ($572|0)==((-1)|0); - if ($573) { - $tsize$0323944$i = 0; + if ((label|0) == 163) { + $566 = (_sbrk(0)|0); + $567 = ($566|0)==((-1)|0); + if ($567) { + $$2234253237$i = 0; } else { - $574 = $572; - $575 = HEAP32[(33152)>>2]|0; - $576 = (($575) + -1)|0; - $577 = $576 & $574; - $578 = ($577|0)==(0); - if ($578) { - $ssize$0$i = $550; - } else { - $579 = (($576) + ($574))|0; - $580 = (0 - ($575))|0; - $581 = $579 & $580; - $582 = (($550) - ($574))|0; - $583 = (($582) + ($581))|0; - $ssize$0$i = $583; - } - $584 = HEAP32[(33108)>>2]|0; - $585 = (($584) + ($ssize$0$i))|0; - $586 = ($ssize$0$i>>>0)>($nb$0>>>0); - $587 = ($ssize$0$i>>>0)<(2147483647); - $or$cond$i30 = $586 & $587; - if ($or$cond$i30) { - $588 = HEAP32[(33116)>>2]|0; - $589 = ($588|0)==(0); - if (!($589)) { - $590 = ($585>>>0)<=($584>>>0); - $591 = ($585>>>0)>($588>>>0); - $or$cond2$i = $590 | $591; - if ($or$cond2$i) { - $tsize$0323944$i = 0; + $568 = $566; + $569 = HEAP32[(33440)>>2]|0; + $570 = (($569) + -1)|0; + $571 = $570 & $568; + $572 = ($571|0)==(0); + $573 = (($570) + ($568))|0; + $574 = (0 - ($569))|0; + $575 = $573 & $574; + $576 = (($575) - ($568))|0; + $577 = $572 ? 0 : $576; + $$$i = (($577) + ($544))|0; + $578 = HEAP32[(33396)>>2]|0; + $579 = (($$$i) + ($578))|0; + $580 = ($$$i>>>0)>($$0197>>>0); + $581 = ($$$i>>>0)<(2147483647); + $or$cond$i214 = $580 & $581; + if ($or$cond$i214) { + $582 = HEAP32[(33404)>>2]|0; + $583 = ($582|0)==(0); + if (!($583)) { + $584 = ($579>>>0)<=($578>>>0); + $585 = ($579>>>0)>($582>>>0); + $or$cond2$i215 = $584 | $585; + if ($or$cond2$i215) { + $$2234253237$i = 0; break; } } - $592 = (_sbrk(($ssize$0$i|0))|0); - $593 = ($592|0)==($572|0); - $ssize$0$$i = $593 ? $ssize$0$i : 0; - if ($593) { - $tbase$255$i = $572;$tsize$254$i = $ssize$0$$i; - label = 194; - break L258; + $586 = (_sbrk(($$$i|0))|0); + $587 = ($586|0)==($566|0); + if ($587) { + $$723948$i = $$$i;$$749$i = $566; + label = 180; + break L244; } else { - $br$0$ph$i = $592;$ssize$1$ph$i = $ssize$0$i;$tsize$0$ph$i = $ssize$0$$i; - label = 184; + $$2247$ph$i = $586;$$2253$ph$i = $$$i; + label = 171; } } else { - $tsize$0323944$i = 0; + $$2234253237$i = 0; } } } } while(0); - L280: do { - if ((label|0) == 184) { - $604 = (0 - ($ssize$1$ph$i))|0; - $605 = ($br$0$ph$i|0)!=((-1)|0); - $606 = ($ssize$1$ph$i>>>0)<(2147483647); - $or$cond5$i = $606 & $605; - $607 = ($545>>>0)>($ssize$1$ph$i>>>0); - $or$cond6$i = $607 & $or$cond5$i; - do { - if ($or$cond6$i) { - $608 = HEAP32[(33156)>>2]|0; - $609 = (($547) - ($ssize$1$ph$i))|0; - $610 = (($609) + ($608))|0; - $611 = (0 - ($608))|0; - $612 = $610 & $611; - $613 = ($612>>>0)<(2147483647); - if ($613) { - $614 = (_sbrk(($612|0))|0); - $615 = ($614|0)==((-1)|0); - if ($615) { - (_sbrk(($604|0))|0); - $tsize$0323944$i = $tsize$0$ph$i; - break L280; - } else { - $616 = (($612) + ($ssize$1$ph$i))|0; - $ssize$2$i = $616; - break; - } - } else { - $ssize$2$i = $ssize$1$ph$i; - } + do { + if ((label|0) == 171) { + $597 = (0 - ($$2253$ph$i))|0; + $598 = ($$2247$ph$i|0)!=((-1)|0); + $599 = ($$2253$ph$i>>>0)<(2147483647); + $or$cond7$i = $599 & $598; + $600 = ($539>>>0)>($$2253$ph$i>>>0); + $or$cond10$i = $600 & $or$cond7$i; + if (!($or$cond10$i)) { + $610 = ($$2247$ph$i|0)==((-1)|0); + if ($610) { + $$2234253237$i = 0; + break; } else { - $ssize$2$i = $ssize$1$ph$i; + $$723948$i = $$2253$ph$i;$$749$i = $$2247$ph$i; + label = 180; + break L244; } - } while(0); - $617 = ($br$0$ph$i|0)==((-1)|0); - if ($617) { - $tsize$0323944$i = $tsize$0$ph$i; + } + $601 = HEAP32[(33444)>>2]|0; + $602 = (($540) - ($$2253$ph$i))|0; + $603 = (($602) + ($601))|0; + $604 = (0 - ($601))|0; + $605 = $603 & $604; + $606 = ($605>>>0)<(2147483647); + if (!($606)) { + $$723948$i = $$2253$ph$i;$$749$i = $$2247$ph$i; + label = 180; + break L244; + } + $607 = (_sbrk(($605|0))|0); + $608 = ($607|0)==((-1)|0); + if ($608) { + (_sbrk(($597|0))|0); + $$2234253237$i = 0; + break; } else { - $tbase$255$i = $br$0$ph$i;$tsize$254$i = $ssize$2$i; - label = 194; - break L258; + $609 = (($605) + ($$2253$ph$i))|0; + $$723948$i = $609;$$749$i = $$2247$ph$i; + label = 180; + break L244; } } } while(0); - $618 = HEAP32[(33120)>>2]|0; - $619 = $618 | 4; - HEAP32[(33120)>>2] = $619; - $tsize$1$i = $tsize$0323944$i; - label = 191; + $611 = HEAP32[(33408)>>2]|0; + $612 = $611 | 4; + HEAP32[(33408)>>2] = $612; + $$4236$i = $$2234253237$i; + label = 178; } else { - $tsize$1$i = 0; - label = 191; + $$4236$i = 0; + label = 178; } } while(0); - if ((label|0) == 191) { - $620 = ($550>>>0)<(2147483647); - if ($620) { - $621 = (_sbrk(($550|0))|0); - $622 = (_sbrk(0)|0); - $623 = ($621|0)!=((-1)|0); - $624 = ($622|0)!=((-1)|0); - $or$cond3$i = $623 & $624; - $625 = ($621>>>0)<($622>>>0); - $or$cond8$i = $625 & $or$cond3$i; - if ($or$cond8$i) { - $626 = $622; - $627 = $621; - $628 = (($626) - ($627))|0; - $629 = (($nb$0) + 40)|0; - $630 = ($628>>>0)>($629>>>0); - $$tsize$1$i = $630 ? $628 : $tsize$1$i; - if ($630) { - $tbase$255$i = $621;$tsize$254$i = $$tsize$1$i; - label = 194; - } + if ((label|0) == 178) { + $613 = ($544>>>0)<(2147483647); + if ($613) { + $614 = (_sbrk(($544|0))|0); + $615 = (_sbrk(0)|0); + $616 = ($614|0)!=((-1)|0); + $617 = ($615|0)!=((-1)|0); + $or$cond5$i = $616 & $617; + $618 = ($614>>>0)<($615>>>0); + $or$cond11$i = $618 & $or$cond5$i; + $619 = $615; + $620 = $614; + $621 = (($619) - ($620))|0; + $622 = (($$0197) + 40)|0; + $623 = ($621>>>0)>($622>>>0); + $$$4236$i = $623 ? $621 : $$4236$i; + $or$cond11$not$i = $or$cond11$i ^ 1; + $624 = ($614|0)==((-1)|0); + $not$$i216 = $623 ^ 1; + $625 = $624 | $not$$i216; + $or$cond50$i = $625 | $or$cond11$not$i; + if (!($or$cond50$i)) { + $$723948$i = $$$4236$i;$$749$i = $614; + label = 180; } } } - if ((label|0) == 194) { - $631 = HEAP32[(33108)>>2]|0; - $632 = (($631) + ($tsize$254$i))|0; - HEAP32[(33108)>>2] = $632; - $633 = HEAP32[(33112)>>2]|0; - $634 = ($632>>>0)>($633>>>0); - if ($634) { - HEAP32[(33112)>>2] = $632; + if ((label|0) == 180) { + $626 = HEAP32[(33396)>>2]|0; + $627 = (($626) + ($$723948$i))|0; + HEAP32[(33396)>>2] = $627; + $628 = HEAP32[(33400)>>2]|0; + $629 = ($627>>>0)>($628>>>0); + if ($629) { + HEAP32[(33400)>>2] = $627; } - $635 = HEAP32[(32700)>>2]|0; - $636 = ($635|0)==(0|0); - L299: do { - if ($636) { - $637 = HEAP32[(32692)>>2]|0; - $638 = ($637|0)==(0|0); - $639 = ($tbase$255$i>>>0)<($637>>>0); - $or$cond9$i = $638 | $639; - if ($or$cond9$i) { - HEAP32[(32692)>>2] = $tbase$255$i; + $630 = HEAP32[(32988)>>2]|0; + $631 = ($630|0)==(0|0); + do { + if ($631) { + $632 = HEAP32[(32980)>>2]|0; + $633 = ($632|0)==(0|0); + $634 = ($$749$i>>>0)<($632>>>0); + $or$cond12$i = $633 | $634; + if ($or$cond12$i) { + HEAP32[(32980)>>2] = $$749$i; } - HEAP32[(33124)>>2] = $tbase$255$i; - HEAP32[(33128)>>2] = $tsize$254$i; - HEAP32[(33136)>>2] = 0; - $640 = HEAP32[33148>>2]|0; - HEAP32[(32712)>>2] = $640; - HEAP32[(32708)>>2] = -1; - $i$02$i$i = 0; + HEAP32[(33412)>>2] = $$749$i; + HEAP32[(33416)>>2] = $$723948$i; + HEAP32[(33424)>>2] = 0; + $635 = HEAP32[8359]|0; + HEAP32[(33000)>>2] = $635; + HEAP32[(32996)>>2] = -1; + $$01$i$i = 0; while(1) { - $641 = $i$02$i$i << 1; - $642 = (32716 + ($641<<2)|0); - $$sum$i$i = (($641) + 3)|0; - $643 = (32716 + ($$sum$i$i<<2)|0); - HEAP32[$643>>2] = $642; - $$sum1$i$i = (($641) + 2)|0; - $644 = (32716 + ($$sum1$i$i<<2)|0); - HEAP32[$644>>2] = $642; - $645 = (($i$02$i$i) + 1)|0; - $exitcond$i$i = ($645|0)==(32); + $636 = $$01$i$i << 1; + $637 = (33004 + ($636<<2)|0); + $638 = ((($637)) + 12|0); + HEAP32[$638>>2] = $637; + $639 = ((($637)) + 8|0); + HEAP32[$639>>2] = $637; + $640 = (($$01$i$i) + 1)|0; + $exitcond$i$i = ($640|0)==(32); if ($exitcond$i$i) { break; } else { - $i$02$i$i = $645; + $$01$i$i = $640; } } - $646 = (($tsize$254$i) + -40)|0; - $647 = ((($tbase$255$i)) + 8|0); - $648 = $647; - $649 = $648 & 7; - $650 = ($649|0)==(0); - $651 = (0 - ($648))|0; - $652 = $651 & 7; - $653 = $650 ? 0 : $652; - $654 = (($tbase$255$i) + ($653)|0); - $655 = (($646) - ($653))|0; - HEAP32[(32700)>>2] = $654; - HEAP32[(32688)>>2] = $655; - $656 = $655 | 1; - $$sum$i13$i = (($653) + 4)|0; - $657 = (($tbase$255$i) + ($$sum$i13$i)|0); - HEAP32[$657>>2] = $656; - $$sum2$i$i = (($tsize$254$i) + -36)|0; - $658 = (($tbase$255$i) + ($$sum2$i$i)|0); - HEAP32[$658>>2] = 40; - $659 = HEAP32[(33164)>>2]|0; - HEAP32[(32704)>>2] = $659; + $641 = (($$723948$i) + -40)|0; + $642 = ((($$749$i)) + 8|0); + $643 = $642; + $644 = $643 & 7; + $645 = ($644|0)==(0); + $646 = (0 - ($643))|0; + $647 = $646 & 7; + $648 = $645 ? 0 : $647; + $649 = (($$749$i) + ($648)|0); + $650 = (($641) - ($648))|0; + HEAP32[(32988)>>2] = $649; + HEAP32[(32976)>>2] = $650; + $651 = $650 | 1; + $652 = ((($649)) + 4|0); + HEAP32[$652>>2] = $651; + $653 = (($649) + ($650)|0); + $654 = ((($653)) + 4|0); + HEAP32[$654>>2] = 40; + $655 = HEAP32[(33452)>>2]|0; + HEAP32[(32992)>>2] = $655; } else { - $sp$084$i = (33124); + $$024371$i = (33412); while(1) { - $660 = HEAP32[$sp$084$i>>2]|0; - $661 = ((($sp$084$i)) + 4|0); - $662 = HEAP32[$661>>2]|0; - $663 = (($660) + ($662)|0); - $664 = ($tbase$255$i|0)==($663|0); - if ($664) { - $$lcssa222 = $660;$$lcssa224 = $661;$$lcssa226 = $662;$sp$084$i$lcssa = $sp$084$i; - label = 204; + $656 = HEAP32[$$024371$i>>2]|0; + $657 = ((($$024371$i)) + 4|0); + $658 = HEAP32[$657>>2]|0; + $659 = (($656) + ($658)|0); + $660 = ($$749$i|0)==($659|0); + if ($660) { + label = 190; break; } - $665 = ((($sp$084$i)) + 8|0); - $666 = HEAP32[$665>>2]|0; - $667 = ($666|0)==(0|0); - if ($667) { + $661 = ((($$024371$i)) + 8|0); + $662 = HEAP32[$661>>2]|0; + $663 = ($662|0)==(0|0); + if ($663) { break; } else { - $sp$084$i = $666; + $$024371$i = $662; } } - if ((label|0) == 204) { - $668 = ((($sp$084$i$lcssa)) + 12|0); - $669 = HEAP32[$668>>2]|0; - $670 = $669 & 8; - $671 = ($670|0)==(0); - if ($671) { - $672 = ($635>>>0)>=($$lcssa222>>>0); - $673 = ($635>>>0)<($tbase$255$i>>>0); - $or$cond57$i = $673 & $672; - if ($or$cond57$i) { - $674 = (($$lcssa226) + ($tsize$254$i))|0; - HEAP32[$$lcssa224>>2] = $674; - $675 = HEAP32[(32688)>>2]|0; - $676 = (($675) + ($tsize$254$i))|0; - $677 = ((($635)) + 8|0); - $678 = $677; - $679 = $678 & 7; - $680 = ($679|0)==(0); - $681 = (0 - ($678))|0; - $682 = $681 & 7; - $683 = $680 ? 0 : $682; - $684 = (($635) + ($683)|0); - $685 = (($676) - ($683))|0; - HEAP32[(32700)>>2] = $684; - HEAP32[(32688)>>2] = $685; - $686 = $685 | 1; - $$sum$i17$i = (($683) + 4)|0; - $687 = (($635) + ($$sum$i17$i)|0); - HEAP32[$687>>2] = $686; - $$sum2$i18$i = (($676) + 4)|0; - $688 = (($635) + ($$sum2$i18$i)|0); - HEAP32[$688>>2] = 40; - $689 = HEAP32[(33164)>>2]|0; - HEAP32[(32704)>>2] = $689; + if ((label|0) == 190) { + $664 = ((($$024371$i)) + 12|0); + $665 = HEAP32[$664>>2]|0; + $666 = $665 & 8; + $667 = ($666|0)==(0); + if ($667) { + $668 = ($630>>>0)>=($656>>>0); + $669 = ($630>>>0)<($$749$i>>>0); + $or$cond51$i = $669 & $668; + if ($or$cond51$i) { + $670 = (($658) + ($$723948$i))|0; + HEAP32[$657>>2] = $670; + $671 = HEAP32[(32976)>>2]|0; + $672 = ((($630)) + 8|0); + $673 = $672; + $674 = $673 & 7; + $675 = ($674|0)==(0); + $676 = (0 - ($673))|0; + $677 = $676 & 7; + $678 = $675 ? 0 : $677; + $679 = (($630) + ($678)|0); + $680 = (($$723948$i) - ($678))|0; + $681 = (($671) + ($680))|0; + HEAP32[(32988)>>2] = $679; + HEAP32[(32976)>>2] = $681; + $682 = $681 | 1; + $683 = ((($679)) + 4|0); + HEAP32[$683>>2] = $682; + $684 = (($679) + ($681)|0); + $685 = ((($684)) + 4|0); + HEAP32[$685>>2] = 40; + $686 = HEAP32[(33452)>>2]|0; + HEAP32[(32992)>>2] = $686; break; } } } - $690 = HEAP32[(32692)>>2]|0; - $691 = ($tbase$255$i>>>0)<($690>>>0); - if ($691) { - HEAP32[(32692)>>2] = $tbase$255$i; - $755 = $tbase$255$i; + $687 = HEAP32[(32980)>>2]|0; + $688 = ($$749$i>>>0)<($687>>>0); + if ($688) { + HEAP32[(32980)>>2] = $$749$i; + $752 = $$749$i; } else { - $755 = $690; + $752 = $687; } - $692 = (($tbase$255$i) + ($tsize$254$i)|0); - $sp$183$i = (33124); + $689 = (($$749$i) + ($$723948$i)|0); + $$124470$i = (33412); while(1) { - $693 = HEAP32[$sp$183$i>>2]|0; - $694 = ($693|0)==($692|0); - if ($694) { - $$lcssa219 = $sp$183$i;$sp$183$i$lcssa = $sp$183$i; - label = 212; + $690 = HEAP32[$$124470$i>>2]|0; + $691 = ($690|0)==($689|0); + if ($691) { + label = 198; break; } - $695 = ((($sp$183$i)) + 8|0); - $696 = HEAP32[$695>>2]|0; - $697 = ($696|0)==(0|0); - if ($697) { - $sp$0$i$i$i = (33124); + $692 = ((($$124470$i)) + 8|0); + $693 = HEAP32[$692>>2]|0; + $694 = ($693|0)==(0|0); + if ($694) { break; } else { - $sp$183$i = $696; + $$124470$i = $693; } } - if ((label|0) == 212) { - $698 = ((($sp$183$i$lcssa)) + 12|0); - $699 = HEAP32[$698>>2]|0; - $700 = $699 & 8; - $701 = ($700|0)==(0); - if ($701) { - HEAP32[$$lcssa219>>2] = $tbase$255$i; - $702 = ((($sp$183$i$lcssa)) + 4|0); - $703 = HEAP32[$702>>2]|0; - $704 = (($703) + ($tsize$254$i))|0; - HEAP32[$702>>2] = $704; - $705 = ((($tbase$255$i)) + 8|0); - $706 = $705; + if ((label|0) == 198) { + $695 = ((($$124470$i)) + 12|0); + $696 = HEAP32[$695>>2]|0; + $697 = $696 & 8; + $698 = ($697|0)==(0); + if ($698) { + HEAP32[$$124470$i>>2] = $$749$i; + $699 = ((($$124470$i)) + 4|0); + $700 = HEAP32[$699>>2]|0; + $701 = (($700) + ($$723948$i))|0; + HEAP32[$699>>2] = $701; + $702 = ((($$749$i)) + 8|0); + $703 = $702; + $704 = $703 & 7; + $705 = ($704|0)==(0); + $706 = (0 - ($703))|0; $707 = $706 & 7; - $708 = ($707|0)==(0); - $709 = (0 - ($706))|0; - $710 = $709 & 7; - $711 = $708 ? 0 : $710; - $712 = (($tbase$255$i) + ($711)|0); - $$sum112$i = (($tsize$254$i) + 8)|0; - $713 = (($tbase$255$i) + ($$sum112$i)|0); - $714 = $713; + $708 = $705 ? 0 : $707; + $709 = (($$749$i) + ($708)|0); + $710 = ((($689)) + 8|0); + $711 = $710; + $712 = $711 & 7; + $713 = ($712|0)==(0); + $714 = (0 - ($711))|0; $715 = $714 & 7; - $716 = ($715|0)==(0); - $717 = (0 - ($714))|0; - $718 = $717 & 7; - $719 = $716 ? 0 : $718; - $$sum113$i = (($719) + ($tsize$254$i))|0; - $720 = (($tbase$255$i) + ($$sum113$i)|0); - $721 = $720; - $722 = $712; - $723 = (($721) - ($722))|0; - $$sum$i19$i = (($711) + ($nb$0))|0; - $724 = (($tbase$255$i) + ($$sum$i19$i)|0); - $725 = (($723) - ($nb$0))|0; - $726 = $nb$0 | 3; - $$sum1$i20$i = (($711) + 4)|0; - $727 = (($tbase$255$i) + ($$sum1$i20$i)|0); - HEAP32[$727>>2] = $726; - $728 = ($720|0)==($635|0); - L324: do { - if ($728) { - $729 = HEAP32[(32688)>>2]|0; - $730 = (($729) + ($725))|0; - HEAP32[(32688)>>2] = $730; - HEAP32[(32700)>>2] = $724; - $731 = $730 | 1; - $$sum42$i$i = (($$sum$i19$i) + 4)|0; - $732 = (($tbase$255$i) + ($$sum42$i$i)|0); - HEAP32[$732>>2] = $731; + $716 = $713 ? 0 : $715; + $717 = (($689) + ($716)|0); + $718 = $717; + $719 = $709; + $720 = (($718) - ($719))|0; + $721 = (($709) + ($$0197)|0); + $722 = (($720) - ($$0197))|0; + $723 = $$0197 | 3; + $724 = ((($709)) + 4|0); + HEAP32[$724>>2] = $723; + $725 = ($717|0)==($630|0); + do { + if ($725) { + $726 = HEAP32[(32976)>>2]|0; + $727 = (($726) + ($722))|0; + HEAP32[(32976)>>2] = $727; + HEAP32[(32988)>>2] = $721; + $728 = $727 | 1; + $729 = ((($721)) + 4|0); + HEAP32[$729>>2] = $728; } else { - $733 = HEAP32[(32696)>>2]|0; - $734 = ($720|0)==($733|0); - if ($734) { - $735 = HEAP32[(32684)>>2]|0; - $736 = (($735) + ($725))|0; - HEAP32[(32684)>>2] = $736; - HEAP32[(32696)>>2] = $724; - $737 = $736 | 1; - $$sum40$i$i = (($$sum$i19$i) + 4)|0; - $738 = (($tbase$255$i) + ($$sum40$i$i)|0); - HEAP32[$738>>2] = $737; - $$sum41$i$i = (($736) + ($$sum$i19$i))|0; - $739 = (($tbase$255$i) + ($$sum41$i$i)|0); - HEAP32[$739>>2] = $736; + $730 = HEAP32[(32984)>>2]|0; + $731 = ($717|0)==($730|0); + if ($731) { + $732 = HEAP32[(32972)>>2]|0; + $733 = (($732) + ($722))|0; + HEAP32[(32972)>>2] = $733; + HEAP32[(32984)>>2] = $721; + $734 = $733 | 1; + $735 = ((($721)) + 4|0); + HEAP32[$735>>2] = $734; + $736 = (($721) + ($733)|0); + HEAP32[$736>>2] = $733; break; } - $$sum2$i21$i = (($tsize$254$i) + 4)|0; - $$sum114$i = (($$sum2$i21$i) + ($719))|0; - $740 = (($tbase$255$i) + ($$sum114$i)|0); - $741 = HEAP32[$740>>2]|0; - $742 = $741 & 3; - $743 = ($742|0)==(1); - if ($743) { - $744 = $741 & -8; - $745 = $741 >>> 3; - $746 = ($741>>>0)<(256); - L332: do { - if ($746) { - $$sum3738$i$i = $719 | 8; - $$sum124$i = (($$sum3738$i$i) + ($tsize$254$i))|0; - $747 = (($tbase$255$i) + ($$sum124$i)|0); - $748 = HEAP32[$747>>2]|0; - $$sum39$i$i = (($tsize$254$i) + 12)|0; - $$sum125$i = (($$sum39$i$i) + ($719))|0; - $749 = (($tbase$255$i) + ($$sum125$i)|0); - $750 = HEAP32[$749>>2]|0; - $751 = $745 << 1; - $752 = (32716 + ($751<<2)|0); - $753 = ($748|0)==($752|0); + $737 = ((($717)) + 4|0); + $738 = HEAP32[$737>>2]|0; + $739 = $738 & 3; + $740 = ($739|0)==(1); + if ($740) { + $741 = $738 & -8; + $742 = $738 >>> 3; + $743 = ($738>>>0)<(256); + L314: do { + if ($743) { + $744 = ((($717)) + 8|0); + $745 = HEAP32[$744>>2]|0; + $746 = ((($717)) + 12|0); + $747 = HEAP32[$746>>2]|0; + $748 = $742 << 1; + $749 = (33004 + ($748<<2)|0); + $750 = ($745|0)==($749|0); do { - if (!($753)) { - $754 = ($748>>>0)<($755>>>0); - if ($754) { + if (!($750)) { + $751 = ($745>>>0)<($752>>>0); + if ($751) { _abort(); // unreachable; } - $756 = ((($748)) + 12|0); - $757 = HEAP32[$756>>2]|0; - $758 = ($757|0)==($720|0); - if ($758) { + $753 = ((($745)) + 12|0); + $754 = HEAP32[$753>>2]|0; + $755 = ($754|0)==($717|0); + if ($755) { break; } _abort(); // unreachable; } } while(0); - $759 = ($750|0)==($748|0); - if ($759) { - $760 = 1 << $745; - $761 = $760 ^ -1; - $762 = HEAP32[32676>>2]|0; - $763 = $762 & $761; - HEAP32[32676>>2] = $763; + $756 = ($747|0)==($745|0); + if ($756) { + $757 = 1 << $742; + $758 = $757 ^ -1; + $759 = HEAP32[8241]|0; + $760 = $759 & $758; + HEAP32[8241] = $760; break; } - $764 = ($750|0)==($752|0); + $761 = ($747|0)==($749|0); do { - if ($764) { - $$pre57$i$i = ((($750)) + 8|0); - $$pre$phi58$i$iZ2D = $$pre57$i$i; + if ($761) { + $$pre10$i$i = ((($747)) + 8|0); + $$pre$phi11$i$iZ2D = $$pre10$i$i; } else { - $765 = ($750>>>0)<($755>>>0); - if ($765) { + $762 = ($747>>>0)<($752>>>0); + if ($762) { _abort(); // unreachable; } - $766 = ((($750)) + 8|0); - $767 = HEAP32[$766>>2]|0; - $768 = ($767|0)==($720|0); - if ($768) { - $$pre$phi58$i$iZ2D = $766; + $763 = ((($747)) + 8|0); + $764 = HEAP32[$763>>2]|0; + $765 = ($764|0)==($717|0); + if ($765) { + $$pre$phi11$i$iZ2D = $763; break; } _abort(); // unreachable; } } while(0); - $769 = ((($748)) + 12|0); - HEAP32[$769>>2] = $750; - HEAP32[$$pre$phi58$i$iZ2D>>2] = $748; + $766 = ((($745)) + 12|0); + HEAP32[$766>>2] = $747; + HEAP32[$$pre$phi11$i$iZ2D>>2] = $745; } else { - $$sum34$i$i = $719 | 24; - $$sum115$i = (($$sum34$i$i) + ($tsize$254$i))|0; - $770 = (($tbase$255$i) + ($$sum115$i)|0); - $771 = HEAP32[$770>>2]|0; - $$sum5$i$i = (($tsize$254$i) + 12)|0; - $$sum116$i = (($$sum5$i$i) + ($719))|0; - $772 = (($tbase$255$i) + ($$sum116$i)|0); - $773 = HEAP32[$772>>2]|0; - $774 = ($773|0)==($720|0); + $767 = ((($717)) + 24|0); + $768 = HEAP32[$767>>2]|0; + $769 = ((($717)) + 12|0); + $770 = HEAP32[$769>>2]|0; + $771 = ($770|0)==($717|0); do { - if ($774) { - $$sum67$i$i = $719 | 16; - $$sum122$i = (($$sum2$i21$i) + ($$sum67$i$i))|0; - $784 = (($tbase$255$i) + ($$sum122$i)|0); - $785 = HEAP32[$784>>2]|0; - $786 = ($785|0)==(0|0); - if ($786) { - $$sum123$i = (($$sum67$i$i) + ($tsize$254$i))|0; - $787 = (($tbase$255$i) + ($$sum123$i)|0); - $788 = HEAP32[$787>>2]|0; - $789 = ($788|0)==(0|0); - if ($789) { - $R$1$i$i = 0; + if ($771) { + $781 = ((($717)) + 16|0); + $782 = ((($781)) + 4|0); + $783 = HEAP32[$782>>2]|0; + $784 = ($783|0)==(0|0); + if ($784) { + $785 = HEAP32[$781>>2]|0; + $786 = ($785|0)==(0|0); + if ($786) { + $$3$i$i = 0; break; } else { - $R$0$i$i = $788;$RP$0$i$i = $787; + $$1291$i$i = $785;$$1293$i$i = $781; } } else { - $R$0$i$i = $785;$RP$0$i$i = $784; + $$1291$i$i = $783;$$1293$i$i = $782; } while(1) { - $790 = ((($R$0$i$i)) + 20|0); - $791 = HEAP32[$790>>2]|0; - $792 = ($791|0)==(0|0); - if (!($792)) { - $R$0$i$i = $791;$RP$0$i$i = $790; + $787 = ((($$1291$i$i)) + 20|0); + $788 = HEAP32[$787>>2]|0; + $789 = ($788|0)==(0|0); + if (!($789)) { + $$1291$i$i = $788;$$1293$i$i = $787; continue; } - $793 = ((($R$0$i$i)) + 16|0); - $794 = HEAP32[$793>>2]|0; - $795 = ($794|0)==(0|0); - if ($795) { - $R$0$i$i$lcssa = $R$0$i$i;$RP$0$i$i$lcssa = $RP$0$i$i; + $790 = ((($$1291$i$i)) + 16|0); + $791 = HEAP32[$790>>2]|0; + $792 = ($791|0)==(0|0); + if ($792) { break; } else { - $R$0$i$i = $794;$RP$0$i$i = $793; + $$1291$i$i = $791;$$1293$i$i = $790; } } - $796 = ($RP$0$i$i$lcssa>>>0)<($755>>>0); - if ($796) { + $793 = ($$1293$i$i>>>0)<($752>>>0); + if ($793) { _abort(); // unreachable; } else { - HEAP32[$RP$0$i$i$lcssa>>2] = 0; - $R$1$i$i = $R$0$i$i$lcssa; + HEAP32[$$1293$i$i>>2] = 0; + $$3$i$i = $$1291$i$i; break; } } else { - $$sum3536$i$i = $719 | 8; - $$sum117$i = (($$sum3536$i$i) + ($tsize$254$i))|0; - $775 = (($tbase$255$i) + ($$sum117$i)|0); - $776 = HEAP32[$775>>2]|0; - $777 = ($776>>>0)<($755>>>0); - if ($777) { + $772 = ((($717)) + 8|0); + $773 = HEAP32[$772>>2]|0; + $774 = ($773>>>0)<($752>>>0); + if ($774) { _abort(); // unreachable; } - $778 = ((($776)) + 12|0); - $779 = HEAP32[$778>>2]|0; - $780 = ($779|0)==($720|0); - if (!($780)) { + $775 = ((($773)) + 12|0); + $776 = HEAP32[$775>>2]|0; + $777 = ($776|0)==($717|0); + if (!($777)) { _abort(); // unreachable; } - $781 = ((($773)) + 8|0); - $782 = HEAP32[$781>>2]|0; - $783 = ($782|0)==($720|0); - if ($783) { + $778 = ((($770)) + 8|0); + $779 = HEAP32[$778>>2]|0; + $780 = ($779|0)==($717|0); + if ($780) { + HEAP32[$775>>2] = $770; HEAP32[$778>>2] = $773; - HEAP32[$781>>2] = $776; - $R$1$i$i = $773; + $$3$i$i = $770; break; } else { _abort(); @@ -22494,823 +18830,761 @@ function _malloc($bytes) { } } } while(0); - $797 = ($771|0)==(0|0); - if ($797) { + $794 = ($768|0)==(0|0); + if ($794) { break; } - $$sum30$i$i = (($tsize$254$i) + 28)|0; - $$sum118$i = (($$sum30$i$i) + ($719))|0; - $798 = (($tbase$255$i) + ($$sum118$i)|0); - $799 = HEAP32[$798>>2]|0; - $800 = (32980 + ($799<<2)|0); - $801 = HEAP32[$800>>2]|0; - $802 = ($720|0)==($801|0); + $795 = ((($717)) + 28|0); + $796 = HEAP32[$795>>2]|0; + $797 = (33268 + ($796<<2)|0); + $798 = HEAP32[$797>>2]|0; + $799 = ($717|0)==($798|0); do { - if ($802) { - HEAP32[$800>>2] = $R$1$i$i; - $cond$i$i = ($R$1$i$i|0)==(0|0); + if ($799) { + HEAP32[$797>>2] = $$3$i$i; + $cond$i$i = ($$3$i$i|0)==(0|0); if (!($cond$i$i)) { break; } - $803 = 1 << $799; - $804 = $803 ^ -1; - $805 = HEAP32[(32680)>>2]|0; - $806 = $805 & $804; - HEAP32[(32680)>>2] = $806; - break L332; + $800 = 1 << $796; + $801 = $800 ^ -1; + $802 = HEAP32[(32968)>>2]|0; + $803 = $802 & $801; + HEAP32[(32968)>>2] = $803; + break L314; } else { - $807 = HEAP32[(32692)>>2]|0; - $808 = ($771>>>0)<($807>>>0); - if ($808) { + $804 = HEAP32[(32980)>>2]|0; + $805 = ($768>>>0)<($804>>>0); + if ($805) { _abort(); // unreachable; - } - $809 = ((($771)) + 16|0); - $810 = HEAP32[$809>>2]|0; - $811 = ($810|0)==($720|0); - if ($811) { - HEAP32[$809>>2] = $R$1$i$i; } else { - $812 = ((($771)) + 20|0); - HEAP32[$812>>2] = $R$1$i$i; - } - $813 = ($R$1$i$i|0)==(0|0); - if ($813) { - break L332; + $806 = ((($768)) + 16|0); + $807 = HEAP32[$806>>2]|0; + $not$$i17$i = ($807|0)!=($717|0); + $$sink1$i$i = $not$$i17$i&1; + $808 = (((($768)) + 16|0) + ($$sink1$i$i<<2)|0); + HEAP32[$808>>2] = $$3$i$i; + $809 = ($$3$i$i|0)==(0|0); + if ($809) { + break L314; + } else { + break; + } } } } while(0); - $814 = HEAP32[(32692)>>2]|0; - $815 = ($R$1$i$i>>>0)<($814>>>0); - if ($815) { + $810 = HEAP32[(32980)>>2]|0; + $811 = ($$3$i$i>>>0)<($810>>>0); + if ($811) { _abort(); // unreachable; } - $816 = ((($R$1$i$i)) + 24|0); - HEAP32[$816>>2] = $771; - $$sum3132$i$i = $719 | 16; - $$sum119$i = (($$sum3132$i$i) + ($tsize$254$i))|0; - $817 = (($tbase$255$i) + ($$sum119$i)|0); - $818 = HEAP32[$817>>2]|0; - $819 = ($818|0)==(0|0); + $812 = ((($$3$i$i)) + 24|0); + HEAP32[$812>>2] = $768; + $813 = ((($717)) + 16|0); + $814 = HEAP32[$813>>2]|0; + $815 = ($814|0)==(0|0); do { - if (!($819)) { - $820 = ($818>>>0)<($814>>>0); - if ($820) { + if (!($815)) { + $816 = ($814>>>0)<($810>>>0); + if ($816) { _abort(); // unreachable; } else { - $821 = ((($R$1$i$i)) + 16|0); - HEAP32[$821>>2] = $818; - $822 = ((($818)) + 24|0); - HEAP32[$822>>2] = $R$1$i$i; + $817 = ((($$3$i$i)) + 16|0); + HEAP32[$817>>2] = $814; + $818 = ((($814)) + 24|0); + HEAP32[$818>>2] = $$3$i$i; break; } } } while(0); - $$sum120$i = (($$sum2$i21$i) + ($$sum3132$i$i))|0; - $823 = (($tbase$255$i) + ($$sum120$i)|0); - $824 = HEAP32[$823>>2]|0; - $825 = ($824|0)==(0|0); - if ($825) { + $819 = ((($813)) + 4|0); + $820 = HEAP32[$819>>2]|0; + $821 = ($820|0)==(0|0); + if ($821) { break; } - $826 = HEAP32[(32692)>>2]|0; - $827 = ($824>>>0)<($826>>>0); - if ($827) { + $822 = HEAP32[(32980)>>2]|0; + $823 = ($820>>>0)<($822>>>0); + if ($823) { _abort(); // unreachable; } else { - $828 = ((($R$1$i$i)) + 20|0); - HEAP32[$828>>2] = $824; - $829 = ((($824)) + 24|0); - HEAP32[$829>>2] = $R$1$i$i; + $824 = ((($$3$i$i)) + 20|0); + HEAP32[$824>>2] = $820; + $825 = ((($820)) + 24|0); + HEAP32[$825>>2] = $$3$i$i; break; } } } while(0); - $$sum9$i$i = $744 | $719; - $$sum121$i = (($$sum9$i$i) + ($tsize$254$i))|0; - $830 = (($tbase$255$i) + ($$sum121$i)|0); - $831 = (($744) + ($725))|0; - $oldfirst$0$i$i = $830;$qsize$0$i$i = $831; + $826 = (($717) + ($741)|0); + $827 = (($741) + ($722))|0; + $$0$i18$i = $826;$$0287$i$i = $827; } else { - $oldfirst$0$i$i = $720;$qsize$0$i$i = $725; + $$0$i18$i = $717;$$0287$i$i = $722; } - $832 = ((($oldfirst$0$i$i)) + 4|0); - $833 = HEAP32[$832>>2]|0; - $834 = $833 & -2; - HEAP32[$832>>2] = $834; - $835 = $qsize$0$i$i | 1; - $$sum10$i$i = (($$sum$i19$i) + 4)|0; - $836 = (($tbase$255$i) + ($$sum10$i$i)|0); - HEAP32[$836>>2] = $835; - $$sum11$i$i = (($qsize$0$i$i) + ($$sum$i19$i))|0; - $837 = (($tbase$255$i) + ($$sum11$i$i)|0); - HEAP32[$837>>2] = $qsize$0$i$i; - $838 = $qsize$0$i$i >>> 3; - $839 = ($qsize$0$i$i>>>0)<(256); - if ($839) { - $840 = $838 << 1; - $841 = (32716 + ($840<<2)|0); - $842 = HEAP32[32676>>2]|0; - $843 = 1 << $838; - $844 = $842 & $843; - $845 = ($844|0)==(0); + $828 = ((($$0$i18$i)) + 4|0); + $829 = HEAP32[$828>>2]|0; + $830 = $829 & -2; + HEAP32[$828>>2] = $830; + $831 = $$0287$i$i | 1; + $832 = ((($721)) + 4|0); + HEAP32[$832>>2] = $831; + $833 = (($721) + ($$0287$i$i)|0); + HEAP32[$833>>2] = $$0287$i$i; + $834 = $$0287$i$i >>> 3; + $835 = ($$0287$i$i>>>0)<(256); + if ($835) { + $836 = $834 << 1; + $837 = (33004 + ($836<<2)|0); + $838 = HEAP32[8241]|0; + $839 = 1 << $834; + $840 = $838 & $839; + $841 = ($840|0)==(0); do { - if ($845) { - $846 = $842 | $843; - HEAP32[32676>>2] = $846; - $$pre$i22$i = (($840) + 2)|0; - $$pre56$i$i = (32716 + ($$pre$i22$i<<2)|0); - $$pre$phi$i23$iZ2D = $$pre56$i$i;$F4$0$i$i = $841; + if ($841) { + $842 = $838 | $839; + HEAP32[8241] = $842; + $$pre$i19$i = ((($837)) + 8|0); + $$0295$i$i = $837;$$pre$phi$i20$iZ2D = $$pre$i19$i; } else { - $$sum29$i$i = (($840) + 2)|0; - $847 = (32716 + ($$sum29$i$i<<2)|0); - $848 = HEAP32[$847>>2]|0; - $849 = HEAP32[(32692)>>2]|0; - $850 = ($848>>>0)<($849>>>0); - if (!($850)) { - $$pre$phi$i23$iZ2D = $847;$F4$0$i$i = $848; + $843 = ((($837)) + 8|0); + $844 = HEAP32[$843>>2]|0; + $845 = HEAP32[(32980)>>2]|0; + $846 = ($844>>>0)<($845>>>0); + if (!($846)) { + $$0295$i$i = $844;$$pre$phi$i20$iZ2D = $843; break; } _abort(); // unreachable; } } while(0); - HEAP32[$$pre$phi$i23$iZ2D>>2] = $724; - $851 = ((($F4$0$i$i)) + 12|0); - HEAP32[$851>>2] = $724; - $$sum27$i$i = (($$sum$i19$i) + 8)|0; - $852 = (($tbase$255$i) + ($$sum27$i$i)|0); - HEAP32[$852>>2] = $F4$0$i$i; - $$sum28$i$i = (($$sum$i19$i) + 12)|0; - $853 = (($tbase$255$i) + ($$sum28$i$i)|0); - HEAP32[$853>>2] = $841; + HEAP32[$$pre$phi$i20$iZ2D>>2] = $721; + $847 = ((($$0295$i$i)) + 12|0); + HEAP32[$847>>2] = $721; + $848 = ((($721)) + 8|0); + HEAP32[$848>>2] = $$0295$i$i; + $849 = ((($721)) + 12|0); + HEAP32[$849>>2] = $837; break; } - $854 = $qsize$0$i$i >>> 8; - $855 = ($854|0)==(0); + $850 = $$0287$i$i >>> 8; + $851 = ($850|0)==(0); do { - if ($855) { - $I7$0$i$i = 0; + if ($851) { + $$0296$i$i = 0; } else { - $856 = ($qsize$0$i$i>>>0)>(16777215); - if ($856) { - $I7$0$i$i = 31; + $852 = ($$0287$i$i>>>0)>(16777215); + if ($852) { + $$0296$i$i = 31; break; } - $857 = (($854) + 1048320)|0; + $853 = (($850) + 1048320)|0; + $854 = $853 >>> 16; + $855 = $854 & 8; + $856 = $850 << $855; + $857 = (($856) + 520192)|0; $858 = $857 >>> 16; - $859 = $858 & 8; - $860 = $854 << $859; - $861 = (($860) + 520192)|0; - $862 = $861 >>> 16; - $863 = $862 & 4; - $864 = $863 | $859; - $865 = $860 << $863; - $866 = (($865) + 245760)|0; - $867 = $866 >>> 16; - $868 = $867 & 2; - $869 = $864 | $868; - $870 = (14 - ($869))|0; - $871 = $865 << $868; - $872 = $871 >>> 15; - $873 = (($870) + ($872))|0; - $874 = $873 << 1; - $875 = (($873) + 7)|0; - $876 = $qsize$0$i$i >>> $875; - $877 = $876 & 1; - $878 = $877 | $874; - $I7$0$i$i = $878; + $859 = $858 & 4; + $860 = $859 | $855; + $861 = $856 << $859; + $862 = (($861) + 245760)|0; + $863 = $862 >>> 16; + $864 = $863 & 2; + $865 = $860 | $864; + $866 = (14 - ($865))|0; + $867 = $861 << $864; + $868 = $867 >>> 15; + $869 = (($866) + ($868))|0; + $870 = $869 << 1; + $871 = (($869) + 7)|0; + $872 = $$0287$i$i >>> $871; + $873 = $872 & 1; + $874 = $873 | $870; + $$0296$i$i = $874; } } while(0); - $879 = (32980 + ($I7$0$i$i<<2)|0); - $$sum12$i$i = (($$sum$i19$i) + 28)|0; - $880 = (($tbase$255$i) + ($$sum12$i$i)|0); - HEAP32[$880>>2] = $I7$0$i$i; - $$sum13$i$i = (($$sum$i19$i) + 16)|0; - $881 = (($tbase$255$i) + ($$sum13$i$i)|0); - $$sum14$i$i = (($$sum$i19$i) + 20)|0; - $882 = (($tbase$255$i) + ($$sum14$i$i)|0); - HEAP32[$882>>2] = 0; - HEAP32[$881>>2] = 0; - $883 = HEAP32[(32680)>>2]|0; - $884 = 1 << $I7$0$i$i; - $885 = $883 & $884; - $886 = ($885|0)==(0); - if ($886) { - $887 = $883 | $884; - HEAP32[(32680)>>2] = $887; - HEAP32[$879>>2] = $724; - $$sum15$i$i = (($$sum$i19$i) + 24)|0; - $888 = (($tbase$255$i) + ($$sum15$i$i)|0); - HEAP32[$888>>2] = $879; - $$sum16$i$i = (($$sum$i19$i) + 12)|0; - $889 = (($tbase$255$i) + ($$sum16$i$i)|0); - HEAP32[$889>>2] = $724; - $$sum17$i$i = (($$sum$i19$i) + 8)|0; - $890 = (($tbase$255$i) + ($$sum17$i$i)|0); - HEAP32[$890>>2] = $724; + $875 = (33268 + ($$0296$i$i<<2)|0); + $876 = ((($721)) + 28|0); + HEAP32[$876>>2] = $$0296$i$i; + $877 = ((($721)) + 16|0); + $878 = ((($877)) + 4|0); + HEAP32[$878>>2] = 0; + HEAP32[$877>>2] = 0; + $879 = HEAP32[(32968)>>2]|0; + $880 = 1 << $$0296$i$i; + $881 = $879 & $880; + $882 = ($881|0)==(0); + if ($882) { + $883 = $879 | $880; + HEAP32[(32968)>>2] = $883; + HEAP32[$875>>2] = $721; + $884 = ((($721)) + 24|0); + HEAP32[$884>>2] = $875; + $885 = ((($721)) + 12|0); + HEAP32[$885>>2] = $721; + $886 = ((($721)) + 8|0); + HEAP32[$886>>2] = $721; break; } - $891 = HEAP32[$879>>2]|0; - $892 = ((($891)) + 4|0); - $893 = HEAP32[$892>>2]|0; - $894 = $893 & -8; - $895 = ($894|0)==($qsize$0$i$i|0); - L418: do { - if ($895) { - $T$0$lcssa$i25$i = $891; + $887 = HEAP32[$875>>2]|0; + $888 = ($$0296$i$i|0)==(31); + $889 = $$0296$i$i >>> 1; + $890 = (25 - ($889))|0; + $891 = $888 ? 0 : $890; + $892 = $$0287$i$i << $891; + $$0288$i$i = $892;$$0289$i$i = $887; + while(1) { + $893 = ((($$0289$i$i)) + 4|0); + $894 = HEAP32[$893>>2]|0; + $895 = $894 & -8; + $896 = ($895|0)==($$0287$i$i|0); + if ($896) { + label = 265; + break; + } + $897 = $$0288$i$i >>> 31; + $898 = (((($$0289$i$i)) + 16|0) + ($897<<2)|0); + $899 = $$0288$i$i << 1; + $900 = HEAP32[$898>>2]|0; + $901 = ($900|0)==(0|0); + if ($901) { + label = 262; + break; + } else { + $$0288$i$i = $899;$$0289$i$i = $900; + } + } + if ((label|0) == 262) { + $902 = HEAP32[(32980)>>2]|0; + $903 = ($898>>>0)<($902>>>0); + if ($903) { + _abort(); + // unreachable; } else { - $896 = ($I7$0$i$i|0)==(31); - $897 = $I7$0$i$i >>> 1; - $898 = (25 - ($897))|0; - $899 = $896 ? 0 : $898; - $900 = $qsize$0$i$i << $899; - $K8$051$i$i = $900;$T$050$i$i = $891; - while(1) { - $907 = $K8$051$i$i >>> 31; - $908 = (((($T$050$i$i)) + 16|0) + ($907<<2)|0); - $903 = HEAP32[$908>>2]|0; - $909 = ($903|0)==(0|0); - if ($909) { - $$lcssa = $908;$T$050$i$i$lcssa = $T$050$i$i; - break; - } - $901 = $K8$051$i$i << 1; - $902 = ((($903)) + 4|0); - $904 = HEAP32[$902>>2]|0; - $905 = $904 & -8; - $906 = ($905|0)==($qsize$0$i$i|0); - if ($906) { - $T$0$lcssa$i25$i = $903; - break L418; - } else { - $K8$051$i$i = $901;$T$050$i$i = $903; - } - } - $910 = HEAP32[(32692)>>2]|0; - $911 = ($$lcssa>>>0)<($910>>>0); - if ($911) { - _abort(); - // unreachable; - } else { - HEAP32[$$lcssa>>2] = $724; - $$sum23$i$i = (($$sum$i19$i) + 24)|0; - $912 = (($tbase$255$i) + ($$sum23$i$i)|0); - HEAP32[$912>>2] = $T$050$i$i$lcssa; - $$sum24$i$i = (($$sum$i19$i) + 12)|0; - $913 = (($tbase$255$i) + ($$sum24$i$i)|0); - HEAP32[$913>>2] = $724; - $$sum25$i$i = (($$sum$i19$i) + 8)|0; - $914 = (($tbase$255$i) + ($$sum25$i$i)|0); - HEAP32[$914>>2] = $724; - break L324; - } + HEAP32[$898>>2] = $721; + $904 = ((($721)) + 24|0); + HEAP32[$904>>2] = $$0289$i$i; + $905 = ((($721)) + 12|0); + HEAP32[$905>>2] = $721; + $906 = ((($721)) + 8|0); + HEAP32[$906>>2] = $721; + break; + } + } + else if ((label|0) == 265) { + $907 = ((($$0289$i$i)) + 8|0); + $908 = HEAP32[$907>>2]|0; + $909 = HEAP32[(32980)>>2]|0; + $910 = ($908>>>0)>=($909>>>0); + $not$7$i$i = ($$0289$i$i>>>0)>=($909>>>0); + $911 = $910 & $not$7$i$i; + if ($911) { + $912 = ((($908)) + 12|0); + HEAP32[$912>>2] = $721; + HEAP32[$907>>2] = $721; + $913 = ((($721)) + 8|0); + HEAP32[$913>>2] = $908; + $914 = ((($721)) + 12|0); + HEAP32[$914>>2] = $$0289$i$i; + $915 = ((($721)) + 24|0); + HEAP32[$915>>2] = 0; + break; + } else { + _abort(); + // unreachable; } - } while(0); - $915 = ((($T$0$lcssa$i25$i)) + 8|0); - $916 = HEAP32[$915>>2]|0; - $917 = HEAP32[(32692)>>2]|0; - $918 = ($916>>>0)>=($917>>>0); - $not$$i26$i = ($T$0$lcssa$i25$i>>>0)>=($917>>>0); - $919 = $918 & $not$$i26$i; - if ($919) { - $920 = ((($916)) + 12|0); - HEAP32[$920>>2] = $724; - HEAP32[$915>>2] = $724; - $$sum20$i$i = (($$sum$i19$i) + 8)|0; - $921 = (($tbase$255$i) + ($$sum20$i$i)|0); - HEAP32[$921>>2] = $916; - $$sum21$i$i = (($$sum$i19$i) + 12)|0; - $922 = (($tbase$255$i) + ($$sum21$i$i)|0); - HEAP32[$922>>2] = $T$0$lcssa$i25$i; - $$sum22$i$i = (($$sum$i19$i) + 24)|0; - $923 = (($tbase$255$i) + ($$sum22$i$i)|0); - HEAP32[$923>>2] = 0; - break; - } else { - _abort(); - // unreachable; } } } while(0); - $$sum1819$i$i = $711 | 8; - $924 = (($tbase$255$i) + ($$sum1819$i$i)|0); - $mem$0 = $924; - return ($mem$0|0); - } else { - $sp$0$i$i$i = (33124); + $1047 = ((($709)) + 8|0); + $$0 = $1047; + STACKTOP = sp;return ($$0|0); } } + $$0$i$i$i = (33412); while(1) { - $925 = HEAP32[$sp$0$i$i$i>>2]|0; - $926 = ($925>>>0)>($635>>>0); - if (!($926)) { - $927 = ((($sp$0$i$i$i)) + 4|0); - $928 = HEAP32[$927>>2]|0; - $929 = (($925) + ($928)|0); - $930 = ($929>>>0)>($635>>>0); - if ($930) { - $$lcssa215 = $925;$$lcssa216 = $928;$$lcssa217 = $929; + $916 = HEAP32[$$0$i$i$i>>2]|0; + $917 = ($916>>>0)>($630>>>0); + if (!($917)) { + $918 = ((($$0$i$i$i)) + 4|0); + $919 = HEAP32[$918>>2]|0; + $920 = (($916) + ($919)|0); + $921 = ($920>>>0)>($630>>>0); + if ($921) { break; } } - $931 = ((($sp$0$i$i$i)) + 8|0); - $932 = HEAP32[$931>>2]|0; - $sp$0$i$i$i = $932; + $922 = ((($$0$i$i$i)) + 8|0); + $923 = HEAP32[$922>>2]|0; + $$0$i$i$i = $923; } - $$sum$i14$i = (($$lcssa216) + -47)|0; - $$sum1$i15$i = (($$lcssa216) + -39)|0; - $933 = (($$lcssa215) + ($$sum1$i15$i)|0); - $934 = $933; - $935 = $934 & 7; - $936 = ($935|0)==(0); - $937 = (0 - ($934))|0; - $938 = $937 & 7; - $939 = $936 ? 0 : $938; - $$sum2$i16$i = (($$sum$i14$i) + ($939))|0; - $940 = (($$lcssa215) + ($$sum2$i16$i)|0); - $941 = ((($635)) + 16|0); - $942 = ($940>>>0)<($941>>>0); - $943 = $942 ? $635 : $940; - $944 = ((($943)) + 8|0); - $945 = (($tsize$254$i) + -40)|0; - $946 = ((($tbase$255$i)) + 8|0); - $947 = $946; - $948 = $947 & 7; - $949 = ($948|0)==(0); - $950 = (0 - ($947))|0; - $951 = $950 & 7; - $952 = $949 ? 0 : $951; - $953 = (($tbase$255$i) + ($952)|0); - $954 = (($945) - ($952))|0; - HEAP32[(32700)>>2] = $953; - HEAP32[(32688)>>2] = $954; - $955 = $954 | 1; - $$sum$i$i$i = (($952) + 4)|0; - $956 = (($tbase$255$i) + ($$sum$i$i$i)|0); - HEAP32[$956>>2] = $955; - $$sum2$i$i$i = (($tsize$254$i) + -36)|0; - $957 = (($tbase$255$i) + ($$sum2$i$i$i)|0); - HEAP32[$957>>2] = 40; - $958 = HEAP32[(33164)>>2]|0; - HEAP32[(32704)>>2] = $958; - $959 = ((($943)) + 4|0); - HEAP32[$959>>2] = 27; - ;HEAP32[$944>>2]=HEAP32[(33124)>>2]|0;HEAP32[$944+4>>2]=HEAP32[(33124)+4>>2]|0;HEAP32[$944+8>>2]=HEAP32[(33124)+8>>2]|0;HEAP32[$944+12>>2]=HEAP32[(33124)+12>>2]|0; - HEAP32[(33124)>>2] = $tbase$255$i; - HEAP32[(33128)>>2] = $tsize$254$i; - HEAP32[(33136)>>2] = 0; - HEAP32[(33132)>>2] = $944; - $960 = ((($943)) + 28|0); - HEAP32[$960>>2] = 7; - $961 = ((($943)) + 32|0); - $962 = ($961>>>0)<($$lcssa217>>>0); - if ($962) { - $964 = $960; - while(1) { - $963 = ((($964)) + 4|0); - HEAP32[$963>>2] = 7; - $965 = ((($964)) + 8|0); - $966 = ($965>>>0)<($$lcssa217>>>0); - if ($966) { - $964 = $963; - } else { - break; - } + $924 = ((($920)) + -47|0); + $925 = ((($924)) + 8|0); + $926 = $925; + $927 = $926 & 7; + $928 = ($927|0)==(0); + $929 = (0 - ($926))|0; + $930 = $929 & 7; + $931 = $928 ? 0 : $930; + $932 = (($924) + ($931)|0); + $933 = ((($630)) + 16|0); + $934 = ($932>>>0)<($933>>>0); + $935 = $934 ? $630 : $932; + $936 = ((($935)) + 8|0); + $937 = ((($935)) + 24|0); + $938 = (($$723948$i) + -40)|0; + $939 = ((($$749$i)) + 8|0); + $940 = $939; + $941 = $940 & 7; + $942 = ($941|0)==(0); + $943 = (0 - ($940))|0; + $944 = $943 & 7; + $945 = $942 ? 0 : $944; + $946 = (($$749$i) + ($945)|0); + $947 = (($938) - ($945))|0; + HEAP32[(32988)>>2] = $946; + HEAP32[(32976)>>2] = $947; + $948 = $947 | 1; + $949 = ((($946)) + 4|0); + HEAP32[$949>>2] = $948; + $950 = (($946) + ($947)|0); + $951 = ((($950)) + 4|0); + HEAP32[$951>>2] = 40; + $952 = HEAP32[(33452)>>2]|0; + HEAP32[(32992)>>2] = $952; + $953 = ((($935)) + 4|0); + HEAP32[$953>>2] = 27; + ;HEAP32[$936>>2]=HEAP32[(33412)>>2]|0;HEAP32[$936+4>>2]=HEAP32[(33412)+4>>2]|0;HEAP32[$936+8>>2]=HEAP32[(33412)+8>>2]|0;HEAP32[$936+12>>2]=HEAP32[(33412)+12>>2]|0; + HEAP32[(33412)>>2] = $$749$i; + HEAP32[(33416)>>2] = $$723948$i; + HEAP32[(33424)>>2] = 0; + HEAP32[(33420)>>2] = $936; + $955 = $937; + while(1) { + $954 = ((($955)) + 4|0); + HEAP32[$954>>2] = 7; + $956 = ((($955)) + 8|0); + $957 = ($956>>>0)<($920>>>0); + if ($957) { + $955 = $954; + } else { + break; } } - $967 = ($943|0)==($635|0); - if (!($967)) { - $968 = $943; - $969 = $635; - $970 = (($968) - ($969))|0; - $971 = HEAP32[$959>>2]|0; - $972 = $971 & -2; - HEAP32[$959>>2] = $972; - $973 = $970 | 1; - $974 = ((($635)) + 4|0); - HEAP32[$974>>2] = $973; - HEAP32[$943>>2] = $970; - $975 = $970 >>> 3; - $976 = ($970>>>0)<(256); - if ($976) { - $977 = $975 << 1; - $978 = (32716 + ($977<<2)|0); - $979 = HEAP32[32676>>2]|0; - $980 = 1 << $975; - $981 = $979 & $980; - $982 = ($981|0)==(0); - if ($982) { - $983 = $979 | $980; - HEAP32[32676>>2] = $983; - $$pre$i$i = (($977) + 2)|0; - $$pre14$i$i = (32716 + ($$pre$i$i<<2)|0); - $$pre$phi$i$iZ2D = $$pre14$i$i;$F$0$i$i = $978; + $958 = ($935|0)==($630|0); + if (!($958)) { + $959 = $935; + $960 = $630; + $961 = (($959) - ($960))|0; + $962 = HEAP32[$953>>2]|0; + $963 = $962 & -2; + HEAP32[$953>>2] = $963; + $964 = $961 | 1; + $965 = ((($630)) + 4|0); + HEAP32[$965>>2] = $964; + HEAP32[$935>>2] = $961; + $966 = $961 >>> 3; + $967 = ($961>>>0)<(256); + if ($967) { + $968 = $966 << 1; + $969 = (33004 + ($968<<2)|0); + $970 = HEAP32[8241]|0; + $971 = 1 << $966; + $972 = $970 & $971; + $973 = ($972|0)==(0); + if ($973) { + $974 = $970 | $971; + HEAP32[8241] = $974; + $$pre$i$i = ((($969)) + 8|0); + $$0211$i$i = $969;$$pre$phi$i$iZ2D = $$pre$i$i; } else { - $$sum4$i$i = (($977) + 2)|0; - $984 = (32716 + ($$sum4$i$i<<2)|0); - $985 = HEAP32[$984>>2]|0; - $986 = HEAP32[(32692)>>2]|0; - $987 = ($985>>>0)<($986>>>0); - if ($987) { + $975 = ((($969)) + 8|0); + $976 = HEAP32[$975>>2]|0; + $977 = HEAP32[(32980)>>2]|0; + $978 = ($976>>>0)<($977>>>0); + if ($978) { _abort(); // unreachable; } else { - $$pre$phi$i$iZ2D = $984;$F$0$i$i = $985; + $$0211$i$i = $976;$$pre$phi$i$iZ2D = $975; } } - HEAP32[$$pre$phi$i$iZ2D>>2] = $635; - $988 = ((($F$0$i$i)) + 12|0); - HEAP32[$988>>2] = $635; - $989 = ((($635)) + 8|0); - HEAP32[$989>>2] = $F$0$i$i; - $990 = ((($635)) + 12|0); - HEAP32[$990>>2] = $978; + HEAP32[$$pre$phi$i$iZ2D>>2] = $630; + $979 = ((($$0211$i$i)) + 12|0); + HEAP32[$979>>2] = $630; + $980 = ((($630)) + 8|0); + HEAP32[$980>>2] = $$0211$i$i; + $981 = ((($630)) + 12|0); + HEAP32[$981>>2] = $969; break; } - $991 = $970 >>> 8; - $992 = ($991|0)==(0); - if ($992) { - $I1$0$i$i = 0; + $982 = $961 >>> 8; + $983 = ($982|0)==(0); + if ($983) { + $$0212$i$i = 0; } else { - $993 = ($970>>>0)>(16777215); - if ($993) { - $I1$0$i$i = 31; + $984 = ($961>>>0)>(16777215); + if ($984) { + $$0212$i$i = 31; } else { - $994 = (($991) + 1048320)|0; + $985 = (($982) + 1048320)|0; + $986 = $985 >>> 16; + $987 = $986 & 8; + $988 = $982 << $987; + $989 = (($988) + 520192)|0; + $990 = $989 >>> 16; + $991 = $990 & 4; + $992 = $991 | $987; + $993 = $988 << $991; + $994 = (($993) + 245760)|0; $995 = $994 >>> 16; - $996 = $995 & 8; - $997 = $991 << $996; - $998 = (($997) + 520192)|0; - $999 = $998 >>> 16; - $1000 = $999 & 4; - $1001 = $1000 | $996; - $1002 = $997 << $1000; - $1003 = (($1002) + 245760)|0; - $1004 = $1003 >>> 16; - $1005 = $1004 & 2; - $1006 = $1001 | $1005; - $1007 = (14 - ($1006))|0; - $1008 = $1002 << $1005; - $1009 = $1008 >>> 15; - $1010 = (($1007) + ($1009))|0; - $1011 = $1010 << 1; - $1012 = (($1010) + 7)|0; - $1013 = $970 >>> $1012; - $1014 = $1013 & 1; - $1015 = $1014 | $1011; - $I1$0$i$i = $1015; + $996 = $995 & 2; + $997 = $992 | $996; + $998 = (14 - ($997))|0; + $999 = $993 << $996; + $1000 = $999 >>> 15; + $1001 = (($998) + ($1000))|0; + $1002 = $1001 << 1; + $1003 = (($1001) + 7)|0; + $1004 = $961 >>> $1003; + $1005 = $1004 & 1; + $1006 = $1005 | $1002; + $$0212$i$i = $1006; } } - $1016 = (32980 + ($I1$0$i$i<<2)|0); - $1017 = ((($635)) + 28|0); - HEAP32[$1017>>2] = $I1$0$i$i; - $1018 = ((($635)) + 20|0); - HEAP32[$1018>>2] = 0; - HEAP32[$941>>2] = 0; - $1019 = HEAP32[(32680)>>2]|0; - $1020 = 1 << $I1$0$i$i; - $1021 = $1019 & $1020; - $1022 = ($1021|0)==(0); - if ($1022) { - $1023 = $1019 | $1020; - HEAP32[(32680)>>2] = $1023; - HEAP32[$1016>>2] = $635; - $1024 = ((($635)) + 24|0); - HEAP32[$1024>>2] = $1016; - $1025 = ((($635)) + 12|0); - HEAP32[$1025>>2] = $635; - $1026 = ((($635)) + 8|0); - HEAP32[$1026>>2] = $635; + $1007 = (33268 + ($$0212$i$i<<2)|0); + $1008 = ((($630)) + 28|0); + HEAP32[$1008>>2] = $$0212$i$i; + $1009 = ((($630)) + 20|0); + HEAP32[$1009>>2] = 0; + HEAP32[$933>>2] = 0; + $1010 = HEAP32[(32968)>>2]|0; + $1011 = 1 << $$0212$i$i; + $1012 = $1010 & $1011; + $1013 = ($1012|0)==(0); + if ($1013) { + $1014 = $1010 | $1011; + HEAP32[(32968)>>2] = $1014; + HEAP32[$1007>>2] = $630; + $1015 = ((($630)) + 24|0); + HEAP32[$1015>>2] = $1007; + $1016 = ((($630)) + 12|0); + HEAP32[$1016>>2] = $630; + $1017 = ((($630)) + 8|0); + HEAP32[$1017>>2] = $630; break; } - $1027 = HEAP32[$1016>>2]|0; - $1028 = ((($1027)) + 4|0); - $1029 = HEAP32[$1028>>2]|0; - $1030 = $1029 & -8; - $1031 = ($1030|0)==($970|0); - L459: do { - if ($1031) { - $T$0$lcssa$i$i = $1027; + $1018 = HEAP32[$1007>>2]|0; + $1019 = ($$0212$i$i|0)==(31); + $1020 = $$0212$i$i >>> 1; + $1021 = (25 - ($1020))|0; + $1022 = $1019 ? 0 : $1021; + $1023 = $961 << $1022; + $$0206$i$i = $1023;$$0207$i$i = $1018; + while(1) { + $1024 = ((($$0207$i$i)) + 4|0); + $1025 = HEAP32[$1024>>2]|0; + $1026 = $1025 & -8; + $1027 = ($1026|0)==($961|0); + if ($1027) { + label = 292; + break; + } + $1028 = $$0206$i$i >>> 31; + $1029 = (((($$0207$i$i)) + 16|0) + ($1028<<2)|0); + $1030 = $$0206$i$i << 1; + $1031 = HEAP32[$1029>>2]|0; + $1032 = ($1031|0)==(0|0); + if ($1032) { + label = 289; + break; } else { - $1032 = ($I1$0$i$i|0)==(31); - $1033 = $I1$0$i$i >>> 1; - $1034 = (25 - ($1033))|0; - $1035 = $1032 ? 0 : $1034; - $1036 = $970 << $1035; - $K2$07$i$i = $1036;$T$06$i$i = $1027; - while(1) { - $1043 = $K2$07$i$i >>> 31; - $1044 = (((($T$06$i$i)) + 16|0) + ($1043<<2)|0); - $1039 = HEAP32[$1044>>2]|0; - $1045 = ($1039|0)==(0|0); - if ($1045) { - $$lcssa211 = $1044;$T$06$i$i$lcssa = $T$06$i$i; - break; - } - $1037 = $K2$07$i$i << 1; - $1038 = ((($1039)) + 4|0); - $1040 = HEAP32[$1038>>2]|0; - $1041 = $1040 & -8; - $1042 = ($1041|0)==($970|0); - if ($1042) { - $T$0$lcssa$i$i = $1039; - break L459; - } else { - $K2$07$i$i = $1037;$T$06$i$i = $1039; - } - } - $1046 = HEAP32[(32692)>>2]|0; - $1047 = ($$lcssa211>>>0)<($1046>>>0); - if ($1047) { - _abort(); - // unreachable; - } else { - HEAP32[$$lcssa211>>2] = $635; - $1048 = ((($635)) + 24|0); - HEAP32[$1048>>2] = $T$06$i$i$lcssa; - $1049 = ((($635)) + 12|0); - HEAP32[$1049>>2] = $635; - $1050 = ((($635)) + 8|0); - HEAP32[$1050>>2] = $635; - break L299; - } + $$0206$i$i = $1030;$$0207$i$i = $1031; + } + } + if ((label|0) == 289) { + $1033 = HEAP32[(32980)>>2]|0; + $1034 = ($1029>>>0)<($1033>>>0); + if ($1034) { + _abort(); + // unreachable; + } else { + HEAP32[$1029>>2] = $630; + $1035 = ((($630)) + 24|0); + HEAP32[$1035>>2] = $$0207$i$i; + $1036 = ((($630)) + 12|0); + HEAP32[$1036>>2] = $630; + $1037 = ((($630)) + 8|0); + HEAP32[$1037>>2] = $630; + break; + } + } + else if ((label|0) == 292) { + $1038 = ((($$0207$i$i)) + 8|0); + $1039 = HEAP32[$1038>>2]|0; + $1040 = HEAP32[(32980)>>2]|0; + $1041 = ($1039>>>0)>=($1040>>>0); + $not$$i$i = ($$0207$i$i>>>0)>=($1040>>>0); + $1042 = $1041 & $not$$i$i; + if ($1042) { + $1043 = ((($1039)) + 12|0); + HEAP32[$1043>>2] = $630; + HEAP32[$1038>>2] = $630; + $1044 = ((($630)) + 8|0); + HEAP32[$1044>>2] = $1039; + $1045 = ((($630)) + 12|0); + HEAP32[$1045>>2] = $$0207$i$i; + $1046 = ((($630)) + 24|0); + HEAP32[$1046>>2] = 0; + break; + } else { + _abort(); + // unreachable; } - } while(0); - $1051 = ((($T$0$lcssa$i$i)) + 8|0); - $1052 = HEAP32[$1051>>2]|0; - $1053 = HEAP32[(32692)>>2]|0; - $1054 = ($1052>>>0)>=($1053>>>0); - $not$$i$i = ($T$0$lcssa$i$i>>>0)>=($1053>>>0); - $1055 = $1054 & $not$$i$i; - if ($1055) { - $1056 = ((($1052)) + 12|0); - HEAP32[$1056>>2] = $635; - HEAP32[$1051>>2] = $635; - $1057 = ((($635)) + 8|0); - HEAP32[$1057>>2] = $1052; - $1058 = ((($635)) + 12|0); - HEAP32[$1058>>2] = $T$0$lcssa$i$i; - $1059 = ((($635)) + 24|0); - HEAP32[$1059>>2] = 0; - break; - } else { - _abort(); - // unreachable; } } } } while(0); - $1060 = HEAP32[(32688)>>2]|0; - $1061 = ($1060>>>0)>($nb$0>>>0); - if ($1061) { - $1062 = (($1060) - ($nb$0))|0; - HEAP32[(32688)>>2] = $1062; - $1063 = HEAP32[(32700)>>2]|0; - $1064 = (($1063) + ($nb$0)|0); - HEAP32[(32700)>>2] = $1064; - $1065 = $1062 | 1; - $$sum$i32 = (($nb$0) + 4)|0; - $1066 = (($1063) + ($$sum$i32)|0); - HEAP32[$1066>>2] = $1065; - $1067 = $nb$0 | 3; - $1068 = ((($1063)) + 4|0); - HEAP32[$1068>>2] = $1067; - $1069 = ((($1063)) + 8|0); - $mem$0 = $1069; - return ($mem$0|0); + $1048 = HEAP32[(32976)>>2]|0; + $1049 = ($1048>>>0)>($$0197>>>0); + if ($1049) { + $1050 = (($1048) - ($$0197))|0; + HEAP32[(32976)>>2] = $1050; + $1051 = HEAP32[(32988)>>2]|0; + $1052 = (($1051) + ($$0197)|0); + HEAP32[(32988)>>2] = $1052; + $1053 = $1050 | 1; + $1054 = ((($1052)) + 4|0); + HEAP32[$1054>>2] = $1053; + $1055 = $$0197 | 3; + $1056 = ((($1051)) + 4|0); + HEAP32[$1056>>2] = $1055; + $1057 = ((($1051)) + 8|0); + $$0 = $1057; + STACKTOP = sp;return ($$0|0); } } - $1070 = (___errno_location()|0); - HEAP32[$1070>>2] = 12; - $mem$0 = 0; - return ($mem$0|0); + $1058 = (___errno_location()|0); + HEAP32[$1058>>2] = 12; + $$0 = 0; + STACKTOP = sp;return ($$0|0); } -function _free($mem) { - $mem = $mem|0; - var $$lcssa = 0, $$pre = 0, $$pre$phi59Z2D = 0, $$pre$phi61Z2D = 0, $$pre$phiZ2D = 0, $$pre57 = 0, $$pre58 = 0, $$pre60 = 0, $$sum = 0, $$sum11 = 0, $$sum12 = 0, $$sum13 = 0, $$sum14 = 0, $$sum1718 = 0, $$sum19 = 0, $$sum2 = 0, $$sum20 = 0, $$sum22 = 0, $$sum23 = 0, $$sum24 = 0; - var $$sum25 = 0, $$sum26 = 0, $$sum27 = 0, $$sum28 = 0, $$sum29 = 0, $$sum3 = 0, $$sum30 = 0, $$sum31 = 0, $$sum5 = 0, $$sum67 = 0, $$sum8 = 0, $$sum9 = 0, $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0; - var $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0; - var $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0; - var $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0; - var $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0; - var $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0; - var $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0; - var $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0; - var $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0; - var $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0; - var $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0; - var $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0; - var $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0; - var $321 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0; - var $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0; - var $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0; - var $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $F16$0 = 0, $I18$0 = 0, $K19$052 = 0, $R$0 = 0, $R$0$lcssa = 0, $R$1 = 0; - var $R7$0 = 0, $R7$0$lcssa = 0, $R7$1 = 0, $RP$0 = 0, $RP$0$lcssa = 0, $RP9$0 = 0, $RP9$0$lcssa = 0, $T$0$lcssa = 0, $T$051 = 0, $T$051$lcssa = 0, $cond = 0, $cond47 = 0, $not$ = 0, $p$0 = 0, $psize$0 = 0, $psize$1 = 0, $sp$0$i = 0, $sp$0$in$i = 0, label = 0, sp = 0; +function _free($0) { + $0 = $0|0; + var $$0212$i = 0, $$0212$in$i = 0, $$0383 = 0, $$0384 = 0, $$0396 = 0, $$0403 = 0, $$1 = 0, $$1382 = 0, $$1387 = 0, $$1390 = 0, $$1398 = 0, $$1402 = 0, $$2 = 0, $$3 = 0, $$3400 = 0, $$pre = 0, $$pre$phi443Z2D = 0, $$pre$phi445Z2D = 0, $$pre$phiZ2D = 0, $$pre442 = 0; + var $$pre444 = 0, $$sink3 = 0, $$sink5 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0; + var $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0; + var $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0; + var $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0; + var $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0; + var $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0; + var $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0; + var $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0; + var $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0; + var $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0; + var $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0; + var $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0; + var $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0; + var $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0; + var $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0; + var $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0; + var $99 = 0, $cond421 = 0, $cond422 = 0, $not$ = 0, $not$405 = 0, $not$437 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = ($mem|0)==(0|0); - if ($0) { + $1 = ($0|0)==(0|0); + if ($1) { return; } - $1 = ((($mem)) + -8|0); - $2 = HEAP32[(32692)>>2]|0; - $3 = ($1>>>0)<($2>>>0); - if ($3) { + $2 = ((($0)) + -8|0); + $3 = HEAP32[(32980)>>2]|0; + $4 = ($2>>>0)<($3>>>0); + if ($4) { _abort(); // unreachable; } - $4 = ((($mem)) + -4|0); - $5 = HEAP32[$4>>2]|0; - $6 = $5 & 3; - $7 = ($6|0)==(1); - if ($7) { + $5 = ((($0)) + -4|0); + $6 = HEAP32[$5>>2]|0; + $7 = $6 & 3; + $8 = ($7|0)==(1); + if ($8) { _abort(); // unreachable; } - $8 = $5 & -8; - $$sum = (($8) + -8)|0; - $9 = (($mem) + ($$sum)|0); - $10 = $5 & 1; - $11 = ($10|0)==(0); - do { - if ($11) { - $12 = HEAP32[$1>>2]|0; - $13 = ($6|0)==(0); - if ($13) { + $9 = $6 & -8; + $10 = (($2) + ($9)|0); + $11 = $6 & 1; + $12 = ($11|0)==(0); + L10: do { + if ($12) { + $13 = HEAP32[$2>>2]|0; + $14 = ($7|0)==(0); + if ($14) { return; } - $$sum2 = (-8 - ($12))|0; - $14 = (($mem) + ($$sum2)|0); - $15 = (($12) + ($8))|0; - $16 = ($14>>>0)<($2>>>0); - if ($16) { + $15 = (0 - ($13))|0; + $16 = (($2) + ($15)|0); + $17 = (($13) + ($9))|0; + $18 = ($16>>>0)<($3>>>0); + if ($18) { _abort(); // unreachable; } - $17 = HEAP32[(32696)>>2]|0; - $18 = ($14|0)==($17|0); - if ($18) { - $$sum3 = (($8) + -4)|0; - $103 = (($mem) + ($$sum3)|0); - $104 = HEAP32[$103>>2]|0; - $105 = $104 & 3; - $106 = ($105|0)==(3); - if (!($106)) { - $p$0 = $14;$psize$0 = $15; + $19 = HEAP32[(32984)>>2]|0; + $20 = ($16|0)==($19|0); + if ($20) { + $104 = ((($10)) + 4|0); + $105 = HEAP32[$104>>2]|0; + $106 = $105 & 3; + $107 = ($106|0)==(3); + if (!($107)) { + $$1 = $16;$$1382 = $17;$113 = $16; break; } - HEAP32[(32684)>>2] = $15; - $107 = $104 & -2; - HEAP32[$103>>2] = $107; - $108 = $15 | 1; - $$sum20 = (($$sum2) + 4)|0; - $109 = (($mem) + ($$sum20)|0); - HEAP32[$109>>2] = $108; - HEAP32[$9>>2] = $15; + $108 = (($16) + ($17)|0); + $109 = ((($16)) + 4|0); + $110 = $17 | 1; + $111 = $105 & -2; + HEAP32[(32972)>>2] = $17; + HEAP32[$104>>2] = $111; + HEAP32[$109>>2] = $110; + HEAP32[$108>>2] = $17; return; } - $19 = $12 >>> 3; - $20 = ($12>>>0)<(256); - if ($20) { - $$sum30 = (($$sum2) + 8)|0; - $21 = (($mem) + ($$sum30)|0); - $22 = HEAP32[$21>>2]|0; - $$sum31 = (($$sum2) + 12)|0; - $23 = (($mem) + ($$sum31)|0); + $21 = $13 >>> 3; + $22 = ($13>>>0)<(256); + if ($22) { + $23 = ((($16)) + 8|0); $24 = HEAP32[$23>>2]|0; - $25 = $19 << 1; - $26 = (32716 + ($25<<2)|0); - $27 = ($22|0)==($26|0); - if (!($27)) { - $28 = ($22>>>0)<($2>>>0); - if ($28) { + $25 = ((($16)) + 12|0); + $26 = HEAP32[$25>>2]|0; + $27 = $21 << 1; + $28 = (33004 + ($27<<2)|0); + $29 = ($24|0)==($28|0); + if (!($29)) { + $30 = ($24>>>0)<($3>>>0); + if ($30) { _abort(); // unreachable; } - $29 = ((($22)) + 12|0); - $30 = HEAP32[$29>>2]|0; - $31 = ($30|0)==($14|0); - if (!($31)) { + $31 = ((($24)) + 12|0); + $32 = HEAP32[$31>>2]|0; + $33 = ($32|0)==($16|0); + if (!($33)) { _abort(); // unreachable; } } - $32 = ($24|0)==($22|0); - if ($32) { - $33 = 1 << $19; - $34 = $33 ^ -1; - $35 = HEAP32[32676>>2]|0; - $36 = $35 & $34; - HEAP32[32676>>2] = $36; - $p$0 = $14;$psize$0 = $15; + $34 = ($26|0)==($24|0); + if ($34) { + $35 = 1 << $21; + $36 = $35 ^ -1; + $37 = HEAP32[8241]|0; + $38 = $37 & $36; + HEAP32[8241] = $38; + $$1 = $16;$$1382 = $17;$113 = $16; break; } - $37 = ($24|0)==($26|0); - if ($37) { - $$pre60 = ((($24)) + 8|0); - $$pre$phi61Z2D = $$pre60; + $39 = ($26|0)==($28|0); + if ($39) { + $$pre444 = ((($26)) + 8|0); + $$pre$phi445Z2D = $$pre444; } else { - $38 = ($24>>>0)<($2>>>0); - if ($38) { + $40 = ($26>>>0)<($3>>>0); + if ($40) { _abort(); // unreachable; } - $39 = ((($24)) + 8|0); - $40 = HEAP32[$39>>2]|0; - $41 = ($40|0)==($14|0); - if ($41) { - $$pre$phi61Z2D = $39; + $41 = ((($26)) + 8|0); + $42 = HEAP32[$41>>2]|0; + $43 = ($42|0)==($16|0); + if ($43) { + $$pre$phi445Z2D = $41; } else { _abort(); // unreachable; } } - $42 = ((($22)) + 12|0); - HEAP32[$42>>2] = $24; - HEAP32[$$pre$phi61Z2D>>2] = $22; - $p$0 = $14;$psize$0 = $15; + $44 = ((($24)) + 12|0); + HEAP32[$44>>2] = $26; + HEAP32[$$pre$phi445Z2D>>2] = $24; + $$1 = $16;$$1382 = $17;$113 = $16; break; } - $$sum22 = (($$sum2) + 24)|0; - $43 = (($mem) + ($$sum22)|0); - $44 = HEAP32[$43>>2]|0; - $$sum23 = (($$sum2) + 12)|0; - $45 = (($mem) + ($$sum23)|0); + $45 = ((($16)) + 24|0); $46 = HEAP32[$45>>2]|0; - $47 = ($46|0)==($14|0); + $47 = ((($16)) + 12|0); + $48 = HEAP32[$47>>2]|0; + $49 = ($48|0)==($16|0); do { - if ($47) { - $$sum25 = (($$sum2) + 20)|0; - $57 = (($mem) + ($$sum25)|0); - $58 = HEAP32[$57>>2]|0; - $59 = ($58|0)==(0|0); - if ($59) { - $$sum24 = (($$sum2) + 16)|0; - $60 = (($mem) + ($$sum24)|0); - $61 = HEAP32[$60>>2]|0; - $62 = ($61|0)==(0|0); - if ($62) { - $R$1 = 0; + if ($49) { + $59 = ((($16)) + 16|0); + $60 = ((($59)) + 4|0); + $61 = HEAP32[$60>>2]|0; + $62 = ($61|0)==(0|0); + if ($62) { + $63 = HEAP32[$59>>2]|0; + $64 = ($63|0)==(0|0); + if ($64) { + $$3 = 0; break; } else { - $R$0 = $61;$RP$0 = $60; + $$1387 = $63;$$1390 = $59; } } else { - $R$0 = $58;$RP$0 = $57; + $$1387 = $61;$$1390 = $60; } while(1) { - $63 = ((($R$0)) + 20|0); - $64 = HEAP32[$63>>2]|0; - $65 = ($64|0)==(0|0); - if (!($65)) { - $R$0 = $64;$RP$0 = $63; + $65 = ((($$1387)) + 20|0); + $66 = HEAP32[$65>>2]|0; + $67 = ($66|0)==(0|0); + if (!($67)) { + $$1387 = $66;$$1390 = $65; continue; } - $66 = ((($R$0)) + 16|0); - $67 = HEAP32[$66>>2]|0; - $68 = ($67|0)==(0|0); - if ($68) { - $R$0$lcssa = $R$0;$RP$0$lcssa = $RP$0; + $68 = ((($$1387)) + 16|0); + $69 = HEAP32[$68>>2]|0; + $70 = ($69|0)==(0|0); + if ($70) { break; } else { - $R$0 = $67;$RP$0 = $66; + $$1387 = $69;$$1390 = $68; } } - $69 = ($RP$0$lcssa>>>0)<($2>>>0); - if ($69) { + $71 = ($$1390>>>0)<($3>>>0); + if ($71) { _abort(); // unreachable; } else { - HEAP32[$RP$0$lcssa>>2] = 0; - $R$1 = $R$0$lcssa; + HEAP32[$$1390>>2] = 0; + $$3 = $$1387; break; } } else { - $$sum29 = (($$sum2) + 8)|0; - $48 = (($mem) + ($$sum29)|0); - $49 = HEAP32[$48>>2]|0; - $50 = ($49>>>0)<($2>>>0); - if ($50) { + $50 = ((($16)) + 8|0); + $51 = HEAP32[$50>>2]|0; + $52 = ($51>>>0)<($3>>>0); + if ($52) { _abort(); // unreachable; } - $51 = ((($49)) + 12|0); - $52 = HEAP32[$51>>2]|0; - $53 = ($52|0)==($14|0); - if (!($53)) { + $53 = ((($51)) + 12|0); + $54 = HEAP32[$53>>2]|0; + $55 = ($54|0)==($16|0); + if (!($55)) { _abort(); // unreachable; } - $54 = ((($46)) + 8|0); - $55 = HEAP32[$54>>2]|0; - $56 = ($55|0)==($14|0); - if ($56) { - HEAP32[$51>>2] = $46; - HEAP32[$54>>2] = $49; - $R$1 = $46; + $56 = ((($48)) + 8|0); + $57 = HEAP32[$56>>2]|0; + $58 = ($57|0)==($16|0); + if ($58) { + HEAP32[$53>>2] = $48; + HEAP32[$56>>2] = $51; + $$3 = $48; break; } else { _abort(); @@ -23318,294 +19592,285 @@ function _free($mem) { } } } while(0); - $70 = ($44|0)==(0|0); - if ($70) { - $p$0 = $14;$psize$0 = $15; + $72 = ($46|0)==(0|0); + if ($72) { + $$1 = $16;$$1382 = $17;$113 = $16; } else { - $$sum26 = (($$sum2) + 28)|0; - $71 = (($mem) + ($$sum26)|0); - $72 = HEAP32[$71>>2]|0; - $73 = (32980 + ($72<<2)|0); + $73 = ((($16)) + 28|0); $74 = HEAP32[$73>>2]|0; - $75 = ($14|0)==($74|0); - if ($75) { - HEAP32[$73>>2] = $R$1; - $cond = ($R$1|0)==(0|0); - if ($cond) { - $76 = 1 << $72; - $77 = $76 ^ -1; - $78 = HEAP32[(32680)>>2]|0; - $79 = $78 & $77; - HEAP32[(32680)>>2] = $79; - $p$0 = $14;$psize$0 = $15; - break; - } - } else { - $80 = HEAP32[(32692)>>2]|0; - $81 = ($44>>>0)<($80>>>0); - if ($81) { - _abort(); - // unreachable; - } - $82 = ((($44)) + 16|0); - $83 = HEAP32[$82>>2]|0; - $84 = ($83|0)==($14|0); - if ($84) { - HEAP32[$82>>2] = $R$1; + $75 = (33268 + ($74<<2)|0); + $76 = HEAP32[$75>>2]|0; + $77 = ($16|0)==($76|0); + do { + if ($77) { + HEAP32[$75>>2] = $$3; + $cond421 = ($$3|0)==(0|0); + if ($cond421) { + $78 = 1 << $74; + $79 = $78 ^ -1; + $80 = HEAP32[(32968)>>2]|0; + $81 = $80 & $79; + HEAP32[(32968)>>2] = $81; + $$1 = $16;$$1382 = $17;$113 = $16; + break L10; + } } else { - $85 = ((($44)) + 20|0); - HEAP32[$85>>2] = $R$1; - } - $86 = ($R$1|0)==(0|0); - if ($86) { - $p$0 = $14;$psize$0 = $15; - break; + $82 = HEAP32[(32980)>>2]|0; + $83 = ($46>>>0)<($82>>>0); + if ($83) { + _abort(); + // unreachable; + } else { + $84 = ((($46)) + 16|0); + $85 = HEAP32[$84>>2]|0; + $not$405 = ($85|0)!=($16|0); + $$sink3 = $not$405&1; + $86 = (((($46)) + 16|0) + ($$sink3<<2)|0); + HEAP32[$86>>2] = $$3; + $87 = ($$3|0)==(0|0); + if ($87) { + $$1 = $16;$$1382 = $17;$113 = $16; + break L10; + } else { + break; + } + } } - } - $87 = HEAP32[(32692)>>2]|0; - $88 = ($R$1>>>0)<($87>>>0); - if ($88) { + } while(0); + $88 = HEAP32[(32980)>>2]|0; + $89 = ($$3>>>0)<($88>>>0); + if ($89) { _abort(); // unreachable; } - $89 = ((($R$1)) + 24|0); - HEAP32[$89>>2] = $44; - $$sum27 = (($$sum2) + 16)|0; - $90 = (($mem) + ($$sum27)|0); - $91 = HEAP32[$90>>2]|0; - $92 = ($91|0)==(0|0); + $90 = ((($$3)) + 24|0); + HEAP32[$90>>2] = $46; + $91 = ((($16)) + 16|0); + $92 = HEAP32[$91>>2]|0; + $93 = ($92|0)==(0|0); do { - if (!($92)) { - $93 = ($91>>>0)<($87>>>0); - if ($93) { + if (!($93)) { + $94 = ($92>>>0)<($88>>>0); + if ($94) { _abort(); // unreachable; } else { - $94 = ((($R$1)) + 16|0); - HEAP32[$94>>2] = $91; - $95 = ((($91)) + 24|0); - HEAP32[$95>>2] = $R$1; + $95 = ((($$3)) + 16|0); + HEAP32[$95>>2] = $92; + $96 = ((($92)) + 24|0); + HEAP32[$96>>2] = $$3; break; } } } while(0); - $$sum28 = (($$sum2) + 20)|0; - $96 = (($mem) + ($$sum28)|0); - $97 = HEAP32[$96>>2]|0; - $98 = ($97|0)==(0|0); - if ($98) { - $p$0 = $14;$psize$0 = $15; + $97 = ((($91)) + 4|0); + $98 = HEAP32[$97>>2]|0; + $99 = ($98|0)==(0|0); + if ($99) { + $$1 = $16;$$1382 = $17;$113 = $16; } else { - $99 = HEAP32[(32692)>>2]|0; - $100 = ($97>>>0)<($99>>>0); - if ($100) { + $100 = HEAP32[(32980)>>2]|0; + $101 = ($98>>>0)<($100>>>0); + if ($101) { _abort(); // unreachable; } else { - $101 = ((($R$1)) + 20|0); - HEAP32[$101>>2] = $97; - $102 = ((($97)) + 24|0); - HEAP32[$102>>2] = $R$1; - $p$0 = $14;$psize$0 = $15; + $102 = ((($$3)) + 20|0); + HEAP32[$102>>2] = $98; + $103 = ((($98)) + 24|0); + HEAP32[$103>>2] = $$3; + $$1 = $16;$$1382 = $17;$113 = $16; break; } } } } else { - $p$0 = $1;$psize$0 = $8; + $$1 = $2;$$1382 = $9;$113 = $2; } } while(0); - $110 = ($p$0>>>0)<($9>>>0); - if (!($110)) { + $112 = ($113>>>0)<($10>>>0); + if (!($112)) { _abort(); // unreachable; } - $$sum19 = (($8) + -4)|0; - $111 = (($mem) + ($$sum19)|0); - $112 = HEAP32[$111>>2]|0; - $113 = $112 & 1; - $114 = ($113|0)==(0); - if ($114) { + $114 = ((($10)) + 4|0); + $115 = HEAP32[$114>>2]|0; + $116 = $115 & 1; + $117 = ($116|0)==(0); + if ($117) { _abort(); // unreachable; } - $115 = $112 & 2; - $116 = ($115|0)==(0); - if ($116) { - $117 = HEAP32[(32700)>>2]|0; - $118 = ($9|0)==($117|0); - if ($118) { - $119 = HEAP32[(32688)>>2]|0; - $120 = (($119) + ($psize$0))|0; - HEAP32[(32688)>>2] = $120; - HEAP32[(32700)>>2] = $p$0; - $121 = $120 | 1; - $122 = ((($p$0)) + 4|0); - HEAP32[$122>>2] = $121; - $123 = HEAP32[(32696)>>2]|0; - $124 = ($p$0|0)==($123|0); - if (!($124)) { + $118 = $115 & 2; + $119 = ($118|0)==(0); + if ($119) { + $120 = HEAP32[(32988)>>2]|0; + $121 = ($10|0)==($120|0); + $122 = HEAP32[(32984)>>2]|0; + if ($121) { + $123 = HEAP32[(32976)>>2]|0; + $124 = (($123) + ($$1382))|0; + HEAP32[(32976)>>2] = $124; + HEAP32[(32988)>>2] = $$1; + $125 = $124 | 1; + $126 = ((($$1)) + 4|0); + HEAP32[$126>>2] = $125; + $127 = ($$1|0)==($122|0); + if (!($127)) { return; } - HEAP32[(32696)>>2] = 0; - HEAP32[(32684)>>2] = 0; + HEAP32[(32984)>>2] = 0; + HEAP32[(32972)>>2] = 0; return; } - $125 = HEAP32[(32696)>>2]|0; - $126 = ($9|0)==($125|0); - if ($126) { - $127 = HEAP32[(32684)>>2]|0; - $128 = (($127) + ($psize$0))|0; - HEAP32[(32684)>>2] = $128; - HEAP32[(32696)>>2] = $p$0; - $129 = $128 | 1; - $130 = ((($p$0)) + 4|0); - HEAP32[$130>>2] = $129; - $131 = (($p$0) + ($128)|0); - HEAP32[$131>>2] = $128; + $128 = ($10|0)==($122|0); + if ($128) { + $129 = HEAP32[(32972)>>2]|0; + $130 = (($129) + ($$1382))|0; + HEAP32[(32972)>>2] = $130; + HEAP32[(32984)>>2] = $113; + $131 = $130 | 1; + $132 = ((($$1)) + 4|0); + HEAP32[$132>>2] = $131; + $133 = (($113) + ($130)|0); + HEAP32[$133>>2] = $130; return; } - $132 = $112 & -8; - $133 = (($132) + ($psize$0))|0; - $134 = $112 >>> 3; - $135 = ($112>>>0)<(256); - do { - if ($135) { - $136 = (($mem) + ($8)|0); - $137 = HEAP32[$136>>2]|0; - $$sum1718 = $8 | 4; - $138 = (($mem) + ($$sum1718)|0); + $134 = $115 & -8; + $135 = (($134) + ($$1382))|0; + $136 = $115 >>> 3; + $137 = ($115>>>0)<(256); + L108: do { + if ($137) { + $138 = ((($10)) + 8|0); $139 = HEAP32[$138>>2]|0; - $140 = $134 << 1; - $141 = (32716 + ($140<<2)|0); - $142 = ($137|0)==($141|0); - if (!($142)) { - $143 = HEAP32[(32692)>>2]|0; - $144 = ($137>>>0)<($143>>>0); - if ($144) { + $140 = ((($10)) + 12|0); + $141 = HEAP32[$140>>2]|0; + $142 = $136 << 1; + $143 = (33004 + ($142<<2)|0); + $144 = ($139|0)==($143|0); + if (!($144)) { + $145 = HEAP32[(32980)>>2]|0; + $146 = ($139>>>0)<($145>>>0); + if ($146) { _abort(); // unreachable; } - $145 = ((($137)) + 12|0); - $146 = HEAP32[$145>>2]|0; - $147 = ($146|0)==($9|0); - if (!($147)) { + $147 = ((($139)) + 12|0); + $148 = HEAP32[$147>>2]|0; + $149 = ($148|0)==($10|0); + if (!($149)) { _abort(); // unreachable; } } - $148 = ($139|0)==($137|0); - if ($148) { - $149 = 1 << $134; - $150 = $149 ^ -1; - $151 = HEAP32[32676>>2]|0; - $152 = $151 & $150; - HEAP32[32676>>2] = $152; + $150 = ($141|0)==($139|0); + if ($150) { + $151 = 1 << $136; + $152 = $151 ^ -1; + $153 = HEAP32[8241]|0; + $154 = $153 & $152; + HEAP32[8241] = $154; break; } - $153 = ($139|0)==($141|0); - if ($153) { - $$pre58 = ((($139)) + 8|0); - $$pre$phi59Z2D = $$pre58; + $155 = ($141|0)==($143|0); + if ($155) { + $$pre442 = ((($141)) + 8|0); + $$pre$phi443Z2D = $$pre442; } else { - $154 = HEAP32[(32692)>>2]|0; - $155 = ($139>>>0)<($154>>>0); - if ($155) { + $156 = HEAP32[(32980)>>2]|0; + $157 = ($141>>>0)<($156>>>0); + if ($157) { _abort(); // unreachable; } - $156 = ((($139)) + 8|0); - $157 = HEAP32[$156>>2]|0; - $158 = ($157|0)==($9|0); - if ($158) { - $$pre$phi59Z2D = $156; + $158 = ((($141)) + 8|0); + $159 = HEAP32[$158>>2]|0; + $160 = ($159|0)==($10|0); + if ($160) { + $$pre$phi443Z2D = $158; } else { _abort(); // unreachable; } } - $159 = ((($137)) + 12|0); - HEAP32[$159>>2] = $139; - HEAP32[$$pre$phi59Z2D>>2] = $137; + $161 = ((($139)) + 12|0); + HEAP32[$161>>2] = $141; + HEAP32[$$pre$phi443Z2D>>2] = $139; } else { - $$sum5 = (($8) + 16)|0; - $160 = (($mem) + ($$sum5)|0); - $161 = HEAP32[$160>>2]|0; - $$sum67 = $8 | 4; - $162 = (($mem) + ($$sum67)|0); + $162 = ((($10)) + 24|0); $163 = HEAP32[$162>>2]|0; - $164 = ($163|0)==($9|0); + $164 = ((($10)) + 12|0); + $165 = HEAP32[$164>>2]|0; + $166 = ($165|0)==($10|0); do { - if ($164) { - $$sum9 = (($8) + 12)|0; - $175 = (($mem) + ($$sum9)|0); - $176 = HEAP32[$175>>2]|0; - $177 = ($176|0)==(0|0); - if ($177) { - $$sum8 = (($8) + 8)|0; - $178 = (($mem) + ($$sum8)|0); - $179 = HEAP32[$178>>2]|0; - $180 = ($179|0)==(0|0); - if ($180) { - $R7$1 = 0; + if ($166) { + $177 = ((($10)) + 16|0); + $178 = ((($177)) + 4|0); + $179 = HEAP32[$178>>2]|0; + $180 = ($179|0)==(0|0); + if ($180) { + $181 = HEAP32[$177>>2]|0; + $182 = ($181|0)==(0|0); + if ($182) { + $$3400 = 0; break; } else { - $R7$0 = $179;$RP9$0 = $178; + $$1398 = $181;$$1402 = $177; } } else { - $R7$0 = $176;$RP9$0 = $175; + $$1398 = $179;$$1402 = $178; } while(1) { - $181 = ((($R7$0)) + 20|0); - $182 = HEAP32[$181>>2]|0; - $183 = ($182|0)==(0|0); - if (!($183)) { - $R7$0 = $182;$RP9$0 = $181; + $183 = ((($$1398)) + 20|0); + $184 = HEAP32[$183>>2]|0; + $185 = ($184|0)==(0|0); + if (!($185)) { + $$1398 = $184;$$1402 = $183; continue; } - $184 = ((($R7$0)) + 16|0); - $185 = HEAP32[$184>>2]|0; - $186 = ($185|0)==(0|0); - if ($186) { - $R7$0$lcssa = $R7$0;$RP9$0$lcssa = $RP9$0; + $186 = ((($$1398)) + 16|0); + $187 = HEAP32[$186>>2]|0; + $188 = ($187|0)==(0|0); + if ($188) { break; } else { - $R7$0 = $185;$RP9$0 = $184; + $$1398 = $187;$$1402 = $186; } } - $187 = HEAP32[(32692)>>2]|0; - $188 = ($RP9$0$lcssa>>>0)<($187>>>0); - if ($188) { + $189 = HEAP32[(32980)>>2]|0; + $190 = ($$1402>>>0)<($189>>>0); + if ($190) { _abort(); // unreachable; } else { - HEAP32[$RP9$0$lcssa>>2] = 0; - $R7$1 = $R7$0$lcssa; + HEAP32[$$1402>>2] = 0; + $$3400 = $$1398; break; } } else { - $165 = (($mem) + ($8)|0); - $166 = HEAP32[$165>>2]|0; - $167 = HEAP32[(32692)>>2]|0; - $168 = ($166>>>0)<($167>>>0); - if ($168) { + $167 = ((($10)) + 8|0); + $168 = HEAP32[$167>>2]|0; + $169 = HEAP32[(32980)>>2]|0; + $170 = ($168>>>0)<($169>>>0); + if ($170) { _abort(); // unreachable; } - $169 = ((($166)) + 12|0); - $170 = HEAP32[$169>>2]|0; - $171 = ($170|0)==($9|0); - if (!($171)) { + $171 = ((($168)) + 12|0); + $172 = HEAP32[$171>>2]|0; + $173 = ($172|0)==($10|0); + if (!($173)) { _abort(); // unreachable; } - $172 = ((($163)) + 8|0); - $173 = HEAP32[$172>>2]|0; - $174 = ($173|0)==($9|0); - if ($174) { - HEAP32[$169>>2] = $163; - HEAP32[$172>>2] = $166; - $R7$1 = $163; + $174 = ((($165)) + 8|0); + $175 = HEAP32[$174>>2]|0; + $176 = ($175|0)==($10|0); + if ($176) { + HEAP32[$171>>2] = $165; + HEAP32[$174>>2] = $168; + $$3400 = $165; break; } else { _abort(); @@ -23613,307 +19878,298 @@ function _free($mem) { } } } while(0); - $189 = ($161|0)==(0|0); - if (!($189)) { - $$sum12 = (($8) + 20)|0; - $190 = (($mem) + ($$sum12)|0); - $191 = HEAP32[$190>>2]|0; - $192 = (32980 + ($191<<2)|0); + $191 = ($163|0)==(0|0); + if (!($191)) { + $192 = ((($10)) + 28|0); $193 = HEAP32[$192>>2]|0; - $194 = ($9|0)==($193|0); - if ($194) { - HEAP32[$192>>2] = $R7$1; - $cond47 = ($R7$1|0)==(0|0); - if ($cond47) { - $195 = 1 << $191; - $196 = $195 ^ -1; - $197 = HEAP32[(32680)>>2]|0; - $198 = $197 & $196; - HEAP32[(32680)>>2] = $198; - break; - } - } else { - $199 = HEAP32[(32692)>>2]|0; - $200 = ($161>>>0)<($199>>>0); - if ($200) { - _abort(); - // unreachable; - } - $201 = ((($161)) + 16|0); - $202 = HEAP32[$201>>2]|0; - $203 = ($202|0)==($9|0); - if ($203) { - HEAP32[$201>>2] = $R7$1; + $194 = (33268 + ($193<<2)|0); + $195 = HEAP32[$194>>2]|0; + $196 = ($10|0)==($195|0); + do { + if ($196) { + HEAP32[$194>>2] = $$3400; + $cond422 = ($$3400|0)==(0|0); + if ($cond422) { + $197 = 1 << $193; + $198 = $197 ^ -1; + $199 = HEAP32[(32968)>>2]|0; + $200 = $199 & $198; + HEAP32[(32968)>>2] = $200; + break L108; + } } else { - $204 = ((($161)) + 20|0); - HEAP32[$204>>2] = $R7$1; - } - $205 = ($R7$1|0)==(0|0); - if ($205) { - break; + $201 = HEAP32[(32980)>>2]|0; + $202 = ($163>>>0)<($201>>>0); + if ($202) { + _abort(); + // unreachable; + } else { + $203 = ((($163)) + 16|0); + $204 = HEAP32[$203>>2]|0; + $not$ = ($204|0)!=($10|0); + $$sink5 = $not$&1; + $205 = (((($163)) + 16|0) + ($$sink5<<2)|0); + HEAP32[$205>>2] = $$3400; + $206 = ($$3400|0)==(0|0); + if ($206) { + break L108; + } else { + break; + } + } } - } - $206 = HEAP32[(32692)>>2]|0; - $207 = ($R7$1>>>0)<($206>>>0); - if ($207) { + } while(0); + $207 = HEAP32[(32980)>>2]|0; + $208 = ($$3400>>>0)<($207>>>0); + if ($208) { _abort(); // unreachable; } - $208 = ((($R7$1)) + 24|0); - HEAP32[$208>>2] = $161; - $$sum13 = (($8) + 8)|0; - $209 = (($mem) + ($$sum13)|0); - $210 = HEAP32[$209>>2]|0; - $211 = ($210|0)==(0|0); + $209 = ((($$3400)) + 24|0); + HEAP32[$209>>2] = $163; + $210 = ((($10)) + 16|0); + $211 = HEAP32[$210>>2]|0; + $212 = ($211|0)==(0|0); do { - if (!($211)) { - $212 = ($210>>>0)<($206>>>0); - if ($212) { + if (!($212)) { + $213 = ($211>>>0)<($207>>>0); + if ($213) { _abort(); // unreachable; } else { - $213 = ((($R7$1)) + 16|0); - HEAP32[$213>>2] = $210; - $214 = ((($210)) + 24|0); - HEAP32[$214>>2] = $R7$1; + $214 = ((($$3400)) + 16|0); + HEAP32[$214>>2] = $211; + $215 = ((($211)) + 24|0); + HEAP32[$215>>2] = $$3400; break; } } } while(0); - $$sum14 = (($8) + 12)|0; - $215 = (($mem) + ($$sum14)|0); - $216 = HEAP32[$215>>2]|0; - $217 = ($216|0)==(0|0); - if (!($217)) { - $218 = HEAP32[(32692)>>2]|0; - $219 = ($216>>>0)<($218>>>0); - if ($219) { + $216 = ((($210)) + 4|0); + $217 = HEAP32[$216>>2]|0; + $218 = ($217|0)==(0|0); + if (!($218)) { + $219 = HEAP32[(32980)>>2]|0; + $220 = ($217>>>0)<($219>>>0); + if ($220) { _abort(); // unreachable; } else { - $220 = ((($R7$1)) + 20|0); - HEAP32[$220>>2] = $216; - $221 = ((($216)) + 24|0); - HEAP32[$221>>2] = $R7$1; + $221 = ((($$3400)) + 20|0); + HEAP32[$221>>2] = $217; + $222 = ((($217)) + 24|0); + HEAP32[$222>>2] = $$3400; break; } } } } } while(0); - $222 = $133 | 1; - $223 = ((($p$0)) + 4|0); - HEAP32[$223>>2] = $222; - $224 = (($p$0) + ($133)|0); - HEAP32[$224>>2] = $133; - $225 = HEAP32[(32696)>>2]|0; - $226 = ($p$0|0)==($225|0); - if ($226) { - HEAP32[(32684)>>2] = $133; + $223 = $135 | 1; + $224 = ((($$1)) + 4|0); + HEAP32[$224>>2] = $223; + $225 = (($113) + ($135)|0); + HEAP32[$225>>2] = $135; + $226 = HEAP32[(32984)>>2]|0; + $227 = ($$1|0)==($226|0); + if ($227) { + HEAP32[(32972)>>2] = $135; return; } else { - $psize$1 = $133; + $$2 = $135; } } else { - $227 = $112 & -2; - HEAP32[$111>>2] = $227; - $228 = $psize$0 | 1; - $229 = ((($p$0)) + 4|0); - HEAP32[$229>>2] = $228; - $230 = (($p$0) + ($psize$0)|0); - HEAP32[$230>>2] = $psize$0; - $psize$1 = $psize$0; + $228 = $115 & -2; + HEAP32[$114>>2] = $228; + $229 = $$1382 | 1; + $230 = ((($$1)) + 4|0); + HEAP32[$230>>2] = $229; + $231 = (($113) + ($$1382)|0); + HEAP32[$231>>2] = $$1382; + $$2 = $$1382; } - $231 = $psize$1 >>> 3; - $232 = ($psize$1>>>0)<(256); - if ($232) { - $233 = $231 << 1; - $234 = (32716 + ($233<<2)|0); - $235 = HEAP32[32676>>2]|0; - $236 = 1 << $231; - $237 = $235 & $236; - $238 = ($237|0)==(0); - if ($238) { - $239 = $235 | $236; - HEAP32[32676>>2] = $239; - $$pre = (($233) + 2)|0; - $$pre57 = (32716 + ($$pre<<2)|0); - $$pre$phiZ2D = $$pre57;$F16$0 = $234; + $232 = $$2 >>> 3; + $233 = ($$2>>>0)<(256); + if ($233) { + $234 = $232 << 1; + $235 = (33004 + ($234<<2)|0); + $236 = HEAP32[8241]|0; + $237 = 1 << $232; + $238 = $236 & $237; + $239 = ($238|0)==(0); + if ($239) { + $240 = $236 | $237; + HEAP32[8241] = $240; + $$pre = ((($235)) + 8|0); + $$0403 = $235;$$pre$phiZ2D = $$pre; } else { - $$sum11 = (($233) + 2)|0; - $240 = (32716 + ($$sum11<<2)|0); - $241 = HEAP32[$240>>2]|0; - $242 = HEAP32[(32692)>>2]|0; - $243 = ($241>>>0)<($242>>>0); - if ($243) { + $241 = ((($235)) + 8|0); + $242 = HEAP32[$241>>2]|0; + $243 = HEAP32[(32980)>>2]|0; + $244 = ($242>>>0)<($243>>>0); + if ($244) { _abort(); // unreachable; } else { - $$pre$phiZ2D = $240;$F16$0 = $241; + $$0403 = $242;$$pre$phiZ2D = $241; } } - HEAP32[$$pre$phiZ2D>>2] = $p$0; - $244 = ((($F16$0)) + 12|0); - HEAP32[$244>>2] = $p$0; - $245 = ((($p$0)) + 8|0); - HEAP32[$245>>2] = $F16$0; - $246 = ((($p$0)) + 12|0); - HEAP32[$246>>2] = $234; + HEAP32[$$pre$phiZ2D>>2] = $$1; + $245 = ((($$0403)) + 12|0); + HEAP32[$245>>2] = $$1; + $246 = ((($$1)) + 8|0); + HEAP32[$246>>2] = $$0403; + $247 = ((($$1)) + 12|0); + HEAP32[$247>>2] = $235; return; } - $247 = $psize$1 >>> 8; - $248 = ($247|0)==(0); - if ($248) { - $I18$0 = 0; + $248 = $$2 >>> 8; + $249 = ($248|0)==(0); + if ($249) { + $$0396 = 0; } else { - $249 = ($psize$1>>>0)>(16777215); - if ($249) { - $I18$0 = 31; + $250 = ($$2>>>0)>(16777215); + if ($250) { + $$0396 = 31; } else { - $250 = (($247) + 1048320)|0; - $251 = $250 >>> 16; - $252 = $251 & 8; - $253 = $247 << $252; - $254 = (($253) + 520192)|0; - $255 = $254 >>> 16; - $256 = $255 & 4; - $257 = $256 | $252; - $258 = $253 << $256; - $259 = (($258) + 245760)|0; - $260 = $259 >>> 16; - $261 = $260 & 2; - $262 = $257 | $261; - $263 = (14 - ($262))|0; - $264 = $258 << $261; - $265 = $264 >>> 15; - $266 = (($263) + ($265))|0; - $267 = $266 << 1; - $268 = (($266) + 7)|0; - $269 = $psize$1 >>> $268; - $270 = $269 & 1; - $271 = $270 | $267; - $I18$0 = $271; + $251 = (($248) + 1048320)|0; + $252 = $251 >>> 16; + $253 = $252 & 8; + $254 = $248 << $253; + $255 = (($254) + 520192)|0; + $256 = $255 >>> 16; + $257 = $256 & 4; + $258 = $257 | $253; + $259 = $254 << $257; + $260 = (($259) + 245760)|0; + $261 = $260 >>> 16; + $262 = $261 & 2; + $263 = $258 | $262; + $264 = (14 - ($263))|0; + $265 = $259 << $262; + $266 = $265 >>> 15; + $267 = (($264) + ($266))|0; + $268 = $267 << 1; + $269 = (($267) + 7)|0; + $270 = $$2 >>> $269; + $271 = $270 & 1; + $272 = $271 | $268; + $$0396 = $272; } } - $272 = (32980 + ($I18$0<<2)|0); - $273 = ((($p$0)) + 28|0); - HEAP32[$273>>2] = $I18$0; - $274 = ((($p$0)) + 16|0); - $275 = ((($p$0)) + 20|0); + $273 = (33268 + ($$0396<<2)|0); + $274 = ((($$1)) + 28|0); + HEAP32[$274>>2] = $$0396; + $275 = ((($$1)) + 16|0); + $276 = ((($$1)) + 20|0); + HEAP32[$276>>2] = 0; HEAP32[$275>>2] = 0; - HEAP32[$274>>2] = 0; - $276 = HEAP32[(32680)>>2]|0; - $277 = 1 << $I18$0; - $278 = $276 & $277; - $279 = ($278|0)==(0); - L199: do { - if ($279) { - $280 = $276 | $277; - HEAP32[(32680)>>2] = $280; - HEAP32[$272>>2] = $p$0; - $281 = ((($p$0)) + 24|0); - HEAP32[$281>>2] = $272; - $282 = ((($p$0)) + 12|0); - HEAP32[$282>>2] = $p$0; - $283 = ((($p$0)) + 8|0); - HEAP32[$283>>2] = $p$0; + $277 = HEAP32[(32968)>>2]|0; + $278 = 1 << $$0396; + $279 = $277 & $278; + $280 = ($279|0)==(0); + do { + if ($280) { + $281 = $277 | $278; + HEAP32[(32968)>>2] = $281; + HEAP32[$273>>2] = $$1; + $282 = ((($$1)) + 24|0); + HEAP32[$282>>2] = $273; + $283 = ((($$1)) + 12|0); + HEAP32[$283>>2] = $$1; + $284 = ((($$1)) + 8|0); + HEAP32[$284>>2] = $$1; } else { - $284 = HEAP32[$272>>2]|0; - $285 = ((($284)) + 4|0); - $286 = HEAP32[$285>>2]|0; - $287 = $286 & -8; - $288 = ($287|0)==($psize$1|0); - L202: do { - if ($288) { - $T$0$lcssa = $284; + $285 = HEAP32[$273>>2]|0; + $286 = ($$0396|0)==(31); + $287 = $$0396 >>> 1; + $288 = (25 - ($287))|0; + $289 = $286 ? 0 : $288; + $290 = $$2 << $289; + $$0383 = $290;$$0384 = $285; + while(1) { + $291 = ((($$0384)) + 4|0); + $292 = HEAP32[$291>>2]|0; + $293 = $292 & -8; + $294 = ($293|0)==($$2|0); + if ($294) { + label = 124; + break; + } + $295 = $$0383 >>> 31; + $296 = (((($$0384)) + 16|0) + ($295<<2)|0); + $297 = $$0383 << 1; + $298 = HEAP32[$296>>2]|0; + $299 = ($298|0)==(0|0); + if ($299) { + label = 121; + break; } else { - $289 = ($I18$0|0)==(31); - $290 = $I18$0 >>> 1; - $291 = (25 - ($290))|0; - $292 = $289 ? 0 : $291; - $293 = $psize$1 << $292; - $K19$052 = $293;$T$051 = $284; - while(1) { - $300 = $K19$052 >>> 31; - $301 = (((($T$051)) + 16|0) + ($300<<2)|0); - $296 = HEAP32[$301>>2]|0; - $302 = ($296|0)==(0|0); - if ($302) { - $$lcssa = $301;$T$051$lcssa = $T$051; - break; - } - $294 = $K19$052 << 1; - $295 = ((($296)) + 4|0); - $297 = HEAP32[$295>>2]|0; - $298 = $297 & -8; - $299 = ($298|0)==($psize$1|0); - if ($299) { - $T$0$lcssa = $296; - break L202; - } else { - $K19$052 = $294;$T$051 = $296; - } - } - $303 = HEAP32[(32692)>>2]|0; - $304 = ($$lcssa>>>0)<($303>>>0); - if ($304) { - _abort(); - // unreachable; - } else { - HEAP32[$$lcssa>>2] = $p$0; - $305 = ((($p$0)) + 24|0); - HEAP32[$305>>2] = $T$051$lcssa; - $306 = ((($p$0)) + 12|0); - HEAP32[$306>>2] = $p$0; - $307 = ((($p$0)) + 8|0); - HEAP32[$307>>2] = $p$0; - break L199; - } + $$0383 = $297;$$0384 = $298; + } + } + if ((label|0) == 121) { + $300 = HEAP32[(32980)>>2]|0; + $301 = ($296>>>0)<($300>>>0); + if ($301) { + _abort(); + // unreachable; + } else { + HEAP32[$296>>2] = $$1; + $302 = ((($$1)) + 24|0); + HEAP32[$302>>2] = $$0384; + $303 = ((($$1)) + 12|0); + HEAP32[$303>>2] = $$1; + $304 = ((($$1)) + 8|0); + HEAP32[$304>>2] = $$1; + break; + } + } + else if ((label|0) == 124) { + $305 = ((($$0384)) + 8|0); + $306 = HEAP32[$305>>2]|0; + $307 = HEAP32[(32980)>>2]|0; + $308 = ($306>>>0)>=($307>>>0); + $not$437 = ($$0384>>>0)>=($307>>>0); + $309 = $308 & $not$437; + if ($309) { + $310 = ((($306)) + 12|0); + HEAP32[$310>>2] = $$1; + HEAP32[$305>>2] = $$1; + $311 = ((($$1)) + 8|0); + HEAP32[$311>>2] = $306; + $312 = ((($$1)) + 12|0); + HEAP32[$312>>2] = $$0384; + $313 = ((($$1)) + 24|0); + HEAP32[$313>>2] = 0; + break; + } else { + _abort(); + // unreachable; } - } while(0); - $308 = ((($T$0$lcssa)) + 8|0); - $309 = HEAP32[$308>>2]|0; - $310 = HEAP32[(32692)>>2]|0; - $311 = ($309>>>0)>=($310>>>0); - $not$ = ($T$0$lcssa>>>0)>=($310>>>0); - $312 = $311 & $not$; - if ($312) { - $313 = ((($309)) + 12|0); - HEAP32[$313>>2] = $p$0; - HEAP32[$308>>2] = $p$0; - $314 = ((($p$0)) + 8|0); - HEAP32[$314>>2] = $309; - $315 = ((($p$0)) + 12|0); - HEAP32[$315>>2] = $T$0$lcssa; - $316 = ((($p$0)) + 24|0); - HEAP32[$316>>2] = 0; - break; - } else { - _abort(); - // unreachable; } } } while(0); - $317 = HEAP32[(32708)>>2]|0; - $318 = (($317) + -1)|0; - HEAP32[(32708)>>2] = $318; - $319 = ($318|0)==(0); - if ($319) { - $sp$0$in$i = (33132); + $314 = HEAP32[(32996)>>2]|0; + $315 = (($314) + -1)|0; + HEAP32[(32996)>>2] = $315; + $316 = ($315|0)==(0); + if ($316) { + $$0212$in$i = (33420); } else { return; } while(1) { - $sp$0$i = HEAP32[$sp$0$in$i>>2]|0; - $320 = ($sp$0$i|0)==(0|0); - $321 = ((($sp$0$i)) + 8|0); - if ($320) { + $$0212$i = HEAP32[$$0212$in$i>>2]|0; + $317 = ($$0212$i|0)==(0|0); + $318 = ((($$0212$i)) + 8|0); + if ($317) { break; } else { - $sp$0$in$i = $321; + $$0212$in$i = $318; } } - HEAP32[(32708)>>2] = -1; + HEAP32[(32996)>>2] = -1; return; } function runPostSets() { @@ -23951,31 +20207,51 @@ function _i64Add(a, b, c, d) { } function _memset(ptr, value, num) { ptr = ptr|0; value = value|0; num = num|0; - var stop = 0, value4 = 0, stop4 = 0, unaligned = 0; - stop = (ptr + num)|0; - if ((num|0) >= 20) { - // This is unaligned, but quite large, so work hard to get to aligned settings - value = value & 0xff; - unaligned = ptr & 3; + var end = 0, aligned_end = 0, block_aligned_end = 0, value4 = 0; + end = (ptr + num)|0; + + value = value & 0xff; + if ((num|0) >= 67 /* 64 bytes for an unrolled loop + 3 bytes for unaligned head*/) { + while ((ptr&3) != 0) { + HEAP8[((ptr)>>0)]=value; + ptr = (ptr+1)|0; + } + + aligned_end = (end & -4)|0; + block_aligned_end = (aligned_end - 64)|0; value4 = value | (value << 8) | (value << 16) | (value << 24); - stop4 = stop & ~3; - if (unaligned) { - unaligned = (ptr + 4 - unaligned)|0; - while ((ptr|0) < (unaligned|0)) { // no need to check for stop, since we have large num - HEAP8[((ptr)>>0)]=value; - ptr = (ptr+1)|0; - } + + while((ptr|0) <= (block_aligned_end|0)) { + HEAP32[((ptr)>>2)]=value4; + HEAP32[(((ptr)+(4))>>2)]=value4; + HEAP32[(((ptr)+(8))>>2)]=value4; + HEAP32[(((ptr)+(12))>>2)]=value4; + HEAP32[(((ptr)+(16))>>2)]=value4; + HEAP32[(((ptr)+(20))>>2)]=value4; + HEAP32[(((ptr)+(24))>>2)]=value4; + HEAP32[(((ptr)+(28))>>2)]=value4; + HEAP32[(((ptr)+(32))>>2)]=value4; + HEAP32[(((ptr)+(36))>>2)]=value4; + HEAP32[(((ptr)+(40))>>2)]=value4; + HEAP32[(((ptr)+(44))>>2)]=value4; + HEAP32[(((ptr)+(48))>>2)]=value4; + HEAP32[(((ptr)+(52))>>2)]=value4; + HEAP32[(((ptr)+(56))>>2)]=value4; + HEAP32[(((ptr)+(60))>>2)]=value4; + ptr = (ptr + 64)|0; } - while ((ptr|0) < (stop4|0)) { + + while ((ptr|0) < (aligned_end|0) ) { HEAP32[((ptr)>>2)]=value4; ptr = (ptr+4)|0; } } - while ((ptr|0) < (stop|0)) { + // The remaining bytes. + while ((ptr|0) < (end|0)) { HEAP8[((ptr)>>0)]=value; ptr = (ptr+1)|0; } - return (ptr-num)|0; + return (end-num)|0; } function _bitshift64Lshr(low, high, bits) { low = low|0; high = high|0; bits = bits|0; @@ -23999,12 +20275,77 @@ function _bitshift64Shl(low, high, bits) { tempRet0 = low << (bits - 32); return 0; } +function ___muldsi3($a, $b) { + $a = $a | 0; + $b = $b | 0; + var $1 = 0, $2 = 0, $3 = 0, $6 = 0, $8 = 0, $11 = 0, $12 = 0; + $1 = $a & 65535; + $2 = $b & 65535; + $3 = Math_imul($2, $1) | 0; + $6 = $a >>> 16; + $8 = ($3 >>> 16) + (Math_imul($2, $6) | 0) | 0; + $11 = $b >>> 16; + $12 = Math_imul($11, $1) | 0; + return (tempRet0 = (($8 >>> 16) + (Math_imul($11, $6) | 0) | 0) + ((($8 & 65535) + $12 | 0) >>> 16) | 0, 0 | ($8 + $12 << 16 | $3 & 65535)) | 0; +} +function ___muldi3($a$0, $a$1, $b$0, $b$1) { + $a$0 = $a$0 | 0; + $a$1 = $a$1 | 0; + $b$0 = $b$0 | 0; + $b$1 = $b$1 | 0; + var $x_sroa_0_0_extract_trunc = 0, $y_sroa_0_0_extract_trunc = 0, $1$0 = 0, $1$1 = 0, $2 = 0; + $x_sroa_0_0_extract_trunc = $a$0; + $y_sroa_0_0_extract_trunc = $b$0; + $1$0 = ___muldsi3($x_sroa_0_0_extract_trunc, $y_sroa_0_0_extract_trunc) | 0; + $1$1 = tempRet0; + $2 = Math_imul($a$1, $y_sroa_0_0_extract_trunc) | 0; + return (tempRet0 = ((Math_imul($b$1, $x_sroa_0_0_extract_trunc) | 0) + $2 | 0) + $1$1 | $1$1 & 0, 0 | $1$0 & -1) | 0; +} +function _sbrk(increment) { + increment = increment|0; + var oldDynamicTop = 0; + var oldDynamicTopOnChange = 0; + var newDynamicTop = 0; + var totalMemory = 0; + increment = ((increment + 15) & -16)|0; + oldDynamicTop = HEAP32[DYNAMICTOP_PTR>>2]|0; + newDynamicTop = oldDynamicTop + increment | 0; + + if (((increment|0) > 0 & (newDynamicTop|0) < (oldDynamicTop|0)) // Detect and fail if we would wrap around signed 32-bit int. + | (newDynamicTop|0) < 0) { // Also underflow, sbrk() should be able to be used to subtract. + abortOnCannotGrowMemory()|0; + ___setErrNo(12); + return -1; + } + + HEAP32[DYNAMICTOP_PTR>>2] = newDynamicTop; + totalMemory = getTotalMemory()|0; + if ((newDynamicTop|0) > (totalMemory|0)) { + if ((enlargeMemory()|0) == 0) { + HEAP32[DYNAMICTOP_PTR>>2] = oldDynamicTop; + ___setErrNo(12); + return -1; + } + } + return oldDynamicTop|0; +} function _memcpy(dest, src, num) { dest = dest|0; src = src|0; num = num|0; var ret = 0; - if ((num|0) >= 4096) return _emscripten_memcpy_big(dest|0, src|0, num|0)|0; + var aligned_dest_end = 0; + var block_aligned_dest_end = 0; + var dest_end = 0; + // Test against a benchmarked cutoff limit for when HEAPU8.set() becomes faster to use. + if ((num|0) >= + 8192 + ) { + return _emscripten_memcpy_big(dest|0, src|0, num|0)|0; + } + ret = dest|0; + dest_end = (dest + num)|0; if ((dest&3) == (src&3)) { + // The initial unaligned < 4-byte front. while (dest & 3) { if ((num|0) == 0) return ret|0; HEAP8[((dest)>>0)]=((HEAP8[((src)>>0)])|0); @@ -24012,18 +20353,50 @@ function _memcpy(dest, src, num) { src = (src+1)|0; num = (num-1)|0; } - while ((num|0) >= 4) { + aligned_dest_end = (dest_end & -4)|0; + block_aligned_dest_end = (aligned_dest_end - 64)|0; + while ((dest|0) <= (block_aligned_dest_end|0) ) { + HEAP32[((dest)>>2)]=((HEAP32[((src)>>2)])|0); + HEAP32[(((dest)+(4))>>2)]=((HEAP32[(((src)+(4))>>2)])|0); + HEAP32[(((dest)+(8))>>2)]=((HEAP32[(((src)+(8))>>2)])|0); + HEAP32[(((dest)+(12))>>2)]=((HEAP32[(((src)+(12))>>2)])|0); + HEAP32[(((dest)+(16))>>2)]=((HEAP32[(((src)+(16))>>2)])|0); + HEAP32[(((dest)+(20))>>2)]=((HEAP32[(((src)+(20))>>2)])|0); + HEAP32[(((dest)+(24))>>2)]=((HEAP32[(((src)+(24))>>2)])|0); + HEAP32[(((dest)+(28))>>2)]=((HEAP32[(((src)+(28))>>2)])|0); + HEAP32[(((dest)+(32))>>2)]=((HEAP32[(((src)+(32))>>2)])|0); + HEAP32[(((dest)+(36))>>2)]=((HEAP32[(((src)+(36))>>2)])|0); + HEAP32[(((dest)+(40))>>2)]=((HEAP32[(((src)+(40))>>2)])|0); + HEAP32[(((dest)+(44))>>2)]=((HEAP32[(((src)+(44))>>2)])|0); + HEAP32[(((dest)+(48))>>2)]=((HEAP32[(((src)+(48))>>2)])|0); + HEAP32[(((dest)+(52))>>2)]=((HEAP32[(((src)+(52))>>2)])|0); + HEAP32[(((dest)+(56))>>2)]=((HEAP32[(((src)+(56))>>2)])|0); + HEAP32[(((dest)+(60))>>2)]=((HEAP32[(((src)+(60))>>2)])|0); + dest = (dest+64)|0; + src = (src+64)|0; + } + while ((dest|0) < (aligned_dest_end|0) ) { HEAP32[((dest)>>2)]=((HEAP32[((src)>>2)])|0); dest = (dest+4)|0; src = (src+4)|0; - num = (num-4)|0; + } + } else { + // In the unaligned copy case, unroll a bit as well. + aligned_dest_end = (dest_end - 4)|0; + while ((dest|0) < (aligned_dest_end|0) ) { + HEAP8[((dest)>>0)]=((HEAP8[((src)>>0)])|0); + HEAP8[(((dest)+(1))>>0)]=((HEAP8[(((src)+(1))>>0)])|0); + HEAP8[(((dest)+(2))>>0)]=((HEAP8[(((src)+(2))>>0)])|0); + HEAP8[(((dest)+(3))>>0)]=((HEAP8[(((src)+(3))>>0)])|0); + dest = (dest+4)|0; + src = (src+4)|0; } } - while ((num|0) > 0) { + // The remaining unaligned < 4 byte tail. + while ((dest|0) < (dest_end|0)) { HEAP8[((dest)>>0)]=((HEAP8[((src)>>0)])|0); dest = (dest+1)|0; src = (src+1)|0; - num = (num-1)|0; } return ret|0; } @@ -24047,318 +20420,6 @@ function _memmove(dest, src, num) { } return dest | 0; } -function _llvm_cttz_i32(x) { - x = x|0; - var ret = 0; - ret = ((HEAP8[(((cttz_i8)+(x & 0xff))>>0)])|0); - if ((ret|0) < 8) return ret|0; - ret = ((HEAP8[(((cttz_i8)+((x >> 8)&0xff))>>0)])|0); - if ((ret|0) < 8) return (ret + 8)|0; - ret = ((HEAP8[(((cttz_i8)+((x >> 16)&0xff))>>0)])|0); - if ((ret|0) < 8) return (ret + 16)|0; - return (((HEAP8[(((cttz_i8)+(x >>> 24))>>0)])|0) + 24)|0; - } - -// ======== compiled code from system/lib/compiler-rt , see readme therein -function ___muldsi3($a, $b) { - $a = $a | 0; - $b = $b | 0; - var $1 = 0, $2 = 0, $3 = 0, $6 = 0, $8 = 0, $11 = 0, $12 = 0; - $1 = $a & 65535; - $2 = $b & 65535; - $3 = Math_imul($2, $1) | 0; - $6 = $a >>> 16; - $8 = ($3 >>> 16) + (Math_imul($2, $6) | 0) | 0; - $11 = $b >>> 16; - $12 = Math_imul($11, $1) | 0; - return (tempRet0 = (($8 >>> 16) + (Math_imul($11, $6) | 0) | 0) + ((($8 & 65535) + $12 | 0) >>> 16) | 0, 0 | ($8 + $12 << 16 | $3 & 65535)) | 0; -} -function ___divdi3($a$0, $a$1, $b$0, $b$1) { - $a$0 = $a$0 | 0; - $a$1 = $a$1 | 0; - $b$0 = $b$0 | 0; - $b$1 = $b$1 | 0; - var $1$0 = 0, $1$1 = 0, $2$0 = 0, $2$1 = 0, $4$0 = 0, $4$1 = 0, $6$0 = 0, $7$0 = 0, $7$1 = 0, $8$0 = 0, $10$0 = 0; - $1$0 = $a$1 >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; - $1$1 = (($a$1 | 0) < 0 ? -1 : 0) >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; - $2$0 = $b$1 >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; - $2$1 = (($b$1 | 0) < 0 ? -1 : 0) >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; - $4$0 = _i64Subtract($1$0 ^ $a$0, $1$1 ^ $a$1, $1$0, $1$1) | 0; - $4$1 = tempRet0; - $6$0 = _i64Subtract($2$0 ^ $b$0, $2$1 ^ $b$1, $2$0, $2$1) | 0; - $7$0 = $2$0 ^ $1$0; - $7$1 = $2$1 ^ $1$1; - $8$0 = ___udivmoddi4($4$0, $4$1, $6$0, tempRet0, 0) | 0; - $10$0 = _i64Subtract($8$0 ^ $7$0, tempRet0 ^ $7$1, $7$0, $7$1) | 0; - return $10$0 | 0; -} -function ___remdi3($a$0, $a$1, $b$0, $b$1) { - $a$0 = $a$0 | 0; - $a$1 = $a$1 | 0; - $b$0 = $b$0 | 0; - $b$1 = $b$1 | 0; - var $rem = 0, $1$0 = 0, $1$1 = 0, $2$0 = 0, $2$1 = 0, $4$0 = 0, $4$1 = 0, $6$0 = 0, $10$0 = 0, $10$1 = 0, __stackBase__ = 0; - __stackBase__ = STACKTOP; - STACKTOP = STACKTOP + 16 | 0; - $rem = __stackBase__ | 0; - $1$0 = $a$1 >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; - $1$1 = (($a$1 | 0) < 0 ? -1 : 0) >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; - $2$0 = $b$1 >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; - $2$1 = (($b$1 | 0) < 0 ? -1 : 0) >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; - $4$0 = _i64Subtract($1$0 ^ $a$0, $1$1 ^ $a$1, $1$0, $1$1) | 0; - $4$1 = tempRet0; - $6$0 = _i64Subtract($2$0 ^ $b$0, $2$1 ^ $b$1, $2$0, $2$1) | 0; - ___udivmoddi4($4$0, $4$1, $6$0, tempRet0, $rem) | 0; - $10$0 = _i64Subtract(HEAP32[$rem >> 2] ^ $1$0, HEAP32[$rem + 4 >> 2] ^ $1$1, $1$0, $1$1) | 0; - $10$1 = tempRet0; - STACKTOP = __stackBase__; - return (tempRet0 = $10$1, $10$0) | 0; -} -function ___muldi3($a$0, $a$1, $b$0, $b$1) { - $a$0 = $a$0 | 0; - $a$1 = $a$1 | 0; - $b$0 = $b$0 | 0; - $b$1 = $b$1 | 0; - var $x_sroa_0_0_extract_trunc = 0, $y_sroa_0_0_extract_trunc = 0, $1$0 = 0, $1$1 = 0, $2 = 0; - $x_sroa_0_0_extract_trunc = $a$0; - $y_sroa_0_0_extract_trunc = $b$0; - $1$0 = ___muldsi3($x_sroa_0_0_extract_trunc, $y_sroa_0_0_extract_trunc) | 0; - $1$1 = tempRet0; - $2 = Math_imul($a$1, $y_sroa_0_0_extract_trunc) | 0; - return (tempRet0 = ((Math_imul($b$1, $x_sroa_0_0_extract_trunc) | 0) + $2 | 0) + $1$1 | $1$1 & 0, 0 | $1$0 & -1) | 0; -} -function ___udivdi3($a$0, $a$1, $b$0, $b$1) { - $a$0 = $a$0 | 0; - $a$1 = $a$1 | 0; - $b$0 = $b$0 | 0; - $b$1 = $b$1 | 0; - var $1$0 = 0; - $1$0 = ___udivmoddi4($a$0, $a$1, $b$0, $b$1, 0) | 0; - return $1$0 | 0; -} -function ___uremdi3($a$0, $a$1, $b$0, $b$1) { - $a$0 = $a$0 | 0; - $a$1 = $a$1 | 0; - $b$0 = $b$0 | 0; - $b$1 = $b$1 | 0; - var $rem = 0, __stackBase__ = 0; - __stackBase__ = STACKTOP; - STACKTOP = STACKTOP + 16 | 0; - $rem = __stackBase__ | 0; - ___udivmoddi4($a$0, $a$1, $b$0, $b$1, $rem) | 0; - STACKTOP = __stackBase__; - return (tempRet0 = HEAP32[$rem + 4 >> 2] | 0, HEAP32[$rem >> 2] | 0) | 0; -} -function ___udivmoddi4($a$0, $a$1, $b$0, $b$1, $rem) { - $a$0 = $a$0 | 0; - $a$1 = $a$1 | 0; - $b$0 = $b$0 | 0; - $b$1 = $b$1 | 0; - $rem = $rem | 0; - var $n_sroa_0_0_extract_trunc = 0, $n_sroa_1_4_extract_shift$0 = 0, $n_sroa_1_4_extract_trunc = 0, $d_sroa_0_0_extract_trunc = 0, $d_sroa_1_4_extract_shift$0 = 0, $d_sroa_1_4_extract_trunc = 0, $4 = 0, $17 = 0, $37 = 0, $49 = 0, $51 = 0, $57 = 0, $58 = 0, $66 = 0, $78 = 0, $86 = 0, $88 = 0, $89 = 0, $91 = 0, $92 = 0, $95 = 0, $105 = 0, $117 = 0, $119 = 0, $125 = 0, $126 = 0, $130 = 0, $q_sroa_1_1_ph = 0, $q_sroa_0_1_ph = 0, $r_sroa_1_1_ph = 0, $r_sroa_0_1_ph = 0, $sr_1_ph = 0, $d_sroa_0_0_insert_insert99$0 = 0, $d_sroa_0_0_insert_insert99$1 = 0, $137$0 = 0, $137$1 = 0, $carry_0203 = 0, $sr_1202 = 0, $r_sroa_0_1201 = 0, $r_sroa_1_1200 = 0, $q_sroa_0_1199 = 0, $q_sroa_1_1198 = 0, $147 = 0, $149 = 0, $r_sroa_0_0_insert_insert42$0 = 0, $r_sroa_0_0_insert_insert42$1 = 0, $150$1 = 0, $151$0 = 0, $152 = 0, $154$0 = 0, $r_sroa_0_0_extract_trunc = 0, $r_sroa_1_4_extract_trunc = 0, $155 = 0, $carry_0_lcssa$0 = 0, $carry_0_lcssa$1 = 0, $r_sroa_0_1_lcssa = 0, $r_sroa_1_1_lcssa = 0, $q_sroa_0_1_lcssa = 0, $q_sroa_1_1_lcssa = 0, $q_sroa_0_0_insert_ext75$0 = 0, $q_sroa_0_0_insert_ext75$1 = 0, $q_sroa_0_0_insert_insert77$1 = 0, $_0$0 = 0, $_0$1 = 0; - $n_sroa_0_0_extract_trunc = $a$0; - $n_sroa_1_4_extract_shift$0 = $a$1; - $n_sroa_1_4_extract_trunc = $n_sroa_1_4_extract_shift$0; - $d_sroa_0_0_extract_trunc = $b$0; - $d_sroa_1_4_extract_shift$0 = $b$1; - $d_sroa_1_4_extract_trunc = $d_sroa_1_4_extract_shift$0; - if (($n_sroa_1_4_extract_trunc | 0) == 0) { - $4 = ($rem | 0) != 0; - if (($d_sroa_1_4_extract_trunc | 0) == 0) { - if ($4) { - HEAP32[$rem >> 2] = ($n_sroa_0_0_extract_trunc >>> 0) % ($d_sroa_0_0_extract_trunc >>> 0); - HEAP32[$rem + 4 >> 2] = 0; - } - $_0$1 = 0; - $_0$0 = ($n_sroa_0_0_extract_trunc >>> 0) / ($d_sroa_0_0_extract_trunc >>> 0) >>> 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } else { - if (!$4) { - $_0$1 = 0; - $_0$0 = 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - HEAP32[$rem >> 2] = $a$0 & -1; - HEAP32[$rem + 4 >> 2] = $a$1 & 0; - $_0$1 = 0; - $_0$0 = 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - } - $17 = ($d_sroa_1_4_extract_trunc | 0) == 0; - do { - if (($d_sroa_0_0_extract_trunc | 0) == 0) { - if ($17) { - if (($rem | 0) != 0) { - HEAP32[$rem >> 2] = ($n_sroa_1_4_extract_trunc >>> 0) % ($d_sroa_0_0_extract_trunc >>> 0); - HEAP32[$rem + 4 >> 2] = 0; - } - $_0$1 = 0; - $_0$0 = ($n_sroa_1_4_extract_trunc >>> 0) / ($d_sroa_0_0_extract_trunc >>> 0) >>> 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - if (($n_sroa_0_0_extract_trunc | 0) == 0) { - if (($rem | 0) != 0) { - HEAP32[$rem >> 2] = 0; - HEAP32[$rem + 4 >> 2] = ($n_sroa_1_4_extract_trunc >>> 0) % ($d_sroa_1_4_extract_trunc >>> 0); - } - $_0$1 = 0; - $_0$0 = ($n_sroa_1_4_extract_trunc >>> 0) / ($d_sroa_1_4_extract_trunc >>> 0) >>> 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - $37 = $d_sroa_1_4_extract_trunc - 1 | 0; - if (($37 & $d_sroa_1_4_extract_trunc | 0) == 0) { - if (($rem | 0) != 0) { - HEAP32[$rem >> 2] = 0 | $a$0 & -1; - HEAP32[$rem + 4 >> 2] = $37 & $n_sroa_1_4_extract_trunc | $a$1 & 0; - } - $_0$1 = 0; - $_0$0 = $n_sroa_1_4_extract_trunc >>> ((_llvm_cttz_i32($d_sroa_1_4_extract_trunc | 0) | 0) >>> 0); - return (tempRet0 = $_0$1, $_0$0) | 0; - } - $49 = Math_clz32($d_sroa_1_4_extract_trunc | 0) | 0; - $51 = $49 - (Math_clz32($n_sroa_1_4_extract_trunc | 0) | 0) | 0; - if ($51 >>> 0 <= 30) { - $57 = $51 + 1 | 0; - $58 = 31 - $51 | 0; - $sr_1_ph = $57; - $r_sroa_0_1_ph = $n_sroa_1_4_extract_trunc << $58 | $n_sroa_0_0_extract_trunc >>> ($57 >>> 0); - $r_sroa_1_1_ph = $n_sroa_1_4_extract_trunc >>> ($57 >>> 0); - $q_sroa_0_1_ph = 0; - $q_sroa_1_1_ph = $n_sroa_0_0_extract_trunc << $58; - break; - } - if (($rem | 0) == 0) { - $_0$1 = 0; - $_0$0 = 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - HEAP32[$rem >> 2] = 0 | $a$0 & -1; - HEAP32[$rem + 4 >> 2] = $n_sroa_1_4_extract_shift$0 | $a$1 & 0; - $_0$1 = 0; - $_0$0 = 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } else { - if (!$17) { - $117 = Math_clz32($d_sroa_1_4_extract_trunc | 0) | 0; - $119 = $117 - (Math_clz32($n_sroa_1_4_extract_trunc | 0) | 0) | 0; - if ($119 >>> 0 <= 31) { - $125 = $119 + 1 | 0; - $126 = 31 - $119 | 0; - $130 = $119 - 31 >> 31; - $sr_1_ph = $125; - $r_sroa_0_1_ph = $n_sroa_0_0_extract_trunc >>> ($125 >>> 0) & $130 | $n_sroa_1_4_extract_trunc << $126; - $r_sroa_1_1_ph = $n_sroa_1_4_extract_trunc >>> ($125 >>> 0) & $130; - $q_sroa_0_1_ph = 0; - $q_sroa_1_1_ph = $n_sroa_0_0_extract_trunc << $126; - break; - } - if (($rem | 0) == 0) { - $_0$1 = 0; - $_0$0 = 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - HEAP32[$rem >> 2] = 0 | $a$0 & -1; - HEAP32[$rem + 4 >> 2] = $n_sroa_1_4_extract_shift$0 | $a$1 & 0; - $_0$1 = 0; - $_0$0 = 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - $66 = $d_sroa_0_0_extract_trunc - 1 | 0; - if (($66 & $d_sroa_0_0_extract_trunc | 0) != 0) { - $86 = (Math_clz32($d_sroa_0_0_extract_trunc | 0) | 0) + 33 | 0; - $88 = $86 - (Math_clz32($n_sroa_1_4_extract_trunc | 0) | 0) | 0; - $89 = 64 - $88 | 0; - $91 = 32 - $88 | 0; - $92 = $91 >> 31; - $95 = $88 - 32 | 0; - $105 = $95 >> 31; - $sr_1_ph = $88; - $r_sroa_0_1_ph = $91 - 1 >> 31 & $n_sroa_1_4_extract_trunc >>> ($95 >>> 0) | ($n_sroa_1_4_extract_trunc << $91 | $n_sroa_0_0_extract_trunc >>> ($88 >>> 0)) & $105; - $r_sroa_1_1_ph = $105 & $n_sroa_1_4_extract_trunc >>> ($88 >>> 0); - $q_sroa_0_1_ph = $n_sroa_0_0_extract_trunc << $89 & $92; - $q_sroa_1_1_ph = ($n_sroa_1_4_extract_trunc << $89 | $n_sroa_0_0_extract_trunc >>> ($95 >>> 0)) & $92 | $n_sroa_0_0_extract_trunc << $91 & $88 - 33 >> 31; - break; - } - if (($rem | 0) != 0) { - HEAP32[$rem >> 2] = $66 & $n_sroa_0_0_extract_trunc; - HEAP32[$rem + 4 >> 2] = 0; - } - if (($d_sroa_0_0_extract_trunc | 0) == 1) { - $_0$1 = $n_sroa_1_4_extract_shift$0 | $a$1 & 0; - $_0$0 = 0 | $a$0 & -1; - return (tempRet0 = $_0$1, $_0$0) | 0; - } else { - $78 = _llvm_cttz_i32($d_sroa_0_0_extract_trunc | 0) | 0; - $_0$1 = 0 | $n_sroa_1_4_extract_trunc >>> ($78 >>> 0); - $_0$0 = $n_sroa_1_4_extract_trunc << 32 - $78 | $n_sroa_0_0_extract_trunc >>> ($78 >>> 0) | 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - } - } while (0); - if (($sr_1_ph | 0) == 0) { - $q_sroa_1_1_lcssa = $q_sroa_1_1_ph; - $q_sroa_0_1_lcssa = $q_sroa_0_1_ph; - $r_sroa_1_1_lcssa = $r_sroa_1_1_ph; - $r_sroa_0_1_lcssa = $r_sroa_0_1_ph; - $carry_0_lcssa$1 = 0; - $carry_0_lcssa$0 = 0; - } else { - $d_sroa_0_0_insert_insert99$0 = 0 | $b$0 & -1; - $d_sroa_0_0_insert_insert99$1 = $d_sroa_1_4_extract_shift$0 | $b$1 & 0; - $137$0 = _i64Add($d_sroa_0_0_insert_insert99$0 | 0, $d_sroa_0_0_insert_insert99$1 | 0, -1, -1) | 0; - $137$1 = tempRet0; - $q_sroa_1_1198 = $q_sroa_1_1_ph; - $q_sroa_0_1199 = $q_sroa_0_1_ph; - $r_sroa_1_1200 = $r_sroa_1_1_ph; - $r_sroa_0_1201 = $r_sroa_0_1_ph; - $sr_1202 = $sr_1_ph; - $carry_0203 = 0; - while (1) { - $147 = $q_sroa_0_1199 >>> 31 | $q_sroa_1_1198 << 1; - $149 = $carry_0203 | $q_sroa_0_1199 << 1; - $r_sroa_0_0_insert_insert42$0 = 0 | ($r_sroa_0_1201 << 1 | $q_sroa_1_1198 >>> 31); - $r_sroa_0_0_insert_insert42$1 = $r_sroa_0_1201 >>> 31 | $r_sroa_1_1200 << 1 | 0; - _i64Subtract($137$0, $137$1, $r_sroa_0_0_insert_insert42$0, $r_sroa_0_0_insert_insert42$1) | 0; - $150$1 = tempRet0; - $151$0 = $150$1 >> 31 | (($150$1 | 0) < 0 ? -1 : 0) << 1; - $152 = $151$0 & 1; - $154$0 = _i64Subtract($r_sroa_0_0_insert_insert42$0, $r_sroa_0_0_insert_insert42$1, $151$0 & $d_sroa_0_0_insert_insert99$0, ((($150$1 | 0) < 0 ? -1 : 0) >> 31 | (($150$1 | 0) < 0 ? -1 : 0) << 1) & $d_sroa_0_0_insert_insert99$1) | 0; - $r_sroa_0_0_extract_trunc = $154$0; - $r_sroa_1_4_extract_trunc = tempRet0; - $155 = $sr_1202 - 1 | 0; - if (($155 | 0) == 0) { - break; - } else { - $q_sroa_1_1198 = $147; - $q_sroa_0_1199 = $149; - $r_sroa_1_1200 = $r_sroa_1_4_extract_trunc; - $r_sroa_0_1201 = $r_sroa_0_0_extract_trunc; - $sr_1202 = $155; - $carry_0203 = $152; - } - } - $q_sroa_1_1_lcssa = $147; - $q_sroa_0_1_lcssa = $149; - $r_sroa_1_1_lcssa = $r_sroa_1_4_extract_trunc; - $r_sroa_0_1_lcssa = $r_sroa_0_0_extract_trunc; - $carry_0_lcssa$1 = 0; - $carry_0_lcssa$0 = $152; - } - $q_sroa_0_0_insert_ext75$0 = $q_sroa_0_1_lcssa; - $q_sroa_0_0_insert_ext75$1 = 0; - $q_sroa_0_0_insert_insert77$1 = $q_sroa_1_1_lcssa | $q_sroa_0_0_insert_ext75$1; - if (($rem | 0) != 0) { - HEAP32[$rem >> 2] = 0 | $r_sroa_0_1_lcssa; - HEAP32[$rem + 4 >> 2] = $r_sroa_1_1_lcssa | 0; - } - $_0$1 = (0 | $q_sroa_0_0_insert_ext75$0) >>> 31 | $q_sroa_0_0_insert_insert77$1 << 1 | ($q_sroa_0_0_insert_ext75$1 << 1 | $q_sroa_0_0_insert_ext75$0 >>> 31) & 0 | $carry_0_lcssa$1; - $_0$0 = ($q_sroa_0_0_insert_ext75$0 << 1 | 0 >>> 31) & -2 | $carry_0_lcssa$0; - return (tempRet0 = $_0$1, $_0$0) | 0; -} -// ======================================================================= - - function dynCall_ii(index,a1) { @@ -24374,68 +20435,75 @@ function dynCall_iiii(index,a1,a2,a3) { return FUNCTION_TABLE_iiii[index&3](a1|0,a2|0,a3|0)|0; } - -function dynCall_vi(index,a1) { - index = index|0; - a1=a1|0; - FUNCTION_TABLE_vi[index&1](a1|0); -} - function b0(p0) { p0 = p0|0; abort(0);return 0; } function b1(p0,p1,p2) { p0 = p0|0;p1 = p1|0;p2 = p2|0; abort(1);return 0; } -function b2(p0) { - p0 = p0|0; abort(2); -} // EMSCRIPTEN_END_FUNCS var FUNCTION_TABLE_ii = [b0,___stdio_close]; var FUNCTION_TABLE_iiii = [b1,___stdout_write,___stdio_seek,___stdio_write]; -var FUNCTION_TABLE_vi = [b2,_cleanup392]; - return { _curve25519_verify: _curve25519_verify, _crypto_sign_ed25519_ref10_ge_scalarmult_base: _crypto_sign_ed25519_ref10_ge_scalarmult_base, _curve25519_sign: _curve25519_sign, _fflush: _fflush, _i64Add: _i64Add, _memmove: _memmove, _bitshift64Ashr: _bitshift64Ashr, _sph_sha512_init: _sph_sha512_init, _curve25519_donna: _curve25519_donna, _memset: _memset, _malloc: _malloc, _memcpy: _memcpy, _bitshift64Lshr: _bitshift64Lshr, _free: _free, _i64Subtract: _i64Subtract, ___errno_location: ___errno_location, _bitshift64Shl: _bitshift64Shl, runPostSets: runPostSets, stackAlloc: stackAlloc, stackSave: stackSave, stackRestore: stackRestore, establishStackSpace: establishStackSpace, setThrew: setThrew, setTempRet0: setTempRet0, getTempRet0: getTempRet0, dynCall_ii: dynCall_ii, dynCall_iiii: dynCall_iiii, dynCall_vi: dynCall_vi }; + return { stackSave: stackSave, _curve25519_sign: _curve25519_sign, getTempRet0: getTempRet0, _bitshift64Lshr: _bitshift64Lshr, _i64Subtract: _i64Subtract, _bitshift64Shl: _bitshift64Shl, _curve25519_verify: _curve25519_verify, _fflush: _fflush, _bitshift64Ashr: _bitshift64Ashr, _memset: _memset, _sbrk: _sbrk, _memcpy: _memcpy, stackAlloc: stackAlloc, ___muldi3: ___muldi3, _crypto_sign_ed25519_ref10_ge_scalarmult_base: _crypto_sign_ed25519_ref10_ge_scalarmult_base, _curve25519_donna: _curve25519_donna, setTempRet0: setTempRet0, _i64Add: _i64Add, _emscripten_get_global_libc: _emscripten_get_global_libc, ___errno_location: ___errno_location, ___muldsi3: ___muldsi3, _free: _free, runPostSets: runPostSets, setThrew: setThrew, establishStackSpace: establishStackSpace, _memmove: _memmove, _sph_sha512_init: _sph_sha512_init, stackRestore: stackRestore, _malloc: _malloc, stackAlloc: stackAlloc, stackSave: stackSave, stackRestore: stackRestore, establishStackSpace: establishStackSpace, setThrew: setThrew, setTempRet0: setTempRet0, getTempRet0: getTempRet0, dynCall_ii: dynCall_ii, dynCall_iiii: dynCall_iiii }; }) // EMSCRIPTEN_END_ASM (Module.asmGlobalArg, Module.asmLibraryArg, buffer); -var _curve25519_verify = Module["_curve25519_verify"] = asm["_curve25519_verify"]; -var _crypto_sign_ed25519_ref10_ge_scalarmult_base = Module["_crypto_sign_ed25519_ref10_ge_scalarmult_base"] = asm["_crypto_sign_ed25519_ref10_ge_scalarmult_base"]; + +var stackSave = Module["stackSave"] = asm["stackSave"]; var _curve25519_sign = Module["_curve25519_sign"] = asm["_curve25519_sign"]; +var getTempRet0 = Module["getTempRet0"] = asm["getTempRet0"]; +var _bitshift64Lshr = Module["_bitshift64Lshr"] = asm["_bitshift64Lshr"]; +var _i64Subtract = Module["_i64Subtract"] = asm["_i64Subtract"]; +var _bitshift64Shl = Module["_bitshift64Shl"] = asm["_bitshift64Shl"]; +var _curve25519_verify = Module["_curve25519_verify"] = asm["_curve25519_verify"]; var _fflush = Module["_fflush"] = asm["_fflush"]; -var runPostSets = Module["runPostSets"] = asm["runPostSets"]; -var _i64Add = Module["_i64Add"] = asm["_i64Add"]; -var _memmove = Module["_memmove"] = asm["_memmove"]; var _bitshift64Ashr = Module["_bitshift64Ashr"] = asm["_bitshift64Ashr"]; -var _sph_sha512_init = Module["_sph_sha512_init"] = asm["_sph_sha512_init"]; -var _curve25519_donna = Module["_curve25519_donna"] = asm["_curve25519_donna"]; var _memset = Module["_memset"] = asm["_memset"]; -var _malloc = Module["_malloc"] = asm["_malloc"]; +var _sbrk = Module["_sbrk"] = asm["_sbrk"]; var _memcpy = Module["_memcpy"] = asm["_memcpy"]; -var _bitshift64Lshr = Module["_bitshift64Lshr"] = asm["_bitshift64Lshr"]; -var _free = Module["_free"] = asm["_free"]; -var _i64Subtract = Module["_i64Subtract"] = asm["_i64Subtract"]; +var stackAlloc = Module["stackAlloc"] = asm["stackAlloc"]; +var ___muldi3 = Module["___muldi3"] = asm["___muldi3"]; +var _crypto_sign_ed25519_ref10_ge_scalarmult_base = Module["_crypto_sign_ed25519_ref10_ge_scalarmult_base"] = asm["_crypto_sign_ed25519_ref10_ge_scalarmult_base"]; +var _curve25519_donna = Module["_curve25519_donna"] = asm["_curve25519_donna"]; +var setTempRet0 = Module["setTempRet0"] = asm["setTempRet0"]; +var _i64Add = Module["_i64Add"] = asm["_i64Add"]; +var _emscripten_get_global_libc = Module["_emscripten_get_global_libc"] = asm["_emscripten_get_global_libc"]; var ___errno_location = Module["___errno_location"] = asm["___errno_location"]; -var _bitshift64Shl = Module["_bitshift64Shl"] = asm["_bitshift64Shl"]; +var ___muldsi3 = Module["___muldsi3"] = asm["___muldsi3"]; +var _free = Module["_free"] = asm["_free"]; +var runPostSets = Module["runPostSets"] = asm["runPostSets"]; +var setThrew = Module["setThrew"] = asm["setThrew"]; +var establishStackSpace = Module["establishStackSpace"] = asm["establishStackSpace"]; +var _memmove = Module["_memmove"] = asm["_memmove"]; +var _sph_sha512_init = Module["_sph_sha512_init"] = asm["_sph_sha512_init"]; +var stackRestore = Module["stackRestore"] = asm["stackRestore"]; +var _malloc = Module["_malloc"] = asm["_malloc"]; var dynCall_ii = Module["dynCall_ii"] = asm["dynCall_ii"]; var dynCall_iiii = Module["dynCall_iiii"] = asm["dynCall_iiii"]; -var dynCall_vi = Module["dynCall_vi"] = asm["dynCall_vi"]; ; +Runtime.stackAlloc = Module['stackAlloc']; +Runtime.stackSave = Module['stackSave']; +Runtime.stackRestore = Module['stackRestore']; +Runtime.establishStackSpace = Module['establishStackSpace']; +Runtime.setTempRet0 = Module['setTempRet0']; +Runtime.getTempRet0 = Module['getTempRet0']; + -Runtime.stackAlloc = asm['stackAlloc']; -Runtime.stackSave = asm['stackSave']; -Runtime.stackRestore = asm['stackRestore']; -Runtime.establishStackSpace = asm['establishStackSpace']; +// === Auto-generated postamble setup entry stuff === -Runtime.setTempRet0 = asm['setTempRet0']; -Runtime.getTempRet0 = asm['getTempRet0']; +Module['asm'] = asm; -// === Auto-generated postamble setup entry stuff === + +/** + * @constructor + * @extends {Error} + */ function ExitStatus(status) { this.name = "ExitStatus"; this.message = "Program terminated with exit(" + status + ")"; @@ -24455,8 +20523,6 @@ dependenciesFulfilled = function runCaller() { } Module['callMain'] = Module.callMain = function callMain(args) { - assert(runDependencies == 0, 'cannot call main when async dependencies remain! (listen on __ATMAIN__)'); - assert(__ATPRERUN__.length == 0, 'cannot call main when preRun functions remain to be called'); args = args || []; @@ -24496,8 +20562,12 @@ Module['callMain'] = Module.callMain = function callMain(args) { Module['noExitRuntime'] = true; return; } else { - if (e && typeof e === 'object' && e.stack) Module.printErr('exception thrown: ' + [e, e.stack]); - throw e; + var toLog = e; + if (e && typeof e === 'object' && e.stack) { + toLog = [e, e.stack]; + } + Module.printErr('exception thrown: ' + toLog); + Module['quit'](1, e); } } finally { calledMain = true; @@ -24507,6 +20577,7 @@ Module['callMain'] = Module.callMain = function callMain(args) { +/** @type {function(Array=)} */ function run(args) { args = args || Module['arguments']; @@ -24516,6 +20587,7 @@ function run(args) { return; } + preRun(); if (runDependencies > 0) return; // a preRun added a dependency, run will be called later @@ -24525,7 +20597,7 @@ function run(args) { if (Module['calledRun']) return; // run may have just been called while the async setStatus time below was happening Module['calledRun'] = true; - if (ABORT) return; + if (ABORT) return; ensureInitRuntime(); @@ -24571,31 +20643,19 @@ function exit(status, implicit) { } if (ENVIRONMENT_IS_NODE) { - // Work around a node.js bug where stdout buffer is not flushed at process exit: - // Instead of process.exit() directly, wait for stdout flush event. - // See https://github.com/joyent/node/issues/1669 and https://github.com/kripken/emscripten/issues/2582 - // Workaround is based on https://github.com/RReverser/acorn/commit/50ab143cecc9ed71a2d66f78b4aec3bb2e9844f6 - process['stdout']['once']('drain', function () { - process['exit'](status); - }); - console.log(' '); // Make sure to print something to force the drain event to occur, in case the stdout buffer was empty. - // Work around another node bug where sometimes 'drain' is never fired - make another effort - // to emit the exit status, after a significant delay (if node hasn't fired drain by then, give up) - setTimeout(function() { - process['exit'](status); - }, 500); - } else - if (ENVIRONMENT_IS_SHELL && typeof quit === 'function') { - quit(status); + process['exit'](status); } - // if we reach here, we must throw an exception to halt the current execution - throw new ExitStatus(status); + Module['quit'](status, new ExitStatus(status)); } Module['exit'] = Module.exit = exit; var abortDecorators = []; function abort(what) { + if (Module['onAbort']) { + Module['onAbort'](what); + } + if (what !== undefined) { Module.print(what); Module.printErr(what); @@ -24643,7 +20703,6 @@ run(); - // {{MODULE_ADDITIONS}} diff --git a/build/curve25519_concat.js b/build/curve25519_concat.js index b933057..840efc3 100644 --- a/build/curve25519_concat.js +++ b/build/curve25519_concat.js @@ -30,38 +30,51 @@ for (var key in Module) { // The environment setup code below is customized to use Module. // *** Environment setup code *** -var ENVIRONMENT_IS_WEB = typeof window === 'object'; +var ENVIRONMENT_IS_WEB = false; +var ENVIRONMENT_IS_WORKER = false; +var ENVIRONMENT_IS_NODE = false; +var ENVIRONMENT_IS_SHELL = false; + // Three configurations we can be running in: // 1) We could be the application main() thread running in the main JS UI thread. (ENVIRONMENT_IS_WORKER == false and ENVIRONMENT_IS_PTHREAD == false) // 2) We could be the application main() thread proxied to worker. (with Emscripten -s PROXY_TO_WORKER=1) (ENVIRONMENT_IS_WORKER == true, ENVIRONMENT_IS_PTHREAD == false) // 3) We could be an application pthread running in a worker. (ENVIRONMENT_IS_WORKER == true and ENVIRONMENT_IS_PTHREAD == true) -var ENVIRONMENT_IS_WORKER = typeof importScripts === 'function'; -var ENVIRONMENT_IS_NODE = typeof process === 'object' && typeof require === 'function' && !ENVIRONMENT_IS_WEB && !ENVIRONMENT_IS_WORKER; -var ENVIRONMENT_IS_SHELL = !ENVIRONMENT_IS_WEB && !ENVIRONMENT_IS_NODE && !ENVIRONMENT_IS_WORKER; + +if (Module['ENVIRONMENT']) { + if (Module['ENVIRONMENT'] === 'WEB') { + ENVIRONMENT_IS_WEB = true; + } else if (Module['ENVIRONMENT'] === 'WORKER') { + ENVIRONMENT_IS_WORKER = true; + } else if (Module['ENVIRONMENT'] === 'NODE') { + ENVIRONMENT_IS_NODE = true; + } else if (Module['ENVIRONMENT'] === 'SHELL') { + ENVIRONMENT_IS_SHELL = true; + } else { + throw new Error('The provided Module[\'ENVIRONMENT\'] value is not valid. It must be one of: WEB|WORKER|NODE|SHELL.'); + } +} else { + ENVIRONMENT_IS_WEB = typeof window === 'object'; + ENVIRONMENT_IS_WORKER = typeof importScripts === 'function'; + ENVIRONMENT_IS_NODE = typeof process === 'object' && typeof require === 'function' && !ENVIRONMENT_IS_WEB && !ENVIRONMENT_IS_WORKER; + ENVIRONMENT_IS_SHELL = !ENVIRONMENT_IS_WEB && !ENVIRONMENT_IS_NODE && !ENVIRONMENT_IS_WORKER; +} + if (ENVIRONMENT_IS_NODE) { // Expose functionality in the same simple way that the shells work // Note that we pollute the global namespace here, otherwise we break in node - if (!Module['print']) Module['print'] = function print(x) { - process['stdout'].write(x + '\n'); - }; - if (!Module['printErr']) Module['printErr'] = function printErr(x) { - process['stderr'].write(x + '\n'); - }; + if (!Module['print']) Module['print'] = console.log; + if (!Module['printErr']) Module['printErr'] = console.warn; - var nodeFS = require('fs'); - var nodePath = require('path'); + var nodeFS; + var nodePath; - Module['read'] = function read(filename, binary) { + Module['read'] = function shell_read(filename, binary) { + if (!nodeFS) nodeFS = require('fs'); + if (!nodePath) nodePath = require('path'); filename = nodePath['normalize'](filename); var ret = nodeFS['readFileSync'](filename); - // The path is absolute if the normalized version is the same as the resolved. - if (!ret && filename != nodePath['resolve'](filename)) { - filename = path.join(__dirname, '..', 'src', filename); - ret = nodeFS['readFileSync'](filename); - } - if (ret && !binary) ret = ret.toString(); - return ret; + return binary ? ret : ret.toString(); }; Module['readBinary'] = function readBinary(filename) { @@ -107,7 +120,7 @@ else if (ENVIRONMENT_IS_SHELL) { if (typeof read != 'undefined') { Module['read'] = read; } else { - Module['read'] = function read() { throw 'no read() available (jsc?)' }; + Module['read'] = function shell_read() { throw 'no read() available' }; } Module['readBinary'] = function readBinary(f) { @@ -125,25 +138,56 @@ else if (ENVIRONMENT_IS_SHELL) { Module['arguments'] = arguments; } + if (typeof quit === 'function') { + Module['quit'] = function(status, toThrow) { + quit(status); + } + } + } else if (ENVIRONMENT_IS_WEB || ENVIRONMENT_IS_WORKER) { - Module['read'] = function read(url) { + Module['read'] = function shell_read(url) { var xhr = new XMLHttpRequest(); xhr.open('GET', url, false); xhr.send(null); return xhr.responseText; }; + if (ENVIRONMENT_IS_WORKER) { + Module['readBinary'] = function readBinary(url) { + var xhr = new XMLHttpRequest(); + xhr.open('GET', url, false); + xhr.responseType = 'arraybuffer'; + xhr.send(null); + return new Uint8Array(xhr.response); + }; + } + + Module['readAsync'] = function readAsync(url, onload, onerror) { + var xhr = new XMLHttpRequest(); + xhr.open('GET', url, true); + xhr.responseType = 'arraybuffer'; + xhr.onload = function xhr_onload() { + if (xhr.status == 200 || (xhr.status == 0 && xhr.response)) { // file URLs can return 0 + onload(xhr.response); + } else { + onerror(); + } + }; + xhr.onerror = onerror; + xhr.send(null); + }; + if (typeof arguments != 'undefined') { Module['arguments'] = arguments; } if (typeof console !== 'undefined') { - if (!Module['print']) Module['print'] = function print(x) { + if (!Module['print']) Module['print'] = function shell_print(x) { console.log(x); }; - if (!Module['printErr']) Module['printErr'] = function printErr(x) { - console.log(x); + if (!Module['printErr']) Module['printErr'] = function shell_printErr(x) { + console.warn(x); }; } else { // Probably a worker, and without console.log. We can do very little here... @@ -188,6 +232,11 @@ if (!Module['arguments']) { if (!Module['thisProgram']) { Module['thisProgram'] = './this.program'; } +if (!Module['quit']) { + Module['quit'] = function(status, toThrow) { + throw toThrow; + } +} // *** Environment setup code *** @@ -205,14 +254,19 @@ for (var key in moduleOverrides) { Module[key] = moduleOverrides[key]; } } +// Free the object hierarchy contained in the overrides, this lets the GC +// reclaim data used e.g. in memoryInitializerRequest, which is a large typed array. +moduleOverrides = undefined; + +// {{PREAMBLE_ADDITIONS}} // === Preamble library stuff === -// Documentation for the public APIs defined in this file must be updated in: +// Documentation for the public APIs defined in this file must be updated in: // site/source/docs/api_reference/preamble.js.rst -// A prebuilt local version of the documentation is available at: +// A prebuilt local version of the documentation is available at: // site/build/text/docs/api_reference/preamble.js.txt // You can also build docs locally as HTML or other formats in site/ // An online HTML version (which may be of a different version of Emscripten) @@ -225,6 +279,7 @@ for (var key in moduleOverrides) { var Runtime = { setTempRet0: function (value) { tempRet0 = value; + return value; }, getTempRet0: function () { return tempRet0; @@ -280,9 +335,7 @@ var Runtime = { }, dynCall: function (sig, ptr, args) { if (args && args.length) { - if (!args.splice) args = Array.prototype.slice.call(args); - args.splice(0, 0, ptr); - return Module['dynCall_' + sig].apply(null, args); + return Module['dynCall_' + sig].apply(null, [ptr].concat(args)); } else { return Module['dynCall_' + sig].call(null, ptr); } @@ -315,9 +368,21 @@ var Runtime = { } var sigCache = Runtime.funcWrappers[sig]; if (!sigCache[func]) { - sigCache[func] = function dynCall_wrapper() { - return Runtime.dynCall(sig, func, arguments); - }; + // optimize away arguments usage in common cases + if (sig.length === 1) { + sigCache[func] = function dynCall_wrapper() { + return Runtime.dynCall(sig, func); + }; + } else if (sig.length === 2) { + sigCache[func] = function dynCall_wrapper(arg) { + return Runtime.dynCall(sig, func, [arg]); + }; + } else { + // general case + sigCache[func] = function dynCall_wrapper() { + return Runtime.dynCall(sig, func, Array.prototype.slice.call(arguments)); + }; + } } return sigCache[func]; }, @@ -326,7 +391,7 @@ var Runtime = { }, stackAlloc: function (size) { var ret = STACKTOP;STACKTOP = (STACKTOP + size)|0;STACKTOP = (((STACKTOP)+15)&-16); return ret; }, staticAlloc: function (size) { var ret = STATICTOP;STATICTOP = (STATICTOP + size)|0;STATICTOP = (((STATICTOP)+15)&-16); return ret; }, - dynamicAlloc: function (size) { var ret = DYNAMICTOP;DYNAMICTOP = (DYNAMICTOP + size)|0;DYNAMICTOP = (((DYNAMICTOP)+15)&-16); if (DYNAMICTOP >= TOTAL_MEMORY) { var success = enlargeMemory(); if (!success) { DYNAMICTOP = ret; return 0; } }; return ret; }, + dynamicAlloc: function (size) { var ret = HEAP32[DYNAMICTOP_PTR>>2];var end = (((ret + size + 15)|0) & -16);HEAP32[DYNAMICTOP_PTR>>2] = end;if (end >= TOTAL_MEMORY) {var success = enlargeMemory();if (!success) {HEAP32[DYNAMICTOP_PTR>>2] = ret;return 0;}}return ret;}, alignMemory: function (size,quantum) { var ret = size = Math.ceil((size)/(quantum ? quantum : 16))*(quantum ? quantum : 16); return ret; }, makeBigInt: function (low,high,unsigned) { var ret = (unsigned ? ((+((low>>>0)))+((+((high>>>0)))*4294967296.0)) : ((+((low>>>0)))+((+((high|0)))*4294967296.0))); return ret; }, GLOBAL_BASE: 8, @@ -344,18 +409,10 @@ Module["Runtime"] = Runtime; // Runtime essentials //======================================== -var __THREW__ = 0; // Used in checking for thrown exceptions. - -var ABORT = false; // whether we are quitting the application. no code should run after this. set in exit() and abort() +var ABORT = 0; // whether we are quitting the application. no code should run after this. set in exit() and abort() var EXITSTATUS = 0; -var undef = 0; -// tempInt is used for 32-bit signed values or smaller. tempBigInt is used -// for 32-bit unsigned values or more than 32 bits. TODO: audit all uses of tempInt -var tempValue, tempInt, tempBigInt, tempInt2, tempBigInt2, tempPair, tempBigIntI, tempBigIntR, tempBigIntS, tempBigIntP, tempBigIntD, tempDouble, tempFloat; -var tempI64, tempI64b; -var tempRet0, tempRet1, tempRet2, tempRet3, tempRet4, tempRet5, tempRet6, tempRet7, tempRet8, tempRet9; - +/** @type {function(*, string=)} */ function assert(condition, text) { if (!condition) { abort('Assertion failed: ' + text); @@ -368,9 +425,7 @@ var globalScope = this; function getCFunc(ident) { var func = Module['_' + ident]; // closure exported function if (!func) { - try { - func = eval('_' + ident); // explicit lookup - } catch(e) {} + try { func = eval('_' + ident); } catch(e) {} } assert(func, 'Cannot call unknown function ' + ident + ' (perhaps LLVM optimizations or closure removed it?)'); return func; @@ -398,8 +453,9 @@ var cwrap, ccall; var ret = 0; if (str !== null && str !== undefined && str !== 0) { // null string // at most 4 bytes per UTF-8 code point, +1 for the trailing '\0' - ret = Runtime.stackAlloc((str.length << 2) + 1); - writeStringToMemory(str, ret); + var len = (str.length << 2) + 1; + ret = Runtime.stackAlloc(len); + stringToUTF8(str, ret, len); } return ret; } @@ -407,7 +463,7 @@ var cwrap, ccall; // For fast lookup of conversion functions var toC = {'string' : JSfuncs['stringToC'], 'array' : JSfuncs['arrayToC']}; - // C calling interface. + // C calling interface. ccall = function ccallFunc(ident, returnType, argTypes, args, opts) { var func = getCFunc(ident); var cArgs = []; @@ -437,22 +493,28 @@ var cwrap, ccall; return ret; } - var sourceRegex = /^function\s*\(([^)]*)\)\s*{\s*([^*]*?)[\s;]*(?:return\s*(.*?)[;\s]*)?}$/; + var sourceRegex = /^function\s*[a-zA-Z$_0-9]*\s*\(([^)]*)\)\s*{\s*([^*]*?)[\s;]*(?:return\s*(.*?)[;\s]*)?}$/; function parseJSFunc(jsfunc) { // Match the body and the return value of a javascript function source var parsed = jsfunc.toString().match(sourceRegex).slice(1); return {arguments : parsed[0], body : parsed[1], returnValue: parsed[2]} } - var JSsource = {}; - for (var fun in JSfuncs) { - if (JSfuncs.hasOwnProperty(fun)) { - // Elements of toCsource are arrays of three items: - // the code, and the return value - JSsource[fun] = parseJSFunc(JSfuncs[fun]); + + // sources of useful functions. we create this lazily as it can trigger a source decompression on this entire file + var JSsource = null; + function ensureJSsource() { + if (!JSsource) { + JSsource = {}; + for (var fun in JSfuncs) { + if (JSfuncs.hasOwnProperty(fun)) { + // Elements of toCsource are arrays of three items: + // the code, and the return value + JSsource[fun] = parseJSFunc(JSfuncs[fun]); + } + } } } - cwrap = function cwrap(ident, returnType, argTypes) { argTypes = argTypes || []; var cfunc = getCFunc(ident); @@ -470,6 +532,7 @@ var cwrap, ccall; if (!numericArgs) { // Generate the code needed to convert the arguments from javascript // values to pointers + ensureJSsource(); funcstr += 'var stack = ' + JSsource['stackSave'].body + ';'; for (var i = 0; i < nargs; i++) { var arg = argNames[i], type = argTypes[i]; @@ -477,7 +540,7 @@ var cwrap, ccall; var convertCode = JSsource[type + 'ToC']; // [code, return] funcstr += 'var ' + convertCode.arguments + ' = ' + arg + ';'; funcstr += convertCode.body + ';'; - funcstr += arg + '=' + convertCode.returnValue + ';'; + funcstr += arg + '=(' + convertCode.returnValue + ');'; } } @@ -492,6 +555,7 @@ var cwrap, ccall; } if (!numericArgs) { // If we had a stack, restore it + ensureJSsource(); funcstr += JSsource['stackRestore'].body.replace('()', '(stack)') + ';'; } funcstr += 'return ret})'; @@ -501,6 +565,7 @@ var cwrap, ccall; Module["ccall"] = ccall; Module["cwrap"] = cwrap; +/** @type {function(number, number, string, boolean=)} */ function setValue(ptr, value, type, noSafe) { type = type || 'i8'; if (type.charAt(type.length-1) === '*') type = 'i32'; // pointers are 32-bit @@ -517,7 +582,7 @@ function setValue(ptr, value, type, noSafe) { } Module["setValue"] = setValue; - +/** @type {function(number, string, boolean=)} */ function getValue(ptr, type, noSafe) { type = type || 'i8'; if (type.charAt(type.length-1) === '*') type = 'i32'; // pointers are 32-bit @@ -559,6 +624,7 @@ Module["ALLOC_NONE"] = ALLOC_NONE; // is initial data - if @slab is a number, then this does not matter at all and is // ignored. // @allocator: How to allocate memory, see ALLOC_* +/** @type {function((TypedArray|Array|number), string, number, number=)} */ function allocate(slab, types, allocator, ptr) { var zeroinit, size; if (typeof slab === 'number') { @@ -575,7 +641,7 @@ function allocate(slab, types, allocator, ptr) { if (allocator == ALLOC_NONE) { ret = ptr; } else { - ret = [_malloc, Runtime.stackAlloc, Runtime.staticAlloc, Runtime.dynamicAlloc][allocator === undefined ? ALLOC_STATIC : allocator](Math.max(size, singleType ? 1 : types.length)); + ret = [typeof _malloc === 'function' ? _malloc : Runtime.staticAlloc, Runtime.stackAlloc, Runtime.staticAlloc, Runtime.dynamicAlloc][allocator === undefined ? ALLOC_STATIC : allocator](Math.max(size, singleType ? 1 : types.length)); } if (zeroinit) { @@ -594,7 +660,7 @@ function allocate(slab, types, allocator, ptr) { if (singleType === 'i8') { if (slab.subarray || slab.slice) { - HEAPU8.set(slab, ret); + HEAPU8.set(/** @type {!Uint8Array} */ (slab), ret); } else { HEAPU8.set(new Uint8Array(slab), ret); } @@ -634,12 +700,13 @@ Module["allocate"] = allocate; // Allocate memory during any stage of startup - static memory early on, dynamic memory later, malloc when ready function getMemory(size) { if (!staticSealed) return Runtime.staticAlloc(size); - if ((typeof _sbrk !== 'undefined' && !_sbrk.called) || !runtimeInitialized) return Runtime.dynamicAlloc(size); + if (!runtimeInitialized) return Runtime.dynamicAlloc(size); return _malloc(size); } Module["getMemory"] = getMemory; -function Pointer_stringify(ptr, /* optional */ length) { +/** @type {function(number, number=)} */ +function Pointer_stringify(ptr, length) { if (length === 0 || !ptr) return ''; // TODO: use TextDecoder // Find the length, and check for UTF while doing so @@ -696,39 +763,49 @@ Module["stringToAscii"] = stringToAscii; // Given a pointer 'ptr' to a null-terminated UTF8-encoded string in the given array that contains uint8 values, returns // a copy of that string as a Javascript String object. +var UTF8Decoder = typeof TextDecoder !== 'undefined' ? new TextDecoder('utf8') : undefined; function UTF8ArrayToString(u8Array, idx) { - var u0, u1, u2, u3, u4, u5; + var endPtr = idx; + // TextDecoder needs to know the byte length in advance, it doesn't stop on null terminator by itself. + // Also, use the length info to avoid running tiny strings through TextDecoder, since .subarray() allocates garbage. + while (u8Array[endPtr]) ++endPtr; - var str = ''; - while (1) { - // For UTF8 byte structure, see http://en.wikipedia.org/wiki/UTF-8#Description and https://www.ietf.org/rfc/rfc2279.txt and https://tools.ietf.org/html/rfc3629 - u0 = u8Array[idx++]; - if (!u0) return str; - if (!(u0 & 0x80)) { str += String.fromCharCode(u0); continue; } - u1 = u8Array[idx++] & 63; - if ((u0 & 0xE0) == 0xC0) { str += String.fromCharCode(((u0 & 31) << 6) | u1); continue; } - u2 = u8Array[idx++] & 63; - if ((u0 & 0xF0) == 0xE0) { - u0 = ((u0 & 15) << 12) | (u1 << 6) | u2; - } else { - u3 = u8Array[idx++] & 63; - if ((u0 & 0xF8) == 0xF0) { - u0 = ((u0 & 7) << 18) | (u1 << 12) | (u2 << 6) | u3; + if (endPtr - idx > 16 && u8Array.subarray && UTF8Decoder) { + return UTF8Decoder.decode(u8Array.subarray(idx, endPtr)); + } else { + var u0, u1, u2, u3, u4, u5; + + var str = ''; + while (1) { + // For UTF8 byte structure, see http://en.wikipedia.org/wiki/UTF-8#Description and https://www.ietf.org/rfc/rfc2279.txt and https://tools.ietf.org/html/rfc3629 + u0 = u8Array[idx++]; + if (!u0) return str; + if (!(u0 & 0x80)) { str += String.fromCharCode(u0); continue; } + u1 = u8Array[idx++] & 63; + if ((u0 & 0xE0) == 0xC0) { str += String.fromCharCode(((u0 & 31) << 6) | u1); continue; } + u2 = u8Array[idx++] & 63; + if ((u0 & 0xF0) == 0xE0) { + u0 = ((u0 & 15) << 12) | (u1 << 6) | u2; } else { - u4 = u8Array[idx++] & 63; - if ((u0 & 0xFC) == 0xF8) { - u0 = ((u0 & 3) << 24) | (u1 << 18) | (u2 << 12) | (u3 << 6) | u4; + u3 = u8Array[idx++] & 63; + if ((u0 & 0xF8) == 0xF0) { + u0 = ((u0 & 7) << 18) | (u1 << 12) | (u2 << 6) | u3; } else { - u5 = u8Array[idx++] & 63; - u0 = ((u0 & 1) << 30) | (u1 << 24) | (u2 << 18) | (u3 << 12) | (u4 << 6) | u5; + u4 = u8Array[idx++] & 63; + if ((u0 & 0xFC) == 0xF8) { + u0 = ((u0 & 3) << 24) | (u1 << 18) | (u2 << 12) | (u3 << 6) | u4; + } else { + u5 = u8Array[idx++] & 63; + u0 = ((u0 & 1) << 30) | (u1 << 24) | (u2 << 18) | (u3 << 12) | (u4 << 6) | u5; + } } } - } - if (u0 < 0x10000) { - str += String.fromCharCode(u0); - } else { - var ch = u0 - 0x10000; - str += String.fromCharCode(0xD800 | (ch >> 10), 0xDC00 | (ch & 0x3FF)); + if (u0 < 0x10000) { + str += String.fromCharCode(u0); + } else { + var ch = u0 - 0x10000; + str += String.fromCharCode(0xD800 | (ch >> 10), 0xDC00 | (ch & 0x3FF)); + } } } } @@ -744,12 +821,12 @@ Module["UTF8ToString"] = UTF8ToString; // Copies the given Javascript String object 'str' to the given byte array at address 'outIdx', // encoded in UTF8 form and null-terminated. The copy will require at most str.length*4+1 bytes of space in the HEAP. -// Use the function lengthBytesUTF8() to compute the exact number of bytes (excluding null terminator) that this function will write. +// Use the function lengthBytesUTF8 to compute the exact number of bytes (excluding null terminator) that this function will write. // Parameters: // str: the Javascript string to copy. // outU8Array: the array to copy to. Each index in this array is assumed to be one 8-byte element. // outIdx: The starting offset in the array to begin the copying. -// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null +// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null // terminator, i.e. if maxBytesToWrite=1, only the null terminator will be written and nothing else. // maxBytesToWrite=0 does not write any bytes to the output, not even the null terminator. // Returns the number of bytes written, EXCLUDING the null terminator. @@ -809,7 +886,7 @@ Module["stringToUTF8Array"] = stringToUTF8Array; // Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr', // null-terminated and encoded in UTF8 form. The copy will require at most str.length*4+1 bytes of space in the HEAP. -// Use the function lengthBytesUTF8() to compute the exact number of bytes (excluding null terminator) that this function will write. +// Use the function lengthBytesUTF8 to compute the exact number of bytes (excluding null terminator) that this function will write. // Returns the number of bytes written, EXCLUDING the null terminator. function stringToUTF8(str, outPtr, maxBytesToWrite) { @@ -847,20 +924,31 @@ Module["lengthBytesUTF8"] = lengthBytesUTF8; // Given a pointer 'ptr' to a null-terminated UTF16LE-encoded string in the emscripten HEAP, returns // a copy of that string as a Javascript String object. +var UTF16Decoder = typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-16le') : undefined; function UTF16ToString(ptr) { - var i = 0; + var endPtr = ptr; + // TextDecoder needs to know the byte length in advance, it doesn't stop on null terminator by itself. + // Also, use the length info to avoid running tiny strings through TextDecoder, since .subarray() allocates garbage. + var idx = endPtr >> 1; + while (HEAP16[idx]) ++idx; + endPtr = idx << 1; + + if (endPtr - ptr > 32 && UTF16Decoder) { + return UTF16Decoder.decode(HEAPU8.subarray(ptr, endPtr)); + } else { + var i = 0; - var str = ''; - while (1) { - var codeUnit = HEAP16[(((ptr)+(i*2))>>1)]; - if (codeUnit == 0) - return str; - ++i; - // fromCharCode constructs a character from a UTF-16 code unit, so we can pass the UTF16 string right through. - str += String.fromCharCode(codeUnit); + var str = ''; + while (1) { + var codeUnit = HEAP16[(((ptr)+(i*2))>>1)]; + if (codeUnit == 0) return str; + ++i; + // fromCharCode constructs a character from a UTF-16 code unit, so we can pass the UTF16 string right through. + str += String.fromCharCode(codeUnit); + } } } -Module["UTF16ToString"] = UTF16ToString; + // Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr', // null-terminated and encoded in UTF16 form. The copy will require at most str.length*4+2 bytes of space in the HEAP. @@ -868,7 +956,7 @@ Module["UTF16ToString"] = UTF16ToString; // Parameters: // str: the Javascript string to copy. // outPtr: Byte address in Emscripten HEAP where to write the string to. -// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null +// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null // terminator, i.e. if maxBytesToWrite=2, only the null terminator will be written and nothing else. // maxBytesToWrite<2 does not write any bytes to the output, not even the null terminator. // Returns the number of bytes written, EXCLUDING the null terminator. @@ -892,14 +980,14 @@ function stringToUTF16(str, outPtr, maxBytesToWrite) { HEAP16[((outPtr)>>1)]=0; return outPtr - startPtr; } -Module["stringToUTF16"] = stringToUTF16; + // Returns the number of bytes the given Javascript string takes if encoded as a UTF16 byte array, EXCLUDING the null terminator byte. function lengthBytesUTF16(str) { return str.length*2; } -Module["lengthBytesUTF16"] = lengthBytesUTF16; + function UTF32ToString(ptr) { var i = 0; @@ -920,7 +1008,7 @@ function UTF32ToString(ptr) { } } } -Module["UTF32ToString"] = UTF32ToString; + // Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr', // null-terminated and encoded in UTF32 form. The copy will require at most str.length*4+4 bytes of space in the HEAP. @@ -928,7 +1016,7 @@ Module["UTF32ToString"] = UTF32ToString; // Parameters: // str: the Javascript string to copy. // outPtr: Byte address in Emscripten HEAP where to write the string to. -// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null +// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null // terminator, i.e. if maxBytesToWrite=4, only the null terminator will be written and nothing else. // maxBytesToWrite<4 does not write any bytes to the output, not even the null terminator. // Returns the number of bytes written, EXCLUDING the null terminator. @@ -957,7 +1045,7 @@ function stringToUTF32(str, outPtr, maxBytesToWrite) { HEAP32[((outPtr)>>2)]=0; return outPtr - startPtr; } -Module["stringToUTF32"] = stringToUTF32; + // Returns the number of bytes the given Javascript string takes if encoded as a UTF16 byte array, EXCLUDING the null terminator byte. @@ -973,185 +1061,45 @@ function lengthBytesUTF32(str) { return len; } -Module["lengthBytesUTF32"] = lengthBytesUTF32; + function demangle(func) { - var hasLibcxxabi = !!Module['___cxa_demangle']; - if (hasLibcxxabi) { + var __cxa_demangle_func = Module['___cxa_demangle'] || Module['__cxa_demangle']; + if (__cxa_demangle_func) { try { - var buf = _malloc(func.length); - writeStringToMemory(func.substr(1), buf); + var s = + func.substr(1); + var len = lengthBytesUTF8(s)+1; + var buf = _malloc(len); + stringToUTF8(s, buf, len); var status = _malloc(4); - var ret = Module['___cxa_demangle'](buf, 0, 0, status); + var ret = __cxa_demangle_func(buf, 0, 0, status); if (getValue(status, 'i32') === 0 && ret) { return Pointer_stringify(ret); } - // otherwise, libcxxabi failed, we can try ours which may return a partial result + // otherwise, libcxxabi failed } catch(e) { - // failure when using libcxxabi, we can try ours which may return a partial result + // ignore problems here } finally { if (buf) _free(buf); if (status) _free(status); if (ret) _free(ret); } + // failure when using libcxxabi, don't demangle + return func; } - var i = 3; - // params, etc. - var basicTypes = { - 'v': 'void', - 'b': 'bool', - 'c': 'char', - 's': 'short', - 'i': 'int', - 'l': 'long', - 'f': 'float', - 'd': 'double', - 'w': 'wchar_t', - 'a': 'signed char', - 'h': 'unsigned char', - 't': 'unsigned short', - 'j': 'unsigned int', - 'm': 'unsigned long', - 'x': 'long long', - 'y': 'unsigned long long', - 'z': '...' - }; - var subs = []; - var first = true; - function dump(x) { - //return; - if (x) Module.print(x); - Module.print(func); - var pre = ''; - for (var a = 0; a < i; a++) pre += ' '; - Module.print (pre + '^'); - } - function parseNested() { - i++; - if (func[i] === 'K') i++; // ignore const - var parts = []; - while (func[i] !== 'E') { - if (func[i] === 'S') { // substitution - i++; - var next = func.indexOf('_', i); - var num = func.substring(i, next) || 0; - parts.push(subs[num] || '?'); - i = next+1; - continue; - } - if (func[i] === 'C') { // constructor - parts.push(parts[parts.length-1]); - i += 2; - continue; - } - var size = parseInt(func.substr(i)); - var pre = size.toString().length; - if (!size || !pre) { i--; break; } // counter i++ below us - var curr = func.substr(i + pre, size); - parts.push(curr); - subs.push(curr); - i += pre + size; - } - i++; // skip E - return parts; - } - function parse(rawList, limit, allowVoid) { // main parser - limit = limit || Infinity; - var ret = '', list = []; - function flushList() { - return '(' + list.join(', ') + ')'; - } - var name; - if (func[i] === 'N') { - // namespaced N-E - name = parseNested().join('::'); - limit--; - if (limit === 0) return rawList ? [name] : name; - } else { - // not namespaced - if (func[i] === 'K' || (first && func[i] === 'L')) i++; // ignore const and first 'L' - var size = parseInt(func.substr(i)); - if (size) { - var pre = size.toString().length; - name = func.substr(i + pre, size); - i += pre + size; - } - } - first = false; - if (func[i] === 'I') { - i++; - var iList = parse(true); - var iRet = parse(true, 1, true); - ret += iRet[0] + ' ' + name + '<' + iList.join(', ') + '>'; - } else { - ret = name; - } - paramLoop: while (i < func.length && limit-- > 0) { - //dump('paramLoop'); - var c = func[i++]; - if (c in basicTypes) { - list.push(basicTypes[c]); - } else { - switch (c) { - case 'P': list.push(parse(true, 1, true)[0] + '*'); break; // pointer - case 'R': list.push(parse(true, 1, true)[0] + '&'); break; // reference - case 'L': { // literal - i++; // skip basic type - var end = func.indexOf('E', i); - var size = end - i; - list.push(func.substr(i, size)); - i += size + 2; // size + 'EE' - break; - } - case 'A': { // array - var size = parseInt(func.substr(i)); - i += size.toString().length; - if (func[i] !== '_') throw '?'; - i++; // skip _ - list.push(parse(true, 1, true)[0] + ' [' + size + ']'); - break; - } - case 'E': break paramLoop; - default: ret += '?' + c; break paramLoop; - } - } - } - if (!allowVoid && list.length === 1 && list[0] === 'void') list = []; // avoid (void) - if (rawList) { - if (ret) { - list.push(ret + '?'); - } - return list; - } else { - return ret + flushList(); - } - } - var parsed = func; - try { - // Special-case the entry point, since its name differs from other name mangling. - if (func == 'Object._main' || func == '_main') { - return 'main()'; - } - if (typeof func === 'number') func = Pointer_stringify(func); - if (func[0] !== '_') return func; - if (func[1] !== '_') return func; // C function - if (func[2] !== 'Z') return func; - switch (func[3]) { - case 'n': return 'operator new()'; - case 'd': return 'operator delete()'; - } - parsed = parse(); - } catch(e) { - parsed += '?'; - } - if (parsed.indexOf('?') >= 0 && !hasLibcxxabi) { - Runtime.warnOnce('warning: a problem occurred in builtin C++ name demangling; build with -s DEMANGLE_SUPPORT=1 to link in libcxxabi demangling'); - } - return parsed; + Runtime.warnOnce('warning: build with -s DEMANGLE_SUPPORT=1 to link in libcxxabi demangling'); + return func; } function demangleAll(text) { - return text.replace(/__Z[\w\d_]+/g, function(x) { var y = demangle(x); return x === y ? x : (x + ' [' + y + ']') }); + var regex = + /__Z[\w\d_]+/g; + return text.replace(regex, + function(x) { + var y = demangle(x); + return x === y ? x : (x + ' [' + y + ']'); + }); } function jsStackTrace() { @@ -1172,33 +1120,75 @@ function jsStackTrace() { } function stackTrace() { - return demangleAll(jsStackTrace()); + var js = jsStackTrace(); + if (Module['extraStackTrace']) js += '\n' + Module['extraStackTrace'](); + return demangleAll(js); } Module["stackTrace"] = stackTrace; // Memory management -var PAGE_SIZE = 4096; +var PAGE_SIZE = 16384; +var WASM_PAGE_SIZE = 65536; +var ASMJS_PAGE_SIZE = 16777216; +var MIN_TOTAL_MEMORY = 16777216; -function alignMemoryPage(x) { - if (x % 4096 > 0) { - x += (4096 - (x % 4096)); +function alignUp(x, multiple) { + if (x % multiple > 0) { + x += multiple - (x % multiple); } return x; } -var HEAP; -var HEAP8, HEAPU8, HEAP16, HEAPU16, HEAP32, HEAPU32, HEAPF32, HEAPF64; +var HEAP, +/** @type {ArrayBuffer} */ + buffer, +/** @type {Int8Array} */ + HEAP8, +/** @type {Uint8Array} */ + HEAPU8, +/** @type {Int16Array} */ + HEAP16, +/** @type {Uint16Array} */ + HEAPU16, +/** @type {Int32Array} */ + HEAP32, +/** @type {Uint32Array} */ + HEAPU32, +/** @type {Float32Array} */ + HEAPF32, +/** @type {Float64Array} */ + HEAPF64; + +function updateGlobalBuffer(buf) { + Module['buffer'] = buffer = buf; +} + +function updateGlobalBufferViews() { + Module['HEAP8'] = HEAP8 = new Int8Array(buffer); + Module['HEAP16'] = HEAP16 = new Int16Array(buffer); + Module['HEAP32'] = HEAP32 = new Int32Array(buffer); + Module['HEAPU8'] = HEAPU8 = new Uint8Array(buffer); + Module['HEAPU16'] = HEAPU16 = new Uint16Array(buffer); + Module['HEAPU32'] = HEAPU32 = new Uint32Array(buffer); + Module['HEAPF32'] = HEAPF32 = new Float32Array(buffer); + Module['HEAPF64'] = HEAPF64 = new Float64Array(buffer); +} + +var STATIC_BASE, STATICTOP, staticSealed; // static area +var STACK_BASE, STACKTOP, STACK_MAX; // stack area +var DYNAMIC_BASE, DYNAMICTOP_PTR; // dynamic area handled by sbrk + + STATIC_BASE = STATICTOP = STACK_BASE = STACKTOP = STACK_MAX = DYNAMIC_BASE = DYNAMICTOP_PTR = 0; + staticSealed = false; -var STATIC_BASE = 0, STATICTOP = 0, staticSealed = false; // static area -var STACK_BASE = 0, STACKTOP = 0, STACK_MAX = 0; // stack area -var DYNAMIC_BASE = 0, DYNAMICTOP = 0; // dynamic area handled by sbrk function abortOnCannotGrowMemory() { - abort('Cannot enlarge memory arrays. Either (1) compile with -s TOTAL_MEMORY=X with X higher than the current value ' + TOTAL_MEMORY + ', (2) compile with -s ALLOW_MEMORY_GROWTH=1 which adjusts the size at runtime but prevents some optimizations, (3) set Module.TOTAL_MEMORY to a higher value before the program runs, or if you want malloc to return NULL (0) instead of this abort, compile with -s ABORTING_MALLOC=0 '); + abort('Cannot enlarge memory arrays. Either (1) compile with -s TOTAL_MEMORY=X with X higher than the current value ' + TOTAL_MEMORY + ', (2) compile with -s ALLOW_MEMORY_GROWTH=1 which allows increasing the size at runtime but prevents some optimizations, (3) set Module.TOTAL_MEMORY to a higher value before the program runs, or (4) if you want malloc to return NULL (0) instead of this abort, compile with -s ABORTING_MALLOC=0 '); } + function enlargeMemory() { abortOnCannotGrowMemory(); } @@ -1206,42 +1196,32 @@ function enlargeMemory() { var TOTAL_STACK = Module['TOTAL_STACK'] || 5242880; var TOTAL_MEMORY = Module['TOTAL_MEMORY'] || 16777216; - -var totalMemory = 64*1024; -while (totalMemory < TOTAL_MEMORY || totalMemory < 2*TOTAL_STACK) { - if (totalMemory < 16*1024*1024) { - totalMemory *= 2; - } else { - totalMemory += 16*1024*1024 - } -} -if (totalMemory !== TOTAL_MEMORY) { - TOTAL_MEMORY = totalMemory; -} +if (TOTAL_MEMORY < TOTAL_STACK) Module.printErr('TOTAL_MEMORY should be larger than TOTAL_STACK, was ' + TOTAL_MEMORY + '! (TOTAL_STACK=' + TOTAL_STACK + ')'); // Initialize the runtime's memory -// check for full engine support (use string 'subarray' to avoid closure compiler confusion) -assert(typeof Int32Array !== 'undefined' && typeof Float64Array !== 'undefined' && !!(new Int32Array(1)['subarray']) && !!(new Int32Array(1)['set']), - 'JS engine does not provide full typed array support'); -var buffer; +// Use a provided buffer, if there is one, or else allocate a new one +if (Module['buffer']) { + buffer = Module['buffer']; +} else { + // Use a WebAssembly memory where available + { + buffer = new ArrayBuffer(TOTAL_MEMORY); + } +} +updateGlobalBufferViews(); -buffer = new ArrayBuffer(TOTAL_MEMORY); -HEAP8 = new Int8Array(buffer); -HEAP16 = new Int16Array(buffer); -HEAP32 = new Int32Array(buffer); -HEAPU8 = new Uint8Array(buffer); -HEAPU16 = new Uint16Array(buffer); -HEAPU32 = new Uint32Array(buffer); -HEAPF32 = new Float32Array(buffer); -HEAPF64 = new Float64Array(buffer); +function getTotalMemory() { + return TOTAL_MEMORY; +} // Endianness check (note: assumes compiler arch was little-endian) -HEAP32[0] = 255; -assert(HEAPU8[0] === 255 && HEAPU8[3] === 0, 'Typed arrays 2 must be run on a little-endian system'); + HEAP32[0] = 0x63736d65; /* 'emsc' */ +HEAP16[1] = 0x6373; +if (HEAPU8[2] !== 0x73 || HEAPU8[3] !== 0x63) throw 'Runtime error: expected the system to be little-endian!'; Module['HEAP'] = HEAP; Module['buffer'] = buffer; @@ -1264,9 +1244,9 @@ function callRuntimeCallbacks(callbacks) { var func = callback.func; if (typeof func === 'number') { if (callback.arg === undefined) { - Runtime.dynCall('v', func); + Module['dynCall_v'](func); } else { - Runtime.dynCall('vi', func, [callback.arg]); + Module['dynCall_vi'](func, callback.arg); } } else { func(callback.arg === undefined ? null : callback.arg); @@ -1348,8 +1328,8 @@ Module["addOnPostRun"] = addOnPostRun; // Tools - -function intArrayFromString(stringy, dontAddNull, length /* optional */) { +/** @type {function(string, boolean=, number=)} */ +function intArrayFromString(stringy, dontAddNull, length) { var len = length > 0 ? length : lengthBytesUTF8(stringy)+1; var u8array = new Array(len); var numBytesWritten = stringToUTF8Array(stringy, u8array, 0, u8array.length); @@ -1371,21 +1351,29 @@ function intArrayToString(array) { } Module["intArrayToString"] = intArrayToString; +// Deprecated: This function should not be called because it is unsafe and does not provide +// a maximum length limit of how many bytes it is allowed to write. Prefer calling the +// function stringToUTF8Array() instead, which takes in a maximum length that can be used +// to be secure from out of bounds writes. +/** @deprecated */ function writeStringToMemory(string, buffer, dontAddNull) { - var array = intArrayFromString(string, dontAddNull); - var i = 0; - while (i < array.length) { - var chr = array[i]; - HEAP8[(((buffer)+(i))>>0)]=chr; - i = i + 1; + Runtime.warnOnce('writeStringToMemory is deprecated and should not be called! Use stringToUTF8() instead!'); + + var /** @type {number} */ lastChar, /** @type {number} */ end; + if (dontAddNull) { + // stringToUTF8Array always appends null. If we don't want to do that, remember the + // character that existed at the location where the null will be placed, and restore + // that after the write (below). + end = buffer + lengthBytesUTF8(string); + lastChar = HEAP8[end]; } + stringToUTF8(string, buffer, Infinity); + if (dontAddNull) HEAP8[end] = lastChar; // Restore the value under the null character. } Module["writeStringToMemory"] = writeStringToMemory; function writeArrayToMemory(array, buffer) { - for (var i = 0; i < array.length; i++) { - HEAP8[((buffer++)>>0)]=array[i]; - } + HEAP8.set(array, buffer); } Module["writeArrayToMemory"] = writeArrayToMemory; @@ -1440,6 +1428,11 @@ if (!Math['clz32']) Math['clz32'] = function(x) { }; Math.clz32 = Math['clz32'] +if (!Math['trunc']) Math['trunc'] = function(x) { + return x < 0 ? Math.ceil(x) : Math.floor(x); +}; +Math.trunc = Math['trunc']; + var Math_abs = Math.abs; var Math_cos = Math.cos; var Math_sin = Math.sin; @@ -1456,8 +1449,10 @@ var Math_floor = Math.floor; var Math_pow = Math.pow; var Math_imul = Math.imul; var Math_fround = Math.fround; +var Math_round = Math.round; var Math_min = Math.min; var Math_clz32 = Math.clz32; +var Math_trunc = Math.trunc; // A counter of dependencies for calling run(). If we need to // do asynchronous work before running, increment this and @@ -1510,6 +1505,9 @@ var memoryInitializer = null; + + + // === Body === var ASM_CONSTS = []; @@ -1517,25 +1515,23 @@ var ASM_CONSTS = []; -STATIC_BASE = 8; +STATIC_BASE = Runtime.GLOBAL_BASE; + +STATICTOP = STATIC_BASE + 34528; +/* global initializers */ __ATINIT__.push(); -STATICTOP = STATIC_BASE + 34240; - /* global initializers */ __ATINIT__.push(); - /* memory initializer */ allocate([8,201,188,243,103,230,9,106,59,167,202,132,133,174,103,187,43,248,148,254,114,243,110,60,241,54,29,95,58,245,79,165,209,130,230,173,127,82,14,81,31,108,62,43,140,104,5,155,107,189,65,251,171,217,131,31,121,33,126,19,25,205,224,91,34,174,40,215,152,47,138,66,205,101,239,35,145,68,55,113,47,59,77,236,207,251,192,181,188,219,137,129,165,219,181,233,56,181,72,243,91,194,86,57,25,208,5,182,241,17,241,89,155,79,25,175,164,130,63,146,24,129,109,218,213,94,28,171,66,2,3,163,152,170,7,216,190,111,112,69,1,91,131,18,140,178,228,78,190,133,49,36,226,180,255,213,195,125,12,85,111,137,123,242,116,93,190,114,177,150,22,59,254,177,222,128,53,18,199,37,167,6,220,155,148,38,105,207,116,241,155,193,210,74,241,158,193,105,155,228,227,37,79,56,134,71,190,239,181,213,140,139,198,157,193,15,101,156,172,119,204,161,12,36,117,2,43,89,111,44,233,45,131,228,166,110,170,132,116,74,212,251,65,189,220,169,176,92,181,83,17,131,218,136,249,118,171,223,102,238,82,81,62,152,16,50,180,45,109,198,49,168,63,33,251,152,200,39,3,176,228,14,239,190,199,127,89,191,194,143,168,61,243,11,224,198,37,167,10,147,71,145,167,213,111,130,3,224,81,99,202,6,112,110,14,10,103,41,41,20,252,47,210,70,133,10,183,39,38,201,38,92,56,33,27,46,237,42,196,90,252,109,44,77,223,179,149,157,19,13,56,83,222,99,175,139,84,115,10,101,168,178,119,60,187,10,106,118,230,174,237,71,46,201,194,129,59,53,130,20,133,44,114,146,100,3,241,76,161,232,191,162,1,48,66,188,75,102,26,168,145,151,248,208,112,139,75,194,48,190,84,6,163,81,108,199,24,82,239,214,25,232,146,209,16,169,101,85,36,6,153,214,42,32,113,87,133,53,14,244,184,209,187,50,112,160,106,16,200,208,210,184,22,193,164,25,83,171,65,81,8,108,55,30,153,235,142,223,76,119,72,39,168,72,155,225,181,188,176,52,99,90,201,197,179,12,28,57,203,138,65,227,74,170,216,78,115,227,99,119,79,202,156,91,163,184,178,214,243,111,46,104,252,178,239,93,238,130,143,116,96,47,23,67,111,99,165,120,114,171,240,161,20,120,200,132,236,57,100,26,8,2,199,140,40,30,99,35,250,255,190,144,233,189,130,222,235,108,80,164,21,121,198,178,247,163,249,190,43,83,114,227,242,120,113,198,156,97,38,234,206,62,39,202,7,194,192,33,199,184,134,209,30,235,224,205,214,125,218,234,120,209,110,238,127,79,125,245,186,111,23,114,170,103,240,6,166,152,200,162,197,125,99,10,174,13,249,190,4,152,63,17,27,71,28,19,53,11,113,27,132,125,4,35,245,119,219,40,147,36,199,64,123,171,202,50,188,190,201,21,10,190,158,60,76,13,16,156,196,103,29,67,182,66,62,203,190,212,197,76,42,126,101,252,156,41,127,89,236,250,214,58,171,111,203,95,23,88,71,74,140,25,68,108,133,59,140,1,189,241,36,255,248,37,195,1,96,220,55,0,183,76,62,255,195,66,61,0,50,76,164,1,225,164,76,255,76,61,163,255,117,62,31,0,81,145,64,255,118,65,14,0,162,115,214,255,6,138,46,0,124,230,244,255,10,138,143,0,52,26,194,0,184,244,76,0,129,143,41,1,190,244,19,255,123,170,122,255,98,129,68,0,121,213,147,0,86,101,30,255,161,103,155,0,140,89,67,255,239,229,190,1,67,11,181,0,198,240,137,254,238,69,188,255,67,151,238,0,19,42,108,255,229,85,113,1,50,68,135,255,17,106,9,0,50,103,1,255,80,1,168,1,35,152,30,255,16,168,185,1,56,89,232,255,101,210,252,0,41,250,71,0,204,170,79,255,14,46,239,255,80,77,239,0,189,214,75,255,17,141,249,0,38,80,76,255,190,85,117,0,86,228,170,0,156,216,208,1,195,207,164,255,150,66,76,255,175,225,16,255,141,80,98,1,76,219,242,0,198,162,114,0,46,218,152,0,155,43,241,254,155,160,104,255,51,187,165,0,2,17,175,0,66,84,160,1,247,58,30,0,35,65,53,254,69,236,191,0,45,134,245,1,163,123,221,0,32,110,20,255,52,23,165,0,186,214,71,0,233,176,96,0,242,239,54,1,57,89,138,0,83,0,84,255,136,160,100,0,92,142,120,254,104,124,190,0,181,177,62,255,250,41,85,0,152,130,42,1,96,252,246,0,151,151,63,254,239,133,62,0,32,56,156,0,45,167,189,255,142,133,179,1,131,86,211,0,187,179,150,254,250,170,14,255,210,163,78,0,37,52,151,0,99,77,26,0,238,156,213,255,213,192,209,1,73,46,84,0,20,65,41,1,54,206,79,0,201,131,146,254,170,111,24,255,177,33,50,254,171,38,203,255,78,247,116,0,209,221,153,0,133,128,178,1,58,44,25,0,201,39,59,1,189,19,252,0,49,229,210,1,117,187,117,0,181,179,184,1,0,114,219,0,48,94,147,0,245,41,56,0,125,13,204,254,244,173,119,0,44,221,32,254,84,234,20,0,249,160,198,1,236,126,234,255,47,99,168,254,170,226,153,255,102,179,216,0,226,141,122,255,122,66,153,254,182,245,134,0,227,228,25,1,214,57,235,255,216,173,56,255,181,231,210,0,119,128,157,255,129,95,136,255,110,126,51,0,2,169,183,255,7,130,98,254,69,176,94,255,116,4,227,1,217,242,145,255,202,173,31,1,105,1,39,255,46,175,69,0,228,47,58,255,215,224,69,254,207,56,69,255,16,254,139,255,23,207,212,255,202,20,126,255,95,213,96,255,9,176,33,0,200,5,207,255,241,42,128,254,35,33,192,255,248,229,196,1,129,17,120,0,251,103,151,255,7,52,112,255,140,56,66,255,40,226,245,255,217,70,37,254,172,214,9,255,72,67,134,1,146,192,214,255,44,38,112,0,68,184,75,255,206,90,251,0,149,235,141,0,181,170,58,0,116,244,239,0,92,157,2,0,102,173,98,0,233,137,96,1,127,49,203,0,5,155,148,0,23,148,9,255,211,122,12,0,34,134,26,255,219,204,136,0,134,8,41,255,224,83,43,254,85,25,247,0,109,127,0,254,169,136,48,0,238,119,219,255,231,173,213,0,206,18,254,254,8,186,7,255,126,9,7,1,111,42,72,0,111,52,236,254,96,63,141,0,147,191,127,254,205,78,192,255,14,106,237,1,187,219,76,0,175,243,187,254,105,89,173,0,85,25,89,1,162,243,148,0,2,118,209,254,33,158,9,0,139,163,46,255,93,70,40,0,108,42,142,254,111,252,142,255,155,223,144,0,51,229,167,255,73,252,155,255,94,116,12,255,152,160,218,255,156,238,37,255,179,234,207,255,197,0,179,255,154,164,141,0,225,196,104,0,10,35,25,254,209,212,242,255,97,253,222,254,184,101,229,0,222,18,127,1,164,136,135,255,30,207,140,254,146,97,243,0,129,192,26,254,201,84,33,255,111,10,78,255,147,81,178,255,4,4,24,0,161,238,215,255,6,141,33,0,53,215,14,255,41,181,208,255,231,139,157,0,179,203,221,255,255,185,113,0,189,226,172,255,113,66,214,255,202,62,45,255,102,64,8,255,78,174,16,254,133,117,68,255,182,120,89,255,133,114,211,0,189,110,21,255,15,10,106,0,41,192,1,0,152,232,121,255,188,60,160,255,153,113,206,255,0,183,226,254,180,13,72,255,176,160,14,254,211,201,134,255,158,24,143,0,127,105,53,0,96,12,189,0,167,215,251,255,159,76,128,254,106,101,225,255,30,252,4,0,146,12,174,0,89,241,178,254,10,229,166,255,123,221,42,254,30,20,212,0,82,128,3,0,48,209,243,0,119,121,64,255,50,227,156,255,0,110,197,1,103,27,144,0,133,59,140,1,189,241,36,255,248,37,195,1,96,220,55,0,183,76,62,255,195,66,61,0,50,76,164,1,225,164,76,255,76,61,163,255,117,62,31,0,81,145,64,255,118,65,14,0,162,115,214,255,6,138,46,0,124,230,244,255,10,138,143,0,52,26,194,0,184,244,76,0,129,143,41,1,190,244,19,255,123,170,122,255,98,129,68,0,121,213,147,0,86,101,30,255,161,103,155,0,140,89,67,255,239,229,190,1,67,11,181,0,198,240,137,254,238,69,188,255,234,113,60,255,37,255,57,255,69,178,182,254,128,208,179,0,118,26,125,254,3,7,214,255,241,50,77,255,85,203,197,255,211,135,250,255,25,48,100,255,187,213,180,254,17,88,105,0,83,209,158,1,5,115,98,0,4,174,60,254,171,55,110,255,217,181,17,255,20,188,170,0,146,156,102,254,87,214,174,255,114,122,155,1,233,44,170,0,127,8,239,1,214,236,234,0,175,5,219,0,49,106,61,255,6,66,208,255,2,106,110,255,81,234,19,255,215,107,192,255,67,151,238,0,19,42,108,255,229,85,113,1,50,68,135,255,17,106,9,0,50,103,1,255,80,1,168,1,35,152,30,255,16,168,185,1,56,89,232,255,101,210,252,0,41,250,71,0,204,170,79,255,14,46,239,255,80,77,239,0,189,214,75,255,17,141,249,0,38,80,76,255,190,85,117,0,86,228,170,0,156,216,208,1,195,207,164,255,150,66,76,255,175,225,16,255,141,80,98,1,76,219,242,0,198,162,114,0,46,218,152,0,155,43,241,254,155,160,104,255,178,9,252,254,100,110,212,0,14,5,167,0,233,239,163,255,28,151,157,1,101,146,10,255,254,158,70,254,71,249,228,0,88,30,50,0,68,58,160,255,191,24,104,1,129,66,129,255,192,50,85,255,8,179,138,255,38,250,201,0,115,80,160,0,131,230,113,0,125,88,147,0,90,68,199,0,253,76,158,0,28,255,118,0,113,250,254,0,66,75,46,0,230,218,43,0,229,120,186,1,148,68,43,0,136,124,238,1,187,107,197,255,84,53,246,255,51,116,254,255,51,187,165,0,2,17,175,0,66,84,160,1,247,58,30,0,35,65,53,254,69,236,191,0,45,134,245,1,163,123,221,0,32,110,20,255,52,23,165,0,186,214,71,0,233,176,96,0,242,239,54,1,57,89,138,0,83,0,84,255,136,160,100,0,92,142,120,254,104,124,190,0,181,177,62,255,250,41,85,0,152,130,42,1,96,252,246,0,151,151,63,254,239,133,62,0,32,56,156,0,45,167,189,255,142,133,179,1,131,86,211,0,187,179,150,254,250,170,14,255,68,113,21,255,222,186,59,255,66,7,241,1,69,6,72,0,86,156,108,254,55,167,89,0,109,52,219,254,13,176,23,255,196,44,106,255,239,149,71,255,164,140,125,255,159,173,1,0,51,41,231,0,145,62,33,0,138,111,93,1,185,83,69,0,144,115,46,0,97,151,16,255,24,228,26,0,49,217,226,0,113,75,234,254,193,153,12,255,182,48,96,255,14,13,26,0,128,195,249,254,69,193,59,0,132,37,81,254,125,106,60,0,214,240,169,1,164,227,66,0,210,163,78,0,37,52,151,0,99,77,26,0,238,156,213,255,213,192,209,1,73,46,84,0,20,65,41,1,54,206,79,0,201,131,146,254,170,111,24,255,177,33,50,254,171,38,203,255,78,247,116,0,209,221,153,0,133,128,178,1,58,44,25,0,201,39,59,1,189,19,252,0,49,229,210,1,117,187,117,0,181,179,184,1,0,114,219,0,48,94,147,0,245,41,56,0,125,13,204,254,244,173,119,0,44,221,32,254,84,234,20,0,249,160,198,1,236,126,234,255,143,62,221,0,129,89,214,255,55,139,5,254,68,20,191,255,14,204,178,1,35,195,217,0,47,51,206,1,38,246,165,0,206,27,6,254,158,87,36,0,217,52,146,255,125,123,215,255,85,60,31,255,171,13,7,0,218,245,88,254,252,35,60,0,55,214,160,255,133,101,56,0,224,32,19,254,147,64,234,0,26,145,162,1,114,118,125,0,248,252,250,0,101,94,196,255,198,141,226,254,51,42,182,0,135,12,9,254,109,172,210,255,197,236,194,1,241,65,154,0,48,156,47,255,153,67,55,255,218,165,34,254,74,180,179,0,218,66,71,1,88,122,99,0,212,181,219,255,92,42,231,255,239,0,154,0,245,77,183,255,94,81,170,1,18,213,216,0,171,93,71,0,52,94,248,0,18,151,161,254,197,209,66,255,174,244,15,254,162,48,183,0,49,61,240,254,182,93,195,0,199,228,6,1,200,5,17,255,137,45,237,255,108,148,4,0,90,79,237,255,39,63,77,255,53,82,207,1,142,22,118,255,101,232,18,1,92,26,67,0,5,200,88,255,33,168,138,255,149,225,72,0,2,209,27,255,44,245,168,1,220,237,17,255,30,211,105,254,141,238,221,0,128,80,245,254,111,254,14,0,222,95,190,1,223,9,241,0,146,76,212,255,108,205,104,255,63,117,153,0,144,69,48,0,35,228,111,0,192,33,193,255,112,214,190,254,115,152,151,0,23,102,88,0,51,74,248,0,226,199,143,254,204,162,101,255,208,97,189,1,245,104,18,0,230,246,30,255,23,148,69,0,110,88,52,254,226,181,89,255,208,47,90,254,114,161,80,255,33,116,248,0,179,152,87,255,69,144,177,1,88,238,26,255,58,32,113,1,1,77,69,0,59,121,52,255,152,238,83,0,52,8,193,0,231,39,233,255,199,34,138,0,222,68,173,0,91,57,242,254,220,210,127,255,192,7,246,254,151,35,187,0,195,236,165,0,111,93,206,0,212,247,133,1,154,133,209,255,155,231,10,0,64,78,38,0,122,249,100,1,30,19,97,255,62,91,249,1,248,133,77,0,197,63,168,254,116,10,82,0,184,236,113,254,212,203,194,255,61,100,252,254,36,5,202,255,119,91,153,255,129,79,29,0,103,103,171,254,237,215,111,255,216,53,69,0,239,240,23,0,194,149,221,255,38,225,222,0,232,255,180,254,118,82,133,255,57,209,177,1,139,232,133,0,158,176,46,254,194,115,46,0,88,247,229,1,28,103,191,0,221,222,175,254,149,235,44,0,151,228,25,254,218,105,103,0,142,85,210,0,149,129,190,255,213,65,94,254,117,134,224,255,82,198,117,0,157,221,220,0,163,101,36,0,197,114,37,0,104,172,166,254,11,182,0,0,81,72,188,255,97,188,16,255,69,6,10,0,199,147,145,255,8,9,115,1,65,214,175,255,217,173,209,0,80,127,166,0,247,229,4,254,167,183,124,255,90,28,204,254,175,59,240,255,11,41,248,1,108,40,51,255,144,177,195,254,150,250,126,0,138,91,65,1,120,60,222,255,245,193,239,0,29,214,189,255,128,2,25,0,80,154,162,0,77,220,107,1,234,205,74,255,54,166,103,255,116,72,9,0,228,94,47,255,30,200,25,255,35,214,89,255,61,176,140,255,83,226,163,255,75,130,172,0,128,38,17,0,95,137,152,255,215,124,159,1,79,93,0,0,148,82,157,254,195,130,251,255,40,202,76,255,251,126,224,0,157,99,62,254,207,7,225,255,96,68,195,0,140,186,157,255,131,19,231,255,42,128,254,0,52,219,61,254,102,203,72,0,141,7,11,255,186,164,213,0,31,122,119,0,133,242,145,0,208,252,232,255,91,213,182,255,143,4,250,254,249,215,74,0,165,30,111,1,171,9,223,0,229,123,34,1,92,130,26,255,77,155,45,1,195,139,28,255,59,224,78,0,136,17,247,0,108,121,32,0,79,250,189,255,96,227,252,254,38,241,62,0,62,174,125,255,155,111,93,255,10,230,206,1,97,197,40,255,0,49,57,254,65,250,13,0,18,251,150,255,220,109,210,255,5,174,166,254,44,129,189,0,235,35,147,255,37,247,141,255,72,141,4,255,103,107,255,0,247,90,4,0,53,44,42,0,2,30,240,0,4,59,63,0,88,78,36,0,113,167,180,0,190,71,193,255,199,158,164,255,58,8,172,0,77,33,12,0,65,63,3,0,153,77,33,255,172,254,102,1,228,221,4,255,87,30,254,1,146,41,86,255,138,204,239,254,108,141,17,255,187,242,135,0,210,208,127,0,68,45,14,254,73,96,62,0,81,60,24,255,170,6,36,255,3,249,26,0,35,213,109,0,22,129,54,255,21,35,225,255,234,61,56,255,58,217,6,0,143,124,88,0,236,126,66,0,209,38,183,255,34,238,6,255,174,145,102,0,95,22,211,0,196,15,153,254,46,84,232,255,117,34,146,1,231,250,74,255,27,134,100,1,92,187,195,255,170,198,112,0,120,28,42,0,209,70,67,0,29,81,31,0,29,168,100,1,169,173,160,0,107,35,117,0,62,96,59,255,81,12,69,1,135,239,190,255,220,252,18,0,163,220,58,255,137,137,188,255,83,102,109,0,96,6,76,0,234,222,210,255,185,174,205,1,60,158,213,255,13,241,214,0,172,129,140,0,93,104,242,0,192,156,251,0,43,117,30,0,225,81,158,0,127,232,218,0,226,28,203,0,233,27,151,255,117,43,5,255,242,14,47,255,33,20,6,0,137,251,44,254,27,31,245,255,183,214,125,254,40,121,149,0,186,158,213,255,89,8,227,0,69,88,0,254,203,135,225,0,201,174,203,0,147,71,184,0,18,121,41,254,94,5,78,0,224,214,240,254,36,5,180,0,251,135,231,1,163,138,212,0,210,249,116,254,88,129,187,0,19,8,49,254,62,14,144,255,159,76,211,0,214,51,82,0,109,117,228,254,103,223,203,255,75,252,15,1,154,71,220,255,23,13,91,1,141,168,96,255,181,182,133,0,250,51,55,0,234,234,212,254,175,63,158,0,39,240,52,1,158,189,36,255,213,40,85,1,32,180,247,255,19,102,26,1,84,24,97,255,69,21,222,0,148,139,122,255,220,213,235,1,232,203,255,0,121,57,147,0,227,7,154,0,53,22,147,1,72,1,225,0,82,134,48,254,83,60,157,255,145,72,169,0,34,103,239,0,198,233,47,0,116,19,4,255,184,106,9,255,183,129,83,0,36,176,230,1,34,103,72,0,219,162,134,0,245,42,158,0,32,149,96,254,165,44,144,0,202,239,72,254,215,150,5,0,42,66,36,1,132,215,175,0,86,174,86,255,26,197,156,255,49,232,135,254,103,182,82,0,253,128,176,1,153,178,122,0,245,250,10,0,236,24,178,0,137,106,132,0,40,29,41,0,50,30,152,255,124,105,38,0,230,191,75,0,143,43,170,0,44,131,20,255,44,13,23,255,237,255,155,1,159,109,100,255,112,181,24,255,104,220,108,0,55,211,131,0,99,12,213,255,152,151,145,255,238,5,159,0,97,155,8,0,33,108,81,0,1,3,103,0,62,109,34,255,250,155,180,0,32,71,195,255,38,70,145,1,159,95,245,0,69,229,101,1,136,28,240,0,79,224,25,0,78,110,121,255,248,168,124,0,187,128,247,0,2,147,235,254,79,11,132,0,70,58,12,1,181,8,163,255,79,137,133,255,37,170,11,255,141,243,85,255,176,231,215,255,204,150,164,255,239,215,39,255,46,87,156,254,8,163,88,255,172,34,232,0,66,44,102,255,27,54,41,254,236,99,87,255,41,123,169,1,52,114,43,0,117,134,40,0,155,134,26,0,231,207,91,254,35,132,38,255,19,102,125,254,36,227,133,255,118,3,113,255,29,13,124,0,152,96,74,1,88,146,206,255,167,191,220,254,162,18,88,255,182,100,23,0,31,117,52,0,81,46,106,1,12,2,7,0,69,80,201,1,209,246,172,0,12,48,141,1,224,211,88,0,116,226,159,0,122,98,130,0,65,236,234,1,225,226,9,255,207,226,123,1,89,214,59,0,112,135,88,1,90,244,203,255,49,11,38,1,129,108,186,0,89,112,15,1,101,46,204,255,127,204,45,254,79,255,221,255,51,73,18,255,127,42,101,255,241,21,202,0,160,227,7,0,105,50,236,0,79,52,197,255,104,202,208,1,180,15,16,0,101,197,78,255,98,77,203,0,41,185,241,1,35,193,124,0,35,155,23,255,207,53,192,0,11,125,163,1,249,158,185,255,4,131,48,0,21,93,111,255,61,121,231,1,69,200,36,255,185,48,185,255,111,238,21,255,39,50,25,255,99,215,163,255,87,212,30,255,164,147,5,255,128,6,35,1,108,223,110,255,194,76,178,0,74,101,180,0,243,47,48,0,174,25,43,255,82,173,253,1,54,114,192,255,40,55,91,0,215,108,176,255,11,56,7,0,224,233,76,0,209,98,202,254,242,25,125,0,44,193,93,254,203,8,177,0,135,176,19,0,112,71,213,255,206,59,176,1,4,67,26,0,14,143,213,254,42,55,208,255,60,67,120,0,193,21,163,0,99,164,115,0,10,20,118,0,156,212,222,254,160,7,217,255,114,245,76,1,117,59,123,0,176,194,86,254,213,15,176,0,78,206,207,254,213,129,59,0,233,251,22,1,96,55,152,255,236,255,15,255,197,89,84,255,93,149,133,0,174,160,113,0,234,99,169,255,152,116,88,0,144,164,83,255,95,29,198,255,34,47,15,255,99,120,134,255,5,236,193,0,249,247,126,255,147,187,30,0,50,230,117,255,108,217,219,255,163,81,166,255,72,25,169,254,155,121,79,255,28,155,89,254,7,126,17,0,147,65,33,1,47,234,253,0,26,51,18,0,105,83,199,255,163,196,230,0,113,248,164,0,226,254,218,0,189,209,203,255,164,247,222,254,255,35,165,0,4,188,243,1,127,179,71,0,37,237,254,255,100,186,240,0,5,57,71,254,103,72,73,255,244,18,81,254,229,210,132,255,238,6,180,255,11,229,174,255,227,221,192,1,17,49,28,0,163,215,196,254,9,118,4,255,51,240,71,0,113,129,109,255,76,240,231,0,188,177,127,0,125,71,44,1,26,175,243,0,94,169,25,254,27,230,29,0,15,139,119,1,168,170,186,255,172,197,76,255,252,75,188,0,137,124,196,0,72,22,96,255,45,151,249,1,220,145,100,0,64,192,159,255,120,239,226,0,129,178,146,0,0,192,125,0,235,138,234,0,183,157,146,0,83,199,192,255,184,172,72,255,73,225,128,0,77,6,250,255,186,65,67,0,104,246,207,0,188,32,138,255,218,24,242,0,67,138,81,254,237,129,121,255,20,207,150,1,41,199,16,255,6,20,128,0,159,118,5,0,181,16,143,255,220,38,15,0,23,64,147,254,73,26,13,0,87,228,57,1,204,124,128,0,43,24,223,0,219,99,199,0,22,75,20,255,19,27,126,0,157,62,215,0,110,29,230,0,179,167,255,1,54,252,190,0,221,204,182,254,179,158,65,255,81,157,3,0,194,218,159,0,170,223,0,0,224,11,32,255,38,197,98,0,168,164,37,0,23,88,7,1,164,186,110,0,96,36,134,0,234,242,229,0,250,121,19,0,242,254,112,255,3,47,94,1,9,239,6,255,81,134,153,254,214,253,168,255,67,124,224,0,245,95,74,0,28,30,44,254,1,109,220,255,178,89,89,0,252,36,76,0,24,198,46,255,76,77,111,0,134,234,136,255,39,94,29,0,185,72,234,255,70,68,135,255,231,102,7,254,77,231,140,0,167,47,58,1,148,97,118,255,16,27,225,1,166,206,143,255,110,178,214,255,180,131,162,0,143,141,225,1,13,218,78,255,114,153,33,1,98,104,204,0,175,114,117,1,167,206,75,0,202,196,83,1,58,64,67,0,138,47,111,1,196,247,128,255,137,224,224,254,158,112,207,0,154,100,255,1,134,37,107,0,198,128,79,255,127,209,155,255,163,254,185,254,60,14,243,0,31,219,112,254,29,217,65,0,200,13,116,254,123,60,196,255,224,59,184,254,242,89,196,0,123,16,75,254,149,16,206,0,69,254,48,1,231,116,223,255,209,160,65,1,200,80,98,0,37,194,184,254,148,63,34,0,139,240,65,255,217,144,132,255,56,38,45,254,199,120,210,0,108,177,166,255,160,222,4,0,220,126,119,254,165,107,160,255,82,220,248,1,241,175,136,0,144,141,23,255,169,138,84,0,160,137,78,255,226,118,80,255,52,27,132,255,63,96,139,255,152,250,39,0,188,155,15,0,232,51,150,254,40,15,232,255,240,229,9,255,137,175,27,255,75,73,97,1,218,212,11,0,135,5,162,1,107,185,213,0,2,249,107,255,40,242,70,0,219,200,25,0,25,157,13,0,67,82,80,255,196,249,23,255,145,20,149,0,50,72,146,0,94,76,148,1,24,251,65,0,31,192,23,0,184,212,201,255,123,233,162,1,247,173,72,0,162,87,219,254,126,134,89,0,159,11,12,254,166,105,29,0,73,27,228,1,113,120,183,255,66,163,109,1,212,143,11,255,159,231,168,1,255,128,90,0,57,14,58,254,89,52,10,255,253,8,163,1,0,145,210,255,10,129,85,1,46,181,27,0,103,136,160,254,126,188,209,255,34,35,111,0,215,219,24,255,212,11,214,254,101,5,118,0,232,197,133,255,223,167,109,255,237,80,86,255,70,139,94,0,158,193,191,1,155,15,51,255,15,190,115,0,78,135,207,255,249,10,27,1,181,125,233,0,95,172,13,254,170,213,161,255,39,236,138,255,95,93,87,255,190,128,95,0,125,15,206,0,166,150,159,0,227,15,158,255,206,158,120,255,42,141,128,0,101,178,120,1,156,109,131,0,218,14,44,254,247,168,206,255,212,112,28,0,112,17,228,255,90,16,37,1,197,222,108,0,254,207,83,255,9,90,243,255,243,244,172,0,26,88,115,255,205,116,122,0,191,230,193,0,180,100,11,1,217,37,96,255,154,78,156,0,235,234,31,255,206,178,178,255,149,192,251,0,182,250,135,0,246,22,105,0,124,193,109,255,2,210,149,255,169,17,170,0,0,96,110,255,117,9,8,1,50,123,40,255,193,189,99,0,34,227,160,0,48,80,70,254,211,51,236,0,45,122,245,254,44,174,8,0,173,37,233,255,158,65,171,0,122,69,215,255,90,80,2,255,131,106,96,254,227,114,135,0,205,49,119,254,176,62,64,255,82,51,17,255,241,20,243,255,130,13,8,254,128,217,243,255,162,27,1,254,90,118,241,0,246,198,246,255,55,16,118,255,200,159,157,0,163,17,1,0,140,107,121,0,85,161,118,255,38,0,149,0,156,47,238,0,9,166,166,1,75,98,181,255,50,74,25,0,66,15,47,0,139,225,159,0,76,3,142,255,14,238,184,0,11,207,53,255,183,192,186,1,171,32,174,255,191,76,221,1,247,170,219,0,25,172,50,254,217,9,233,0,203,126,68,255,183,92,48,0,127,167,183,1,65,49,254,0,16,63,127,1,254,21,170,255,59,224,127,254,22,48,63,255,27,78,130,254,40,195,29,0,250,132,112,254,35,203,144,0,104,169,168,0,207,253,30,255,104,40,38,254,94,228,88,0,206,16,128,255,212,55,122,255,223,22,234,0,223,197,127,0,253,181,181,1,145,102,118,0,236,153,36,255,212,217,72,255,20,38,24,254,138,62,62,0,152,140,4,0,230,220,99,255,1,21,212,255,148,201,231,0,244,123,9,254,0,171,210,0,51,58,37,255,1,255,14,255,244,183,145,254,0,242,166,0,22,74,132,0,121,216,41,0,95,195,114,254,133,24,151,255,156,226,231,255,247,5,77,255,246,148,115,254,225,92,81,255,222,80,246,254,170,123,89,255,74,199,141,0,29,20,8,255,138,136,70,255,93,75,92,0,221,147,49,254,52,126,226,0,229,124,23,0,46,9,181,0,205,64,52,1,131,254,28,0,151,158,212,0,131,64,78,0,206,25,171,0,0,230,139,0,191,253,110,254,103,247,167,0,64,40,40,1,42,165,241,255,59,75,228,254,124,243,189,255,196,92,178,255,130,140,86,255,141,89,56,1,147,198,5,255,203,248,158,254,144,162,141,0,11,172,226,0,130,42,21,255,1,167,143,255,144,36,36,255,48,88,164,254,168,170,220,0,98,71,214,0,91,208,79,0,159,76,201,1,166,42,214,255,69,255,0,255,6,128,125,255,190,1,140,0,146,83,218,255,215,238,72,1,122,127,53,0,189,116,165,255,84,8,66,255,214,3,208,255,213,110,133,0,195,168,44,1,158,231,69,0,162,64,200,254,91,58,104,0,182,58,187,254,249,228,136,0,203,134,76,254,99,221,233,0,75,254,214,254,80,69,154,0,64,152,248,254,236,136,202,255,157,105,153,254,149,175,20,0,22,35,19,255,124,121,233,0,186,250,198,254,132,229,139,0,137,80,174,255,165,125,68,0,144,202,148,254,235,239,248,0,135,184,118,0,101,94,17,255,122,72,70,254,69,130,146,0,127,222,248,1,69,127,118,255,30,82,215,254,188,74,19,255,229,167,194,254,117,25,66,255,65,234,56,254,213,22,156,0,151,59,93,254,45,28,27,255,186,126,164,255,32,6,239,0,127,114,99,1,219,52,2,255,99,96,166,254,62,190,126,255,108,222,168,1,75,226,174,0,230,226,199,0,60,117,218,255,252,248,20,1,214,188,204,0,31,194,134,254,123,69,192,255,169,173,36,254,55,98,91,0,223,42,102,254,137,1,102,0,157,90,25,0,239,122,64,255,252,6,233,0,7,54,20,255,82,116,174,0,135,37,54,255,15,186,125,0,227,112,175,255,100,180,225,255,42,237,244,255,244,173,226,254,248,18,33,0,171,99,150,255,74,235,50,255,117,82,32,254,106,168,237,0,207,109,208,1,228,9,186,0,135,60,169,254,179,92,143,0,244,170,104,255,235,45,124,255,70,99,186,0,117,137,183,0,224,31,215,0,40,9,100,0,26,16,95,1,68,217,87,0,8,151,20,255,26,100,58,255,176,165,203,1,52,118,70,0,7,32,254,254,244,254,245,255,167,144,194,255,125,113,23,255,176,121,181,0,136,84,209,0,138,6,30,255,89,48,28,0,33,155,14,255,25,240,154,0,141,205,109,1,70,115,62,255,20,40,107,254,138,154,199,255,94,223,226,255,157,171,38,0,163,177,25,254,45,118,3,255,14,222,23,1,209,190,81,255,118,123,232,1,13,213,101,255,123,55,123,254,27,246,165,0,50,99,76,255,140,214,32,255,97,65,67,255,24,12,28,0,174,86,78,1,64,247,96,0,160,135,67,0,66,55,243,255,147,204,96,255,26,6,33,255,98,51,83,1,153,213,208,255,2,184,54,255,25,218,11,0,49,67,246,254,18,149,72,255,13,25,72,0,42,79,214,0,42,4,38,1,27,139,144,255,149,187,23,0,18,164,132,0,245,84,184,254,120,198,104,255,126,218,96,0,56,117,234,255,13,29,214,254,68,47,10,255,167,154,132,254,152,38,198,0,66,178,89,255,200,46,171,255,13,99,83,255,210,187,253,255,170,45,42,1,138,209,124,0,214,162,141,0,12,230,156,0,102,36,112,254,3,147,67,0,52,215,123,255,233,171,54,255,98,137,62,0,247,218,39,255,231,218,236,0,247,191,127,0,195,146,84,0,165,176,92,255,19,212,94,255,17,74,227,0,88,40,153,1,198,147,1,255,206,67,245,254,240,3,218,255,61,141,213,255,97,183,106,0,195,232,235,254,95,86,154,0,209,48,205,254,118,209,241,255,240,120,223,1,213,29,159,0,163,127,147,255,13,218,93,0,85,24,68,254,70,20,80,255,189,5,140,1,82,97,254,255,99,99,191,255,132,84,133,255,107,218,116,255,112,122,46,0,105,17,32,0,194,160,63,255,68,222,39,1,216,253,92,0,177,105,205,255,149,201,195,0,42,225,11,255,40,162,115,0,9,7,81,0,165,218,219,0,180,22,0,254,29,146,252,255,146,207,225,1,180,135,96,0,31,163,112,0,177,11,219,255,133,12,193,254,43,78,50,0,65,113,121,1,59,217,6,255,110,94,24,1,112,172,111,0,7,15,96,0,36,85,123,0,71,150,21,255,208,73,188,0,192,11,167,1,213,245,34,0,9,230,92,0,162,142,39,255,215,90,27,0,98,97,89,0,94,79,211,0,90,157,240,0,95,220,126,1,102,176,226,0,36,30,224,254,35,31,127,0,231,232,115,1,85,83,130,0,210,73,245,255,47,143,114,255,68,65,197,0,59,72,62,255,183,133,173,254,93,121,118,255,59,177,81,255,234,69,173,255,205,128,177,0,220,244,51,0,26,244,209,1,73,222,77,255,163,8,96,254,150,149,211,0,158,254,203,1,54,127,139,0,161,224,59,0,4,109,22,255,222,42,45,255,208,146,102,255,236,142,187,0,50,205,245,255,10,74,89,254,48,79,142,0,222,76,130,255,30,166,63,0,236,12,13,255,49,184,244,0,187,113,102,0,218,101,253,0,153,57,182,254,32,150,42,0,25,198,146,1,237,241,56,0,140,68,5,0,91,164,172,255,78,145,186,254,67,52,205,0,219,207,129,1,109,115,17,0,54,143,58,1,21,248,120,255,179,255,30,0,193,236,66,255,1,255,7,255,253,192,48,255,19,69,217,1,3,214,0,255,64,101,146,1,223,125,35,255,235,73,179,255,249,167,226,0,225,175,10,1,97,162,58,0,106,112,171,1,84,172,5,255,133,140,178,255,134,245,142,0,97,90,125,255,186,203,185,255,223,77,23,255,192,92,106,0,15,198,115,255,217,152,248,0,171,178,120,255,228,134,53,0,176,54,193,1,250,251,53,0,213,10,100,1,34,199,106,0,151,31,244,254,172,224,87,255,14,237,23,255,253,85,26,255,127,39,116,255,172,104,100,0,251,14,70,255,212,208,138,255,253,211,250,0,176,49,165,0,15,76,123,255,37,218,160,255,92,135,16,1,10,126,114,255,70,5,224,255,247,249,141,0,68,20,60,1,241,210,189,255,195,217,187,1,151,3,113,0,151,92,174,0,231,62,178,255,219,183,225,0,23,23,33,255,205,181,80,0,57,184,248,255,67,180,1,255,90,123,93,255,39,0,162,255,96,248,52,255,84,66,140,0,34,127,228,255,194,138,7,1,166,110,188,0,21,17,155,1,154,190,198,255,214,80,59,255,18,7,143,0,72,29,226,1,199,217,249,0,232,161,71,1,149,190,201,0,217,175,95,254,113,147,67,255,138,143,199,255,127,204,1,0,29,182,83,1,206,230,155,255,186,204,60,0,10,125,85,255,232,96,25,255,255,89,247,255,213,254,175,1,232,193,81,0,28,43,156,254,12,69,8,0,147,24,248,0,18,198,49,0,134,60,35,0,118,246,18,255,49,88,254,254,228,21,186,255,182,65,112,1,219,22,1,255,22,126,52,255,189,53,49,255,112,25,143,0,38,127,55,255,226,101,163,254,208,133,61,255,137,69,174,1,190,118,145,255,60,98,219,255,217,13,245,255,250,136,10,0,84,254,226,0,201,31,125,1,240,51,251,255,31,131,130,255,2,138,50,255,215,215,177,1,223,12,238,255,252,149,56,255,124,91,68,255,72,126,170,254,119,255,100,0,130,135,232,255,14,79,178,0,250,131,197,0,138,198,208,0,121,216,139,254,119,18,36,255,29,193,122,0,16,42,45,255,213,240,235,1,230,190,169,255,198,35,228,254,110,173,72,0,214,221,241,255,56,148,135,0,192,117,78,254,141,93,207,255,143,65,149,0,21,18,98,255,95,44,244,1,106,191,77,0,254,85,8,254,214,110,176,255,73,173,19,254,160,196,199,255,237,90,144,0,193,172,113,255,200,155,136,254,228,90,221,0,137,49,74,1,164,221,215,255,209,189,5,255,105,236,55,255,42,31,129,1,193,255,236,0,46,217,60,0,138,88,187,255,226,82,236,255,81,69,151,255,142,190,16,1,13,134,8,0,127,122,48,255,81,64,156,0,171,243,139,0,237,35,246,0,122,143,193,254,212,122,146,0,95,41,255,1,87,132,77,0,4,212,31,0,17,31,78,0,39,45,173,254,24,142,217,255,95,9,6,255,227,83,6,0,98,59,130,254,62,30,33,0,8,115,211,1,162,97,128,255,7,184,23,254,116,28,168,255,248,138,151,255,98,244,240,0,186,118,130,0,114,248,235,255,105,173,200,1,160,124,71,255,94,36,164,1,175,65,146,255,238,241,170,254,202,198,197,0,228,71,138,254,45,246,109,255,194,52,158,0,133,187,176,0,83,252,154,254,89,189,221,255,170,73,252,0,148,58,125,0,36,68,51,254,42,69,177,255,168,76,86,255,38,100,204,255,38,53,35,0,175,19,97,0,225,238,253,255,81,81,135,0,210,27,255,254,235,73,107,0,8,207,115,0,82,127,136,0,84,99,21,254,207,19,136,0,100,164,101,0,80,208,77,255,132,207,237,255,15,3,15,255,33,166,110,0,156,95,85,255,37,185,111,1,150,106,35,255,166,151,76,0,114,87,135,255,159,194,64,0,12,122,31,255,232,7,101,254,173,119,98,0,154,71,220,254,191,57,53,255,168,232,160,255,224,32,99,255,218,156,165,0,151,153,163,0,217,13,148,1,197,113,89,0,149,28,161,254,207,23,30,0,105,132,227,255,54,230,94,255,133,173,204,255,92,183,157,255,88,144,252,254,102,33,90,0,159,97,3,0,181,218,155,255,240,114,119,0,106,214,53,255,165,190,115,1,152,91,225,255,88,106,44,255,208,61,113,0,151,52,124,0,191,27,156,255,110,54,236,1,14,30,166,255,39,127,207,1,229,199,28,0,188,228,188,254,100,157,235,0,246,218,183,1,107,22,193,255,206,160,95,0,76,239,147,0,207,161,117,0,51,166,2,255,52,117,10,254,73,56,227,255,152,193,225,0,132,94,136,255,101,191,209,0,32,107,229,255,198,43,180,1,100,210,118,0,114,67,153,255,23,88,26,255,89,154,92,1,220,120,140,255,144,114,207,255,252,115,250,255,34,206,72,0,138,133,127,255,8,178,124,1,87,75,97,0,15,229,92,254,240,67,131,255,118,123,227,254,146,120,104,255,145,213,255,1,129,187,70,255,219,119,54,0,1,19,173,0,45,150,148,1,248,83,72,0,203,233,169,1,142,107,56,0,247,249,38,1,45,242,80,255,30,233,103,0,96,82,70,0,23,201,111,0,81,39,30,255,161,183,78,255,194,234,33,255,68,227,140,254,216,206,116,0,70,27,235,255,104,144,79,0,164,230,93,254,214,135,156,0,154,187,242,254,188,20,131,255,36,109,174,0,159,112,241,0,5,110,149,1,36,165,218,0,166,29,19,1,178,46,73,0,93,43,32,254,248,189,237,0,102,155,141,0,201,93,195,255,241,139,253,255,15,111,98,255,108,65,163,254,155,79,190,255,73,174,193,254,246,40,48,255,107,88,11,254,202,97,85,255,253,204,18,255,113,242,66,0,110,160,194,254,208,18,186,0,81,21,60,0,188,104,167,255,124,166,97,254,210,133,142,0,56,242,137,254,41,111,130,0,111,151,58,1,111,213,141,255,183,172,241,255,38,6,196,255,185,7,123,255,46,11,246,0,245,105,119,1,15,2,161,255,8,206,45,255,18,202,74,255,83,124,115,1,212,141,157,0,83,8,209,254,139,15,232,255,172,54,173,254,50,247,132,0,214,189,213,0,144,184,105,0,223,254,248,0,255,147,240,255,23,188,72,0,7,51,54,0,188,25,180,254,220,180,0,255,83,160,20,0,163,189,243,255,58,209,194,255,87,73,60,0,106,24,49,0,245,249,220,0,22,173,167,0,118,11,195,255,19,126,237,0,110,159,37,255,59,82,47,0,180,187,86,0,188,148,208,1,100,37,133,255,7,112,193,0,129,188,156,255,84,106,129,255,133,225,202,0,14,236,111,255,40,20,101,0,172,172,49,254,51,54,74,255,251,185,184,255,93,155,224,255,180,249,224,1,230,178,146,0,72,57,54,254,178,62,184,0,119,205,72,0,185,239,253,255,61,15,218,0,196,67,56,255,234,32,171,1,46,219,228,0,208,108,234,255,20,63,232,255,165,53,199,1,133,228,5,255,52,205,107,0,74,238,140,255,150,156,219,254,239,172,178,255,251,189,223,254,32,142,211,255,218,15,138,1,241,196,80,0,28,36,98,254,22,234,199,0,61,237,220,255,246,57,37,0,142,17,142,255,157,62,26,0,43,238,95,254,3,217,6,255,213,25,240,1,39,220,174,255,154,205,48,254,19,13,192,255,244,34,54,254,140,16,155,0,240,181,5,254,155,193,60,0,166,128,4,255,36,145,56,255,150,240,219,0,120,51,145,0,82,153,42,1,140,236,146,0,107,92,248,1,189,10,3,0,63,136,242,0,211,39,24,0,19,202,161,1,173,27,186,255,210,204,239,254,41,209,162,255,182,254,159,255,172,116,52,0,195,103,222,254,205,69,59,0,53,22,41,1,218,48,194,0,80,210,242,0,210,188,207,0,187,161,161,254,216,17,1,0,136,225,113,0,250,184,63,0,223,30,98,254,77,168,162,0,59,53,175,0,19,201,10,255,139,224,194,0,147,193,154,255,212,189,12,254,1,200,174,255,50,133,113,1,94,179,90,0,173,182,135,0,94,177,113,0,43,89,215,255,136,252,106,255,123,134,83,254,5,245,66,255,82,49,39,1,220,2,224,0,97,129,177,0,77,59,89,0,61,29,155,1,203,171,220,255,92,78,139,0,145,33,181,255,169,24,141,1,55,150,179,0,139,60,80,255,218,39,97,0,2,147,107,255,60,248,72,0,173,230,47,1,6,83,182,255,16,105,162,254,137,212,81,255,180,184,134,1,39,222,164,255,221,105,251,1,239,112,125,0,63,7,97,0,63,104,227,255,148,58,12,0,90,60,224,255,84,212,252,0,79,215,168,0,248,221,199,1,115,121,1,0,36,172,120,0,32,162,187,255,57,107,49,255,147,42,21,0,106,198,43,1,57,74,87,0,126,203,81,255,129,135,195,0,140,31,177,0,221,139,194,0,3,222,215,0,131,68,231,0,177,86,178,254,124,151,180,0,184,124,38,1,70,163,17,0,249,251,181,1,42,55,227,0,226,161,44,0,23,236,110,0,51,149,142,1,93,5,236,0,218,183,106,254,67,24,77,0,40,245,209,255,222,121,153,0,165,57,30,0,83,125,60,0,70,38,82,1,229,6,188,0,109,222,157,255,55,118,63,255,205,151,186,0,227,33,149,255,254,176,246,1,227,177,227,0,34,106,163,254,176,43,79,0,106,95,78,1,185,241,122,255,185,14,61,0,36,1,202,0,13,178,162,255,247,11,132,0,161,230,92,1,65,1,185,255,212,50,165,1,141,146,64,255,158,242,218,0,21,164,125,0,213,139,122,1,67,71,87,0,203,158,178,1,151,92,43,0,152,111,5,255,39,3,239,255,217,255,250,255,176,63,71,255,74,245,77,1,250,174,18,255,34,49,227,255,246,46,251,255,154,35,48,1,125,157,61,255,106,36,78,255,97,236,153,0,136,187,120,255,113,134,171,255,19,213,217,254,216,94,209,255,252,5,61,0,94,3,202,0,3,26,183,255,64,191,43,255,30,23,21,0,129,141,77,255,102,120,7,1,194,76,140,0,188,175,52,255,17,81,148,0,232,86,55,1,225,48,172,0,134,42,42,255,238,50,47,0,169,18,254,0,20,147,87,255,14,195,239,255,69,247,23,0,238,229,128,255,177,49,112,0,168,98,251,255,121,71,248,0,243,8,145,254,246,227,153,255,219,169,177,254,251,139,165,255,12,163,185,255,164,40,171,255,153,159,27,254,243,109,91,255,222,24,112,1,18,214,231,0,107,157,181,254,195,147,0,255,194,99,104,255,89,140,190,255,177,66,126,254,106,185,66,0,49,218,31,0,252,174,158,0,188,79,230,1,238,41,224,0,212,234,8,1,136,11,181,0,166,117,83,255,68,195,94,0,46,132,201,0,240,152,88,0,164,57,69,254,160,224,42,255,59,215,67,255,119,195,141,255,36,180,121,254,207,47,8,255,174,210,223,0,101,197,68,255,255,82,141,1,250,137,233,0,97,86,133,1,16,80,69,0,132,131,159,0,116,93,100,0,45,141,139,0,152,172,157,255,90,43,91,0,71,153,46,0,39,16,112,255,217,136,97,255,220,198,25,254,177,53,49,0,222,88,134,255,128,15,60,0,207,192,169,255,192,116,209,255,106,78,211,1,200,213,183,255,7,12,122,254,222,203,60,255,33,110,199,254,251,106,117,0,228,225,4,1,120,58,7,255,221,193,84,254,112,133,27,0,189,200,201,255,139,135,150,0,234,55,176,255,61,50,65,0,152,108,169,255,220,85,1,255,112,135,227,0,162,26,186,0,207,96,185,254,244,136,107,0,93,153,50,1,198,97,151,0,110,11,86,255,143,117,174,255,115,212,200,0,5,202,183,0,237,164,10,254,185,239,62,0,236,120,18,254,98,123,99,255,168,201,194,254,46,234,214,0,191,133,49,255,99,169,119,0,190,187,35,1,115,21,45,255,249,131,72,0,112,6,123,255,214,49,181,254,166,233,34,0,92,197,102,254,253,228,205,255,3,59,201,1,42,98,46,0,219,37,35,255,169,195,38,0,94,124,193,1,156,43,223,0,95,72,133,254,120,206,191,0,122,197,239,255,177,187,79,255,254,46,2,1,250,167,190,0,84,129,19,0,203,113,166,255,249,31,189,254,72,157,202,255,208,71,73,255,207,24,72,0,10,16,18,1,210,81,76,255,88,208,192,255,126,243,107,255,238,141,120,255,199,121,234,255,137,12,59,255,36,220,123,255,148,179,60,254,240,12,29,0,66,0,97,1,36,30,38,255,115,1,93,255,96,103,231,255], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE); /* memory initializer */ allocate([197,158,59,1,192,164,240,0,202,202,57,255,24,174,48,0,89,77,155,1,42,76,215,0,244,151,233,0,23,48,81,0,239,127,52,254,227,130,37,255,248,116,93,1,124,132,118,0,173,254,192,1,6,235,83,255,110,175,231,1,251,28,182,0,129,249,93,254,84,184,128,0,76,181,62,0,175,128,186,0,100,53,136,254,109,29,226,0,221,233,58,1,20,99,74,0,0,22,160,0,134,13,21,0,9,52,55,255,17,89,140,0,175,34,59,0,84,165,119,255,224,226,234,255,7,72,166,255,123,115,255,1,18,214,246,0,250,7,71,1,217,220,185,0,212,35,76,255,38,125,175,0,189,97,210,0,114,238,44,255,41,188,169,254,45,186,154,0,81,92,22,0,132,160,193,0,121,208,98,255,13,81,44,255,203,156,82,0,71,58,21,255,208,114,191,254,50,38,147,0,154,216,195,0,101,25,18,0,60,250,215,255,233,132,235,255,103,175,142,1,16,14,92,0,141,31,110,254,238,241,45,255,153,217,239,1,97,168,47,255,249,85,16,1,28,175,62,255,57,254,54,0,222,231,126,0,166,45,117,254,18,189,96,255,228,76,50,0,200,244,94,0,198,152,120,1,68,34,69,255,12,65,160,254,101,19,90,0,167,197,120,255,68,54,185,255,41,218,188,0,113,168,48,0,88,105,189,1,26,82,32,255,185,93,164,1,228,240,237,255,66,182,53,0,171,197,92,255,107,9,233,1,199,120,144,255,78,49,10,255,109,170,105,255,90,4,31,255,28,244,113,255,74,58,11,0,62,220,246,255,121,154,200,254,144,210,178,255,126,57,129,1,43,250,14,255,101,111,28,1,47,86,241,255,61,70,150,255,53,73,5,255,30,26,158,0,209,26,86,0,138,237,74,0,164,95,188,0,142,60,29,254,162,116,248,255,187,175,160,0,151,18,16,0,209,111,65,254,203,134,39,255,88,108,49,255,131,26,71,255,221,27,215,254,104,105,93,255,31,236,31,254,135,0,211,255,143,127,110,1,212,73,229,0,233,67,167,254,195,1,208,255,132,17,221,255,51,217,90,0,67,235,50,255,223,210,143,0,179,53,130,1,233,106,198,0,217,173,220,255,112,229,24,255,175,154,93,254,71,203,246,255,48,66,133,255,3,136,230,255,23,221,113,254,235,111,213,0,170,120,95,254,251,221,2,0,45,130,158,254,105,94,217,255,242,52,180,254,213,68,45,255,104,38,28,0,244,158,76,0,161,200,96,255,207,53,13,255,187,67,148,0,170,54,248,0,119,162,178,255,83,20,11,0,42,42,192,1,146,159,163,255,183,232,111,0,77,229,21,255,71,53,143,0,27,76,34,0,246,136,47,255,219,39,182,255,92,224,201,1,19,142,14,255,69,182,241,255,163,118,245,0,9,109,106,1,170,181,247,255,78,47,238,255,84,210,176,255,213,107,139,0,39,38,11,0,72,21,150,0,72,130,69,0,205,77,155,254,142,133,21,0,71,111,172,254,226,42,59,255,179,0,215,1,33,128,241,0,234,252,13,1,184,79,8,0,110,30,73,255,246,141,189,0,170,207,218,1,74,154,69,255,138,246,49,255,155,32,100,0,125,74,105,255,90,85,61,255,35,229,177,255,62,125,193,255,153,86,188,1,73,120,212,0,209,123,246,254,135,209,38,255,151,58,44,1,92,69,214,255,14,12,88,255,252,153,166,255,253,207,112,255,60,78,83,255,227,124,110,0,180,96,252,255,53,117,33,254,164,220,82,255,41,1,27,255,38,164,166,255,164,99,169,254,61,144,70,255,192,166,18,0,107,250,66,0,197,65,50,0,1,179,18,255,255,104,1,255,43,153,35,255,80,111,168,0,110,175,168,0,41,105,45,255,219,14,205,255,164,233,140,254,43,1,118,0,233,67,195,0,178,82,159,255,138,87,122,255,212,238,90,255,144,35,124,254,25,140,164,0,251,215,44,254,133,70,107,255,101,227,80,254,92,169,55,0,215,42,49,0,114,180,85,255,33,232,27,1,172,213,25,0,62,176,123,254,32,133,24,255,225,191,62,0,93,70,153,0,181,42,104,1,22,191,224,255,200,200,140,255,249,234,37,0,149,57,141,0,195,56,208,255,254,130,70,255,32,173,240,255,29,220,199,0,110,100,115,255,132,229,249,0,228,233,223,255,37,216,209,254,178,177,209,255,183,45,165,254,224,97,114,0,137,97,168,255,225,222,172,0,165,13,49,1,210,235,204,255,252,4,28,254,70,160,151,0,232,190,52,254,83,248,93,255,62,215,77,1,175,175,179,255,160,50,66,0,121,48,208,0,63,169,209,255,0,210,200,0,224,187,44,1,73,162,82,0,9,176,143,255,19,76,193,255,29,59,167,1,24,43,154,0,28,190,190,0,141,188,129,0,232,235,203,255,234,0,109,255,54,65,159,0,60,88,232,255,121,253,150,254,252,233,131,255,198,110,41,1,83,77,71,255,200,22,59,254,106,253,242,255,21,12,207,255,237,66,189,0,90,198,202,1,225,172,127,0,53,22,202,0,56,230,132,0,1,86,183,0,109,190,42,0,243,68,174,1,109,228,154,0,200,177,122,1,35,160,183,255,177,48,85,255,90,218,169,255,248,152,78,0,202,254,110,0,6,52,43,0,142,98,65,255,63,145,22,0,70,106,93,0,232,138,107,1,110,179,61,255,211,129,218,1,242,209,92,0,35,90,217,1,182,143,106,255,116,101,217,255,114,250,221,255,173,204,6,0,60,150,163,0,73,172,44,255,239,110,80,255,237,76,153,254,161,140,249,0,149,232,229,0,133,31,40,255,174,164,119,0,113,51,214,0,129,228,2,254,64,34,243,0,107,227,244,255,174,106,200,255,84,153,70,1,50,35,16,0,250,74,216,254,236,189,66,255,153,249,13,0,230,178,4,255,221,41,238,0,118,227,121,255,94,87,140,254,254,119,92,0,73,239,246,254,117,87,128,0,19,211,145,255,177,46,252,0,229,91,246,1,69,128,247,255,202,77,54,1,8,11,9,255,153,96,166,0,217,214,173,255,134,192,2,1,0,207,0,0,189,174,107,1,140,134,100,0,158,193,243,1,182,102,171,0,235,154,51,0,142,5,123,255,60,168,89,1,217,14,92,255,19,214,5,1,211,167,254,0,44,6,202,254,120,18,236,255,15,113,184,255,184,223,139,0,40,177,119,254,182,123,90,255,176,165,176,0,247,77,194,0,27,234,120,0,231,0,214,255,59,39,30,0,125,99,145,255,150,68,68,1,141,222,248,0,153,123,210,255,110,127,152,255,229,33,214,1,135,221,197,0,137,97,2,0,12,143,204,255,81,41,188,0,115,79,130,255,94,3,132,0,152,175,187,255,124,141,10,255,126,192,179,255,11,103,198,0,149,6,45,0,219,85,187,1,230,18,178,255,72,182,152,0,3,198,184,255,128,112,224,1,97,161,230,0,254,99,38,255,58,159,197,0,151,66,219,0,59,69,143,255,185,112,249,0,119,136,47,255,123,130,132,0,168,71,95,255,113,176,40,1,232,185,173,0,207,93,117,1,68,157,108,255,102,5,147,254,49,97,33,0,89,65,111,254,247,30,163,255,124,217,221,1,102,250,216,0,198,174,75,254,57,55,18,0,227,5,236,1,229,213,173,0,201,109,218,1,49,233,239,0,30,55,158,1,25,178,106,0,155,111,188,1,94,126,140,0,215,31,238,1,77,240,16,0,213,242,25,1,38,71,168,0,205,186,93,254,49,211,140,255,219,0,180,255,134,118,165,0,160,147,134,255,110,186,35,255,198,243,42,0,243,146,119,0,134,235,163,1,4,241,135,255,193,46,193,254,103,180,79,255,225,4,184,254,242,118,130,0,146,135,176,1,234,111,30,0,69,66,213,254,41,96,123,0,121,94,42,255,178,191,195,255,46,130,42,0,117,84,8,255,233,49,214,254,238,122,109,0,6,71,89,1,236,211,123,0,244,13,48,254,119,148,14,0,114,28,86,255,75,237,25,255,145,229,16,254,129,100,53,255,134,150,120,254,168,157,50,0,23,72,104,255,224,49,14,0,255,123,22,255,151,185,151,255,170,80,184,1,134,182,20,0,41,100,101,1,153,33,16,0,76,154,111,1,86,206,234,255,192,160,164,254,165,123,93,255,1,216,164,254,67,17,175,255,169,11,59,255,158,41,61,255,73,188,14,255,195,6,137,255,22,147,29,255,20,103,3,255,246,130,227,255,122,40,128,0,226,47,24,254,35,36,32,0,152,186,183,255,69,202,20,0,195,133,195,0,222,51,247,0,169,171,94,1,183,0,160,255,64,205,18,1,156,83,15,255,197,58,249,254,251,89,110,255,50,10,88,254,51,43,216,0,98,242,198,1,245,151,113,0,171,236,194,1,197,31,199,255,229,81,38,1,41,59,20,0,253,104,230,0,152,93,14,255,246,242,146,254,214,169,240,255,240,102,108,254,160,167,236,0,154,218,188,0,150,233,202,255,27,19,250,1,2,71,133,255,175,12,63,1,145,183,198,0,104,120,115,255,130,251,247,0,17,212,167,255,62,123,132,255,247,100,189,0,155,223,152,0,143,197,33,0,155,59,44,255,150,93,240,1,127,3,87,255,95,71,207,1,167,85,1,255,188,152,116,255,10,23,23,0,137,195,93,1,54,98,97,0,240,0,168,255,148,188,127,0,134,107,151,0,76,253,171,0,90,132,192,0,146,22,54,0,224,66,54,254,230,186,229,255,39,182,196,0,148,251,130,255,65,131,108,254,128,1,160,0,169,49,167,254,199,254,148,255,251,6,131,0,187,254,129,255,85,82,62,0,178,23,58,255,254,132,5,0,164,213,39,0,134,252,146,254,37,53,81,255,155,134,82,0,205,167,238,255,94,45,180,255,132,40,161,0,254,111,112,1,54,75,217,0,179,230,221,1,235,94,191,255,23,243,48,1,202,145,203,255,39,118,42,255,117,141,253,0,254,0,222,0,43,251,50,0,54,169,234,1,80,68,208,0,148,203,243,254,145,7,135,0,6,254,0,0,252,185,127,0,98,8,129,255,38,35,72,255,211,36,220,1,40,26,89,0,168,64,197,254,3,222,239,255,2,83,215,254,180,159,105,0,58,115,194,0,186,116,106,255,229,247,219,255,129,118,193,0,202,174,183,1,166,161,72,0,201,107,147,254,237,136,74,0,233,230,106,1,105,111,168,0,64,224,30,1,1,229,3,0,102,151,175,255,194,238,228,255,254,250,212,0,187,237,121,0,67,251,96,1,197,30,11,0,183,95,204,0,205,89,138,0,64,221,37,1,255,223,30,255,178,48,211,255,241,200,90,255,167,209,96,255,57,130,221,0,46,114,200,255,61,184,66,0,55,182,24,254,110,182,33,0,171,190,232,255,114,94,31,0,18,221,8,0,47,231,254,0,255,112,83,0,118,15,215,255,173,25,40,254,192,193,31,255,238,21,146,255,171,193,118,255,101,234,53,254,131,212,112,0,89,192,107,1,8,208,27,0,181,217,15,255,231,149,232,0,140,236,126,0,144,9,199,255,12,79,181,254,147,182,202,255,19,109,182,255,49,212,225,0,74,163,203,0,175,233,148,0,26,112,51,0,193,193,9,255,15,135,249,0,150,227,130,0,204,0,219,1,24,242,205,0,238,208,117,255,22,244,112,0,26,229,34,0,37,80,188,255,38,45,206,254,240,90,225,255,29,3,47,255,42,224,76,0,186,243,167,0,32,132,15,255,5,51,125,0,139,135,24,0,6,241,219,0,172,229,133,255,246,214,50,0,231,11,207,255,191,126,83,1,180,163,170,255,245,56,24,1,178,164,211,255,3,16,202,1,98,57,118,255,141,131,89,254,33,51,24,0,243,149,91,255,253,52,14,0,35,169,67,254,49,30,88,255,179,27,36,255,165,140,183,0,58,189,151,0,88,31,0,0,75,169,66,0,66,101,199,255,24,216,199,1,121,196,26,255,14,79,203,254,240,226,81,255,94,28,10,255,83,193,240,255,204,193,131,255,94,15,86,0,218,40,157,0,51,193,209,0,0,242,177,0,102,185,247,0,158,109,116,0,38,135,91,0,223,175,149,0,220,66,1,255,86,60,232,0,25,96,37,255,225,122,162,1,215,187,168,255,158,157,46,0,56,171,162,0,232,240,101,1,122,22,9,0,51,9,21,255,53,25,238,255,217,30,232,254,125,169,148,0,13,232,102,0,148,9,37,0,165,97,141,1,228,131,41,0,222,15,243,255,254,18,17,0,6,60,237,1,106,3,113,0,59,132,189,0,92,112,30,0,105,208,213,0,48,84,179,255,187,121,231,254,27,216,109,255,162,221,107,254,73,239,195,255,250,31,57,255,149,135,89,255,185,23,115,1,3,163,157,255,18,112,250,0,25,57,187,255,161,96,164,0,47,16,243,0,12,141,251,254,67,234,184,255,41,18,161,0,175,6,96,255,160,172,52,254,24,176,183,255,198,193,85,1,124,121,137,255,151,50,114,255,220,203,60,255,207,239,5,1,0,38,107,255,55,238,94,254,70,152,94,0,213,220,77,1,120,17,69,255,85,164,190,255,203,234,81,0,38,49,37,254,61,144,124,0,137,78,49,254,168,247,48,0,95,164,252,0,105,169,135,0,253,228,134,0,64,166,75,0,81,73,20,255,207,210,10,0,234,106,150,255,94,34,90,255,254,159,57,254,220,133,99,0,139,147,180,254,24,23,185,0,41,57,30,255,189,97,76,0,65,187,223,255,224,172,37,255,34,62,95,1,231,144,240,0,77,106,126,254,64,152,91,0,29,98,155,0,226,251,53,255,234,211,5,255,144,203,222,255,164,176,221,254,5,231,24,0,179,122,205,0,36,1,134,255,125,70,151,254,97,228,252,0,172,129,23,254,48,90,209,255,150,224,82,1,84,134,30,0,241,196,46,0,103,113,234,255,46,101,121,254,40,124,250,255,135,45,242,254,9,249,168,255,140,108,131,255,143,163,171,0,50,173,199,255,88,222,142,255,200,95,158,0,142,192,163,255,7,117,135,0,111,124,22,0,236,12,65,254,68,38,65,255,227,174,254,0,244,245,38,0,240,50,208,255,161,63,250,0,60,209,239,0,122,35,19,0,14,33,230,254,2,159,113,0,106,20,127,255,228,205,96,0,137,210,174,254,180,212,144,255,89,98,154,1,34,88,139,0,167,162,112,1,65,110,197,0,241,37,169,0,66,56,131,255,10,201,83,254,133,253,187,255,177,112,45,254,196,251,0,0,196,250,151,255,238,232,214,255,150,209,205,0,28,240,118,0,71,76,83,1,236,99,91,0,42,250,131,1,96,18,64,255,118,222,35,0,113,214,203,255,122,119,184,255,66,19,36,0,204,64,249,0,146,89,139,0,134,62,135,1,104,233,101,0,188,84,26,0,49,249,129,0,208,214,75,255,207,130,77,255,115,175,235,0,171,2,137,255,175,145,186,1,55,245,135,255,154,86,181,1,100,58,246,255,109,199,60,255,82,204,134,255,215,49,230,1,140,229,192,255,222,193,251,255,81,136,15,255,179,149,162,255,23,39,29,255,7,95,75,254,191,81,222,0,241,81,90,255,107,49,201,255,244,211,157,0,222,140,149,255,65,219,56,254,189,246,90,255,178,59,157,1,48,219,52,0,98,34,215,0,28,17,187,255,175,169,24,0,92,79,161,255,236,200,194,1,147,143,234,0,229,225,7,1,197,168,14,0,235,51,53,1,253,120,174,0,197,6,168,255,202,117,171,0,163,21,206,0,114,85,90,255,15,41,10,255,194,19,99,0,65,55,216,254,162,146,116,0,50,206,212,255,64,146,29,255,158,158,131,1,100,165,130,255,172,23,129,255,125,53,9,255,15,193,18,1,26,49,11,255,181,174,201,1,135,201,14,255,100,19,149,0,219,98,79,0,42,99,143,254,96,0,48,255,197,249,83,254,104,149,79,255,235,110,136,254,82,128,44,255,65,41,36,254,88,211,10,0,187,121,187,0,98,134,199,0,171,188,179,254,210,11,238,255,66,123,130,254,52,234,61,0,48,113,23,254,6,86,120,255,119,178,245,0,87,129,201,0,242,141,209,0,202,114,85,0,148,22,161,0,103,195,48,0,25,49,171,255,138,67,130,0,182,73,122,254,148,24,130,0,211,229,154,0,32,155,158,0,84,105,61,0,177,194,9,255,166,89,86,1,54,83,187,0,249,40,117,255,109,3,215,255,53,146,44,1,63,47,179,0,194,216,3,254,14,84,136,0,136,177,13,255,72,243,186,255,117,17,125,255,211,58,211,255,93,79,223,0,90,88,245,255,139,209,111,255,70,222,47,0,10,246,79,255,198,217,178,0,227,225,11,1,78,126,179,255,62,43,126,0,103,148,35,0,129,8,165,254,245,240,148,0,61,51,142,0,81,208,134,0,15,137,115,255,211,119,236,255,159,245,248,255,2,134,136,255,230,139,58,1,160,164,254,0,114,85,141,255,49,166,182,255,144,70,84,1,85,182,7,0,46,53,93,0,9,166,161,255,55,162,178,255,45,184,188,0,146,28,44,254,169,90,49,0,120,178,241,1,14,123,127,255,7,241,199,1,189,66,50,255,198,143,101,254,189,243,135,255,141,24,24,254,75,97,87,0,118,251,154,1,237,54,156,0,171,146,207,255,131,196,246,255,136,64,113,1,151,232,57,0,240,218,115,0,49,61,27,255,64,129,73,1,252,169,27,255,40,132,10,1,90,201,193,255,252,121,240,1,186,206,41,0,43,198,97,0,145,100,183,0,204,216,80,254,172,150,65,0,249,229,196,254,104,123,73,255,77,104,96,254,130,180,8,0,104,123,57,0,220,202,229,255,102,249,211,0,86,14,232,255,182,78,209,0,239,225,164,0,106,13,32,255,120,73,17,255,134,67,233,0,83,254,181,0,183,236,112,1,48,64,131,255,241,216,243,255,65,193,226,0,206,241,100,254,100,134,166,255,237,202,197,0,55,13,81,0,32,124,102,255,40,228,177,0,118,181,31,1,231,160,134,255,119,187,202,0,0,142,60,255,128,38,189,255,166,201,150,0,207,120,26,1,54,184,172,0,12,242,204,254,133,66,230,0,34,38,31,1,184,112,80,0,32,51,165,254,191,243,55,0,58,73,146,254,155,167,205,255,100,104,152,255,197,254,207,255,173,19,247,0,238,10,202,0,239,151,242,0,94,59,39,255,240,29,102,255,10,92,154,255,229,84,219,255,161,129,80,0,208,90,204,1,240,219,174,255,158,102,145,1,53,178,76,255,52,108,168,1,83,222,107,0,211,36,109,0,118,58,56,0,8,29,22,0,237,160,199,0,170,209,157,0,137,71,47,0,143,86,32,0,198,242,2,0,212,48,136,1,92,172,186,0,230,151,105,1,96,191,229,0,138,80,191,254,240,216,130,255,98,43,6,254,168,196,49,0,253,18,91,1,144,73,121,0,61,146,39,1,63,104,24,255,184,165,112,254,126,235,98,0,80,213,98,255,123,60,87,255,82,140,245,1,223,120,173,255,15,198,134,1,206,60,239,0,231,234,92,255,33,238,19,255,165,113,142,1,176,119,38,0,160,43,166,254,239,91,105,0,107,61,194,1,25,4,68,0,15,139,51,0,164,132,106,255,34,116,46,254,168,95,197,0,137,212,23,0,72,156,58,0,137,112,69,254,150,105,154,255,236,201,157,0,23,212,154,255,136,82,227,254,226,59,221,255,95,149,192,0,81,118,52,255,33,43,215,1,14,147,75,255,89,156,121,254,14,18,79,0,147,208,139,1,151,218,62,255,156,88,8,1,210,184,98,255,20,175,123,255,102,83,229,0,220,65,116,1,150,250,4,255,92,142,220,255,34,247,66,255,204,225,179,254,151,81,151,0,71,40,236,255,138,63,62,0,6,79,240,255,183,185,181,0,118,50,27,0,63,227,192,0,123,99,58,1,50,224,155,255,17,225,223,254,220,224,77,255,14,44,123,1,141,128,175,0,248,212,200,0,150,59,183,255,147,97,29,0,150,204,181,0,253,37,71,0,145,85,119,0,154,200,186,0,2,128,249,255,83,24,124,0,14,87,143,0,168,51,245,1,124,151,231,255,208,240,197,1,124,190,185,0,48,58,246,0,20,233,232,0,125,18,98,255,13,254,31,255,245,177,130,255,108,142,35,0,171,125,242,254,140,12,34,255,165,161,162,0,206,205,101,0,247,25,34,1,100,145,57,0,39,70,57,0,118,204,203,255,242,0,162,0,165,244,30,0,198,116,226,0,128,111,153,255,140,54,182,1,60,122,15,255,155,58,57,1,54,50,198,0,171,211,29,255,107,138,167,255,173,107,199,255,109,161,193,0,89,72,242,255,206,115,89,255,250,254,142,254,177,202,94,255,81,89,50,0,7,105,66,255,25,254,255,254,203,64,23,255,79,222,108,255,39,249,75,0,241,124,50,0,239,152,133,0,221,241,105,0,147,151,98,0,213,161,121,254,242,49,137,0,233,37,249,254,42,183,27,0,184,119,230,255,217,32,163,255,208,251,228,1,137,62,131,255,79,64,9,254,94,48,113,0,17,138,50,254,193,255,22,0,247,18,197,1,67,55,104,0,16,205,95,255,48,37,66,0,55,156,63,1,64,82,74,255,200,53,71,254,239,67,125,0,26,224,222,0,223,137,93,255,30,224,202,255,9,220,132,0,198,38,235,1,102,141,86,0,60,43,81,1,136,28,26,0,233,36,8,254,207,242,148,0,164,162,63,0,51,46,224,255,114,48,79,255,9,175,226,0,222,3,193,255,47,160,232,255,255,93,105,254,14,42,230,0,26,138,82,1,208,43,244,0,27,39,38,255,98,208,127,255,64,149,182,255,5,250,209,0,187,60,28,254,49,25,218,255,169,116,205,255,119,18,120,0,156,116,147,255,132,53,109,255,13,10,202,0,110,83,167,0,157,219,137,255,6,3,130,255,50,167,30,255,60,159,47,255,129,128,157,254,94,3,189,0,3,166,68,0,83,223,215,0,150,90,194,1,15,168,65,0,227,83,51,255,205,171,66,255,54,187,60,1,152,102,45,255,119,154,225,0,240,247,136,0,100,197,178,255,139,71,223,255,204,82,16,1,41,206,42,255,156,192,221,255,216,123,244,255,218,218,185,255,187,186,239,255,252,172,160,255,195,52,22,0,144,174,181,254,187,100,115,255,211,78,176,255,27,7,193,0,147,213,104,255,90,201,10,255,80,123,66,1,22,33,186,0,1,7,99,254,30,206,10,0,229,234,5,0,53,30,210,0,138,8,220,254,71,55,167,0,72,225,86,1,118,190,188,0,254,193,101,1,171,249,172,255,94,158,183,254,93,2,108,255,176,93,76,255,73,99,79,255,74,64,129,254,246,46,65,0,99,241,127,254,246,151,102,255,44,53,208,254,59,102,234,0,154,175,164,255,88,242,32,0,111,38,1,0,255,182,190,255,115,176,15,254,169,60,129,0,122,237,241,0,90,76,63,0,62,74,120,255,122,195,110,0,119,4,178,0,222,242,210,0,130,33,46,254,156,40,41,0,167,146,112,1,49,163,111,255,121,176,235,0,76,207,14,255,3,25,198,1,41,235,213,0,85,36,214,1,49,92,109,255,200,24,30,254,168,236,195,0,145,39,124,1,236,195,149,0,90,36,184,255,67,85,170,255,38,35,26,254,131,124,68,255,239,155,35,255,54,201,164,0,196,22,117,255,49,15,205,0,24,224,29,1,126,113,144,0,117,21,182,0,203,159,141,0,223,135,77,0,176,230,176,255,190,229,215,255,99,37,181,255,51,21,138,255,25,189,89,255,49,48,165,254,152,45,247,0,170,108,222,0,80,202,5,0,27,69,103,254,204,22,129,255,180,252,62,254,210,1,91,255,146,110,254,255,219,162,28,0,223,252,213,1,59,8,33,0,206,16,244,0,129,211,48,0,107,160,208,0,112,59,209,0,109,77,216,254,34,21,185,255,246,99,56,255,179,139,19,255,185,29,50,255,84,89,19,0,74,250,98,255,225,42,200,255,192,217,205,255,210,16,167,0,99,132,95,1,43,230,57,0,254,11,203,255,99,188,63,255,119,193,251,254,80,105,54,0,232,181,189,1,183,69,112,255,208,171,165,255,47,109,180,255,123,83,165,0,146,162,52,255,154,11,4,255,151,227,90,255,146,137,97,254,61,233,41,255,94,42,55,255,108,164,236,0,152,68,254,0,10,140,131,255,10,106,79,254,243,158,137,0,67,178,66,254,177,123,198,255,15,62,34,0,197,88,42,255,149,95,177,255,152,0,198,255,149,254,113,255,225,90,163,255,125,217,247,0,18,17,224,0,128,66,120,254,192,25,9,255,50,221,205,0,49,212,70,0,233,255,164,0,2,209,9,0,221,52,219,254,172,224,244,255,94,56,206,1,242,179,2,255,31,91,164,1,230,46,138,255,189,230,220,0,57,47,61,255,111,11,157,0,177,91,152,0,28,230,98,0,97,87,126,0,198,89,145,255,167,79,107,0,249,77,160,1,29,233,230,255,150,21,86,254,60,11,193,0,151,37,36,254,185,150,243,255,228,212,83,1,172,151,180,0,201,169,155,0,244,60,234,0,142,235,4,1,67,218,60,0,192,113,75,1,116,243,207,255,65,172,155,0,81,30,156,255,80,72,33,254,18,231,109,255,142,107,21,254,125,26,132,255,176,16,59,255,150,201,58,0,206,169,201,0,208,121,226,0,40,172,14,255,150,61,94,255,56,57,156,255,141,60,145,255,45,108,149,255,238,145,155,255,209,85,31,254,192,12,210,0,99,98,93,254,152,16,151,0,225,185,220,0,141,235,44,255,160,172,21,254,71,26,31,255,13,64,93,254,28,56,198,0,177,62,248,1,182,8,241,0,166,101,148,255,78,81,133,255,129,222,215,1,188,169,129,255,232,7,97,0,49,112,60,255,217,229,251,0,119,108,138,0,39,19,123,254,131,49,235,0,132,84,145,0,130,230,148,255,25,74,187,0,5,245,54,255,185,219,241,1,18,194,228,255,241,202,102,0,105,113,202,0,155,235,79,0,21,9,178,255,156,1,239,0,200,148,61,0,115,247,210,255,49,221,135,0,58,189,8,1,35,46,9,0,81,65,5,255,52,158,185,255,125,116,46,255,74,140,13,255,210,92,172,254,147,23,71,0,217,224,253,254,115,108,180,255,145,58,48,254,219,177,24,255,156,255,60,1,154,147,242,0,253,134,87,0,53,75,229,0,48,195,222,255,31,175,50,255,156,210,120,255,208,35,222,255,18,248,179,1,2,10,101,255,157,194,248,255,158,204,101,255,104,254,197,255,79,62,4,0,178,172,101,1,96,146,251,255,65,10,156,0,2,137,165,255,116,4,231,0,242,215,1,0,19,35,29,255,43,161,79,0,59,149,246,1,251,66,176,0,200,33,3,255,80,110,142,255,195,161,17,1,228,56,66,255,123,47,145,254,132,4,164,0,67,174,172,0,25,253,114,0,87,97,87,1,250,220,84,0,96,91,200,255,37,125,59,0,19,65,118,0,161,52,241,255,237,172,6,255,176,191,255,255,1,65,130,254,223,190,230,0,101,253,231,255,146,35,109,0,250,29,77,1,49,0,19,0,123,90,155,1,22,86,32,255,218,213,65,0,111,93,127,0,60,93,169,255,8,127,182,0,17,186,14,254,253,137,246,255,213,25,48,254,76,238,0,255,248,92,70,255,99,224,139,0,184,9,255,1,7,164,208,0,205,131,198,1,87,214,199,0,130,214,95,0,221,149,222,0,23,38,171,254,197,110,213,0,43,115,140,254,215,177,118,0,96,52,66,1,117,158,237,0,14,64,182,255,46,63,174,255,158,95,190,255,225,205,177,255,43,5,142,255,172,99,212,255,244,187,147,0,29,51,153,255,228,116,24,254,30,101,207,0,19,246,150,255,134,231,5,0,125,134,226,1,77,65,98,0,236,130,33,255,5,110,62,0,69,108,127,255,7,113,22,0,145,20,83,254,194,161,231,255,131,181,60,0,217,209,177,255,229,148,212,254,3,131,184,0,117,177,187,1,28,14,31,255,176,102,80,0,50,84,151,255,125,31,54,255,21,157,133,255,19,179,139,1,224,232,26,0,34,117,170,255,167,252,171,255,73,141,206,254,129,250,35,0,72,79,236,1,220,229,20,255,41,202,173,255,99,76,238,255,198,22,224,255,108,198,195,255,36,141,96,1,236,158,59,255,106,100,87,0,110,226,2,0,227,234,222,0,154,93,119,255,74,112,164,255,67,91,2,255,21,145,33,255,102,214,137,255,175,230,103,254,163,246,166,0,93,247,116,254,167,224,28,255,220,2,57,1,171,206,84,0,123,228,17,255,27,120,119,0,119,11,147,1,180,47,225,255,104,200,185,254,165,2,114,0,77,78,212,0,45,154,177,255,24,196,121,254,82,157,182,0,90,16,190,1,12,147,197,0,95,239,152,255,11,235,71,0,86,146,119,255,172,134,214,0,60,131,196,0,161,225,129,0,31,130,120,254,95,200,51,0,105,231,210,255,58,9,148,255,43,168,221,255,124,237,142,0,198,211,50,254,46,245,103,0,164,248,84,0,152,70,208,255,180,117,177,0,70,79,185,0,243,74,32,0,149,156,207,0,197,196,161,1,245,53,239,0,15,93,246,254,139,240,49,255,196,88,36,255,162,38,123,0,128,200,157,1,174,76,103,255,173,169,34,254,216,1,171,255,114,51,17,0,136,228,194,0,110,150,56,254,106,246,159,0,19,184,79,255,150,77,240,255,155,80,162,0,0,53,169,255,29,151,86,0,68,94,16,0,92,7,110,254,98,117,149,255,249,77,230,255,253,10,140,0,214,124,92,254,35,118,235,0,89,48,57,1,22,53,166,0,184,144,61,255,179,255,194,0,214,248,61,254,59,110,246,0,121,21,81,254,166,3,228,0,106,64,26,255,69,232,134,255,242,220,53,254,46,220,85,0,113,149,247,255,97,179,103,255,190,127,11,0,135,209,182,0,95,52,129,1,170,144,206,255,122,200,204,255,168,100,146,0,60,144,149,254,70,60,40,0,122,52,177,255,246,211,101,255,174,237,8,0,7,51,120,0,19,31,173,0,126,239,156,255,143,189,203,0,196,128,88,255,233,133,226,255,30,125,173,255,201,108,50,0,123,100,59,255,254,163,3,1,221,148,181,255,214,136,57,254,222,180,137,255,207,88,54,255,28,33,251,255,67,214,52,1,210,208,100,0,81,170,94,0,145,40,53,0,224,111,231,254,35,28,244,255,226,199,195,254,238,17,230,0,217,217,164,254,169,157,221,0,218,46,162,1,199,207,163,255,108,115,162,1,14,96,187,255,118,60,76,0,184,159,152,0,209,231,71,254,42,164,186,255,186,153,51,254,221,171,182,255,162,142,173,0,235,47,193,0,7,139,16,1,95,164,64,255,16,221,166,0,219,197,16,0,132,29,44,255,100,69,117,255,60,235,88,254,40,81,173,0,71,190,61,255,187,88,157,0,231,11,23,0,237,117,164,0,225,168,223,255,154,114,116,255,163,152,242,1,24,32,170,0,125,98,113,254,168,19,76,0,17,157,220,254,155,52,5,0,19,111,161,255,71,90,252,255,173,110,240,0,10,198,121,255,253,255,240,255,66,123,210,0,221,194,215,254,121,163,17,255,225,7,99,0,190,49,182,0,115,9,133,1,232,26,138,255,213,68,132,0,44,119,122,255,179,98,51,0,149,90,106,0,71,50,230,255,10,153,118,255,177,70,25,0,165,87,205,0,55,138,234,0,238,30,97,0,113,155,207,0,98,153,127,0,34,107,219,254,117,114,172,255,76,180,255,254,242,57,179,255,221,34,172,254,56,162,49,255,83,3,255,255,113,221,189,255,188,25,228,254,16,88,89,255,71,28,198,254,22,17,149,255,243,121,254,255,107,202,99,255,9,206,14,1,220,47,153,0,107,137,39,1,97,49,194,255,149,51,197,254,186,58,11,255,107,43,232,1,200,6,14,255,181,133,65,254,221,228,171,255,123,62,231,1,227,234,179,255,34,189,212,254,244,187,249,0,190,13,80,1,130,89,1,0,223,133,173,0,9,222,198,255,66,127,74,0,167,216,93,255,155,168,198,1,66,145,0,0,68,102,46,1,172,90,154,0,216,128,75,255,160,40,51,0,158,17,27,1,124,240,49,0,236,202,176,255,151,124,192,255,38,193,190,0,95,182,61,0,163,147,124,255,255,165,51,255,28,40,17,254,215,96,78,0,86,145,218,254,31,36,202,255,86,9,5,0,111,41,200,255,237,108,97,0,57,62,44,0,117,184,15,1,45,241,116,0,152,1,220,255,157,165,188,0,250,15,131,1,60,44,125,255,65,220,251,255,75,50,184,0,53,90,128,255,231,80,194,255,136,129,127,1,21,18,187,255,45,58,161,255,71,147,34,0,174,249,11,254,35,141,29,0,239,68,177,255,115,110,58,0,238,190,177,1,87,245,166,255,190,49,247,255,146,83,184,255,173,14,39,255,146,215,104,0,142,223,120,0,149,200,155,255,212,207,145,1,16,181,217,0,173,32,87,255,255,35,181,0,119,223,161,1,200,223,94,255,70,6,186,255,192,67,85,255,50,169,152,0,144,26,123,255,56,243,179,254,20,68,136,0,39,140,188,254,253,208,5,255,200,115,135,1,43,172,229,255,156,104,187,0,151,251,167,0,52,135,23,0,151,153,72,0,147,197,107,254,148,158,5,255,238,143,206,0,126,153,137,255,88,152,197,254,7,68,167,0,252,159,165,255,239,78,54,255,24,63,55,255,38,222,94,0,237,183,12,255,206,204,210,0,19,39,246,254,30,74,231,0,135,108,29,1,179,115,0,0,117,118,116,1,132,6,252,255,145,129,161,1,105,67,141,0,82,37,226,255,238,226,228,255,204,214,129,254,162,123,100,255,185,121,234,0,45,108,231,0,66,8,56,255,132,136,128,0,172,224,66,254,175,157,188,0,230,223,226,254,242,219,69,0,184,14,119,1,82,162,56,0,114,123,20,0,162,103,85,255,49,239,99,254,156,135,215,0,111,255,167,254,39,196,214,0,144,38,79,1,249,168,125,0,155,97,156,255,23,52,219,255,150,22,144,0,44,149,165,255,40,127,183,0,196,77,233,255,118,129,210,255,170,135,230,255,214,119,198,0,233,240,35,0,253,52,7,255,117,102,48,255,21,204,154,255,179,136,177,255,23,2,3,1,149,130,89,255,252,17,159,1,70,60,26,0,144,107,17,0,180,190,60,255,56,182,59,255,110,71,54,255,198,18,129,255,149,224,87,255,223,21,152,255,138,22,182,255,250,156,205,0,236,45,208,255,79,148,242,1,101,70,209,0,103,78,174,0,101,144,172,255,152,136,237,1,191,194,136,0,113,80,125,1,152,4,141,0,155,150,53,255,196,116,245,0,239,114,73,254,19,82,17,255,124,125,234,255,40,52,191,0,42,210,158,255,155,132,165,0,178,5,42,1,64,92,40,255,36,85,77,255,178,228,118,0,137,66,96,254,115,226,66,0,110,240,69,254,151,111,80,0,167,174,236,255,227,108,107,255,188,242,65,255,183,81,255,0,57,206,181,255,47,34,181,255,213,240,158,1,71,75,95,0,156,40,24,255,102,210,81,0,171,199,228,255,154,34,41,0,227,175,75,0,21,239,195,0,138,229,95,1,76,192,49,0,117,123,87,1,227,225,130,0,125,62,63,255,2,198,171,0,254,36,13,254,145,186,206,0,148,255,244,255,35,0,166,0,30,150,219,1,92,228,212,0,92,198,60,254,62,133,200,255,201,41,59,0,125,238,109,255,180,163,238,1,140,122,82,0,9,22,88,255,197,157,47,255,153,94,57,0,88,30,182,0,84,161,85,0,178,146,124,0,166,166,7,255,21,208,223,0,156,182,242,0,155,121,185,0,83,156,174,254,154,16,118,255,186,83,232,1,223,58,121,255,29,23,88,0,35,125,127,255,170,5,149,254,164,12,130,255,155,196,29,0,161,96,136,0,7,35,29,1,162,37,251,0,3,46,242,255,0,217,188,0,57,174,226,1,206,233,2,0,57,187,136,254,123,189,9,255,201,117,127,255,186,36,204,0,231,25,216,0,80,78,105,0,19,134,129,255,148,203,68,0,141,81,125,254,248,165,200,255,214,144,135,0,151,55,166,255,38,235,91,0,21,46,154,0,223,254,150,255,35,153,180,255,125,176,29,1,43,98,30,255,216,122,230,255,233,160,12,0,57,185,12,254,240,113,7,255,5,9,16,254,26,91,108,0,109,198,203,0,8,147,40,0,129,134,228,255,124,186,40,255,114,98,132,254,166,132,23,0,99,69,44,0,9,242,238,255,184,53,59,0,132,129,102,255,52,32,243,254,147,223,200,255,123,83,179,254,135,144,201,255,141,37,56,1,151,60,227,255,90,73,156,1,203,172,187,0,80,151,47,255,94,137,231,255,36,191,59,255,225,209,181,255,74,215,213,254,6,118,179,255,153,54,193,1,50,0,231,0,104,157,72,1,140,227,154,255,182,226,16,254,96,225,92,255,115,20,170,254,6,250,78,0,248,75,173,255,53,89,6,255,0,180,118,0,72,173,1,0,64,8,206,1,174,133,223,0,185,62,133,255,214,11,98,0,197,31,208,0,171,167,244,255,22,231,181,1,150,218,185,0,247,169,97,1,165,139,247,255,47,120,149,1,103,248,51,0,60,69,28,254,25,179,196,0,124,7,218,254,58,107,81,0,184,233,156,255,252,74,36,0,118,188,67,0,141,95,53,255,222,94,165,254,46,61,53,0,206,59,115,255,47,236,250,255,74,5,32,1,129,154,238,255,106,32,226,0,121,187,61,255,3,166,241,254,67,170,172,255,29,216,178,255,23,201,252,0,253,110,243,0,200,125,57,0,109,192,96,255,52,115,238,0,38,121,243,255,201,56,33,0,194,118,130,0,75,96,25,255,170,30,230,254,39,63,253,0,36,45,250,255,251,1,239,0,160,212,92,1,45,209,237,0,243,33,87,254,237,84,201,255,212,18,157,254,212,99,127,255,217,98,16,254,139,172,239,0,168,201,130,255,143,193,169,255,238,151,193,1,215,104,41,0,239,61,165,254,2,3,242,0,22,203,177,254,177,204,22,0,149,129,213,254,31,11,41,255,0,159,121,254,160,25,114,255,162,80,200,0,157,151,11,0,154,134,78,1,216,54,252,0,48,103,133,0,105,220,197,0,253,168,77,254,53,179,23,0,24,121,240,1,255,46,96,255,107,60,135,254,98,205,249,255,63,249,119,255,120,59,211,255,114,180,55,254,91,85,237,0,149,212,77,1,56,73,49,0,86,198,150,0,93,209,160,0,69,205,182,255,244,90,43,0,20,36,176,0,122,116,221,0,51,167,39,1,231,1,63,255,13,197,134,0,3,209,34,255,135,59,202,0,167,100,78,0,47,223,76,0,185,60,62,0,178,166,123,1,132,12,161,255,61,174,43,0,195,69,144,0,127,47,191,1,34,44,78,0,57,234,52,1,255,22,40,255,246,94,146,0,83,228,128,0,60,78,224,255,0,96,210,255,153,175,236,0,159,21,73,0,180,115,196,254,131,225,106,0,255,167,134,0,159,8,112,255,120,68,194,255,176,196,198,255,118,48,168,255,93,169,1,0,112,200,102,1,74,24,254,0,19,141,4,254,142,62,63,0,131,179,187,255,77,156,155,255,119,86,164,0,170,208,146,255,208,133,154,255,148,155,58,255,162,120,232,254,252,213,155,0,241,13,42,0,94,50,131,0,179,170,112,0,140,83,151,255,55,119,84,1,140,35,239,255,153,45,67,1,236,175,39,0,54,151,103,255,158,42,65,255,196,239,135,254,86,53,203,0,149,97,47,254,216,35,17,255,70,3,70,1,103,36,90,255,40,26,173,0,184,48,13,0,163,219,217,255,81,6,1,255,221,170,108,254,233,208,93,0,100,201,249,254,86,36,35,255,209,154,30,1,227,201,251,255,2,189,167,254,100,57,3,0,13,128,41,0,197,100,75,0,150,204,235,255,145,174,59,0,120,248,149,255,85,55,225,0,114,210,53,254,199,204,119,0,14,247,74,1,63,251,129,0,67,104,151,1,135,130,80,0,79,89,55,255,117,230,157,255,25,96,143,0,213,145,5,0,69,241,120,1,149,243,95,255,114,42,20,0,131,72,2,0,154,53,20,255,73,62,109,0,196,102,152,0,41,12,204,255,122,38,11,1,250,10,145,0,207,125,148,0,246,244,222,255,41,32,85,1,112,213,126,0,162,249,86,1,71,198,127,255,81,9,21,1,98,39,4,255,204,71,45,1,75,111,137,0,234,59,231,0,32,48,95,255,204,31,114,1,29,196,181,255,51,241,167,254,93,109,142,0,104,144,45,0,235,12,181,255,52,112,164,0,76,254,202,255,174,14,162,0,61,235,147,255,43,64,185,254,233,125,217,0,243,88,167,254,74,49,8,0,156,204,66,0,124,214,123,0,38,221,118,1,146,112,236,0,114,98,177,0,151,89,199,0,87,197,112,0,185,149,161,0,44,96,165,0,248,179,20,255,188,219,216,254,40,62,13,0,243,142,141,0,229,227,206,255,172,202,35,255,117,176,225,255,82,110,38,1,42,245,14,255,20,83,97,0,49,171,10,0,242,119,120,0,25,232,61,0,212,240,147,255,4,115,56,255,145,17,239,254,202,17,251,255,249,18,245,255,99,117,239,0,184,4,179,255,246,237,51,255,37,239,137,255,166,112,166,255,81,188,33,255,185,250,142,255,54,187,173,0,208,112,201,0,246,43,228,1,104,184,88,255,212,52,196,255,51,117,108,255,254,117,155,0,46,91,15,255,87,14,144,255,87,227,204,0,83,26,83,1,159,76,227,0,159,27,213,1,24,151,108,0,117,144,179,254,137,209,82,0,38,159,10,0,115,133,201,0,223,182,156,1,110,196,93,255,57,60,233,0,5,167,105,255,154,197,164,0,96,34,186,255,147,133,37,1,220,99,190,0,1,167,84,255,20,145,171,0,194,197,251,254,95,78,133,255,252,248,243,255,225,93,131,255,187,134,196,255,216,153,170,0,20,118,158,254,140,1,118,0,86,158,15,1,45,211,41,255,147,1,100,254,113,116,76,255,211,127,108,1,103,15,48,0,193,16,102,1,69,51,95,255,107,128,157,0,137,171,233,0,90,124,144,1,106,161,182,0,175,76,236,1,200,141,172,255,163,58,104,0,233,180,52,255,240,253,14,255,162,113,254,255,38,239,138,254,52,46,166,0,241,101,33,254,131,186,156,0,111,208,62,255,124,94,160,255,31,172,254,0,112,174,56,255,188,99,27,255,67,138,251,0,125,58,128,1,156,152,174,255,178,12,247,255,252,84,158,0,82,197,14,254,172,200,83,255,37,39,46,1,106,207,167,0,24,189,34,0,131,178,144,0,206,213,4,0,161,226,210,0,72,51,105,255,97,45,187,255,78,184,223,255,176,29,251,0,79,160,86,255,116,37,178,0,82,77,213,1,82,84,141,255,226,101,212,1,175,88,199,255,245,94,247,1,172,118,109,255,166,185,190,0,131,181,120,0,87,254,93,255,134,240,73,255,32,245,143,255,139,162,103,255,179,98,18,254,217,204,112,0,147,223,120,255,53,10,243,0,166,140,150,0,125,80,200,255,14,109,219,255,91,218,1,255,252,252,47,254,109,156,116,255,115,49,127,1,204,87,211,255,148,202,217,255,26,85,249,255,14,245,134,1,76,89,169,255,242,45,230,0,59,98,172,255,114,73,132,254,78,155,49,255,158,126,84,0,49,175,43,255,16,182,84,255,157,103,35,0,104,193,109,255,67,221,154,0,201,172,1,254,8,162,88,0,165,1,29,255,125,155,229,255,30,154,220,1,103,239,92,0,220,1,109,255,202,198,1,0,94,2,142,1,36,54,44,0,235,226,158,255,170,251,214,255,185,77,9,0,97,74,242,0,219,163,149,255,240,35,118,255,223,114,88,254,192,199,3,0,106,37,24,255,201,161,118,255,97,89,99,1,224,58,103,255,101,199,147,254,222,60,99,0,234,25,59,1,52,135,27,0,102,3,91,254,168,216,235,0,229,232,136,0,104,60,129,0,46,168,238,0,39,191,67,0,75,163,47,0,143,97,98,255,56,216,168,1,168,233,252,255,35,111,22,255,92,84,43,0,26,200,87,1,91,253,152,0,202,56,70,0,142,8,77,0,80,10,175,1,252,199,76,0,22,110,82,255,129,1,194,0,11,128,61,1,87,14,145,255,253,222,190,1,15,72,174,0,85,163,86,254,58,99,44,255,45,24,188,254,26,205,15,0,19,229,210,254,248,67,195,0,99,71,184,0,154,199,37,255,151,243,121,255,38,51,75,255,201,85,130,254,44,65,250,0,57,147,243,254,146,43,59,255,89,28,53,0,33,84,24,255,179,51,18,254,189,70,83,0,11,156,179,1,98,134,119,0,158,111,111,0,119,154,73,255,200,63,140,254,45,13,13,255,154,192,2,254,81,72,42,0,46,160,185,254,44,112,6,0,146,215,149,1,26,176,104,0,68,28,87,1,236,50,153,255,179,128,250,254,206,193,191,255,166,92,137,254,53,40,239,0,210,1,204,254,168,173,35,0,141,243,45,1,36,50,109,255,15,242,194,255,227,159,122,255,176,175,202,254,70,57,72,0,40,223,56,0,208,162,58,255,183,98,93,0,15,111,12,0,30,8,76,255,132,127,246,255,45,242,103,0,69,181,15,255,10,209,30,0,3,179,121,0,241,232,218,1,123,199,88,255,2,210,202,1,188,130,81,255,94,101,208,1,103,36,45], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE+10240); /* memory initializer */ allocate([76,193,24,1,95,26,241,255,165,162,187,0,36,114,140,0,202,66,5,255,37,56,147,0,152,11,243,1,127,85,232,255,250,135,212,1,185,177,113,0,90,220,75,255,69,248,146,0,50,111,50,0,92,22,80,0,244,36,115,254,163,100,82,255,25,193,6,1,127,61,36,0,253,67,30,254,65,236,170,255,161,17,215,254,63,175,140,0,55,127,4,0,79,112,233,0,109,160,40,0,143,83,7,255,65,26,238,255,217,169,140,255,78,94,189,255,0,147,190,255,147,71,186,254,106,77,127,255,233,157,233,1,135,87,237,255,208,13,236,1,155,109,36,255,180,100,218,0,180,163,18,0,190,110,9,1,17,63,123,255,179,136,180,255,165,123,123,255,144,188,81,254,71,240,108,255,25,112,11,255,227,218,51,255,167,50,234,255,114,79,108,255,31,19,115,255,183,240,99,0,227,87,143,255,72,217,248,255,102,169,95,1,129,149,149,0,238,133,12,1,227,204,35,0,208,115,26,1,102,8,234,0,112,88,143,1,144,249,14,0,240,158,172,254,100,112,119,0,194,141,153,254,40,56,83,255,121,176,46,0,42,53,76,255,158,191,154,0,91,209,92,0,173,13,16,1,5,72,226,255,204,254,149,0,80,184,207,0,100,9,122,254,118,101,171,255,252,203,0,254,160,207,54,0,56,72,249,1,56,140,13,255,10,64,107,254,91,101,52,255,225,181,248,1,139,255,132,0,230,145,17,0,233,56,23,0,119,1,241,255,213,169,151,255,99,99,9,254,185,15,191,255,173,103,109,1,174,13,251,255,178,88,7,254,27,59,68,255,10,33,2,255,248,97,59,0,26,30,146,1,176,147,10,0,95,121,207,1,188,88,24,0,185,94,254,254,115,55,201,0,24,50,70,0,120,53,6,0,142,66,146,0,228,226,249,255,104,192,222,1,173,68,219,0,162,184,36,255,143,102,137,255,157,11,23,0,125,45,98,0,235,93,225,254,56,112,160,255,70,116,243,1,153,249,55,255,129,39,17,1,241,80,244,0,87,69,21,1,94,228,73,255,78,66,65,255,194,227,231,0,61,146,87,255,173,155,23,255,112,116,219,254,216,38,11,255,131,186,133,0,94,212,187,0,100,47,91,0,204,254,175,255,222,18,215,254,173,68,108,255,227,228,79,255,38,221,213,0,163,227,150,254,31,190,18,0,160,179,11,1,10,90,94,255,220,174,88,0,163,211,229,255,199,136,52,0,130,95,221,255,140,188,231,254,139,113,128,255,117,171,236,254,49,220,20,255,59,20,171,255,228,109,188,0,20,225,32,254,195,16,174,0,227,254,136,1,135,39,105,0,150,77,206,255,210,238,226,0,55,212,132,254,239,57,124,0,170,194,93,255,249,16,247,255,24,151,62,255,10,151,10,0,79,139,178,255,120,242,202,0,26,219,213,0,62,125,35,255,144,2,108,255,230,33,83,255,81,45,216,1,224,62,17,0,214,217,125,0,98,153,153,255,179,176,106,254,131,93,138,255,109,62,36,255,178,121,32,255,120,252,70,0,220,248,37,0,204,88,103,1,128,220,251,255,236,227,7,1,106,49,198,255,60,56,107,0,99,114,238,0,220,204,94,1,73,187,1,0,89,154,34,0,78,217,165,255,14,195,249,255,9,230,253,255,205,135,245,0,26,252,7,255,84,205,27,1,134,2,112,0,37,158,32,0,231,91,237,255,191,170,204,255,152,7,222,0,109,192,49,0,193,166,146,255,232,19,181,255,105,142,52,255,103,16,27,1,253,200,165,0,195,217,4,255,52,189,144,255,123,155,160,254,87,130,54,255,78,120,61,255,14,56,41,0,25,41,125,255,87,168,245,0,214,165,70,0,212,169,6,255,219,211,194,254,72,93,164,255,197,33,103,255,43,142,141,0,131,225,172,0,244,105,28,0,68,68,225,0,136,84,13,255,130,57,40,254,139,77,56,0,84,150,53,0,54,95,157,0,144,13,177,254,95,115,186,0,117,23,118,255,244,166,241,255,11,186,135,0,178,106,203,255,97,218,93,0,43,253,45,0,164,152,4,0,139,118,239,0,96,1,24,254,235,153,211,255,168,110,20,255,50,239,176,0,114,41,232,0,193,250,53,0,254,160,111,254,136,122,41,255,97,108,67,0,215,152,23,255,140,209,212,0,42,189,163,0,202,42,50,255,106,106,189,255,190,68,217,255,233,58,117,0,229,220,243,1,197,3,4,0,37,120,54,254,4,156,134,255,36,61,171,254,165,136,100,255,212,232,14,0,90,174,10,0,216,198,65,255,12,3,64,0,116,113,115,255,248,103,8,0,231,125,18,255,160,28,197,0,30,184,35,1,223,73,249,255,123,20,46,254,135,56,37,255,173,13,229,1,119,161,34,255,245,61,73,0,205,125,112,0,137,104,134,0,217,246,30,255,237,142,143,0,65,159,102,255,108,164,190,0,219,117,173,255,34,37,120,254,200,69,80,0,31,124,218,254,74,27,160,255,186,154,199,255,71,199,252,0,104,81,159,1,17,200,39,0,211,61,192,1,26,238,91,0,148,217,12,0,59,91,213,255,11,81,183,255,129,230,122,255,114,203,145,1,119,180,66,255,72,138,180,0,224,149,106,0,119,82,104,255,208,140,43,0,98,9,182,255,205,101,134,255,18,101,38,0,95,197,166,255,203,241,147,0,62,208,145,255,133,246,251,0,2,169,14,0,13,247,184,0,142,7,254,0,36,200,23,255,88,205,223,0,91,129,52,255,21,186,30,0,143,228,210,1,247,234,248,255,230,69,31,254,176,186,135,255,238,205,52,1,139,79,43,0,17,176,217,254,32,243,67,0,242,111,233,0,44,35,9,255,227,114,81,1,4,71,12,255,38,105,191,0,7,117,50,255,81,79,16,0,63,68,65,255,157,36,110,255,77,241,3,255,226,45,251,1,142,25,206,0,120,123,209,1,28,254,238,255,5,128,126,255,91,222,215,255,162,15,191,0,86,240,73,0,135,185,81,254,44,241,163,0,212,219,210,255,112,162,155,0,207,101,118,0,168,72,56,255,196,5,52,0,72,172,242,255,126,22,157,255,146,96,59,255,162,121,152,254,140,16,95,0,195,254,200,254,82,150,162,0,119,43,145,254,204,172,78,255,166,224,159,0,104,19,237,255,245,126,208,255,226,59,213,0,117,217,197,0,152,72,237,0,220,31,23,254,14,90,231,255,188,212,64,1,60,101,246,255,85,24,86,0,1,177,109,0,146,83,32,1,75,182,192,0,119,241,224,0,185,237,27,255,184,101,82,1,235,37,77,255,253,134,19,0,232,246,122,0,60,106,179,0,195,11,12,0,109,66,235,1,125,113,59,0,61,40,164,0,175,104,240,0,2,47,187,255,50,12,141,0,194,139,181,255,135,250,104,0,97,92,222,255,217,149,201,255,203,241,118,255,79,151,67,0,122,142,218,255,149,245,239,0,138,42,200,254,80,37,97,255,124,112,167,255,36,138,87,255,130,29,147,255,241,87,78,255,204,97,19,1,177,209,22,255,247,227,127,254,99,119,83,255,212,25,198,1,16,179,179,0,145,77,172,254,89,153,14,255,218,189,167,0,107,233,59,255,35,33,243,254,44,112,112,255,161,127,79,1,204,175,10,0,40,21,138,254,104,116,228,0,199,95,137,255,133,190,168,255,146,165,234,1,183,99,39,0,183,220,54,254,255,222,133,0,162,219,121,254,63,239,6,0,225,102,54,255,251,18,246,0,4,34,129,1,135,36,131,0,206,50,59,1,15,97,183,0,171,216,135,255,101,152,43,255,150,251,91,0,38,145,95,0,34,204,38,254,178,140,83,255,25,129,243,255,76,144,37,0,106,36,26,254,118,144,172,255,68,186,229,255,107,161,213,255,46,163,68,255,149,170,253,0,187,17,15,0,218,160,165,255,171,35,246,1,96,13,19,0,165,203,117,0,214,107,192,255,244,123,177,1,100,3,104,0,178,242,97,255,251,76,130,255,211,77,42,1,250,79,70,255,63,244,80,1,105,101,246,0,61,136,58,1,238,91,213,0,14,59,98,255,167,84,77,0,17,132,46,254,57,175,197,255,185,62,184,0,76,64,207,0,172,175,208,254,175,74,37,0,138,27,211,254,148,125,194,0,10,89,81,0,168,203,101,255,43,213,209,1,235,245,54,0,30,35,226,255,9,126,70,0,226,125,94,254,156,117,20,255,57,248,112,1,230,48,64,255,164,92,166,1,224,214,230,255,36,120,143,0,55,8,43,255,251,1,245,1,106,98,165,0,74,107,106,254,53,4,54,255,90,178,150,1,3,120,123,255,244,5,89,1,114,250,61,255,254,153,82,1,77,15,17,0,57,238,90,1,95,223,230,0,236,52,47,254,103,148,164,255,121,207,36,1,18,16,185,255,75,20,74,0,187,11,101,0,46,48,129,255,22,239,210,255,77,236,129,255,111,77,204,255,61,72,97,255,199,217,251,255,42,215,204,0,133,145,201,255,57,230,146,1,235,100,198,0,146,73,35,254,108,198,20,255,182,79,210,255,82,103,136,0,246,108,176,0,34,17,60,255,19,74,114,254,168,170,78,255,157,239,20,255,149,41,168,0,58,121,28,0,79,179,134,255,231,121,135,255,174,209,98,255,243,122,190,0,171,166,205,0,212,116,48,0,29,108,66,255,162,222,182,1,14,119,21,0,213,39,249,255,254,223,228,255,183,165,198,0,133,190,48,0,124,208,109,255,119,175,85,255,9,209,121,1,48,171,189,255,195,71,134,1,136,219,51,255,182,91,141,254,49,159,72,0,35,118,245,255,112,186,227,255,59,137,31,0,137,44,163,0,114,103,60,254,8,213,150,0,162,10,113,255,194,104,72,0,220,131,116,255,178,79,92,0,203,250,213,254,93,193,189,255,130,255,34,254,212,188,151,0,136,17,20,255,20,101,83,255,212,206,166,0,229,238,73,255,151,74,3,255,168,87,215,0,155,188,133,255,166,129,73,0,240,79,133,255,178,211,81,255,203,72,163,254,193,168,165,0,14,164,199,254,30,255,204,0,65,72,91,1,166,74,102,255,200,42,0,255,194,113,227,255,66,23,208,0,229,216,100,255,24,239,26,0,10,233,62,255,123,10,178,1,26,36,174,255,119,219,199,1,45,163,190,0,16,168,42,0,166,57,198,255,28,26,26,0,126,165,231,0,251,108,100,255,61,229,121,255,58,118,138,0,76,207,17,0,13,34,112,254,89,16,168,0,37,208,105,255,35,201,215,255,40,106,101,254,6,239,114,0,40,103,226,254,246,127,110,255,63,167,58,0,132,240,142,0,5,158,88,255,129,73,158,255,94,89,146,0,230,54,146,0,8,45,173,0,79,169,1,0,115,186,247,0,84,64,131,0,67,224,253,255,207,189,64,0,154,28,81,1,45,184,54,255,87,212,224,255,0,96,73,255,129,33,235,1,52,66,80,255,251,174,155,255,4,179,37,0,234,164,93,254,93,175,253,0,198,69,87,255,224,106,46,0,99,29,210,0,62,188,114,255,44,234,8,0,169,175,247,255,23,109,137,255,229,182,39,0,192,165,94,254,245,101,217,0,191,88,96,0,196,94,99,255,106,238,11,254,53,126,243,0,94,1,101,255,46,147,2,0,201,124,124,255,141,12,218,0,13,166,157,1,48,251,237,255,155,250,124,255,106,148,146,255,182,13,202,0,28,61,167,0,217,152,8,254,220,130,45,255,200,230,255,1,55,65,87,255,93,191,97,254,114,251,14,0,32,105,92,1,26,207,141,0,24,207,13,254,21,50,48,255,186,148,116,255,211,43,225,0,37,34,162,254,164,210,42,255,68,23,96,255,182,214,8,255,245,117,137,255,66,195,50,0,75,12,83,254,80,140,164,0,9,165,36,1,228,110,227,0,241,17,90,1,25,52,212,0,6,223,12,255,139,243,57,0,12,113,75,1,246,183,191,255,213,191,69,255,230,15,142,0,1,195,196,255,138,171,47,255,64,63,106,1,16,169,214,255,207,174,56,1,88,73,133,255,182,133,140,0,177,14,25,255,147,184,53,255,10,227,161,255,120,216,244,255,73,77,233,0,157,238,139,1,59,65,233,0,70,251,216,1,41,184,153,255,32,203,112,0,146,147,253,0,87,101,109,1,44,82,133,255,244,150,53,255,94,152,232,255,59,93,39,255,88,147,220,255,78,81,13,1,32,47,252,255,160,19,114,255,93,107,39,255,118,16,211,1,185,119,209,255,227,219,127,254,88,105,236,255,162,110,23,255,36,166,110,255,91,236,221,255,66,234,116,0,111,19,244,254,10,233,26,0,32,183,6,254,2,191,242,0,218,156,53,254,41,60,70,255,168,236,111,0,121,185,126,255,238,142,207,255,55,126,52,0,220,129,208,254,80,204,164,255,67,23,144,254,218,40,108,255,127,202,164,0,203,33,3,255,2,158,0,0,37,96,188,255,192,49,74,0,109,4,0,0,111,167,10,254,91,218,135,255,203,66,173,255,150,194,226,0,201,253,6,255,174,102,121,0,205,191,110,0,53,194,4,0,81,40,45,254,35,102,143,255,12,108,198,255,16,27,232,255,252,71,186,1,176,110,114,0,142,3,117,1,113,77,142,0,19,156,197,1,92,47,252,0,53,232,22,1,54,18,235,0,46,35,189,255,236,212,129,0,2,96,208,254,200,238,199,255,59,175,164,255,146,43,231,0,194,217,52,255,3,223,12,0,138,54,178,254,85,235,207,0,232,207,34,0,49,52,50,255,166,113,89,255,10,45,216,255,62,173,28,0,111,165,246,0,118,115,91,255,128,84,60,0,167,144,203,0,87,13,243,0,22,30,228,1,177,113,146,255,129,170,230,254,252,153,129,255,145,225,43,0,70,231,5,255,122,105,126,254,86,246,148,255,110,37,154,254,209,3,91,0,68,145,62,0,228,16,165,255,55,221,249,254,178,210,91,0,83,146,226,254,69,146,186,0,93,210,104,254,16,25,173,0,231,186,38,0,189,122,140,255,251,13,112,255,105,110,93,0,251,72,170,0,192,23,223,255,24,3,202,1,225,93,228,0,153,147,199,254,109,170,22,0,248,101,246,255,178,124,12,255,178,254,102,254,55,4,65,0,125,214,180,0,183,96,147,0,45,117,23,254,132,191,249,0,143,176,203,254,136,183,54,255,146,234,177,0,146,101,86,255,44,123,143,1,33,209,152,0,192,90,41,254,83,15,125,255,213,172,82,0,215,169,144,0,16,13,34,0,32,209,100,255,84,18,249,1,197,17,236,255,217,186,230,0,49,160,176,255,111,118,97,255,237,104,235,0,79,59,92,254,69,249,11,255,35,172,74,1,19,118,68,0,222,124,165,255,180,66,35,255,86,174,246,0,43,74,111,255,126,144,86,255,228,234,91,0,242,213,24,254,69,44,235,255,220,180,35,0,8,248,7,255,102,47,92,255,240,205,102,255,113,230,171,1,31,185,201,255,194,246,70,255,122,17,187,0,134,70,199,255,149,3,150,255,117,63,103,0,65,104,123,255,212,54,19,1,6,141,88,0,83,134,243,255,136,53,103,0,169,27,180,0,177,49,24,0,111,54,167,0,195,61,215,255,31,1,108,1,60,42,70,0,185,3,162,255,194,149,40,255,246,127,38,254,190,119,38,255,61,119,8,1,96,161,219,255,42,203,221,1,177,242,164,255,245,159,10,0,116,196,0,0,5,93,205,254,128,127,179,0,125,237,246,255,149,162,217,255,87,37,20,254,140,238,192,0,9,9,193,0,97,1,226,0,29,38,10,0,0,136,63,255,229,72,210,254,38,134,92,255,78,218,208,1,104,36,84,255,12,5,193,255,242,175,61,255,191,169,46,1,179,147,147,255,113,190,139,254,125,172,31,0,3,75,252,254,215,36,15,0,193,27,24,1,255,69,149,255,110,129,118,0,203,93,249,0,138,137,64,254,38,70,6,0,153,116,222,0,161,74,123,0,193,99,79,255,118,59,94,255,61,12,43,1,146,177,157,0,46,147,191,0,16,255,38,0,11,51,31,1,60,58,98,255,111,194,77,1,154,91,244,0,140,40,144,1,173,10,251,0,203,209,50,254,108,130,78,0,228,180,90,0,174,7,250,0,31,174,60,0,41,171,30,0,116,99,82,255,118,193,139,255,187,173,198,254,218,111,56,0,185,123,216,0,249,158,52,0,52,180,93,255,201,9,91,255,56,45,166,254,132,155,203,255,58,232,110,0,52,211,89,255,253,0,162,1,9,87,183,0,145,136,44,1,94,122,245,0,85,188,171,1,147,92,198,0,0,8,104,0,30,95,174,0,221,230,52,1,247,247,235,255,137,174,53,255,35,21,204,255,71,227,214,1,232,82,194,0,11,48,227,255,170,73,184,255,198,251,252,254,44,112,34,0,131,101,131,255,72,168,187,0,132,135,125,255,138,104,97,255,238,184,168,255,243,104,84,255,135,216,226,255,139,144,237,0,188,137,150,1,80,56,140,255,86,169,167,255,194,78,25,255,220,17,180,255,17,13,193,0,117,137,212,255,141,224,151,0,49,244,175,0,193,99,175,255,19,99,154,1,255,65,62,255,156,210,55,255,242,244,3,255,250,14,149,0,158,88,217,255,157,207,134,254,251,232,28,0,46,156,251,255,171,56,184,255,239,51,234,0,142,138,131,255,25,254,243,1,10,201,194,0,63,97,75,0,210,239,162,0,192,200,31,1,117,214,243,0,24,71,222,254,54,40,232,255,76,183,111,254,144,14,87,255,214,79,136,255,216,196,212,0,132,27,140,254,131,5,253,0,124,108,19,255,28,215,75,0,76,222,55,254,233,182,63,0,68,171,191,254,52,111,222,255,10,105,77,255,80,170,235,0,143,24,88,255,45,231,121,0,148,129,224,1,61,246,84,0,253,46,219,255,239,76,33,0,49,148,18,254,230,37,69,0,67,134,22,254,142,155,94,0,31,157,211,254,213,42,30,255,4,228,247,254,252,176,13,255,39,0,31,254,241,244,255,255,170,45,10,254,253,222,249,0,222,114,132,0,255,47,6,255,180,163,179,1,84,94,151,255,89,209,82,254,229,52,169,255,213,236,0,1,214,56,228,255,135,119,151,255,112,201,193,0,83,160,53,254,6,151,66,0,18,162,17,0,233,97,91,0,131,5,78,1,181,120,53,255,117,95,63,255,237,117,185,0,191,126,136,255,144,119,233,0,183,57,97,1,47,201,187,255,167,165,119,1,45,100,126,0,21,98,6,254,145,150,95,255,120,54,152,0,209,98,104,0,143,111,30,254,184,148,249,0,235,216,46,0,248,202,148,255,57,95,22,0,242,225,163,0,233,247,232,255,71,171,19,255,103,244,49,255,84,103,93,255,68,121,244,1,82,224,13,0,41,79,43,255,249,206,167,255,215,52,21,254,192,32,22,255,247,111,60,0,101,74,38,255,22,91,84,254,29,28,13,255,198,231,215,254,244,154,200,0,223,137,237,0,211,132,14,0,95,64,206,255,17,62,247,255,233,131,121,1,93,23,77,0,205,204,52,254,81,189,136,0,180,219,138,1,143,18,94,0,204,43,140,254,188,175,219,0,111,98,143,255,151,63,162,255,211,50,71,254,19,146,53,0,146,45,83,254,178,82,238,255,16,133,84,255,226,198,93,255,201,97,20,255,120,118,35,255,114,50,231,255,162,229,156,255,211,26,12,0,114,39,115,255,206,212,134,0,197,217,160,255,116,129,94,254,199,215,219,255,75,223,249,1,253,116,181,255,232,215,104,255,228,130,246,255,185,117,86,0,14,5,8,0,239,29,61,1,237,87,133,255,125,146,137,254,204,168,223,0,46,168,245,0,154,105,22,0,220,212,161,255,107,69,24,255,137,218,181,255,241,84,198,255,130,122,211,255,141,8,153,255,190,177,118,0,96,89,178,0,255,16,48,254,122,96,105,255,117,54,232,255,34,126,105,255,204,67,166,0,232,52,138,255,211,147,12,0,25,54,7,0,44,15,215,254,51,236,45,0,190,68,129,1,106,147,225,0,28,93,45,254,236,141,15,255,17,61,161,0,220,115,192,0,236,145,24,254,111,168,169,0,224,58,63,255,127,164,188,0,82,234,75,1,224,158,134,0,209,68,110,1,217,166,217,0,70,225,166,1,187,193,143,255,16,7,88,255,10,205,140,0,117,192,156,1,17,56,38,0,27,124,108,1,171,215,55,255,95,253,212,0,155,135,168,255,246,178,153,254,154,68,74,0,232,61,96,254,105,132,59,0,33,76,199,1,189,176,130,255,9,104,25,254,75,198,102,255,233,1,112,0,108,220,20,255,114,230,70,0,140,194,133,255,57,158,164,254,146,6,80,255,169,196,97,1,85,183,130,0,70,158,222,1,59,237,234,255,96,25,26,255,232,175,97,255,11,121,248,254,88,35,194,0,219,180,252,254,74,8,227,0,195,227,73,1,184,110,161,255,49,233,164,1,128,53,47,0,82,14,121,255,193,190,58,0,48,174,117,255,132,23,32,0,40,10,134,1,22,51,25,255,240,11,176,255,110,57,146,0,117,143,239,1,157,101,118,255,54,84,76,0,205,184,18,255,47,4,72,255,78,112,85,255,193,50,66,1,93,16,52,255,8,105,134,0,12,109,72,255,58,156,251,0,144,35,204,0,44,160,117,254,50,107,194,0,1,68,165,255,111,110,162,0,158,83,40,254,76,214,234,0,58,216,205,255,171,96,147,255,40,227,114,1,176,227,241,0,70,249,183,1,136,84,139,255,60,122,247,254,143,9,117,255,177,174,137,254,73,247,143,0,236,185,126,255,62,25,247,255,45,64,56,255,161,244,6,0,34,57,56,1,105,202,83,0,128,147,208,0,6,103,10,255,74,138,65,255,97,80,100,255,214,174,33,255,50,134,74,255,110,151,130,254,111,84,172,0,84,199,75,254,248,59,112,255,8,216,178,1,9,183,95,0,238,27,8,254,170,205,220,0,195,229,135,0,98,76,237,255,226,91,26,1,82,219,39,255,225,190,199,1,217,200,121,255,81,179,8,255,140,65,206,0,178,207,87,254,250,252,46,255,104,89,110,1,253,189,158,255,144,214,158,255,160,245,54,255,53,183,92,1,21,200,194,255,146,33,113,1,209,1,255,0,235,106,43,255,167,52,232,0,157,229,221,0,51,30,25,0,250,221,27,1,65,147,87,255,79,123,196,0,65,196,223,255,76,44,17,1,85,241,68,0,202,183,249,255,65,212,212,255,9,33,154,1,71,59,80,0,175,194,59,255,141,72,9,0,100,160,244,0,230,208,56,0,59,25,75,254,80,194,194,0,18,3,200,254,160,159,115,0,132,143,247,1,111,93,57,255,58,237,11,1,134,222,135,255,122,163,108,1,123,43,190,255,251,189,206,254,80,182,72,255,208,246,224,1,17,60,9,0,161,207,38,0,141,109,91,0,216,15,211,255,136,78,110,0,98,163,104,255,21,80,121,255,173,178,183,1,127,143,4,0,104,60,82,254,214,16,13,255,96,238,33,1,158,148,230,255,127,129,62,255,51,255,210,255,62,141,236,254,157,55,224,255,114,39,244,0,192,188,250,255,228,76,53,0,98,84,81,255,173,203,61,254,147,50,55,255,204,235,191,0,52,197,244,0,88,43,211,254,27,191,119,0,188,231,154,0,66,81,161,0,92,193,160,1,250,227,120,0,123,55,226,0,184,17,72,0,133,168,10,254,22,135,156,255,41,25,103,255,48,202,58,0,186,149,81,255,188,134,239,0,235,181,189,254,217,139,188,255,74,48,82,0,46,218,229,0,189,253,251,0,50,229,12,255,211,141,191,1,128,244,25,255,169,231,122,254,86,47,189,255,132,183,23,255,37,178,150,255,51,137,253,0,200,78,31,0,22,105,50,0,130,60,0,0,132,163,91,254,23,231,187,0,192,79,239,0,157,102,164,255,192,82,20,1,24,181,103,255,240,9,234,0,1,123,164,255,133,233,0,255,202,242,242,0,60,186,245,0,241,16,199,255,224,116,158,254,191,125,91,255,224,86,207,0,121,37,231,255,227,9,198,255,15,153,239,255,121,232,217,254,75,112,82,0,95,12,57,254,51,214,105,255,148,220,97,1,199,98,36,0,156,209,12,254,10,212,52,0,217,180,55,254,212,170,232,255,216,20,84,255,157,250,135,0,157,99,127,254,1,206,41,0,149,36,70,1,54,196,201,255,87,116,0,254,235,171,150,0,27,163,234,0,202,135,180,0,208,95,0,254,123,156,93,0,183,62,75,0,137,235,182,0,204,225,255,255,214,139,210,255,2,115,8,255,29,12,111,0,52,156,1,0,253,21,251,255,37,165,31,254,12,130,211,0,106,18,53,254,42,99,154,0,14,217,61,254,216,11,92,255,200,197,112,254,147,38,199,0,36,252,120,254,107,169,77,0,1,123,159,255,207,75,102,0,163,175,196,0,44,1,240,0,120,186,176,254,13,98,76,255,237,124,241,255,232,146,188,255,200,96,224,0,204,31,41,0,208,200,13,0,21,225,96,255,175,156,196,0,247,208,126,0,62,184,244,254,2,171,81,0,85,115,158,0,54,64,45,255,19,138,114,0,135,71,205,0,227,47,147,1,218,231,66,0,253,209,28,0,244,15,173,255,6,15,118,254,16,150,208,255,185,22,50,255,86,112,207,255,75,113,215,1,63,146,43,255,4,225,19,254,227,23,62,255,14,255,214,254,45,8,205,255,87,197,151,254,210,82,215,255,245,248,247,255,128,248,70,0,225,247,87,0,90,120,70,0,213,245,92,0,13,133,226,0,47,181,5,1,92,163,105,255,6,30,133,254,232,178,61,255,230,149,24,255,18,49,158,0,228,100,61,254,116,243,251,255,77,75,92,1,81,219,147,255,76,163,254,254,141,213,246,0,232,37,152,254,97,44,100,0,201,37,50,1,212,244,57,0,174,171,183,255,249,74,112,0,166,156,30,0,222,221,97,255,243,93,73,254,251,101,100,255,216,217,93,255,254,138,187,255,142,190,52,255,59,203,177,255,200,94,52,0,115,114,158,255,165,152,104,1,126,99,226,255,118,157,244,1,107,200,16,0,193,90,229,0,121,6,88,0,156,32,93,254,125,241,211,255,14,237,157,255,165,154,21,255,184,224,22,255,250,24,152,255,113,77,31,0,247,171,23,255,237,177,204,255,52,137,145,255,194,182,114,0,224,234,149,0,10,111,103,1,201,129,4,0,238,142,78,0,52,6,40,255,110,213,165,254,60,207,253,0,62,215,69,0,96,97,0,255,49,45,202,0,120,121,22,255,235,139,48,1,198,45,34,255,182,50,27,1,131,210,91,255,46,54,128,0,175,123,105,255,198,141,78,254,67,244,239,255,245,54,103,254,78,38,242,255,2,92,249,254,251,174,87,255,139,63,144,0,24,108,27,255,34,102,18,1,34,22,152,0,66,229,118,254,50,143,99,0,144,169,149,1,118,30,152,0,178,8,121,1,8,159,18,0,90,101,230,255,129,29,119,0,68,36,11,1,232,183,55,0,23,255,96,255,161,41,193,255,63,139,222,0,15,179,243,0,255,100,15,255,82,53,135,0,137,57,149,1,99,240,170,255,22,230,228,254,49,180,82,255,61,82,43,0,110,245,217,0,199,125,61,0,46,253,52,0,141,197,219,0,211,159,193,0,55,121,105,254,183,20,129,0,169,119,170,255,203,178,139,255,135,40,182,255,172,13,202,255,65,178,148,0,8,207,43,0,122,53,127,1,74,161,48,0,227,214,128,254,86,11,243,255,100,86,7,1,245,68,134,255,61,43,21,1,152,84,94,255,190,60,250,254,239,118,232,255,214,136,37,1,113,76,107,255,93,104,100,1,144,206,23,255,110,150,154,1,228,103,185,0,218,49,50,254,135,77,139,255,185,1,78,0,0,161,148,255,97,29,233,255,207,148,149,255,160,168,0,0,91,128,171,255,6,28,19,254,11,111,247,0,39,187,150,255,138,232,149,0,117,62,68,255,63,216,188,255,235,234,32,254,29,57,160,255,25,12,241,1,169,60,191,0,32,131,141,255,237,159,123,255,94,197,94,254,116,254,3,255,92,179,97,254,121,97,92,255,170,112,14,0,21,149,248,0,248,227,3,0,80,96,109,0,75,192,74,1,12,90,226,255,161,106,68,1,208,114,127,255,114,42,255,254,74,26,74,255,247,179,150,254,121,140,60,0,147,70,200,255,214,40,161,255,161,188,201,255,141,65,135,255,242,115,252,0,62,47,202,0,180,149,255,254,130,55,237,0,165,17,186,255,10,169,194,0,156,109,218,255,112,140,123,255,104,128,223,254,177,142,108,255,121,37,219,255,128,77,18,255,111,108,23,1,91,192,75,0,174,245,22,255,4,236,62,255,43,64,153,1,227,173,254,0,237,122,132,1,127,89,186,255,142,82,128,254,252,84,174,0,90,179,177,1,243,214,87,255,103,60,162,255,208,130,14,255,11,130,139,0,206,129,219,255,94,217,157,255,239,230,230,255,116,115,159,254,164,107,95,0,51,218,2,1,216,125,198,255,140,202,128,254,11,95,68,255,55,9,93,254,174,153,6,255,204,172,96,0,69,160,110,0,213,38,49,254,27,80,213,0,118,125,114,0,70,70,67,255,15,142,73,255,131,122,185,255,243,20,50,254,130,237,40,0,210,159,140,1,197,151,65,255,84,153,66,0,195,126,90,0,16,238,236,1,118,187,102,255,3,24,133,255,187,69,230,0,56,197,92,1,213,69,94,255,80,138,229,1,206,7,230,0,222,111,230,1,91,233,119,255,9,89,7,1,2,98,1,0,148,74,133,255,51,246,180,255,228,177,112,1,58,189,108,255,194,203,237,254,21,209,195,0,147,10,35,1,86,157,226,0,31,163,139,254,56,7,75,255,62,90,116,0,181,60,169,0,138,162,212,254,81,167,31,0,205,90,112,255,33,112,227,0,83,151,117,1,177,224,73,255,174,144,217,255,230,204,79,255,22,77,232,255,114,78,234,0,224,57,126,254,9,49,141,0,242,147,165,1,104,182,140,255,167,132,12,1,123,68,127,0,225,87,39,1,251,108,8,0,198,193,143,1,121,135,207,255,172,22,70,0,50,68,116,255,101,175,40,255,248,105,233,0,166,203,7,0,110,197,218,0,215,254,26,254,168,226,253,0,31,143,96,0,11,103,41,0,183,129,203,254,100,247,74,255,213,126,132,0,210,147,44,0,199,234,27,1,148,47,181,0,155,91,158,1,54,105,175,255,2,78,145,254,102,154,95,0,128,207,127,254,52,124,236,255,130,84,71,0,221,243,211,0,152,170,207,0,222,106,199,0,183,84,94,254,92,200,56,255,138,182,115,1,142,96,146,0,133,136,228,0,97,18,150,0,55,251,66,0,140,102,4,0,202,103,151,0,30,19,248,255,51,184,207,0,202,198,89,0,55,197,225,254,169,95,249,255,66,65,68,255,188,234,126,0,166,223,100,1,112,239,244,0,144,23,194,0,58,39,182,0,244,44,24,254,175,68,179,255,152,118,154,1,176,162,130,0,217,114,204,254,173,126,78,255,33,222,30,255,36,2,91,255,2,143,243,0,9,235,215,0,3,171,151,1,24,215,245,255,168,47,164,254,241,146,207,0,69,129,180,0,68,243,113,0,144,53,72,254,251,45,14,0,23,110,168,0,68,68,79,255,110,70,95,254,174,91,144,255,33,206,95,255,137,41,7,255,19,187,153,254,35,255,112,255,9,145,185,254,50,157,37,0,11,112,49,1,102,8,190,255,234,243,169,1,60,85,23,0,74,39,189,0,116,49,239,0,173,213,210,0,46,161,108,255,159,150,37,0,196,120,185,255,34,98,6,255,153,195,62,255,97,230,71,255,102,61,76,0,26,212,236,255,164,97,16,0,198,59,146,0,163,23,196,0,56,24,61,0,181,98,193,0,251,147,229,255,98,189,24,255,46,54,206,255,234,82,246,0,183,103,38,1,109,62,204,0,10,240,224,0,146,22,117,255,142,154,120,0,69,212,35,0,208,99,118,1,121,255,3,255,72,6,194,0,117,17,197,255,125,15,23,0,154,79,153,0,214,94,197,255,185,55,147,255,62,254,78,254,127,82,153,0,110,102,63,255,108,82,161,255,105,187,212,1,80,138,39,0,60,255,93,255,72,12,186,0,210,251,31,1,190,167,144,255,228,44,19,254,128,67,232,0,214,249,107,254,136,145,86,255,132,46,176,0,189,187,227,255,208,22,140,0,217,211,116,0,50,81,186,254,139,250,31,0,30,64,198,1,135,155,100,0,160,206,23,254,187,162,211,255,16,188,63,0,254,208,49,0,85,84,191,0,241,192,242,255,153,126,145,1,234,162,162,255,230,97,216,1,64,135,126,0,190,148,223,1,52,0,43,255,28,39,189,1,64,136,238,0,175,196,185,0,98,226,213,255,127,159,244,1,226,175,60,0,160,233,142,1,180,243,207,255,69,152,89,1,31,101,21,0,144,25,164,254,139,191,209,0,91,25,121,0,32,147,5,0,39,186,123,255,63,115,230,255,93,167,198,255,143,213,220,255,179,156,19,255,25,66,122,0,214,160,217,255,2,45,62,255,106,79,146,254,51,137,99,255,87,100,231,255,175,145,232,255,101,184,1,255,174,9,125,0,82,37,161,1,36,114,141,255,48,222,142,255,245,186,154,0,5,174,221,254,63,114,155,255,135,55,160,1,80,31,135,0,126,250,179,1,236,218,45,0,20,28,145,1,16,147,73,0,249,189,132,1,17,189,192,255,223,142,198,255,72,20,15,255,250,53,237,254,15,11,18,0,27,211,113,254,213,107,56,255,174,147,146,255,96,126,48,0,23,193,109,1,37,162,94,0,199,157,249,254,24,128,187,255,205,49,178,254,93,164,42,255,43,119,235,1,88,183,237,255,218,210,1,255,107,254,42,0,230,10,99,255,162,0,226,0,219,237,91,0,129,178,203,0,208,50,95,254,206,208,95,255,247,191,89,254,110,234,79,255,165,61,243,0,20,122,112,255,246,246,185,254,103,4,123,0,233,99,230,1,219,91,252,255,199,222,22,255,179,245,233,255,211,241,234,0,111,250,192,255,85,84,136,0,101,58,50,255,131,173,156,254,119,45,51,255,118,233,16,254,242,90,214,0,94,159,219,1,3,3,234,255,98,76,92,254,80,54,230,0,5,228,231,254,53,24,223,255,113,56,118,1,20,132,1,255,171,210,236,0,56,241,158,255,186,115,19,255,8,229,174,0,48,44,0,1,114,114,166,255,6,73,226,255,205,89,244,0,137,227,75,1,248,173,56,0,74,120,246,254,119,3,11,255,81,120,198,255,136,122,98,255,146,241,221,1,109,194,78,255,223,241,70,1,214,200,169,255,97,190,47,255,47,103,174,255,99,92,72,254,118,233,180,255,193,35,233,254,26,229,32,255,222,252,198,0,204,43,71,255,199,84,172,0,134,102,190,0,111,238,97,254,230,40,230,0,227,205,64,254,200,12,225,0,166,25,222,0,113,69,51,255,143,159,24,0,167,184,74,0,29,224,116,254,158,208,233,0,193,116,126,255,212,11,133,255,22,58,140,1,204,36,51,255,232,30,43,0,235,70,181,255,64,56,146,254,169,18,84,255,226,1,13,255,200,50,176,255,52,213,245,254,168,209,97,0,191,71,55,0,34,78,156,0,232,144,58,1,185,74,189,0,186,142,149,254,64,69,127,255,161,203,147,255,176,151,191,0,136,231,203,254,163,182,137,0,161,126,251,254,233,32,66,0,68,207,66,0,30,28,37,0,93,114,96,1,254,92,247,255,44,171,69,0,202,119,11,255,188,118,50,1,255,83,136,255,71,82,26,0,70,227,2,0,32,235,121,1,181,41,154,0,71,134,229,254,202,255,36,0,41,152,5,0,154,63,73,255,34,182,124,0,121,221,150,255,26,204,213,1,41,172,87,0,90,157,146,255,109,130,20,0,71,107,200,255,243,102,189,0,1,195,145,254,46,88,117,0,8,206,227,0,191,110,253,255,109,128,20,254,134,85,51,255,137,177,112,1,216,34,22,255,131,16,208,255,121,149,170,0,114,19,23,1,166,80,31,255,113,240,122,0,232,179,250,0,68,110,180,254,210,170,119,0,223,108,164,255,207,79,233,255,27,229,226,254,209,98,81,255,79,68,7,0,131,185,100,0,170,29,162,255,17,162,107,255,57,21,11,1,100,200,181,255,127,65,166,1,165,134,204,0,104,167,168,0,1,164,79,0,146,135,59,1,70,50,128,255,102,119,13,254,227,6,135,0,162,142,179,255,160,100,222,0,27,224,219,1,158,93,195,255,234,141,137,0,16,24,125,255,238,206,47,255,97,17,98,255,116,110,12,255,96,115,77,0,91,227,232,255,248,254,79,255,92,229,6,254,88,198,139,0,206,75,129,0,250,77,206,255,141,244,123,1,138,69,220,0,32,151,6,1,131,167,22,255,237,68,167,254,199,189,150,0,163,171,138,255,51,188,6,255,95,29,137,254,148,226,179,0,181,107,208,255,134,31,82,255,151,101,45,255,129,202,225,0,224,72,147,0,48,138,151,255,195,64,206,254,237,218,158,0,106,29,137,254,253,189,233,255,103,15,17,255,194,97,255,0,178,45,169,254,198,225,155,0,39,48,117,255,135,106,115,0,97,38,181,0,150,47,65,255,83,130,229,254,246,38,129,0,92,239,154,254,91,99,127,0,161,111,33,255,238,217,242,255,131,185,195,255,213,191,158,255,41,150,218,0,132,169,131,0,89,84,252,1,171,70,128,255,163,248,203,254,1,50,180,255,124,76,85,1,251,111,80,0,99,66,239,255,154,237,182,255,221,126,133,254,74,204,99,255,65,147,119,255,99,56,167,255,79,248,149,255,116,155,228,255,237,43,14,254,69,137,11,255,22,250,241,1,91,122,143,255,205,249,243,0,212,26,60,255,48,182,176,1,48,23,191,255,203,121,152,254,45,74,213,255,62,90,18,254,245,163,230,255,185,106,116,255,83,35,159,0,12,33,2,255,80,34,62,0,16,87,174,255,173,101,85,0,202,36,81,254,160,69,204,255,64,225,187,0,58,206,94,0,86,144,47,0,229,86,245,0,63,145,190,1,37,5,39,0,109,251,26,0,137,147,234,0,162,121,145,255,144,116,206,255,197,232,185,255,183,190,140,255,73,12,254,255,139,20,242,255,170,90,239,255,97,66,187,255,245,181,135,254,222,136,52,0,245,5,51,254,203,47,78,0,152,101,216,0,73,23,125,0,254,96,33,1,235,210,73,255,43,209,88,1,7,129,109,0,122,104,228,254,170,242,203,0,242,204,135,255,202,28,233,255,65,6,127,0,159,144,71,0,100,140,95,0,78,150,13,0,251,107,118,1,182,58,125,255,1,38,108,255,141,189,209,255,8,155,125,1,113,163,91,255,121,79,190,255,134,239,108,255,76,47,248,0,163,228,239,0,17,111,10,0,88,149,75,255,215,235,239,0,167,159,24,255,47,151,108,255,107,209,188,0,233,231,99,254,28,202,148,255,174,35,138,255,110,24,68,255,2,69,181,0,107,102,82,0,102,237,7,0,92,36,237,255,221,162,83,1,55,202,6,255,135,234,135,255,24,250,222,0,65,94,168,254,245,248,210,255,167,108,201,254,255,161,111,0,205,8,254,0,136,13,116,0,100,176,132,255,43,215,126,255,177,133,130,255,158,79,148,0,67,224,37,1,12,206,21,255,62,34,110,1,237,104,175,255,80,132,111,255,142,174,72,0,84,229,180,254,105,179,140,0,64,248,15,255,233,138,16,0,245,67,123,254,218,121,212,255,63,95,218,1,213,133,137,255,143,182,82,255,48,28,11,0,244,114,141,1,209,175,76,255,157,181,150,255,186,229,3,255,164,157,111,1,231,189,139,0,119,202,190,255,218,106,64,255,68,235,63,254,96,26,172,255,187,47,11,1,215,18,251,255,81,84,89,0,68,58,128,0,94,113,5,1,92,129,208,255,97,15,83,254,9,28,188,0,239,9,164,0,60,205,152,0,192,163,98,255,184,18,60,0,217,182,139,0,109,59,120,255,4,192,251,0,169,210,240,255,37,172,92,254,148,211,245,255,179,65,52,0,253,13,115,0,185,174,206,1,114,188,149,255,237,90,173,0,43,199,192,255,88,108,113,0,52,35,76,0,66,25,148,255,221,4,7,255,151,241,114,255,190,209,232,0,98,50,199,0,151,150,213,255,18,74,36,1,53,40,7,0,19,135,65,255,26,172,69,0,174,237,85,0,99,95,41,0,3,56,16,0,39,160,177,255,200,106,218,254,185,68,84,255,91,186,61,254,67,143,141,255,13,244,166,255,99,114,198,0,199,110,163,255,193,18,186,0,124,239,246,1,110,68,22,0,2,235,46,1,212,60,107,0,105,42,105,1,14,230,152,0,7,5,131,0,141,104,154,255,213,3,6,0,131,228,162,255,179,100,28,1,231,123,85,255,206,14,223,1,253,96,230,0,38,152,149,1,98,137,122,0,214,205,3,255,226,152,179,255,6,133,137,0,158,69,140,255,113,162,154,255,180,243,172,255,27,189,115,255,143,46,220,255,213,134,225,255,126,29,69,0,188,43,137,1,242,70,9,0,90,204,255,255,231,170,147,0,23,56,19,254,56,125,157,255,48,179,218,255,79,182,253,255,38,212,191,1,41,235,124,0,96,151,28,0,135,148,190,0,205,249,39,254,52,96,136,255,212,44,136,255,67,209,131,255,252,130,23,255,219,128,20,255,198,129,118,0,108,101,11,0,178,5,146,1,62,7,100,255,181,236,94,254,28,26,164,0,76,22,112,255,120,102,79,0,202,192,229,1,200,176,215,0,41,64,244,255,206,184,78,0,167,45,63,1,160,35,0,255,59,12,142,255,204,9,144,255,219,94,229,1,122,27,112,0,189,105,109,255,64,208,74,255,251,127,55,1,2,226,198,0,44,76,209,0,151,152,77,255,210,23,46,1,201,171,69,255,44,211,231,0,190,37,224,255,245,196,62,255,169,181,222,255,34,211,17,0,119,241,197,255,229,35,152,1,21,69,40,255,178,226,161,0,148,179,193,0,219,194,254,1,40,206,51,255,231,92,250,1,67,153,170,0,21,148,241,0,170,69,82,255,121,18,231,255,92,114,3,0,184,62,230,0,225,201,87,255,146,96,162,255,181,242,220,0,173,187,221,1,226,62,170,255,56,126,217,1,117,13,227,255,179,44,239,0,157,141,155,255,144,221,83,0,235,209,208,0,42,17,165,1,251,81,133,0,124,245,201,254,97,211,24,255,83,214,166,0,154,36,9,255,248,47,127,0,90,219,140,255,161,217,38,254,212,147,63,255,66,84,148,1,207,3,1,0,230,134,89,1,127,78,122,255,224,155,1,255,82,136,74,0,178,156,208,255,186,25,49,255,222,3,210,1,229,150,190,255,85,162,52,255,41,84,141,255,73,123,84,254,93,17,150,0,119,19,28,1,32,22,215,255,28,23,204,255,142,241,52,255,228,52,125,0,29,76,207,0,215,167,250,254,175,164,230,0,55,207,105,1,109,187,245,255,161,44,220,1,41,101,128,255,167,16,94,0,93,214,107,255,118,72,0,254,80,61,234,255,121,175,125,0,139,169,251,0,97,39,147,254,250,196,49,255,165,179,110,254,223,70,187,255,22,142,125,1,154,179,138,255,118,176,42,1,10,174,153,0,156,92,102,0,168,13,161,255,143,16,32,0,250,197,180,255,203,163,44,1,87,32,36,0,161,153,20,255,123,252,15,0,25,227,80,0,60,88,142,0,17,22,201,1,154,205,77,255,39,63,47,0,8,122,141,0,128,23,182,254,204,39,19,255,4,112,29,255,23,36,140,255,210,234,116,254,53,50,63,255,121,171,104,255,160,219,94,0,87,82,14,254,231,42,5,0,165,139,127,254,86,78,38,0,130,60,66,254,203,30,45,255,46,196,122,1,249,53,162,255,136,143,103,254,215,210,114,0,231,7,160,254,169,152,42,255,111,45,246,0,142,131,135,255,131,71,204,255,36,226,11,0,0,28,242,255,225,138,213,255,247,46,216,254,245,3,183,0,108,252,74,1,206,26,48,255,205,54,246,255,211,198,36,255,121,35,50,0,52,216,202,255,38,139,129,254,242,73,148,0,67,231,141,255,42,47,204,0,78,116,25,1,4,225,191,255,6,147,228,0,58,88,177,0,122,165,229,255,252,83,201,255,224,167,96,1,177,184,158,255,242,105,179,1,248,198,240,0,133,66,203,1,254,36,47,0,45,24,115,255,119,62,254,0,196,225,186,254,123,141,172,0,26,85,41,255,226,111,183,0,213,231,151,0,4,59,7,255,238,138,148,0,66,147,33,255,31,246,141,255,209,141,116,255,104,112,31,0,88,161,172,0,83,215,230,254,47,111,151,0,45,38,52,1,132,45,204,0,138,128,109,254,233,117,134,255,243,190,173,254,241,236,240,0,82,127,236,254,40,223,161,255,110,182,225,255,123,174,239,0,135,242,145,1,51,209,154,0,150,3,115,254,217,164,252,255,55,156,69,1,84,94,255,255,232,73,45,1,20,19,212,255,96,197,59,254,96,251,33,0,38,199,73,1,64,172,247,255,117,116,56,255,228,17,18,0,62,138,103,1,246,229,164,255,244,118,201,254,86,32,159,255,109,34,137,1,85,211,186,0,10,193,193,254,122,194,177,0,122,238,102,255,162,218,171,0,108,217,161,1,158,170,34,0,176,47,155,1,181,228,11,255,8,156,0,0,16,75,93,0,206,98,255,1,58,154,35,0,12,243,184,254,67,117,66,255,230,229,123,0,201,42,110], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE+20480); -/* memory initializer */ allocate([134,228,178,254,186,108,118,255,58,19,154,255,82,169,62,255,114,143,115,1,239,196,50,255,173,48,193,255,147,2,84,255,150,134,147,254,95,232,73,0,109,227,52,254,191,137,10,0,40,204,30,254,76,52,97,255,164,235,126,0,254,124,188,0,74,182,21,1,121,29,35,255,241,30,7,254,85,218,214,255,7,84,150,254,81,27,117,255,160,159,152,254,66,24,221,255,227,10,60,1,141,135,102,0,208,189,150,1,117,179,92,0,132,22,136,255,120,199,28,0,21,129,79,254,182,9,65,0,218,163,169,0,246,147,198,255,107,38,144,1,78,175,205,255,214,5,250,254,47,88,29,255,164,47,204,255,43,55,6,255,131,134,207,254,116,100,214,0,96,140,75,1,106,220,144,0,195,32,28,1,172,81,5,255,199,179,52,255,37,84,203,0,170,112,174,0,11,4,91,0,69,244,27,1,117,131,92,0,33,152,175,255,140,153,107,255,251,135,43,254,87,138,4,255,198,234,147,254,121,152,84,255,205,101,155,1,157,9,25,0,72,106,17,254,108,153,0,255,189,229,186,0,193,8,176,255,174,149,209,0,238,130,29,0,233,214,126,1,61,226,102,0,57,163,4,1,198,111,51,255,45,79,78,1,115,210,10,255,218,9,25,255,158,139,198,255,211,82,187,254,80,133,83,0,157,129,230,1,243,133,134,255,40,136,16,0,77,107,79,255,183,85,92,1,177,204,202,0,163,71,147,255,152,69,190,0,172,51,188,1,250,210,172,255,211,242,113,1,89,89,26,255,64,66,111,254,116,152,42,0,161,39,27,255,54,80,254,0,106,209,115,1,103,124,97,0,221,230,98,255,31,231,6,0,178,192,120,254,15,217,203,255,124,158,79,0,112,145,247,0,92,250,48,1,163,181,193,255,37,47,142,254,144,189,165,255,46,146,240,0,6,75,128,0,41,157,200,254,87,121,213,0,1,113,236,0,5,45,250,0,144,12,82,0,31,108,231,0,225,239,119,255,167,7,189,255,187,228,132,255,110,189,34,0,94,44,204,1,162,52,197,0,78,188,241,254,57,20,141,0,244,146,47,1,206,100,51,0,125,107,148,254,27,195,77,0,152,253,90,1,7,143,144,255,51,37,31,0,34,119,38,255,7,197,118,0,153,188,211,0,151,20,116,254,245,65,52,255,180,253,110,1,47,177,209,0,161,99,17,255,118,222,202,0,125,179,252,1,123,54,126,255,145,57,191,0,55,186,121,0,10,243,138,0,205,211,229,255,125,156,241,254,148,156,185,255,227,19,188,255,124,41,32,255,31,34,206,254,17,57,83,0,204,22,37,255,42,96,98,0,119,102,184,1,3,190,28,0,110,82,218,255,200,204,192,255,201,145,118,0,117,204,146,0,132,32,98,1,192,194,121,0,106,161,248,1,237,88,124,0,23,212,26,0,205,171,90,255,248,48,216,1,141,37,230,255,124,203,0,254,158,168,30,255,214,248,21,0,112,187,7,255,75,133,239,255,74,227,243,255,250,147,70,0,214,120,162,0,167,9,179,255,22,158,18,0,218,77,209,1,97,109,81,255,244,33,179,255,57,52,57,255,65,172,210,255,249,71,209,255,142,169,238,0,158,189,153,255,174,254,103,254,98,33,14,0,141,76,230,255,113,139,52,255,15,58,212,0,168,215,201,255,248,204,215,1,223,68,160,255,57,154,183,254,47,231,121,0,106,166,137,0,81,136,138,0,165,43,51,0,231,139,61,0,57,95,59,254,118,98,25,255,151,63,236,1,94,190,250,255,169,185,114,1,5,250,58,255,75,105,97,1,215,223,134,0,113,99,163,1,128,62,112,0,99,106,147,0,163,195,10,0,33,205,182,0,214,14,174,255,129,38,231,255,53,182,223,0,98,42,159,255,247,13,40,0,188,210,177,1,6,21,0,255,255,61,148,254,137,45,129,255,89,26,116,254,126,38,114,0,251,50,242,254,121,134,128,255,204,249,167,254,165,235,215,0,202,177,243,0,133,141,62,0,240,130,190,1,110,175,255,0,0,20,146,1,37,210,121,255,7,39,130,0,142,250,84,255,141,200,207,0,9,95,104,255,11,244,174,0,134,232,126,0,167,1,123,254,16,193,149,255,232,233,239,1,213,70,112,255,252,116,160,254,242,222,220,255,205,85,227,0,7,185,58,0,118,247,63,1,116,77,177,255,62,245,200,254,63,18,37,255,107,53,232,254,50,221,211,0,162,219,7,254,2,94,43,0,182,62,182,254,160,78,200,255,135,140,170,0,235,184,228,0,175,53,138,254,80,58,77,255,152,201,2,1,63,196,34,0,5,30,184,0,171,176,154,0,121,59,206,0,38,99,39,0,172,80,77,254,0,134,151,0,186,33,241,254,94,253,223,255,44,114,252,0,108,126,57,255,201,40,13,255,39,229,27,255,39,239,23,1,151,121,51,255,153,150,248,0,10,234,174,255,118,246,4,254,200,245,38,0,69,161,242,1,16,178,150,0,113,56,130,0,171,31,105,0,26,88,108,255,49,42,106,0,251,169,66,0,69,93,149,0,20,57,254,0,164,25,111,0,90,188,90,255,204,4,197,0,40,213,50,1,212,96,132,255,88,138,180,254,228,146,124,255,184,246,247,0,65,117,86,255,253,102,210,254,254,121,36,0,137,115,3,255,60,24,216,0,134,18,29,0,59,226,97,0,176,142,71,0,7,209,161,0,189,84,51,254,155,250,72,0,213,84,235,255,45,222,224,0,238,148,143,255,170,42,53,255,78,167,117,0,186,0,40,255,125,177,103,255,69,225,66,0,227,7,88,1,75,172,6,0,169,45,227,1,16,36,70,255,50,2,9,255,139,193,22,0,143,183,231,254,218,69,50,0,236,56,161,1,213,131,42,0,138,145,44,254,136,229,40,255,49,63,35,255,61,145,245,255,101,192,2,254,232,167,113,0,152,104,38,1,121,185,218,0,121,139,211,254,119,240,35,0,65,189,217,254,187,179,162,255,160,187,230,0,62,248,14,255,60,78,97,0,255,247,163,255,225,59,91,255,107,71,58,255,241,47,33,1,50,117,236,0,219,177,63,254,244,90,179,0,35,194,215,255,189,67,50,255,23,135,129,0,104,189,37,255,185,57,194,0,35,62,231,255,220,248,108,0,12,231,178,0,143,80,91,1,131,93,101,255,144,39,2,1,255,250,178,0,5,17,236,254,139,32,46,0,204,188,38,254,245,115,52,255,191,113,73,254,191,108,69,255,22,69,245,1,23,203,178,0,170,99,170,0,65,248,111,0,37,108,153,255,64,37,69,0,0,88,62,254,89,148,144,255,191,68,224,1,241,39,53,0,41,203,237,255,145,126,194,255,221,42,253,255,25,99,151,0,97,253,223,1,74,115,49,255,6,175,72,255,59,176,203,0,124,183,249,1,228,228,99,0,129,12,207,254,168,192,195,255,204,176,16,254,152,234,171,0,77,37,85,255,33,120,135,255,142,194,227,1,31,214,58,0,213,187,125,255,232,46,60,255,190,116,42,254,151,178,19,255,51,62,237,254,204,236,193,0,194,232,60,0,172,34,157,255,189,16,184,254,103,3,95,255,141,233,36,254,41,25,11,255,21,195,166,0,118,245,45,0,67,213,149,255,159,12,18,255,187,164,227,1,160,25,5,0,12,78,195,1,43,197,225,0,48,142,41,254,196,155,60,255,223,199,18,1,145,136,156,0,252,117,169,254,145,226,238,0,239,23,107,0,109,181,188,255,230,112,49,254,73,170,237,255,231,183,227,255,80,220,20,0,194,107,127,1,127,205,101,0,46,52,197,1,210,171,36,255,88,3,90,255,56,151,141,0,96,187,255,255,42,78,200,0,254,70,70,1,244,125,168,0,204,68,138,1,124,215,70,0,102,66,200,254,17,52,228,0,117,220,143,254,203,248,123,0,56,18,174,255,186,151,164,255,51,232,208,1,160,228,43,255,249,29,25,1,68,190,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,127,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,188,129,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,255,255,255,255], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE+30720); +/* memory initializer */ allocate([134,228,178,254,186,108,118,255,58,19,154,255,82,169,62,255,114,143,115,1,239,196,50,255,173,48,193,255,147,2,84,255,150,134,147,254,95,232,73,0,109,227,52,254,191,137,10,0,40,204,30,254,76,52,97,255,164,235,126,0,254,124,188,0,74,182,21,1,121,29,35,255,241,30,7,254,85,218,214,255,7,84,150,254,81,27,117,255,160,159,152,254,66,24,221,255,227,10,60,1,141,135,102,0,208,189,150,1,117,179,92,0,132,22,136,255,120,199,28,0,21,129,79,254,182,9,65,0,218,163,169,0,246,147,198,255,107,38,144,1,78,175,205,255,214,5,250,254,47,88,29,255,164,47,204,255,43,55,6,255,131,134,207,254,116,100,214,0,96,140,75,1,106,220,144,0,195,32,28,1,172,81,5,255,199,179,52,255,37,84,203,0,170,112,174,0,11,4,91,0,69,244,27,1,117,131,92,0,33,152,175,255,140,153,107,255,251,135,43,254,87,138,4,255,198,234,147,254,121,152,84,255,205,101,155,1,157,9,25,0,72,106,17,254,108,153,0,255,189,229,186,0,193,8,176,255,174,149,209,0,238,130,29,0,233,214,126,1,61,226,102,0,57,163,4,1,198,111,51,255,45,79,78,1,115,210,10,255,218,9,25,255,158,139,198,255,211,82,187,254,80,133,83,0,157,129,230,1,243,133,134,255,40,136,16,0,77,107,79,255,183,85,92,1,177,204,202,0,163,71,147,255,152,69,190,0,172,51,188,1,250,210,172,255,211,242,113,1,89,89,26,255,64,66,111,254,116,152,42,0,161,39,27,255,54,80,254,0,106,209,115,1,103,124,97,0,221,230,98,255,31,231,6,0,178,192,120,254,15,217,203,255,124,158,79,0,112,145,247,0,92,250,48,1,163,181,193,255,37,47,142,254,144,189,165,255,46,146,240,0,6,75,128,0,41,157,200,254,87,121,213,0,1,113,236,0,5,45,250,0,144,12,82,0,31,108,231,0,225,239,119,255,167,7,189,255,187,228,132,255,110,189,34,0,94,44,204,1,162,52,197,0,78,188,241,254,57,20,141,0,244,146,47,1,206,100,51,0,125,107,148,254,27,195,77,0,152,253,90,1,7,143,144,255,51,37,31,0,34,119,38,255,7,197,118,0,153,188,211,0,151,20,116,254,245,65,52,255,180,253,110,1,47,177,209,0,161,99,17,255,118,222,202,0,125,179,252,1,123,54,126,255,145,57,191,0,55,186,121,0,10,243,138,0,205,211,229,255,125,156,241,254,148,156,185,255,227,19,188,255,124,41,32,255,31,34,206,254,17,57,83,0,204,22,37,255,42,96,98,0,119,102,184,1,3,190,28,0,110,82,218,255,200,204,192,255,201,145,118,0,117,204,146,0,132,32,98,1,192,194,121,0,106,161,248,1,237,88,124,0,23,212,26,0,205,171,90,255,248,48,216,1,141,37,230,255,124,203,0,254,158,168,30,255,214,248,21,0,112,187,7,255,75,133,239,255,74,227,243,255,250,147,70,0,214,120,162,0,167,9,179,255,22,158,18,0,218,77,209,1,97,109,81,255,244,33,179,255,57,52,57,255,65,172,210,255,249,71,209,255,142,169,238,0,158,189,153,255,174,254,103,254,98,33,14,0,141,76,230,255,113,139,52,255,15,58,212,0,168,215,201,255,248,204,215,1,223,68,160,255,57,154,183,254,47,231,121,0,106,166,137,0,81,136,138,0,165,43,51,0,231,139,61,0,57,95,59,254,118,98,25,255,151,63,236,1,94,190,250,255,169,185,114,1,5,250,58,255,75,105,97,1,215,223,134,0,113,99,163,1,128,62,112,0,99,106,147,0,163,195,10,0,33,205,182,0,214,14,174,255,129,38,231,255,53,182,223,0,98,42,159,255,247,13,40,0,188,210,177,1,6,21,0,255,255,61,148,254,137,45,129,255,89,26,116,254,126,38,114,0,251,50,242,254,121,134,128,255,204,249,167,254,165,235,215,0,202,177,243,0,133,141,62,0,240,130,190,1,110,175,255,0,0,20,146,1,37,210,121,255,7,39,130,0,142,250,84,255,141,200,207,0,9,95,104,255,11,244,174,0,134,232,126,0,167,1,123,254,16,193,149,255,232,233,239,1,213,70,112,255,252,116,160,254,242,222,220,255,205,85,227,0,7,185,58,0,118,247,63,1,116,77,177,255,62,245,200,254,63,18,37,255,107,53,232,254,50,221,211,0,162,219,7,254,2,94,43,0,182,62,182,254,160,78,200,255,135,140,170,0,235,184,228,0,175,53,138,254,80,58,77,255,152,201,2,1,63,196,34,0,5,30,184,0,171,176,154,0,121,59,206,0,38,99,39,0,172,80,77,254,0,134,151,0,186,33,241,254,94,253,223,255,44,114,252,0,108,126,57,255,201,40,13,255,39,229,27,255,39,239,23,1,151,121,51,255,153,150,248,0,10,234,174,255,118,246,4,254,200,245,38,0,69,161,242,1,16,178,150,0,113,56,130,0,171,31,105,0,26,88,108,255,49,42,106,0,251,169,66,0,69,93,149,0,20,57,254,0,164,25,111,0,90,188,90,255,204,4,197,0,40,213,50,1,212,96,132,255,88,138,180,254,228,146,124,255,184,246,247,0,65,117,86,255,253,102,210,254,254,121,36,0,137,115,3,255,60,24,216,0,134,18,29,0,59,226,97,0,176,142,71,0,7,209,161,0,189,84,51,254,155,250,72,0,213,84,235,255,45,222,224,0,238,148,143,255,170,42,53,255,78,167,117,0,186,0,40,255,125,177,103,255,69,225,66,0,227,7,88,1,75,172,6,0,169,45,227,1,16,36,70,255,50,2,9,255,139,193,22,0,143,183,231,254,218,69,50,0,236,56,161,1,213,131,42,0,138,145,44,254,136,229,40,255,49,63,35,255,61,145,245,255,101,192,2,254,232,167,113,0,152,104,38,1,121,185,218,0,121,139,211,254,119,240,35,0,65,189,217,254,187,179,162,255,160,187,230,0,62,248,14,255,60,78,97,0,255,247,163,255,225,59,91,255,107,71,58,255,241,47,33,1,50,117,236,0,219,177,63,254,244,90,179,0,35,194,215,255,189,67,50,255,23,135,129,0,104,189,37,255,185,57,194,0,35,62,231,255,220,248,108,0,12,231,178,0,143,80,91,1,131,93,101,255,144,39,2,1,255,250,178,0,5,17,236,254,139,32,46,0,204,188,38,254,245,115,52,255,191,113,73,254,191,108,69,255,22,69,245,1,23,203,178,0,170,99,170,0,65,248,111,0,37,108,153,255,64,37,69,0,0,88,62,254,89,148,144,255,191,68,224,1,241,39,53,0,41,203,237,255,145,126,194,255,221,42,253,255,25,99,151,0,97,253,223,1,74,115,49,255,6,175,72,255,59,176,203,0,124,183,249,1,228,228,99,0,129,12,207,254,168,192,195,255,204,176,16,254,152,234,171,0,77,37,85,255,33,120,135,255,142,194,227,1,31,214,58,0,213,187,125,255,232,46,60,255,190,116,42,254,151,178,19,255,51,62,237,254,204,236,193,0,194,232,60,0,172,34,157,255,189,16,184,254,103,3,95,255,141,233,36,254,41,25,11,255,21,195,166,0,118,245,45,0,67,213,149,255,159,12,18,255,187,164,227,1,160,25,5,0,12,78,195,1,43,197,225,0,48,142,41,254,196,155,60,255,223,199,18,1,145,136,156,0,252,117,169,254,145,226,238,0,239,23,107,0,109,181,188,255,230,112,49,254,73,170,237,255,231,183,227,255,80,220,20,0,194,107,127,1,127,205,101,0,46,52,197,1,210,171,36,255,88,3,90,255,56,151,141,0,96,187,255,255,42,78,200,0,254,70,70,1,244,125,168,0,204,68,138,1,124,215,70,0,102,66,200,254,17,52,228,0,117,220,143,254,203,248,123,0,56,18,174,255,186,151,164,255,51,232,208,1,160,228,43,255,249,29,25,1,68,190,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,220,130,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,244,127,0,0], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE+30720); /* no memory initializer */ -var tempDoublePtr = Runtime.alignMemory(allocate(12, "i8", ALLOC_STATIC), 8); - -assert(tempDoublePtr % 8 == 0); +var tempDoublePtr = STATICTOP; STATICTOP += 16; function copyTempFloat(ptr) { // functions, because inlining this code increases code size too much @@ -1584,23 +1580,12 @@ function copyTempDouble(ptr) { Module["_memset"] = _memset; - function _pthread_cleanup_push(routine, arg) { - __ATEXIT__.push(function() { Runtime.dynCall('vi', routine, [arg]) }) - _pthread_cleanup_push.level = __ATEXIT__.length; - } - Module["_bitshift64Lshr"] = _bitshift64Lshr; Module["_bitshift64Shl"] = _bitshift64Shl; - function _pthread_cleanup_pop() { - assert(_pthread_cleanup_push.level == __ATEXIT__.length, 'cannot pop if something else added meanwhile!'); - __ATEXIT__.pop(); - _pthread_cleanup_push.level = __ATEXIT__.length; - } - function _abort() { Module['abort'](); } @@ -1610,19029 +1595,15456 @@ function copyTempDouble(ptr) { function ___unlock() {} + var SYSCALLS={varargs:0,get:function (varargs) { + SYSCALLS.varargs += 4; + var ret = HEAP32[(((SYSCALLS.varargs)-(4))>>2)]; + return ret; + },getStr:function () { + var ret = Pointer_stringify(SYSCALLS.get()); + return ret; + },get64:function () { + var low = SYSCALLS.get(), high = SYSCALLS.get(); + if (low >= 0) assert(high === 0); + else assert(high === -1); + return low; + },getZero:function () { + assert(SYSCALLS.get() === 0); + }};function ___syscall6(which, varargs) {SYSCALLS.varargs = varargs; + try { + // close + var stream = SYSCALLS.getStreamFromFD(); + FS.close(stream); + return 0; + } catch (e) { + if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); + return -e.errno; + } + } + - - var ERRNO_CODES={EPERM:1,ENOENT:2,ESRCH:3,EINTR:4,EIO:5,ENXIO:6,E2BIG:7,ENOEXEC:8,EBADF:9,ECHILD:10,EAGAIN:11,EWOULDBLOCK:11,ENOMEM:12,EACCES:13,EFAULT:14,ENOTBLK:15,EBUSY:16,EEXIST:17,EXDEV:18,ENODEV:19,ENOTDIR:20,EISDIR:21,EINVAL:22,ENFILE:23,EMFILE:24,ENOTTY:25,ETXTBSY:26,EFBIG:27,ENOSPC:28,ESPIPE:29,EROFS:30,EMLINK:31,EPIPE:32,EDOM:33,ERANGE:34,ENOMSG:42,EIDRM:43,ECHRNG:44,EL2NSYNC:45,EL3HLT:46,EL3RST:47,ELNRNG:48,EUNATCH:49,ENOCSI:50,EL2HLT:51,EDEADLK:35,ENOLCK:37,EBADE:52,EBADR:53,EXFULL:54,ENOANO:55,EBADRQC:56,EBADSLT:57,EDEADLOCK:35,EBFONT:59,ENOSTR:60,ENODATA:61,ETIME:62,ENOSR:63,ENONET:64,ENOPKG:65,EREMOTE:66,ENOLINK:67,EADV:68,ESRMNT:69,ECOMM:70,EPROTO:71,EMULTIHOP:72,EDOTDOT:73,EBADMSG:74,ENOTUNIQ:76,EBADFD:77,EREMCHG:78,ELIBACC:79,ELIBBAD:80,ELIBSCN:81,ELIBMAX:82,ELIBEXEC:83,ENOSYS:38,ENOTEMPTY:39,ENAMETOOLONG:36,ELOOP:40,EOPNOTSUPP:95,EPFNOSUPPORT:96,ECONNRESET:104,ENOBUFS:105,EAFNOSUPPORT:97,EPROTOTYPE:91,ENOTSOCK:88,ENOPROTOOPT:92,ESHUTDOWN:108,ECONNREFUSED:111,EADDRINUSE:98,ECONNABORTED:103,ENETUNREACH:101,ENETDOWN:100,ETIMEDOUT:110,EHOSTDOWN:112,EHOSTUNREACH:113,EINPROGRESS:115,EALREADY:114,EDESTADDRREQ:89,EMSGSIZE:90,EPROTONOSUPPORT:93,ESOCKTNOSUPPORT:94,EADDRNOTAVAIL:99,ENETRESET:102,EISCONN:106,ENOTCONN:107,ETOOMANYREFS:109,EUSERS:87,EDQUOT:122,ESTALE:116,ENOTSUP:95,ENOMEDIUM:123,EILSEQ:84,EOVERFLOW:75,ECANCELED:125,ENOTRECOVERABLE:131,EOWNERDEAD:130,ESTRPIPE:86}; - - var ERRNO_MESSAGES={0:"Success",1:"Not super-user",2:"No such file or directory",3:"No such process",4:"Interrupted system call",5:"I/O error",6:"No such device or address",7:"Arg list too long",8:"Exec format error",9:"Bad file number",10:"No children",11:"No more processes",12:"Not enough core",13:"Permission denied",14:"Bad address",15:"Block device required",16:"Mount device busy",17:"File exists",18:"Cross-device link",19:"No such device",20:"Not a directory",21:"Is a directory",22:"Invalid argument",23:"Too many open files in system",24:"Too many open files",25:"Not a typewriter",26:"Text file busy",27:"File too large",28:"No space left on device",29:"Illegal seek",30:"Read only file system",31:"Too many links",32:"Broken pipe",33:"Math arg out of domain of func",34:"Math result not representable",35:"File locking deadlock error",36:"File or path name too long",37:"No record locks available",38:"Function not implemented",39:"Directory not empty",40:"Too many symbolic links",42:"No message of desired type",43:"Identifier removed",44:"Channel number out of range",45:"Level 2 not synchronized",46:"Level 3 halted",47:"Level 3 reset",48:"Link number out of range",49:"Protocol driver not attached",50:"No CSI structure available",51:"Level 2 halted",52:"Invalid exchange",53:"Invalid request descriptor",54:"Exchange full",55:"No anode",56:"Invalid request code",57:"Invalid slot",59:"Bad font file fmt",60:"Device not a stream",61:"No data (for no delay io)",62:"Timer expired",63:"Out of streams resources",64:"Machine is not on the network",65:"Package not installed",66:"The object is remote",67:"The link has been severed",68:"Advertise error",69:"Srmount error",70:"Communication error on send",71:"Protocol error",72:"Multihop attempted",73:"Cross mount point (not really error)",74:"Trying to read unreadable message",75:"Value too large for defined data type",76:"Given log. name not unique",77:"f.d. invalid for this operation",78:"Remote address changed",79:"Can access a needed shared lib",80:"Accessing a corrupted shared lib",81:".lib section in a.out corrupted",82:"Attempting to link in too many libs",83:"Attempting to exec a shared library",84:"Illegal byte sequence",86:"Streams pipe error",87:"Too many users",88:"Socket operation on non-socket",89:"Destination address required",90:"Message too long",91:"Protocol wrong type for socket",92:"Protocol not available",93:"Unknown protocol",94:"Socket type not supported",95:"Not supported",96:"Protocol family not supported",97:"Address family not supported by protocol family",98:"Address already in use",99:"Address not available",100:"Network interface is not configured",101:"Network is unreachable",102:"Connection reset by network",103:"Connection aborted",104:"Connection reset by peer",105:"No buffer space available",106:"Socket is already connected",107:"Socket is not connected",108:"Can't send after socket shutdown",109:"Too many references",110:"Connection timed out",111:"Connection refused",112:"Host is down",113:"Host is unreachable",114:"Socket already connected",115:"Connection already in progress",116:"Stale file handle",122:"Quota exceeded",123:"No medium (in tape drive)",125:"Operation canceled",130:"Previous owner died",131:"State not recoverable"}; + + Module["___muldsi3"] = ___muldsi3; + Module["___muldi3"] = ___muldi3; + + function _llvm_stackrestore(p) { + var self = _llvm_stacksave; + var ret = self.LLVM_SAVEDSTACKS[p]; + self.LLVM_SAVEDSTACKS.splice(p, 1); + Runtime.stackRestore(ret); + } + function ___setErrNo(value) { if (Module['___errno_location']) HEAP32[((Module['___errno_location']())>>2)]=value; return value; + } + Module["_sbrk"] = _sbrk; + + function _llvm_stacksave() { + var self = _llvm_stacksave; + if (!self.LLVM_SAVEDSTACKS) { + self.LLVM_SAVEDSTACKS = []; + } + self.LLVM_SAVEDSTACKS.push(Runtime.stackSave()); + return self.LLVM_SAVEDSTACKS.length-1; } + - var PATH={splitPath:function (filename) { - var splitPathRe = /^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/; - return splitPathRe.exec(filename).slice(1); - },normalizeArray:function (parts, allowAboveRoot) { - // if the path tries to go above the root, `up` ends up > 0 - var up = 0; - for (var i = parts.length - 1; i >= 0; i--) { - var last = parts[i]; - if (last === '.') { - parts.splice(i, 1); - } else if (last === '..') { - parts.splice(i, 1); - up++; - } else if (up) { - parts.splice(i, 1); - up--; - } - } - // if the path is allowed to go above the root, restore leading ..s - if (allowAboveRoot) { - for (; up--; up) { - parts.unshift('..'); - } - } - return parts; - },normalize:function (path) { - var isAbsolute = path.charAt(0) === '/', - trailingSlash = path.substr(-1) === '/'; - // Normalize the path - path = PATH.normalizeArray(path.split('/').filter(function(p) { - return !!p; - }), !isAbsolute).join('/'); - if (!path && !isAbsolute) { - path = '.'; - } - if (path && trailingSlash) { - path += '/'; - } - return (isAbsolute ? '/' : '') + path; - },dirname:function (path) { - var result = PATH.splitPath(path), - root = result[0], - dir = result[1]; - if (!root && !dir) { - // No dirname whatsoever - return '.'; - } - if (dir) { - // It has a dirname, strip trailing slash - dir = dir.substr(0, dir.length - 1); - } - return root + dir; - },basename:function (path) { - // EMSCRIPTEN return '/'' for '/', not an empty string - if (path === '/') return '/'; - var lastSlash = path.lastIndexOf('/'); - if (lastSlash === -1) return path; - return path.substr(lastSlash+1); - },extname:function (path) { - return PATH.splitPath(path)[3]; - },join:function () { - var paths = Array.prototype.slice.call(arguments, 0); - return PATH.normalize(paths.join('/')); - },join2:function (l, r) { - return PATH.normalize(l + '/' + r); - },resolve:function () { - var resolvedPath = '', - resolvedAbsolute = false; - for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) { - var path = (i >= 0) ? arguments[i] : FS.cwd(); - // Skip empty and invalid entries - if (typeof path !== 'string') { - throw new TypeError('Arguments to path.resolve must be strings'); - } else if (!path) { - return ''; // an invalid portion invalidates the whole thing - } - resolvedPath = path + '/' + resolvedPath; - resolvedAbsolute = path.charAt(0) === '/'; - } - // At this point the path should be resolved to a full absolute path, but - // handle relative paths to be safe (might happen when process.cwd() fails) - resolvedPath = PATH.normalizeArray(resolvedPath.split('/').filter(function(p) { - return !!p; - }), !resolvedAbsolute).join('/'); - return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.'; - },relative:function (from, to) { - from = PATH.resolve(from).substr(1); - to = PATH.resolve(to).substr(1); - function trim(arr) { - var start = 0; - for (; start < arr.length; start++) { - if (arr[start] !== '') break; - } - var end = arr.length - 1; - for (; end >= 0; end--) { - if (arr[end] !== '') break; - } - if (start > end) return []; - return arr.slice(start, end - start + 1); - } - var fromParts = trim(from.split('/')); - var toParts = trim(to.split('/')); - var length = Math.min(fromParts.length, toParts.length); - var samePartsLength = length; - for (var i = 0; i < length; i++) { - if (fromParts[i] !== toParts[i]) { - samePartsLength = i; - break; - } - } - var outputParts = []; - for (var i = samePartsLength; i < fromParts.length; i++) { - outputParts.push('..'); - } - outputParts = outputParts.concat(toParts.slice(samePartsLength)); - return outputParts.join('/'); - }}; - - var TTY={ttys:[],init:function () { - // https://github.com/kripken/emscripten/pull/1555 - // if (ENVIRONMENT_IS_NODE) { - // // currently, FS.init does not distinguish if process.stdin is a file or TTY - // // device, it always assumes it's a TTY device. because of this, we're forcing - // // process.stdin to UTF8 encoding to at least make stdin reading compatible - // // with text files until FS.init can be refactored. - // process['stdin']['setEncoding']('utf8'); - // } - },shutdown:function () { - // https://github.com/kripken/emscripten/pull/1555 - // if (ENVIRONMENT_IS_NODE) { - // // inolen: any idea as to why node -e 'process.stdin.read()' wouldn't exit immediately (with process.stdin being a tty)? - // // isaacs: because now it's reading from the stream, you've expressed interest in it, so that read() kicks off a _read() which creates a ReadReq operation - // // inolen: I thought read() in that case was a synchronous operation that just grabbed some amount of buffered data if it exists? - // // isaacs: it is. but it also triggers a _read() call, which calls readStart() on the handle - // // isaacs: do process.stdin.pause() and i'd think it'd probably close the pending call - // process['stdin']['pause'](); - // } - },register:function (dev, ops) { - TTY.ttys[dev] = { input: [], output: [], ops: ops }; - FS.registerDevice(dev, TTY.stream_ops); - },stream_ops:{open:function (stream) { - var tty = TTY.ttys[stream.node.rdev]; - if (!tty) { - throw new FS.ErrnoError(ERRNO_CODES.ENODEV); - } - stream.tty = tty; - stream.seekable = false; - },close:function (stream) { - // flush any pending line data - stream.tty.ops.flush(stream.tty); - },flush:function (stream) { - stream.tty.ops.flush(stream.tty); - },read:function (stream, buffer, offset, length, pos /* ignored */) { - if (!stream.tty || !stream.tty.ops.get_char) { - throw new FS.ErrnoError(ERRNO_CODES.ENXIO); - } - var bytesRead = 0; - for (var i = 0; i < length; i++) { - var result; - try { - result = stream.tty.ops.get_char(stream.tty); - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES.EIO); - } - if (result === undefined && bytesRead === 0) { - throw new FS.ErrnoError(ERRNO_CODES.EAGAIN); - } - if (result === null || result === undefined) break; - bytesRead++; - buffer[offset+i] = result; - } - if (bytesRead) { - stream.node.timestamp = Date.now(); - } - return bytesRead; - },write:function (stream, buffer, offset, length, pos) { - if (!stream.tty || !stream.tty.ops.put_char) { - throw new FS.ErrnoError(ERRNO_CODES.ENXIO); - } - for (var i = 0; i < length; i++) { - try { - stream.tty.ops.put_char(stream.tty, buffer[offset+i]); - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES.EIO); - } - } - if (length) { - stream.node.timestamp = Date.now(); - } - return i; - }},default_tty_ops:{get_char:function (tty) { - if (!tty.input.length) { - var result = null; - if (ENVIRONMENT_IS_NODE) { - // we will read data by chunks of BUFSIZE - var BUFSIZE = 256; - var buf = new Buffer(BUFSIZE); - var bytesRead = 0; - - var fd = process.stdin.fd; - // Linux and Mac cannot use process.stdin.fd (which isn't set up as sync) - var usingDevice = false; - try { - fd = fs.openSync('/dev/stdin', 'r'); - usingDevice = true; - } catch (e) {} - - bytesRead = fs.readSync(fd, buf, 0, BUFSIZE, null); - - if (usingDevice) { fs.closeSync(fd); } - if (bytesRead > 0) { - result = buf.slice(0, bytesRead).toString('utf-8'); - } else { - result = null; - } - } else if (typeof window != 'undefined' && - typeof window.prompt == 'function') { - // Browser. - result = window.prompt('Input: '); // returns null on cancel - if (result !== null) { - result += '\n'; - } - } else if (typeof readline == 'function') { - // Command line. - result = readline(); - if (result !== null) { - result += '\n'; - } - } - if (!result) { - return null; - } - tty.input = intArrayFromString(result, true); - } - return tty.input.shift(); - },put_char:function (tty, val) { - if (val === null || val === 10) { - Module['print'](UTF8ArrayToString(tty.output, 0)); - tty.output = []; - } else { - if (val != 0) tty.output.push(val); // val == 0 would cut text output off in the middle. - } - },flush:function (tty) { - if (tty.output && tty.output.length > 0) { - Module['print'](UTF8ArrayToString(tty.output, 0)); - tty.output = []; - } - }},default_tty1_ops:{put_char:function (tty, val) { - if (val === null || val === 10) { - Module['printErr'](UTF8ArrayToString(tty.output, 0)); - tty.output = []; + function _emscripten_memcpy_big(dest, src, num) { + HEAPU8.set(HEAPU8.subarray(src, src+num), dest); + return dest; + } + Module["_memcpy"] = _memcpy; + Module["_memmove"] = _memmove; + + + function ___syscall140(which, varargs) {SYSCALLS.varargs = varargs; + try { + // llseek + var stream = SYSCALLS.getStreamFromFD(), offset_high = SYSCALLS.get(), offset_low = SYSCALLS.get(), result = SYSCALLS.get(), whence = SYSCALLS.get(); + // NOTE: offset_high is unused - Emscripten's off_t is 32-bit + var offset = offset_low; + FS.llseek(stream, offset, whence); + HEAP32[((result)>>2)]=stream.position; + if (stream.getdents && offset === 0 && whence === 0) stream.getdents = null; // reset readdir state + return 0; + } catch (e) { + if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); + return -e.errno; + } + } + + function ___syscall146(which, varargs) {SYSCALLS.varargs = varargs; + try { + // writev + // hack to support printf in NO_FILESYSTEM + var stream = SYSCALLS.get(), iov = SYSCALLS.get(), iovcnt = SYSCALLS.get(); + var ret = 0; + if (!___syscall146.buffer) { + ___syscall146.buffers = [null, [], []]; // 1 => stdout, 2 => stderr + ___syscall146.printChar = function(stream, curr) { + var buffer = ___syscall146.buffers[stream]; + assert(buffer); + if (curr === 0 || curr === 10) { + (stream === 1 ? Module['print'] : Module['printErr'])(UTF8ArrayToString(buffer, 0)); + buffer.length = 0; } else { - if (val != 0) tty.output.push(val); - } - },flush:function (tty) { - if (tty.output && tty.output.length > 0) { - Module['printErr'](UTF8ArrayToString(tty.output, 0)); - tty.output = []; + buffer.push(curr); } - }}}; - - var MEMFS={ops_table:null,mount:function (mount) { - return MEMFS.createNode(null, '/', 16384 | 511 /* 0777 */, 0); - },createNode:function (parent, name, mode, dev) { - if (FS.isBlkdev(mode) || FS.isFIFO(mode)) { - // no supported - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - if (!MEMFS.ops_table) { - MEMFS.ops_table = { - dir: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr, - lookup: MEMFS.node_ops.lookup, - mknod: MEMFS.node_ops.mknod, - rename: MEMFS.node_ops.rename, - unlink: MEMFS.node_ops.unlink, - rmdir: MEMFS.node_ops.rmdir, - readdir: MEMFS.node_ops.readdir, - symlink: MEMFS.node_ops.symlink - }, - stream: { - llseek: MEMFS.stream_ops.llseek - } - }, - file: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr - }, - stream: { - llseek: MEMFS.stream_ops.llseek, - read: MEMFS.stream_ops.read, - write: MEMFS.stream_ops.write, - allocate: MEMFS.stream_ops.allocate, - mmap: MEMFS.stream_ops.mmap, - msync: MEMFS.stream_ops.msync - } - }, - link: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr, - readlink: MEMFS.node_ops.readlink - }, - stream: {} - }, - chrdev: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr - }, - stream: FS.chrdev_stream_ops - } - }; - } - var node = FS.createNode(parent, name, mode, dev); - if (FS.isDir(node.mode)) { - node.node_ops = MEMFS.ops_table.dir.node; - node.stream_ops = MEMFS.ops_table.dir.stream; - node.contents = {}; - } else if (FS.isFile(node.mode)) { - node.node_ops = MEMFS.ops_table.file.node; - node.stream_ops = MEMFS.ops_table.file.stream; - node.usedBytes = 0; // The actual number of bytes used in the typed array, as opposed to contents.buffer.byteLength which gives the whole capacity. - // When the byte data of the file is populated, this will point to either a typed array, or a normal JS array. Typed arrays are preferred - // for performance, and used by default. However, typed arrays are not resizable like normal JS arrays are, so there is a small disk size - // penalty involved for appending file writes that continuously grow a file similar to std::vector capacity vs used -scheme. - node.contents = null; - } else if (FS.isLink(node.mode)) { - node.node_ops = MEMFS.ops_table.link.node; - node.stream_ops = MEMFS.ops_table.link.stream; - } else if (FS.isChrdev(node.mode)) { - node.node_ops = MEMFS.ops_table.chrdev.node; - node.stream_ops = MEMFS.ops_table.chrdev.stream; - } - node.timestamp = Date.now(); - // add the new node to the parent - if (parent) { - parent.contents[name] = node; - } - return node; - },getFileDataAsRegularArray:function (node) { - if (node.contents && node.contents.subarray) { - var arr = []; - for (var i = 0; i < node.usedBytes; ++i) arr.push(node.contents[i]); - return arr; // Returns a copy of the original data. - } - return node.contents; // No-op, the file contents are already in a JS array. Return as-is. - },getFileDataAsTypedArray:function (node) { - if (!node.contents) return new Uint8Array; - if (node.contents.subarray) return node.contents.subarray(0, node.usedBytes); // Make sure to not return excess unused bytes. - return new Uint8Array(node.contents); - },expandFileStorage:function (node, newCapacity) { - // If we are asked to expand the size of a file that already exists, revert to using a standard JS array to store the file - // instead of a typed array. This makes resizing the array more flexible because we can just .push() elements at the back to - // increase the size. - if (node.contents && node.contents.subarray && newCapacity > node.contents.length) { - node.contents = MEMFS.getFileDataAsRegularArray(node); - node.usedBytes = node.contents.length; // We might be writing to a lazy-loaded file which had overridden this property, so force-reset it. - } - - if (!node.contents || node.contents.subarray) { // Keep using a typed array if creating a new storage, or if old one was a typed array as well. - var prevCapacity = node.contents ? node.contents.buffer.byteLength : 0; - if (prevCapacity >= newCapacity) return; // No need to expand, the storage was already large enough. - // Don't expand strictly to the given requested limit if it's only a very small increase, but instead geometrically grow capacity. - // For small filesizes (<1MB), perform size*2 geometric increase, but for large sizes, do a much more conservative size*1.125 increase to - // avoid overshooting the allocation cap by a very large margin. - var CAPACITY_DOUBLING_MAX = 1024 * 1024; - newCapacity = Math.max(newCapacity, (prevCapacity * (prevCapacity < CAPACITY_DOUBLING_MAX ? 2.0 : 1.125)) | 0); - if (prevCapacity != 0) newCapacity = Math.max(newCapacity, 256); // At minimum allocate 256b for each file when expanding. - var oldContents = node.contents; - node.contents = new Uint8Array(newCapacity); // Allocate new storage. - if (node.usedBytes > 0) node.contents.set(oldContents.subarray(0, node.usedBytes), 0); // Copy old data over to the new storage. - return; - } - // Not using a typed array to back the file storage. Use a standard JS array instead. - if (!node.contents && newCapacity > 0) node.contents = []; - while (node.contents.length < newCapacity) node.contents.push(0); - },resizeFileStorage:function (node, newSize) { - if (node.usedBytes == newSize) return; - if (newSize == 0) { - node.contents = null; // Fully decommit when requesting a resize to zero. - node.usedBytes = 0; - return; - } - if (!node.contents || node.contents.subarray) { // Resize a typed array if that is being used as the backing store. - var oldContents = node.contents; - node.contents = new Uint8Array(new ArrayBuffer(newSize)); // Allocate new storage. - if (oldContents) { - node.contents.set(oldContents.subarray(0, Math.min(newSize, node.usedBytes))); // Copy old data over to the new storage. - } - node.usedBytes = newSize; - return; + }; + } + for (var i = 0; i < iovcnt; i++) { + var ptr = HEAP32[(((iov)+(i*8))>>2)]; + var len = HEAP32[(((iov)+(i*8 + 4))>>2)]; + for (var j = 0; j < len; j++) { + ___syscall146.printChar(stream, HEAPU8[ptr+j]); } - // Backing with a JS array. - if (!node.contents) node.contents = []; - if (node.contents.length > newSize) node.contents.length = newSize; - else while (node.contents.length < newSize) node.contents.push(0); - node.usedBytes = newSize; - },node_ops:{getattr:function (node) { - var attr = {}; - // device numbers reuse inode numbers. - attr.dev = FS.isChrdev(node.mode) ? node.id : 1; - attr.ino = node.id; - attr.mode = node.mode; - attr.nlink = 1; - attr.uid = 0; - attr.gid = 0; - attr.rdev = node.rdev; - if (FS.isDir(node.mode)) { - attr.size = 4096; - } else if (FS.isFile(node.mode)) { - attr.size = node.usedBytes; - } else if (FS.isLink(node.mode)) { - attr.size = node.link.length; - } else { - attr.size = 0; - } - attr.atime = new Date(node.timestamp); - attr.mtime = new Date(node.timestamp); - attr.ctime = new Date(node.timestamp); - // NOTE: In our implementation, st_blocks = Math.ceil(st_size/st_blksize), - // but this is not required by the standard. - attr.blksize = 4096; - attr.blocks = Math.ceil(attr.size / attr.blksize); - return attr; - },setattr:function (node, attr) { - if (attr.mode !== undefined) { - node.mode = attr.mode; - } - if (attr.timestamp !== undefined) { - node.timestamp = attr.timestamp; - } - if (attr.size !== undefined) { - MEMFS.resizeFileStorage(node, attr.size); - } - },lookup:function (parent, name) { - throw FS.genericErrors[ERRNO_CODES.ENOENT]; - },mknod:function (parent, name, mode, dev) { - return MEMFS.createNode(parent, name, mode, dev); - },rename:function (old_node, new_dir, new_name) { - // if we're overwriting a directory at new_name, make sure it's empty. - if (FS.isDir(old_node.mode)) { - var new_node; - try { - new_node = FS.lookupNode(new_dir, new_name); - } catch (e) { - } - if (new_node) { - for (var i in new_node.contents) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTEMPTY); - } - } - } - // do the internal rewiring - delete old_node.parent.contents[old_node.name]; - old_node.name = new_name; - new_dir.contents[new_name] = old_node; - old_node.parent = new_dir; - },unlink:function (parent, name) { - delete parent.contents[name]; - },rmdir:function (parent, name) { - var node = FS.lookupNode(parent, name); - for (var i in node.contents) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTEMPTY); - } - delete parent.contents[name]; - },readdir:function (node) { - var entries = ['.', '..'] - for (var key in node.contents) { - if (!node.contents.hasOwnProperty(key)) { - continue; - } - entries.push(key); - } - return entries; - },symlink:function (parent, newname, oldpath) { - var node = MEMFS.createNode(parent, newname, 511 /* 0777 */ | 40960, 0); - node.link = oldpath; - return node; - },readlink:function (node) { - if (!FS.isLink(node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - return node.link; - }},stream_ops:{read:function (stream, buffer, offset, length, position) { - var contents = stream.node.contents; - if (position >= stream.node.usedBytes) return 0; - var size = Math.min(stream.node.usedBytes - position, length); - assert(size >= 0); - if (size > 8 && contents.subarray) { // non-trivial, and typed array - buffer.set(contents.subarray(position, position + size), offset); - } else { - for (var i = 0; i < size; i++) buffer[offset + i] = contents[position + i]; - } - return size; - },write:function (stream, buffer, offset, length, position, canOwn) { - if (!length) return 0; - var node = stream.node; - node.timestamp = Date.now(); - - if (buffer.subarray && (!node.contents || node.contents.subarray)) { // This write is from a typed array to a typed array? - if (canOwn) { // Can we just reuse the buffer we are given? - node.contents = buffer.subarray(offset, offset + length); - node.usedBytes = length; - return length; - } else if (node.usedBytes === 0 && position === 0) { // If this is a simple first write to an empty file, do a fast set since we don't need to care about old data. - node.contents = new Uint8Array(buffer.subarray(offset, offset + length)); - node.usedBytes = length; - return length; - } else if (position + length <= node.usedBytes) { // Writing to an already allocated and used subrange of the file? - node.contents.set(buffer.subarray(offset, offset + length), position); - return length; - } - } - - // Appending to an existing file and we need to reallocate, or source data did not come as a typed array. - MEMFS.expandFileStorage(node, position+length); - if (node.contents.subarray && buffer.subarray) node.contents.set(buffer.subarray(offset, offset + length), position); // Use typed array write if available. - else { - for (var i = 0; i < length; i++) { - node.contents[position + i] = buffer[offset + i]; // Or fall back to manual write if not. - } - } - node.usedBytes = Math.max(node.usedBytes, position+length); - return length; - },llseek:function (stream, offset, whence) { - var position = offset; - if (whence === 1) { // SEEK_CUR. - position += stream.position; - } else if (whence === 2) { // SEEK_END. - if (FS.isFile(stream.node.mode)) { - position += stream.node.usedBytes; - } - } - if (position < 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - return position; - },allocate:function (stream, offset, length) { - MEMFS.expandFileStorage(stream.node, offset + length); - stream.node.usedBytes = Math.max(stream.node.usedBytes, offset + length); - },mmap:function (stream, buffer, offset, length, position, prot, flags) { - if (!FS.isFile(stream.node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.ENODEV); - } - var ptr; - var allocated; - var contents = stream.node.contents; - // Only make a new copy when MAP_PRIVATE is specified. - if ( !(flags & 2) && - (contents.buffer === buffer || contents.buffer === buffer.buffer) ) { - // We can't emulate MAP_SHARED when the file is not backed by the buffer - // we're mapping to (e.g. the HEAP buffer). - allocated = false; - ptr = contents.byteOffset; - } else { - // Try to avoid unnecessary slices. - if (position > 0 || position + length < stream.node.usedBytes) { - if (contents.subarray) { - contents = contents.subarray(position, position + length); - } else { - contents = Array.prototype.slice.call(contents, position, position + length); - } - } - allocated = true; - ptr = _malloc(length); - if (!ptr) { - throw new FS.ErrnoError(ERRNO_CODES.ENOMEM); - } - buffer.set(contents, ptr); - } - return { ptr: ptr, allocated: allocated }; - },msync:function (stream, buffer, offset, length, mmapFlags) { - if (!FS.isFile(stream.node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.ENODEV); - } - if (mmapFlags & 2) { - // MAP_PRIVATE calls need not to be synced back to underlying fs - return 0; - } - - var bytesWritten = MEMFS.stream_ops.write(stream, buffer, 0, length, offset, false); - // should we check if bytesWritten and length are the same? - return 0; - }}}; - - var IDBFS={dbs:{},indexedDB:function () { - if (typeof indexedDB !== 'undefined') return indexedDB; - var ret = null; - if (typeof window === 'object') ret = window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB; - assert(ret, 'IDBFS used, but indexedDB not supported'); - return ret; - },DB_VERSION:21,DB_STORE_NAME:"FILE_DATA",mount:function (mount) { - // reuse all of the core MEMFS functionality - return MEMFS.mount.apply(null, arguments); - },syncfs:function (mount, populate, callback) { - IDBFS.getLocalSet(mount, function(err, local) { - if (err) return callback(err); - - IDBFS.getRemoteSet(mount, function(err, remote) { - if (err) return callback(err); - - var src = populate ? remote : local; - var dst = populate ? local : remote; - - IDBFS.reconcile(src, dst, callback); - }); - }); - },getDB:function (name, callback) { - // check the cache first - var db = IDBFS.dbs[name]; - if (db) { - return callback(null, db); - } - - var req; - try { - req = IDBFS.indexedDB().open(name, IDBFS.DB_VERSION); - } catch (e) { - return callback(e); - } - req.onupgradeneeded = function(e) { - var db = e.target.result; - var transaction = e.target.transaction; - - var fileStore; - - if (db.objectStoreNames.contains(IDBFS.DB_STORE_NAME)) { - fileStore = transaction.objectStore(IDBFS.DB_STORE_NAME); - } else { - fileStore = db.createObjectStore(IDBFS.DB_STORE_NAME); - } - - if (!fileStore.indexNames.contains('timestamp')) { - fileStore.createIndex('timestamp', 'timestamp', { unique: false }); - } - }; - req.onsuccess = function() { - db = req.result; - - // add to the cache - IDBFS.dbs[name] = db; - callback(null, db); - }; - req.onerror = function(e) { - callback(this.error); - e.preventDefault(); - }; - },getLocalSet:function (mount, callback) { - var entries = {}; - - function isRealDir(p) { - return p !== '.' && p !== '..'; - }; - function toAbsolute(root) { - return function(p) { - return PATH.join2(root, p); - } - }; - - var check = FS.readdir(mount.mountpoint).filter(isRealDir).map(toAbsolute(mount.mountpoint)); - - while (check.length) { - var path = check.pop(); - var stat; - - try { - stat = FS.stat(path); - } catch (e) { - return callback(e); - } - - if (FS.isDir(stat.mode)) { - check.push.apply(check, FS.readdir(path).filter(isRealDir).map(toAbsolute(path))); - } - - entries[path] = { timestamp: stat.mtime }; - } - - return callback(null, { type: 'local', entries: entries }); - },getRemoteSet:function (mount, callback) { - var entries = {}; - - IDBFS.getDB(mount.mountpoint, function(err, db) { - if (err) return callback(err); - - var transaction = db.transaction([IDBFS.DB_STORE_NAME], 'readonly'); - transaction.onerror = function(e) { - callback(this.error); - e.preventDefault(); - }; - - var store = transaction.objectStore(IDBFS.DB_STORE_NAME); - var index = store.index('timestamp'); - - index.openKeyCursor().onsuccess = function(event) { - var cursor = event.target.result; - - if (!cursor) { - return callback(null, { type: 'remote', db: db, entries: entries }); - } - - entries[cursor.primaryKey] = { timestamp: cursor.key }; - - cursor.continue(); - }; - }); - },loadLocalEntry:function (path, callback) { - var stat, node; - - try { - var lookup = FS.lookupPath(path); - node = lookup.node; - stat = FS.stat(path); - } catch (e) { - return callback(e); - } - - if (FS.isDir(stat.mode)) { - return callback(null, { timestamp: stat.mtime, mode: stat.mode }); - } else if (FS.isFile(stat.mode)) { - // Performance consideration: storing a normal JavaScript array to a IndexedDB is much slower than storing a typed array. - // Therefore always convert the file contents to a typed array first before writing the data to IndexedDB. - node.contents = MEMFS.getFileDataAsTypedArray(node); - return callback(null, { timestamp: stat.mtime, mode: stat.mode, contents: node.contents }); - } else { - return callback(new Error('node type not supported')); - } - },storeLocalEntry:function (path, entry, callback) { - try { - if (FS.isDir(entry.mode)) { - FS.mkdir(path, entry.mode); - } else if (FS.isFile(entry.mode)) { - FS.writeFile(path, entry.contents, { encoding: 'binary', canOwn: true }); - } else { - return callback(new Error('node type not supported')); - } - - FS.chmod(path, entry.mode); - FS.utime(path, entry.timestamp, entry.timestamp); - } catch (e) { - return callback(e); - } - - callback(null); - },removeLocalEntry:function (path, callback) { - try { - var lookup = FS.lookupPath(path); - var stat = FS.stat(path); - - if (FS.isDir(stat.mode)) { - FS.rmdir(path); - } else if (FS.isFile(stat.mode)) { - FS.unlink(path); - } - } catch (e) { - return callback(e); - } - - callback(null); - },loadRemoteEntry:function (store, path, callback) { - var req = store.get(path); - req.onsuccess = function(event) { callback(null, event.target.result); }; - req.onerror = function(e) { - callback(this.error); - e.preventDefault(); - }; - },storeRemoteEntry:function (store, path, entry, callback) { - var req = store.put(entry, path); - req.onsuccess = function() { callback(null); }; - req.onerror = function(e) { - callback(this.error); - e.preventDefault(); - }; - },removeRemoteEntry:function (store, path, callback) { - var req = store.delete(path); - req.onsuccess = function() { callback(null); }; - req.onerror = function(e) { - callback(this.error); - e.preventDefault(); - }; - },reconcile:function (src, dst, callback) { - var total = 0; - - var create = []; - Object.keys(src.entries).forEach(function (key) { - var e = src.entries[key]; - var e2 = dst.entries[key]; - if (!e2 || e.timestamp > e2.timestamp) { - create.push(key); - total++; - } - }); - - var remove = []; - Object.keys(dst.entries).forEach(function (key) { - var e = dst.entries[key]; - var e2 = src.entries[key]; - if (!e2) { - remove.push(key); - total++; - } - }); - - if (!total) { - return callback(null); - } - - var errored = false; - var completed = 0; - var db = src.type === 'remote' ? src.db : dst.db; - var transaction = db.transaction([IDBFS.DB_STORE_NAME], 'readwrite'); - var store = transaction.objectStore(IDBFS.DB_STORE_NAME); - - function done(err) { - if (err) { - if (!done.errored) { - done.errored = true; - return callback(err); - } - return; - } - if (++completed >= total) { - return callback(null); - } - }; - - transaction.onerror = function(e) { - done(this.error); - e.preventDefault(); - }; - - // sort paths in ascending order so directory entries are created - // before the files inside them - create.sort().forEach(function (path) { - if (dst.type === 'local') { - IDBFS.loadRemoteEntry(store, path, function (err, entry) { - if (err) return done(err); - IDBFS.storeLocalEntry(path, entry, done); - }); - } else { - IDBFS.loadLocalEntry(path, function (err, entry) { - if (err) return done(err); - IDBFS.storeRemoteEntry(store, path, entry, done); - }); - } - }); - - // sort paths in descending order so files are deleted before their - // parent directories - remove.sort().reverse().forEach(function(path) { - if (dst.type === 'local') { - IDBFS.removeLocalEntry(path, done); - } else { - IDBFS.removeRemoteEntry(store, path, done); - } - }); - }}; - - var NODEFS={isWindows:false,staticInit:function () { - NODEFS.isWindows = !!process.platform.match(/^win/); - },mount:function (mount) { - assert(ENVIRONMENT_IS_NODE); - return NODEFS.createNode(null, '/', NODEFS.getMode(mount.opts.root), 0); - },createNode:function (parent, name, mode, dev) { - if (!FS.isDir(mode) && !FS.isFile(mode) && !FS.isLink(mode)) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - var node = FS.createNode(parent, name, mode); - node.node_ops = NODEFS.node_ops; - node.stream_ops = NODEFS.stream_ops; - return node; - },getMode:function (path) { - var stat; - try { - stat = fs.lstatSync(path); - if (NODEFS.isWindows) { - // On Windows, directories return permission bits 'rw-rw-rw-', even though they have 'rwxrwxrwx', so - // propagate write bits to execute bits. - stat.mode = stat.mode | ((stat.mode & 146) >> 1); - } - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - return stat.mode; - },realPath:function (node) { - var parts = []; - while (node.parent !== node) { - parts.push(node.name); - node = node.parent; - } - parts.push(node.mount.opts.root); - parts.reverse(); - return PATH.join.apply(null, parts); - },flagsToPermissionStringMap:{0:"r",1:"r+",2:"r+",64:"r",65:"r+",66:"r+",129:"rx+",193:"rx+",514:"w+",577:"w",578:"w+",705:"wx",706:"wx+",1024:"a",1025:"a",1026:"a+",1089:"a",1090:"a+",1153:"ax",1154:"ax+",1217:"ax",1218:"ax+",4096:"rs",4098:"rs+"},flagsToPermissionString:function (flags) { - flags &= ~0100000 /*O_LARGEFILE*/; // Ignore this flag from musl, otherwise node.js fails to open the file. - if (flags in NODEFS.flagsToPermissionStringMap) { - return NODEFS.flagsToPermissionStringMap[flags]; - } else { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - },node_ops:{getattr:function (node) { - var path = NODEFS.realPath(node); - var stat; - try { - stat = fs.lstatSync(path); - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - // node.js v0.10.20 doesn't report blksize and blocks on Windows. Fake them with default blksize of 4096. - // See http://support.microsoft.com/kb/140365 - if (NODEFS.isWindows && !stat.blksize) { - stat.blksize = 4096; - } - if (NODEFS.isWindows && !stat.blocks) { - stat.blocks = (stat.size+stat.blksize-1)/stat.blksize|0; - } - return { - dev: stat.dev, - ino: stat.ino, - mode: stat.mode, - nlink: stat.nlink, - uid: stat.uid, - gid: stat.gid, - rdev: stat.rdev, - size: stat.size, - atime: stat.atime, - mtime: stat.mtime, - ctime: stat.ctime, - blksize: stat.blksize, - blocks: stat.blocks - }; - },setattr:function (node, attr) { - var path = NODEFS.realPath(node); - try { - if (attr.mode !== undefined) { - fs.chmodSync(path, attr.mode); - // update the common node structure mode as well - node.mode = attr.mode; - } - if (attr.timestamp !== undefined) { - var date = new Date(attr.timestamp); - fs.utimesSync(path, date, date); - } - if (attr.size !== undefined) { - fs.truncateSync(path, attr.size); - } - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },lookup:function (parent, name) { - var path = PATH.join2(NODEFS.realPath(parent), name); - var mode = NODEFS.getMode(path); - return NODEFS.createNode(parent, name, mode); - },mknod:function (parent, name, mode, dev) { - var node = NODEFS.createNode(parent, name, mode, dev); - // create the backing node for this in the fs root as well - var path = NODEFS.realPath(node); - try { - if (FS.isDir(node.mode)) { - fs.mkdirSync(path, node.mode); - } else { - fs.writeFileSync(path, '', { mode: node.mode }); - } - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - return node; - },rename:function (oldNode, newDir, newName) { - var oldPath = NODEFS.realPath(oldNode); - var newPath = PATH.join2(NODEFS.realPath(newDir), newName); - try { - fs.renameSync(oldPath, newPath); - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },unlink:function (parent, name) { - var path = PATH.join2(NODEFS.realPath(parent), name); - try { - fs.unlinkSync(path); - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },rmdir:function (parent, name) { - var path = PATH.join2(NODEFS.realPath(parent), name); - try { - fs.rmdirSync(path); - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },readdir:function (node) { - var path = NODEFS.realPath(node); - try { - return fs.readdirSync(path); - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },symlink:function (parent, newName, oldPath) { - var newPath = PATH.join2(NODEFS.realPath(parent), newName); - try { - fs.symlinkSync(oldPath, newPath); - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },readlink:function (node) { - var path = NODEFS.realPath(node); - try { - path = fs.readlinkSync(path); - path = NODEJS_PATH.relative(NODEJS_PATH.resolve(node.mount.opts.root), path); - return path; - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - }},stream_ops:{open:function (stream) { - var path = NODEFS.realPath(stream.node); - try { - if (FS.isFile(stream.node.mode)) { - stream.nfd = fs.openSync(path, NODEFS.flagsToPermissionString(stream.flags)); - } - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },close:function (stream) { - try { - if (FS.isFile(stream.node.mode) && stream.nfd) { - fs.closeSync(stream.nfd); - } - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },read:function (stream, buffer, offset, length, position) { - if (length === 0) return 0; // node errors on 0 length reads - // FIXME this is terrible. - var nbuffer = new Buffer(length); - var res; - try { - res = fs.readSync(stream.nfd, nbuffer, 0, length, position); - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - if (res > 0) { - for (var i = 0; i < res; i++) { - buffer[offset + i] = nbuffer[i]; - } - } - return res; - },write:function (stream, buffer, offset, length, position) { - // FIXME this is terrible. - var nbuffer = new Buffer(buffer.subarray(offset, offset + length)); - var res; - try { - res = fs.writeSync(stream.nfd, nbuffer, 0, length, position); - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - return res; - },llseek:function (stream, offset, whence) { - var position = offset; - if (whence === 1) { // SEEK_CUR. - position += stream.position; - } else if (whence === 2) { // SEEK_END. - if (FS.isFile(stream.node.mode)) { - try { - var stat = fs.fstatSync(stream.nfd); - position += stat.size; - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - } - } - - if (position < 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - - return position; - }}}; - - var WORKERFS={DIR_MODE:16895,FILE_MODE:33279,reader:null,mount:function (mount) { - assert(ENVIRONMENT_IS_WORKER); - if (!WORKERFS.reader) WORKERFS.reader = new FileReaderSync(); - var root = WORKERFS.createNode(null, '/', WORKERFS.DIR_MODE, 0); - var createdParents = {}; - function ensureParent(path) { - // return the parent node, creating subdirs as necessary - var parts = path.split('/'); - var parent = root; - for (var i = 0; i < parts.length-1; i++) { - var curr = parts.slice(0, i+1).join('/'); - if (!createdParents[curr]) { - createdParents[curr] = WORKERFS.createNode(parent, curr, WORKERFS.DIR_MODE, 0); - } - parent = createdParents[curr]; - } - return parent; - } - function base(path) { - var parts = path.split('/'); - return parts[parts.length-1]; - } - // We also accept FileList here, by using Array.prototype - Array.prototype.forEach.call(mount.opts["files"] || [], function(file) { - WORKERFS.createNode(ensureParent(file.name), base(file.name), WORKERFS.FILE_MODE, 0, file, file.lastModifiedDate); - }); - (mount.opts["blobs"] || []).forEach(function(obj) { - WORKERFS.createNode(ensureParent(obj["name"]), base(obj["name"]), WORKERFS.FILE_MODE, 0, obj["data"]); - }); - (mount.opts["packages"] || []).forEach(function(pack) { - pack['metadata'].files.forEach(function(file) { - var name = file.filename.substr(1); // remove initial slash - WORKERFS.createNode(ensureParent(name), base(name), WORKERFS.FILE_MODE, 0, pack['blob'].slice(file.start, file.end)); - }); - }); - return root; - },createNode:function (parent, name, mode, dev, contents, mtime) { - var node = FS.createNode(parent, name, mode); - node.mode = mode; - node.node_ops = WORKERFS.node_ops; - node.stream_ops = WORKERFS.stream_ops; - node.timestamp = (mtime || new Date).getTime(); - assert(WORKERFS.FILE_MODE !== WORKERFS.DIR_MODE); - if (mode === WORKERFS.FILE_MODE) { - node.size = contents.size; - node.contents = contents; - } else { - node.size = 4096; - node.contents = {}; - } - if (parent) { - parent.contents[name] = node; - } - return node; - },node_ops:{getattr:function (node) { - return { - dev: 1, - ino: undefined, - mode: node.mode, - nlink: 1, - uid: 0, - gid: 0, - rdev: undefined, - size: node.size, - atime: new Date(node.timestamp), - mtime: new Date(node.timestamp), - ctime: new Date(node.timestamp), - blksize: 4096, - blocks: Math.ceil(node.size / 4096), - }; - },setattr:function (node, attr) { - if (attr.mode !== undefined) { - node.mode = attr.mode; - } - if (attr.timestamp !== undefined) { - node.timestamp = attr.timestamp; - } - },lookup:function (parent, name) { - throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - },mknod:function (parent, name, mode, dev) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - },rename:function (oldNode, newDir, newName) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - },unlink:function (parent, name) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - },rmdir:function (parent, name) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - },readdir:function (node) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - },symlink:function (parent, newName, oldPath) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - },readlink:function (node) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - }},stream_ops:{read:function (stream, buffer, offset, length, position) { - if (position >= stream.node.size) return 0; - var chunk = stream.node.contents.slice(position, position + length); - var ab = WORKERFS.reader.readAsArrayBuffer(chunk); - buffer.set(new Uint8Array(ab), offset); - return chunk.size; - },write:function (stream, buffer, offset, length, position) { - throw new FS.ErrnoError(ERRNO_CODES.EIO); - },llseek:function (stream, offset, whence) { - var position = offset; - if (whence === 1) { // SEEK_CUR. - position += stream.position; - } else if (whence === 2) { // SEEK_END. - if (FS.isFile(stream.node.mode)) { - position += stream.node.size; - } - } - if (position < 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - return position; - }}}; - - var _stdin=allocate(1, "i32*", ALLOC_STATIC); - - var _stdout=allocate(1, "i32*", ALLOC_STATIC); - - var _stderr=allocate(1, "i32*", ALLOC_STATIC);var FS={root:null,mounts:[],devices:[null],streams:[],nextInode:1,nameTable:null,currentPath:"/",initialized:false,ignorePermissions:true,trackingDelegate:{},tracking:{openFlags:{READ:1,WRITE:2}},ErrnoError:null,genericErrors:{},filesystems:null,handleFSError:function (e) { - if (!(e instanceof FS.ErrnoError)) throw e + ' : ' + stackTrace(); - return ___setErrNo(e.errno); - },lookupPath:function (path, opts) { - path = PATH.resolve(FS.cwd(), path); - opts = opts || {}; - - if (!path) return { path: '', node: null }; - - var defaults = { - follow_mount: true, - recurse_count: 0 - }; - for (var key in defaults) { - if (opts[key] === undefined) { - opts[key] = defaults[key]; - } - } - - if (opts.recurse_count > 8) { // max recursive lookup of 8 - throw new FS.ErrnoError(ERRNO_CODES.ELOOP); - } - - // split the path - var parts = PATH.normalizeArray(path.split('/').filter(function(p) { - return !!p; - }), false); - - // start at the root - var current = FS.root; - var current_path = '/'; - - for (var i = 0; i < parts.length; i++) { - var islast = (i === parts.length-1); - if (islast && opts.parent) { - // stop resolving - break; - } - - current = FS.lookupNode(current, parts[i]); - current_path = PATH.join2(current_path, parts[i]); - - // jump to the mount's root node if this is a mountpoint - if (FS.isMountpoint(current)) { - if (!islast || (islast && opts.follow_mount)) { - current = current.mounted.root; - } - } - - // by default, lookupPath will not follow a symlink if it is the final path component. - // setting opts.follow = true will override this behavior. - if (!islast || opts.follow) { - var count = 0; - while (FS.isLink(current.mode)) { - var link = FS.readlink(current_path); - current_path = PATH.resolve(PATH.dirname(current_path), link); - - var lookup = FS.lookupPath(current_path, { recurse_count: opts.recurse_count }); - current = lookup.node; - - if (count++ > 40) { // limit max consecutive symlinks to 40 (SYMLOOP_MAX). - throw new FS.ErrnoError(ERRNO_CODES.ELOOP); - } - } - } - } - - return { path: current_path, node: current }; - },getPath:function (node) { - var path; - while (true) { - if (FS.isRoot(node)) { - var mount = node.mount.mountpoint; - if (!path) return mount; - return mount[mount.length-1] !== '/' ? mount + '/' + path : mount + path; - } - path = path ? node.name + '/' + path : node.name; - node = node.parent; - } - },hashName:function (parentid, name) { - var hash = 0; - - - for (var i = 0; i < name.length; i++) { - hash = ((hash << 5) - hash + name.charCodeAt(i)) | 0; - } - return ((parentid + hash) >>> 0) % FS.nameTable.length; - },hashAddNode:function (node) { - var hash = FS.hashName(node.parent.id, node.name); - node.name_next = FS.nameTable[hash]; - FS.nameTable[hash] = node; - },hashRemoveNode:function (node) { - var hash = FS.hashName(node.parent.id, node.name); - if (FS.nameTable[hash] === node) { - FS.nameTable[hash] = node.name_next; - } else { - var current = FS.nameTable[hash]; - while (current) { - if (current.name_next === node) { - current.name_next = node.name_next; - break; - } - current = current.name_next; - } - } - },lookupNode:function (parent, name) { - var err = FS.mayLookup(parent); - if (err) { - throw new FS.ErrnoError(err, parent); - } - var hash = FS.hashName(parent.id, name); - for (var node = FS.nameTable[hash]; node; node = node.name_next) { - var nodeName = node.name; - if (node.parent.id === parent.id && nodeName === name) { - return node; - } - } - // if we failed to find it in the cache, call into the VFS - return FS.lookup(parent, name); - },createNode:function (parent, name, mode, rdev) { - if (!FS.FSNode) { - FS.FSNode = function(parent, name, mode, rdev) { - if (!parent) { - parent = this; // root node sets parent to itself - } - this.parent = parent; - this.mount = parent.mount; - this.mounted = null; - this.id = FS.nextInode++; - this.name = name; - this.mode = mode; - this.node_ops = {}; - this.stream_ops = {}; - this.rdev = rdev; - }; - - FS.FSNode.prototype = {}; - - // compatibility - var readMode = 292 | 73; - var writeMode = 146; - - // NOTE we must use Object.defineProperties instead of individual calls to - // Object.defineProperty in order to make closure compiler happy - Object.defineProperties(FS.FSNode.prototype, { - read: { - get: function() { return (this.mode & readMode) === readMode; }, - set: function(val) { val ? this.mode |= readMode : this.mode &= ~readMode; } - }, - write: { - get: function() { return (this.mode & writeMode) === writeMode; }, - set: function(val) { val ? this.mode |= writeMode : this.mode &= ~writeMode; } - }, - isFolder: { - get: function() { return FS.isDir(this.mode); } - }, - isDevice: { - get: function() { return FS.isChrdev(this.mode); } - } - }); - } - - var node = new FS.FSNode(parent, name, mode, rdev); - - FS.hashAddNode(node); - - return node; - },destroyNode:function (node) { - FS.hashRemoveNode(node); - },isRoot:function (node) { - return node === node.parent; - },isMountpoint:function (node) { - return !!node.mounted; - },isFile:function (mode) { - return (mode & 61440) === 32768; - },isDir:function (mode) { - return (mode & 61440) === 16384; - },isLink:function (mode) { - return (mode & 61440) === 40960; - },isChrdev:function (mode) { - return (mode & 61440) === 8192; - },isBlkdev:function (mode) { - return (mode & 61440) === 24576; - },isFIFO:function (mode) { - return (mode & 61440) === 4096; - },isSocket:function (mode) { - return (mode & 49152) === 49152; - },flagModes:{"r":0,"rs":1052672,"r+":2,"w":577,"wx":705,"xw":705,"w+":578,"wx+":706,"xw+":706,"a":1089,"ax":1217,"xa":1217,"a+":1090,"ax+":1218,"xa+":1218},modeStringToFlags:function (str) { - var flags = FS.flagModes[str]; - if (typeof flags === 'undefined') { - throw new Error('Unknown file open mode: ' + str); - } - return flags; - },flagsToPermissionString:function (flag) { - var perms = ['r', 'w', 'rw'][flag & 3]; - if ((flag & 512)) { - perms += 'w'; - } - return perms; - },nodePermissions:function (node, perms) { - if (FS.ignorePermissions) { - return 0; - } - // return 0 if any user, group or owner bits are set. - if (perms.indexOf('r') !== -1 && !(node.mode & 292)) { - return ERRNO_CODES.EACCES; - } else if (perms.indexOf('w') !== -1 && !(node.mode & 146)) { - return ERRNO_CODES.EACCES; - } else if (perms.indexOf('x') !== -1 && !(node.mode & 73)) { - return ERRNO_CODES.EACCES; - } - return 0; - },mayLookup:function (dir) { - var err = FS.nodePermissions(dir, 'x'); - if (err) return err; - if (!dir.node_ops.lookup) return ERRNO_CODES.EACCES; - return 0; - },mayCreate:function (dir, name) { - try { - var node = FS.lookupNode(dir, name); - return ERRNO_CODES.EEXIST; - } catch (e) { - } - return FS.nodePermissions(dir, 'wx'); - },mayDelete:function (dir, name, isdir) { - var node; - try { - node = FS.lookupNode(dir, name); - } catch (e) { - return e.errno; - } - var err = FS.nodePermissions(dir, 'wx'); - if (err) { - return err; - } - if (isdir) { - if (!FS.isDir(node.mode)) { - return ERRNO_CODES.ENOTDIR; - } - if (FS.isRoot(node) || FS.getPath(node) === FS.cwd()) { - return ERRNO_CODES.EBUSY; - } - } else { - if (FS.isDir(node.mode)) { - return ERRNO_CODES.EISDIR; - } - } - return 0; - },mayOpen:function (node, flags) { - if (!node) { - return ERRNO_CODES.ENOENT; - } - if (FS.isLink(node.mode)) { - return ERRNO_CODES.ELOOP; - } else if (FS.isDir(node.mode)) { - if ((flags & 2097155) !== 0 || // opening for write - (flags & 512)) { - return ERRNO_CODES.EISDIR; - } - } - return FS.nodePermissions(node, FS.flagsToPermissionString(flags)); - },MAX_OPEN_FDS:4096,nextfd:function (fd_start, fd_end) { - fd_start = fd_start || 0; - fd_end = fd_end || FS.MAX_OPEN_FDS; - for (var fd = fd_start; fd <= fd_end; fd++) { - if (!FS.streams[fd]) { - return fd; - } - } - throw new FS.ErrnoError(ERRNO_CODES.EMFILE); - },getStream:function (fd) { - return FS.streams[fd]; - },createStream:function (stream, fd_start, fd_end) { - if (!FS.FSStream) { - FS.FSStream = function(){}; - FS.FSStream.prototype = {}; - // compatibility - Object.defineProperties(FS.FSStream.prototype, { - object: { - get: function() { return this.node; }, - set: function(val) { this.node = val; } - }, - isRead: { - get: function() { return (this.flags & 2097155) !== 1; } - }, - isWrite: { - get: function() { return (this.flags & 2097155) !== 0; } - }, - isAppend: { - get: function() { return (this.flags & 1024); } - } - }); - } - // clone it, so we can return an instance of FSStream - var newStream = new FS.FSStream(); - for (var p in stream) { - newStream[p] = stream[p]; - } - stream = newStream; - var fd = FS.nextfd(fd_start, fd_end); - stream.fd = fd; - FS.streams[fd] = stream; - return stream; - },closeStream:function (fd) { - FS.streams[fd] = null; - },chrdev_stream_ops:{open:function (stream) { - var device = FS.getDevice(stream.node.rdev); - // override node's stream ops with the device's - stream.stream_ops = device.stream_ops; - // forward the open call - if (stream.stream_ops.open) { - stream.stream_ops.open(stream); - } - },llseek:function () { - throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); - }},major:function (dev) { - return ((dev) >> 8); - },minor:function (dev) { - return ((dev) & 0xff); - },makedev:function (ma, mi) { - return ((ma) << 8 | (mi)); - },registerDevice:function (dev, ops) { - FS.devices[dev] = { stream_ops: ops }; - },getDevice:function (dev) { - return FS.devices[dev]; - },getMounts:function (mount) { - var mounts = []; - var check = [mount]; - - while (check.length) { - var m = check.pop(); - - mounts.push(m); - - check.push.apply(check, m.mounts); - } - - return mounts; - },syncfs:function (populate, callback) { - if (typeof(populate) === 'function') { - callback = populate; - populate = false; - } - - var mounts = FS.getMounts(FS.root.mount); - var completed = 0; - - function done(err) { - if (err) { - if (!done.errored) { - done.errored = true; - return callback(err); - } - return; - } - if (++completed >= mounts.length) { - callback(null); - } - }; - - // sync all mounts - mounts.forEach(function (mount) { - if (!mount.type.syncfs) { - return done(null); - } - mount.type.syncfs(mount, populate, done); - }); - },mount:function (type, opts, mountpoint) { - var root = mountpoint === '/'; - var pseudo = !mountpoint; - var node; - - if (root && FS.root) { - throw new FS.ErrnoError(ERRNO_CODES.EBUSY); - } else if (!root && !pseudo) { - var lookup = FS.lookupPath(mountpoint, { follow_mount: false }); - - mountpoint = lookup.path; // use the absolute path - node = lookup.node; - - if (FS.isMountpoint(node)) { - throw new FS.ErrnoError(ERRNO_CODES.EBUSY); - } - - if (!FS.isDir(node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR); - } - } - - var mount = { - type: type, - opts: opts, - mountpoint: mountpoint, - mounts: [] - }; - - // create a root node for the fs - var mountRoot = type.mount(mount); - mountRoot.mount = mount; - mount.root = mountRoot; - - if (root) { - FS.root = mountRoot; - } else if (node) { - // set as a mountpoint - node.mounted = mount; - - // add the new mount to the current mount's children - if (node.mount) { - node.mount.mounts.push(mount); - } - } - - return mountRoot; - },unmount:function (mountpoint) { - var lookup = FS.lookupPath(mountpoint, { follow_mount: false }); - - if (!FS.isMountpoint(lookup.node)) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - - // destroy the nodes for this mount, and all its child mounts - var node = lookup.node; - var mount = node.mounted; - var mounts = FS.getMounts(mount); - - Object.keys(FS.nameTable).forEach(function (hash) { - var current = FS.nameTable[hash]; - - while (current) { - var next = current.name_next; - - if (mounts.indexOf(current.mount) !== -1) { - FS.destroyNode(current); - } - - current = next; - } - }); - - // no longer a mountpoint - node.mounted = null; - - // remove this mount from the child mounts - var idx = node.mount.mounts.indexOf(mount); - assert(idx !== -1); - node.mount.mounts.splice(idx, 1); - },lookup:function (parent, name) { - return parent.node_ops.lookup(parent, name); - },mknod:function (path, mode, dev) { - var lookup = FS.lookupPath(path, { parent: true }); - var parent = lookup.node; - var name = PATH.basename(path); - if (!name || name === '.' || name === '..') { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - var err = FS.mayCreate(parent, name); - if (err) { - throw new FS.ErrnoError(err); - } - if (!parent.node_ops.mknod) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - return parent.node_ops.mknod(parent, name, mode, dev); - },create:function (path, mode) { - mode = mode !== undefined ? mode : 438 /* 0666 */; - mode &= 4095; - mode |= 32768; - return FS.mknod(path, mode, 0); - },mkdir:function (path, mode) { - mode = mode !== undefined ? mode : 511 /* 0777 */; - mode &= 511 | 512; - mode |= 16384; - return FS.mknod(path, mode, 0); - },mkdev:function (path, mode, dev) { - if (typeof(dev) === 'undefined') { - dev = mode; - mode = 438 /* 0666 */; - } - mode |= 8192; - return FS.mknod(path, mode, dev); - },symlink:function (oldpath, newpath) { - if (!PATH.resolve(oldpath)) { - throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - } - var lookup = FS.lookupPath(newpath, { parent: true }); - var parent = lookup.node; - if (!parent) { - throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - } - var newname = PATH.basename(newpath); - var err = FS.mayCreate(parent, newname); - if (err) { - throw new FS.ErrnoError(err); - } - if (!parent.node_ops.symlink) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - return parent.node_ops.symlink(parent, newname, oldpath); - },rename:function (old_path, new_path) { - var old_dirname = PATH.dirname(old_path); - var new_dirname = PATH.dirname(new_path); - var old_name = PATH.basename(old_path); - var new_name = PATH.basename(new_path); - // parents must exist - var lookup, old_dir, new_dir; - try { - lookup = FS.lookupPath(old_path, { parent: true }); - old_dir = lookup.node; - lookup = FS.lookupPath(new_path, { parent: true }); - new_dir = lookup.node; - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES.EBUSY); - } - if (!old_dir || !new_dir) throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - // need to be part of the same mount - if (old_dir.mount !== new_dir.mount) { - throw new FS.ErrnoError(ERRNO_CODES.EXDEV); - } - // source must exist - var old_node = FS.lookupNode(old_dir, old_name); - // old path should not be an ancestor of the new path - var relative = PATH.relative(old_path, new_dirname); - if (relative.charAt(0) !== '.') { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - // new path should not be an ancestor of the old path - relative = PATH.relative(new_path, old_dirname); - if (relative.charAt(0) !== '.') { - throw new FS.ErrnoError(ERRNO_CODES.ENOTEMPTY); - } - // see if the new path already exists - var new_node; - try { - new_node = FS.lookupNode(new_dir, new_name); - } catch (e) { - // not fatal - } - // early out if nothing needs to change - if (old_node === new_node) { - return; - } - // we'll need to delete the old entry - var isdir = FS.isDir(old_node.mode); - var err = FS.mayDelete(old_dir, old_name, isdir); - if (err) { - throw new FS.ErrnoError(err); - } - // need delete permissions if we'll be overwriting. - // need create permissions if new doesn't already exist. - err = new_node ? - FS.mayDelete(new_dir, new_name, isdir) : - FS.mayCreate(new_dir, new_name); - if (err) { - throw new FS.ErrnoError(err); - } - if (!old_dir.node_ops.rename) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - if (FS.isMountpoint(old_node) || (new_node && FS.isMountpoint(new_node))) { - throw new FS.ErrnoError(ERRNO_CODES.EBUSY); - } - // if we are going to change the parent, check write permissions - if (new_dir !== old_dir) { - err = FS.nodePermissions(old_dir, 'w'); - if (err) { - throw new FS.ErrnoError(err); - } - } - try { - if (FS.trackingDelegate['willMovePath']) { - FS.trackingDelegate['willMovePath'](old_path, new_path); - } - } catch(e) { - console.log("FS.trackingDelegate['willMovePath']('"+old_path+"', '"+new_path+"') threw an exception: " + e.message); - } - // remove the node from the lookup hash - FS.hashRemoveNode(old_node); - // do the underlying fs rename - try { - old_dir.node_ops.rename(old_node, new_dir, new_name); - } catch (e) { - throw e; - } finally { - // add the node back to the hash (in case node_ops.rename - // changed its name) - FS.hashAddNode(old_node); - } - try { - if (FS.trackingDelegate['onMovePath']) FS.trackingDelegate['onMovePath'](old_path, new_path); - } catch(e) { - console.log("FS.trackingDelegate['onMovePath']('"+old_path+"', '"+new_path+"') threw an exception: " + e.message); - } - },rmdir:function (path) { - var lookup = FS.lookupPath(path, { parent: true }); - var parent = lookup.node; - var name = PATH.basename(path); - var node = FS.lookupNode(parent, name); - var err = FS.mayDelete(parent, name, true); - if (err) { - throw new FS.ErrnoError(err); - } - if (!parent.node_ops.rmdir) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - if (FS.isMountpoint(node)) { - throw new FS.ErrnoError(ERRNO_CODES.EBUSY); - } - try { - if (FS.trackingDelegate['willDeletePath']) { - FS.trackingDelegate['willDeletePath'](path); - } - } catch(e) { - console.log("FS.trackingDelegate['willDeletePath']('"+path+"') threw an exception: " + e.message); - } - parent.node_ops.rmdir(parent, name); - FS.destroyNode(node); - try { - if (FS.trackingDelegate['onDeletePath']) FS.trackingDelegate['onDeletePath'](path); - } catch(e) { - console.log("FS.trackingDelegate['onDeletePath']('"+path+"') threw an exception: " + e.message); - } - },readdir:function (path) { - var lookup = FS.lookupPath(path, { follow: true }); - var node = lookup.node; - if (!node.node_ops.readdir) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR); - } - return node.node_ops.readdir(node); - },unlink:function (path) { - var lookup = FS.lookupPath(path, { parent: true }); - var parent = lookup.node; - var name = PATH.basename(path); - var node = FS.lookupNode(parent, name); - var err = FS.mayDelete(parent, name, false); - if (err) { - // POSIX says unlink should set EPERM, not EISDIR - if (err === ERRNO_CODES.EISDIR) err = ERRNO_CODES.EPERM; - throw new FS.ErrnoError(err); - } - if (!parent.node_ops.unlink) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - if (FS.isMountpoint(node)) { - throw new FS.ErrnoError(ERRNO_CODES.EBUSY); - } - try { - if (FS.trackingDelegate['willDeletePath']) { - FS.trackingDelegate['willDeletePath'](path); - } - } catch(e) { - console.log("FS.trackingDelegate['willDeletePath']('"+path+"') threw an exception: " + e.message); - } - parent.node_ops.unlink(parent, name); - FS.destroyNode(node); - try { - if (FS.trackingDelegate['onDeletePath']) FS.trackingDelegate['onDeletePath'](path); - } catch(e) { - console.log("FS.trackingDelegate['onDeletePath']('"+path+"') threw an exception: " + e.message); - } - },readlink:function (path) { - var lookup = FS.lookupPath(path); - var link = lookup.node; - if (!link) { - throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - } - if (!link.node_ops.readlink) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - return PATH.resolve(FS.getPath(link.parent), link.node_ops.readlink(link)); - },stat:function (path, dontFollow) { - var lookup = FS.lookupPath(path, { follow: !dontFollow }); - var node = lookup.node; - if (!node) { - throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - } - if (!node.node_ops.getattr) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - return node.node_ops.getattr(node); - },lstat:function (path) { - return FS.stat(path, true); - },chmod:function (path, mode, dontFollow) { - var node; - if (typeof path === 'string') { - var lookup = FS.lookupPath(path, { follow: !dontFollow }); - node = lookup.node; - } else { - node = path; - } - if (!node.node_ops.setattr) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - node.node_ops.setattr(node, { - mode: (mode & 4095) | (node.mode & ~4095), - timestamp: Date.now() - }); - },lchmod:function (path, mode) { - FS.chmod(path, mode, true); - },fchmod:function (fd, mode) { - var stream = FS.getStream(fd); - if (!stream) { - throw new FS.ErrnoError(ERRNO_CODES.EBADF); - } - FS.chmod(stream.node, mode); - },chown:function (path, uid, gid, dontFollow) { - var node; - if (typeof path === 'string') { - var lookup = FS.lookupPath(path, { follow: !dontFollow }); - node = lookup.node; - } else { - node = path; - } - if (!node.node_ops.setattr) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - node.node_ops.setattr(node, { - timestamp: Date.now() - // we ignore the uid / gid for now - }); - },lchown:function (path, uid, gid) { - FS.chown(path, uid, gid, true); - },fchown:function (fd, uid, gid) { - var stream = FS.getStream(fd); - if (!stream) { - throw new FS.ErrnoError(ERRNO_CODES.EBADF); - } - FS.chown(stream.node, uid, gid); - },truncate:function (path, len) { - if (len < 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - var node; - if (typeof path === 'string') { - var lookup = FS.lookupPath(path, { follow: true }); - node = lookup.node; - } else { - node = path; - } - if (!node.node_ops.setattr) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - if (FS.isDir(node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.EISDIR); - } - if (!FS.isFile(node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - var err = FS.nodePermissions(node, 'w'); - if (err) { - throw new FS.ErrnoError(err); - } - node.node_ops.setattr(node, { - size: len, - timestamp: Date.now() - }); - },ftruncate:function (fd, len) { - var stream = FS.getStream(fd); - if (!stream) { - throw new FS.ErrnoError(ERRNO_CODES.EBADF); - } - if ((stream.flags & 2097155) === 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - FS.truncate(stream.node, len); - },utime:function (path, atime, mtime) { - var lookup = FS.lookupPath(path, { follow: true }); - var node = lookup.node; - node.node_ops.setattr(node, { - timestamp: Math.max(atime, mtime) - }); - },open:function (path, flags, mode, fd_start, fd_end) { - if (path === "") { - throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - } - flags = typeof flags === 'string' ? FS.modeStringToFlags(flags) : flags; - mode = typeof mode === 'undefined' ? 438 /* 0666 */ : mode; - if ((flags & 64)) { - mode = (mode & 4095) | 32768; - } else { - mode = 0; - } - var node; - if (typeof path === 'object') { - node = path; - } else { - path = PATH.normalize(path); - try { - var lookup = FS.lookupPath(path, { - follow: !(flags & 131072) - }); - node = lookup.node; - } catch (e) { - // ignore - } - } - // perhaps we need to create the node - var created = false; - if ((flags & 64)) { - if (node) { - // if O_CREAT and O_EXCL are set, error out if the node already exists - if ((flags & 128)) { - throw new FS.ErrnoError(ERRNO_CODES.EEXIST); - } - } else { - // node doesn't exist, try to create it - node = FS.mknod(path, mode, 0); - created = true; - } - } - if (!node) { - throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - } - // can't truncate a device - if (FS.isChrdev(node.mode)) { - flags &= ~512; - } - // if asked only for a directory, then this must be one - if ((flags & 65536) && !FS.isDir(node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR); - } - // check permissions, if this is not a file we just created now (it is ok to - // create and write to a file with read-only permissions; it is read-only - // for later use) - if (!created) { - var err = FS.mayOpen(node, flags); - if (err) { - throw new FS.ErrnoError(err); - } - } - // do truncation if necessary - if ((flags & 512)) { - FS.truncate(node, 0); - } - // we've already handled these, don't pass down to the underlying vfs - flags &= ~(128 | 512); - - // register the stream with the filesystem - var stream = FS.createStream({ - node: node, - path: FS.getPath(node), // we want the absolute path to the node - flags: flags, - seekable: true, - position: 0, - stream_ops: node.stream_ops, - // used by the file family libc calls (fopen, fwrite, ferror, etc.) - ungotten: [], - error: false - }, fd_start, fd_end); - // call the new stream's open function - if (stream.stream_ops.open) { - stream.stream_ops.open(stream); - } - if (Module['logReadFiles'] && !(flags & 1)) { - if (!FS.readFiles) FS.readFiles = {}; - if (!(path in FS.readFiles)) { - FS.readFiles[path] = 1; - Module['printErr']('read file: ' + path); - } - } - try { - if (FS.trackingDelegate['onOpenFile']) { - var trackingFlags = 0; - if ((flags & 2097155) !== 1) { - trackingFlags |= FS.tracking.openFlags.READ; - } - if ((flags & 2097155) !== 0) { - trackingFlags |= FS.tracking.openFlags.WRITE; - } - FS.trackingDelegate['onOpenFile'](path, trackingFlags); - } - } catch(e) { - console.log("FS.trackingDelegate['onOpenFile']('"+path+"', flags) threw an exception: " + e.message); - } - return stream; - },close:function (stream) { - if (stream.getdents) stream.getdents = null; // free readdir state - try { - if (stream.stream_ops.close) { - stream.stream_ops.close(stream); - } - } catch (e) { - throw e; - } finally { - FS.closeStream(stream.fd); - } - },llseek:function (stream, offset, whence) { - if (!stream.seekable || !stream.stream_ops.llseek) { - throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); - } - stream.position = stream.stream_ops.llseek(stream, offset, whence); - stream.ungotten = []; - return stream.position; - },read:function (stream, buffer, offset, length, position) { - if (length < 0 || position < 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - if ((stream.flags & 2097155) === 1) { - throw new FS.ErrnoError(ERRNO_CODES.EBADF); - } - if (FS.isDir(stream.node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.EISDIR); - } - if (!stream.stream_ops.read) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - var seeking = true; - if (typeof position === 'undefined') { - position = stream.position; - seeking = false; - } else if (!stream.seekable) { - throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); - } - var bytesRead = stream.stream_ops.read(stream, buffer, offset, length, position); - if (!seeking) stream.position += bytesRead; - return bytesRead; - },write:function (stream, buffer, offset, length, position, canOwn) { - if (length < 0 || position < 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - if ((stream.flags & 2097155) === 0) { - throw new FS.ErrnoError(ERRNO_CODES.EBADF); - } - if (FS.isDir(stream.node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.EISDIR); - } - if (!stream.stream_ops.write) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - if (stream.flags & 1024) { - // seek to the end before writing in append mode - FS.llseek(stream, 0, 2); - } - var seeking = true; - if (typeof position === 'undefined') { - position = stream.position; - seeking = false; - } else if (!stream.seekable) { - throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); - } - var bytesWritten = stream.stream_ops.write(stream, buffer, offset, length, position, canOwn); - if (!seeking) stream.position += bytesWritten; - try { - if (stream.path && FS.trackingDelegate['onWriteToFile']) FS.trackingDelegate['onWriteToFile'](stream.path); - } catch(e) { - console.log("FS.trackingDelegate['onWriteToFile']('"+path+"') threw an exception: " + e.message); - } - return bytesWritten; - },allocate:function (stream, offset, length) { - if (offset < 0 || length <= 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - if ((stream.flags & 2097155) === 0) { - throw new FS.ErrnoError(ERRNO_CODES.EBADF); - } - if (!FS.isFile(stream.node.mode) && !FS.isDir(node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.ENODEV); - } - if (!stream.stream_ops.allocate) { - throw new FS.ErrnoError(ERRNO_CODES.EOPNOTSUPP); - } - stream.stream_ops.allocate(stream, offset, length); - },mmap:function (stream, buffer, offset, length, position, prot, flags) { - // TODO if PROT is PROT_WRITE, make sure we have write access - if ((stream.flags & 2097155) === 1) { - throw new FS.ErrnoError(ERRNO_CODES.EACCES); - } - if (!stream.stream_ops.mmap) { - throw new FS.ErrnoError(ERRNO_CODES.ENODEV); - } - return stream.stream_ops.mmap(stream, buffer, offset, length, position, prot, flags); - },msync:function (stream, buffer, offset, length, mmapFlags) { - if (!stream || !stream.stream_ops.msync) { - return 0; - } - return stream.stream_ops.msync(stream, buffer, offset, length, mmapFlags); - },munmap:function (stream) { - return 0; - },ioctl:function (stream, cmd, arg) { - if (!stream.stream_ops.ioctl) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTTY); - } - return stream.stream_ops.ioctl(stream, cmd, arg); - },readFile:function (path, opts) { - opts = opts || {}; - opts.flags = opts.flags || 'r'; - opts.encoding = opts.encoding || 'binary'; - if (opts.encoding !== 'utf8' && opts.encoding !== 'binary') { - throw new Error('Invalid encoding type "' + opts.encoding + '"'); - } - var ret; - var stream = FS.open(path, opts.flags); - var stat = FS.stat(path); - var length = stat.size; - var buf = new Uint8Array(length); - FS.read(stream, buf, 0, length, 0); - if (opts.encoding === 'utf8') { - ret = UTF8ArrayToString(buf, 0); - } else if (opts.encoding === 'binary') { - ret = buf; - } - FS.close(stream); - return ret; - },writeFile:function (path, data, opts) { - opts = opts || {}; - opts.flags = opts.flags || 'w'; - opts.encoding = opts.encoding || 'utf8'; - if (opts.encoding !== 'utf8' && opts.encoding !== 'binary') { - throw new Error('Invalid encoding type "' + opts.encoding + '"'); - } - var stream = FS.open(path, opts.flags, opts.mode); - if (opts.encoding === 'utf8') { - var buf = new Uint8Array(lengthBytesUTF8(data)+1); - var actualNumBytes = stringToUTF8Array(data, buf, 0, buf.length); - FS.write(stream, buf, 0, actualNumBytes, 0, opts.canOwn); - } else if (opts.encoding === 'binary') { - FS.write(stream, data, 0, data.length, 0, opts.canOwn); - } - FS.close(stream); - },cwd:function () { - return FS.currentPath; - },chdir:function (path) { - var lookup = FS.lookupPath(path, { follow: true }); - if (!FS.isDir(lookup.node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR); - } - var err = FS.nodePermissions(lookup.node, 'x'); - if (err) { - throw new FS.ErrnoError(err); - } - FS.currentPath = lookup.path; - },createDefaultDirectories:function () { - FS.mkdir('/tmp'); - FS.mkdir('/home'); - FS.mkdir('/home/web_user'); - },createDefaultDevices:function () { - // create /dev - FS.mkdir('/dev'); - // setup /dev/null - FS.registerDevice(FS.makedev(1, 3), { - read: function() { return 0; }, - write: function(stream, buffer, offset, length, pos) { return length; } - }); - FS.mkdev('/dev/null', FS.makedev(1, 3)); - // setup /dev/tty and /dev/tty1 - // stderr needs to print output using Module['printErr'] - // so we register a second tty just for it. - TTY.register(FS.makedev(5, 0), TTY.default_tty_ops); - TTY.register(FS.makedev(6, 0), TTY.default_tty1_ops); - FS.mkdev('/dev/tty', FS.makedev(5, 0)); - FS.mkdev('/dev/tty1', FS.makedev(6, 0)); - // setup /dev/[u]random - var random_device; - if (typeof crypto !== 'undefined') { - // for modern web browsers - var randomBuffer = new Uint8Array(1); - random_device = function() { crypto.getRandomValues(randomBuffer); return randomBuffer[0]; }; - } else if (ENVIRONMENT_IS_NODE) { - // for nodejs - random_device = function() { return require('crypto').randomBytes(1)[0]; }; - } else { - // default for ES5 platforms - random_device = function() { return (Math.random()*256)|0; }; - } - FS.createDevice('/dev', 'random', random_device); - FS.createDevice('/dev', 'urandom', random_device); - // we're not going to emulate the actual shm device, - // just create the tmp dirs that reside in it commonly - FS.mkdir('/dev/shm'); - FS.mkdir('/dev/shm/tmp'); - },createSpecialDirectories:function () { - // create /proc/self/fd which allows /proc/self/fd/6 => readlink gives the name of the stream for fd 6 (see test_unistd_ttyname) - FS.mkdir('/proc'); - FS.mkdir('/proc/self'); - FS.mkdir('/proc/self/fd'); - FS.mount({ - mount: function() { - var node = FS.createNode('/proc/self', 'fd', 16384 | 0777, 73); - node.node_ops = { - lookup: function(parent, name) { - var fd = +name; - var stream = FS.getStream(fd); - if (!stream) throw new FS.ErrnoError(ERRNO_CODES.EBADF); - var ret = { - parent: null, - mount: { mountpoint: 'fake' }, - node_ops: { readlink: function() { return stream.path } } - }; - ret.parent = ret; // make it look like a simple root node - return ret; - } - }; - return node; - } - }, {}, '/proc/self/fd'); - },createStandardStreams:function () { - // TODO deprecate the old functionality of a single - // input / output callback and that utilizes FS.createDevice - // and instead require a unique set of stream ops - - // by default, we symlink the standard streams to the - // default tty devices. however, if the standard streams - // have been overwritten we create a unique device for - // them instead. - if (Module['stdin']) { - FS.createDevice('/dev', 'stdin', Module['stdin']); - } else { - FS.symlink('/dev/tty', '/dev/stdin'); - } - if (Module['stdout']) { - FS.createDevice('/dev', 'stdout', null, Module['stdout']); - } else { - FS.symlink('/dev/tty', '/dev/stdout'); - } - if (Module['stderr']) { - FS.createDevice('/dev', 'stderr', null, Module['stderr']); - } else { - FS.symlink('/dev/tty1', '/dev/stderr'); - } - - // open default streams for the stdin, stdout and stderr devices - var stdin = FS.open('/dev/stdin', 'r'); - assert(stdin.fd === 0, 'invalid handle for stdin (' + stdin.fd + ')'); - - var stdout = FS.open('/dev/stdout', 'w'); - assert(stdout.fd === 1, 'invalid handle for stdout (' + stdout.fd + ')'); - - var stderr = FS.open('/dev/stderr', 'w'); - assert(stderr.fd === 2, 'invalid handle for stderr (' + stderr.fd + ')'); - },ensureErrnoError:function () { - if (FS.ErrnoError) return; - FS.ErrnoError = function ErrnoError(errno, node) { - //Module.printErr(stackTrace()); // useful for debugging - this.node = node; - this.setErrno = function(errno) { - this.errno = errno; - for (var key in ERRNO_CODES) { - if (ERRNO_CODES[key] === errno) { - this.code = key; - break; - } - } - }; - this.setErrno(errno); - this.message = ERRNO_MESSAGES[errno]; - }; - FS.ErrnoError.prototype = new Error(); - FS.ErrnoError.prototype.constructor = FS.ErrnoError; - // Some errors may happen quite a bit, to avoid overhead we reuse them (and suffer a lack of stack info) - [ERRNO_CODES.ENOENT].forEach(function(code) { - FS.genericErrors[code] = new FS.ErrnoError(code); - FS.genericErrors[code].stack = ''; - }); - },staticInit:function () { - FS.ensureErrnoError(); - - FS.nameTable = new Array(4096); - - FS.mount(MEMFS, {}, '/'); - - FS.createDefaultDirectories(); - FS.createDefaultDevices(); - FS.createSpecialDirectories(); - - FS.filesystems = { - 'MEMFS': MEMFS, - 'IDBFS': IDBFS, - 'NODEFS': NODEFS, - 'WORKERFS': WORKERFS, - }; - },init:function (input, output, error) { - assert(!FS.init.initialized, 'FS.init was previously called. If you want to initialize later with custom parameters, remove any earlier calls (note that one is automatically added to the generated code)'); - FS.init.initialized = true; - - FS.ensureErrnoError(); - - // Allow Module.stdin etc. to provide defaults, if none explicitly passed to us here - Module['stdin'] = input || Module['stdin']; - Module['stdout'] = output || Module['stdout']; - Module['stderr'] = error || Module['stderr']; - - FS.createStandardStreams(); - },quit:function () { - FS.init.initialized = false; - // force-flush all streams, so we get musl std streams printed out - var fflush = Module['_fflush']; - if (fflush) fflush(0); - // close all of our streams - for (var i = 0; i < FS.streams.length; i++) { - var stream = FS.streams[i]; - if (!stream) { - continue; - } - FS.close(stream); - } - },getMode:function (canRead, canWrite) { - var mode = 0; - if (canRead) mode |= 292 | 73; - if (canWrite) mode |= 146; - return mode; - },joinPath:function (parts, forceRelative) { - var path = PATH.join.apply(null, parts); - if (forceRelative && path[0] == '/') path = path.substr(1); - return path; - },absolutePath:function (relative, base) { - return PATH.resolve(base, relative); - },standardizePath:function (path) { - return PATH.normalize(path); - },findObject:function (path, dontResolveLastLink) { - var ret = FS.analyzePath(path, dontResolveLastLink); - if (ret.exists) { - return ret.object; - } else { - ___setErrNo(ret.error); - return null; - } - },analyzePath:function (path, dontResolveLastLink) { - // operate from within the context of the symlink's target - try { - var lookup = FS.lookupPath(path, { follow: !dontResolveLastLink }); - path = lookup.path; - } catch (e) { - } - var ret = { - isRoot: false, exists: false, error: 0, name: null, path: null, object: null, - parentExists: false, parentPath: null, parentObject: null - }; - try { - var lookup = FS.lookupPath(path, { parent: true }); - ret.parentExists = true; - ret.parentPath = lookup.path; - ret.parentObject = lookup.node; - ret.name = PATH.basename(path); - lookup = FS.lookupPath(path, { follow: !dontResolveLastLink }); - ret.exists = true; - ret.path = lookup.path; - ret.object = lookup.node; - ret.name = lookup.node.name; - ret.isRoot = lookup.path === '/'; - } catch (e) { - ret.error = e.errno; - }; - return ret; - },createFolder:function (parent, name, canRead, canWrite) { - var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); - var mode = FS.getMode(canRead, canWrite); - return FS.mkdir(path, mode); - },createPath:function (parent, path, canRead, canWrite) { - parent = typeof parent === 'string' ? parent : FS.getPath(parent); - var parts = path.split('/').reverse(); - while (parts.length) { - var part = parts.pop(); - if (!part) continue; - var current = PATH.join2(parent, part); - try { - FS.mkdir(current); - } catch (e) { - // ignore EEXIST - } - parent = current; - } - return current; - },createFile:function (parent, name, properties, canRead, canWrite) { - var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); - var mode = FS.getMode(canRead, canWrite); - return FS.create(path, mode); - },createDataFile:function (parent, name, data, canRead, canWrite, canOwn) { - var path = name ? PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name) : parent; - var mode = FS.getMode(canRead, canWrite); - var node = FS.create(path, mode); - if (data) { - if (typeof data === 'string') { - var arr = new Array(data.length); - for (var i = 0, len = data.length; i < len; ++i) arr[i] = data.charCodeAt(i); - data = arr; - } - // make sure we can write to the file - FS.chmod(node, mode | 146); - var stream = FS.open(node, 'w'); - FS.write(stream, data, 0, data.length, 0, canOwn); - FS.close(stream); - FS.chmod(node, mode); - } - return node; - },createDevice:function (parent, name, input, output) { - var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); - var mode = FS.getMode(!!input, !!output); - if (!FS.createDevice.major) FS.createDevice.major = 64; - var dev = FS.makedev(FS.createDevice.major++, 0); - // Create a fake device that a set of stream ops to emulate - // the old behavior. - FS.registerDevice(dev, { - open: function(stream) { - stream.seekable = false; - }, - close: function(stream) { - // flush any pending line data - if (output && output.buffer && output.buffer.length) { - output(10); - } - }, - read: function(stream, buffer, offset, length, pos /* ignored */) { - var bytesRead = 0; - for (var i = 0; i < length; i++) { - var result; - try { - result = input(); - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES.EIO); - } - if (result === undefined && bytesRead === 0) { - throw new FS.ErrnoError(ERRNO_CODES.EAGAIN); - } - if (result === null || result === undefined) break; - bytesRead++; - buffer[offset+i] = result; - } - if (bytesRead) { - stream.node.timestamp = Date.now(); - } - return bytesRead; - }, - write: function(stream, buffer, offset, length, pos) { - for (var i = 0; i < length; i++) { - try { - output(buffer[offset+i]); - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES.EIO); - } - } - if (length) { - stream.node.timestamp = Date.now(); - } - return i; - } - }); - return FS.mkdev(path, mode, dev); - },createLink:function (parent, name, target, canRead, canWrite) { - var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); - return FS.symlink(target, path); - },forceLoadFile:function (obj) { - if (obj.isDevice || obj.isFolder || obj.link || obj.contents) return true; - var success = true; - if (typeof XMLHttpRequest !== 'undefined') { - throw new Error("Lazy loading should have been performed (contents set) in createLazyFile, but it was not. Lazy loading only works in web workers. Use --embed-file or --preload-file in emcc on the main thread."); - } else if (Module['read']) { - // Command-line. - try { - // WARNING: Can't read binary files in V8's d8 or tracemonkey's js, as - // read() will try to parse UTF8. - obj.contents = intArrayFromString(Module['read'](obj.url), true); - obj.usedBytes = obj.contents.length; - } catch (e) { - success = false; - } - } else { - throw new Error('Cannot load without read() or XMLHttpRequest.'); - } - if (!success) ___setErrNo(ERRNO_CODES.EIO); - return success; - },createLazyFile:function (parent, name, url, canRead, canWrite) { - // Lazy chunked Uint8Array (implements get and length from Uint8Array). Actual getting is abstracted away for eventual reuse. - function LazyUint8Array() { - this.lengthKnown = false; - this.chunks = []; // Loaded chunks. Index is the chunk number - } - LazyUint8Array.prototype.get = function LazyUint8Array_get(idx) { - if (idx > this.length-1 || idx < 0) { - return undefined; - } - var chunkOffset = idx % this.chunkSize; - var chunkNum = (idx / this.chunkSize)|0; - return this.getter(chunkNum)[chunkOffset]; - } - LazyUint8Array.prototype.setDataGetter = function LazyUint8Array_setDataGetter(getter) { - this.getter = getter; - } - LazyUint8Array.prototype.cacheLength = function LazyUint8Array_cacheLength() { - // Find length - var xhr = new XMLHttpRequest(); - xhr.open('HEAD', url, false); - xhr.send(null); - if (!(xhr.status >= 200 && xhr.status < 300 || xhr.status === 304)) throw new Error("Couldn't load " + url + ". Status: " + xhr.status); - var datalength = Number(xhr.getResponseHeader("Content-length")); - var header; - var hasByteServing = (header = xhr.getResponseHeader("Accept-Ranges")) && header === "bytes"; - var chunkSize = 1024*1024; // Chunk size in bytes - - if (!hasByteServing) chunkSize = datalength; - - // Function to get a range from the remote URL. - var doXHR = (function(from, to) { - if (from > to) throw new Error("invalid range (" + from + ", " + to + ") or no bytes requested!"); - if (to > datalength-1) throw new Error("only " + datalength + " bytes available! programmer error!"); - - // TODO: Use mozResponseArrayBuffer, responseStream, etc. if available. - var xhr = new XMLHttpRequest(); - xhr.open('GET', url, false); - if (datalength !== chunkSize) xhr.setRequestHeader("Range", "bytes=" + from + "-" + to); - - // Some hints to the browser that we want binary data. - if (typeof Uint8Array != 'undefined') xhr.responseType = 'arraybuffer'; - if (xhr.overrideMimeType) { - xhr.overrideMimeType('text/plain; charset=x-user-defined'); - } - - xhr.send(null); - if (!(xhr.status >= 200 && xhr.status < 300 || xhr.status === 304)) throw new Error("Couldn't load " + url + ". Status: " + xhr.status); - if (xhr.response !== undefined) { - return new Uint8Array(xhr.response || []); - } else { - return intArrayFromString(xhr.responseText || '', true); - } - }); - var lazyArray = this; - lazyArray.setDataGetter(function(chunkNum) { - var start = chunkNum * chunkSize; - var end = (chunkNum+1) * chunkSize - 1; // including this byte - end = Math.min(end, datalength-1); // if datalength-1 is selected, this is the last block - if (typeof(lazyArray.chunks[chunkNum]) === "undefined") { - lazyArray.chunks[chunkNum] = doXHR(start, end); - } - if (typeof(lazyArray.chunks[chunkNum]) === "undefined") throw new Error("doXHR failed!"); - return lazyArray.chunks[chunkNum]; - }); - - this._length = datalength; - this._chunkSize = chunkSize; - this.lengthKnown = true; - } - if (typeof XMLHttpRequest !== 'undefined') { - if (!ENVIRONMENT_IS_WORKER) throw 'Cannot do synchronous binary XHRs outside webworkers in modern browsers. Use --embed-file or --preload-file in emcc'; - var lazyArray = new LazyUint8Array(); - Object.defineProperty(lazyArray, "length", { - get: function() { - if(!this.lengthKnown) { - this.cacheLength(); - } - return this._length; - } - }); - Object.defineProperty(lazyArray, "chunkSize", { - get: function() { - if(!this.lengthKnown) { - this.cacheLength(); - } - return this._chunkSize; - } - }); - - var properties = { isDevice: false, contents: lazyArray }; - } else { - var properties = { isDevice: false, url: url }; - } - - var node = FS.createFile(parent, name, properties, canRead, canWrite); - // This is a total hack, but I want to get this lazy file code out of the - // core of MEMFS. If we want to keep this lazy file concept I feel it should - // be its own thin LAZYFS proxying calls to MEMFS. - if (properties.contents) { - node.contents = properties.contents; - } else if (properties.url) { - node.contents = null; - node.url = properties.url; - } - // Add a function that defers querying the file size until it is asked the first time. - Object.defineProperty(node, "usedBytes", { - get: function() { return this.contents.length; } - }); - // override each stream op with one that tries to force load the lazy file first - var stream_ops = {}; - var keys = Object.keys(node.stream_ops); - keys.forEach(function(key) { - var fn = node.stream_ops[key]; - stream_ops[key] = function forceLoadLazyFile() { - if (!FS.forceLoadFile(node)) { - throw new FS.ErrnoError(ERRNO_CODES.EIO); - } - return fn.apply(null, arguments); - }; - }); - // use a custom read function - stream_ops.read = function stream_ops_read(stream, buffer, offset, length, position) { - if (!FS.forceLoadFile(node)) { - throw new FS.ErrnoError(ERRNO_CODES.EIO); - } - var contents = stream.node.contents; - if (position >= contents.length) - return 0; - var size = Math.min(contents.length - position, length); - assert(size >= 0); - if (contents.slice) { // normal array - for (var i = 0; i < size; i++) { - buffer[offset + i] = contents[position + i]; - } - } else { - for (var i = 0; i < size; i++) { // LazyUint8Array from sync binary XHR - buffer[offset + i] = contents.get(position + i); - } - } - return size; - }; - node.stream_ops = stream_ops; - return node; - },createPreloadedFile:function (parent, name, url, canRead, canWrite, onload, onerror, dontCreateFile, canOwn, preFinish) { - Browser.init(); - // TODO we should allow people to just pass in a complete filename instead - // of parent and name being that we just join them anyways - var fullname = name ? PATH.resolve(PATH.join2(parent, name)) : parent; - var dep = getUniqueRunDependency('cp ' + fullname); // might have several active requests for the same fullname - function processData(byteArray) { - function finish(byteArray) { - if (preFinish) preFinish(); - if (!dontCreateFile) { - FS.createDataFile(parent, name, byteArray, canRead, canWrite, canOwn); - } - if (onload) onload(); - removeRunDependency(dep); - } - var handled = false; - Module['preloadPlugins'].forEach(function(plugin) { - if (handled) return; - if (plugin['canHandle'](fullname)) { - plugin['handle'](byteArray, fullname, finish, function() { - if (onerror) onerror(); - removeRunDependency(dep); - }); - handled = true; - } - }); - if (!handled) finish(byteArray); - } - addRunDependency(dep); - if (typeof url == 'string') { - Browser.asyncLoad(url, function(byteArray) { - processData(byteArray); - }, onerror); - } else { - processData(url); - } - },indexedDB:function () { - return window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB; - },DB_NAME:function () { - return 'EM_FS_' + window.location.pathname; - },DB_VERSION:20,DB_STORE_NAME:"FILE_DATA",saveFilesToDB:function (paths, onload, onerror) { - onload = onload || function(){}; - onerror = onerror || function(){}; - var indexedDB = FS.indexedDB(); - try { - var openRequest = indexedDB.open(FS.DB_NAME(), FS.DB_VERSION); - } catch (e) { - return onerror(e); - } - openRequest.onupgradeneeded = function openRequest_onupgradeneeded() { - console.log('creating db'); - var db = openRequest.result; - db.createObjectStore(FS.DB_STORE_NAME); - }; - openRequest.onsuccess = function openRequest_onsuccess() { - var db = openRequest.result; - var transaction = db.transaction([FS.DB_STORE_NAME], 'readwrite'); - var files = transaction.objectStore(FS.DB_STORE_NAME); - var ok = 0, fail = 0, total = paths.length; - function finish() { - if (fail == 0) onload(); else onerror(); - } - paths.forEach(function(path) { - var putRequest = files.put(FS.analyzePath(path).object.contents, path); - putRequest.onsuccess = function putRequest_onsuccess() { ok++; if (ok + fail == total) finish() }; - putRequest.onerror = function putRequest_onerror() { fail++; if (ok + fail == total) finish() }; - }); - transaction.onerror = onerror; - }; - openRequest.onerror = onerror; - },loadFilesFromDB:function (paths, onload, onerror) { - onload = onload || function(){}; - onerror = onerror || function(){}; - var indexedDB = FS.indexedDB(); - try { - var openRequest = indexedDB.open(FS.DB_NAME(), FS.DB_VERSION); - } catch (e) { - return onerror(e); - } - openRequest.onupgradeneeded = onerror; // no database to load from - openRequest.onsuccess = function openRequest_onsuccess() { - var db = openRequest.result; - try { - var transaction = db.transaction([FS.DB_STORE_NAME], 'readonly'); - } catch(e) { - onerror(e); - return; - } - var files = transaction.objectStore(FS.DB_STORE_NAME); - var ok = 0, fail = 0, total = paths.length; - function finish() { - if (fail == 0) onload(); else onerror(); - } - paths.forEach(function(path) { - var getRequest = files.get(path); - getRequest.onsuccess = function getRequest_onsuccess() { - if (FS.analyzePath(path).exists) { - FS.unlink(path); - } - FS.createDataFile(PATH.dirname(path), PATH.basename(path), getRequest.result, true, true, true); - ok++; - if (ok + fail == total) finish(); - }; - getRequest.onerror = function getRequest_onerror() { fail++; if (ok + fail == total) finish() }; - }); - transaction.onerror = onerror; - }; - openRequest.onerror = onerror; - }};var SYSCALLS={DEFAULT_POLLMASK:5,mappings:{},umask:511,calculateAt:function (dirfd, path) { - if (path[0] !== '/') { - // relative path - var dir; - if (dirfd === -100) { - dir = FS.cwd(); - } else { - var dirstream = FS.getStream(dirfd); - if (!dirstream) throw new FS.ErrnoError(ERRNO_CODES.EBADF); - dir = dirstream.path; - } - path = PATH.join2(dir, path); - } - return path; - },doStat:function (func, path, buf) { - try { - var stat = func(path); - } catch (e) { - if (e && e.node && PATH.normalize(path) !== PATH.normalize(FS.getPath(e.node))) { - // an error occurred while trying to look up the path; we should just report ENOTDIR - return -ERRNO_CODES.ENOTDIR; - } - throw e; - } - HEAP32[((buf)>>2)]=stat.dev; - HEAP32[(((buf)+(4))>>2)]=0; - HEAP32[(((buf)+(8))>>2)]=stat.ino; - HEAP32[(((buf)+(12))>>2)]=stat.mode; - HEAP32[(((buf)+(16))>>2)]=stat.nlink; - HEAP32[(((buf)+(20))>>2)]=stat.uid; - HEAP32[(((buf)+(24))>>2)]=stat.gid; - HEAP32[(((buf)+(28))>>2)]=stat.rdev; - HEAP32[(((buf)+(32))>>2)]=0; - HEAP32[(((buf)+(36))>>2)]=stat.size; - HEAP32[(((buf)+(40))>>2)]=4096; - HEAP32[(((buf)+(44))>>2)]=stat.blocks; - HEAP32[(((buf)+(48))>>2)]=(stat.atime.getTime() / 1000)|0; - HEAP32[(((buf)+(52))>>2)]=0; - HEAP32[(((buf)+(56))>>2)]=(stat.mtime.getTime() / 1000)|0; - HEAP32[(((buf)+(60))>>2)]=0; - HEAP32[(((buf)+(64))>>2)]=(stat.ctime.getTime() / 1000)|0; - HEAP32[(((buf)+(68))>>2)]=0; - HEAP32[(((buf)+(72))>>2)]=stat.ino; - return 0; - },doMsync:function (addr, stream, len, flags) { - var buffer = new Uint8Array(HEAPU8.subarray(addr, addr + len)); - FS.msync(stream, buffer, 0, len, flags); - },doMkdir:function (path, mode) { - // remove a trailing slash, if one - /a/b/ has basename of '', but - // we want to create b in the context of this function - path = PATH.normalize(path); - if (path[path.length-1] === '/') path = path.substr(0, path.length-1); - FS.mkdir(path, mode, 0); - return 0; - },doMknod:function (path, mode, dev) { - // we don't want this in the JS API as it uses mknod to create all nodes. - switch (mode & 61440) { - case 32768: - case 8192: - case 24576: - case 4096: - case 49152: - break; - default: return -ERRNO_CODES.EINVAL; - } - FS.mknod(path, mode, dev); - return 0; - },doReadlink:function (path, buf, bufsize) { - if (bufsize <= 0) return -ERRNO_CODES.EINVAL; - var ret = FS.readlink(path); - ret = ret.slice(0, Math.max(0, bufsize)); - writeStringToMemory(ret, buf, true); - return ret.length; - },doAccess:function (path, amode) { - if (amode & ~7) { - // need a valid mode - return -ERRNO_CODES.EINVAL; - } - var node; - var lookup = FS.lookupPath(path, { follow: true }); - node = lookup.node; - var perms = ''; - if (amode & 4) perms += 'r'; - if (amode & 2) perms += 'w'; - if (amode & 1) perms += 'x'; - if (perms /* otherwise, they've just passed F_OK */ && FS.nodePermissions(node, perms)) { - return -ERRNO_CODES.EACCES; - } - return 0; - },doDup:function (path, flags, suggestFD) { - var suggest = FS.getStream(suggestFD); - if (suggest) FS.close(suggest); - return FS.open(path, flags, 0, suggestFD, suggestFD).fd; - },doReadv:function (stream, iov, iovcnt, offset) { - var ret = 0; - for (var i = 0; i < iovcnt; i++) { - var ptr = HEAP32[(((iov)+(i*8))>>2)]; - var len = HEAP32[(((iov)+(i*8 + 4))>>2)]; - var curr = FS.read(stream, HEAP8,ptr, len, offset); - if (curr < 0) return -1; - ret += curr; - if (curr < len) break; // nothing more to read - } - return ret; - },doWritev:function (stream, iov, iovcnt, offset) { - var ret = 0; - for (var i = 0; i < iovcnt; i++) { - var ptr = HEAP32[(((iov)+(i*8))>>2)]; - var len = HEAP32[(((iov)+(i*8 + 4))>>2)]; - var curr = FS.write(stream, HEAP8,ptr, len, offset); - if (curr < 0) return -1; - ret += curr; - } - return ret; - },varargs:0,get:function (varargs) { - SYSCALLS.varargs += 4; - var ret = HEAP32[(((SYSCALLS.varargs)-(4))>>2)]; - return ret; - },getStr:function () { - var ret = Pointer_stringify(SYSCALLS.get()); - return ret; - },getStreamFromFD:function () { - var stream = FS.getStream(SYSCALLS.get()); - if (!stream) throw new FS.ErrnoError(ERRNO_CODES.EBADF); - return stream; - },getSocketFromFD:function () { - var socket = SOCKFS.getSocket(SYSCALLS.get()); - if (!socket) throw new FS.ErrnoError(ERRNO_CODES.EBADF); - return socket; - },getSocketAddress:function (allowNull) { - var addrp = SYSCALLS.get(), addrlen = SYSCALLS.get(); - if (allowNull && addrp === 0) return null; - var info = __read_sockaddr(addrp, addrlen); - if (info.errno) throw new FS.ErrnoError(info.errno); - info.addr = DNS.lookup_addr(info.addr) || info.addr; - return info; - },get64:function () { - var low = SYSCALLS.get(), high = SYSCALLS.get(); - if (low >= 0) assert(high === 0); - else assert(high === -1); - return low; - },getZero:function () { - assert(SYSCALLS.get() === 0); - }};function ___syscall6(which, varargs) {SYSCALLS.varargs = varargs; - try { - // close - var stream = SYSCALLS.getStreamFromFD(); - FS.close(stream); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function _sysconf(name) { - // long sysconf(int name); - // http://pubs.opengroup.org/onlinepubs/009695399/functions/sysconf.html - switch(name) { - case 30: return PAGE_SIZE; - case 85: return totalMemory / PAGE_SIZE; - case 132: - case 133: - case 12: - case 137: - case 138: - case 15: - case 235: - case 16: - case 17: - case 18: - case 19: - case 20: - case 149: - case 13: - case 10: - case 236: - case 153: - case 9: - case 21: - case 22: - case 159: - case 154: - case 14: - case 77: - case 78: - case 139: - case 80: - case 81: - case 82: - case 68: - case 67: - case 164: - case 11: - case 29: - case 47: - case 48: - case 95: - case 52: - case 51: - case 46: - return 200809; - case 79: - return 0; - case 27: - case 246: - case 127: - case 128: - case 23: - case 24: - case 160: - case 161: - case 181: - case 182: - case 242: - case 183: - case 184: - case 243: - case 244: - case 245: - case 165: - case 178: - case 179: - case 49: - case 50: - case 168: - case 169: - case 175: - case 170: - case 171: - case 172: - case 97: - case 76: - case 32: - case 173: - case 35: - return -1; - case 176: - case 177: - case 7: - case 155: - case 8: - case 157: - case 125: - case 126: - case 92: - case 93: - case 129: - case 130: - case 131: - case 94: - case 91: - return 1; - case 74: - case 60: - case 69: - case 70: - case 4: - return 1024; - case 31: - case 42: - case 72: - return 32; - case 87: - case 26: - case 33: - return 2147483647; - case 34: - case 1: - return 47839; - case 38: - case 36: - return 99; - case 43: - case 37: - return 2048; - case 0: return 2097152; - case 3: return 65536; - case 28: return 32768; - case 44: return 32767; - case 75: return 16384; - case 39: return 1000; - case 89: return 700; - case 71: return 256; - case 40: return 255; - case 2: return 100; - case 180: return 64; - case 25: return 20; - case 5: return 16; - case 6: return 6; - case 73: return 4; - case 84: { - if (typeof navigator === 'object') return navigator['hardwareConcurrency'] || 1; - return 1; - } - } - ___setErrNo(ERRNO_CODES.EINVAL); - return -1; - } - - function _sbrk(bytes) { - // Implement a Linux-like 'memory area' for our 'process'. - // Changes the size of the memory area by |bytes|; returns the - // address of the previous top ('break') of the memory area - // We control the "dynamic" memory - DYNAMIC_BASE to DYNAMICTOP - var self = _sbrk; - if (!self.called) { - DYNAMICTOP = alignMemoryPage(DYNAMICTOP); // make sure we start out aligned - self.called = true; - assert(Runtime.dynamicAlloc); - self.alloc = Runtime.dynamicAlloc; - Runtime.dynamicAlloc = function() { abort('cannot dynamically allocate, sbrk now has control') }; - } - var ret = DYNAMICTOP; - if (bytes != 0) { - var success = self.alloc(bytes); - if (!success) return -1 >>> 0; // sbrk failure code - } - return ret; // Previous break location. - } - - - - function _emscripten_memcpy_big(dest, src, num) { - HEAPU8.set(HEAPU8.subarray(src, src+num), dest); - return dest; - } - Module["_memcpy"] = _memcpy; - Module["_memmove"] = _memmove; - - - - - function _emscripten_set_main_loop_timing(mode, value) { - Browser.mainLoop.timingMode = mode; - Browser.mainLoop.timingValue = value; - - if (!Browser.mainLoop.func) { - return 1; // Return non-zero on failure, can't set timing mode when there is no main loop. - } - - if (mode == 0 /*EM_TIMING_SETTIMEOUT*/) { - Browser.mainLoop.scheduler = function Browser_mainLoop_scheduler_setTimeout() { - setTimeout(Browser.mainLoop.runner, value); // doing this each time means that on exception, we stop - }; - Browser.mainLoop.method = 'timeout'; - } else if (mode == 1 /*EM_TIMING_RAF*/) { - Browser.mainLoop.scheduler = function Browser_mainLoop_scheduler_rAF() { - Browser.requestAnimationFrame(Browser.mainLoop.runner); - }; - Browser.mainLoop.method = 'rAF'; - } else if (mode == 2 /*EM_TIMING_SETIMMEDIATE*/) { - if (!window['setImmediate']) { - // Emulate setImmediate. (note: not a complete polyfill, we don't emulate clearImmediate() to keep code size to minimum, since not needed) - var setImmediates = []; - var emscriptenMainLoopMessageId = '__emcc'; - function Browser_setImmediate_messageHandler(event) { - if (event.source === window && event.data === emscriptenMainLoopMessageId) { - event.stopPropagation(); - setImmediates.shift()(); - } - } - window.addEventListener("message", Browser_setImmediate_messageHandler, true); - window['setImmediate'] = function Browser_emulated_setImmediate(func) { - setImmediates.push(func); - window.postMessage(emscriptenMainLoopMessageId, "*"); - } - } - Browser.mainLoop.scheduler = function Browser_mainLoop_scheduler_setImmediate() { - window['setImmediate'](Browser.mainLoop.runner); - }; - Browser.mainLoop.method = 'immediate'; - } - return 0; - }function _emscripten_set_main_loop(func, fps, simulateInfiniteLoop, arg, noSetTiming) { - Module['noExitRuntime'] = true; - - assert(!Browser.mainLoop.func, 'emscripten_set_main_loop: there can only be one main loop function at once: call emscripten_cancel_main_loop to cancel the previous one before setting a new one with different parameters.'); - - Browser.mainLoop.func = func; - Browser.mainLoop.arg = arg; - - var thisMainLoopId = Browser.mainLoop.currentlyRunningMainloop; - - Browser.mainLoop.runner = function Browser_mainLoop_runner() { - if (ABORT) return; - if (Browser.mainLoop.queue.length > 0) { - var start = Date.now(); - var blocker = Browser.mainLoop.queue.shift(); - blocker.func(blocker.arg); - if (Browser.mainLoop.remainingBlockers) { - var remaining = Browser.mainLoop.remainingBlockers; - var next = remaining%1 == 0 ? remaining-1 : Math.floor(remaining); - if (blocker.counted) { - Browser.mainLoop.remainingBlockers = next; - } else { - // not counted, but move the progress along a tiny bit - next = next + 0.5; // do not steal all the next one's progress - Browser.mainLoop.remainingBlockers = (8*remaining + next)/9; - } - } - console.log('main loop blocker "' + blocker.name + '" took ' + (Date.now() - start) + ' ms'); //, left: ' + Browser.mainLoop.remainingBlockers); - Browser.mainLoop.updateStatus(); - setTimeout(Browser.mainLoop.runner, 0); - return; - } - - // catch pauses from non-main loop sources - if (thisMainLoopId < Browser.mainLoop.currentlyRunningMainloop) return; - - // Implement very basic swap interval control - Browser.mainLoop.currentFrameNumber = Browser.mainLoop.currentFrameNumber + 1 | 0; - if (Browser.mainLoop.timingMode == 1/*EM_TIMING_RAF*/ && Browser.mainLoop.timingValue > 1 && Browser.mainLoop.currentFrameNumber % Browser.mainLoop.timingValue != 0) { - // Not the scheduled time to render this frame - skip. - Browser.mainLoop.scheduler(); - return; - } - - // Signal GL rendering layer that processing of a new frame is about to start. This helps it optimize - // VBO double-buffering and reduce GPU stalls. - - if (Browser.mainLoop.method === 'timeout' && Module.ctx) { - Module.printErr('Looks like you are rendering without using requestAnimationFrame for the main loop. You should use 0 for the frame rate in emscripten_set_main_loop in order to use requestAnimationFrame, as that can greatly improve your frame rates!'); - Browser.mainLoop.method = ''; // just warn once per call to set main loop - } - - Browser.mainLoop.runIter(function() { - if (typeof arg !== 'undefined') { - Runtime.dynCall('vi', func, [arg]); - } else { - Runtime.dynCall('v', func); - } - }); - - // catch pauses from the main loop itself - if (thisMainLoopId < Browser.mainLoop.currentlyRunningMainloop) return; - - // Queue new audio data. This is important to be right after the main loop invocation, so that we will immediately be able - // to queue the newest produced audio samples. - // TODO: Consider adding pre- and post- rAF callbacks so that GL.newRenderingFrameStarted() and SDL.audio.queueNewAudioData() - // do not need to be hardcoded into this function, but can be more generic. - if (typeof SDL === 'object' && SDL.audio && SDL.audio.queueNewAudioData) SDL.audio.queueNewAudioData(); - - Browser.mainLoop.scheduler(); - } - - if (!noSetTiming) { - if (fps && fps > 0) _emscripten_set_main_loop_timing(0/*EM_TIMING_SETTIMEOUT*/, 1000.0 / fps); - else _emscripten_set_main_loop_timing(1/*EM_TIMING_RAF*/, 1); // Do rAF by rendering each frame (no decimating) - - Browser.mainLoop.scheduler(); - } - - if (simulateInfiniteLoop) { - throw 'SimulateInfiniteLoop'; - } - }var Browser={mainLoop:{scheduler:null,method:"",currentlyRunningMainloop:0,func:null,arg:0,timingMode:0,timingValue:0,currentFrameNumber:0,queue:[],pause:function () { - Browser.mainLoop.scheduler = null; - Browser.mainLoop.currentlyRunningMainloop++; // Incrementing this signals the previous main loop that it's now become old, and it must return. - },resume:function () { - Browser.mainLoop.currentlyRunningMainloop++; - var timingMode = Browser.mainLoop.timingMode; - var timingValue = Browser.mainLoop.timingValue; - var func = Browser.mainLoop.func; - Browser.mainLoop.func = null; - _emscripten_set_main_loop(func, 0, false, Browser.mainLoop.arg, true /* do not set timing and call scheduler, we will do it on the next lines */); - _emscripten_set_main_loop_timing(timingMode, timingValue); - Browser.mainLoop.scheduler(); - },updateStatus:function () { - if (Module['setStatus']) { - var message = Module['statusMessage'] || 'Please wait...'; - var remaining = Browser.mainLoop.remainingBlockers; - var expected = Browser.mainLoop.expectedBlockers; - if (remaining) { - if (remaining < expected) { - Module['setStatus'](message + ' (' + (expected - remaining) + '/' + expected + ')'); - } else { - Module['setStatus'](message); - } - } else { - Module['setStatus'](''); - } - } - },runIter:function (func) { - if (ABORT) return; - if (Module['preMainLoop']) { - var preRet = Module['preMainLoop'](); - if (preRet === false) { - return; // |return false| skips a frame - } - } - try { - func(); - } catch (e) { - if (e instanceof ExitStatus) { - return; - } else { - if (e && typeof e === 'object' && e.stack) Module.printErr('exception thrown: ' + [e, e.stack]); - throw e; - } - } - if (Module['postMainLoop']) Module['postMainLoop'](); - }},isFullScreen:false,pointerLock:false,moduleContextCreatedCallbacks:[],workers:[],init:function () { - if (!Module["preloadPlugins"]) Module["preloadPlugins"] = []; // needs to exist even in workers - - if (Browser.initted) return; - Browser.initted = true; - - try { - new Blob(); - Browser.hasBlobConstructor = true; - } catch(e) { - Browser.hasBlobConstructor = false; - console.log("warning: no blob constructor, cannot create blobs with mimetypes"); - } - Browser.BlobBuilder = typeof MozBlobBuilder != "undefined" ? MozBlobBuilder : (typeof WebKitBlobBuilder != "undefined" ? WebKitBlobBuilder : (!Browser.hasBlobConstructor ? console.log("warning: no BlobBuilder") : null)); - Browser.URLObject = typeof window != "undefined" ? (window.URL ? window.URL : window.webkitURL) : undefined; - if (!Module.noImageDecoding && typeof Browser.URLObject === 'undefined') { - console.log("warning: Browser does not support creating object URLs. Built-in browser image decoding will not be available."); - Module.noImageDecoding = true; - } - - // Support for plugins that can process preloaded files. You can add more of these to - // your app by creating and appending to Module.preloadPlugins. - // - // Each plugin is asked if it can handle a file based on the file's name. If it can, - // it is given the file's raw data. When it is done, it calls a callback with the file's - // (possibly modified) data. For example, a plugin might decompress a file, or it - // might create some side data structure for use later (like an Image element, etc.). - - var imagePlugin = {}; - imagePlugin['canHandle'] = function imagePlugin_canHandle(name) { - return !Module.noImageDecoding && /\.(jpg|jpeg|png|bmp)$/i.test(name); - }; - imagePlugin['handle'] = function imagePlugin_handle(byteArray, name, onload, onerror) { - var b = null; - if (Browser.hasBlobConstructor) { - try { - b = new Blob([byteArray], { type: Browser.getMimetype(name) }); - if (b.size !== byteArray.length) { // Safari bug #118630 - // Safari's Blob can only take an ArrayBuffer - b = new Blob([(new Uint8Array(byteArray)).buffer], { type: Browser.getMimetype(name) }); - } - } catch(e) { - Runtime.warnOnce('Blob constructor present but fails: ' + e + '; falling back to blob builder'); - } - } - if (!b) { - var bb = new Browser.BlobBuilder(); - bb.append((new Uint8Array(byteArray)).buffer); // we need to pass a buffer, and must copy the array to get the right data range - b = bb.getBlob(); - } - var url = Browser.URLObject.createObjectURL(b); - var img = new Image(); - img.onload = function img_onload() { - assert(img.complete, 'Image ' + name + ' could not be decoded'); - var canvas = document.createElement('canvas'); - canvas.width = img.width; - canvas.height = img.height; - var ctx = canvas.getContext('2d'); - ctx.drawImage(img, 0, 0); - Module["preloadedImages"][name] = canvas; - Browser.URLObject.revokeObjectURL(url); - if (onload) onload(byteArray); - }; - img.onerror = function img_onerror(event) { - console.log('Image ' + url + ' could not be decoded'); - if (onerror) onerror(); - }; - img.src = url; - }; - Module['preloadPlugins'].push(imagePlugin); - - var audioPlugin = {}; - audioPlugin['canHandle'] = function audioPlugin_canHandle(name) { - return !Module.noAudioDecoding && name.substr(-4) in { '.ogg': 1, '.wav': 1, '.mp3': 1 }; - }; - audioPlugin['handle'] = function audioPlugin_handle(byteArray, name, onload, onerror) { - var done = false; - function finish(audio) { - if (done) return; - done = true; - Module["preloadedAudios"][name] = audio; - if (onload) onload(byteArray); - } - function fail() { - if (done) return; - done = true; - Module["preloadedAudios"][name] = new Audio(); // empty shim - if (onerror) onerror(); - } - if (Browser.hasBlobConstructor) { - try { - var b = new Blob([byteArray], { type: Browser.getMimetype(name) }); - } catch(e) { - return fail(); - } - var url = Browser.URLObject.createObjectURL(b); // XXX we never revoke this! - var audio = new Audio(); - audio.addEventListener('canplaythrough', function() { finish(audio) }, false); // use addEventListener due to chromium bug 124926 - audio.onerror = function audio_onerror(event) { - if (done) return; - console.log('warning: browser could not fully decode audio ' + name + ', trying slower base64 approach'); - function encode64(data) { - var BASE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; - var PAD = '='; - var ret = ''; - var leftchar = 0; - var leftbits = 0; - for (var i = 0; i < data.length; i++) { - leftchar = (leftchar << 8) | data[i]; - leftbits += 8; - while (leftbits >= 6) { - var curr = (leftchar >> (leftbits-6)) & 0x3f; - leftbits -= 6; - ret += BASE[curr]; - } - } - if (leftbits == 2) { - ret += BASE[(leftchar&3) << 4]; - ret += PAD + PAD; - } else if (leftbits == 4) { - ret += BASE[(leftchar&0xf) << 2]; - ret += PAD; - } - return ret; - } - audio.src = 'data:audio/x-' + name.substr(-3) + ';base64,' + encode64(byteArray); - finish(audio); // we don't wait for confirmation this worked - but it's worth trying - }; - audio.src = url; - // workaround for chrome bug 124926 - we do not always get oncanplaythrough or onerror - Browser.safeSetTimeout(function() { - finish(audio); // try to use it even though it is not necessarily ready to play - }, 10000); - } else { - return fail(); - } - }; - Module['preloadPlugins'].push(audioPlugin); - - // Canvas event setup - - var canvas = Module['canvas']; - function pointerLockChange() { - Browser.pointerLock = document['pointerLockElement'] === canvas || - document['mozPointerLockElement'] === canvas || - document['webkitPointerLockElement'] === canvas || - document['msPointerLockElement'] === canvas; - } - if (canvas) { - // forced aspect ratio can be enabled by defining 'forcedAspectRatio' on Module - // Module['forcedAspectRatio'] = 4 / 3; - - canvas.requestPointerLock = canvas['requestPointerLock'] || - canvas['mozRequestPointerLock'] || - canvas['webkitRequestPointerLock'] || - canvas['msRequestPointerLock'] || - function(){}; - canvas.exitPointerLock = document['exitPointerLock'] || - document['mozExitPointerLock'] || - document['webkitExitPointerLock'] || - document['msExitPointerLock'] || - function(){}; // no-op if function does not exist - canvas.exitPointerLock = canvas.exitPointerLock.bind(document); - - - document.addEventListener('pointerlockchange', pointerLockChange, false); - document.addEventListener('mozpointerlockchange', pointerLockChange, false); - document.addEventListener('webkitpointerlockchange', pointerLockChange, false); - document.addEventListener('mspointerlockchange', pointerLockChange, false); - - if (Module['elementPointerLock']) { - canvas.addEventListener("click", function(ev) { - if (!Browser.pointerLock && canvas.requestPointerLock) { - canvas.requestPointerLock(); - ev.preventDefault(); - } - }, false); - } - } - },createContext:function (canvas, useWebGL, setInModule, webGLContextAttributes) { - if (useWebGL && Module.ctx && canvas == Module.canvas) return Module.ctx; // no need to recreate GL context if it's already been created for this canvas. - - var ctx; - var contextHandle; - if (useWebGL) { - // For GLES2/desktop GL compatibility, adjust a few defaults to be different to WebGL defaults, so that they align better with the desktop defaults. - var contextAttributes = { - antialias: false, - alpha: false - }; - - if (webGLContextAttributes) { - for (var attribute in webGLContextAttributes) { - contextAttributes[attribute] = webGLContextAttributes[attribute]; - } - } - - contextHandle = GL.createContext(canvas, contextAttributes); - if (contextHandle) { - ctx = GL.getContext(contextHandle).GLctx; - } - // Set the background of the WebGL canvas to black - canvas.style.backgroundColor = "black"; - } else { - ctx = canvas.getContext('2d'); - } - - if (!ctx) return null; - - if (setInModule) { - if (!useWebGL) assert(typeof GLctx === 'undefined', 'cannot set in module if GLctx is used, but we are a non-GL context that would replace it'); - - Module.ctx = ctx; - if (useWebGL) GL.makeContextCurrent(contextHandle); - Module.useWebGL = useWebGL; - Browser.moduleContextCreatedCallbacks.forEach(function(callback) { callback() }); - Browser.init(); - } - return ctx; - },destroyContext:function (canvas, useWebGL, setInModule) {},fullScreenHandlersInstalled:false,lockPointer:undefined,resizeCanvas:undefined,requestFullScreen:function (lockPointer, resizeCanvas, vrDevice) { - Browser.lockPointer = lockPointer; - Browser.resizeCanvas = resizeCanvas; - Browser.vrDevice = vrDevice; - if (typeof Browser.lockPointer === 'undefined') Browser.lockPointer = true; - if (typeof Browser.resizeCanvas === 'undefined') Browser.resizeCanvas = false; - if (typeof Browser.vrDevice === 'undefined') Browser.vrDevice = null; - - var canvas = Module['canvas']; - function fullScreenChange() { - Browser.isFullScreen = false; - var canvasContainer = canvas.parentNode; - if ((document['webkitFullScreenElement'] || document['webkitFullscreenElement'] || - document['mozFullScreenElement'] || document['mozFullscreenElement'] || - document['fullScreenElement'] || document['fullscreenElement'] || - document['msFullScreenElement'] || document['msFullscreenElement'] || - document['webkitCurrentFullScreenElement']) === canvasContainer) { - canvas.cancelFullScreen = document['cancelFullScreen'] || - document['mozCancelFullScreen'] || - document['webkitCancelFullScreen'] || - document['msExitFullscreen'] || - document['exitFullscreen'] || - function() {}; - canvas.cancelFullScreen = canvas.cancelFullScreen.bind(document); - if (Browser.lockPointer) canvas.requestPointerLock(); - Browser.isFullScreen = true; - if (Browser.resizeCanvas) Browser.setFullScreenCanvasSize(); - } else { - - // remove the full screen specific parent of the canvas again to restore the HTML structure from before going full screen - canvasContainer.parentNode.insertBefore(canvas, canvasContainer); - canvasContainer.parentNode.removeChild(canvasContainer); - - if (Browser.resizeCanvas) Browser.setWindowedCanvasSize(); - } - if (Module['onFullScreen']) Module['onFullScreen'](Browser.isFullScreen); - Browser.updateCanvasDimensions(canvas); - } - - if (!Browser.fullScreenHandlersInstalled) { - Browser.fullScreenHandlersInstalled = true; - document.addEventListener('fullscreenchange', fullScreenChange, false); - document.addEventListener('mozfullscreenchange', fullScreenChange, false); - document.addEventListener('webkitfullscreenchange', fullScreenChange, false); - document.addEventListener('MSFullscreenChange', fullScreenChange, false); - } - - // create a new parent to ensure the canvas has no siblings. this allows browsers to optimize full screen performance when its parent is the full screen root - var canvasContainer = document.createElement("div"); - canvas.parentNode.insertBefore(canvasContainer, canvas); - canvasContainer.appendChild(canvas); - - // use parent of canvas as full screen root to allow aspect ratio correction (Firefox stretches the root to screen size) - canvasContainer.requestFullScreen = canvasContainer['requestFullScreen'] || - canvasContainer['mozRequestFullScreen'] || - canvasContainer['msRequestFullscreen'] || - (canvasContainer['webkitRequestFullScreen'] ? function() { canvasContainer['webkitRequestFullScreen'](Element['ALLOW_KEYBOARD_INPUT']) } : null); - - if (vrDevice) { - canvasContainer.requestFullScreen({ vrDisplay: vrDevice }); - } else { - canvasContainer.requestFullScreen(); - } - },nextRAF:0,fakeRequestAnimationFrame:function (func) { - // try to keep 60fps between calls to here - var now = Date.now(); - if (Browser.nextRAF === 0) { - Browser.nextRAF = now + 1000/60; - } else { - while (now + 2 >= Browser.nextRAF) { // fudge a little, to avoid timer jitter causing us to do lots of delay:0 - Browser.nextRAF += 1000/60; - } - } - var delay = Math.max(Browser.nextRAF - now, 0); - setTimeout(func, delay); - },requestAnimationFrame:function requestAnimationFrame(func) { - if (typeof window === 'undefined') { // Provide fallback to setTimeout if window is undefined (e.g. in Node.js) - Browser.fakeRequestAnimationFrame(func); - } else { - if (!window.requestAnimationFrame) { - window.requestAnimationFrame = window['requestAnimationFrame'] || - window['mozRequestAnimationFrame'] || - window['webkitRequestAnimationFrame'] || - window['msRequestAnimationFrame'] || - window['oRequestAnimationFrame'] || - Browser.fakeRequestAnimationFrame; - } - window.requestAnimationFrame(func); - } - },safeCallback:function (func) { - return function() { - if (!ABORT) return func.apply(null, arguments); - }; - },allowAsyncCallbacks:true,queuedAsyncCallbacks:[],pauseAsyncCallbacks:function () { - Browser.allowAsyncCallbacks = false; - },resumeAsyncCallbacks:function () { // marks future callbacks as ok to execute, and synchronously runs any remaining ones right now - Browser.allowAsyncCallbacks = true; - if (Browser.queuedAsyncCallbacks.length > 0) { - var callbacks = Browser.queuedAsyncCallbacks; - Browser.queuedAsyncCallbacks = []; - callbacks.forEach(function(func) { - func(); - }); - } - },safeRequestAnimationFrame:function (func) { - return Browser.requestAnimationFrame(function() { - if (ABORT) return; - if (Browser.allowAsyncCallbacks) { - func(); - } else { - Browser.queuedAsyncCallbacks.push(func); - } - }); - },safeSetTimeout:function (func, timeout) { - Module['noExitRuntime'] = true; - return setTimeout(function() { - if (ABORT) return; - if (Browser.allowAsyncCallbacks) { - func(); - } else { - Browser.queuedAsyncCallbacks.push(func); - } - }, timeout); - },safeSetInterval:function (func, timeout) { - Module['noExitRuntime'] = true; - return setInterval(function() { - if (ABORT) return; - if (Browser.allowAsyncCallbacks) { - func(); - } // drop it on the floor otherwise, next interval will kick in - }, timeout); - },getMimetype:function (name) { - return { - 'jpg': 'image/jpeg', - 'jpeg': 'image/jpeg', - 'png': 'image/png', - 'bmp': 'image/bmp', - 'ogg': 'audio/ogg', - 'wav': 'audio/wav', - 'mp3': 'audio/mpeg' - }[name.substr(name.lastIndexOf('.')+1)]; - },getUserMedia:function (func) { - if(!window.getUserMedia) { - window.getUserMedia = navigator['getUserMedia'] || - navigator['mozGetUserMedia']; - } - window.getUserMedia(func); - },getMovementX:function (event) { - return event['movementX'] || - event['mozMovementX'] || - event['webkitMovementX'] || - 0; - },getMovementY:function (event) { - return event['movementY'] || - event['mozMovementY'] || - event['webkitMovementY'] || - 0; - },getMouseWheelDelta:function (event) { - var delta = 0; - switch (event.type) { - case 'DOMMouseScroll': - delta = event.detail; - break; - case 'mousewheel': - delta = event.wheelDelta; - break; - case 'wheel': - delta = event['deltaY']; - break; - default: - throw 'unrecognized mouse wheel event: ' + event.type; - } - return delta; - },mouseX:0,mouseY:0,mouseMovementX:0,mouseMovementY:0,touches:{},lastTouches:{},calculateMouseEvent:function (event) { // event should be mousemove, mousedown or mouseup - if (Browser.pointerLock) { - // When the pointer is locked, calculate the coordinates - // based on the movement of the mouse. - // Workaround for Firefox bug 764498 - if (event.type != 'mousemove' && - ('mozMovementX' in event)) { - Browser.mouseMovementX = Browser.mouseMovementY = 0; - } else { - Browser.mouseMovementX = Browser.getMovementX(event); - Browser.mouseMovementY = Browser.getMovementY(event); - } - - // check if SDL is available - if (typeof SDL != "undefined") { - Browser.mouseX = SDL.mouseX + Browser.mouseMovementX; - Browser.mouseY = SDL.mouseY + Browser.mouseMovementY; - } else { - // just add the mouse delta to the current absolut mouse position - // FIXME: ideally this should be clamped against the canvas size and zero - Browser.mouseX += Browser.mouseMovementX; - Browser.mouseY += Browser.mouseMovementY; - } - } else { - // Otherwise, calculate the movement based on the changes - // in the coordinates. - var rect = Module["canvas"].getBoundingClientRect(); - var cw = Module["canvas"].width; - var ch = Module["canvas"].height; - - // Neither .scrollX or .pageXOffset are defined in a spec, but - // we prefer .scrollX because it is currently in a spec draft. - // (see: http://www.w3.org/TR/2013/WD-cssom-view-20131217/) - var scrollX = ((typeof window.scrollX !== 'undefined') ? window.scrollX : window.pageXOffset); - var scrollY = ((typeof window.scrollY !== 'undefined') ? window.scrollY : window.pageYOffset); - - if (event.type === 'touchstart' || event.type === 'touchend' || event.type === 'touchmove') { - var touch = event.touch; - if (touch === undefined) { - return; // the "touch" property is only defined in SDL - - } - var adjustedX = touch.pageX - (scrollX + rect.left); - var adjustedY = touch.pageY - (scrollY + rect.top); - - adjustedX = adjustedX * (cw / rect.width); - adjustedY = adjustedY * (ch / rect.height); - - var coords = { x: adjustedX, y: adjustedY }; - - if (event.type === 'touchstart') { - Browser.lastTouches[touch.identifier] = coords; - Browser.touches[touch.identifier] = coords; - } else if (event.type === 'touchend' || event.type === 'touchmove') { - var last = Browser.touches[touch.identifier]; - if (!last) last = coords; - Browser.lastTouches[touch.identifier] = last; - Browser.touches[touch.identifier] = coords; - } - return; - } - - var x = event.pageX - (scrollX + rect.left); - var y = event.pageY - (scrollY + rect.top); - - // the canvas might be CSS-scaled compared to its backbuffer; - // SDL-using content will want mouse coordinates in terms - // of backbuffer units. - x = x * (cw / rect.width); - y = y * (ch / rect.height); - - Browser.mouseMovementX = x - Browser.mouseX; - Browser.mouseMovementY = y - Browser.mouseY; - Browser.mouseX = x; - Browser.mouseY = y; - } - },xhrLoad:function (url, onload, onerror) { - var xhr = new XMLHttpRequest(); - xhr.open('GET', url, true); - xhr.responseType = 'arraybuffer'; - xhr.onload = function xhr_onload() { - if (xhr.status == 200 || (xhr.status == 0 && xhr.response)) { // file URLs can return 0 - onload(xhr.response); - } else { - onerror(); - } - }; - xhr.onerror = onerror; - xhr.send(null); - },asyncLoad:function (url, onload, onerror, noRunDep) { - Browser.xhrLoad(url, function(arrayBuffer) { - assert(arrayBuffer, 'Loading data file "' + url + '" failed (no arrayBuffer).'); - onload(new Uint8Array(arrayBuffer)); - if (!noRunDep) removeRunDependency('al ' + url); - }, function(event) { - if (onerror) { - onerror(); - } else { - throw 'Loading data file "' + url + '" failed.'; - } - }); - if (!noRunDep) addRunDependency('al ' + url); - },resizeListeners:[],updateResizeListeners:function () { - var canvas = Module['canvas']; - Browser.resizeListeners.forEach(function(listener) { - listener(canvas.width, canvas.height); - }); - },setCanvasSize:function (width, height, noUpdates) { - var canvas = Module['canvas']; - Browser.updateCanvasDimensions(canvas, width, height); - if (!noUpdates) Browser.updateResizeListeners(); - },windowedWidth:0,windowedHeight:0,setFullScreenCanvasSize:function () { - // check if SDL is available - if (typeof SDL != "undefined") { - var flags = HEAPU32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]; - flags = flags | 0x00800000; // set SDL_FULLSCREEN flag - HEAP32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]=flags - } - Browser.updateResizeListeners(); - },setWindowedCanvasSize:function () { - // check if SDL is available - if (typeof SDL != "undefined") { - var flags = HEAPU32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]; - flags = flags & ~0x00800000; // clear SDL_FULLSCREEN flag - HEAP32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]=flags - } - Browser.updateResizeListeners(); - },updateCanvasDimensions:function (canvas, wNative, hNative) { - if (wNative && hNative) { - canvas.widthNative = wNative; - canvas.heightNative = hNative; - } else { - wNative = canvas.widthNative; - hNative = canvas.heightNative; - } - var w = wNative; - var h = hNative; - if (Module['forcedAspectRatio'] && Module['forcedAspectRatio'] > 0) { - if (w/h < Module['forcedAspectRatio']) { - w = Math.round(h * Module['forcedAspectRatio']); - } else { - h = Math.round(w / Module['forcedAspectRatio']); - } - } - if (((document['webkitFullScreenElement'] || document['webkitFullscreenElement'] || - document['mozFullScreenElement'] || document['mozFullscreenElement'] || - document['fullScreenElement'] || document['fullscreenElement'] || - document['msFullScreenElement'] || document['msFullscreenElement'] || - document['webkitCurrentFullScreenElement']) === canvas.parentNode) && (typeof screen != 'undefined')) { - var factor = Math.min(screen.width / w, screen.height / h); - w = Math.round(w * factor); - h = Math.round(h * factor); - } - if (Browser.resizeCanvas) { - if (canvas.width != w) canvas.width = w; - if (canvas.height != h) canvas.height = h; - if (typeof canvas.style != 'undefined') { - canvas.style.removeProperty( "width"); - canvas.style.removeProperty("height"); - } - } else { - if (canvas.width != wNative) canvas.width = wNative; - if (canvas.height != hNative) canvas.height = hNative; - if (typeof canvas.style != 'undefined') { - if (w != wNative || h != hNative) { - canvas.style.setProperty( "width", w + "px", "important"); - canvas.style.setProperty("height", h + "px", "important"); - } else { - canvas.style.removeProperty( "width"); - canvas.style.removeProperty("height"); - } - } - } - },wgetRequests:{},nextWgetRequestHandle:0,getNextWgetRequestHandle:function () { - var handle = Browser.nextWgetRequestHandle; - Browser.nextWgetRequestHandle++; - return handle; - }}; - - function _time(ptr) { - var ret = (Date.now()/1000)|0; - if (ptr) { - HEAP32[((ptr)>>2)]=ret; - } - return ret; - } - - function _pthread_self() { - //FIXME: assumes only a single thread - return 0; - } - - function ___syscall140(which, varargs) {SYSCALLS.varargs = varargs; - try { - // llseek - var stream = SYSCALLS.getStreamFromFD(), offset_high = SYSCALLS.get(), offset_low = SYSCALLS.get(), result = SYSCALLS.get(), whence = SYSCALLS.get(); - var offset = offset_low; - assert(offset_high === 0); - FS.llseek(stream, offset, whence); - HEAP32[((result)>>2)]=stream.position; - if (stream.getdents && offset === 0 && whence === 0) stream.getdents = null; // reset readdir state - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___syscall146(which, varargs) {SYSCALLS.varargs = varargs; - try { - // writev - var stream = SYSCALLS.getStreamFromFD(), iov = SYSCALLS.get(), iovcnt = SYSCALLS.get(); - return SYSCALLS.doWritev(stream, iov, iovcnt); - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___syscall54(which, varargs) {SYSCALLS.varargs = varargs; - try { - // ioctl - var stream = SYSCALLS.getStreamFromFD(), op = SYSCALLS.get(); - switch (op) { - case 21505: { - if (!stream.tty) return -ERRNO_CODES.ENOTTY; - return 0; - } - case 21506: { - if (!stream.tty) return -ERRNO_CODES.ENOTTY; - return 0; // no-op, not actually adjusting terminal settings - } - case 21519: { - if (!stream.tty) return -ERRNO_CODES.ENOTTY; - var argp = SYSCALLS.get(); - HEAP32[((argp)>>2)]=0; - return 0; - } - case 21520: { - if (!stream.tty) return -ERRNO_CODES.ENOTTY; - return -ERRNO_CODES.EINVAL; // not supported - } - case 21531: { - var argp = SYSCALLS.get(); - return FS.ioctl(stream, op, argp); - } - default: abort('bad ioctl syscall ' + op); - } - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } -FS.staticInit();__ATINIT__.unshift(function() { if (!Module["noFSInit"] && !FS.init.initialized) FS.init() });__ATMAIN__.push(function() { FS.ignorePermissions = false });__ATEXIT__.push(function() { FS.quit() });Module["FS_createFolder"] = FS.createFolder;Module["FS_createPath"] = FS.createPath;Module["FS_createDataFile"] = FS.createDataFile;Module["FS_createPreloadedFile"] = FS.createPreloadedFile;Module["FS_createLazyFile"] = FS.createLazyFile;Module["FS_createLink"] = FS.createLink;Module["FS_createDevice"] = FS.createDevice;Module["FS_unlink"] = FS.unlink; -__ATINIT__.unshift(function() { TTY.init() });__ATEXIT__.push(function() { TTY.shutdown() }); -if (ENVIRONMENT_IS_NODE) { var fs = require("fs"); var NODEJS_PATH = require("path"); NODEFS.staticInit(); } -Module["requestFullScreen"] = function Module_requestFullScreen(lockPointer, resizeCanvas, vrDevice) { Browser.requestFullScreen(lockPointer, resizeCanvas, vrDevice) }; - Module["requestAnimationFrame"] = function Module_requestAnimationFrame(func) { Browser.requestAnimationFrame(func) }; - Module["setCanvasSize"] = function Module_setCanvasSize(width, height, noUpdates) { Browser.setCanvasSize(width, height, noUpdates) }; - Module["pauseMainLoop"] = function Module_pauseMainLoop() { Browser.mainLoop.pause() }; - Module["resumeMainLoop"] = function Module_resumeMainLoop() { Browser.mainLoop.resume() }; - Module["getUserMedia"] = function Module_getUserMedia() { Browser.getUserMedia() } - Module["createContext"] = function Module_createContext(canvas, useWebGL, setInModule, webGLContextAttributes) { return Browser.createContext(canvas, useWebGL, setInModule, webGLContextAttributes) } -STACK_BASE = STACKTOP = Runtime.alignMemory(STATICTOP); - -staticSealed = true; // seal the static portion of memory - -STACK_MAX = STACK_BASE + TOTAL_STACK; - -DYNAMIC_BASE = DYNAMICTOP = Runtime.alignMemory(STACK_MAX); - -assert(DYNAMIC_BASE < TOTAL_MEMORY, "TOTAL_MEMORY not big enough for stack"); - - var cttz_i8 = allocate([8,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,6,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,7,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,6,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0], "i8", ALLOC_DYNAMIC); - - -function invoke_ii(index,a1) { - try { - return Module["dynCall_ii"](index,a1); - } catch(e) { - if (typeof e !== 'number' && e !== 'longjmp') throw e; - asm["setThrew"](1, 0); - } -} - -function invoke_iiii(index,a1,a2,a3) { - try { - return Module["dynCall_iiii"](index,a1,a2,a3); - } catch(e) { - if (typeof e !== 'number' && e !== 'longjmp') throw e; - asm["setThrew"](1, 0); - } -} - -function invoke_vi(index,a1) { - try { - Module["dynCall_vi"](index,a1); - } catch(e) { - if (typeof e !== 'number' && e !== 'longjmp') throw e; - asm["setThrew"](1, 0); - } -} - -Module.asmGlobalArg = { "Math": Math, "Int8Array": Int8Array, "Int16Array": Int16Array, "Int32Array": Int32Array, "Uint8Array": Uint8Array, "Uint16Array": Uint16Array, "Uint32Array": Uint32Array, "Float32Array": Float32Array, "Float64Array": Float64Array, "NaN": NaN, "Infinity": Infinity }; - -Module.asmLibraryArg = { "abort": abort, "assert": assert, "invoke_ii": invoke_ii, "invoke_iiii": invoke_iiii, "invoke_vi": invoke_vi, "_pthread_cleanup_pop": _pthread_cleanup_pop, "___lock": ___lock, "_emscripten_set_main_loop": _emscripten_set_main_loop, "_pthread_self": _pthread_self, "___syscall6": ___syscall6, "_emscripten_set_main_loop_timing": _emscripten_set_main_loop_timing, "_abort": _abort, "_sbrk": _sbrk, "_time": _time, "___setErrNo": ___setErrNo, "_emscripten_memcpy_big": _emscripten_memcpy_big, "___syscall54": ___syscall54, "___unlock": ___unlock, "___syscall140": ___syscall140, "_pthread_cleanup_push": _pthread_cleanup_push, "_sysconf": _sysconf, "___syscall146": ___syscall146, "STACKTOP": STACKTOP, "STACK_MAX": STACK_MAX, "tempDoublePtr": tempDoublePtr, "ABORT": ABORT, "cttz_i8": cttz_i8 }; -// EMSCRIPTEN_START_ASM -var asm = (function(global, env, buffer) { - 'use asm'; - - - var HEAP8 = new global.Int8Array(buffer); - var HEAP16 = new global.Int16Array(buffer); - var HEAP32 = new global.Int32Array(buffer); - var HEAPU8 = new global.Uint8Array(buffer); - var HEAPU16 = new global.Uint16Array(buffer); - var HEAPU32 = new global.Uint32Array(buffer); - var HEAPF32 = new global.Float32Array(buffer); - var HEAPF64 = new global.Float64Array(buffer); - - - var STACKTOP=env.STACKTOP|0; - var STACK_MAX=env.STACK_MAX|0; - var tempDoublePtr=env.tempDoublePtr|0; - var ABORT=env.ABORT|0; - var cttz_i8=env.cttz_i8|0; - - var __THREW__ = 0; - var threwValue = 0; - var setjmpId = 0; - var undef = 0; - var nan = global.NaN, inf = global.Infinity; - var tempInt = 0, tempBigInt = 0, tempBigIntP = 0, tempBigIntS = 0, tempBigIntR = 0.0, tempBigIntI = 0, tempBigIntD = 0, tempValue = 0, tempDouble = 0.0; - - var tempRet0 = 0; - var tempRet1 = 0; - var tempRet2 = 0; - var tempRet3 = 0; - var tempRet4 = 0; - var tempRet5 = 0; - var tempRet6 = 0; - var tempRet7 = 0; - var tempRet8 = 0; - var tempRet9 = 0; - var Math_floor=global.Math.floor; - var Math_abs=global.Math.abs; - var Math_sqrt=global.Math.sqrt; - var Math_pow=global.Math.pow; - var Math_cos=global.Math.cos; - var Math_sin=global.Math.sin; - var Math_tan=global.Math.tan; - var Math_acos=global.Math.acos; - var Math_asin=global.Math.asin; - var Math_atan=global.Math.atan; - var Math_atan2=global.Math.atan2; - var Math_exp=global.Math.exp; - var Math_log=global.Math.log; - var Math_ceil=global.Math.ceil; - var Math_imul=global.Math.imul; - var Math_min=global.Math.min; - var Math_clz32=global.Math.clz32; - var abort=env.abort; - var assert=env.assert; - var invoke_ii=env.invoke_ii; - var invoke_iiii=env.invoke_iiii; - var invoke_vi=env.invoke_vi; - var _pthread_cleanup_pop=env._pthread_cleanup_pop; - var ___lock=env.___lock; - var _emscripten_set_main_loop=env._emscripten_set_main_loop; - var _pthread_self=env._pthread_self; - var ___syscall6=env.___syscall6; - var _emscripten_set_main_loop_timing=env._emscripten_set_main_loop_timing; - var _abort=env._abort; - var _sbrk=env._sbrk; - var _time=env._time; - var ___setErrNo=env.___setErrNo; - var _emscripten_memcpy_big=env._emscripten_memcpy_big; - var ___syscall54=env.___syscall54; - var ___unlock=env.___unlock; - var ___syscall140=env.___syscall140; - var _pthread_cleanup_push=env._pthread_cleanup_push; - var _sysconf=env._sysconf; - var ___syscall146=env.___syscall146; - var tempFloat = 0.0; - -// EMSCRIPTEN_START_FUNCS -function stackAlloc(size) { - size = size|0; - var ret = 0; - ret = STACKTOP; - STACKTOP = (STACKTOP + size)|0; - STACKTOP = (STACKTOP + 15)&-16; - - return ret|0; -} -function stackSave() { - return STACKTOP|0; -} -function stackRestore(top) { - top = top|0; - STACKTOP = top; -} -function establishStackSpace(stackBase, stackMax) { - stackBase = stackBase|0; - stackMax = stackMax|0; - STACKTOP = stackBase; - STACK_MAX = stackMax; -} - -function setThrew(threw, value) { - threw = threw|0; - value = value|0; - if ((__THREW__|0) == 0) { - __THREW__ = threw; - threwValue = value; - } -} -function copyTempFloat(ptr) { - ptr = ptr|0; - HEAP8[tempDoublePtr>>0] = HEAP8[ptr>>0]; - HEAP8[tempDoublePtr+1>>0] = HEAP8[ptr+1>>0]; - HEAP8[tempDoublePtr+2>>0] = HEAP8[ptr+2>>0]; - HEAP8[tempDoublePtr+3>>0] = HEAP8[ptr+3>>0]; -} -function copyTempDouble(ptr) { - ptr = ptr|0; - HEAP8[tempDoublePtr>>0] = HEAP8[ptr>>0]; - HEAP8[tempDoublePtr+1>>0] = HEAP8[ptr+1>>0]; - HEAP8[tempDoublePtr+2>>0] = HEAP8[ptr+2>>0]; - HEAP8[tempDoublePtr+3>>0] = HEAP8[ptr+3>>0]; - HEAP8[tempDoublePtr+4>>0] = HEAP8[ptr+4>>0]; - HEAP8[tempDoublePtr+5>>0] = HEAP8[ptr+5>>0]; - HEAP8[tempDoublePtr+6>>0] = HEAP8[ptr+6>>0]; - HEAP8[tempDoublePtr+7>>0] = HEAP8[ptr+7>>0]; -} - -function setTempRet0(value) { - value = value|0; - tempRet0 = value; -} -function getTempRet0() { - return tempRet0|0; -} - -function _crypto_verify_32_ref($x,$y) { - $x = $x|0; - $y = $y|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0; - var $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0; - var $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0; - var $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0; - var $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP8[$x>>0]|0; - $1 = HEAP8[$y>>0]|0; - $2 = $1 ^ $0; - $3 = ((($x)) + 1|0); - $4 = HEAP8[$3>>0]|0; - $5 = ((($y)) + 1|0); - $6 = HEAP8[$5>>0]|0; - $7 = $6 ^ $4; - $8 = $7 | $2; - $9 = ((($x)) + 2|0); - $10 = HEAP8[$9>>0]|0; - $11 = ((($y)) + 2|0); - $12 = HEAP8[$11>>0]|0; - $13 = $12 ^ $10; - $14 = $8 | $13; - $15 = ((($x)) + 3|0); - $16 = HEAP8[$15>>0]|0; - $17 = ((($y)) + 3|0); - $18 = HEAP8[$17>>0]|0; - $19 = $18 ^ $16; - $20 = $14 | $19; - $21 = ((($x)) + 4|0); - $22 = HEAP8[$21>>0]|0; - $23 = ((($y)) + 4|0); - $24 = HEAP8[$23>>0]|0; - $25 = $24 ^ $22; - $26 = $20 | $25; - $27 = ((($x)) + 5|0); - $28 = HEAP8[$27>>0]|0; - $29 = ((($y)) + 5|0); - $30 = HEAP8[$29>>0]|0; - $31 = $30 ^ $28; - $32 = $26 | $31; - $33 = ((($x)) + 6|0); - $34 = HEAP8[$33>>0]|0; - $35 = ((($y)) + 6|0); - $36 = HEAP8[$35>>0]|0; - $37 = $36 ^ $34; - $38 = $32 | $37; - $39 = ((($x)) + 7|0); - $40 = HEAP8[$39>>0]|0; - $41 = ((($y)) + 7|0); - $42 = HEAP8[$41>>0]|0; - $43 = $42 ^ $40; - $44 = $38 | $43; - $45 = ((($x)) + 8|0); - $46 = HEAP8[$45>>0]|0; - $47 = ((($y)) + 8|0); - $48 = HEAP8[$47>>0]|0; - $49 = $48 ^ $46; - $50 = $44 | $49; - $51 = ((($x)) + 9|0); - $52 = HEAP8[$51>>0]|0; - $53 = ((($y)) + 9|0); - $54 = HEAP8[$53>>0]|0; - $55 = $54 ^ $52; - $56 = $50 | $55; - $57 = ((($x)) + 10|0); - $58 = HEAP8[$57>>0]|0; - $59 = ((($y)) + 10|0); - $60 = HEAP8[$59>>0]|0; - $61 = $60 ^ $58; - $62 = $56 | $61; - $63 = ((($x)) + 11|0); - $64 = HEAP8[$63>>0]|0; - $65 = ((($y)) + 11|0); - $66 = HEAP8[$65>>0]|0; - $67 = $66 ^ $64; - $68 = $62 | $67; - $69 = ((($x)) + 12|0); - $70 = HEAP8[$69>>0]|0; - $71 = ((($y)) + 12|0); - $72 = HEAP8[$71>>0]|0; - $73 = $72 ^ $70; - $74 = $68 | $73; - $75 = ((($x)) + 13|0); - $76 = HEAP8[$75>>0]|0; - $77 = ((($y)) + 13|0); - $78 = HEAP8[$77>>0]|0; - $79 = $78 ^ $76; - $80 = $74 | $79; - $81 = ((($x)) + 14|0); - $82 = HEAP8[$81>>0]|0; - $83 = ((($y)) + 14|0); - $84 = HEAP8[$83>>0]|0; - $85 = $84 ^ $82; - $86 = $80 | $85; - $87 = ((($x)) + 15|0); - $88 = HEAP8[$87>>0]|0; - $89 = ((($y)) + 15|0); - $90 = HEAP8[$89>>0]|0; - $91 = $90 ^ $88; - $92 = $86 | $91; - $93 = ((($x)) + 16|0); - $94 = HEAP8[$93>>0]|0; - $95 = ((($y)) + 16|0); - $96 = HEAP8[$95>>0]|0; - $97 = $96 ^ $94; - $98 = $92 | $97; - $99 = ((($x)) + 17|0); - $100 = HEAP8[$99>>0]|0; - $101 = ((($y)) + 17|0); - $102 = HEAP8[$101>>0]|0; - $103 = $102 ^ $100; - $104 = $98 | $103; - $105 = ((($x)) + 18|0); - $106 = HEAP8[$105>>0]|0; - $107 = ((($y)) + 18|0); - $108 = HEAP8[$107>>0]|0; - $109 = $108 ^ $106; - $110 = $104 | $109; - $111 = ((($x)) + 19|0); - $112 = HEAP8[$111>>0]|0; - $113 = ((($y)) + 19|0); - $114 = HEAP8[$113>>0]|0; - $115 = $114 ^ $112; - $116 = $110 | $115; - $117 = ((($x)) + 20|0); - $118 = HEAP8[$117>>0]|0; - $119 = ((($y)) + 20|0); - $120 = HEAP8[$119>>0]|0; - $121 = $120 ^ $118; - $122 = $116 | $121; - $123 = ((($x)) + 21|0); - $124 = HEAP8[$123>>0]|0; - $125 = ((($y)) + 21|0); - $126 = HEAP8[$125>>0]|0; - $127 = $126 ^ $124; - $128 = $122 | $127; - $129 = ((($x)) + 22|0); - $130 = HEAP8[$129>>0]|0; - $131 = ((($y)) + 22|0); - $132 = HEAP8[$131>>0]|0; - $133 = $132 ^ $130; - $134 = $128 | $133; - $135 = ((($x)) + 23|0); - $136 = HEAP8[$135>>0]|0; - $137 = ((($y)) + 23|0); - $138 = HEAP8[$137>>0]|0; - $139 = $138 ^ $136; - $140 = $134 | $139; - $141 = ((($x)) + 24|0); - $142 = HEAP8[$141>>0]|0; - $143 = ((($y)) + 24|0); - $144 = HEAP8[$143>>0]|0; - $145 = $144 ^ $142; - $146 = $140 | $145; - $147 = ((($x)) + 25|0); - $148 = HEAP8[$147>>0]|0; - $149 = ((($y)) + 25|0); - $150 = HEAP8[$149>>0]|0; - $151 = $150 ^ $148; - $152 = $146 | $151; - $153 = ((($x)) + 26|0); - $154 = HEAP8[$153>>0]|0; - $155 = ((($y)) + 26|0); - $156 = HEAP8[$155>>0]|0; - $157 = $156 ^ $154; - $158 = $152 | $157; - $159 = ((($x)) + 27|0); - $160 = HEAP8[$159>>0]|0; - $161 = ((($y)) + 27|0); - $162 = HEAP8[$161>>0]|0; - $163 = $162 ^ $160; - $164 = $158 | $163; - $165 = ((($x)) + 28|0); - $166 = HEAP8[$165>>0]|0; - $167 = ((($y)) + 28|0); - $168 = HEAP8[$167>>0]|0; - $169 = $168 ^ $166; - $170 = $164 | $169; - $171 = ((($x)) + 29|0); - $172 = HEAP8[$171>>0]|0; - $173 = ((($y)) + 29|0); - $174 = HEAP8[$173>>0]|0; - $175 = $174 ^ $172; - $176 = $170 | $175; - $177 = ((($x)) + 30|0); - $178 = HEAP8[$177>>0]|0; - $179 = ((($y)) + 30|0); - $180 = HEAP8[$179>>0]|0; - $181 = $180 ^ $178; - $182 = $176 | $181; - $183 = ((($x)) + 31|0); - $184 = HEAP8[$183>>0]|0; - $185 = ((($y)) + 31|0); - $186 = HEAP8[$185>>0]|0; - $187 = $186 ^ $184; - $188 = $182 | $187; - $189 = $188&255; - $190 = (($189) + 511)|0; - $191 = $190 >>> 8; - $192 = $191 & 1; - $193 = (($192) + -1)|0; - return ($193|0); -} -function _curve25519_sign($signature_out,$curve25519_privkey,$msg,$msg_len) { - $signature_out = $signature_out|0; - $curve25519_privkey = $curve25519_privkey|0; - $msg = $msg|0; - $msg_len = $msg_len|0; - var $$alloca_mul = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $ed_keypair = 0, $ed_pubkey_point = 0, $sigbuf_out_len = 0; - var dest = 0, label = 0, sp = 0, src = 0, stop = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 240|0; - $ed_pubkey_point = sp + 8|0; - $ed_keypair = sp + 168|0; - $sigbuf_out_len = sp; - $0 = (($msg_len) + 64)|0; - $$alloca_mul = $0; - $1 = STACKTOP; STACKTOP = STACKTOP + ((((1*$$alloca_mul)|0)+15)&-16)|0;; - $2 = $sigbuf_out_len; - $3 = $2; - HEAP32[$3>>2] = 0; - $4 = (($2) + 4)|0; - $5 = $4; - HEAP32[$5>>2] = 0; - dest=$ed_keypair; src=$curve25519_privkey; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - _crypto_sign_ed25519_ref10_ge_scalarmult_base($ed_pubkey_point,$curve25519_privkey); - $6 = ((($ed_keypair)) + 32|0); - _crypto_sign_ed25519_ref10_ge_p3_tobytes($6,$ed_pubkey_point); - $7 = ((($ed_keypair)) + 63|0); - $8 = HEAP8[$7>>0]|0; - $9 = $8&255; - $10 = $9 & 128; - (_crypto_sign_modified($1,$sigbuf_out_len,$msg,$msg_len,0,$ed_keypair)|0); - dest=$signature_out; src=$1; stop=dest+64|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - $11 = ((($signature_out)) + 63|0); - $12 = HEAP8[$11>>0]|0; - $13 = $12&255; - $14 = $13 | $10; - $15 = $14&255; - HEAP8[$11>>0] = $15; - STACKTOP = sp;return; -} -function _curve25519_verify($signature,$curve25519_pubkey,$msg,$msg_len) { - $signature = $signature|0; - $curve25519_pubkey = $curve25519_pubkey|0; - $msg = $msg|0; - $msg_len = $msg_len|0; - var $$alloca_mul = 0, $$alloca_mul1 = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0; - var $ed_pubkey = 0, $ed_y = 0, $inv_mont_x_plus_one = 0, $mont_x = 0, $mont_x_minus_one = 0, $mont_x_plus_one = 0, $one = 0, $some_retval = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 288|0; - $mont_x = sp + 208|0; - $mont_x_minus_one = sp + 168|0; - $mont_x_plus_one = sp + 128|0; - $inv_mont_x_plus_one = sp + 88|0; - $one = sp + 48|0; - $ed_y = sp + 8|0; - $ed_pubkey = sp + 248|0; - $some_retval = sp; - $0 = (($msg_len) + 64)|0; - $$alloca_mul = $0; - $1 = STACKTOP; STACKTOP = STACKTOP + ((((1*$$alloca_mul)|0)+15)&-16)|0;; - $$alloca_mul1 = $0; - $2 = STACKTOP; STACKTOP = STACKTOP + ((((1*$$alloca_mul1)|0)+15)&-16)|0;; - _crypto_sign_ed25519_ref10_fe_frombytes($mont_x,$curve25519_pubkey); - _crypto_sign_ed25519_ref10_fe_1($one); - _crypto_sign_ed25519_ref10_fe_sub($mont_x_minus_one,$mont_x,$one); - _crypto_sign_ed25519_ref10_fe_add($mont_x_plus_one,$mont_x,$one); - _crypto_sign_ed25519_ref10_fe_invert($inv_mont_x_plus_one,$mont_x_plus_one); - _crypto_sign_ed25519_ref10_fe_mul($ed_y,$mont_x_minus_one,$inv_mont_x_plus_one); - _crypto_sign_ed25519_ref10_fe_tobytes($ed_pubkey,$ed_y); - $3 = ((($signature)) + 63|0); - $4 = HEAP8[$3>>0]|0; - $5 = $4&255; - $6 = $5 & 128; - $7 = ((($ed_pubkey)) + 31|0); - $8 = HEAP8[$7>>0]|0; - $9 = $8&255; - $10 = $9 | $6; - $11 = $10&255; - HEAP8[$7>>0] = $11; - $12 = HEAP8[$3>>0]|0; - $13 = $12&255; - $14 = $13 & 127; - $15 = $14&255; - HEAP8[$3>>0] = $15; - dest=$1; src=$signature; stop=dest+64|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - $16 = ((($1)) + 64|0); - _memcpy(($16|0),($msg|0),($msg_len|0))|0; - $17 = (_crypto_sign_edwards25519sha512batch_ref10_open($2,$some_retval,$1,$0,0,$ed_pubkey)|0); - STACKTOP = sp;return ($17|0); -} -function _crypto_hash_sha512_ref($output,$input,$0,$1) { - $output = $output|0; - $input = $input|0; - $0 = $0|0; - $1 = $1|0; - var $ctx = 0, label = 0, sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 208|0; - $ctx = sp; - _sph_sha512_init($ctx); - _sph_sha384($ctx,$input,$0); - _sph_sha512_close($ctx,$output); - STACKTOP = sp;return 0; -} -function _crypto_sign_modified($sm,$smlen,$m,$0,$1,$sk) { - $sm = $sm|0; - $smlen = $smlen|0; - $m = $m|0; - $0 = $0|0; - $1 = $1|0; - $sk = $sk|0; - var $10 = 0, $11 = 0, $12 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $R = 0, $hram = 0, $nonce = 0, $pk1 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 320|0; - $pk1 = sp + 224|0; - $nonce = sp + 256|0; - $hram = sp + 160|0; - $R = sp; - $2 = ((($sk)) + 32|0); - dest=$pk1; src=$2; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - $3 = (_i64Add(($0|0),($1|0),64,0)|0); - $4 = tempRet0; - $5 = $smlen; - $6 = $5; - HEAP32[$6>>2] = $3; - $7 = (($5) + 4)|0; - $8 = $7; - HEAP32[$8>>2] = $4; - $9 = ((($sm)) + 64|0); - _memmove(($9|0),($m|0),($0|0))|0; - $10 = ((($sm)) + 32|0); - _memmove(($10|0),($sk|0),32)|0; - $11 = (_i64Add(($0|0),($1|0),32,0)|0); - $12 = tempRet0; - (_crypto_hash_sha512_ref($nonce,$10,$11,$12)|0); - dest=$10; src=$pk1; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - _crypto_sign_ed25519_ref10_sc_reduce($nonce); - _crypto_sign_ed25519_ref10_ge_scalarmult_base($R,$nonce); - _crypto_sign_ed25519_ref10_ge_p3_tobytes($sm,$R); - (_crypto_hash_sha512_ref($hram,$sm,$3,$4)|0); - _crypto_sign_ed25519_ref10_sc_reduce($hram); - _crypto_sign_ed25519_ref10_sc_muladd($10,$hram,$sk,$nonce); - STACKTOP = sp;return 0; -} -function _curve25519_donna($mypublic,$secret,$basepoint) { - $mypublic = $mypublic|0; - $secret = $secret|0; - $basepoint = $basepoint|0; - var $bp = 0, $e = 0, $x = 0, $z = 0, $zmone = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 368|0; - $bp = sp + 248|0; - $x = sp + 168|0; - $z = sp + 80|0; - $zmone = sp; - $e = sp + 328|0; - dest=$e; src=$secret; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - _fexpand($bp,$basepoint); - _cmult($x,$z,$e,$bp); - _crecip($zmone,$z); - _fmul($z,$x,$zmone); - _fcontract($mypublic,$z); - STACKTOP = sp;return 0; -} -function _fexpand($output,$input) { - $output = $output|0; - $input = $input|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; - var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; - var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; - var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; - var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; - var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $3 = 0, $30 = 0, $31 = 0; - var $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0; - var $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0; - var $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0; - var $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP8[$input>>0]|0; - $1 = $0&255; - $2 = ((($input)) + 1|0); - $3 = HEAP8[$2>>0]|0; - $4 = $3&255; - $5 = (_bitshift64Shl(($4|0),0,8)|0); - $6 = tempRet0; - $7 = $5 | $1; - $8 = ((($input)) + 2|0); - $9 = HEAP8[$8>>0]|0; - $10 = $9&255; - $11 = (_bitshift64Shl(($10|0),0,16)|0); - $12 = tempRet0; - $13 = $7 | $11; - $14 = $6 | $12; - $15 = ((($input)) + 3|0); - $16 = HEAP8[$15>>0]|0; - $17 = $16&255; - $18 = (_bitshift64Shl(($17|0),0,24)|0); - $19 = tempRet0; - $20 = $18 & 50331648; - $21 = $13 | $20; - $22 = $output; - $23 = $22; - HEAP32[$23>>2] = $21; - $24 = (($22) + 4)|0; - $25 = $24; - HEAP32[$25>>2] = $14; - $26 = HEAP8[$15>>0]|0; - $27 = $26&255; - $28 = ((($input)) + 4|0); - $29 = HEAP8[$28>>0]|0; - $30 = $29&255; - $31 = (_bitshift64Shl(($30|0),0,8)|0); - $32 = tempRet0; - $33 = $31 | $27; - $34 = ((($input)) + 5|0); - $35 = HEAP8[$34>>0]|0; - $36 = $35&255; - $37 = (_bitshift64Shl(($36|0),0,16)|0); - $38 = tempRet0; - $39 = $33 | $37; - $40 = $32 | $38; - $41 = ((($input)) + 6|0); - $42 = HEAP8[$41>>0]|0; - $43 = $42&255; - $44 = (_bitshift64Shl(($43|0),0,24)|0); - $45 = tempRet0; - $46 = $39 | $44; - $47 = $40 | $45; - $48 = (_bitshift64Lshr(($46|0),($47|0),2)|0); - $49 = tempRet0; - $50 = $48 & 33554431; - $51 = ((($output)) + 8|0); - $52 = $51; - $53 = $52; - HEAP32[$53>>2] = $50; - $54 = (($52) + 4)|0; - $55 = $54; - HEAP32[$55>>2] = 0; - $56 = HEAP8[$41>>0]|0; - $57 = $56&255; - $58 = ((($input)) + 7|0); - $59 = HEAP8[$58>>0]|0; - $60 = $59&255; - $61 = (_bitshift64Shl(($60|0),0,8)|0); - $62 = tempRet0; - $63 = $61 | $57; - $64 = ((($input)) + 8|0); - $65 = HEAP8[$64>>0]|0; - $66 = $65&255; - $67 = (_bitshift64Shl(($66|0),0,16)|0); - $68 = tempRet0; - $69 = $63 | $67; - $70 = $62 | $68; - $71 = ((($input)) + 9|0); - $72 = HEAP8[$71>>0]|0; - $73 = $72&255; - $74 = (_bitshift64Shl(($73|0),0,24)|0); - $75 = tempRet0; - $76 = $69 | $74; - $77 = $70 | $75; - $78 = (_bitshift64Lshr(($76|0),($77|0),3)|0); - $79 = tempRet0; - $80 = $78 & 67108863; - $81 = ((($output)) + 16|0); - $82 = $81; - $83 = $82; - HEAP32[$83>>2] = $80; - $84 = (($82) + 4)|0; - $85 = $84; - HEAP32[$85>>2] = 0; - $86 = HEAP8[$71>>0]|0; - $87 = $86&255; - $88 = ((($input)) + 10|0); - $89 = HEAP8[$88>>0]|0; - $90 = $89&255; - $91 = (_bitshift64Shl(($90|0),0,8)|0); - $92 = tempRet0; - $93 = $91 | $87; - $94 = ((($input)) + 11|0); - $95 = HEAP8[$94>>0]|0; - $96 = $95&255; - $97 = (_bitshift64Shl(($96|0),0,16)|0); - $98 = tempRet0; - $99 = $93 | $97; - $100 = $92 | $98; - $101 = ((($input)) + 12|0); - $102 = HEAP8[$101>>0]|0; - $103 = $102&255; - $104 = (_bitshift64Shl(($103|0),0,24)|0); - $105 = tempRet0; - $106 = $99 | $104; - $107 = $100 | $105; - $108 = (_bitshift64Lshr(($106|0),($107|0),5)|0); - $109 = tempRet0; - $110 = $108 & 33554431; - $111 = ((($output)) + 24|0); - $112 = $111; - $113 = $112; - HEAP32[$113>>2] = $110; - $114 = (($112) + 4)|0; - $115 = $114; - HEAP32[$115>>2] = 0; - $116 = HEAP8[$101>>0]|0; - $117 = $116&255; - $118 = ((($input)) + 13|0); - $119 = HEAP8[$118>>0]|0; - $120 = $119&255; - $121 = (_bitshift64Shl(($120|0),0,8)|0); - $122 = tempRet0; - $123 = $121 | $117; - $124 = ((($input)) + 14|0); - $125 = HEAP8[$124>>0]|0; - $126 = $125&255; - $127 = (_bitshift64Shl(($126|0),0,16)|0); - $128 = tempRet0; - $129 = $123 | $127; - $130 = $122 | $128; - $131 = ((($input)) + 15|0); - $132 = HEAP8[$131>>0]|0; - $133 = $132&255; - $134 = (_bitshift64Shl(($133|0),0,24)|0); - $135 = tempRet0; - $136 = $129 | $134; - $137 = $130 | $135; - $138 = (_bitshift64Lshr(($136|0),($137|0),6)|0); - $139 = tempRet0; - $140 = $138 & 67108863; - $141 = ((($output)) + 32|0); - $142 = $141; - $143 = $142; - HEAP32[$143>>2] = $140; - $144 = (($142) + 4)|0; - $145 = $144; - HEAP32[$145>>2] = 0; - $146 = ((($input)) + 16|0); - $147 = HEAP8[$146>>0]|0; - $148 = $147&255; - $149 = ((($input)) + 17|0); - $150 = HEAP8[$149>>0]|0; - $151 = $150&255; - $152 = (_bitshift64Shl(($151|0),0,8)|0); - $153 = tempRet0; - $154 = $152 | $148; - $155 = ((($input)) + 18|0); - $156 = HEAP8[$155>>0]|0; - $157 = $156&255; - $158 = (_bitshift64Shl(($157|0),0,16)|0); - $159 = tempRet0; - $160 = $154 | $158; - $161 = $153 | $159; - $162 = ((($input)) + 19|0); - $163 = HEAP8[$162>>0]|0; - $164 = $163&255; - $165 = (_bitshift64Shl(($164|0),0,24)|0); - $166 = tempRet0; - $167 = $165 & 16777216; - $168 = $160 | $167; - $169 = ((($output)) + 40|0); - $170 = $169; - $171 = $170; - HEAP32[$171>>2] = $168; - $172 = (($170) + 4)|0; - $173 = $172; - HEAP32[$173>>2] = $161; - $174 = HEAP8[$162>>0]|0; - $175 = $174&255; - $176 = ((($input)) + 20|0); - $177 = HEAP8[$176>>0]|0; - $178 = $177&255; - $179 = (_bitshift64Shl(($178|0),0,8)|0); - $180 = tempRet0; - $181 = $179 | $175; - $182 = ((($input)) + 21|0); - $183 = HEAP8[$182>>0]|0; - $184 = $183&255; - $185 = (_bitshift64Shl(($184|0),0,16)|0); - $186 = tempRet0; - $187 = $181 | $185; - $188 = $180 | $186; - $189 = ((($input)) + 22|0); - $190 = HEAP8[$189>>0]|0; - $191 = $190&255; - $192 = (_bitshift64Shl(($191|0),0,24)|0); - $193 = tempRet0; - $194 = $187 | $192; - $195 = $188 | $193; - $196 = (_bitshift64Lshr(($194|0),($195|0),1)|0); - $197 = tempRet0; - $198 = $196 & 67108863; - $199 = ((($output)) + 48|0); - $200 = $199; - $201 = $200; - HEAP32[$201>>2] = $198; - $202 = (($200) + 4)|0; - $203 = $202; - HEAP32[$203>>2] = 0; - $204 = HEAP8[$189>>0]|0; - $205 = $204&255; - $206 = ((($input)) + 23|0); - $207 = HEAP8[$206>>0]|0; - $208 = $207&255; - $209 = (_bitshift64Shl(($208|0),0,8)|0); - $210 = tempRet0; - $211 = $209 | $205; - $212 = ((($input)) + 24|0); - $213 = HEAP8[$212>>0]|0; - $214 = $213&255; - $215 = (_bitshift64Shl(($214|0),0,16)|0); - $216 = tempRet0; - $217 = $211 | $215; - $218 = $210 | $216; - $219 = ((($input)) + 25|0); - $220 = HEAP8[$219>>0]|0; - $221 = $220&255; - $222 = (_bitshift64Shl(($221|0),0,24)|0); - $223 = tempRet0; - $224 = $217 | $222; - $225 = $218 | $223; - $226 = (_bitshift64Lshr(($224|0),($225|0),3)|0); - $227 = tempRet0; - $228 = $226 & 33554431; - $229 = ((($output)) + 56|0); - $230 = $229; - $231 = $230; - HEAP32[$231>>2] = $228; - $232 = (($230) + 4)|0; - $233 = $232; - HEAP32[$233>>2] = 0; - $234 = HEAP8[$219>>0]|0; - $235 = $234&255; - $236 = ((($input)) + 26|0); - $237 = HEAP8[$236>>0]|0; - $238 = $237&255; - $239 = (_bitshift64Shl(($238|0),0,8)|0); - $240 = tempRet0; - $241 = $239 | $235; - $242 = ((($input)) + 27|0); - $243 = HEAP8[$242>>0]|0; - $244 = $243&255; - $245 = (_bitshift64Shl(($244|0),0,16)|0); - $246 = tempRet0; - $247 = $241 | $245; - $248 = $240 | $246; - $249 = ((($input)) + 28|0); - $250 = HEAP8[$249>>0]|0; - $251 = $250&255; - $252 = (_bitshift64Shl(($251|0),0,24)|0); - $253 = tempRet0; - $254 = $247 | $252; - $255 = $248 | $253; - $256 = (_bitshift64Lshr(($254|0),($255|0),4)|0); - $257 = tempRet0; - $258 = $256 & 67108863; - $259 = ((($output)) + 64|0); - $260 = $259; - $261 = $260; - HEAP32[$261>>2] = $258; - $262 = (($260) + 4)|0; - $263 = $262; - HEAP32[$263>>2] = 0; - $264 = HEAP8[$249>>0]|0; - $265 = $264&255; - $266 = ((($input)) + 29|0); - $267 = HEAP8[$266>>0]|0; - $268 = $267&255; - $269 = (_bitshift64Shl(($268|0),0,8)|0); - $270 = tempRet0; - $271 = $269 | $265; - $272 = ((($input)) + 30|0); - $273 = HEAP8[$272>>0]|0; - $274 = $273&255; - $275 = (_bitshift64Shl(($274|0),0,16)|0); - $276 = tempRet0; - $277 = $271 | $275; - $278 = $270 | $276; - $279 = ((($input)) + 31|0); - $280 = HEAP8[$279>>0]|0; - $281 = $280&255; - $282 = (_bitshift64Shl(($281|0),0,24)|0); - $283 = tempRet0; - $284 = $277 | $282; - $285 = $278 | $283; - $286 = (_bitshift64Lshr(($284|0),($285|0),6)|0); - $287 = tempRet0; - $288 = $286 & 33554431; - $289 = ((($output)) + 72|0); - $290 = $289; - $291 = $290; - HEAP32[$291>>2] = $288; - $292 = (($290) + 4)|0; - $293 = $292; - HEAP32[$293>>2] = 0; - return; -} -function _cmult($resultx,$resultz,$n,$q) { - $resultx = $resultx|0; - $resultz = $resultz|0; - $n = $n|0; - $q = $q|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $3 = 0, $4 = 0; - var $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $a = 0, $b = 0, $byte$09 = 0, $c = 0, $d = 0, $e = 0, $exitcond = 0, $exitcond20 = 0, $f = 0, $g = 0, $h = 0, $i$018 = 0, $j$08 = 0, $nqpqx$019 = 0, $nqpqx$110 = 0; - var $nqpqx$110$lcssa = 0, $nqpqx$110$phi = 0, $nqpqx2$014 = 0, $nqpqx2$14 = 0, $nqpqx2$14$lcssa = 0, $nqpqx2$14$phi = 0, $nqpqz$013 = 0, $nqpqz$13 = 0, $nqpqz$13$lcssa = 0, $nqpqz$13$phi = 0, $nqpqz2$015 = 0, $nqpqz2$15 = 0, $nqpqz2$15$lcssa = 0, $nqpqz2$15$phi = 0, $nqx$011 = 0, $nqx$11 = 0, $nqx$11$lcssa = 0, $nqx$11$phi = 0, $nqx2$016 = 0, $nqx2$16 = 0; - var $nqx2$16$lcssa = 0, $nqx2$16$lcssa$lcssa = 0, $nqx2$16$phi = 0, $nqz$012 = 0, $nqz$12 = 0, $nqz$12$lcssa = 0, $nqz$12$phi = 0, $nqz2$017 = 0, $nqz2$17 = 0, $nqz2$17$lcssa = 0, $nqz2$17$lcssa$lcssa = 0, $nqz2$17$phi = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 1216|0; - $a = sp + 1064|0; - $b = sp + 912|0; - $c = sp + 760|0; - $d = sp + 608|0; - $e = sp + 456|0; - $f = sp + 304|0; - $g = sp + 152|0; - $h = sp; - _memset(($a|0),0,152)|0; - _memset(($b|0),0,152)|0; - $0 = $b; - $1 = $0; - HEAP32[$1>>2] = 1; - $2 = (($0) + 4)|0; - $3 = $2; - HEAP32[$3>>2] = 0; - _memset(($c|0),0,152)|0; - $4 = $c; - $5 = $4; - HEAP32[$5>>2] = 1; - $6 = (($4) + 4)|0; - $7 = $6; - HEAP32[$7>>2] = 0; - _memset(($d|0),0,152)|0; - _memset(($e|0),0,152)|0; - _memset(($f|0),0,152)|0; - $8 = $f; - $9 = $8; - HEAP32[$9>>2] = 1; - $10 = (($8) + 4)|0; - $11 = $10; - HEAP32[$11>>2] = 0; - _memset(($g|0),0,152)|0; - _memset(($h|0),0,152)|0; - $12 = $h; - $13 = $12; - HEAP32[$13>>2] = 1; - $14 = (($12) + 4)|0; - $15 = $14; - HEAP32[$15>>2] = 0; - dest=$a; src=$q; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - $i$018 = 0;$nqpqx$019 = $a;$nqpqx2$014 = $e;$nqpqz$013 = $b;$nqpqz2$015 = $f;$nqx$011 = $c;$nqx2$016 = $g;$nqz$012 = $d;$nqz2$017 = $h; - while(1) { - $16 = (31 - ($i$018))|0; - $17 = (($n) + ($16)|0); - $18 = HEAP8[$17>>0]|0; - $byte$09 = $18;$j$08 = 0;$nqpqx$110 = $nqpqx$019;$nqpqx2$14 = $nqpqx2$014;$nqpqz$13 = $nqpqz$013;$nqpqz2$15 = $nqpqz2$015;$nqx$11 = $nqx$011;$nqx2$16 = $nqx2$016;$nqz$12 = $nqz$012;$nqz2$17 = $nqz2$017; - while(1) { - $19 = $byte$09&255; - $20 = $19 >>> 7; - _swap_conditional($nqx$11,$nqpqx$110,$20,0); - _swap_conditional($nqz$12,$nqpqz$13,$20,0); - _fmonty($nqx2$16,$nqz2$17,$nqpqx2$14,$nqpqz2$15,$nqx$11,$nqz$12,$nqpqx$110,$nqpqz$13,$q); - _swap_conditional($nqx2$16,$nqpqx2$14,$20,0); - _swap_conditional($nqz2$17,$nqpqz2$15,$20,0); - $21 = $19 << 1; - $22 = $21&255; - $23 = (($j$08) + 1)|0; - $exitcond = ($23|0)==(8); - if ($exitcond) { - $nqpqx$110$lcssa = $nqpqx$110;$nqpqx2$14$lcssa = $nqpqx2$14;$nqpqz$13$lcssa = $nqpqz$13;$nqpqz2$15$lcssa = $nqpqz2$15;$nqx$11$lcssa = $nqx$11;$nqx2$16$lcssa = $nqx2$16;$nqz$12$lcssa = $nqz$12;$nqz2$17$lcssa = $nqz2$17; - break; - } else { - $nqz2$17$phi = $nqz$12;$nqz$12$phi = $nqz2$17;$nqx2$16$phi = $nqx$11;$nqx$11$phi = $nqx2$16;$nqpqz2$15$phi = $nqpqz$13;$nqpqz$13$phi = $nqpqz2$15;$nqpqx2$14$phi = $nqpqx$110;$nqpqx$110$phi = $nqpqx2$14;$byte$09 = $22;$j$08 = $23;$nqz2$17 = $nqz2$17$phi;$nqz$12 = $nqz$12$phi;$nqx2$16 = $nqx2$16$phi;$nqx$11 = $nqx$11$phi;$nqpqz2$15 = $nqpqz2$15$phi;$nqpqz$13 = $nqpqz$13$phi;$nqpqx2$14 = $nqpqx2$14$phi;$nqpqx$110 = $nqpqx$110$phi; - } - } - $24 = (($i$018) + 1)|0; - $exitcond20 = ($24|0)==(32); - if ($exitcond20) { - $nqx2$16$lcssa$lcssa = $nqx2$16$lcssa;$nqz2$17$lcssa$lcssa = $nqz2$17$lcssa; - break; - } else { - $i$018 = $24;$nqpqx$019 = $nqpqx2$14$lcssa;$nqpqx2$014 = $nqpqx$110$lcssa;$nqpqz$013 = $nqpqz2$15$lcssa;$nqpqz2$015 = $nqpqz$13$lcssa;$nqx$011 = $nqx2$16$lcssa;$nqx2$016 = $nqx$11$lcssa;$nqz$012 = $nqz2$17$lcssa;$nqz2$017 = $nqz$12$lcssa; - } - } - dest=$resultx; src=$nqx2$16$lcssa$lcssa; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - dest=$resultz; src=$nqz2$17$lcssa$lcssa; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - STACKTOP = sp;return; -} -function _crecip($out,$z) { - $out = $out|0; - $z = $z|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $i$33 = 0, $i$42 = 0, $i$51 = 0, $t0 = 0, $t1 = 0, $z11 = 0, $z2 = 0, $z2_100_0 = 0, $z2_10_0 = 0, $z2_20_0 = 0, $z2_50_0 = 0, $z2_5_0 = 0, $z9 = 0, label = 0; - var sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 800|0; - $z2 = sp + 720|0; - $z9 = sp + 640|0; - $z11 = sp + 560|0; - $z2_5_0 = sp + 480|0; - $z2_10_0 = sp + 400|0; - $z2_20_0 = sp + 320|0; - $z2_50_0 = sp + 240|0; - $z2_100_0 = sp + 160|0; - $t0 = sp + 80|0; - $t1 = sp; - _fsquare($z2,$z); - _fsquare($t1,$z2); - _fsquare($t0,$t1); - _fmul($z9,$t0,$z); - _fmul($z11,$z9,$z2); - _fsquare($t0,$z11); - _fmul($z2_5_0,$t0,$z9); - _fsquare($t0,$z2_5_0); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fmul($z2_10_0,$t0,$z2_5_0); - _fsquare($t0,$z2_10_0); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fmul($z2_20_0,$t1,$z2_10_0); - _fsquare($t0,$z2_20_0); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fmul($t0,$t1,$z2_20_0); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fmul($z2_50_0,$t0,$z2_10_0); - _fsquare($t0,$z2_50_0); - _fsquare($t1,$t0); - $i$33 = 2; - while(1) { - _fsquare($t0,$t1); - _fsquare($t1,$t0); - $0 = (($i$33) + 2)|0; - $1 = ($0|0)<(50); - if ($1) { - $i$33 = $0; - } else { - break; - } - } - _fmul($z2_100_0,$t1,$z2_50_0); - _fsquare($t1,$z2_100_0); - _fsquare($t0,$t1); - $i$42 = 2; - while(1) { - _fsquare($t1,$t0); - _fsquare($t0,$t1); - $2 = (($i$42) + 2)|0; - $3 = ($2|0)<(100); - if ($3) { - $i$42 = $2; - } else { - break; - } - } - _fmul($t1,$t0,$z2_100_0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - $i$51 = 2; - while(1) { - _fsquare($t0,$t1); - _fsquare($t1,$t0); - $4 = (($i$51) + 2)|0; - $5 = ($4|0)<(50); - if ($5) { - $i$51 = $4; - } else { - break; - } - } - _fmul($t0,$t1,$z2_50_0); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fmul($out,$t1,$z11); - STACKTOP = sp;return; -} -function _fmul($output,$in,$in2) { - $output = $output|0; - $in = $in|0; - $in2 = $in2|0; - var $t = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 160|0; - $t = sp; - _fproduct($t,$in,$in2); - _freduce_degree($t); - _freduce_coefficients($t); - dest=$output; src=$t; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - STACKTOP = sp;return; -} -function _fcontract($output,$input_limbs) { - $output = $output|0; - $input_limbs = $input_limbs|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; - var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; - var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; - var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; - var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; - var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; - var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; - var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; - var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; - var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; - var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; - var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; - var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0; - var $422 = 0, $423 = 0, $424 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0; - var $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0; - var $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0; - var $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $exitcond = 0, $exitcond$1 = 0, $exitcond13 = 0, $exitcond13$1 = 0, $i$18 = 0, $i$18$1 = 0, $i$26 = 0, $i$26$1 = 0, $input = 0, $mask$1 = 0, $mask$1$1 = 0, $mask$1$2 = 0, $mask$1$3 = 0, $mask$1$4 = 0, $mask$1$5 = 0; - var $mask$1$6 = 0, $mask$1$7 = 0, $mask$1$8 = 0, label = 0, sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 48|0; - $input = sp; - $0 = $input_limbs; - $1 = $0; - $2 = HEAP32[$1>>2]|0; - $3 = (($0) + 4)|0; - $4 = $3; - $5 = HEAP32[$4>>2]|0; - HEAP32[$input>>2] = $2; - $6 = ((($input_limbs)) + 8|0); - $7 = $6; - $8 = $7; - $9 = HEAP32[$8>>2]|0; - $10 = (($7) + 4)|0; - $11 = $10; - $12 = HEAP32[$11>>2]|0; - $13 = ((($input)) + 4|0); - HEAP32[$13>>2] = $9; - $14 = ((($input_limbs)) + 16|0); - $15 = $14; - $16 = $15; - $17 = HEAP32[$16>>2]|0; - $18 = (($15) + 4)|0; - $19 = $18; - $20 = HEAP32[$19>>2]|0; - $21 = ((($input)) + 8|0); - HEAP32[$21>>2] = $17; - $22 = ((($input_limbs)) + 24|0); - $23 = $22; - $24 = $23; - $25 = HEAP32[$24>>2]|0; - $26 = (($23) + 4)|0; - $27 = $26; - $28 = HEAP32[$27>>2]|0; - $29 = ((($input)) + 12|0); - HEAP32[$29>>2] = $25; - $30 = ((($input_limbs)) + 32|0); - $31 = $30; - $32 = $31; - $33 = HEAP32[$32>>2]|0; - $34 = (($31) + 4)|0; - $35 = $34; - $36 = HEAP32[$35>>2]|0; - $37 = ((($input)) + 16|0); - HEAP32[$37>>2] = $33; - $38 = ((($input_limbs)) + 40|0); - $39 = $38; - $40 = $39; - $41 = HEAP32[$40>>2]|0; - $42 = (($39) + 4)|0; - $43 = $42; - $44 = HEAP32[$43>>2]|0; - $45 = ((($input)) + 20|0); - HEAP32[$45>>2] = $41; - $46 = ((($input_limbs)) + 48|0); - $47 = $46; - $48 = $47; - $49 = HEAP32[$48>>2]|0; - $50 = (($47) + 4)|0; - $51 = $50; - $52 = HEAP32[$51>>2]|0; - $53 = ((($input)) + 24|0); - HEAP32[$53>>2] = $49; - $54 = ((($input_limbs)) + 56|0); - $55 = $54; - $56 = $55; - $57 = HEAP32[$56>>2]|0; - $58 = (($55) + 4)|0; - $59 = $58; - $60 = HEAP32[$59>>2]|0; - $61 = ((($input)) + 28|0); - HEAP32[$61>>2] = $57; - $62 = ((($input_limbs)) + 64|0); - $63 = $62; - $64 = $63; - $65 = HEAP32[$64>>2]|0; - $66 = (($63) + 4)|0; - $67 = $66; - $68 = HEAP32[$67>>2]|0; - $69 = ((($input)) + 32|0); - HEAP32[$69>>2] = $65; - $70 = ((($input_limbs)) + 72|0); - $71 = $70; - $72 = $71; - $73 = HEAP32[$72>>2]|0; - $74 = (($71) + 4)|0; - $75 = $74; - $76 = HEAP32[$75>>2]|0; - $77 = ((($input)) + 36|0); - HEAP32[$77>>2] = $73; - $78 = ((($input)) + 36|0); - $i$18 = 0; - while(1) { - $79 = $i$18 & 1; - $80 = ($79|0)==(0); - $81 = (($input) + ($i$18<<2)|0); - $82 = HEAP32[$81>>2]|0; - $83 = $82 >> 31; - $84 = $83 & $82; - if ($80) { - $92 = $84 >> 26; - $93 = Math_imul($92, -67108864)|0; - $94 = (($93) + ($82))|0; - HEAP32[$81>>2] = $94; - $95 = (($i$18) + 1)|0; - $96 = (($input) + ($95<<2)|0); - $97 = HEAP32[$96>>2]|0; - $98 = (($97) + ($92))|0; - HEAP32[$96>>2] = $98; - } else { - $85 = $84 >> 25; - $86 = Math_imul($85, -33554432)|0; - $87 = (($86) + ($82))|0; - HEAP32[$81>>2] = $87; - $88 = (($i$18) + 1)|0; - $89 = (($input) + ($88<<2)|0); - $90 = HEAP32[$89>>2]|0; - $91 = (($90) + ($85))|0; - HEAP32[$89>>2] = $91; - } - $99 = (($i$18) + 1)|0; - $exitcond13 = ($99|0)==(9); - if ($exitcond13) { - break; - } else { - $i$18 = $99; - } - } - $100 = HEAP32[$78>>2]|0; - $101 = $100 >> 31; - $102 = $101 & $100; - $103 = $102 >> 25; - $104 = Math_imul($103, -33554432)|0; - $105 = (($104) + ($100))|0; - HEAP32[$78>>2] = $105; - $106 = HEAP32[$input>>2]|0; - $107 = ($103*19)|0; - $108 = (($107) + ($106))|0; - HEAP32[$input>>2] = $108; - $i$18$1 = 0; - while(1) { - $404 = $i$18$1 & 1; - $405 = ($404|0)==(0); - $406 = (($input) + ($i$18$1<<2)|0); - $407 = HEAP32[$406>>2]|0; - $408 = $407 >> 31; - $409 = $408 & $407; - if ($405) { - $417 = $409 >> 26; - $418 = Math_imul($417, -67108864)|0; - $419 = (($418) + ($407))|0; - HEAP32[$406>>2] = $419; - $420 = (($i$18$1) + 1)|0; - $421 = (($input) + ($420<<2)|0); - $422 = HEAP32[$421>>2]|0; - $423 = (($422) + ($417))|0; - HEAP32[$421>>2] = $423; - } else { - $410 = $409 >> 25; - $411 = Math_imul($410, -33554432)|0; - $412 = (($411) + ($407))|0; - HEAP32[$406>>2] = $412; - $413 = (($i$18$1) + 1)|0; - $414 = (($input) + ($413<<2)|0); - $415 = HEAP32[$414>>2]|0; - $416 = (($415) + ($410))|0; - HEAP32[$414>>2] = $416; - } - $424 = (($i$18$1) + 1)|0; - $exitcond13$1 = ($424|0)==(9); - if ($exitcond13$1) { - break; - } else { - $i$18$1 = $424; - } - } - $109 = HEAP32[$78>>2]|0; - $110 = $109 >> 31; - $111 = $110 & $109; - $112 = $111 >> 25; - $113 = Math_imul($112, -33554432)|0; - $114 = (($113) + ($109))|0; - HEAP32[$78>>2] = $114; - $115 = HEAP32[$input>>2]|0; - $116 = ($112*19)|0; - $117 = (($116) + ($115))|0; - $118 = $117 >> 31; - $119 = $118 & $117; - $120 = $119 >> 26; - $121 = Math_imul($120, -67108864)|0; - $122 = (($121) + ($117))|0; - HEAP32[$input>>2] = $122; - $123 = ((($input)) + 4|0); - $124 = HEAP32[$123>>2]|0; - $125 = (($120) + ($124))|0; - HEAP32[$123>>2] = $125; - $126 = ((($input)) + 36|0); - $i$26 = 0; - while(1) { - $127 = $i$26 & 1; - $128 = ($127|0)==(0); - $129 = (($input) + ($i$26<<2)|0); - $130 = HEAP32[$129>>2]|0; - if ($128) { - $137 = $130 >> 26; - $138 = $130 & 67108863; - HEAP32[$129>>2] = $138; - $139 = (($i$26) + 1)|0; - $140 = (($input) + ($139<<2)|0); - $141 = HEAP32[$140>>2]|0; - $142 = (($141) + ($137))|0; - HEAP32[$140>>2] = $142; - } else { - $131 = $130 >> 25; - $132 = $130 & 33554431; - HEAP32[$129>>2] = $132; - $133 = (($i$26) + 1)|0; - $134 = (($input) + ($133<<2)|0); - $135 = HEAP32[$134>>2]|0; - $136 = (($135) + ($131))|0; - HEAP32[$134>>2] = $136; - } - $143 = (($i$26) + 1)|0; - $exitcond = ($143|0)==(9); - if ($exitcond) { - break; - } else { - $i$26 = $143; - } - } - $144 = HEAP32[$126>>2]|0; - $145 = $144 >> 25; - $146 = $144 & 33554431; - HEAP32[$126>>2] = $146; - $147 = ($145*19)|0; - $148 = HEAP32[$input>>2]|0; - $149 = (($147) + ($148))|0; - HEAP32[$input>>2] = $149; - $i$26$1 = 0; - while(1) { - $387 = $i$26$1 & 1; - $388 = ($387|0)==(0); - $389 = (($input) + ($i$26$1<<2)|0); - $390 = HEAP32[$389>>2]|0; - if ($388) { - $397 = $390 >> 26; - $398 = $390 & 67108863; - HEAP32[$389>>2] = $398; - $399 = (($i$26$1) + 1)|0; - $400 = (($input) + ($399<<2)|0); - $401 = HEAP32[$400>>2]|0; - $402 = (($401) + ($397))|0; - HEAP32[$400>>2] = $402; - } else { - $391 = $390 >> 25; - $392 = $390 & 33554431; - HEAP32[$389>>2] = $392; - $393 = (($i$26$1) + 1)|0; - $394 = (($input) + ($393<<2)|0); - $395 = HEAP32[$394>>2]|0; - $396 = (($395) + ($391))|0; - HEAP32[$394>>2] = $396; - } - $403 = (($i$26$1) + 1)|0; - $exitcond$1 = ($403|0)==(9); - if ($exitcond$1) { - break; - } else { - $i$26$1 = $403; - } - } - $150 = HEAP32[$126>>2]|0; - $151 = $150 >> 25; - $152 = $150 & 33554431; - HEAP32[$126>>2] = $152; - $153 = ($151*19)|0; - $154 = HEAP32[$input>>2]|0; - $155 = (($153) + ($154))|0; - HEAP32[$input>>2] = $155; - $156 = (_s32_gte($155)|0); - $157 = ((($input)) + 4|0); - $158 = HEAP32[$157>>2]|0; - $159 = (_s32_eq($158,33554431)|0); - $mask$1 = $159 & $156; - $160 = ((($input)) + 8|0); - $161 = HEAP32[$160>>2]|0; - $162 = (_s32_eq($161,67108863)|0); - $mask$1$1 = $162 & $mask$1; - $163 = ((($input)) + 12|0); - $164 = HEAP32[$163>>2]|0; - $165 = (_s32_eq($164,33554431)|0); - $mask$1$2 = $165 & $mask$1$1; - $166 = ((($input)) + 16|0); - $167 = HEAP32[$166>>2]|0; - $168 = (_s32_eq($167,67108863)|0); - $mask$1$3 = $168 & $mask$1$2; - $169 = ((($input)) + 20|0); - $170 = HEAP32[$169>>2]|0; - $171 = (_s32_eq($170,33554431)|0); - $mask$1$4 = $171 & $mask$1$3; - $172 = ((($input)) + 24|0); - $173 = HEAP32[$172>>2]|0; - $174 = (_s32_eq($173,67108863)|0); - $mask$1$5 = $174 & $mask$1$4; - $175 = ((($input)) + 28|0); - $176 = HEAP32[$175>>2]|0; - $177 = (_s32_eq($176,33554431)|0); - $mask$1$6 = $177 & $mask$1$5; - $178 = ((($input)) + 32|0); - $179 = HEAP32[$178>>2]|0; - $180 = (_s32_eq($179,67108863)|0); - $mask$1$7 = $180 & $mask$1$6; - $181 = ((($input)) + 36|0); - $182 = HEAP32[$181>>2]|0; - $183 = (_s32_eq($182,33554431)|0); - $mask$1$8 = $183 & $mask$1$7; - $184 = $mask$1$8 & 67108845; - $185 = HEAP32[$input>>2]|0; - $186 = (($185) - ($184))|0; - HEAP32[$input>>2] = $186; - $187 = $mask$1$8 & 67108863; - $188 = $mask$1$8 & 33554431; - $189 = ((($input)) + 4|0); - $190 = HEAP32[$189>>2]|0; - $191 = (($190) - ($188))|0; - HEAP32[$189>>2] = $191; - $192 = ((($input)) + 8|0); - $193 = HEAP32[$192>>2]|0; - $194 = (($193) - ($187))|0; - HEAP32[$192>>2] = $194; - $195 = ((($input)) + 12|0); - $196 = HEAP32[$195>>2]|0; - $197 = (($196) - ($188))|0; - HEAP32[$195>>2] = $197; - $198 = ((($input)) + 16|0); - $199 = HEAP32[$198>>2]|0; - $200 = (($199) - ($187))|0; - HEAP32[$198>>2] = $200; - $201 = ((($input)) + 20|0); - $202 = HEAP32[$201>>2]|0; - $203 = (($202) - ($188))|0; - HEAP32[$201>>2] = $203; - $204 = ((($input)) + 24|0); - $205 = HEAP32[$204>>2]|0; - $206 = (($205) - ($187))|0; - HEAP32[$204>>2] = $206; - $207 = ((($input)) + 28|0); - $208 = HEAP32[$207>>2]|0; - $209 = (($208) - ($188))|0; - HEAP32[$207>>2] = $209; - $210 = ((($input)) + 32|0); - $211 = HEAP32[$210>>2]|0; - $212 = (($211) - ($187))|0; - HEAP32[$210>>2] = $212; - $213 = ((($input)) + 36|0); - $214 = HEAP32[$213>>2]|0; - $215 = (($214) - ($188))|0; - HEAP32[$213>>2] = $215; - $216 = HEAP32[$123>>2]|0; - $217 = $216 << 2; - HEAP32[$123>>2] = $217; - $218 = ((($input)) + 8|0); - $219 = HEAP32[$218>>2]|0; - $220 = $219 << 3; - HEAP32[$218>>2] = $220; - $221 = ((($input)) + 12|0); - $222 = HEAP32[$221>>2]|0; - $223 = $222 << 5; - HEAP32[$221>>2] = $223; - $224 = ((($input)) + 16|0); - $225 = HEAP32[$224>>2]|0; - $226 = $225 << 6; - HEAP32[$224>>2] = $226; - $227 = ((($input)) + 24|0); - $228 = HEAP32[$227>>2]|0; - $229 = $228 << 1; - HEAP32[$227>>2] = $229; - $230 = ((($input)) + 28|0); - $231 = HEAP32[$230>>2]|0; - $232 = $231 << 3; - HEAP32[$230>>2] = $232; - $233 = ((($input)) + 32|0); - $234 = HEAP32[$233>>2]|0; - $235 = $234 << 4; - HEAP32[$233>>2] = $235; - $236 = ((($input)) + 36|0); - $237 = HEAP32[$236>>2]|0; - $238 = $237 << 6; - HEAP32[$236>>2] = $238; - HEAP8[$output>>0] = 0; - $239 = ((($output)) + 16|0); - HEAP8[$239>>0] = 0; - $240 = HEAP32[$input>>2]|0; - $241 = HEAP8[$output>>0]|0; - $242 = $241&255; - $243 = $242 | $240; - $244 = $243&255; - HEAP8[$output>>0] = $244; - $245 = HEAP32[$input>>2]|0; - $246 = $245 >>> 8; - $247 = $246&255; - $248 = ((($output)) + 1|0); - HEAP8[$248>>0] = $247; - $249 = HEAP32[$input>>2]|0; - $250 = $249 >>> 16; - $251 = $250&255; - $252 = ((($output)) + 2|0); - HEAP8[$252>>0] = $251; - $253 = HEAP32[$input>>2]|0; - $254 = $253 >>> 24; - $255 = ((($output)) + 3|0); - $256 = HEAP32[$123>>2]|0; - $257 = $254 | $256; - $258 = $257&255; - HEAP8[$255>>0] = $258; - $259 = HEAP32[$123>>2]|0; - $260 = $259 >>> 8; - $261 = $260&255; - $262 = ((($output)) + 4|0); - HEAP8[$262>>0] = $261; - $263 = HEAP32[$123>>2]|0; - $264 = $263 >>> 16; - $265 = $264&255; - $266 = ((($output)) + 5|0); - HEAP8[$266>>0] = $265; - $267 = HEAP32[$123>>2]|0; - $268 = $267 >>> 24; - $269 = ((($output)) + 6|0); - $270 = HEAP32[$218>>2]|0; - $271 = $268 | $270; - $272 = $271&255; - HEAP8[$269>>0] = $272; - $273 = HEAP32[$218>>2]|0; - $274 = $273 >>> 8; - $275 = $274&255; - $276 = ((($output)) + 7|0); - HEAP8[$276>>0] = $275; - $277 = HEAP32[$218>>2]|0; - $278 = $277 >>> 16; - $279 = $278&255; - $280 = ((($output)) + 8|0); - HEAP8[$280>>0] = $279; - $281 = HEAP32[$218>>2]|0; - $282 = $281 >>> 24; - $283 = ((($output)) + 9|0); - $284 = HEAP32[$221>>2]|0; - $285 = $282 | $284; - $286 = $285&255; - HEAP8[$283>>0] = $286; - $287 = HEAP32[$221>>2]|0; - $288 = $287 >>> 8; - $289 = $288&255; - $290 = ((($output)) + 10|0); - HEAP8[$290>>0] = $289; - $291 = HEAP32[$221>>2]|0; - $292 = $291 >>> 16; - $293 = $292&255; - $294 = ((($output)) + 11|0); - HEAP8[$294>>0] = $293; - $295 = HEAP32[$221>>2]|0; - $296 = $295 >>> 24; - $297 = ((($output)) + 12|0); - $298 = HEAP32[$224>>2]|0; - $299 = $296 | $298; - $300 = $299&255; - HEAP8[$297>>0] = $300; - $301 = HEAP32[$224>>2]|0; - $302 = $301 >>> 8; - $303 = $302&255; - $304 = ((($output)) + 13|0); - HEAP8[$304>>0] = $303; - $305 = HEAP32[$224>>2]|0; - $306 = $305 >>> 16; - $307 = $306&255; - $308 = ((($output)) + 14|0); - HEAP8[$308>>0] = $307; - $309 = HEAP32[$224>>2]|0; - $310 = $309 >>> 24; - $311 = $310&255; - $312 = ((($output)) + 15|0); - HEAP8[$312>>0] = $311; - $313 = ((($input)) + 20|0); - $314 = HEAP32[$313>>2]|0; - $315 = HEAP8[$239>>0]|0; - $316 = $315&255; - $317 = $316 | $314; - $318 = $317&255; - HEAP8[$239>>0] = $318; - $319 = HEAP32[$313>>2]|0; - $320 = $319 >>> 8; - $321 = $320&255; - $322 = ((($output)) + 17|0); - HEAP8[$322>>0] = $321; - $323 = HEAP32[$313>>2]|0; - $324 = $323 >>> 16; - $325 = $324&255; - $326 = ((($output)) + 18|0); - HEAP8[$326>>0] = $325; - $327 = HEAP32[$313>>2]|0; - $328 = $327 >>> 24; - $329 = ((($output)) + 19|0); - $330 = HEAP32[$227>>2]|0; - $331 = $328 | $330; - $332 = $331&255; - HEAP8[$329>>0] = $332; - $333 = HEAP32[$227>>2]|0; - $334 = $333 >>> 8; - $335 = $334&255; - $336 = ((($output)) + 20|0); - HEAP8[$336>>0] = $335; - $337 = HEAP32[$227>>2]|0; - $338 = $337 >>> 16; - $339 = $338&255; - $340 = ((($output)) + 21|0); - HEAP8[$340>>0] = $339; - $341 = HEAP32[$227>>2]|0; - $342 = $341 >>> 24; - $343 = ((($output)) + 22|0); - $344 = HEAP32[$230>>2]|0; - $345 = $342 | $344; - $346 = $345&255; - HEAP8[$343>>0] = $346; - $347 = HEAP32[$230>>2]|0; - $348 = $347 >>> 8; - $349 = $348&255; - $350 = ((($output)) + 23|0); - HEAP8[$350>>0] = $349; - $351 = HEAP32[$230>>2]|0; - $352 = $351 >>> 16; - $353 = $352&255; - $354 = ((($output)) + 24|0); - HEAP8[$354>>0] = $353; - $355 = HEAP32[$230>>2]|0; - $356 = $355 >>> 24; - $357 = ((($output)) + 25|0); - $358 = HEAP32[$233>>2]|0; - $359 = $356 | $358; - $360 = $359&255; - HEAP8[$357>>0] = $360; - $361 = HEAP32[$233>>2]|0; - $362 = $361 >>> 8; - $363 = $362&255; - $364 = ((($output)) + 26|0); - HEAP8[$364>>0] = $363; - $365 = HEAP32[$233>>2]|0; - $366 = $365 >>> 16; - $367 = $366&255; - $368 = ((($output)) + 27|0); - HEAP8[$368>>0] = $367; - $369 = HEAP32[$233>>2]|0; - $370 = $369 >>> 24; - $371 = ((($output)) + 28|0); - $372 = HEAP32[$236>>2]|0; - $373 = $370 | $372; - $374 = $373&255; - HEAP8[$371>>0] = $374; - $375 = HEAP32[$236>>2]|0; - $376 = $375 >>> 8; - $377 = $376&255; - $378 = ((($output)) + 29|0); - HEAP8[$378>>0] = $377; - $379 = HEAP32[$236>>2]|0; - $380 = $379 >>> 16; - $381 = $380&255; - $382 = ((($output)) + 30|0); - HEAP8[$382>>0] = $381; - $383 = HEAP32[$236>>2]|0; - $384 = $383 >>> 24; - $385 = $384&255; - $386 = ((($output)) + 31|0); - HEAP8[$386>>0] = $385; - STACKTOP = sp;return; -} -function _s32_gte($a) { - $a = $a|0; - var $0 = 0, $1 = 0, $2 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = (($a) + -67108845)|0; - $1 = $0 >> 31; - $2 = $1 ^ -1; - return ($2|0); -} -function _s32_eq($a,$b) { - $a = $a|0; - $b = $b|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = $a ^ -1; - $1 = $0 ^ $b; - $2 = $1 << 16; - $3 = $2 & $1; - $4 = $3 << 8; - $5 = $4 & $3; - $6 = $5 << 4; - $7 = $6 & $5; - $8 = $7 << 2; - $9 = $8 & $7; - $10 = $9 << 1; - $11 = $10 & $9; - $12 = $11 >> 31; - return ($12|0); -} -function _fproduct($output,$in2,$in) { - $output = $output|0; - $in2 = $in2|0; - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; - var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0; - var $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0; - var $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0; - var $107 = 0, $1070 = 0, $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0; - var $1088 = 0, $1089 = 0, $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0; - var $1105 = 0, $1106 = 0, $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $1119 = 0, $112 = 0, $1120 = 0, $1121 = 0, $1122 = 0; - var $1123 = 0, $1124 = 0, $1125 = 0, $1126 = 0, $1127 = 0, $1128 = 0, $1129 = 0, $113 = 0, $1130 = 0, $1131 = 0, $1132 = 0, $1133 = 0, $1134 = 0, $1135 = 0, $1136 = 0, $1137 = 0, $1138 = 0, $1139 = 0, $114 = 0, $1140 = 0; - var $1141 = 0, $1142 = 0, $1143 = 0, $1144 = 0, $1145 = 0, $1146 = 0, $1147 = 0, $1148 = 0, $1149 = 0, $115 = 0, $1150 = 0, $1151 = 0, $1152 = 0, $1153 = 0, $1154 = 0, $1155 = 0, $1156 = 0, $1157 = 0, $1158 = 0, $1159 = 0; - var $116 = 0, $1160 = 0, $1161 = 0, $1162 = 0, $1163 = 0, $1164 = 0, $1165 = 0, $1166 = 0, $1167 = 0, $1168 = 0, $1169 = 0, $117 = 0, $1170 = 0, $1171 = 0, $1172 = 0, $1173 = 0, $1174 = 0, $1175 = 0, $1176 = 0, $1177 = 0; - var $1178 = 0, $1179 = 0, $118 = 0, $1180 = 0, $1181 = 0, $1182 = 0, $1183 = 0, $1184 = 0, $1185 = 0, $1186 = 0, $1187 = 0, $1188 = 0, $1189 = 0, $119 = 0, $1190 = 0, $1191 = 0, $1192 = 0, $1193 = 0, $1194 = 0, $1195 = 0; - var $1196 = 0, $1197 = 0, $1198 = 0, $1199 = 0, $12 = 0, $120 = 0, $1200 = 0, $1201 = 0, $1202 = 0, $1203 = 0, $1204 = 0, $1205 = 0, $1206 = 0, $1207 = 0, $1208 = 0, $1209 = 0, $121 = 0, $1210 = 0, $1211 = 0, $1212 = 0; - var $1213 = 0, $1214 = 0, $1215 = 0, $1216 = 0, $1217 = 0, $1218 = 0, $1219 = 0, $122 = 0, $1220 = 0, $1221 = 0, $1222 = 0, $1223 = 0, $1224 = 0, $1225 = 0, $1226 = 0, $1227 = 0, $1228 = 0, $1229 = 0, $123 = 0, $1230 = 0; - var $1231 = 0, $1232 = 0, $1233 = 0, $1234 = 0, $1235 = 0, $1236 = 0, $1237 = 0, $1238 = 0, $1239 = 0, $124 = 0, $1240 = 0, $1241 = 0, $1242 = 0, $1243 = 0, $1244 = 0, $1245 = 0, $1246 = 0, $1247 = 0, $1248 = 0, $1249 = 0; - var $125 = 0, $1250 = 0, $1251 = 0, $1252 = 0, $1253 = 0, $1254 = 0, $1255 = 0, $1256 = 0, $1257 = 0, $1258 = 0, $1259 = 0, $126 = 0, $1260 = 0, $1261 = 0, $1262 = 0, $1263 = 0, $1264 = 0, $1265 = 0, $1266 = 0, $1267 = 0; - var $1268 = 0, $1269 = 0, $127 = 0, $1270 = 0, $1271 = 0, $1272 = 0, $1273 = 0, $1274 = 0, $1275 = 0, $1276 = 0, $1277 = 0, $1278 = 0, $1279 = 0, $128 = 0, $1280 = 0, $1281 = 0, $1282 = 0, $1283 = 0, $1284 = 0, $1285 = 0; - var $1286 = 0, $1287 = 0, $1288 = 0, $1289 = 0, $129 = 0, $1290 = 0, $1291 = 0, $1292 = 0, $1293 = 0, $1294 = 0, $1295 = 0, $1296 = 0, $1297 = 0, $1298 = 0, $1299 = 0, $13 = 0, $130 = 0, $1300 = 0, $1301 = 0, $1302 = 0; - var $1303 = 0, $1304 = 0, $1305 = 0, $1306 = 0, $1307 = 0, $1308 = 0, $1309 = 0, $131 = 0, $1310 = 0, $1311 = 0, $1312 = 0, $1313 = 0, $1314 = 0, $1315 = 0, $1316 = 0, $1317 = 0, $1318 = 0, $1319 = 0, $132 = 0, $1320 = 0; - var $1321 = 0, $1322 = 0, $1323 = 0, $1324 = 0, $1325 = 0, $1326 = 0, $1327 = 0, $1328 = 0, $1329 = 0, $133 = 0, $1330 = 0, $1331 = 0, $1332 = 0, $1333 = 0, $1334 = 0, $1335 = 0, $1336 = 0, $1337 = 0, $1338 = 0, $1339 = 0; - var $134 = 0, $1340 = 0, $1341 = 0, $1342 = 0, $1343 = 0, $1344 = 0, $1345 = 0, $1346 = 0, $1347 = 0, $1348 = 0, $1349 = 0, $135 = 0, $1350 = 0, $1351 = 0, $1352 = 0, $1353 = 0, $1354 = 0, $1355 = 0, $1356 = 0, $1357 = 0; - var $1358 = 0, $1359 = 0, $136 = 0, $1360 = 0, $1361 = 0, $1362 = 0, $1363 = 0, $1364 = 0, $1365 = 0, $1366 = 0, $1367 = 0, $1368 = 0, $1369 = 0, $137 = 0, $1370 = 0, $1371 = 0, $1372 = 0, $1373 = 0, $1374 = 0, $1375 = 0; - var $1376 = 0, $1377 = 0, $1378 = 0, $1379 = 0, $138 = 0, $1380 = 0, $1381 = 0, $1382 = 0, $1383 = 0, $1384 = 0, $1385 = 0, $1386 = 0, $1387 = 0, $1388 = 0, $1389 = 0, $139 = 0, $1390 = 0, $1391 = 0, $1392 = 0, $1393 = 0; - var $1394 = 0, $1395 = 0, $1396 = 0, $1397 = 0, $1398 = 0, $1399 = 0, $14 = 0, $140 = 0, $1400 = 0, $1401 = 0, $1402 = 0, $1403 = 0, $1404 = 0, $1405 = 0, $1406 = 0, $1407 = 0, $1408 = 0, $1409 = 0, $141 = 0, $1410 = 0; - var $1411 = 0, $1412 = 0, $1413 = 0, $1414 = 0, $1415 = 0, $1416 = 0, $1417 = 0, $1418 = 0, $1419 = 0, $142 = 0, $1420 = 0, $1421 = 0, $1422 = 0, $1423 = 0, $1424 = 0, $1425 = 0, $1426 = 0, $1427 = 0, $1428 = 0, $1429 = 0; - var $143 = 0, $1430 = 0, $1431 = 0, $1432 = 0, $1433 = 0, $1434 = 0, $1435 = 0, $1436 = 0, $1437 = 0, $1438 = 0, $1439 = 0, $144 = 0, $1440 = 0, $1441 = 0, $1442 = 0, $1443 = 0, $1444 = 0, $1445 = 0, $1446 = 0, $1447 = 0; - var $1448 = 0, $1449 = 0, $145 = 0, $1450 = 0, $1451 = 0, $1452 = 0, $1453 = 0, $1454 = 0, $1455 = 0, $1456 = 0, $1457 = 0, $1458 = 0, $1459 = 0, $146 = 0, $1460 = 0, $1461 = 0, $1462 = 0, $1463 = 0, $1464 = 0, $1465 = 0; - var $1466 = 0, $1467 = 0, $1468 = 0, $1469 = 0, $147 = 0, $1470 = 0, $1471 = 0, $1472 = 0, $1473 = 0, $1474 = 0, $1475 = 0, $1476 = 0, $1477 = 0, $1478 = 0, $1479 = 0, $148 = 0, $1480 = 0, $1481 = 0, $1482 = 0, $1483 = 0; - var $1484 = 0, $1485 = 0, $1486 = 0, $1487 = 0, $1488 = 0, $1489 = 0, $149 = 0, $1490 = 0, $1491 = 0, $1492 = 0, $1493 = 0, $1494 = 0, $1495 = 0, $1496 = 0, $1497 = 0, $1498 = 0, $1499 = 0, $15 = 0, $150 = 0, $1500 = 0; - var $1501 = 0, $1502 = 0, $1503 = 0, $1504 = 0, $1505 = 0, $1506 = 0, $1507 = 0, $1508 = 0, $1509 = 0, $151 = 0, $1510 = 0, $1511 = 0, $1512 = 0, $1513 = 0, $1514 = 0, $1515 = 0, $1516 = 0, $1517 = 0, $1518 = 0, $1519 = 0; - var $152 = 0, $1520 = 0, $1521 = 0, $1522 = 0, $1523 = 0, $1524 = 0, $1525 = 0, $1526 = 0, $1527 = 0, $1528 = 0, $1529 = 0, $153 = 0, $1530 = 0, $1531 = 0, $1532 = 0, $1533 = 0, $1534 = 0, $1535 = 0, $1536 = 0, $1537 = 0; - var $1538 = 0, $1539 = 0, $154 = 0, $1540 = 0, $1541 = 0, $1542 = 0, $1543 = 0, $1544 = 0, $1545 = 0, $1546 = 0, $1547 = 0, $1548 = 0, $1549 = 0, $155 = 0, $1550 = 0, $1551 = 0, $1552 = 0, $1553 = 0, $1554 = 0, $1555 = 0; - var $1556 = 0, $1557 = 0, $1558 = 0, $1559 = 0, $156 = 0, $1560 = 0, $1561 = 0, $1562 = 0, $1563 = 0, $1564 = 0, $1565 = 0, $1566 = 0, $1567 = 0, $1568 = 0, $1569 = 0, $157 = 0, $1570 = 0, $1571 = 0, $1572 = 0, $1573 = 0; - var $1574 = 0, $1575 = 0, $1576 = 0, $1577 = 0, $1578 = 0, $1579 = 0, $158 = 0, $1580 = 0, $1581 = 0, $1582 = 0, $1583 = 0, $1584 = 0, $1585 = 0, $1586 = 0, $1587 = 0, $1588 = 0, $1589 = 0, $159 = 0, $1590 = 0, $1591 = 0; - var $1592 = 0, $1593 = 0, $1594 = 0, $1595 = 0, $1596 = 0, $1597 = 0, $1598 = 0, $1599 = 0, $16 = 0, $160 = 0, $1600 = 0, $1601 = 0, $1602 = 0, $1603 = 0, $1604 = 0, $1605 = 0, $1606 = 0, $1607 = 0, $1608 = 0, $1609 = 0; - var $161 = 0, $1610 = 0, $1611 = 0, $1612 = 0, $1613 = 0, $1614 = 0, $1615 = 0, $1616 = 0, $1617 = 0, $1618 = 0, $1619 = 0, $162 = 0, $1620 = 0, $1621 = 0, $1622 = 0, $1623 = 0, $1624 = 0, $1625 = 0, $1626 = 0, $1627 = 0; - var $1628 = 0, $1629 = 0, $163 = 0, $1630 = 0, $1631 = 0, $1632 = 0, $1633 = 0, $1634 = 0, $1635 = 0, $1636 = 0, $1637 = 0, $1638 = 0, $1639 = 0, $164 = 0, $1640 = 0, $1641 = 0, $1642 = 0, $1643 = 0, $1644 = 0, $1645 = 0; - var $1646 = 0, $1647 = 0, $1648 = 0, $1649 = 0, $165 = 0, $1650 = 0, $1651 = 0, $1652 = 0, $1653 = 0, $1654 = 0, $1655 = 0, $1656 = 0, $1657 = 0, $1658 = 0, $1659 = 0, $166 = 0, $1660 = 0, $1661 = 0, $1662 = 0, $1663 = 0; - var $1664 = 0, $1665 = 0, $1666 = 0, $1667 = 0, $1668 = 0, $1669 = 0, $167 = 0, $1670 = 0, $1671 = 0, $1672 = 0, $1673 = 0, $1674 = 0, $1675 = 0, $1676 = 0, $1677 = 0, $1678 = 0, $1679 = 0, $168 = 0, $1680 = 0, $1681 = 0; - var $1682 = 0, $1683 = 0, $1684 = 0, $1685 = 0, $1686 = 0, $1687 = 0, $1688 = 0, $1689 = 0, $169 = 0, $1690 = 0, $1691 = 0, $1692 = 0, $1693 = 0, $1694 = 0, $1695 = 0, $1696 = 0, $1697 = 0, $1698 = 0, $1699 = 0, $17 = 0; - var $170 = 0, $1700 = 0, $1701 = 0, $1702 = 0, $1703 = 0, $1704 = 0, $1705 = 0, $1706 = 0, $1707 = 0, $1708 = 0, $1709 = 0, $171 = 0, $1710 = 0, $1711 = 0, $1712 = 0, $1713 = 0, $1714 = 0, $1715 = 0, $1716 = 0, $1717 = 0; - var $1718 = 0, $1719 = 0, $172 = 0, $1720 = 0, $1721 = 0, $1722 = 0, $1723 = 0, $1724 = 0, $1725 = 0, $1726 = 0, $1727 = 0, $1728 = 0, $1729 = 0, $173 = 0, $1730 = 0, $1731 = 0, $1732 = 0, $1733 = 0, $1734 = 0, $1735 = 0; - var $1736 = 0, $1737 = 0, $1738 = 0, $1739 = 0, $174 = 0, $1740 = 0, $1741 = 0, $1742 = 0, $1743 = 0, $1744 = 0, $1745 = 0, $1746 = 0, $1747 = 0, $1748 = 0, $1749 = 0, $175 = 0, $1750 = 0, $1751 = 0, $1752 = 0, $1753 = 0; - var $1754 = 0, $1755 = 0, $1756 = 0, $1757 = 0, $1758 = 0, $1759 = 0, $176 = 0, $1760 = 0, $1761 = 0, $1762 = 0, $1763 = 0, $1764 = 0, $1765 = 0, $1766 = 0, $1767 = 0, $1768 = 0, $1769 = 0, $177 = 0, $1770 = 0, $1771 = 0; - var $1772 = 0, $1773 = 0, $1774 = 0, $1775 = 0, $1776 = 0, $1777 = 0, $1778 = 0, $1779 = 0, $178 = 0, $1780 = 0, $1781 = 0, $1782 = 0, $1783 = 0, $1784 = 0, $1785 = 0, $1786 = 0, $1787 = 0, $1788 = 0, $1789 = 0, $179 = 0; - var $1790 = 0, $1791 = 0, $1792 = 0, $1793 = 0, $1794 = 0, $1795 = 0, $1796 = 0, $1797 = 0, $1798 = 0, $1799 = 0, $18 = 0, $180 = 0, $1800 = 0, $1801 = 0, $1802 = 0, $1803 = 0, $1804 = 0, $1805 = 0, $1806 = 0, $1807 = 0; - var $1808 = 0, $1809 = 0, $181 = 0, $1810 = 0, $1811 = 0, $1812 = 0, $1813 = 0, $1814 = 0, $1815 = 0, $1816 = 0, $1817 = 0, $1818 = 0, $1819 = 0, $182 = 0, $1820 = 0, $1821 = 0, $1822 = 0, $1823 = 0, $1824 = 0, $1825 = 0; - var $1826 = 0, $1827 = 0, $1828 = 0, $1829 = 0, $183 = 0, $1830 = 0, $1831 = 0, $1832 = 0, $1833 = 0, $1834 = 0, $1835 = 0, $1836 = 0, $1837 = 0, $1838 = 0, $1839 = 0, $184 = 0, $1840 = 0, $1841 = 0, $1842 = 0, $1843 = 0; - var $1844 = 0, $1845 = 0, $1846 = 0, $1847 = 0, $1848 = 0, $1849 = 0, $185 = 0, $1850 = 0, $1851 = 0, $1852 = 0, $1853 = 0, $1854 = 0, $1855 = 0, $1856 = 0, $1857 = 0, $1858 = 0, $1859 = 0, $186 = 0, $1860 = 0, $1861 = 0; - var $1862 = 0, $1863 = 0, $1864 = 0, $1865 = 0, $1866 = 0, $1867 = 0, $1868 = 0, $1869 = 0, $187 = 0, $1870 = 0, $1871 = 0, $1872 = 0, $1873 = 0, $1874 = 0, $1875 = 0, $1876 = 0, $1877 = 0, $1878 = 0, $1879 = 0, $188 = 0; - var $1880 = 0, $1881 = 0, $1882 = 0, $1883 = 0, $1884 = 0, $1885 = 0, $1886 = 0, $1887 = 0, $1888 = 0, $1889 = 0, $189 = 0, $1890 = 0, $1891 = 0, $1892 = 0, $1893 = 0, $1894 = 0, $1895 = 0, $1896 = 0, $1897 = 0, $1898 = 0; - var $1899 = 0, $19 = 0, $190 = 0, $1900 = 0, $1901 = 0, $1902 = 0, $1903 = 0, $1904 = 0, $1905 = 0, $1906 = 0, $1907 = 0, $1908 = 0, $1909 = 0, $191 = 0, $1910 = 0, $1911 = 0, $1912 = 0, $1913 = 0, $1914 = 0, $1915 = 0; - var $1916 = 0, $1917 = 0, $1918 = 0, $1919 = 0, $192 = 0, $1920 = 0, $1921 = 0, $1922 = 0, $1923 = 0, $1924 = 0, $1925 = 0, $1926 = 0, $1927 = 0, $1928 = 0, $1929 = 0, $193 = 0, $1930 = 0, $1931 = 0, $1932 = 0, $1933 = 0; - var $1934 = 0, $1935 = 0, $1936 = 0, $1937 = 0, $1938 = 0, $1939 = 0, $194 = 0, $1940 = 0, $1941 = 0, $1942 = 0, $1943 = 0, $1944 = 0, $1945 = 0, $1946 = 0, $1947 = 0, $1948 = 0, $1949 = 0, $195 = 0, $1950 = 0, $1951 = 0; - var $1952 = 0, $1953 = 0, $1954 = 0, $1955 = 0, $1956 = 0, $1957 = 0, $1958 = 0, $1959 = 0, $196 = 0, $1960 = 0, $1961 = 0, $1962 = 0, $1963 = 0, $1964 = 0, $1965 = 0, $1966 = 0, $1967 = 0, $1968 = 0, $1969 = 0, $197 = 0; - var $1970 = 0, $1971 = 0, $1972 = 0, $1973 = 0, $1974 = 0, $1975 = 0, $1976 = 0, $1977 = 0, $1978 = 0, $1979 = 0, $198 = 0, $1980 = 0, $1981 = 0, $1982 = 0, $1983 = 0, $1984 = 0, $1985 = 0, $1986 = 0, $1987 = 0, $1988 = 0; - var $1989 = 0, $199 = 0, $1990 = 0, $1991 = 0, $1992 = 0, $1993 = 0, $1994 = 0, $1995 = 0, $1996 = 0, $1997 = 0, $1998 = 0, $1999 = 0, $2 = 0, $20 = 0, $200 = 0, $2000 = 0, $2001 = 0, $2002 = 0, $2003 = 0, $2004 = 0; - var $2005 = 0, $2006 = 0, $2007 = 0, $2008 = 0, $2009 = 0, $201 = 0, $2010 = 0, $2011 = 0, $2012 = 0, $2013 = 0, $2014 = 0, $2015 = 0, $2016 = 0, $2017 = 0, $2018 = 0, $2019 = 0, $202 = 0, $2020 = 0, $2021 = 0, $2022 = 0; - var $2023 = 0, $2024 = 0, $2025 = 0, $2026 = 0, $2027 = 0, $2028 = 0, $2029 = 0, $203 = 0, $2030 = 0, $2031 = 0, $2032 = 0, $2033 = 0, $2034 = 0, $2035 = 0, $2036 = 0, $2037 = 0, $2038 = 0, $2039 = 0, $204 = 0, $2040 = 0; - var $2041 = 0, $2042 = 0, $2043 = 0, $2044 = 0, $2045 = 0, $2046 = 0, $2047 = 0, $2048 = 0, $2049 = 0, $205 = 0, $2050 = 0, $2051 = 0, $2052 = 0, $2053 = 0, $2054 = 0, $2055 = 0, $2056 = 0, $2057 = 0, $2058 = 0, $2059 = 0; - var $206 = 0, $2060 = 0, $2061 = 0, $2062 = 0, $2063 = 0, $2064 = 0, $2065 = 0, $2066 = 0, $2067 = 0, $2068 = 0, $2069 = 0, $207 = 0, $2070 = 0, $2071 = 0, $2072 = 0, $2073 = 0, $2074 = 0, $2075 = 0, $2076 = 0, $2077 = 0; - var $2078 = 0, $2079 = 0, $208 = 0, $2080 = 0, $2081 = 0, $2082 = 0, $2083 = 0, $2084 = 0, $2085 = 0, $2086 = 0, $2087 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0; - var $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0; - var $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0; - var $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0; - var $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0; - var $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0; - var $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0; - var $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0; - var $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0; - var $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0; - var $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0; - var $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0; - var $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0; - var $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0; - var $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0; - var $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0; - var $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0; - var $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0; - var $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0; - var $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0; - var $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0; - var $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0; - var $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0; - var $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0; - var $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0; - var $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0; - var $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0; - var $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0; - var $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0; - var $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0; - var $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0; - var $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0; - var $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0; - var $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0; - var $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0; - var $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0; - var $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0; - var $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0; - var $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0; - var $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0; - var $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0; - var $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0; - var $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0, $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0; - var $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0; - var $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = $in2; - $1 = $0; - $2 = HEAP32[$1>>2]|0; - $3 = (($0) + 4)|0; - $4 = $3; - $5 = HEAP32[$4>>2]|0; - $6 = (_bitshift64Ashr(0,($2|0),32)|0); - $7 = tempRet0; - $8 = $in; - $9 = $8; - $10 = HEAP32[$9>>2]|0; - $11 = (($8) + 4)|0; - $12 = $11; - $13 = HEAP32[$12>>2]|0; - $14 = (_bitshift64Ashr(0,($10|0),32)|0); - $15 = tempRet0; - $16 = (___muldi3(($14|0),($15|0),($6|0),($7|0))|0); - $17 = tempRet0; - $18 = $output; - $19 = $18; - HEAP32[$19>>2] = $16; - $20 = (($18) + 4)|0; - $21 = $20; - HEAP32[$21>>2] = $17; - $22 = $in2; - $23 = $22; - $24 = HEAP32[$23>>2]|0; - $25 = (($22) + 4)|0; - $26 = $25; - $27 = HEAP32[$26>>2]|0; - $28 = (_bitshift64Ashr(0,($24|0),32)|0); - $29 = tempRet0; - $30 = ((($in)) + 8|0); - $31 = $30; - $32 = $31; - $33 = HEAP32[$32>>2]|0; - $34 = (($31) + 4)|0; - $35 = $34; - $36 = HEAP32[$35>>2]|0; - $37 = (_bitshift64Ashr(0,($33|0),32)|0); - $38 = tempRet0; - $39 = (___muldi3(($37|0),($38|0),($28|0),($29|0))|0); - $40 = tempRet0; - $41 = ((($in2)) + 8|0); - $42 = $41; - $43 = $42; - $44 = HEAP32[$43>>2]|0; - $45 = (($42) + 4)|0; - $46 = $45; - $47 = HEAP32[$46>>2]|0; - $48 = (_bitshift64Ashr(0,($44|0),32)|0); - $49 = tempRet0; - $50 = $in; - $51 = $50; - $52 = HEAP32[$51>>2]|0; - $53 = (($50) + 4)|0; - $54 = $53; - $55 = HEAP32[$54>>2]|0; - $56 = (_bitshift64Ashr(0,($52|0),32)|0); - $57 = tempRet0; - $58 = (___muldi3(($56|0),($57|0),($48|0),($49|0))|0); - $59 = tempRet0; - $60 = (_i64Add(($58|0),($59|0),($39|0),($40|0))|0); - $61 = tempRet0; - $62 = ((($output)) + 8|0); - $63 = $62; - $64 = $63; - HEAP32[$64>>2] = $60; - $65 = (($63) + 4)|0; - $66 = $65; - HEAP32[$66>>2] = $61; - $67 = $41; - $68 = $67; - $69 = HEAP32[$68>>2]|0; - $70 = (($67) + 4)|0; - $71 = $70; - $72 = HEAP32[$71>>2]|0; - $73 = (_bitshift64Ashr(0,($69|0),31)|0); - $74 = tempRet0; - $75 = $30; - $76 = $75; - $77 = HEAP32[$76>>2]|0; - $78 = (($75) + 4)|0; - $79 = $78; - $80 = HEAP32[$79>>2]|0; - $81 = (_bitshift64Ashr(0,($77|0),32)|0); - $82 = tempRet0; - $83 = (___muldi3(($81|0),($82|0),($73|0),($74|0))|0); - $84 = tempRet0; - $85 = $in2; - $86 = $85; - $87 = HEAP32[$86>>2]|0; - $88 = (($85) + 4)|0; - $89 = $88; - $90 = HEAP32[$89>>2]|0; - $91 = (_bitshift64Ashr(0,($87|0),32)|0); - $92 = tempRet0; - $93 = ((($in)) + 16|0); - $94 = $93; - $95 = $94; - $96 = HEAP32[$95>>2]|0; - $97 = (($94) + 4)|0; - $98 = $97; - $99 = HEAP32[$98>>2]|0; - $100 = (_bitshift64Ashr(0,($96|0),32)|0); - $101 = tempRet0; - $102 = (___muldi3(($100|0),($101|0),($91|0),($92|0))|0); - $103 = tempRet0; - $104 = (_i64Add(($102|0),($103|0),($83|0),($84|0))|0); - $105 = tempRet0; - $106 = ((($in2)) + 16|0); - $107 = $106; - $108 = $107; - $109 = HEAP32[$108>>2]|0; - $110 = (($107) + 4)|0; - $111 = $110; - $112 = HEAP32[$111>>2]|0; - $113 = (_bitshift64Ashr(0,($109|0),32)|0); - $114 = tempRet0; - $115 = $in; - $116 = $115; - $117 = HEAP32[$116>>2]|0; - $118 = (($115) + 4)|0; - $119 = $118; - $120 = HEAP32[$119>>2]|0; - $121 = (_bitshift64Ashr(0,($117|0),32)|0); - $122 = tempRet0; - $123 = (___muldi3(($121|0),($122|0),($113|0),($114|0))|0); - $124 = tempRet0; - $125 = (_i64Add(($104|0),($105|0),($123|0),($124|0))|0); - $126 = tempRet0; - $127 = ((($output)) + 16|0); - $128 = $127; - $129 = $128; - HEAP32[$129>>2] = $125; - $130 = (($128) + 4)|0; - $131 = $130; - HEAP32[$131>>2] = $126; - $132 = $41; - $133 = $132; - $134 = HEAP32[$133>>2]|0; - $135 = (($132) + 4)|0; - $136 = $135; - $137 = HEAP32[$136>>2]|0; - $138 = (_bitshift64Ashr(0,($134|0),32)|0); - $139 = tempRet0; - $140 = $93; - $141 = $140; - $142 = HEAP32[$141>>2]|0; - $143 = (($140) + 4)|0; - $144 = $143; - $145 = HEAP32[$144>>2]|0; - $146 = (_bitshift64Ashr(0,($142|0),32)|0); - $147 = tempRet0; - $148 = (___muldi3(($146|0),($147|0),($138|0),($139|0))|0); - $149 = tempRet0; - $150 = $106; - $151 = $150; - $152 = HEAP32[$151>>2]|0; - $153 = (($150) + 4)|0; - $154 = $153; - $155 = HEAP32[$154>>2]|0; - $156 = (_bitshift64Ashr(0,($152|0),32)|0); - $157 = tempRet0; - $158 = $30; - $159 = $158; - $160 = HEAP32[$159>>2]|0; - $161 = (($158) + 4)|0; - $162 = $161; - $163 = HEAP32[$162>>2]|0; - $164 = (_bitshift64Ashr(0,($160|0),32)|0); - $165 = tempRet0; - $166 = (___muldi3(($164|0),($165|0),($156|0),($157|0))|0); - $167 = tempRet0; - $168 = (_i64Add(($166|0),($167|0),($148|0),($149|0))|0); - $169 = tempRet0; - $170 = $in2; - $171 = $170; - $172 = HEAP32[$171>>2]|0; - $173 = (($170) + 4)|0; - $174 = $173; - $175 = HEAP32[$174>>2]|0; - $176 = (_bitshift64Ashr(0,($172|0),32)|0); - $177 = tempRet0; - $178 = ((($in)) + 24|0); - $179 = $178; - $180 = $179; - $181 = HEAP32[$180>>2]|0; - $182 = (($179) + 4)|0; - $183 = $182; - $184 = HEAP32[$183>>2]|0; - $185 = (_bitshift64Ashr(0,($181|0),32)|0); - $186 = tempRet0; - $187 = (___muldi3(($185|0),($186|0),($176|0),($177|0))|0); - $188 = tempRet0; - $189 = (_i64Add(($168|0),($169|0),($187|0),($188|0))|0); - $190 = tempRet0; - $191 = ((($in2)) + 24|0); - $192 = $191; - $193 = $192; - $194 = HEAP32[$193>>2]|0; - $195 = (($192) + 4)|0; - $196 = $195; - $197 = HEAP32[$196>>2]|0; - $198 = (_bitshift64Ashr(0,($194|0),32)|0); - $199 = tempRet0; - $200 = $in; - $201 = $200; - $202 = HEAP32[$201>>2]|0; - $203 = (($200) + 4)|0; - $204 = $203; - $205 = HEAP32[$204>>2]|0; - $206 = (_bitshift64Ashr(0,($202|0),32)|0); - $207 = tempRet0; - $208 = (___muldi3(($206|0),($207|0),($198|0),($199|0))|0); - $209 = tempRet0; - $210 = (_i64Add(($189|0),($190|0),($208|0),($209|0))|0); - $211 = tempRet0; - $212 = ((($output)) + 24|0); - $213 = $212; - $214 = $213; - HEAP32[$214>>2] = $210; - $215 = (($213) + 4)|0; - $216 = $215; - HEAP32[$216>>2] = $211; - $217 = $106; - $218 = $217; - $219 = HEAP32[$218>>2]|0; - $220 = (($217) + 4)|0; - $221 = $220; - $222 = HEAP32[$221>>2]|0; - $223 = (_bitshift64Ashr(0,($219|0),32)|0); - $224 = tempRet0; - $225 = $93; - $226 = $225; - $227 = HEAP32[$226>>2]|0; - $228 = (($225) + 4)|0; - $229 = $228; - $230 = HEAP32[$229>>2]|0; - $231 = (_bitshift64Ashr(0,($227|0),32)|0); - $232 = tempRet0; - $233 = (___muldi3(($231|0),($232|0),($223|0),($224|0))|0); - $234 = tempRet0; - $235 = $41; - $236 = $235; - $237 = HEAP32[$236>>2]|0; - $238 = (($235) + 4)|0; - $239 = $238; - $240 = HEAP32[$239>>2]|0; - $241 = (_bitshift64Ashr(0,($237|0),32)|0); - $242 = tempRet0; - $243 = $178; - $244 = $243; - $245 = HEAP32[$244>>2]|0; - $246 = (($243) + 4)|0; - $247 = $246; - $248 = HEAP32[$247>>2]|0; - $249 = (_bitshift64Ashr(0,($245|0),32)|0); - $250 = tempRet0; - $251 = (___muldi3(($249|0),($250|0),($241|0),($242|0))|0); - $252 = tempRet0; - $253 = $191; - $254 = $253; - $255 = HEAP32[$254>>2]|0; - $256 = (($253) + 4)|0; - $257 = $256; - $258 = HEAP32[$257>>2]|0; - $259 = (_bitshift64Ashr(0,($255|0),32)|0); - $260 = tempRet0; - $261 = $30; - $262 = $261; - $263 = HEAP32[$262>>2]|0; - $264 = (($261) + 4)|0; - $265 = $264; - $266 = HEAP32[$265>>2]|0; - $267 = (_bitshift64Ashr(0,($263|0),32)|0); - $268 = tempRet0; - $269 = (___muldi3(($267|0),($268|0),($259|0),($260|0))|0); - $270 = tempRet0; - $271 = (_i64Add(($269|0),($270|0),($251|0),($252|0))|0); - $272 = tempRet0; - $273 = (_bitshift64Shl(($271|0),($272|0),1)|0); - $274 = tempRet0; - $275 = (_i64Add(($273|0),($274|0),($233|0),($234|0))|0); - $276 = tempRet0; - $277 = $in2; - $278 = $277; - $279 = HEAP32[$278>>2]|0; - $280 = (($277) + 4)|0; - $281 = $280; - $282 = HEAP32[$281>>2]|0; - $283 = (_bitshift64Ashr(0,($279|0),32)|0); - $284 = tempRet0; - $285 = ((($in)) + 32|0); - $286 = $285; - $287 = $286; - $288 = HEAP32[$287>>2]|0; - $289 = (($286) + 4)|0; - $290 = $289; - $291 = HEAP32[$290>>2]|0; - $292 = (_bitshift64Ashr(0,($288|0),32)|0); - $293 = tempRet0; - $294 = (___muldi3(($292|0),($293|0),($283|0),($284|0))|0); - $295 = tempRet0; - $296 = (_i64Add(($275|0),($276|0),($294|0),($295|0))|0); - $297 = tempRet0; - $298 = ((($in2)) + 32|0); - $299 = $298; - $300 = $299; - $301 = HEAP32[$300>>2]|0; - $302 = (($299) + 4)|0; - $303 = $302; - $304 = HEAP32[$303>>2]|0; - $305 = (_bitshift64Ashr(0,($301|0),32)|0); - $306 = tempRet0; - $307 = $in; - $308 = $307; - $309 = HEAP32[$308>>2]|0; - $310 = (($307) + 4)|0; - $311 = $310; - $312 = HEAP32[$311>>2]|0; - $313 = (_bitshift64Ashr(0,($309|0),32)|0); - $314 = tempRet0; - $315 = (___muldi3(($313|0),($314|0),($305|0),($306|0))|0); - $316 = tempRet0; - $317 = (_i64Add(($296|0),($297|0),($315|0),($316|0))|0); - $318 = tempRet0; - $319 = ((($output)) + 32|0); - $320 = $319; - $321 = $320; - HEAP32[$321>>2] = $317; - $322 = (($320) + 4)|0; - $323 = $322; - HEAP32[$323>>2] = $318; - $324 = $106; - $325 = $324; - $326 = HEAP32[$325>>2]|0; - $327 = (($324) + 4)|0; - $328 = $327; - $329 = HEAP32[$328>>2]|0; - $330 = (_bitshift64Ashr(0,($326|0),32)|0); - $331 = tempRet0; - $332 = $178; - $333 = $332; - $334 = HEAP32[$333>>2]|0; - $335 = (($332) + 4)|0; - $336 = $335; - $337 = HEAP32[$336>>2]|0; - $338 = (_bitshift64Ashr(0,($334|0),32)|0); - $339 = tempRet0; - $340 = (___muldi3(($338|0),($339|0),($330|0),($331|0))|0); - $341 = tempRet0; - $342 = $191; - $343 = $342; - $344 = HEAP32[$343>>2]|0; - $345 = (($342) + 4)|0; - $346 = $345; - $347 = HEAP32[$346>>2]|0; - $348 = (_bitshift64Ashr(0,($344|0),32)|0); - $349 = tempRet0; - $350 = $93; - $351 = $350; - $352 = HEAP32[$351>>2]|0; - $353 = (($350) + 4)|0; - $354 = $353; - $355 = HEAP32[$354>>2]|0; - $356 = (_bitshift64Ashr(0,($352|0),32)|0); - $357 = tempRet0; - $358 = (___muldi3(($356|0),($357|0),($348|0),($349|0))|0); - $359 = tempRet0; - $360 = (_i64Add(($358|0),($359|0),($340|0),($341|0))|0); - $361 = tempRet0; - $362 = $41; - $363 = $362; - $364 = HEAP32[$363>>2]|0; - $365 = (($362) + 4)|0; - $366 = $365; - $367 = HEAP32[$366>>2]|0; - $368 = (_bitshift64Ashr(0,($364|0),32)|0); - $369 = tempRet0; - $370 = $285; - $371 = $370; - $372 = HEAP32[$371>>2]|0; - $373 = (($370) + 4)|0; - $374 = $373; - $375 = HEAP32[$374>>2]|0; - $376 = (_bitshift64Ashr(0,($372|0),32)|0); - $377 = tempRet0; - $378 = (___muldi3(($376|0),($377|0),($368|0),($369|0))|0); - $379 = tempRet0; - $380 = (_i64Add(($360|0),($361|0),($378|0),($379|0))|0); - $381 = tempRet0; - $382 = $298; - $383 = $382; - $384 = HEAP32[$383>>2]|0; - $385 = (($382) + 4)|0; - $386 = $385; - $387 = HEAP32[$386>>2]|0; - $388 = (_bitshift64Ashr(0,($384|0),32)|0); - $389 = tempRet0; - $390 = $30; - $391 = $390; - $392 = HEAP32[$391>>2]|0; - $393 = (($390) + 4)|0; - $394 = $393; - $395 = HEAP32[$394>>2]|0; - $396 = (_bitshift64Ashr(0,($392|0),32)|0); - $397 = tempRet0; - $398 = (___muldi3(($396|0),($397|0),($388|0),($389|0))|0); - $399 = tempRet0; - $400 = (_i64Add(($380|0),($381|0),($398|0),($399|0))|0); - $401 = tempRet0; - $402 = $in2; - $403 = $402; - $404 = HEAP32[$403>>2]|0; - $405 = (($402) + 4)|0; - $406 = $405; - $407 = HEAP32[$406>>2]|0; - $408 = (_bitshift64Ashr(0,($404|0),32)|0); - $409 = tempRet0; - $410 = ((($in)) + 40|0); - $411 = $410; - $412 = $411; - $413 = HEAP32[$412>>2]|0; - $414 = (($411) + 4)|0; - $415 = $414; - $416 = HEAP32[$415>>2]|0; - $417 = (_bitshift64Ashr(0,($413|0),32)|0); - $418 = tempRet0; - $419 = (___muldi3(($417|0),($418|0),($408|0),($409|0))|0); - $420 = tempRet0; - $421 = (_i64Add(($400|0),($401|0),($419|0),($420|0))|0); - $422 = tempRet0; - $423 = ((($in2)) + 40|0); - $424 = $423; - $425 = $424; - $426 = HEAP32[$425>>2]|0; - $427 = (($424) + 4)|0; - $428 = $427; - $429 = HEAP32[$428>>2]|0; - $430 = (_bitshift64Ashr(0,($426|0),32)|0); - $431 = tempRet0; - $432 = $in; - $433 = $432; - $434 = HEAP32[$433>>2]|0; - $435 = (($432) + 4)|0; - $436 = $435; - $437 = HEAP32[$436>>2]|0; - $438 = (_bitshift64Ashr(0,($434|0),32)|0); - $439 = tempRet0; - $440 = (___muldi3(($438|0),($439|0),($430|0),($431|0))|0); - $441 = tempRet0; - $442 = (_i64Add(($421|0),($422|0),($440|0),($441|0))|0); - $443 = tempRet0; - $444 = ((($output)) + 40|0); - $445 = $444; - $446 = $445; - HEAP32[$446>>2] = $442; - $447 = (($445) + 4)|0; - $448 = $447; - HEAP32[$448>>2] = $443; - $449 = $191; - $450 = $449; - $451 = HEAP32[$450>>2]|0; - $452 = (($449) + 4)|0; - $453 = $452; - $454 = HEAP32[$453>>2]|0; - $455 = (_bitshift64Ashr(0,($451|0),32)|0); - $456 = tempRet0; - $457 = $178; - $458 = $457; - $459 = HEAP32[$458>>2]|0; - $460 = (($457) + 4)|0; - $461 = $460; - $462 = HEAP32[$461>>2]|0; - $463 = (_bitshift64Ashr(0,($459|0),32)|0); - $464 = tempRet0; - $465 = (___muldi3(($463|0),($464|0),($455|0),($456|0))|0); - $466 = tempRet0; - $467 = $41; - $468 = $467; - $469 = HEAP32[$468>>2]|0; - $470 = (($467) + 4)|0; - $471 = $470; - $472 = HEAP32[$471>>2]|0; - $473 = (_bitshift64Ashr(0,($469|0),32)|0); - $474 = tempRet0; - $475 = $410; - $476 = $475; - $477 = HEAP32[$476>>2]|0; - $478 = (($475) + 4)|0; - $479 = $478; - $480 = HEAP32[$479>>2]|0; - $481 = (_bitshift64Ashr(0,($477|0),32)|0); - $482 = tempRet0; - $483 = (___muldi3(($481|0),($482|0),($473|0),($474|0))|0); - $484 = tempRet0; - $485 = (_i64Add(($483|0),($484|0),($465|0),($466|0))|0); - $486 = tempRet0; - $487 = $423; - $488 = $487; - $489 = HEAP32[$488>>2]|0; - $490 = (($487) + 4)|0; - $491 = $490; - $492 = HEAP32[$491>>2]|0; - $493 = (_bitshift64Ashr(0,($489|0),32)|0); - $494 = tempRet0; - $495 = $30; - $496 = $495; - $497 = HEAP32[$496>>2]|0; - $498 = (($495) + 4)|0; - $499 = $498; - $500 = HEAP32[$499>>2]|0; - $501 = (_bitshift64Ashr(0,($497|0),32)|0); - $502 = tempRet0; - $503 = (___muldi3(($501|0),($502|0),($493|0),($494|0))|0); - $504 = tempRet0; - $505 = (_i64Add(($485|0),($486|0),($503|0),($504|0))|0); - $506 = tempRet0; - $507 = (_bitshift64Shl(($505|0),($506|0),1)|0); - $508 = tempRet0; - $509 = $106; - $510 = $509; - $511 = HEAP32[$510>>2]|0; - $512 = (($509) + 4)|0; - $513 = $512; - $514 = HEAP32[$513>>2]|0; - $515 = (_bitshift64Ashr(0,($511|0),32)|0); - $516 = tempRet0; - $517 = $285; - $518 = $517; - $519 = HEAP32[$518>>2]|0; - $520 = (($517) + 4)|0; - $521 = $520; - $522 = HEAP32[$521>>2]|0; - $523 = (_bitshift64Ashr(0,($519|0),32)|0); - $524 = tempRet0; - $525 = (___muldi3(($523|0),($524|0),($515|0),($516|0))|0); - $526 = tempRet0; - $527 = (_i64Add(($507|0),($508|0),($525|0),($526|0))|0); - $528 = tempRet0; - $529 = $298; - $530 = $529; - $531 = HEAP32[$530>>2]|0; - $532 = (($529) + 4)|0; - $533 = $532; - $534 = HEAP32[$533>>2]|0; - $535 = (_bitshift64Ashr(0,($531|0),32)|0); - $536 = tempRet0; - $537 = $93; - $538 = $537; - $539 = HEAP32[$538>>2]|0; - $540 = (($537) + 4)|0; - $541 = $540; - $542 = HEAP32[$541>>2]|0; - $543 = (_bitshift64Ashr(0,($539|0),32)|0); - $544 = tempRet0; - $545 = (___muldi3(($543|0),($544|0),($535|0),($536|0))|0); - $546 = tempRet0; - $547 = (_i64Add(($527|0),($528|0),($545|0),($546|0))|0); - $548 = tempRet0; - $549 = $in2; - $550 = $549; - $551 = HEAP32[$550>>2]|0; - $552 = (($549) + 4)|0; - $553 = $552; - $554 = HEAP32[$553>>2]|0; - $555 = (_bitshift64Ashr(0,($551|0),32)|0); - $556 = tempRet0; - $557 = ((($in)) + 48|0); - $558 = $557; - $559 = $558; - $560 = HEAP32[$559>>2]|0; - $561 = (($558) + 4)|0; - $562 = $561; - $563 = HEAP32[$562>>2]|0; - $564 = (_bitshift64Ashr(0,($560|0),32)|0); - $565 = tempRet0; - $566 = (___muldi3(($564|0),($565|0),($555|0),($556|0))|0); - $567 = tempRet0; - $568 = (_i64Add(($547|0),($548|0),($566|0),($567|0))|0); - $569 = tempRet0; - $570 = ((($in2)) + 48|0); - $571 = $570; - $572 = $571; - $573 = HEAP32[$572>>2]|0; - $574 = (($571) + 4)|0; - $575 = $574; - $576 = HEAP32[$575>>2]|0; - $577 = (_bitshift64Ashr(0,($573|0),32)|0); - $578 = tempRet0; - $579 = $in; - $580 = $579; - $581 = HEAP32[$580>>2]|0; - $582 = (($579) + 4)|0; - $583 = $582; - $584 = HEAP32[$583>>2]|0; - $585 = (_bitshift64Ashr(0,($581|0),32)|0); - $586 = tempRet0; - $587 = (___muldi3(($585|0),($586|0),($577|0),($578|0))|0); - $588 = tempRet0; - $589 = (_i64Add(($568|0),($569|0),($587|0),($588|0))|0); - $590 = tempRet0; - $591 = ((($output)) + 48|0); - $592 = $591; - $593 = $592; - HEAP32[$593>>2] = $589; - $594 = (($592) + 4)|0; - $595 = $594; - HEAP32[$595>>2] = $590; - $596 = $191; - $597 = $596; - $598 = HEAP32[$597>>2]|0; - $599 = (($596) + 4)|0; - $600 = $599; - $601 = HEAP32[$600>>2]|0; - $602 = (_bitshift64Ashr(0,($598|0),32)|0); - $603 = tempRet0; - $604 = $285; - $605 = $604; - $606 = HEAP32[$605>>2]|0; - $607 = (($604) + 4)|0; - $608 = $607; - $609 = HEAP32[$608>>2]|0; - $610 = (_bitshift64Ashr(0,($606|0),32)|0); - $611 = tempRet0; - $612 = (___muldi3(($610|0),($611|0),($602|0),($603|0))|0); - $613 = tempRet0; - $614 = $298; - $615 = $614; - $616 = HEAP32[$615>>2]|0; - $617 = (($614) + 4)|0; - $618 = $617; - $619 = HEAP32[$618>>2]|0; - $620 = (_bitshift64Ashr(0,($616|0),32)|0); - $621 = tempRet0; - $622 = $178; - $623 = $622; - $624 = HEAP32[$623>>2]|0; - $625 = (($622) + 4)|0; - $626 = $625; - $627 = HEAP32[$626>>2]|0; - $628 = (_bitshift64Ashr(0,($624|0),32)|0); - $629 = tempRet0; - $630 = (___muldi3(($628|0),($629|0),($620|0),($621|0))|0); - $631 = tempRet0; - $632 = (_i64Add(($630|0),($631|0),($612|0),($613|0))|0); - $633 = tempRet0; - $634 = $106; - $635 = $634; - $636 = HEAP32[$635>>2]|0; - $637 = (($634) + 4)|0; - $638 = $637; - $639 = HEAP32[$638>>2]|0; - $640 = (_bitshift64Ashr(0,($636|0),32)|0); - $641 = tempRet0; - $642 = $410; - $643 = $642; - $644 = HEAP32[$643>>2]|0; - $645 = (($642) + 4)|0; - $646 = $645; - $647 = HEAP32[$646>>2]|0; - $648 = (_bitshift64Ashr(0,($644|0),32)|0); - $649 = tempRet0; - $650 = (___muldi3(($648|0),($649|0),($640|0),($641|0))|0); - $651 = tempRet0; - $652 = (_i64Add(($632|0),($633|0),($650|0),($651|0))|0); - $653 = tempRet0; - $654 = $423; - $655 = $654; - $656 = HEAP32[$655>>2]|0; - $657 = (($654) + 4)|0; - $658 = $657; - $659 = HEAP32[$658>>2]|0; - $660 = (_bitshift64Ashr(0,($656|0),32)|0); - $661 = tempRet0; - $662 = $93; - $663 = $662; - $664 = HEAP32[$663>>2]|0; - $665 = (($662) + 4)|0; - $666 = $665; - $667 = HEAP32[$666>>2]|0; - $668 = (_bitshift64Ashr(0,($664|0),32)|0); - $669 = tempRet0; - $670 = (___muldi3(($668|0),($669|0),($660|0),($661|0))|0); - $671 = tempRet0; - $672 = (_i64Add(($652|0),($653|0),($670|0),($671|0))|0); - $673 = tempRet0; - $674 = $41; - $675 = $674; - $676 = HEAP32[$675>>2]|0; - $677 = (($674) + 4)|0; - $678 = $677; - $679 = HEAP32[$678>>2]|0; - $680 = (_bitshift64Ashr(0,($676|0),32)|0); - $681 = tempRet0; - $682 = $557; - $683 = $682; - $684 = HEAP32[$683>>2]|0; - $685 = (($682) + 4)|0; - $686 = $685; - $687 = HEAP32[$686>>2]|0; - $688 = (_bitshift64Ashr(0,($684|0),32)|0); - $689 = tempRet0; - $690 = (___muldi3(($688|0),($689|0),($680|0),($681|0))|0); - $691 = tempRet0; - $692 = (_i64Add(($672|0),($673|0),($690|0),($691|0))|0); - $693 = tempRet0; - $694 = $570; - $695 = $694; - $696 = HEAP32[$695>>2]|0; - $697 = (($694) + 4)|0; - $698 = $697; - $699 = HEAP32[$698>>2]|0; - $700 = (_bitshift64Ashr(0,($696|0),32)|0); - $701 = tempRet0; - $702 = $30; - $703 = $702; - $704 = HEAP32[$703>>2]|0; - $705 = (($702) + 4)|0; - $706 = $705; - $707 = HEAP32[$706>>2]|0; - $708 = (_bitshift64Ashr(0,($704|0),32)|0); - $709 = tempRet0; - $710 = (___muldi3(($708|0),($709|0),($700|0),($701|0))|0); - $711 = tempRet0; - $712 = (_i64Add(($692|0),($693|0),($710|0),($711|0))|0); - $713 = tempRet0; - $714 = $in2; - $715 = $714; - $716 = HEAP32[$715>>2]|0; - $717 = (($714) + 4)|0; - $718 = $717; - $719 = HEAP32[$718>>2]|0; - $720 = (_bitshift64Ashr(0,($716|0),32)|0); - $721 = tempRet0; - $722 = ((($in)) + 56|0); - $723 = $722; - $724 = $723; - $725 = HEAP32[$724>>2]|0; - $726 = (($723) + 4)|0; - $727 = $726; - $728 = HEAP32[$727>>2]|0; - $729 = (_bitshift64Ashr(0,($725|0),32)|0); - $730 = tempRet0; - $731 = (___muldi3(($729|0),($730|0),($720|0),($721|0))|0); - $732 = tempRet0; - $733 = (_i64Add(($712|0),($713|0),($731|0),($732|0))|0); - $734 = tempRet0; - $735 = ((($in2)) + 56|0); - $736 = $735; - $737 = $736; - $738 = HEAP32[$737>>2]|0; - $739 = (($736) + 4)|0; - $740 = $739; - $741 = HEAP32[$740>>2]|0; - $742 = (_bitshift64Ashr(0,($738|0),32)|0); - $743 = tempRet0; - $744 = $in; - $745 = $744; - $746 = HEAP32[$745>>2]|0; - $747 = (($744) + 4)|0; - $748 = $747; - $749 = HEAP32[$748>>2]|0; - $750 = (_bitshift64Ashr(0,($746|0),32)|0); - $751 = tempRet0; - $752 = (___muldi3(($750|0),($751|0),($742|0),($743|0))|0); - $753 = tempRet0; - $754 = (_i64Add(($733|0),($734|0),($752|0),($753|0))|0); - $755 = tempRet0; - $756 = ((($output)) + 56|0); - $757 = $756; - $758 = $757; - HEAP32[$758>>2] = $754; - $759 = (($757) + 4)|0; - $760 = $759; - HEAP32[$760>>2] = $755; - $761 = $298; - $762 = $761; - $763 = HEAP32[$762>>2]|0; - $764 = (($761) + 4)|0; - $765 = $764; - $766 = HEAP32[$765>>2]|0; - $767 = (_bitshift64Ashr(0,($763|0),32)|0); - $768 = tempRet0; - $769 = $285; - $770 = $769; - $771 = HEAP32[$770>>2]|0; - $772 = (($769) + 4)|0; - $773 = $772; - $774 = HEAP32[$773>>2]|0; - $775 = (_bitshift64Ashr(0,($771|0),32)|0); - $776 = tempRet0; - $777 = (___muldi3(($775|0),($776|0),($767|0),($768|0))|0); - $778 = tempRet0; - $779 = $191; - $780 = $779; - $781 = HEAP32[$780>>2]|0; - $782 = (($779) + 4)|0; - $783 = $782; - $784 = HEAP32[$783>>2]|0; - $785 = (_bitshift64Ashr(0,($781|0),32)|0); - $786 = tempRet0; - $787 = $410; - $788 = $787; - $789 = HEAP32[$788>>2]|0; - $790 = (($787) + 4)|0; - $791 = $790; - $792 = HEAP32[$791>>2]|0; - $793 = (_bitshift64Ashr(0,($789|0),32)|0); - $794 = tempRet0; - $795 = (___muldi3(($793|0),($794|0),($785|0),($786|0))|0); - $796 = tempRet0; - $797 = $423; - $798 = $797; - $799 = HEAP32[$798>>2]|0; - $800 = (($797) + 4)|0; - $801 = $800; - $802 = HEAP32[$801>>2]|0; - $803 = (_bitshift64Ashr(0,($799|0),32)|0); - $804 = tempRet0; - $805 = $178; - $806 = $805; - $807 = HEAP32[$806>>2]|0; - $808 = (($805) + 4)|0; - $809 = $808; - $810 = HEAP32[$809>>2]|0; - $811 = (_bitshift64Ashr(0,($807|0),32)|0); - $812 = tempRet0; - $813 = (___muldi3(($811|0),($812|0),($803|0),($804|0))|0); - $814 = tempRet0; - $815 = (_i64Add(($813|0),($814|0),($795|0),($796|0))|0); - $816 = tempRet0; - $817 = $41; - $818 = $817; - $819 = HEAP32[$818>>2]|0; - $820 = (($817) + 4)|0; - $821 = $820; - $822 = HEAP32[$821>>2]|0; - $823 = (_bitshift64Ashr(0,($819|0),32)|0); - $824 = tempRet0; - $825 = $722; - $826 = $825; - $827 = HEAP32[$826>>2]|0; - $828 = (($825) + 4)|0; - $829 = $828; - $830 = HEAP32[$829>>2]|0; - $831 = (_bitshift64Ashr(0,($827|0),32)|0); - $832 = tempRet0; - $833 = (___muldi3(($831|0),($832|0),($823|0),($824|0))|0); - $834 = tempRet0; - $835 = (_i64Add(($815|0),($816|0),($833|0),($834|0))|0); - $836 = tempRet0; - $837 = $735; - $838 = $837; - $839 = HEAP32[$838>>2]|0; - $840 = (($837) + 4)|0; - $841 = $840; - $842 = HEAP32[$841>>2]|0; - $843 = (_bitshift64Ashr(0,($839|0),32)|0); - $844 = tempRet0; - $845 = $30; - $846 = $845; - $847 = HEAP32[$846>>2]|0; - $848 = (($845) + 4)|0; - $849 = $848; - $850 = HEAP32[$849>>2]|0; - $851 = (_bitshift64Ashr(0,($847|0),32)|0); - $852 = tempRet0; - $853 = (___muldi3(($851|0),($852|0),($843|0),($844|0))|0); - $854 = tempRet0; - $855 = (_i64Add(($835|0),($836|0),($853|0),($854|0))|0); - $856 = tempRet0; - $857 = (_bitshift64Shl(($855|0),($856|0),1)|0); - $858 = tempRet0; - $859 = (_i64Add(($857|0),($858|0),($777|0),($778|0))|0); - $860 = tempRet0; - $861 = $106; - $862 = $861; - $863 = HEAP32[$862>>2]|0; - $864 = (($861) + 4)|0; - $865 = $864; - $866 = HEAP32[$865>>2]|0; - $867 = (_bitshift64Ashr(0,($863|0),32)|0); - $868 = tempRet0; - $869 = $557; - $870 = $869; - $871 = HEAP32[$870>>2]|0; - $872 = (($869) + 4)|0; - $873 = $872; - $874 = HEAP32[$873>>2]|0; - $875 = (_bitshift64Ashr(0,($871|0),32)|0); - $876 = tempRet0; - $877 = (___muldi3(($875|0),($876|0),($867|0),($868|0))|0); - $878 = tempRet0; - $879 = (_i64Add(($859|0),($860|0),($877|0),($878|0))|0); - $880 = tempRet0; - $881 = $570; - $882 = $881; - $883 = HEAP32[$882>>2]|0; - $884 = (($881) + 4)|0; - $885 = $884; - $886 = HEAP32[$885>>2]|0; - $887 = (_bitshift64Ashr(0,($883|0),32)|0); - $888 = tempRet0; - $889 = $93; - $890 = $889; - $891 = HEAP32[$890>>2]|0; - $892 = (($889) + 4)|0; - $893 = $892; - $894 = HEAP32[$893>>2]|0; - $895 = (_bitshift64Ashr(0,($891|0),32)|0); - $896 = tempRet0; - $897 = (___muldi3(($895|0),($896|0),($887|0),($888|0))|0); - $898 = tempRet0; - $899 = (_i64Add(($879|0),($880|0),($897|0),($898|0))|0); - $900 = tempRet0; - $901 = $in2; - $902 = $901; - $903 = HEAP32[$902>>2]|0; - $904 = (($901) + 4)|0; - $905 = $904; - $906 = HEAP32[$905>>2]|0; - $907 = (_bitshift64Ashr(0,($903|0),32)|0); - $908 = tempRet0; - $909 = ((($in)) + 64|0); - $910 = $909; - $911 = $910; - $912 = HEAP32[$911>>2]|0; - $913 = (($910) + 4)|0; - $914 = $913; - $915 = HEAP32[$914>>2]|0; - $916 = (_bitshift64Ashr(0,($912|0),32)|0); - $917 = tempRet0; - $918 = (___muldi3(($916|0),($917|0),($907|0),($908|0))|0); - $919 = tempRet0; - $920 = (_i64Add(($899|0),($900|0),($918|0),($919|0))|0); - $921 = tempRet0; - $922 = ((($in2)) + 64|0); - $923 = $922; - $924 = $923; - $925 = HEAP32[$924>>2]|0; - $926 = (($923) + 4)|0; - $927 = $926; - $928 = HEAP32[$927>>2]|0; - $929 = (_bitshift64Ashr(0,($925|0),32)|0); - $930 = tempRet0; - $931 = $in; - $932 = $931; - $933 = HEAP32[$932>>2]|0; - $934 = (($931) + 4)|0; - $935 = $934; - $936 = HEAP32[$935>>2]|0; - $937 = (_bitshift64Ashr(0,($933|0),32)|0); - $938 = tempRet0; - $939 = (___muldi3(($937|0),($938|0),($929|0),($930|0))|0); - $940 = tempRet0; - $941 = (_i64Add(($920|0),($921|0),($939|0),($940|0))|0); - $942 = tempRet0; - $943 = ((($output)) + 64|0); - $944 = $943; - $945 = $944; - HEAP32[$945>>2] = $941; - $946 = (($944) + 4)|0; - $947 = $946; - HEAP32[$947>>2] = $942; - $948 = $298; - $949 = $948; - $950 = HEAP32[$949>>2]|0; - $951 = (($948) + 4)|0; - $952 = $951; - $953 = HEAP32[$952>>2]|0; - $954 = (_bitshift64Ashr(0,($950|0),32)|0); - $955 = tempRet0; - $956 = $410; - $957 = $956; - $958 = HEAP32[$957>>2]|0; - $959 = (($956) + 4)|0; - $960 = $959; - $961 = HEAP32[$960>>2]|0; - $962 = (_bitshift64Ashr(0,($958|0),32)|0); - $963 = tempRet0; - $964 = (___muldi3(($962|0),($963|0),($954|0),($955|0))|0); - $965 = tempRet0; - $966 = $423; - $967 = $966; - $968 = HEAP32[$967>>2]|0; - $969 = (($966) + 4)|0; - $970 = $969; - $971 = HEAP32[$970>>2]|0; - $972 = (_bitshift64Ashr(0,($968|0),32)|0); - $973 = tempRet0; - $974 = $285; - $975 = $974; - $976 = HEAP32[$975>>2]|0; - $977 = (($974) + 4)|0; - $978 = $977; - $979 = HEAP32[$978>>2]|0; - $980 = (_bitshift64Ashr(0,($976|0),32)|0); - $981 = tempRet0; - $982 = (___muldi3(($980|0),($981|0),($972|0),($973|0))|0); - $983 = tempRet0; - $984 = (_i64Add(($982|0),($983|0),($964|0),($965|0))|0); - $985 = tempRet0; - $986 = $191; - $987 = $986; - $988 = HEAP32[$987>>2]|0; - $989 = (($986) + 4)|0; - $990 = $989; - $991 = HEAP32[$990>>2]|0; - $992 = (_bitshift64Ashr(0,($988|0),32)|0); - $993 = tempRet0; - $994 = $557; - $995 = $994; - $996 = HEAP32[$995>>2]|0; - $997 = (($994) + 4)|0; - $998 = $997; - $999 = HEAP32[$998>>2]|0; - $1000 = (_bitshift64Ashr(0,($996|0),32)|0); - $1001 = tempRet0; - $1002 = (___muldi3(($1000|0),($1001|0),($992|0),($993|0))|0); - $1003 = tempRet0; - $1004 = (_i64Add(($984|0),($985|0),($1002|0),($1003|0))|0); - $1005 = tempRet0; - $1006 = $570; - $1007 = $1006; - $1008 = HEAP32[$1007>>2]|0; - $1009 = (($1006) + 4)|0; - $1010 = $1009; - $1011 = HEAP32[$1010>>2]|0; - $1012 = (_bitshift64Ashr(0,($1008|0),32)|0); - $1013 = tempRet0; - $1014 = $178; - $1015 = $1014; - $1016 = HEAP32[$1015>>2]|0; - $1017 = (($1014) + 4)|0; - $1018 = $1017; - $1019 = HEAP32[$1018>>2]|0; - $1020 = (_bitshift64Ashr(0,($1016|0),32)|0); - $1021 = tempRet0; - $1022 = (___muldi3(($1020|0),($1021|0),($1012|0),($1013|0))|0); - $1023 = tempRet0; - $1024 = (_i64Add(($1004|0),($1005|0),($1022|0),($1023|0))|0); - $1025 = tempRet0; - $1026 = $106; - $1027 = $1026; - $1028 = HEAP32[$1027>>2]|0; - $1029 = (($1026) + 4)|0; - $1030 = $1029; - $1031 = HEAP32[$1030>>2]|0; - $1032 = (_bitshift64Ashr(0,($1028|0),32)|0); - $1033 = tempRet0; - $1034 = $722; - $1035 = $1034; - $1036 = HEAP32[$1035>>2]|0; - $1037 = (($1034) + 4)|0; - $1038 = $1037; - $1039 = HEAP32[$1038>>2]|0; - $1040 = (_bitshift64Ashr(0,($1036|0),32)|0); - $1041 = tempRet0; - $1042 = (___muldi3(($1040|0),($1041|0),($1032|0),($1033|0))|0); - $1043 = tempRet0; - $1044 = (_i64Add(($1024|0),($1025|0),($1042|0),($1043|0))|0); - $1045 = tempRet0; - $1046 = $735; - $1047 = $1046; - $1048 = HEAP32[$1047>>2]|0; - $1049 = (($1046) + 4)|0; - $1050 = $1049; - $1051 = HEAP32[$1050>>2]|0; - $1052 = (_bitshift64Ashr(0,($1048|0),32)|0); - $1053 = tempRet0; - $1054 = $93; - $1055 = $1054; - $1056 = HEAP32[$1055>>2]|0; - $1057 = (($1054) + 4)|0; - $1058 = $1057; - $1059 = HEAP32[$1058>>2]|0; - $1060 = (_bitshift64Ashr(0,($1056|0),32)|0); - $1061 = tempRet0; - $1062 = (___muldi3(($1060|0),($1061|0),($1052|0),($1053|0))|0); - $1063 = tempRet0; - $1064 = (_i64Add(($1044|0),($1045|0),($1062|0),($1063|0))|0); - $1065 = tempRet0; - $1066 = $41; - $1067 = $1066; - $1068 = HEAP32[$1067>>2]|0; - $1069 = (($1066) + 4)|0; - $1070 = $1069; - $1071 = HEAP32[$1070>>2]|0; - $1072 = (_bitshift64Ashr(0,($1068|0),32)|0); - $1073 = tempRet0; - $1074 = $909; - $1075 = $1074; - $1076 = HEAP32[$1075>>2]|0; - $1077 = (($1074) + 4)|0; - $1078 = $1077; - $1079 = HEAP32[$1078>>2]|0; - $1080 = (_bitshift64Ashr(0,($1076|0),32)|0); - $1081 = tempRet0; - $1082 = (___muldi3(($1080|0),($1081|0),($1072|0),($1073|0))|0); - $1083 = tempRet0; - $1084 = (_i64Add(($1064|0),($1065|0),($1082|0),($1083|0))|0); - $1085 = tempRet0; - $1086 = $922; - $1087 = $1086; - $1088 = HEAP32[$1087>>2]|0; - $1089 = (($1086) + 4)|0; - $1090 = $1089; - $1091 = HEAP32[$1090>>2]|0; - $1092 = (_bitshift64Ashr(0,($1088|0),32)|0); - $1093 = tempRet0; - $1094 = $30; - $1095 = $1094; - $1096 = HEAP32[$1095>>2]|0; - $1097 = (($1094) + 4)|0; - $1098 = $1097; - $1099 = HEAP32[$1098>>2]|0; - $1100 = (_bitshift64Ashr(0,($1096|0),32)|0); - $1101 = tempRet0; - $1102 = (___muldi3(($1100|0),($1101|0),($1092|0),($1093|0))|0); - $1103 = tempRet0; - $1104 = (_i64Add(($1084|0),($1085|0),($1102|0),($1103|0))|0); - $1105 = tempRet0; - $1106 = $in2; - $1107 = $1106; - $1108 = HEAP32[$1107>>2]|0; - $1109 = (($1106) + 4)|0; - $1110 = $1109; - $1111 = HEAP32[$1110>>2]|0; - $1112 = (_bitshift64Ashr(0,($1108|0),32)|0); - $1113 = tempRet0; - $1114 = ((($in)) + 72|0); - $1115 = $1114; - $1116 = $1115; - $1117 = HEAP32[$1116>>2]|0; - $1118 = (($1115) + 4)|0; - $1119 = $1118; - $1120 = HEAP32[$1119>>2]|0; - $1121 = (_bitshift64Ashr(0,($1117|0),32)|0); - $1122 = tempRet0; - $1123 = (___muldi3(($1121|0),($1122|0),($1112|0),($1113|0))|0); - $1124 = tempRet0; - $1125 = (_i64Add(($1104|0),($1105|0),($1123|0),($1124|0))|0); - $1126 = tempRet0; - $1127 = ((($in2)) + 72|0); - $1128 = $1127; - $1129 = $1128; - $1130 = HEAP32[$1129>>2]|0; - $1131 = (($1128) + 4)|0; - $1132 = $1131; - $1133 = HEAP32[$1132>>2]|0; - $1134 = (_bitshift64Ashr(0,($1130|0),32)|0); - $1135 = tempRet0; - $1136 = $in; - $1137 = $1136; - $1138 = HEAP32[$1137>>2]|0; - $1139 = (($1136) + 4)|0; - $1140 = $1139; - $1141 = HEAP32[$1140>>2]|0; - $1142 = (_bitshift64Ashr(0,($1138|0),32)|0); - $1143 = tempRet0; - $1144 = (___muldi3(($1142|0),($1143|0),($1134|0),($1135|0))|0); - $1145 = tempRet0; - $1146 = (_i64Add(($1125|0),($1126|0),($1144|0),($1145|0))|0); - $1147 = tempRet0; - $1148 = ((($output)) + 72|0); - $1149 = $1148; - $1150 = $1149; - HEAP32[$1150>>2] = $1146; - $1151 = (($1149) + 4)|0; - $1152 = $1151; - HEAP32[$1152>>2] = $1147; - $1153 = $423; - $1154 = $1153; - $1155 = HEAP32[$1154>>2]|0; - $1156 = (($1153) + 4)|0; - $1157 = $1156; - $1158 = HEAP32[$1157>>2]|0; - $1159 = (_bitshift64Ashr(0,($1155|0),32)|0); - $1160 = tempRet0; - $1161 = $410; - $1162 = $1161; - $1163 = HEAP32[$1162>>2]|0; - $1164 = (($1161) + 4)|0; - $1165 = $1164; - $1166 = HEAP32[$1165>>2]|0; - $1167 = (_bitshift64Ashr(0,($1163|0),32)|0); - $1168 = tempRet0; - $1169 = (___muldi3(($1167|0),($1168|0),($1159|0),($1160|0))|0); - $1170 = tempRet0; - $1171 = $191; - $1172 = $1171; - $1173 = HEAP32[$1172>>2]|0; - $1174 = (($1171) + 4)|0; - $1175 = $1174; - $1176 = HEAP32[$1175>>2]|0; - $1177 = (_bitshift64Ashr(0,($1173|0),32)|0); - $1178 = tempRet0; - $1179 = $722; - $1180 = $1179; - $1181 = HEAP32[$1180>>2]|0; - $1182 = (($1179) + 4)|0; - $1183 = $1182; - $1184 = HEAP32[$1183>>2]|0; - $1185 = (_bitshift64Ashr(0,($1181|0),32)|0); - $1186 = tempRet0; - $1187 = (___muldi3(($1185|0),($1186|0),($1177|0),($1178|0))|0); - $1188 = tempRet0; - $1189 = (_i64Add(($1187|0),($1188|0),($1169|0),($1170|0))|0); - $1190 = tempRet0; - $1191 = $735; - $1192 = $1191; - $1193 = HEAP32[$1192>>2]|0; - $1194 = (($1191) + 4)|0; - $1195 = $1194; - $1196 = HEAP32[$1195>>2]|0; - $1197 = (_bitshift64Ashr(0,($1193|0),32)|0); - $1198 = tempRet0; - $1199 = $178; - $1200 = $1199; - $1201 = HEAP32[$1200>>2]|0; - $1202 = (($1199) + 4)|0; - $1203 = $1202; - $1204 = HEAP32[$1203>>2]|0; - $1205 = (_bitshift64Ashr(0,($1201|0),32)|0); - $1206 = tempRet0; - $1207 = (___muldi3(($1205|0),($1206|0),($1197|0),($1198|0))|0); - $1208 = tempRet0; - $1209 = (_i64Add(($1189|0),($1190|0),($1207|0),($1208|0))|0); - $1210 = tempRet0; - $1211 = $41; - $1212 = $1211; - $1213 = HEAP32[$1212>>2]|0; - $1214 = (($1211) + 4)|0; - $1215 = $1214; - $1216 = HEAP32[$1215>>2]|0; - $1217 = (_bitshift64Ashr(0,($1213|0),32)|0); - $1218 = tempRet0; - $1219 = $1114; - $1220 = $1219; - $1221 = HEAP32[$1220>>2]|0; - $1222 = (($1219) + 4)|0; - $1223 = $1222; - $1224 = HEAP32[$1223>>2]|0; - $1225 = (_bitshift64Ashr(0,($1221|0),32)|0); - $1226 = tempRet0; - $1227 = (___muldi3(($1225|0),($1226|0),($1217|0),($1218|0))|0); - $1228 = tempRet0; - $1229 = (_i64Add(($1209|0),($1210|0),($1227|0),($1228|0))|0); - $1230 = tempRet0; - $1231 = $1127; - $1232 = $1231; - $1233 = HEAP32[$1232>>2]|0; - $1234 = (($1231) + 4)|0; - $1235 = $1234; - $1236 = HEAP32[$1235>>2]|0; - $1237 = (_bitshift64Ashr(0,($1233|0),32)|0); - $1238 = tempRet0; - $1239 = $30; - $1240 = $1239; - $1241 = HEAP32[$1240>>2]|0; - $1242 = (($1239) + 4)|0; - $1243 = $1242; - $1244 = HEAP32[$1243>>2]|0; - $1245 = (_bitshift64Ashr(0,($1241|0),32)|0); - $1246 = tempRet0; - $1247 = (___muldi3(($1245|0),($1246|0),($1237|0),($1238|0))|0); - $1248 = tempRet0; - $1249 = (_i64Add(($1229|0),($1230|0),($1247|0),($1248|0))|0); - $1250 = tempRet0; - $1251 = (_bitshift64Shl(($1249|0),($1250|0),1)|0); - $1252 = tempRet0; - $1253 = $298; - $1254 = $1253; - $1255 = HEAP32[$1254>>2]|0; - $1256 = (($1253) + 4)|0; - $1257 = $1256; - $1258 = HEAP32[$1257>>2]|0; - $1259 = (_bitshift64Ashr(0,($1255|0),32)|0); - $1260 = tempRet0; - $1261 = $557; - $1262 = $1261; - $1263 = HEAP32[$1262>>2]|0; - $1264 = (($1261) + 4)|0; - $1265 = $1264; - $1266 = HEAP32[$1265>>2]|0; - $1267 = (_bitshift64Ashr(0,($1263|0),32)|0); - $1268 = tempRet0; - $1269 = (___muldi3(($1267|0),($1268|0),($1259|0),($1260|0))|0); - $1270 = tempRet0; - $1271 = (_i64Add(($1251|0),($1252|0),($1269|0),($1270|0))|0); - $1272 = tempRet0; - $1273 = $570; - $1274 = $1273; - $1275 = HEAP32[$1274>>2]|0; - $1276 = (($1273) + 4)|0; - $1277 = $1276; - $1278 = HEAP32[$1277>>2]|0; - $1279 = (_bitshift64Ashr(0,($1275|0),32)|0); - $1280 = tempRet0; - $1281 = $285; - $1282 = $1281; - $1283 = HEAP32[$1282>>2]|0; - $1284 = (($1281) + 4)|0; - $1285 = $1284; - $1286 = HEAP32[$1285>>2]|0; - $1287 = (_bitshift64Ashr(0,($1283|0),32)|0); - $1288 = tempRet0; - $1289 = (___muldi3(($1287|0),($1288|0),($1279|0),($1280|0))|0); - $1290 = tempRet0; - $1291 = (_i64Add(($1271|0),($1272|0),($1289|0),($1290|0))|0); - $1292 = tempRet0; - $1293 = $106; - $1294 = $1293; - $1295 = HEAP32[$1294>>2]|0; - $1296 = (($1293) + 4)|0; - $1297 = $1296; - $1298 = HEAP32[$1297>>2]|0; - $1299 = (_bitshift64Ashr(0,($1295|0),32)|0); - $1300 = tempRet0; - $1301 = $909; - $1302 = $1301; - $1303 = HEAP32[$1302>>2]|0; - $1304 = (($1301) + 4)|0; - $1305 = $1304; - $1306 = HEAP32[$1305>>2]|0; - $1307 = (_bitshift64Ashr(0,($1303|0),32)|0); - $1308 = tempRet0; - $1309 = (___muldi3(($1307|0),($1308|0),($1299|0),($1300|0))|0); - $1310 = tempRet0; - $1311 = (_i64Add(($1291|0),($1292|0),($1309|0),($1310|0))|0); - $1312 = tempRet0; - $1313 = $922; - $1314 = $1313; - $1315 = HEAP32[$1314>>2]|0; - $1316 = (($1313) + 4)|0; - $1317 = $1316; - $1318 = HEAP32[$1317>>2]|0; - $1319 = (_bitshift64Ashr(0,($1315|0),32)|0); - $1320 = tempRet0; - $1321 = $93; - $1322 = $1321; - $1323 = HEAP32[$1322>>2]|0; - $1324 = (($1321) + 4)|0; - $1325 = $1324; - $1326 = HEAP32[$1325>>2]|0; - $1327 = (_bitshift64Ashr(0,($1323|0),32)|0); - $1328 = tempRet0; - $1329 = (___muldi3(($1327|0),($1328|0),($1319|0),($1320|0))|0); - $1330 = tempRet0; - $1331 = (_i64Add(($1311|0),($1312|0),($1329|0),($1330|0))|0); - $1332 = tempRet0; - $1333 = ((($output)) + 80|0); - $1334 = $1333; - $1335 = $1334; - HEAP32[$1335>>2] = $1331; - $1336 = (($1334) + 4)|0; - $1337 = $1336; - HEAP32[$1337>>2] = $1332; - $1338 = $423; - $1339 = $1338; - $1340 = HEAP32[$1339>>2]|0; - $1341 = (($1338) + 4)|0; - $1342 = $1341; - $1343 = HEAP32[$1342>>2]|0; - $1344 = (_bitshift64Ashr(0,($1340|0),32)|0); - $1345 = tempRet0; - $1346 = $557; - $1347 = $1346; - $1348 = HEAP32[$1347>>2]|0; - $1349 = (($1346) + 4)|0; - $1350 = $1349; - $1351 = HEAP32[$1350>>2]|0; - $1352 = (_bitshift64Ashr(0,($1348|0),32)|0); - $1353 = tempRet0; - $1354 = (___muldi3(($1352|0),($1353|0),($1344|0),($1345|0))|0); - $1355 = tempRet0; - $1356 = $570; - $1357 = $1356; - $1358 = HEAP32[$1357>>2]|0; - $1359 = (($1356) + 4)|0; - $1360 = $1359; - $1361 = HEAP32[$1360>>2]|0; - $1362 = (_bitshift64Ashr(0,($1358|0),32)|0); - $1363 = tempRet0; - $1364 = $410; - $1365 = $1364; - $1366 = HEAP32[$1365>>2]|0; - $1367 = (($1364) + 4)|0; - $1368 = $1367; - $1369 = HEAP32[$1368>>2]|0; - $1370 = (_bitshift64Ashr(0,($1366|0),32)|0); - $1371 = tempRet0; - $1372 = (___muldi3(($1370|0),($1371|0),($1362|0),($1363|0))|0); - $1373 = tempRet0; - $1374 = (_i64Add(($1372|0),($1373|0),($1354|0),($1355|0))|0); - $1375 = tempRet0; - $1376 = $298; - $1377 = $1376; - $1378 = HEAP32[$1377>>2]|0; - $1379 = (($1376) + 4)|0; - $1380 = $1379; - $1381 = HEAP32[$1380>>2]|0; - $1382 = (_bitshift64Ashr(0,($1378|0),32)|0); - $1383 = tempRet0; - $1384 = $722; - $1385 = $1384; - $1386 = HEAP32[$1385>>2]|0; - $1387 = (($1384) + 4)|0; - $1388 = $1387; - $1389 = HEAP32[$1388>>2]|0; - $1390 = (_bitshift64Ashr(0,($1386|0),32)|0); - $1391 = tempRet0; - $1392 = (___muldi3(($1390|0),($1391|0),($1382|0),($1383|0))|0); - $1393 = tempRet0; - $1394 = (_i64Add(($1374|0),($1375|0),($1392|0),($1393|0))|0); - $1395 = tempRet0; - $1396 = $735; - $1397 = $1396; - $1398 = HEAP32[$1397>>2]|0; - $1399 = (($1396) + 4)|0; - $1400 = $1399; - $1401 = HEAP32[$1400>>2]|0; - $1402 = (_bitshift64Ashr(0,($1398|0),32)|0); - $1403 = tempRet0; - $1404 = $285; - $1405 = $1404; - $1406 = HEAP32[$1405>>2]|0; - $1407 = (($1404) + 4)|0; - $1408 = $1407; - $1409 = HEAP32[$1408>>2]|0; - $1410 = (_bitshift64Ashr(0,($1406|0),32)|0); - $1411 = tempRet0; - $1412 = (___muldi3(($1410|0),($1411|0),($1402|0),($1403|0))|0); - $1413 = tempRet0; - $1414 = (_i64Add(($1394|0),($1395|0),($1412|0),($1413|0))|0); - $1415 = tempRet0; - $1416 = $191; - $1417 = $1416; - $1418 = HEAP32[$1417>>2]|0; - $1419 = (($1416) + 4)|0; - $1420 = $1419; - $1421 = HEAP32[$1420>>2]|0; - $1422 = (_bitshift64Ashr(0,($1418|0),32)|0); - $1423 = tempRet0; - $1424 = $909; - $1425 = $1424; - $1426 = HEAP32[$1425>>2]|0; - $1427 = (($1424) + 4)|0; - $1428 = $1427; - $1429 = HEAP32[$1428>>2]|0; - $1430 = (_bitshift64Ashr(0,($1426|0),32)|0); - $1431 = tempRet0; - $1432 = (___muldi3(($1430|0),($1431|0),($1422|0),($1423|0))|0); - $1433 = tempRet0; - $1434 = (_i64Add(($1414|0),($1415|0),($1432|0),($1433|0))|0); - $1435 = tempRet0; - $1436 = $922; - $1437 = $1436; - $1438 = HEAP32[$1437>>2]|0; - $1439 = (($1436) + 4)|0; - $1440 = $1439; - $1441 = HEAP32[$1440>>2]|0; - $1442 = (_bitshift64Ashr(0,($1438|0),32)|0); - $1443 = tempRet0; - $1444 = $178; - $1445 = $1444; - $1446 = HEAP32[$1445>>2]|0; - $1447 = (($1444) + 4)|0; - $1448 = $1447; - $1449 = HEAP32[$1448>>2]|0; - $1450 = (_bitshift64Ashr(0,($1446|0),32)|0); - $1451 = tempRet0; - $1452 = (___muldi3(($1450|0),($1451|0),($1442|0),($1443|0))|0); - $1453 = tempRet0; - $1454 = (_i64Add(($1434|0),($1435|0),($1452|0),($1453|0))|0); - $1455 = tempRet0; - $1456 = $106; - $1457 = $1456; - $1458 = HEAP32[$1457>>2]|0; - $1459 = (($1456) + 4)|0; - $1460 = $1459; - $1461 = HEAP32[$1460>>2]|0; - $1462 = (_bitshift64Ashr(0,($1458|0),32)|0); - $1463 = tempRet0; - $1464 = $1114; - $1465 = $1464; - $1466 = HEAP32[$1465>>2]|0; - $1467 = (($1464) + 4)|0; - $1468 = $1467; - $1469 = HEAP32[$1468>>2]|0; - $1470 = (_bitshift64Ashr(0,($1466|0),32)|0); - $1471 = tempRet0; - $1472 = (___muldi3(($1470|0),($1471|0),($1462|0),($1463|0))|0); - $1473 = tempRet0; - $1474 = (_i64Add(($1454|0),($1455|0),($1472|0),($1473|0))|0); - $1475 = tempRet0; - $1476 = $1127; - $1477 = $1476; - $1478 = HEAP32[$1477>>2]|0; - $1479 = (($1476) + 4)|0; - $1480 = $1479; - $1481 = HEAP32[$1480>>2]|0; - $1482 = (_bitshift64Ashr(0,($1478|0),32)|0); - $1483 = tempRet0; - $1484 = $93; - $1485 = $1484; - $1486 = HEAP32[$1485>>2]|0; - $1487 = (($1484) + 4)|0; - $1488 = $1487; - $1489 = HEAP32[$1488>>2]|0; - $1490 = (_bitshift64Ashr(0,($1486|0),32)|0); - $1491 = tempRet0; - $1492 = (___muldi3(($1490|0),($1491|0),($1482|0),($1483|0))|0); - $1493 = tempRet0; - $1494 = (_i64Add(($1474|0),($1475|0),($1492|0),($1493|0))|0); - $1495 = tempRet0; - $1496 = ((($output)) + 88|0); - $1497 = $1496; - $1498 = $1497; - HEAP32[$1498>>2] = $1494; - $1499 = (($1497) + 4)|0; - $1500 = $1499; - HEAP32[$1500>>2] = $1495; - $1501 = $570; - $1502 = $1501; - $1503 = HEAP32[$1502>>2]|0; - $1504 = (($1501) + 4)|0; - $1505 = $1504; - $1506 = HEAP32[$1505>>2]|0; - $1507 = (_bitshift64Ashr(0,($1503|0),32)|0); - $1508 = tempRet0; - $1509 = $557; - $1510 = $1509; - $1511 = HEAP32[$1510>>2]|0; - $1512 = (($1509) + 4)|0; - $1513 = $1512; - $1514 = HEAP32[$1513>>2]|0; - $1515 = (_bitshift64Ashr(0,($1511|0),32)|0); - $1516 = tempRet0; - $1517 = (___muldi3(($1515|0),($1516|0),($1507|0),($1508|0))|0); - $1518 = tempRet0; - $1519 = $423; - $1520 = $1519; - $1521 = HEAP32[$1520>>2]|0; - $1522 = (($1519) + 4)|0; - $1523 = $1522; - $1524 = HEAP32[$1523>>2]|0; - $1525 = (_bitshift64Ashr(0,($1521|0),32)|0); - $1526 = tempRet0; - $1527 = $722; - $1528 = $1527; - $1529 = HEAP32[$1528>>2]|0; - $1530 = (($1527) + 4)|0; - $1531 = $1530; - $1532 = HEAP32[$1531>>2]|0; - $1533 = (_bitshift64Ashr(0,($1529|0),32)|0); - $1534 = tempRet0; - $1535 = (___muldi3(($1533|0),($1534|0),($1525|0),($1526|0))|0); - $1536 = tempRet0; - $1537 = $735; - $1538 = $1537; - $1539 = HEAP32[$1538>>2]|0; - $1540 = (($1537) + 4)|0; - $1541 = $1540; - $1542 = HEAP32[$1541>>2]|0; - $1543 = (_bitshift64Ashr(0,($1539|0),32)|0); - $1544 = tempRet0; - $1545 = $410; - $1546 = $1545; - $1547 = HEAP32[$1546>>2]|0; - $1548 = (($1545) + 4)|0; - $1549 = $1548; - $1550 = HEAP32[$1549>>2]|0; - $1551 = (_bitshift64Ashr(0,($1547|0),32)|0); - $1552 = tempRet0; - $1553 = (___muldi3(($1551|0),($1552|0),($1543|0),($1544|0))|0); - $1554 = tempRet0; - $1555 = (_i64Add(($1553|0),($1554|0),($1535|0),($1536|0))|0); - $1556 = tempRet0; - $1557 = $191; - $1558 = $1557; - $1559 = HEAP32[$1558>>2]|0; - $1560 = (($1557) + 4)|0; - $1561 = $1560; - $1562 = HEAP32[$1561>>2]|0; - $1563 = (_bitshift64Ashr(0,($1559|0),32)|0); - $1564 = tempRet0; - $1565 = $1114; - $1566 = $1565; - $1567 = HEAP32[$1566>>2]|0; - $1568 = (($1565) + 4)|0; - $1569 = $1568; - $1570 = HEAP32[$1569>>2]|0; - $1571 = (_bitshift64Ashr(0,($1567|0),32)|0); - $1572 = tempRet0; - $1573 = (___muldi3(($1571|0),($1572|0),($1563|0),($1564|0))|0); - $1574 = tempRet0; - $1575 = (_i64Add(($1555|0),($1556|0),($1573|0),($1574|0))|0); - $1576 = tempRet0; - $1577 = $1127; - $1578 = $1577; - $1579 = HEAP32[$1578>>2]|0; - $1580 = (($1577) + 4)|0; - $1581 = $1580; - $1582 = HEAP32[$1581>>2]|0; - $1583 = (_bitshift64Ashr(0,($1579|0),32)|0); - $1584 = tempRet0; - $1585 = $178; - $1586 = $1585; - $1587 = HEAP32[$1586>>2]|0; - $1588 = (($1585) + 4)|0; - $1589 = $1588; - $1590 = HEAP32[$1589>>2]|0; - $1591 = (_bitshift64Ashr(0,($1587|0),32)|0); - $1592 = tempRet0; - $1593 = (___muldi3(($1591|0),($1592|0),($1583|0),($1584|0))|0); - $1594 = tempRet0; - $1595 = (_i64Add(($1575|0),($1576|0),($1593|0),($1594|0))|0); - $1596 = tempRet0; - $1597 = (_bitshift64Shl(($1595|0),($1596|0),1)|0); - $1598 = tempRet0; - $1599 = (_i64Add(($1597|0),($1598|0),($1517|0),($1518|0))|0); - $1600 = tempRet0; - $1601 = $298; - $1602 = $1601; - $1603 = HEAP32[$1602>>2]|0; - $1604 = (($1601) + 4)|0; - $1605 = $1604; - $1606 = HEAP32[$1605>>2]|0; - $1607 = (_bitshift64Ashr(0,($1603|0),32)|0); - $1608 = tempRet0; - $1609 = $909; - $1610 = $1609; - $1611 = HEAP32[$1610>>2]|0; - $1612 = (($1609) + 4)|0; - $1613 = $1612; - $1614 = HEAP32[$1613>>2]|0; - $1615 = (_bitshift64Ashr(0,($1611|0),32)|0); - $1616 = tempRet0; - $1617 = (___muldi3(($1615|0),($1616|0),($1607|0),($1608|0))|0); - $1618 = tempRet0; - $1619 = (_i64Add(($1599|0),($1600|0),($1617|0),($1618|0))|0); - $1620 = tempRet0; - $1621 = $922; - $1622 = $1621; - $1623 = HEAP32[$1622>>2]|0; - $1624 = (($1621) + 4)|0; - $1625 = $1624; - $1626 = HEAP32[$1625>>2]|0; - $1627 = (_bitshift64Ashr(0,($1623|0),32)|0); - $1628 = tempRet0; - $1629 = $285; - $1630 = $1629; - $1631 = HEAP32[$1630>>2]|0; - $1632 = (($1629) + 4)|0; - $1633 = $1632; - $1634 = HEAP32[$1633>>2]|0; - $1635 = (_bitshift64Ashr(0,($1631|0),32)|0); - $1636 = tempRet0; - $1637 = (___muldi3(($1635|0),($1636|0),($1627|0),($1628|0))|0); - $1638 = tempRet0; - $1639 = (_i64Add(($1619|0),($1620|0),($1637|0),($1638|0))|0); - $1640 = tempRet0; - $1641 = ((($output)) + 96|0); - $1642 = $1641; - $1643 = $1642; - HEAP32[$1643>>2] = $1639; - $1644 = (($1642) + 4)|0; - $1645 = $1644; - HEAP32[$1645>>2] = $1640; - $1646 = $570; - $1647 = $1646; - $1648 = HEAP32[$1647>>2]|0; - $1649 = (($1646) + 4)|0; - $1650 = $1649; - $1651 = HEAP32[$1650>>2]|0; - $1652 = (_bitshift64Ashr(0,($1648|0),32)|0); - $1653 = tempRet0; - $1654 = $722; - $1655 = $1654; - $1656 = HEAP32[$1655>>2]|0; - $1657 = (($1654) + 4)|0; - $1658 = $1657; - $1659 = HEAP32[$1658>>2]|0; - $1660 = (_bitshift64Ashr(0,($1656|0),32)|0); - $1661 = tempRet0; - $1662 = (___muldi3(($1660|0),($1661|0),($1652|0),($1653|0))|0); - $1663 = tempRet0; - $1664 = $735; - $1665 = $1664; - $1666 = HEAP32[$1665>>2]|0; - $1667 = (($1664) + 4)|0; - $1668 = $1667; - $1669 = HEAP32[$1668>>2]|0; - $1670 = (_bitshift64Ashr(0,($1666|0),32)|0); - $1671 = tempRet0; - $1672 = $557; - $1673 = $1672; - $1674 = HEAP32[$1673>>2]|0; - $1675 = (($1672) + 4)|0; - $1676 = $1675; - $1677 = HEAP32[$1676>>2]|0; - $1678 = (_bitshift64Ashr(0,($1674|0),32)|0); - $1679 = tempRet0; - $1680 = (___muldi3(($1678|0),($1679|0),($1670|0),($1671|0))|0); - $1681 = tempRet0; - $1682 = (_i64Add(($1680|0),($1681|0),($1662|0),($1663|0))|0); - $1683 = tempRet0; - $1684 = $423; - $1685 = $1684; - $1686 = HEAP32[$1685>>2]|0; - $1687 = (($1684) + 4)|0; - $1688 = $1687; - $1689 = HEAP32[$1688>>2]|0; - $1690 = (_bitshift64Ashr(0,($1686|0),32)|0); - $1691 = tempRet0; - $1692 = $909; - $1693 = $1692; - $1694 = HEAP32[$1693>>2]|0; - $1695 = (($1692) + 4)|0; - $1696 = $1695; - $1697 = HEAP32[$1696>>2]|0; - $1698 = (_bitshift64Ashr(0,($1694|0),32)|0); - $1699 = tempRet0; - $1700 = (___muldi3(($1698|0),($1699|0),($1690|0),($1691|0))|0); - $1701 = tempRet0; - $1702 = (_i64Add(($1682|0),($1683|0),($1700|0),($1701|0))|0); - $1703 = tempRet0; - $1704 = $922; - $1705 = $1704; - $1706 = HEAP32[$1705>>2]|0; - $1707 = (($1704) + 4)|0; - $1708 = $1707; - $1709 = HEAP32[$1708>>2]|0; - $1710 = (_bitshift64Ashr(0,($1706|0),32)|0); - $1711 = tempRet0; - $1712 = $410; - $1713 = $1712; - $1714 = HEAP32[$1713>>2]|0; - $1715 = (($1712) + 4)|0; - $1716 = $1715; - $1717 = HEAP32[$1716>>2]|0; - $1718 = (_bitshift64Ashr(0,($1714|0),32)|0); - $1719 = tempRet0; - $1720 = (___muldi3(($1718|0),($1719|0),($1710|0),($1711|0))|0); - $1721 = tempRet0; - $1722 = (_i64Add(($1702|0),($1703|0),($1720|0),($1721|0))|0); - $1723 = tempRet0; - $1724 = $298; - $1725 = $1724; - $1726 = HEAP32[$1725>>2]|0; - $1727 = (($1724) + 4)|0; - $1728 = $1727; - $1729 = HEAP32[$1728>>2]|0; - $1730 = (_bitshift64Ashr(0,($1726|0),32)|0); - $1731 = tempRet0; - $1732 = $1114; - $1733 = $1732; - $1734 = HEAP32[$1733>>2]|0; - $1735 = (($1732) + 4)|0; - $1736 = $1735; - $1737 = HEAP32[$1736>>2]|0; - $1738 = (_bitshift64Ashr(0,($1734|0),32)|0); - $1739 = tempRet0; - $1740 = (___muldi3(($1738|0),($1739|0),($1730|0),($1731|0))|0); - $1741 = tempRet0; - $1742 = (_i64Add(($1722|0),($1723|0),($1740|0),($1741|0))|0); - $1743 = tempRet0; - $1744 = $1127; - $1745 = $1744; - $1746 = HEAP32[$1745>>2]|0; - $1747 = (($1744) + 4)|0; - $1748 = $1747; - $1749 = HEAP32[$1748>>2]|0; - $1750 = (_bitshift64Ashr(0,($1746|0),32)|0); - $1751 = tempRet0; - $1752 = $285; - $1753 = $1752; - $1754 = HEAP32[$1753>>2]|0; - $1755 = (($1752) + 4)|0; - $1756 = $1755; - $1757 = HEAP32[$1756>>2]|0; - $1758 = (_bitshift64Ashr(0,($1754|0),32)|0); - $1759 = tempRet0; - $1760 = (___muldi3(($1758|0),($1759|0),($1750|0),($1751|0))|0); - $1761 = tempRet0; - $1762 = (_i64Add(($1742|0),($1743|0),($1760|0),($1761|0))|0); - $1763 = tempRet0; - $1764 = ((($output)) + 104|0); - $1765 = $1764; - $1766 = $1765; - HEAP32[$1766>>2] = $1762; - $1767 = (($1765) + 4)|0; - $1768 = $1767; - HEAP32[$1768>>2] = $1763; - $1769 = $735; - $1770 = $1769; - $1771 = HEAP32[$1770>>2]|0; - $1772 = (($1769) + 4)|0; - $1773 = $1772; - $1774 = HEAP32[$1773>>2]|0; - $1775 = (_bitshift64Ashr(0,($1771|0),32)|0); - $1776 = tempRet0; - $1777 = $722; - $1778 = $1777; - $1779 = HEAP32[$1778>>2]|0; - $1780 = (($1777) + 4)|0; - $1781 = $1780; - $1782 = HEAP32[$1781>>2]|0; - $1783 = (_bitshift64Ashr(0,($1779|0),32)|0); - $1784 = tempRet0; - $1785 = (___muldi3(($1783|0),($1784|0),($1775|0),($1776|0))|0); - $1786 = tempRet0; - $1787 = $423; - $1788 = $1787; - $1789 = HEAP32[$1788>>2]|0; - $1790 = (($1787) + 4)|0; - $1791 = $1790; - $1792 = HEAP32[$1791>>2]|0; - $1793 = (_bitshift64Ashr(0,($1789|0),32)|0); - $1794 = tempRet0; - $1795 = $1114; - $1796 = $1795; - $1797 = HEAP32[$1796>>2]|0; - $1798 = (($1795) + 4)|0; - $1799 = $1798; - $1800 = HEAP32[$1799>>2]|0; - $1801 = (_bitshift64Ashr(0,($1797|0),32)|0); - $1802 = tempRet0; - $1803 = (___muldi3(($1801|0),($1802|0),($1793|0),($1794|0))|0); - $1804 = tempRet0; - $1805 = (_i64Add(($1803|0),($1804|0),($1785|0),($1786|0))|0); - $1806 = tempRet0; - $1807 = $1127; - $1808 = $1807; - $1809 = HEAP32[$1808>>2]|0; - $1810 = (($1807) + 4)|0; - $1811 = $1810; - $1812 = HEAP32[$1811>>2]|0; - $1813 = (_bitshift64Ashr(0,($1809|0),32)|0); - $1814 = tempRet0; - $1815 = $410; - $1816 = $1815; - $1817 = HEAP32[$1816>>2]|0; - $1818 = (($1815) + 4)|0; - $1819 = $1818; - $1820 = HEAP32[$1819>>2]|0; - $1821 = (_bitshift64Ashr(0,($1817|0),32)|0); - $1822 = tempRet0; - $1823 = (___muldi3(($1821|0),($1822|0),($1813|0),($1814|0))|0); - $1824 = tempRet0; - $1825 = (_i64Add(($1805|0),($1806|0),($1823|0),($1824|0))|0); - $1826 = tempRet0; - $1827 = (_bitshift64Shl(($1825|0),($1826|0),1)|0); - $1828 = tempRet0; - $1829 = $570; - $1830 = $1829; - $1831 = HEAP32[$1830>>2]|0; - $1832 = (($1829) + 4)|0; - $1833 = $1832; - $1834 = HEAP32[$1833>>2]|0; - $1835 = (_bitshift64Ashr(0,($1831|0),32)|0); - $1836 = tempRet0; - $1837 = $909; - $1838 = $1837; - $1839 = HEAP32[$1838>>2]|0; - $1840 = (($1837) + 4)|0; - $1841 = $1840; - $1842 = HEAP32[$1841>>2]|0; - $1843 = (_bitshift64Ashr(0,($1839|0),32)|0); - $1844 = tempRet0; - $1845 = (___muldi3(($1843|0),($1844|0),($1835|0),($1836|0))|0); - $1846 = tempRet0; - $1847 = (_i64Add(($1827|0),($1828|0),($1845|0),($1846|0))|0); - $1848 = tempRet0; - $1849 = $922; - $1850 = $1849; - $1851 = HEAP32[$1850>>2]|0; - $1852 = (($1849) + 4)|0; - $1853 = $1852; - $1854 = HEAP32[$1853>>2]|0; - $1855 = (_bitshift64Ashr(0,($1851|0),32)|0); - $1856 = tempRet0; - $1857 = $557; - $1858 = $1857; - $1859 = HEAP32[$1858>>2]|0; - $1860 = (($1857) + 4)|0; - $1861 = $1860; - $1862 = HEAP32[$1861>>2]|0; - $1863 = (_bitshift64Ashr(0,($1859|0),32)|0); - $1864 = tempRet0; - $1865 = (___muldi3(($1863|0),($1864|0),($1855|0),($1856|0))|0); - $1866 = tempRet0; - $1867 = (_i64Add(($1847|0),($1848|0),($1865|0),($1866|0))|0); - $1868 = tempRet0; - $1869 = ((($output)) + 112|0); - $1870 = $1869; - $1871 = $1870; - HEAP32[$1871>>2] = $1867; - $1872 = (($1870) + 4)|0; - $1873 = $1872; - HEAP32[$1873>>2] = $1868; - $1874 = $735; - $1875 = $1874; - $1876 = HEAP32[$1875>>2]|0; - $1877 = (($1874) + 4)|0; - $1878 = $1877; - $1879 = HEAP32[$1878>>2]|0; - $1880 = (_bitshift64Ashr(0,($1876|0),32)|0); - $1881 = tempRet0; - $1882 = $909; - $1883 = $1882; - $1884 = HEAP32[$1883>>2]|0; - $1885 = (($1882) + 4)|0; - $1886 = $1885; - $1887 = HEAP32[$1886>>2]|0; - $1888 = (_bitshift64Ashr(0,($1884|0),32)|0); - $1889 = tempRet0; - $1890 = (___muldi3(($1888|0),($1889|0),($1880|0),($1881|0))|0); - $1891 = tempRet0; - $1892 = $922; - $1893 = $1892; - $1894 = HEAP32[$1893>>2]|0; - $1895 = (($1892) + 4)|0; - $1896 = $1895; - $1897 = HEAP32[$1896>>2]|0; - $1898 = (_bitshift64Ashr(0,($1894|0),32)|0); - $1899 = tempRet0; - $1900 = $722; - $1901 = $1900; - $1902 = HEAP32[$1901>>2]|0; - $1903 = (($1900) + 4)|0; - $1904 = $1903; - $1905 = HEAP32[$1904>>2]|0; - $1906 = (_bitshift64Ashr(0,($1902|0),32)|0); - $1907 = tempRet0; - $1908 = (___muldi3(($1906|0),($1907|0),($1898|0),($1899|0))|0); - $1909 = tempRet0; - $1910 = (_i64Add(($1908|0),($1909|0),($1890|0),($1891|0))|0); - $1911 = tempRet0; - $1912 = $570; - $1913 = $1912; - $1914 = HEAP32[$1913>>2]|0; - $1915 = (($1912) + 4)|0; - $1916 = $1915; - $1917 = HEAP32[$1916>>2]|0; - $1918 = (_bitshift64Ashr(0,($1914|0),32)|0); - $1919 = tempRet0; - $1920 = $1114; - $1921 = $1920; - $1922 = HEAP32[$1921>>2]|0; - $1923 = (($1920) + 4)|0; - $1924 = $1923; - $1925 = HEAP32[$1924>>2]|0; - $1926 = (_bitshift64Ashr(0,($1922|0),32)|0); - $1927 = tempRet0; - $1928 = (___muldi3(($1926|0),($1927|0),($1918|0),($1919|0))|0); - $1929 = tempRet0; - $1930 = (_i64Add(($1910|0),($1911|0),($1928|0),($1929|0))|0); - $1931 = tempRet0; - $1932 = $1127; - $1933 = $1932; - $1934 = HEAP32[$1933>>2]|0; - $1935 = (($1932) + 4)|0; - $1936 = $1935; - $1937 = HEAP32[$1936>>2]|0; - $1938 = (_bitshift64Ashr(0,($1934|0),32)|0); - $1939 = tempRet0; - $1940 = $557; - $1941 = $1940; - $1942 = HEAP32[$1941>>2]|0; - $1943 = (($1940) + 4)|0; - $1944 = $1943; - $1945 = HEAP32[$1944>>2]|0; - $1946 = (_bitshift64Ashr(0,($1942|0),32)|0); - $1947 = tempRet0; - $1948 = (___muldi3(($1946|0),($1947|0),($1938|0),($1939|0))|0); - $1949 = tempRet0; - $1950 = (_i64Add(($1930|0),($1931|0),($1948|0),($1949|0))|0); - $1951 = tempRet0; - $1952 = ((($output)) + 120|0); - $1953 = $1952; - $1954 = $1953; - HEAP32[$1954>>2] = $1950; - $1955 = (($1953) + 4)|0; - $1956 = $1955; - HEAP32[$1956>>2] = $1951; - $1957 = $922; - $1958 = $1957; - $1959 = HEAP32[$1958>>2]|0; - $1960 = (($1957) + 4)|0; - $1961 = $1960; - $1962 = HEAP32[$1961>>2]|0; - $1963 = (_bitshift64Ashr(0,($1959|0),32)|0); - $1964 = tempRet0; - $1965 = $909; - $1966 = $1965; - $1967 = HEAP32[$1966>>2]|0; - $1968 = (($1965) + 4)|0; - $1969 = $1968; - $1970 = HEAP32[$1969>>2]|0; - $1971 = (_bitshift64Ashr(0,($1967|0),32)|0); - $1972 = tempRet0; - $1973 = (___muldi3(($1971|0),($1972|0),($1963|0),($1964|0))|0); - $1974 = tempRet0; - $1975 = $735; - $1976 = $1975; - $1977 = HEAP32[$1976>>2]|0; - $1978 = (($1975) + 4)|0; - $1979 = $1978; - $1980 = HEAP32[$1979>>2]|0; - $1981 = (_bitshift64Ashr(0,($1977|0),32)|0); - $1982 = tempRet0; - $1983 = $1114; - $1984 = $1983; - $1985 = HEAP32[$1984>>2]|0; - $1986 = (($1983) + 4)|0; - $1987 = $1986; - $1988 = HEAP32[$1987>>2]|0; - $1989 = (_bitshift64Ashr(0,($1985|0),32)|0); - $1990 = tempRet0; - $1991 = (___muldi3(($1989|0),($1990|0),($1981|0),($1982|0))|0); - $1992 = tempRet0; - $1993 = $1127; - $1994 = $1993; - $1995 = HEAP32[$1994>>2]|0; - $1996 = (($1993) + 4)|0; - $1997 = $1996; - $1998 = HEAP32[$1997>>2]|0; - $1999 = (_bitshift64Ashr(0,($1995|0),32)|0); - $2000 = tempRet0; - $2001 = $722; - $2002 = $2001; - $2003 = HEAP32[$2002>>2]|0; - $2004 = (($2001) + 4)|0; - $2005 = $2004; - $2006 = HEAP32[$2005>>2]|0; - $2007 = (_bitshift64Ashr(0,($2003|0),32)|0); - $2008 = tempRet0; - $2009 = (___muldi3(($2007|0),($2008|0),($1999|0),($2000|0))|0); - $2010 = tempRet0; - $2011 = (_i64Add(($2009|0),($2010|0),($1991|0),($1992|0))|0); - $2012 = tempRet0; - $2013 = (_bitshift64Shl(($2011|0),($2012|0),1)|0); - $2014 = tempRet0; - $2015 = (_i64Add(($2013|0),($2014|0),($1973|0),($1974|0))|0); - $2016 = tempRet0; - $2017 = ((($output)) + 128|0); - $2018 = $2017; - $2019 = $2018; - HEAP32[$2019>>2] = $2015; - $2020 = (($2018) + 4)|0; - $2021 = $2020; - HEAP32[$2021>>2] = $2016; - $2022 = $922; - $2023 = $2022; - $2024 = HEAP32[$2023>>2]|0; - $2025 = (($2022) + 4)|0; - $2026 = $2025; - $2027 = HEAP32[$2026>>2]|0; - $2028 = (_bitshift64Ashr(0,($2024|0),32)|0); - $2029 = tempRet0; - $2030 = $1114; - $2031 = $2030; - $2032 = HEAP32[$2031>>2]|0; - $2033 = (($2030) + 4)|0; - $2034 = $2033; - $2035 = HEAP32[$2034>>2]|0; - $2036 = (_bitshift64Ashr(0,($2032|0),32)|0); - $2037 = tempRet0; - $2038 = (___muldi3(($2036|0),($2037|0),($2028|0),($2029|0))|0); - $2039 = tempRet0; - $2040 = $1127; - $2041 = $2040; - $2042 = HEAP32[$2041>>2]|0; - $2043 = (($2040) + 4)|0; - $2044 = $2043; - $2045 = HEAP32[$2044>>2]|0; - $2046 = (_bitshift64Ashr(0,($2042|0),32)|0); - $2047 = tempRet0; - $2048 = $909; - $2049 = $2048; - $2050 = HEAP32[$2049>>2]|0; - $2051 = (($2048) + 4)|0; - $2052 = $2051; - $2053 = HEAP32[$2052>>2]|0; - $2054 = (_bitshift64Ashr(0,($2050|0),32)|0); - $2055 = tempRet0; - $2056 = (___muldi3(($2054|0),($2055|0),($2046|0),($2047|0))|0); - $2057 = tempRet0; - $2058 = (_i64Add(($2056|0),($2057|0),($2038|0),($2039|0))|0); - $2059 = tempRet0; - $2060 = ((($output)) + 136|0); - $2061 = $2060; - $2062 = $2061; - HEAP32[$2062>>2] = $2058; - $2063 = (($2061) + 4)|0; - $2064 = $2063; - HEAP32[$2064>>2] = $2059; - $2065 = $1127; - $2066 = $2065; - $2067 = HEAP32[$2066>>2]|0; - $2068 = (($2065) + 4)|0; - $2069 = $2068; - $2070 = HEAP32[$2069>>2]|0; - $2071 = (_bitshift64Ashr(0,($2067|0),31)|0); - $2072 = tempRet0; - $2073 = $1114; - $2074 = $2073; - $2075 = HEAP32[$2074>>2]|0; - $2076 = (($2073) + 4)|0; - $2077 = $2076; - $2078 = HEAP32[$2077>>2]|0; - $2079 = (_bitshift64Ashr(0,($2075|0),32)|0); - $2080 = tempRet0; - $2081 = (___muldi3(($2079|0),($2080|0),($2071|0),($2072|0))|0); - $2082 = tempRet0; - $2083 = ((($output)) + 144|0); - $2084 = $2083; - $2085 = $2084; - HEAP32[$2085>>2] = $2081; - $2086 = (($2084) + 4)|0; - $2087 = $2086; - HEAP32[$2087>>2] = $2082; - return; -} -function _freduce_degree($output) { - $output = $output|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; - var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; - var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; - var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; - var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; - var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; - var $297 = 0, $298 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0; - var $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0; - var $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0; - var $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0; - var sp = 0; - sp = STACKTOP; - $0 = ((($output)) + 144|0); - $1 = $0; - $2 = $1; - $3 = HEAP32[$2>>2]|0; - $4 = (($1) + 4)|0; - $5 = $4; - $6 = HEAP32[$5>>2]|0; - $7 = (_bitshift64Shl(($3|0),($6|0),4)|0); - $8 = tempRet0; - $9 = ((($output)) + 64|0); - $10 = $9; - $11 = $10; - $12 = HEAP32[$11>>2]|0; - $13 = (($10) + 4)|0; - $14 = $13; - $15 = HEAP32[$14>>2]|0; - $16 = (_i64Add(($12|0),($15|0),($7|0),($8|0))|0); - $17 = tempRet0; - $18 = (_bitshift64Shl(($3|0),($6|0),1)|0); - $19 = tempRet0; - $20 = (_i64Add(($18|0),($19|0),($16|0),($17|0))|0); - $21 = tempRet0; - $22 = $0; - $23 = $22; - $24 = HEAP32[$23>>2]|0; - $25 = (($22) + 4)|0; - $26 = $25; - $27 = HEAP32[$26>>2]|0; - $28 = (_i64Add(($20|0),($21|0),($24|0),($27|0))|0); - $29 = tempRet0; - $30 = $9; - $31 = $30; - HEAP32[$31>>2] = $28; - $32 = (($30) + 4)|0; - $33 = $32; - HEAP32[$33>>2] = $29; - $34 = ((($output)) + 136|0); - $35 = $34; - $36 = $35; - $37 = HEAP32[$36>>2]|0; - $38 = (($35) + 4)|0; - $39 = $38; - $40 = HEAP32[$39>>2]|0; - $41 = (_bitshift64Shl(($37|0),($40|0),4)|0); - $42 = tempRet0; - $43 = ((($output)) + 56|0); - $44 = $43; - $45 = $44; - $46 = HEAP32[$45>>2]|0; - $47 = (($44) + 4)|0; - $48 = $47; - $49 = HEAP32[$48>>2]|0; - $50 = (_i64Add(($46|0),($49|0),($41|0),($42|0))|0); - $51 = tempRet0; - $52 = (_bitshift64Shl(($37|0),($40|0),1)|0); - $53 = tempRet0; - $54 = (_i64Add(($52|0),($53|0),($50|0),($51|0))|0); - $55 = tempRet0; - $56 = $34; - $57 = $56; - $58 = HEAP32[$57>>2]|0; - $59 = (($56) + 4)|0; - $60 = $59; - $61 = HEAP32[$60>>2]|0; - $62 = (_i64Add(($54|0),($55|0),($58|0),($61|0))|0); - $63 = tempRet0; - $64 = $43; - $65 = $64; - HEAP32[$65>>2] = $62; - $66 = (($64) + 4)|0; - $67 = $66; - HEAP32[$67>>2] = $63; - $68 = ((($output)) + 128|0); - $69 = $68; - $70 = $69; - $71 = HEAP32[$70>>2]|0; - $72 = (($69) + 4)|0; - $73 = $72; - $74 = HEAP32[$73>>2]|0; - $75 = (_bitshift64Shl(($71|0),($74|0),4)|0); - $76 = tempRet0; - $77 = ((($output)) + 48|0); - $78 = $77; - $79 = $78; - $80 = HEAP32[$79>>2]|0; - $81 = (($78) + 4)|0; - $82 = $81; - $83 = HEAP32[$82>>2]|0; - $84 = (_i64Add(($80|0),($83|0),($75|0),($76|0))|0); - $85 = tempRet0; - $86 = (_bitshift64Shl(($71|0),($74|0),1)|0); - $87 = tempRet0; - $88 = (_i64Add(($86|0),($87|0),($84|0),($85|0))|0); - $89 = tempRet0; - $90 = $68; - $91 = $90; - $92 = HEAP32[$91>>2]|0; - $93 = (($90) + 4)|0; - $94 = $93; - $95 = HEAP32[$94>>2]|0; - $96 = (_i64Add(($88|0),($89|0),($92|0),($95|0))|0); - $97 = tempRet0; - $98 = $77; - $99 = $98; - HEAP32[$99>>2] = $96; - $100 = (($98) + 4)|0; - $101 = $100; - HEAP32[$101>>2] = $97; - $102 = ((($output)) + 120|0); - $103 = $102; - $104 = $103; - $105 = HEAP32[$104>>2]|0; - $106 = (($103) + 4)|0; - $107 = $106; - $108 = HEAP32[$107>>2]|0; - $109 = (_bitshift64Shl(($105|0),($108|0),4)|0); - $110 = tempRet0; - $111 = ((($output)) + 40|0); - $112 = $111; - $113 = $112; - $114 = HEAP32[$113>>2]|0; - $115 = (($112) + 4)|0; - $116 = $115; - $117 = HEAP32[$116>>2]|0; - $118 = (_i64Add(($114|0),($117|0),($109|0),($110|0))|0); - $119 = tempRet0; - $120 = (_bitshift64Shl(($105|0),($108|0),1)|0); - $121 = tempRet0; - $122 = (_i64Add(($120|0),($121|0),($118|0),($119|0))|0); - $123 = tempRet0; - $124 = $102; - $125 = $124; - $126 = HEAP32[$125>>2]|0; - $127 = (($124) + 4)|0; - $128 = $127; - $129 = HEAP32[$128>>2]|0; - $130 = (_i64Add(($122|0),($123|0),($126|0),($129|0))|0); - $131 = tempRet0; - $132 = $111; - $133 = $132; - HEAP32[$133>>2] = $130; - $134 = (($132) + 4)|0; - $135 = $134; - HEAP32[$135>>2] = $131; - $136 = ((($output)) + 112|0); - $137 = $136; - $138 = $137; - $139 = HEAP32[$138>>2]|0; - $140 = (($137) + 4)|0; - $141 = $140; - $142 = HEAP32[$141>>2]|0; - $143 = (_bitshift64Shl(($139|0),($142|0),4)|0); - $144 = tempRet0; - $145 = ((($output)) + 32|0); - $146 = $145; - $147 = $146; - $148 = HEAP32[$147>>2]|0; - $149 = (($146) + 4)|0; - $150 = $149; - $151 = HEAP32[$150>>2]|0; - $152 = (_i64Add(($148|0),($151|0),($143|0),($144|0))|0); - $153 = tempRet0; - $154 = (_bitshift64Shl(($139|0),($142|0),1)|0); - $155 = tempRet0; - $156 = (_i64Add(($154|0),($155|0),($152|0),($153|0))|0); - $157 = tempRet0; - $158 = $136; - $159 = $158; - $160 = HEAP32[$159>>2]|0; - $161 = (($158) + 4)|0; - $162 = $161; - $163 = HEAP32[$162>>2]|0; - $164 = (_i64Add(($156|0),($157|0),($160|0),($163|0))|0); - $165 = tempRet0; - $166 = $145; - $167 = $166; - HEAP32[$167>>2] = $164; - $168 = (($166) + 4)|0; - $169 = $168; - HEAP32[$169>>2] = $165; - $170 = ((($output)) + 104|0); - $171 = $170; - $172 = $171; - $173 = HEAP32[$172>>2]|0; - $174 = (($171) + 4)|0; - $175 = $174; - $176 = HEAP32[$175>>2]|0; - $177 = (_bitshift64Shl(($173|0),($176|0),4)|0); - $178 = tempRet0; - $179 = ((($output)) + 24|0); - $180 = $179; - $181 = $180; - $182 = HEAP32[$181>>2]|0; - $183 = (($180) + 4)|0; - $184 = $183; - $185 = HEAP32[$184>>2]|0; - $186 = (_i64Add(($182|0),($185|0),($177|0),($178|0))|0); - $187 = tempRet0; - $188 = (_bitshift64Shl(($173|0),($176|0),1)|0); - $189 = tempRet0; - $190 = (_i64Add(($188|0),($189|0),($186|0),($187|0))|0); - $191 = tempRet0; - $192 = $170; - $193 = $192; - $194 = HEAP32[$193>>2]|0; - $195 = (($192) + 4)|0; - $196 = $195; - $197 = HEAP32[$196>>2]|0; - $198 = (_i64Add(($190|0),($191|0),($194|0),($197|0))|0); - $199 = tempRet0; - $200 = $179; - $201 = $200; - HEAP32[$201>>2] = $198; - $202 = (($200) + 4)|0; - $203 = $202; - HEAP32[$203>>2] = $199; - $204 = ((($output)) + 96|0); - $205 = $204; - $206 = $205; - $207 = HEAP32[$206>>2]|0; - $208 = (($205) + 4)|0; - $209 = $208; - $210 = HEAP32[$209>>2]|0; - $211 = (_bitshift64Shl(($207|0),($210|0),4)|0); - $212 = tempRet0; - $213 = ((($output)) + 16|0); - $214 = $213; - $215 = $214; - $216 = HEAP32[$215>>2]|0; - $217 = (($214) + 4)|0; - $218 = $217; - $219 = HEAP32[$218>>2]|0; - $220 = (_i64Add(($216|0),($219|0),($211|0),($212|0))|0); - $221 = tempRet0; - $222 = (_bitshift64Shl(($207|0),($210|0),1)|0); - $223 = tempRet0; - $224 = (_i64Add(($222|0),($223|0),($220|0),($221|0))|0); - $225 = tempRet0; - $226 = $204; - $227 = $226; - $228 = HEAP32[$227>>2]|0; - $229 = (($226) + 4)|0; - $230 = $229; - $231 = HEAP32[$230>>2]|0; - $232 = (_i64Add(($224|0),($225|0),($228|0),($231|0))|0); - $233 = tempRet0; - $234 = $213; - $235 = $234; - HEAP32[$235>>2] = $232; - $236 = (($234) + 4)|0; - $237 = $236; - HEAP32[$237>>2] = $233; - $238 = ((($output)) + 88|0); - $239 = $238; - $240 = $239; - $241 = HEAP32[$240>>2]|0; - $242 = (($239) + 4)|0; - $243 = $242; - $244 = HEAP32[$243>>2]|0; - $245 = (_bitshift64Shl(($241|0),($244|0),4)|0); - $246 = tempRet0; - $247 = ((($output)) + 8|0); - $248 = $247; - $249 = $248; - $250 = HEAP32[$249>>2]|0; - $251 = (($248) + 4)|0; - $252 = $251; - $253 = HEAP32[$252>>2]|0; - $254 = (_i64Add(($250|0),($253|0),($245|0),($246|0))|0); - $255 = tempRet0; - $256 = (_bitshift64Shl(($241|0),($244|0),1)|0); - $257 = tempRet0; - $258 = (_i64Add(($256|0),($257|0),($254|0),($255|0))|0); - $259 = tempRet0; - $260 = $238; - $261 = $260; - $262 = HEAP32[$261>>2]|0; - $263 = (($260) + 4)|0; - $264 = $263; - $265 = HEAP32[$264>>2]|0; - $266 = (_i64Add(($258|0),($259|0),($262|0),($265|0))|0); - $267 = tempRet0; - $268 = $247; - $269 = $268; - HEAP32[$269>>2] = $266; - $270 = (($268) + 4)|0; - $271 = $270; - HEAP32[$271>>2] = $267; - $272 = ((($output)) + 80|0); - $273 = $272; - $274 = $273; - $275 = HEAP32[$274>>2]|0; - $276 = (($273) + 4)|0; - $277 = $276; - $278 = HEAP32[$277>>2]|0; - $279 = (_bitshift64Shl(($275|0),($278|0),4)|0); - $280 = tempRet0; - $281 = $output; - $282 = $281; - $283 = HEAP32[$282>>2]|0; - $284 = (($281) + 4)|0; - $285 = $284; - $286 = HEAP32[$285>>2]|0; - $287 = (_i64Add(($283|0),($286|0),($279|0),($280|0))|0); - $288 = tempRet0; - $289 = (_bitshift64Shl(($275|0),($278|0),1)|0); - $290 = tempRet0; - $291 = (_i64Add(($289|0),($290|0),($287|0),($288|0))|0); - $292 = tempRet0; - $293 = (_i64Add(($291|0),($292|0),($275|0),($278|0))|0); - $294 = tempRet0; - $295 = $output; - $296 = $295; - HEAP32[$296>>2] = $293; - $297 = (($295) + 4)|0; - $298 = $297; - HEAP32[$298>>2] = $294; - return; -} -function _freduce_coefficients($output) { - $output = $output|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0; - var $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0; - var $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0; - var $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0; - var $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $i$01 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = ((($output)) + 80|0); - $1 = $0; - $2 = $1; - HEAP32[$2>>2] = 0; - $3 = (($1) + 4)|0; - $4 = $3; - HEAP32[$4>>2] = 0; - $i$01 = 0; - while(1) { - $5 = (($output) + ($i$01<<3)|0); - $6 = $5; - $7 = $6; - $8 = HEAP32[$7>>2]|0; - $9 = (($6) + 4)|0; - $10 = $9; - $11 = HEAP32[$10>>2]|0; - $12 = (_div_by_2_26($8,$11)|0); - $13 = tempRet0; - $14 = (_bitshift64Shl(($12|0),($13|0),26)|0); - $15 = tempRet0; - $16 = (_i64Subtract(($8|0),($11|0),($14|0),($15|0))|0); - $17 = tempRet0; - $18 = $5; - $19 = $18; - HEAP32[$19>>2] = $16; - $20 = (($18) + 4)|0; - $21 = $20; - HEAP32[$21>>2] = $17; - $22 = $i$01 | 1; - $23 = (($output) + ($22<<3)|0); - $24 = $23; - $25 = $24; - $26 = HEAP32[$25>>2]|0; - $27 = (($24) + 4)|0; - $28 = $27; - $29 = HEAP32[$28>>2]|0; - $30 = (_i64Add(($26|0),($29|0),($12|0),($13|0))|0); - $31 = tempRet0; - $32 = (_div_by_2_25($30,$31)|0); - $33 = tempRet0; - $34 = (_bitshift64Shl(($32|0),($33|0),25)|0); - $35 = tempRet0; - $36 = (_i64Subtract(($30|0),($31|0),($34|0),($35|0))|0); - $37 = tempRet0; - $38 = $23; - $39 = $38; - HEAP32[$39>>2] = $36; - $40 = (($38) + 4)|0; - $41 = $40; - HEAP32[$41>>2] = $37; - $42 = (($i$01) + 2)|0; - $43 = (($output) + ($42<<3)|0); - $44 = $43; - $45 = $44; - $46 = HEAP32[$45>>2]|0; - $47 = (($44) + 4)|0; - $48 = $47; - $49 = HEAP32[$48>>2]|0; - $50 = (_i64Add(($46|0),($49|0),($32|0),($33|0))|0); - $51 = tempRet0; - $52 = $43; - $53 = $52; - HEAP32[$53>>2] = $50; - $54 = (($52) + 4)|0; - $55 = $54; - HEAP32[$55>>2] = $51; - $56 = ($42>>>0)<(10); - if ($56) { - $i$01 = $42; - } else { - break; - } - } - $57 = $0; - $58 = $57; - $59 = HEAP32[$58>>2]|0; - $60 = (($57) + 4)|0; - $61 = $60; - $62 = HEAP32[$61>>2]|0; - $63 = (_bitshift64Shl(($59|0),($62|0),4)|0); - $64 = tempRet0; - $65 = $output; - $66 = $65; - $67 = HEAP32[$66>>2]|0; - $68 = (($65) + 4)|0; - $69 = $68; - $70 = HEAP32[$69>>2]|0; - $71 = (_i64Add(($67|0),($70|0),($63|0),($64|0))|0); - $72 = tempRet0; - $73 = (_bitshift64Shl(($59|0),($62|0),1)|0); - $74 = tempRet0; - $75 = (_i64Add(($73|0),($74|0),($71|0),($72|0))|0); - $76 = tempRet0; - $77 = (_i64Add(($75|0),($76|0),($59|0),($62|0))|0); - $78 = tempRet0; - $79 = $output; - $80 = $79; - HEAP32[$80>>2] = $77; - $81 = (($79) + 4)|0; - $82 = $81; - HEAP32[$82>>2] = $78; - $83 = $0; - $84 = $83; - HEAP32[$84>>2] = 0; - $85 = (($83) + 4)|0; - $86 = $85; - HEAP32[$86>>2] = 0; - $87 = $output; - $88 = $87; - $89 = HEAP32[$88>>2]|0; - $90 = (($87) + 4)|0; - $91 = $90; - $92 = HEAP32[$91>>2]|0; - $93 = (_div_by_2_26($89,$92)|0); - $94 = tempRet0; - $95 = (_bitshift64Shl(($93|0),($94|0),26)|0); - $96 = tempRet0; - $97 = (_i64Subtract(($89|0),($92|0),($95|0),($96|0))|0); - $98 = tempRet0; - $99 = $output; - $100 = $99; - HEAP32[$100>>2] = $97; - $101 = (($99) + 4)|0; - $102 = $101; - HEAP32[$102>>2] = $98; - $103 = ((($output)) + 8|0); - $104 = $103; - $105 = $104; - $106 = HEAP32[$105>>2]|0; - $107 = (($104) + 4)|0; - $108 = $107; - $109 = HEAP32[$108>>2]|0; - $110 = (_i64Add(($106|0),($109|0),($93|0),($94|0))|0); - $111 = tempRet0; - $112 = $103; - $113 = $112; - HEAP32[$113>>2] = $110; - $114 = (($112) + 4)|0; - $115 = $114; - HEAP32[$115>>2] = $111; - return; -} -function _div_by_2_26($0,$1) { - $0 = $0|0; - $1 = $1|0; - var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; - sp = STACKTOP; - $2 = $1 >> 31; - $3 = $2 >>> 6; - $4 = (_i64Add(($3|0),0,($0|0),($1|0))|0); - $5 = tempRet0; - $6 = (_bitshift64Ashr(($4|0),($5|0),26)|0); - $7 = tempRet0; - tempRet0 = ($7); - return ($6|0); -} -function _div_by_2_25($0,$1) { - $0 = $0|0; - $1 = $1|0; - var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; - sp = STACKTOP; - $2 = $1 >> 31; - $3 = $2 >>> 7; - $4 = (_i64Add(($3|0),0,($0|0),($1|0))|0); - $5 = tempRet0; - $6 = (_bitshift64Ashr(($4|0),($5|0),25)|0); - $7 = tempRet0; - tempRet0 = ($7); - return ($6|0); -} -function _fsquare($output,$in) { - $output = $output|0; - $in = $in|0; - var $t = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 160|0; - $t = sp; - _fsquare_inner($t,$in); - _freduce_degree($t); - _freduce_coefficients($t); - dest=$output; src=$t; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - STACKTOP = sp;return; -} -function _fsquare_inner($output,$in) { - $output = $output|0; - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; - var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0; - var $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0; - var $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0; - var $107 = 0, $1070 = 0, $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0; - var $1088 = 0, $1089 = 0, $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0; - var $1105 = 0, $1106 = 0, $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0; - var $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0; - var $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0; - var $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0; - var $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0; - var $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0; - var $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0; - var $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0; - var $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0; - var $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0; - var $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0; - var $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0; - var $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0; - var $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0; - var $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0; - var $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0; - var $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0; - var $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0; - var $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0; - var $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0; - var $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0; - var $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0; - var $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0; - var $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0; - var $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0; - var $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0; - var $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0; - var $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0; - var $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0; - var $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0; - var $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0; - var $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0; - var $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0; - var $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0; - var $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0; - var $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0; - var $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0; - var $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0; - var $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0; - var $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0; - var $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0; - var $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0; - var $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0; - var $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0; - var $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0; - var $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0; - var $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0; - var $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0; - var $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0; - var $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, label = 0; - var sp = 0; - sp = STACKTOP; - $0 = $in; - $1 = $0; - $2 = HEAP32[$1>>2]|0; - $3 = (($0) + 4)|0; - $4 = $3; - $5 = HEAP32[$4>>2]|0; - $6 = (_bitshift64Ashr(0,($2|0),32)|0); - $7 = tempRet0; - $8 = (___muldi3(($6|0),($7|0),($6|0),($7|0))|0); - $9 = tempRet0; - $10 = $output; - $11 = $10; - HEAP32[$11>>2] = $8; - $12 = (($10) + 4)|0; - $13 = $12; - HEAP32[$13>>2] = $9; - $14 = $in; - $15 = $14; - $16 = HEAP32[$15>>2]|0; - $17 = (($14) + 4)|0; - $18 = $17; - $19 = HEAP32[$18>>2]|0; - $20 = (_bitshift64Ashr(0,($16|0),31)|0); - $21 = tempRet0; - $22 = ((($in)) + 8|0); - $23 = $22; - $24 = $23; - $25 = HEAP32[$24>>2]|0; - $26 = (($23) + 4)|0; - $27 = $26; - $28 = HEAP32[$27>>2]|0; - $29 = (_bitshift64Ashr(0,($25|0),32)|0); - $30 = tempRet0; - $31 = (___muldi3(($29|0),($30|0),($20|0),($21|0))|0); - $32 = tempRet0; - $33 = ((($output)) + 8|0); - $34 = $33; - $35 = $34; - HEAP32[$35>>2] = $31; - $36 = (($34) + 4)|0; - $37 = $36; - HEAP32[$37>>2] = $32; - $38 = $22; - $39 = $38; - $40 = HEAP32[$39>>2]|0; - $41 = (($38) + 4)|0; - $42 = $41; - $43 = HEAP32[$42>>2]|0; - $44 = (_bitshift64Ashr(0,($40|0),32)|0); - $45 = tempRet0; - $46 = (___muldi3(($44|0),($45|0),($44|0),($45|0))|0); - $47 = tempRet0; - $48 = $in; - $49 = $48; - $50 = HEAP32[$49>>2]|0; - $51 = (($48) + 4)|0; - $52 = $51; - $53 = HEAP32[$52>>2]|0; - $54 = (_bitshift64Ashr(0,($50|0),32)|0); - $55 = tempRet0; - $56 = ((($in)) + 16|0); - $57 = $56; - $58 = $57; - $59 = HEAP32[$58>>2]|0; - $60 = (($57) + 4)|0; - $61 = $60; - $62 = HEAP32[$61>>2]|0; - $63 = (_bitshift64Ashr(0,($59|0),32)|0); - $64 = tempRet0; - $65 = (___muldi3(($63|0),($64|0),($54|0),($55|0))|0); - $66 = tempRet0; - $67 = (_i64Add(($65|0),($66|0),($46|0),($47|0))|0); - $68 = tempRet0; - $69 = (_bitshift64Shl(($67|0),($68|0),1)|0); - $70 = tempRet0; - $71 = ((($output)) + 16|0); - $72 = $71; - $73 = $72; - HEAP32[$73>>2] = $69; - $74 = (($72) + 4)|0; - $75 = $74; - HEAP32[$75>>2] = $70; - $76 = $22; - $77 = $76; - $78 = HEAP32[$77>>2]|0; - $79 = (($76) + 4)|0; - $80 = $79; - $81 = HEAP32[$80>>2]|0; - $82 = (_bitshift64Ashr(0,($78|0),32)|0); - $83 = tempRet0; - $84 = $56; - $85 = $84; - $86 = HEAP32[$85>>2]|0; - $87 = (($84) + 4)|0; - $88 = $87; - $89 = HEAP32[$88>>2]|0; - $90 = (_bitshift64Ashr(0,($86|0),32)|0); - $91 = tempRet0; - $92 = (___muldi3(($90|0),($91|0),($82|0),($83|0))|0); - $93 = tempRet0; - $94 = $in; - $95 = $94; - $96 = HEAP32[$95>>2]|0; - $97 = (($94) + 4)|0; - $98 = $97; - $99 = HEAP32[$98>>2]|0; - $100 = (_bitshift64Ashr(0,($96|0),32)|0); - $101 = tempRet0; - $102 = ((($in)) + 24|0); - $103 = $102; - $104 = $103; - $105 = HEAP32[$104>>2]|0; - $106 = (($103) + 4)|0; - $107 = $106; - $108 = HEAP32[$107>>2]|0; - $109 = (_bitshift64Ashr(0,($105|0),32)|0); - $110 = tempRet0; - $111 = (___muldi3(($109|0),($110|0),($100|0),($101|0))|0); - $112 = tempRet0; - $113 = (_i64Add(($111|0),($112|0),($92|0),($93|0))|0); - $114 = tempRet0; - $115 = (_bitshift64Shl(($113|0),($114|0),1)|0); - $116 = tempRet0; - $117 = ((($output)) + 24|0); - $118 = $117; - $119 = $118; - HEAP32[$119>>2] = $115; - $120 = (($118) + 4)|0; - $121 = $120; - HEAP32[$121>>2] = $116; - $122 = $56; - $123 = $122; - $124 = HEAP32[$123>>2]|0; - $125 = (($122) + 4)|0; - $126 = $125; - $127 = HEAP32[$126>>2]|0; - $128 = (_bitshift64Ashr(0,($124|0),32)|0); - $129 = tempRet0; - $130 = (___muldi3(($128|0),($129|0),($128|0),($129|0))|0); - $131 = tempRet0; - $132 = $22; - $133 = $132; - $134 = HEAP32[$133>>2]|0; - $135 = (($132) + 4)|0; - $136 = $135; - $137 = HEAP32[$136>>2]|0; - $138 = (_bitshift64Ashr(0,($134|0),30)|0); - $139 = tempRet0; - $140 = $102; - $141 = $140; - $142 = HEAP32[$141>>2]|0; - $143 = (($140) + 4)|0; - $144 = $143; - $145 = HEAP32[$144>>2]|0; - $146 = (_bitshift64Ashr(0,($142|0),32)|0); - $147 = tempRet0; - $148 = (___muldi3(($146|0),($147|0),($138|0),($139|0))|0); - $149 = tempRet0; - $150 = (_i64Add(($148|0),($149|0),($130|0),($131|0))|0); - $151 = tempRet0; - $152 = $in; - $153 = $152; - $154 = HEAP32[$153>>2]|0; - $155 = (($152) + 4)|0; - $156 = $155; - $157 = HEAP32[$156>>2]|0; - $158 = (_bitshift64Ashr(0,($154|0),31)|0); - $159 = tempRet0; - $160 = ((($in)) + 32|0); - $161 = $160; - $162 = $161; - $163 = HEAP32[$162>>2]|0; - $164 = (($161) + 4)|0; - $165 = $164; - $166 = HEAP32[$165>>2]|0; - $167 = (_bitshift64Ashr(0,($163|0),32)|0); - $168 = tempRet0; - $169 = (___muldi3(($167|0),($168|0),($158|0),($159|0))|0); - $170 = tempRet0; - $171 = (_i64Add(($150|0),($151|0),($169|0),($170|0))|0); - $172 = tempRet0; - $173 = ((($output)) + 32|0); - $174 = $173; - $175 = $174; - HEAP32[$175>>2] = $171; - $176 = (($174) + 4)|0; - $177 = $176; - HEAP32[$177>>2] = $172; - $178 = $56; - $179 = $178; - $180 = HEAP32[$179>>2]|0; - $181 = (($178) + 4)|0; - $182 = $181; - $183 = HEAP32[$182>>2]|0; - $184 = (_bitshift64Ashr(0,($180|0),32)|0); - $185 = tempRet0; - $186 = $102; - $187 = $186; - $188 = HEAP32[$187>>2]|0; - $189 = (($186) + 4)|0; - $190 = $189; - $191 = HEAP32[$190>>2]|0; - $192 = (_bitshift64Ashr(0,($188|0),32)|0); - $193 = tempRet0; - $194 = (___muldi3(($192|0),($193|0),($184|0),($185|0))|0); - $195 = tempRet0; - $196 = $22; - $197 = $196; - $198 = HEAP32[$197>>2]|0; - $199 = (($196) + 4)|0; - $200 = $199; - $201 = HEAP32[$200>>2]|0; - $202 = (_bitshift64Ashr(0,($198|0),32)|0); - $203 = tempRet0; - $204 = $160; - $205 = $204; - $206 = HEAP32[$205>>2]|0; - $207 = (($204) + 4)|0; - $208 = $207; - $209 = HEAP32[$208>>2]|0; - $210 = (_bitshift64Ashr(0,($206|0),32)|0); - $211 = tempRet0; - $212 = (___muldi3(($210|0),($211|0),($202|0),($203|0))|0); - $213 = tempRet0; - $214 = (_i64Add(($212|0),($213|0),($194|0),($195|0))|0); - $215 = tempRet0; - $216 = $in; - $217 = $216; - $218 = HEAP32[$217>>2]|0; - $219 = (($216) + 4)|0; - $220 = $219; - $221 = HEAP32[$220>>2]|0; - $222 = (_bitshift64Ashr(0,($218|0),32)|0); - $223 = tempRet0; - $224 = ((($in)) + 40|0); - $225 = $224; - $226 = $225; - $227 = HEAP32[$226>>2]|0; - $228 = (($225) + 4)|0; - $229 = $228; - $230 = HEAP32[$229>>2]|0; - $231 = (_bitshift64Ashr(0,($227|0),32)|0); - $232 = tempRet0; - $233 = (___muldi3(($231|0),($232|0),($222|0),($223|0))|0); - $234 = tempRet0; - $235 = (_i64Add(($214|0),($215|0),($233|0),($234|0))|0); - $236 = tempRet0; - $237 = (_bitshift64Shl(($235|0),($236|0),1)|0); - $238 = tempRet0; - $239 = ((($output)) + 40|0); - $240 = $239; - $241 = $240; - HEAP32[$241>>2] = $237; - $242 = (($240) + 4)|0; - $243 = $242; - HEAP32[$243>>2] = $238; - $244 = $102; - $245 = $244; - $246 = HEAP32[$245>>2]|0; - $247 = (($244) + 4)|0; - $248 = $247; - $249 = HEAP32[$248>>2]|0; - $250 = (_bitshift64Ashr(0,($246|0),32)|0); - $251 = tempRet0; - $252 = (___muldi3(($250|0),($251|0),($250|0),($251|0))|0); - $253 = tempRet0; - $254 = $56; - $255 = $254; - $256 = HEAP32[$255>>2]|0; - $257 = (($254) + 4)|0; - $258 = $257; - $259 = HEAP32[$258>>2]|0; - $260 = (_bitshift64Ashr(0,($256|0),32)|0); - $261 = tempRet0; - $262 = $160; - $263 = $262; - $264 = HEAP32[$263>>2]|0; - $265 = (($262) + 4)|0; - $266 = $265; - $267 = HEAP32[$266>>2]|0; - $268 = (_bitshift64Ashr(0,($264|0),32)|0); - $269 = tempRet0; - $270 = (___muldi3(($268|0),($269|0),($260|0),($261|0))|0); - $271 = tempRet0; - $272 = (_i64Add(($270|0),($271|0),($252|0),($253|0))|0); - $273 = tempRet0; - $274 = $in; - $275 = $274; - $276 = HEAP32[$275>>2]|0; - $277 = (($274) + 4)|0; - $278 = $277; - $279 = HEAP32[$278>>2]|0; - $280 = (_bitshift64Ashr(0,($276|0),32)|0); - $281 = tempRet0; - $282 = ((($in)) + 48|0); - $283 = $282; - $284 = $283; - $285 = HEAP32[$284>>2]|0; - $286 = (($283) + 4)|0; - $287 = $286; - $288 = HEAP32[$287>>2]|0; - $289 = (_bitshift64Ashr(0,($285|0),32)|0); - $290 = tempRet0; - $291 = (___muldi3(($289|0),($290|0),($280|0),($281|0))|0); - $292 = tempRet0; - $293 = (_i64Add(($272|0),($273|0),($291|0),($292|0))|0); - $294 = tempRet0; - $295 = $22; - $296 = $295; - $297 = HEAP32[$296>>2]|0; - $298 = (($295) + 4)|0; - $299 = $298; - $300 = HEAP32[$299>>2]|0; - $301 = (_bitshift64Ashr(0,($297|0),31)|0); - $302 = tempRet0; - $303 = $224; - $304 = $303; - $305 = HEAP32[$304>>2]|0; - $306 = (($303) + 4)|0; - $307 = $306; - $308 = HEAP32[$307>>2]|0; - $309 = (_bitshift64Ashr(0,($305|0),32)|0); - $310 = tempRet0; - $311 = (___muldi3(($309|0),($310|0),($301|0),($302|0))|0); - $312 = tempRet0; - $313 = (_i64Add(($293|0),($294|0),($311|0),($312|0))|0); - $314 = tempRet0; - $315 = (_bitshift64Shl(($313|0),($314|0),1)|0); - $316 = tempRet0; - $317 = ((($output)) + 48|0); - $318 = $317; - $319 = $318; - HEAP32[$319>>2] = $315; - $320 = (($318) + 4)|0; - $321 = $320; - HEAP32[$321>>2] = $316; - $322 = $102; - $323 = $322; - $324 = HEAP32[$323>>2]|0; - $325 = (($322) + 4)|0; - $326 = $325; - $327 = HEAP32[$326>>2]|0; - $328 = (_bitshift64Ashr(0,($324|0),32)|0); - $329 = tempRet0; - $330 = $160; - $331 = $330; - $332 = HEAP32[$331>>2]|0; - $333 = (($330) + 4)|0; - $334 = $333; - $335 = HEAP32[$334>>2]|0; - $336 = (_bitshift64Ashr(0,($332|0),32)|0); - $337 = tempRet0; - $338 = (___muldi3(($336|0),($337|0),($328|0),($329|0))|0); - $339 = tempRet0; - $340 = $56; - $341 = $340; - $342 = HEAP32[$341>>2]|0; - $343 = (($340) + 4)|0; - $344 = $343; - $345 = HEAP32[$344>>2]|0; - $346 = (_bitshift64Ashr(0,($342|0),32)|0); - $347 = tempRet0; - $348 = $224; - $349 = $348; - $350 = HEAP32[$349>>2]|0; - $351 = (($348) + 4)|0; - $352 = $351; - $353 = HEAP32[$352>>2]|0; - $354 = (_bitshift64Ashr(0,($350|0),32)|0); - $355 = tempRet0; - $356 = (___muldi3(($354|0),($355|0),($346|0),($347|0))|0); - $357 = tempRet0; - $358 = (_i64Add(($356|0),($357|0),($338|0),($339|0))|0); - $359 = tempRet0; - $360 = $22; - $361 = $360; - $362 = HEAP32[$361>>2]|0; - $363 = (($360) + 4)|0; - $364 = $363; - $365 = HEAP32[$364>>2]|0; - $366 = (_bitshift64Ashr(0,($362|0),32)|0); - $367 = tempRet0; - $368 = $282; - $369 = $368; - $370 = HEAP32[$369>>2]|0; - $371 = (($368) + 4)|0; - $372 = $371; - $373 = HEAP32[$372>>2]|0; - $374 = (_bitshift64Ashr(0,($370|0),32)|0); - $375 = tempRet0; - $376 = (___muldi3(($374|0),($375|0),($366|0),($367|0))|0); - $377 = tempRet0; - $378 = (_i64Add(($358|0),($359|0),($376|0),($377|0))|0); - $379 = tempRet0; - $380 = $in; - $381 = $380; - $382 = HEAP32[$381>>2]|0; - $383 = (($380) + 4)|0; - $384 = $383; - $385 = HEAP32[$384>>2]|0; - $386 = (_bitshift64Ashr(0,($382|0),32)|0); - $387 = tempRet0; - $388 = ((($in)) + 56|0); - $389 = $388; - $390 = $389; - $391 = HEAP32[$390>>2]|0; - $392 = (($389) + 4)|0; - $393 = $392; - $394 = HEAP32[$393>>2]|0; - $395 = (_bitshift64Ashr(0,($391|0),32)|0); - $396 = tempRet0; - $397 = (___muldi3(($395|0),($396|0),($386|0),($387|0))|0); - $398 = tempRet0; - $399 = (_i64Add(($378|0),($379|0),($397|0),($398|0))|0); - $400 = tempRet0; - $401 = (_bitshift64Shl(($399|0),($400|0),1)|0); - $402 = tempRet0; - $403 = ((($output)) + 56|0); - $404 = $403; - $405 = $404; - HEAP32[$405>>2] = $401; - $406 = (($404) + 4)|0; - $407 = $406; - HEAP32[$407>>2] = $402; - $408 = $160; - $409 = $408; - $410 = HEAP32[$409>>2]|0; - $411 = (($408) + 4)|0; - $412 = $411; - $413 = HEAP32[$412>>2]|0; - $414 = (_bitshift64Ashr(0,($410|0),32)|0); - $415 = tempRet0; - $416 = (___muldi3(($414|0),($415|0),($414|0),($415|0))|0); - $417 = tempRet0; - $418 = $56; - $419 = $418; - $420 = HEAP32[$419>>2]|0; - $421 = (($418) + 4)|0; - $422 = $421; - $423 = HEAP32[$422>>2]|0; - $424 = (_bitshift64Ashr(0,($420|0),32)|0); - $425 = tempRet0; - $426 = $282; - $427 = $426; - $428 = HEAP32[$427>>2]|0; - $429 = (($426) + 4)|0; - $430 = $429; - $431 = HEAP32[$430>>2]|0; - $432 = (_bitshift64Ashr(0,($428|0),32)|0); - $433 = tempRet0; - $434 = (___muldi3(($432|0),($433|0),($424|0),($425|0))|0); - $435 = tempRet0; - $436 = $in; - $437 = $436; - $438 = HEAP32[$437>>2]|0; - $439 = (($436) + 4)|0; - $440 = $439; - $441 = HEAP32[$440>>2]|0; - $442 = (_bitshift64Ashr(0,($438|0),32)|0); - $443 = tempRet0; - $444 = ((($in)) + 64|0); - $445 = $444; - $446 = $445; - $447 = HEAP32[$446>>2]|0; - $448 = (($445) + 4)|0; - $449 = $448; - $450 = HEAP32[$449>>2]|0; - $451 = (_bitshift64Ashr(0,($447|0),32)|0); - $452 = tempRet0; - $453 = (___muldi3(($451|0),($452|0),($442|0),($443|0))|0); - $454 = tempRet0; - $455 = (_i64Add(($453|0),($454|0),($434|0),($435|0))|0); - $456 = tempRet0; - $457 = $22; - $458 = $457; - $459 = HEAP32[$458>>2]|0; - $460 = (($457) + 4)|0; - $461 = $460; - $462 = HEAP32[$461>>2]|0; - $463 = (_bitshift64Ashr(0,($459|0),32)|0); - $464 = tempRet0; - $465 = $388; - $466 = $465; - $467 = HEAP32[$466>>2]|0; - $468 = (($465) + 4)|0; - $469 = $468; - $470 = HEAP32[$469>>2]|0; - $471 = (_bitshift64Ashr(0,($467|0),32)|0); - $472 = tempRet0; - $473 = (___muldi3(($471|0),($472|0),($463|0),($464|0))|0); - $474 = tempRet0; - $475 = $102; - $476 = $475; - $477 = HEAP32[$476>>2]|0; - $478 = (($475) + 4)|0; - $479 = $478; - $480 = HEAP32[$479>>2]|0; - $481 = (_bitshift64Ashr(0,($477|0),32)|0); - $482 = tempRet0; - $483 = $224; - $484 = $483; - $485 = HEAP32[$484>>2]|0; - $486 = (($483) + 4)|0; - $487 = $486; - $488 = HEAP32[$487>>2]|0; - $489 = (_bitshift64Ashr(0,($485|0),32)|0); - $490 = tempRet0; - $491 = (___muldi3(($489|0),($490|0),($481|0),($482|0))|0); - $492 = tempRet0; - $493 = (_i64Add(($491|0),($492|0),($473|0),($474|0))|0); - $494 = tempRet0; - $495 = (_bitshift64Shl(($493|0),($494|0),1)|0); - $496 = tempRet0; - $497 = (_i64Add(($455|0),($456|0),($495|0),($496|0))|0); - $498 = tempRet0; - $499 = (_bitshift64Shl(($497|0),($498|0),1)|0); - $500 = tempRet0; - $501 = (_i64Add(($499|0),($500|0),($416|0),($417|0))|0); - $502 = tempRet0; - $503 = ((($output)) + 64|0); - $504 = $503; - $505 = $504; - HEAP32[$505>>2] = $501; - $506 = (($504) + 4)|0; - $507 = $506; - HEAP32[$507>>2] = $502; - $508 = $160; - $509 = $508; - $510 = HEAP32[$509>>2]|0; - $511 = (($508) + 4)|0; - $512 = $511; - $513 = HEAP32[$512>>2]|0; - $514 = (_bitshift64Ashr(0,($510|0),32)|0); - $515 = tempRet0; - $516 = $224; - $517 = $516; - $518 = HEAP32[$517>>2]|0; - $519 = (($516) + 4)|0; - $520 = $519; - $521 = HEAP32[$520>>2]|0; - $522 = (_bitshift64Ashr(0,($518|0),32)|0); - $523 = tempRet0; - $524 = (___muldi3(($522|0),($523|0),($514|0),($515|0))|0); - $525 = tempRet0; - $526 = $102; - $527 = $526; - $528 = HEAP32[$527>>2]|0; - $529 = (($526) + 4)|0; - $530 = $529; - $531 = HEAP32[$530>>2]|0; - $532 = (_bitshift64Ashr(0,($528|0),32)|0); - $533 = tempRet0; - $534 = $282; - $535 = $534; - $536 = HEAP32[$535>>2]|0; - $537 = (($534) + 4)|0; - $538 = $537; - $539 = HEAP32[$538>>2]|0; - $540 = (_bitshift64Ashr(0,($536|0),32)|0); - $541 = tempRet0; - $542 = (___muldi3(($540|0),($541|0),($532|0),($533|0))|0); - $543 = tempRet0; - $544 = (_i64Add(($542|0),($543|0),($524|0),($525|0))|0); - $545 = tempRet0; - $546 = $56; - $547 = $546; - $548 = HEAP32[$547>>2]|0; - $549 = (($546) + 4)|0; - $550 = $549; - $551 = HEAP32[$550>>2]|0; - $552 = (_bitshift64Ashr(0,($548|0),32)|0); - $553 = tempRet0; - $554 = $388; - $555 = $554; - $556 = HEAP32[$555>>2]|0; - $557 = (($554) + 4)|0; - $558 = $557; - $559 = HEAP32[$558>>2]|0; - $560 = (_bitshift64Ashr(0,($556|0),32)|0); - $561 = tempRet0; - $562 = (___muldi3(($560|0),($561|0),($552|0),($553|0))|0); - $563 = tempRet0; - $564 = (_i64Add(($544|0),($545|0),($562|0),($563|0))|0); - $565 = tempRet0; - $566 = $22; - $567 = $566; - $568 = HEAP32[$567>>2]|0; - $569 = (($566) + 4)|0; - $570 = $569; - $571 = HEAP32[$570>>2]|0; - $572 = (_bitshift64Ashr(0,($568|0),32)|0); - $573 = tempRet0; - $574 = $444; - $575 = $574; - $576 = HEAP32[$575>>2]|0; - $577 = (($574) + 4)|0; - $578 = $577; - $579 = HEAP32[$578>>2]|0; - $580 = (_bitshift64Ashr(0,($576|0),32)|0); - $581 = tempRet0; - $582 = (___muldi3(($580|0),($581|0),($572|0),($573|0))|0); - $583 = tempRet0; - $584 = (_i64Add(($564|0),($565|0),($582|0),($583|0))|0); - $585 = tempRet0; - $586 = $in; - $587 = $586; - $588 = HEAP32[$587>>2]|0; - $589 = (($586) + 4)|0; - $590 = $589; - $591 = HEAP32[$590>>2]|0; - $592 = (_bitshift64Ashr(0,($588|0),32)|0); - $593 = tempRet0; - $594 = ((($in)) + 72|0); - $595 = $594; - $596 = $595; - $597 = HEAP32[$596>>2]|0; - $598 = (($595) + 4)|0; - $599 = $598; - $600 = HEAP32[$599>>2]|0; - $601 = (_bitshift64Ashr(0,($597|0),32)|0); - $602 = tempRet0; - $603 = (___muldi3(($601|0),($602|0),($592|0),($593|0))|0); - $604 = tempRet0; - $605 = (_i64Add(($584|0),($585|0),($603|0),($604|0))|0); - $606 = tempRet0; - $607 = (_bitshift64Shl(($605|0),($606|0),1)|0); - $608 = tempRet0; - $609 = ((($output)) + 72|0); - $610 = $609; - $611 = $610; - HEAP32[$611>>2] = $607; - $612 = (($610) + 4)|0; - $613 = $612; - HEAP32[$613>>2] = $608; - $614 = $224; - $615 = $614; - $616 = HEAP32[$615>>2]|0; - $617 = (($614) + 4)|0; - $618 = $617; - $619 = HEAP32[$618>>2]|0; - $620 = (_bitshift64Ashr(0,($616|0),32)|0); - $621 = tempRet0; - $622 = (___muldi3(($620|0),($621|0),($620|0),($621|0))|0); - $623 = tempRet0; - $624 = $160; - $625 = $624; - $626 = HEAP32[$625>>2]|0; - $627 = (($624) + 4)|0; - $628 = $627; - $629 = HEAP32[$628>>2]|0; - $630 = (_bitshift64Ashr(0,($626|0),32)|0); - $631 = tempRet0; - $632 = $282; - $633 = $632; - $634 = HEAP32[$633>>2]|0; - $635 = (($632) + 4)|0; - $636 = $635; - $637 = HEAP32[$636>>2]|0; - $638 = (_bitshift64Ashr(0,($634|0),32)|0); - $639 = tempRet0; - $640 = (___muldi3(($638|0),($639|0),($630|0),($631|0))|0); - $641 = tempRet0; - $642 = (_i64Add(($640|0),($641|0),($622|0),($623|0))|0); - $643 = tempRet0; - $644 = $56; - $645 = $644; - $646 = HEAP32[$645>>2]|0; - $647 = (($644) + 4)|0; - $648 = $647; - $649 = HEAP32[$648>>2]|0; - $650 = (_bitshift64Ashr(0,($646|0),32)|0); - $651 = tempRet0; - $652 = $444; - $653 = $652; - $654 = HEAP32[$653>>2]|0; - $655 = (($652) + 4)|0; - $656 = $655; - $657 = HEAP32[$656>>2]|0; - $658 = (_bitshift64Ashr(0,($654|0),32)|0); - $659 = tempRet0; - $660 = (___muldi3(($658|0),($659|0),($650|0),($651|0))|0); - $661 = tempRet0; - $662 = (_i64Add(($642|0),($643|0),($660|0),($661|0))|0); - $663 = tempRet0; - $664 = $102; - $665 = $664; - $666 = HEAP32[$665>>2]|0; - $667 = (($664) + 4)|0; - $668 = $667; - $669 = HEAP32[$668>>2]|0; - $670 = (_bitshift64Ashr(0,($666|0),32)|0); - $671 = tempRet0; - $672 = $388; - $673 = $672; - $674 = HEAP32[$673>>2]|0; - $675 = (($672) + 4)|0; - $676 = $675; - $677 = HEAP32[$676>>2]|0; - $678 = (_bitshift64Ashr(0,($674|0),32)|0); - $679 = tempRet0; - $680 = (___muldi3(($678|0),($679|0),($670|0),($671|0))|0); - $681 = tempRet0; - $682 = $22; - $683 = $682; - $684 = HEAP32[$683>>2]|0; - $685 = (($682) + 4)|0; - $686 = $685; - $687 = HEAP32[$686>>2]|0; - $688 = (_bitshift64Ashr(0,($684|0),32)|0); - $689 = tempRet0; - $690 = $594; - $691 = $690; - $692 = HEAP32[$691>>2]|0; - $693 = (($690) + 4)|0; - $694 = $693; - $695 = HEAP32[$694>>2]|0; - $696 = (_bitshift64Ashr(0,($692|0),32)|0); - $697 = tempRet0; - $698 = (___muldi3(($696|0),($697|0),($688|0),($689|0))|0); - $699 = tempRet0; - $700 = (_i64Add(($698|0),($699|0),($680|0),($681|0))|0); - $701 = tempRet0; - $702 = (_bitshift64Shl(($700|0),($701|0),1)|0); - $703 = tempRet0; - $704 = (_i64Add(($662|0),($663|0),($702|0),($703|0))|0); - $705 = tempRet0; - $706 = (_bitshift64Shl(($704|0),($705|0),1)|0); - $707 = tempRet0; - $708 = ((($output)) + 80|0); - $709 = $708; - $710 = $709; - HEAP32[$710>>2] = $706; - $711 = (($709) + 4)|0; - $712 = $711; - HEAP32[$712>>2] = $707; - $713 = $224; - $714 = $713; - $715 = HEAP32[$714>>2]|0; - $716 = (($713) + 4)|0; - $717 = $716; - $718 = HEAP32[$717>>2]|0; - $719 = (_bitshift64Ashr(0,($715|0),32)|0); - $720 = tempRet0; - $721 = $282; - $722 = $721; - $723 = HEAP32[$722>>2]|0; - $724 = (($721) + 4)|0; - $725 = $724; - $726 = HEAP32[$725>>2]|0; - $727 = (_bitshift64Ashr(0,($723|0),32)|0); - $728 = tempRet0; - $729 = (___muldi3(($727|0),($728|0),($719|0),($720|0))|0); - $730 = tempRet0; - $731 = $160; - $732 = $731; - $733 = HEAP32[$732>>2]|0; - $734 = (($731) + 4)|0; - $735 = $734; - $736 = HEAP32[$735>>2]|0; - $737 = (_bitshift64Ashr(0,($733|0),32)|0); - $738 = tempRet0; - $739 = $388; - $740 = $739; - $741 = HEAP32[$740>>2]|0; - $742 = (($739) + 4)|0; - $743 = $742; - $744 = HEAP32[$743>>2]|0; - $745 = (_bitshift64Ashr(0,($741|0),32)|0); - $746 = tempRet0; - $747 = (___muldi3(($745|0),($746|0),($737|0),($738|0))|0); - $748 = tempRet0; - $749 = (_i64Add(($747|0),($748|0),($729|0),($730|0))|0); - $750 = tempRet0; - $751 = $102; - $752 = $751; - $753 = HEAP32[$752>>2]|0; - $754 = (($751) + 4)|0; - $755 = $754; - $756 = HEAP32[$755>>2]|0; - $757 = (_bitshift64Ashr(0,($753|0),32)|0); - $758 = tempRet0; - $759 = $444; - $760 = $759; - $761 = HEAP32[$760>>2]|0; - $762 = (($759) + 4)|0; - $763 = $762; - $764 = HEAP32[$763>>2]|0; - $765 = (_bitshift64Ashr(0,($761|0),32)|0); - $766 = tempRet0; - $767 = (___muldi3(($765|0),($766|0),($757|0),($758|0))|0); - $768 = tempRet0; - $769 = (_i64Add(($749|0),($750|0),($767|0),($768|0))|0); - $770 = tempRet0; - $771 = $56; - $772 = $771; - $773 = HEAP32[$772>>2]|0; - $774 = (($771) + 4)|0; - $775 = $774; - $776 = HEAP32[$775>>2]|0; - $777 = (_bitshift64Ashr(0,($773|0),32)|0); - $778 = tempRet0; - $779 = $594; - $780 = $779; - $781 = HEAP32[$780>>2]|0; - $782 = (($779) + 4)|0; - $783 = $782; - $784 = HEAP32[$783>>2]|0; - $785 = (_bitshift64Ashr(0,($781|0),32)|0); - $786 = tempRet0; - $787 = (___muldi3(($785|0),($786|0),($777|0),($778|0))|0); - $788 = tempRet0; - $789 = (_i64Add(($769|0),($770|0),($787|0),($788|0))|0); - $790 = tempRet0; - $791 = (_bitshift64Shl(($789|0),($790|0),1)|0); - $792 = tempRet0; - $793 = ((($output)) + 88|0); - $794 = $793; - $795 = $794; - HEAP32[$795>>2] = $791; - $796 = (($794) + 4)|0; - $797 = $796; - HEAP32[$797>>2] = $792; - $798 = $282; - $799 = $798; - $800 = HEAP32[$799>>2]|0; - $801 = (($798) + 4)|0; - $802 = $801; - $803 = HEAP32[$802>>2]|0; - $804 = (_bitshift64Ashr(0,($800|0),32)|0); - $805 = tempRet0; - $806 = (___muldi3(($804|0),($805|0),($804|0),($805|0))|0); - $807 = tempRet0; - $808 = $160; - $809 = $808; - $810 = HEAP32[$809>>2]|0; - $811 = (($808) + 4)|0; - $812 = $811; - $813 = HEAP32[$812>>2]|0; - $814 = (_bitshift64Ashr(0,($810|0),32)|0); - $815 = tempRet0; - $816 = $444; - $817 = $816; - $818 = HEAP32[$817>>2]|0; - $819 = (($816) + 4)|0; - $820 = $819; - $821 = HEAP32[$820>>2]|0; - $822 = (_bitshift64Ashr(0,($818|0),32)|0); - $823 = tempRet0; - $824 = (___muldi3(($822|0),($823|0),($814|0),($815|0))|0); - $825 = tempRet0; - $826 = $224; - $827 = $826; - $828 = HEAP32[$827>>2]|0; - $829 = (($826) + 4)|0; - $830 = $829; - $831 = HEAP32[$830>>2]|0; - $832 = (_bitshift64Ashr(0,($828|0),32)|0); - $833 = tempRet0; - $834 = $388; - $835 = $834; - $836 = HEAP32[$835>>2]|0; - $837 = (($834) + 4)|0; - $838 = $837; - $839 = HEAP32[$838>>2]|0; - $840 = (_bitshift64Ashr(0,($836|0),32)|0); - $841 = tempRet0; - $842 = (___muldi3(($840|0),($841|0),($832|0),($833|0))|0); - $843 = tempRet0; - $844 = $102; - $845 = $844; - $846 = HEAP32[$845>>2]|0; - $847 = (($844) + 4)|0; - $848 = $847; - $849 = HEAP32[$848>>2]|0; - $850 = (_bitshift64Ashr(0,($846|0),32)|0); - $851 = tempRet0; - $852 = $594; - $853 = $852; - $854 = HEAP32[$853>>2]|0; - $855 = (($852) + 4)|0; - $856 = $855; - $857 = HEAP32[$856>>2]|0; - $858 = (_bitshift64Ashr(0,($854|0),32)|0); - $859 = tempRet0; - $860 = (___muldi3(($858|0),($859|0),($850|0),($851|0))|0); - $861 = tempRet0; - $862 = (_i64Add(($860|0),($861|0),($842|0),($843|0))|0); - $863 = tempRet0; - $864 = (_bitshift64Shl(($862|0),($863|0),1)|0); - $865 = tempRet0; - $866 = (_i64Add(($864|0),($865|0),($824|0),($825|0))|0); - $867 = tempRet0; - $868 = (_bitshift64Shl(($866|0),($867|0),1)|0); - $869 = tempRet0; - $870 = (_i64Add(($868|0),($869|0),($806|0),($807|0))|0); - $871 = tempRet0; - $872 = ((($output)) + 96|0); - $873 = $872; - $874 = $873; - HEAP32[$874>>2] = $870; - $875 = (($873) + 4)|0; - $876 = $875; - HEAP32[$876>>2] = $871; - $877 = $282; - $878 = $877; - $879 = HEAP32[$878>>2]|0; - $880 = (($877) + 4)|0; - $881 = $880; - $882 = HEAP32[$881>>2]|0; - $883 = (_bitshift64Ashr(0,($879|0),32)|0); - $884 = tempRet0; - $885 = $388; - $886 = $885; - $887 = HEAP32[$886>>2]|0; - $888 = (($885) + 4)|0; - $889 = $888; - $890 = HEAP32[$889>>2]|0; - $891 = (_bitshift64Ashr(0,($887|0),32)|0); - $892 = tempRet0; - $893 = (___muldi3(($891|0),($892|0),($883|0),($884|0))|0); - $894 = tempRet0; - $895 = $224; - $896 = $895; - $897 = HEAP32[$896>>2]|0; - $898 = (($895) + 4)|0; - $899 = $898; - $900 = HEAP32[$899>>2]|0; - $901 = (_bitshift64Ashr(0,($897|0),32)|0); - $902 = tempRet0; - $903 = $444; - $904 = $903; - $905 = HEAP32[$904>>2]|0; - $906 = (($903) + 4)|0; - $907 = $906; - $908 = HEAP32[$907>>2]|0; - $909 = (_bitshift64Ashr(0,($905|0),32)|0); - $910 = tempRet0; - $911 = (___muldi3(($909|0),($910|0),($901|0),($902|0))|0); - $912 = tempRet0; - $913 = (_i64Add(($911|0),($912|0),($893|0),($894|0))|0); - $914 = tempRet0; - $915 = $160; - $916 = $915; - $917 = HEAP32[$916>>2]|0; - $918 = (($915) + 4)|0; - $919 = $918; - $920 = HEAP32[$919>>2]|0; - $921 = (_bitshift64Ashr(0,($917|0),32)|0); - $922 = tempRet0; - $923 = $594; - $924 = $923; - $925 = HEAP32[$924>>2]|0; - $926 = (($923) + 4)|0; - $927 = $926; - $928 = HEAP32[$927>>2]|0; - $929 = (_bitshift64Ashr(0,($925|0),32)|0); - $930 = tempRet0; - $931 = (___muldi3(($929|0),($930|0),($921|0),($922|0))|0); - $932 = tempRet0; - $933 = (_i64Add(($913|0),($914|0),($931|0),($932|0))|0); - $934 = tempRet0; - $935 = (_bitshift64Shl(($933|0),($934|0),1)|0); - $936 = tempRet0; - $937 = ((($output)) + 104|0); - $938 = $937; - $939 = $938; - HEAP32[$939>>2] = $935; - $940 = (($938) + 4)|0; - $941 = $940; - HEAP32[$941>>2] = $936; - $942 = $388; - $943 = $942; - $944 = HEAP32[$943>>2]|0; - $945 = (($942) + 4)|0; - $946 = $945; - $947 = HEAP32[$946>>2]|0; - $948 = (_bitshift64Ashr(0,($944|0),32)|0); - $949 = tempRet0; - $950 = (___muldi3(($948|0),($949|0),($948|0),($949|0))|0); - $951 = tempRet0; - $952 = $282; - $953 = $952; - $954 = HEAP32[$953>>2]|0; - $955 = (($952) + 4)|0; - $956 = $955; - $957 = HEAP32[$956>>2]|0; - $958 = (_bitshift64Ashr(0,($954|0),32)|0); - $959 = tempRet0; - $960 = $444; - $961 = $960; - $962 = HEAP32[$961>>2]|0; - $963 = (($960) + 4)|0; - $964 = $963; - $965 = HEAP32[$964>>2]|0; - $966 = (_bitshift64Ashr(0,($962|0),32)|0); - $967 = tempRet0; - $968 = (___muldi3(($966|0),($967|0),($958|0),($959|0))|0); - $969 = tempRet0; - $970 = (_i64Add(($968|0),($969|0),($950|0),($951|0))|0); - $971 = tempRet0; - $972 = $224; - $973 = $972; - $974 = HEAP32[$973>>2]|0; - $975 = (($972) + 4)|0; - $976 = $975; - $977 = HEAP32[$976>>2]|0; - $978 = (_bitshift64Ashr(0,($974|0),31)|0); - $979 = tempRet0; - $980 = $594; - $981 = $980; - $982 = HEAP32[$981>>2]|0; - $983 = (($980) + 4)|0; - $984 = $983; - $985 = HEAP32[$984>>2]|0; - $986 = (_bitshift64Ashr(0,($982|0),32)|0); - $987 = tempRet0; - $988 = (___muldi3(($986|0),($987|0),($978|0),($979|0))|0); - $989 = tempRet0; - $990 = (_i64Add(($970|0),($971|0),($988|0),($989|0))|0); - $991 = tempRet0; - $992 = (_bitshift64Shl(($990|0),($991|0),1)|0); - $993 = tempRet0; - $994 = ((($output)) + 112|0); - $995 = $994; - $996 = $995; - HEAP32[$996>>2] = $992; - $997 = (($995) + 4)|0; - $998 = $997; - HEAP32[$998>>2] = $993; - $999 = $388; - $1000 = $999; - $1001 = HEAP32[$1000>>2]|0; - $1002 = (($999) + 4)|0; - $1003 = $1002; - $1004 = HEAP32[$1003>>2]|0; - $1005 = (_bitshift64Ashr(0,($1001|0),32)|0); - $1006 = tempRet0; - $1007 = $444; - $1008 = $1007; - $1009 = HEAP32[$1008>>2]|0; - $1010 = (($1007) + 4)|0; - $1011 = $1010; - $1012 = HEAP32[$1011>>2]|0; - $1013 = (_bitshift64Ashr(0,($1009|0),32)|0); - $1014 = tempRet0; - $1015 = (___muldi3(($1013|0),($1014|0),($1005|0),($1006|0))|0); - $1016 = tempRet0; - $1017 = $282; - $1018 = $1017; - $1019 = HEAP32[$1018>>2]|0; - $1020 = (($1017) + 4)|0; - $1021 = $1020; - $1022 = HEAP32[$1021>>2]|0; - $1023 = (_bitshift64Ashr(0,($1019|0),32)|0); - $1024 = tempRet0; - $1025 = $594; - $1026 = $1025; - $1027 = HEAP32[$1026>>2]|0; - $1028 = (($1025) + 4)|0; - $1029 = $1028; - $1030 = HEAP32[$1029>>2]|0; - $1031 = (_bitshift64Ashr(0,($1027|0),32)|0); - $1032 = tempRet0; - $1033 = (___muldi3(($1031|0),($1032|0),($1023|0),($1024|0))|0); - $1034 = tempRet0; - $1035 = (_i64Add(($1033|0),($1034|0),($1015|0),($1016|0))|0); - $1036 = tempRet0; - $1037 = (_bitshift64Shl(($1035|0),($1036|0),1)|0); - $1038 = tempRet0; - $1039 = ((($output)) + 120|0); - $1040 = $1039; - $1041 = $1040; - HEAP32[$1041>>2] = $1037; - $1042 = (($1040) + 4)|0; - $1043 = $1042; - HEAP32[$1043>>2] = $1038; - $1044 = $444; - $1045 = $1044; - $1046 = HEAP32[$1045>>2]|0; - $1047 = (($1044) + 4)|0; - $1048 = $1047; - $1049 = HEAP32[$1048>>2]|0; - $1050 = (_bitshift64Ashr(0,($1046|0),32)|0); - $1051 = tempRet0; - $1052 = (___muldi3(($1050|0),($1051|0),($1050|0),($1051|0))|0); - $1053 = tempRet0; - $1054 = $388; - $1055 = $1054; - $1056 = HEAP32[$1055>>2]|0; - $1057 = (($1054) + 4)|0; - $1058 = $1057; - $1059 = HEAP32[$1058>>2]|0; - $1060 = (_bitshift64Ashr(0,($1056|0),30)|0); - $1061 = tempRet0; - $1062 = $594; - $1063 = $1062; - $1064 = HEAP32[$1063>>2]|0; - $1065 = (($1062) + 4)|0; - $1066 = $1065; - $1067 = HEAP32[$1066>>2]|0; - $1068 = (_bitshift64Ashr(0,($1064|0),32)|0); - $1069 = tempRet0; - $1070 = (___muldi3(($1068|0),($1069|0),($1060|0),($1061|0))|0); - $1071 = tempRet0; - $1072 = (_i64Add(($1070|0),($1071|0),($1052|0),($1053|0))|0); - $1073 = tempRet0; - $1074 = ((($output)) + 128|0); - $1075 = $1074; - $1076 = $1075; - HEAP32[$1076>>2] = $1072; - $1077 = (($1075) + 4)|0; - $1078 = $1077; - HEAP32[$1078>>2] = $1073; - $1079 = $444; - $1080 = $1079; - $1081 = HEAP32[$1080>>2]|0; - $1082 = (($1079) + 4)|0; - $1083 = $1082; - $1084 = HEAP32[$1083>>2]|0; - $1085 = (_bitshift64Ashr(0,($1081|0),31)|0); - $1086 = tempRet0; - $1087 = $594; - $1088 = $1087; - $1089 = HEAP32[$1088>>2]|0; - $1090 = (($1087) + 4)|0; - $1091 = $1090; - $1092 = HEAP32[$1091>>2]|0; - $1093 = (_bitshift64Ashr(0,($1089|0),32)|0); - $1094 = tempRet0; - $1095 = (___muldi3(($1093|0),($1094|0),($1085|0),($1086|0))|0); - $1096 = tempRet0; - $1097 = ((($output)) + 136|0); - $1098 = $1097; - $1099 = $1098; - HEAP32[$1099>>2] = $1095; - $1100 = (($1098) + 4)|0; - $1101 = $1100; - HEAP32[$1101>>2] = $1096; - $1102 = $594; - $1103 = $1102; - $1104 = HEAP32[$1103>>2]|0; - $1105 = (($1102) + 4)|0; - $1106 = $1105; - $1107 = HEAP32[$1106>>2]|0; - $1108 = (_bitshift64Ashr(0,($1104|0),32)|0); - $1109 = tempRet0; - $1110 = (_bitshift64Ashr(0,($1104|0),31)|0); - $1111 = tempRet0; - $1112 = (___muldi3(($1110|0),($1111|0),($1108|0),($1109|0))|0); - $1113 = tempRet0; - $1114 = ((($output)) + 144|0); - $1115 = $1114; - $1116 = $1115; - HEAP32[$1116>>2] = $1112; - $1117 = (($1115) + 4)|0; - $1118 = $1117; - HEAP32[$1118>>2] = $1113; - return; -} -function _swap_conditional($a,$b,$0,$1) { - $a = $a|0; - $b = $b|0; - $0 = $0|0; - $1 = $1|0; - var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; - var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0; - var $9 = 0, $exitcond = 0, $i$02 = 0, label = 0, sp = 0; - sp = STACKTOP; - $2 = (_i64Subtract(0,0,($0|0),($1|0))|0); - $3 = tempRet0; - $i$02 = 0; - while(1) { - $4 = (($a) + ($i$02<<3)|0); - $5 = $4; - $6 = $5; - $7 = HEAP32[$6>>2]|0; - $8 = (($5) + 4)|0; - $9 = $8; - $10 = HEAP32[$9>>2]|0; - $11 = (($b) + ($i$02<<3)|0); - $12 = $11; - $13 = $12; - $14 = HEAP32[$13>>2]|0; - $15 = (($12) + 4)|0; - $16 = $15; - $17 = HEAP32[$16>>2]|0; - $18 = $14 ^ $7; - $19 = $17 ^ $10; - $20 = $18 & $2; - $21 = $19 & $3; - $22 = $20 ^ $7; - $21 ^ $10; - $23 = (_bitshift64Ashr(0,($22|0),32)|0); - $24 = tempRet0; - $25 = $4; - $26 = $25; - HEAP32[$26>>2] = $23; - $27 = (($25) + 4)|0; - $28 = $27; - HEAP32[$28>>2] = $24; - $29 = $11; - $30 = $29; - $31 = HEAP32[$30>>2]|0; - $32 = (($29) + 4)|0; - $33 = $32; - $34 = HEAP32[$33>>2]|0; - $35 = $20 ^ $31; - $21 ^ $34; - $36 = (_bitshift64Ashr(0,($35|0),32)|0); - $37 = tempRet0; - $38 = $11; - $39 = $38; - HEAP32[$39>>2] = $36; - $40 = (($38) + 4)|0; - $41 = $40; - HEAP32[$41>>2] = $37; - $42 = (($i$02) + 1)|0; - $exitcond = ($42|0)==(10); - if ($exitcond) { - break; - } else { - $i$02 = $42; - } - } - return; -} -function _fmonty($x2,$z2,$x3,$z3,$x,$z,$xprime,$zprime,$qmqp) { - $x2 = $x2|0; - $z2 = $z2|0; - $x3 = $x3|0; - $z3 = $z3|0; - $x = $x|0; - $z = $z|0; - $xprime = $xprime|0; - $zprime = $zprime|0; - $qmqp = $qmqp|0; - var $0 = 0, $origx = 0, $origxprime = 0, $xx = 0, $xxprime = 0, $xxxprime = 0, $zz = 0, $zzprime = 0, $zzz = 0, $zzzprime = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 1232|0; - $origx = sp + 1144|0; - $origxprime = sp + 1064|0; - $zzz = sp + 912|0; - $xx = sp + 760|0; - $zz = sp + 608|0; - $xxprime = sp + 456|0; - $zzprime = sp + 304|0; - $zzzprime = sp + 152|0; - $xxxprime = sp; - dest=$origx; src=$x; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - _fsum($x,$z); - _fdifference($z,$origx); - dest=$origxprime; src=$xprime; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - _fsum($xprime,$zprime); - _fdifference($zprime,$origxprime); - _fproduct($xxprime,$xprime,$z); - _fproduct($zzprime,$x,$zprime); - _freduce_degree($xxprime); - _freduce_coefficients($xxprime); - _freduce_degree($zzprime); - _freduce_coefficients($zzprime); - dest=$origxprime; src=$xxprime; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - _fsum($xxprime,$zzprime); - _fdifference($zzprime,$origxprime); - _fsquare($xxxprime,$xxprime); - _fsquare($zzzprime,$zzprime); - _fproduct($zzprime,$zzzprime,$qmqp); - _freduce_degree($zzprime); - _freduce_coefficients($zzprime); - dest=$x3; src=$xxxprime; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - dest=$z3; src=$zzprime; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - _fsquare($xx,$x); - _fsquare($zz,$z); - _fproduct($x2,$xx,$zz); - _freduce_degree($x2); - _freduce_coefficients($x2); - _fdifference($zz,$xx); - $0 = ((($zzz)) + 80|0); - dest=$0; stop=dest+72|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); - _fscalar_product($zzz,$zz); - _freduce_coefficients($zzz); - _fsum($zzz,$xx); - _fproduct($z2,$zz,$zzz); - _freduce_degree($z2); - _freduce_coefficients($z2); - STACKTOP = sp;return; -} -function _fsum($output,$in) { - $output = $output|0; - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; - var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; - var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; - var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; - var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = $output; - $1 = $0; - $2 = HEAP32[$1>>2]|0; - $3 = (($0) + 4)|0; - $4 = $3; - $5 = HEAP32[$4>>2]|0; - $6 = $in; - $7 = $6; - $8 = HEAP32[$7>>2]|0; - $9 = (($6) + 4)|0; - $10 = $9; - $11 = HEAP32[$10>>2]|0; - $12 = (_i64Add(($8|0),($11|0),($2|0),($5|0))|0); - $13 = tempRet0; - $14 = $output; - $15 = $14; - HEAP32[$15>>2] = $12; - $16 = (($14) + 4)|0; - $17 = $16; - HEAP32[$17>>2] = $13; - $18 = ((($output)) + 8|0); - $19 = $18; - $20 = $19; - $21 = HEAP32[$20>>2]|0; - $22 = (($19) + 4)|0; - $23 = $22; - $24 = HEAP32[$23>>2]|0; - $25 = ((($in)) + 8|0); - $26 = $25; - $27 = $26; - $28 = HEAP32[$27>>2]|0; - $29 = (($26) + 4)|0; - $30 = $29; - $31 = HEAP32[$30>>2]|0; - $32 = (_i64Add(($28|0),($31|0),($21|0),($24|0))|0); - $33 = tempRet0; - $34 = $18; - $35 = $34; - HEAP32[$35>>2] = $32; - $36 = (($34) + 4)|0; - $37 = $36; - HEAP32[$37>>2] = $33; - $38 = ((($output)) + 16|0); - $39 = $38; - $40 = $39; - $41 = HEAP32[$40>>2]|0; - $42 = (($39) + 4)|0; - $43 = $42; - $44 = HEAP32[$43>>2]|0; - $45 = ((($in)) + 16|0); - $46 = $45; - $47 = $46; - $48 = HEAP32[$47>>2]|0; - $49 = (($46) + 4)|0; - $50 = $49; - $51 = HEAP32[$50>>2]|0; - $52 = (_i64Add(($48|0),($51|0),($41|0),($44|0))|0); - $53 = tempRet0; - $54 = $38; - $55 = $54; - HEAP32[$55>>2] = $52; - $56 = (($54) + 4)|0; - $57 = $56; - HEAP32[$57>>2] = $53; - $58 = ((($output)) + 24|0); - $59 = $58; - $60 = $59; - $61 = HEAP32[$60>>2]|0; - $62 = (($59) + 4)|0; - $63 = $62; - $64 = HEAP32[$63>>2]|0; - $65 = ((($in)) + 24|0); - $66 = $65; - $67 = $66; - $68 = HEAP32[$67>>2]|0; - $69 = (($66) + 4)|0; - $70 = $69; - $71 = HEAP32[$70>>2]|0; - $72 = (_i64Add(($68|0),($71|0),($61|0),($64|0))|0); - $73 = tempRet0; - $74 = $58; - $75 = $74; - HEAP32[$75>>2] = $72; - $76 = (($74) + 4)|0; - $77 = $76; - HEAP32[$77>>2] = $73; - $78 = ((($output)) + 32|0); - $79 = $78; - $80 = $79; - $81 = HEAP32[$80>>2]|0; - $82 = (($79) + 4)|0; - $83 = $82; - $84 = HEAP32[$83>>2]|0; - $85 = ((($in)) + 32|0); - $86 = $85; - $87 = $86; - $88 = HEAP32[$87>>2]|0; - $89 = (($86) + 4)|0; - $90 = $89; - $91 = HEAP32[$90>>2]|0; - $92 = (_i64Add(($88|0),($91|0),($81|0),($84|0))|0); - $93 = tempRet0; - $94 = $78; - $95 = $94; - HEAP32[$95>>2] = $92; - $96 = (($94) + 4)|0; - $97 = $96; - HEAP32[$97>>2] = $93; - $98 = ((($output)) + 40|0); - $99 = $98; - $100 = $99; - $101 = HEAP32[$100>>2]|0; - $102 = (($99) + 4)|0; - $103 = $102; - $104 = HEAP32[$103>>2]|0; - $105 = ((($in)) + 40|0); - $106 = $105; - $107 = $106; - $108 = HEAP32[$107>>2]|0; - $109 = (($106) + 4)|0; - $110 = $109; - $111 = HEAP32[$110>>2]|0; - $112 = (_i64Add(($108|0),($111|0),($101|0),($104|0))|0); - $113 = tempRet0; - $114 = $98; - $115 = $114; - HEAP32[$115>>2] = $112; - $116 = (($114) + 4)|0; - $117 = $116; - HEAP32[$117>>2] = $113; - $118 = ((($output)) + 48|0); - $119 = $118; - $120 = $119; - $121 = HEAP32[$120>>2]|0; - $122 = (($119) + 4)|0; - $123 = $122; - $124 = HEAP32[$123>>2]|0; - $125 = ((($in)) + 48|0); - $126 = $125; - $127 = $126; - $128 = HEAP32[$127>>2]|0; - $129 = (($126) + 4)|0; - $130 = $129; - $131 = HEAP32[$130>>2]|0; - $132 = (_i64Add(($128|0),($131|0),($121|0),($124|0))|0); - $133 = tempRet0; - $134 = $118; - $135 = $134; - HEAP32[$135>>2] = $132; - $136 = (($134) + 4)|0; - $137 = $136; - HEAP32[$137>>2] = $133; - $138 = ((($output)) + 56|0); - $139 = $138; - $140 = $139; - $141 = HEAP32[$140>>2]|0; - $142 = (($139) + 4)|0; - $143 = $142; - $144 = HEAP32[$143>>2]|0; - $145 = ((($in)) + 56|0); - $146 = $145; - $147 = $146; - $148 = HEAP32[$147>>2]|0; - $149 = (($146) + 4)|0; - $150 = $149; - $151 = HEAP32[$150>>2]|0; - $152 = (_i64Add(($148|0),($151|0),($141|0),($144|0))|0); - $153 = tempRet0; - $154 = $138; - $155 = $154; - HEAP32[$155>>2] = $152; - $156 = (($154) + 4)|0; - $157 = $156; - HEAP32[$157>>2] = $153; - $158 = ((($output)) + 64|0); - $159 = $158; - $160 = $159; - $161 = HEAP32[$160>>2]|0; - $162 = (($159) + 4)|0; - $163 = $162; - $164 = HEAP32[$163>>2]|0; - $165 = ((($in)) + 64|0); - $166 = $165; - $167 = $166; - $168 = HEAP32[$167>>2]|0; - $169 = (($166) + 4)|0; - $170 = $169; - $171 = HEAP32[$170>>2]|0; - $172 = (_i64Add(($168|0),($171|0),($161|0),($164|0))|0); - $173 = tempRet0; - $174 = $158; - $175 = $174; - HEAP32[$175>>2] = $172; - $176 = (($174) + 4)|0; - $177 = $176; - HEAP32[$177>>2] = $173; - $178 = ((($output)) + 72|0); - $179 = $178; - $180 = $179; - $181 = HEAP32[$180>>2]|0; - $182 = (($179) + 4)|0; - $183 = $182; - $184 = HEAP32[$183>>2]|0; - $185 = ((($in)) + 72|0); - $186 = $185; - $187 = $186; - $188 = HEAP32[$187>>2]|0; - $189 = (($186) + 4)|0; - $190 = $189; - $191 = HEAP32[$190>>2]|0; - $192 = (_i64Add(($188|0),($191|0),($181|0),($184|0))|0); - $193 = tempRet0; - $194 = $178; - $195 = $194; - HEAP32[$195>>2] = $192; - $196 = (($194) + 4)|0; - $197 = $196; - HEAP32[$197>>2] = $193; - return; -} -function _fdifference($output,$in) { - $output = $output|0; - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; - var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; - var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; - var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; - var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = $in; - $1 = $0; - $2 = HEAP32[$1>>2]|0; - $3 = (($0) + 4)|0; - $4 = $3; - $5 = HEAP32[$4>>2]|0; - $6 = $output; - $7 = $6; - $8 = HEAP32[$7>>2]|0; - $9 = (($6) + 4)|0; - $10 = $9; - $11 = HEAP32[$10>>2]|0; - $12 = (_i64Subtract(($2|0),($5|0),($8|0),($11|0))|0); - $13 = tempRet0; - $14 = $output; - $15 = $14; - HEAP32[$15>>2] = $12; - $16 = (($14) + 4)|0; - $17 = $16; - HEAP32[$17>>2] = $13; - $18 = ((($in)) + 8|0); - $19 = $18; - $20 = $19; - $21 = HEAP32[$20>>2]|0; - $22 = (($19) + 4)|0; - $23 = $22; - $24 = HEAP32[$23>>2]|0; - $25 = ((($output)) + 8|0); - $26 = $25; - $27 = $26; - $28 = HEAP32[$27>>2]|0; - $29 = (($26) + 4)|0; - $30 = $29; - $31 = HEAP32[$30>>2]|0; - $32 = (_i64Subtract(($21|0),($24|0),($28|0),($31|0))|0); - $33 = tempRet0; - $34 = $25; - $35 = $34; - HEAP32[$35>>2] = $32; - $36 = (($34) + 4)|0; - $37 = $36; - HEAP32[$37>>2] = $33; - $38 = ((($in)) + 16|0); - $39 = $38; - $40 = $39; - $41 = HEAP32[$40>>2]|0; - $42 = (($39) + 4)|0; - $43 = $42; - $44 = HEAP32[$43>>2]|0; - $45 = ((($output)) + 16|0); - $46 = $45; - $47 = $46; - $48 = HEAP32[$47>>2]|0; - $49 = (($46) + 4)|0; - $50 = $49; - $51 = HEAP32[$50>>2]|0; - $52 = (_i64Subtract(($41|0),($44|0),($48|0),($51|0))|0); - $53 = tempRet0; - $54 = $45; - $55 = $54; - HEAP32[$55>>2] = $52; - $56 = (($54) + 4)|0; - $57 = $56; - HEAP32[$57>>2] = $53; - $58 = ((($in)) + 24|0); - $59 = $58; - $60 = $59; - $61 = HEAP32[$60>>2]|0; - $62 = (($59) + 4)|0; - $63 = $62; - $64 = HEAP32[$63>>2]|0; - $65 = ((($output)) + 24|0); - $66 = $65; - $67 = $66; - $68 = HEAP32[$67>>2]|0; - $69 = (($66) + 4)|0; - $70 = $69; - $71 = HEAP32[$70>>2]|0; - $72 = (_i64Subtract(($61|0),($64|0),($68|0),($71|0))|0); - $73 = tempRet0; - $74 = $65; - $75 = $74; - HEAP32[$75>>2] = $72; - $76 = (($74) + 4)|0; - $77 = $76; - HEAP32[$77>>2] = $73; - $78 = ((($in)) + 32|0); - $79 = $78; - $80 = $79; - $81 = HEAP32[$80>>2]|0; - $82 = (($79) + 4)|0; - $83 = $82; - $84 = HEAP32[$83>>2]|0; - $85 = ((($output)) + 32|0); - $86 = $85; - $87 = $86; - $88 = HEAP32[$87>>2]|0; - $89 = (($86) + 4)|0; - $90 = $89; - $91 = HEAP32[$90>>2]|0; - $92 = (_i64Subtract(($81|0),($84|0),($88|0),($91|0))|0); - $93 = tempRet0; - $94 = $85; - $95 = $94; - HEAP32[$95>>2] = $92; - $96 = (($94) + 4)|0; - $97 = $96; - HEAP32[$97>>2] = $93; - $98 = ((($in)) + 40|0); - $99 = $98; - $100 = $99; - $101 = HEAP32[$100>>2]|0; - $102 = (($99) + 4)|0; - $103 = $102; - $104 = HEAP32[$103>>2]|0; - $105 = ((($output)) + 40|0); - $106 = $105; - $107 = $106; - $108 = HEAP32[$107>>2]|0; - $109 = (($106) + 4)|0; - $110 = $109; - $111 = HEAP32[$110>>2]|0; - $112 = (_i64Subtract(($101|0),($104|0),($108|0),($111|0))|0); - $113 = tempRet0; - $114 = $105; - $115 = $114; - HEAP32[$115>>2] = $112; - $116 = (($114) + 4)|0; - $117 = $116; - HEAP32[$117>>2] = $113; - $118 = ((($in)) + 48|0); - $119 = $118; - $120 = $119; - $121 = HEAP32[$120>>2]|0; - $122 = (($119) + 4)|0; - $123 = $122; - $124 = HEAP32[$123>>2]|0; - $125 = ((($output)) + 48|0); - $126 = $125; - $127 = $126; - $128 = HEAP32[$127>>2]|0; - $129 = (($126) + 4)|0; - $130 = $129; - $131 = HEAP32[$130>>2]|0; - $132 = (_i64Subtract(($121|0),($124|0),($128|0),($131|0))|0); - $133 = tempRet0; - $134 = $125; - $135 = $134; - HEAP32[$135>>2] = $132; - $136 = (($134) + 4)|0; - $137 = $136; - HEAP32[$137>>2] = $133; - $138 = ((($in)) + 56|0); - $139 = $138; - $140 = $139; - $141 = HEAP32[$140>>2]|0; - $142 = (($139) + 4)|0; - $143 = $142; - $144 = HEAP32[$143>>2]|0; - $145 = ((($output)) + 56|0); - $146 = $145; - $147 = $146; - $148 = HEAP32[$147>>2]|0; - $149 = (($146) + 4)|0; - $150 = $149; - $151 = HEAP32[$150>>2]|0; - $152 = (_i64Subtract(($141|0),($144|0),($148|0),($151|0))|0); - $153 = tempRet0; - $154 = $145; - $155 = $154; - HEAP32[$155>>2] = $152; - $156 = (($154) + 4)|0; - $157 = $156; - HEAP32[$157>>2] = $153; - $158 = ((($in)) + 64|0); - $159 = $158; - $160 = $159; - $161 = HEAP32[$160>>2]|0; - $162 = (($159) + 4)|0; - $163 = $162; - $164 = HEAP32[$163>>2]|0; - $165 = ((($output)) + 64|0); - $166 = $165; - $167 = $166; - $168 = HEAP32[$167>>2]|0; - $169 = (($166) + 4)|0; - $170 = $169; - $171 = HEAP32[$170>>2]|0; - $172 = (_i64Subtract(($161|0),($164|0),($168|0),($171|0))|0); - $173 = tempRet0; - $174 = $165; - $175 = $174; - HEAP32[$175>>2] = $172; - $176 = (($174) + 4)|0; - $177 = $176; - HEAP32[$177>>2] = $173; - $178 = ((($in)) + 72|0); - $179 = $178; - $180 = $179; - $181 = HEAP32[$180>>2]|0; - $182 = (($179) + 4)|0; - $183 = $182; - $184 = HEAP32[$183>>2]|0; - $185 = ((($output)) + 72|0); - $186 = $185; - $187 = $186; - $188 = HEAP32[$187>>2]|0; - $189 = (($186) + 4)|0; - $190 = $189; - $191 = HEAP32[$190>>2]|0; - $192 = (_i64Subtract(($181|0),($184|0),($188|0),($191|0))|0); - $193 = tempRet0; - $194 = $185; - $195 = $194; - HEAP32[$195>>2] = $192; - $196 = (($194) + 4)|0; - $197 = $196; - HEAP32[$197>>2] = $193; - return; -} -function _fscalar_product($output,$in) { - $output = $output|0; - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; - var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; - var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; - var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; - var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = $in; - $1 = $0; - $2 = HEAP32[$1>>2]|0; - $3 = (($0) + 4)|0; - $4 = $3; - $5 = HEAP32[$4>>2]|0; - $6 = (___muldi3(($2|0),($5|0),121665,0)|0); - $7 = tempRet0; - $8 = $output; - $9 = $8; - HEAP32[$9>>2] = $6; - $10 = (($8) + 4)|0; - $11 = $10; - HEAP32[$11>>2] = $7; - $12 = ((($in)) + 8|0); - $13 = $12; - $14 = $13; - $15 = HEAP32[$14>>2]|0; - $16 = (($13) + 4)|0; - $17 = $16; - $18 = HEAP32[$17>>2]|0; - $19 = (___muldi3(($15|0),($18|0),121665,0)|0); - $20 = tempRet0; - $21 = ((($output)) + 8|0); - $22 = $21; - $23 = $22; - HEAP32[$23>>2] = $19; - $24 = (($22) + 4)|0; - $25 = $24; - HEAP32[$25>>2] = $20; - $26 = ((($in)) + 16|0); - $27 = $26; - $28 = $27; - $29 = HEAP32[$28>>2]|0; - $30 = (($27) + 4)|0; - $31 = $30; - $32 = HEAP32[$31>>2]|0; - $33 = (___muldi3(($29|0),($32|0),121665,0)|0); - $34 = tempRet0; - $35 = ((($output)) + 16|0); - $36 = $35; - $37 = $36; - HEAP32[$37>>2] = $33; - $38 = (($36) + 4)|0; - $39 = $38; - HEAP32[$39>>2] = $34; - $40 = ((($in)) + 24|0); - $41 = $40; - $42 = $41; - $43 = HEAP32[$42>>2]|0; - $44 = (($41) + 4)|0; - $45 = $44; - $46 = HEAP32[$45>>2]|0; - $47 = (___muldi3(($43|0),($46|0),121665,0)|0); - $48 = tempRet0; - $49 = ((($output)) + 24|0); - $50 = $49; - $51 = $50; - HEAP32[$51>>2] = $47; - $52 = (($50) + 4)|0; - $53 = $52; - HEAP32[$53>>2] = $48; - $54 = ((($in)) + 32|0); - $55 = $54; - $56 = $55; - $57 = HEAP32[$56>>2]|0; - $58 = (($55) + 4)|0; - $59 = $58; - $60 = HEAP32[$59>>2]|0; - $61 = (___muldi3(($57|0),($60|0),121665,0)|0); - $62 = tempRet0; - $63 = ((($output)) + 32|0); - $64 = $63; - $65 = $64; - HEAP32[$65>>2] = $61; - $66 = (($64) + 4)|0; - $67 = $66; - HEAP32[$67>>2] = $62; - $68 = ((($in)) + 40|0); - $69 = $68; - $70 = $69; - $71 = HEAP32[$70>>2]|0; - $72 = (($69) + 4)|0; - $73 = $72; - $74 = HEAP32[$73>>2]|0; - $75 = (___muldi3(($71|0),($74|0),121665,0)|0); - $76 = tempRet0; - $77 = ((($output)) + 40|0); - $78 = $77; - $79 = $78; - HEAP32[$79>>2] = $75; - $80 = (($78) + 4)|0; - $81 = $80; - HEAP32[$81>>2] = $76; - $82 = ((($in)) + 48|0); - $83 = $82; - $84 = $83; - $85 = HEAP32[$84>>2]|0; - $86 = (($83) + 4)|0; - $87 = $86; - $88 = HEAP32[$87>>2]|0; - $89 = (___muldi3(($85|0),($88|0),121665,0)|0); - $90 = tempRet0; - $91 = ((($output)) + 48|0); - $92 = $91; - $93 = $92; - HEAP32[$93>>2] = $89; - $94 = (($92) + 4)|0; - $95 = $94; - HEAP32[$95>>2] = $90; - $96 = ((($in)) + 56|0); - $97 = $96; - $98 = $97; - $99 = HEAP32[$98>>2]|0; - $100 = (($97) + 4)|0; - $101 = $100; - $102 = HEAP32[$101>>2]|0; - $103 = (___muldi3(($99|0),($102|0),121665,0)|0); - $104 = tempRet0; - $105 = ((($output)) + 56|0); - $106 = $105; - $107 = $106; - HEAP32[$107>>2] = $103; - $108 = (($106) + 4)|0; - $109 = $108; - HEAP32[$109>>2] = $104; - $110 = ((($in)) + 64|0); - $111 = $110; - $112 = $111; - $113 = HEAP32[$112>>2]|0; - $114 = (($111) + 4)|0; - $115 = $114; - $116 = HEAP32[$115>>2]|0; - $117 = (___muldi3(($113|0),($116|0),121665,0)|0); - $118 = tempRet0; - $119 = ((($output)) + 64|0); - $120 = $119; - $121 = $120; - HEAP32[$121>>2] = $117; - $122 = (($120) + 4)|0; - $123 = $122; - HEAP32[$123>>2] = $118; - $124 = ((($in)) + 72|0); - $125 = $124; - $126 = $125; - $127 = HEAP32[$126>>2]|0; - $128 = (($125) + 4)|0; - $129 = $128; - $130 = HEAP32[$129>>2]|0; - $131 = (___muldi3(($127|0),($130|0),121665,0)|0); - $132 = tempRet0; - $133 = ((($output)) + 72|0); - $134 = $133; - $135 = $134; - HEAP32[$135>>2] = $131; - $136 = (($134) + 4)|0; - $137 = $136; - HEAP32[$137>>2] = $132; - return; -} -function _crypto_sign_ed25519_ref10_fe_0($h) { - $h = $h|0; - var dest = 0, label = 0, sp = 0, stop = 0; - sp = STACKTOP; - dest=$h; stop=dest+40|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); - return; -} -function _crypto_sign_ed25519_ref10_fe_1($h) { - $h = $h|0; - var $0 = 0, dest = 0, label = 0, sp = 0, stop = 0; - sp = STACKTOP; - HEAP32[$h>>2] = 1; - $0 = ((($h)) + 4|0); - dest=$0; stop=dest+36|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); - return; -} -function _crypto_sign_ed25519_ref10_fe_add($h,$f,$g) { - $h = $h|0; - $f = $f|0; - $g = $g|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; - var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); - $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); - $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); - $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); - $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); - $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); - $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); - $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); - $18 = HEAP32[$17>>2]|0; - $19 = HEAP32[$g>>2]|0; - $20 = ((($g)) + 4|0); - $21 = HEAP32[$20>>2]|0; - $22 = ((($g)) + 8|0); - $23 = HEAP32[$22>>2]|0; - $24 = ((($g)) + 12|0); - $25 = HEAP32[$24>>2]|0; - $26 = ((($g)) + 16|0); - $27 = HEAP32[$26>>2]|0; - $28 = ((($g)) + 20|0); - $29 = HEAP32[$28>>2]|0; - $30 = ((($g)) + 24|0); - $31 = HEAP32[$30>>2]|0; - $32 = ((($g)) + 28|0); - $33 = HEAP32[$32>>2]|0; - $34 = ((($g)) + 32|0); - $35 = HEAP32[$34>>2]|0; - $36 = ((($g)) + 36|0); - $37 = HEAP32[$36>>2]|0; - $38 = (($19) + ($0))|0; - $39 = (($21) + ($2))|0; - $40 = (($23) + ($4))|0; - $41 = (($25) + ($6))|0; - $42 = (($27) + ($8))|0; - $43 = (($29) + ($10))|0; - $44 = (($31) + ($12))|0; - $45 = (($33) + ($14))|0; - $46 = (($35) + ($16))|0; - $47 = (($37) + ($18))|0; - HEAP32[$h>>2] = $38; - $48 = ((($h)) + 4|0); - HEAP32[$48>>2] = $39; - $49 = ((($h)) + 8|0); - HEAP32[$49>>2] = $40; - $50 = ((($h)) + 12|0); - HEAP32[$50>>2] = $41; - $51 = ((($h)) + 16|0); - HEAP32[$51>>2] = $42; - $52 = ((($h)) + 20|0); - HEAP32[$52>>2] = $43; - $53 = ((($h)) + 24|0); - HEAP32[$53>>2] = $44; - $54 = ((($h)) + 28|0); - HEAP32[$54>>2] = $45; - $55 = ((($h)) + 32|0); - HEAP32[$55>>2] = $46; - $56 = ((($h)) + 36|0); - HEAP32[$56>>2] = $47; - return; -} -function _crypto_sign_ed25519_ref10_fe_cmov($f,$g,$b) { - $f = $f|0; - $g = $g|0; - $b = $b|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; - var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0; - var $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); - $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); - $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); - $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); - $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); - $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); - $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); - $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); - $18 = HEAP32[$17>>2]|0; - $19 = HEAP32[$g>>2]|0; - $20 = ((($g)) + 4|0); - $21 = HEAP32[$20>>2]|0; - $22 = ((($g)) + 8|0); - $23 = HEAP32[$22>>2]|0; - $24 = ((($g)) + 12|0); - $25 = HEAP32[$24>>2]|0; - $26 = ((($g)) + 16|0); - $27 = HEAP32[$26>>2]|0; - $28 = ((($g)) + 20|0); - $29 = HEAP32[$28>>2]|0; - $30 = ((($g)) + 24|0); - $31 = HEAP32[$30>>2]|0; - $32 = ((($g)) + 28|0); - $33 = HEAP32[$32>>2]|0; - $34 = ((($g)) + 32|0); - $35 = HEAP32[$34>>2]|0; - $36 = ((($g)) + 36|0); - $37 = HEAP32[$36>>2]|0; - $38 = $19 ^ $0; - $39 = $21 ^ $2; - $40 = $23 ^ $4; - $41 = $25 ^ $6; - $42 = $27 ^ $8; - $43 = $29 ^ $10; - $44 = $31 ^ $12; - $45 = $33 ^ $14; - $46 = $35 ^ $16; - $47 = $37 ^ $18; - $48 = (0 - ($b))|0; - $49 = $38 & $48; - $50 = $39 & $48; - $51 = $40 & $48; - $52 = $41 & $48; - $53 = $42 & $48; - $54 = $43 & $48; - $55 = $44 & $48; - $56 = $45 & $48; - $57 = $46 & $48; - $58 = $47 & $48; - $59 = $49 ^ $0; - HEAP32[$f>>2] = $59; - $60 = $50 ^ $2; - HEAP32[$1>>2] = $60; - $61 = $51 ^ $4; - HEAP32[$3>>2] = $61; - $62 = $52 ^ $6; - HEAP32[$5>>2] = $62; - $63 = $53 ^ $8; - HEAP32[$7>>2] = $63; - $64 = $54 ^ $10; - HEAP32[$9>>2] = $64; - $65 = $55 ^ $12; - HEAP32[$11>>2] = $65; - $66 = $56 ^ $14; - HEAP32[$13>>2] = $66; - $67 = $57 ^ $16; - HEAP32[$15>>2] = $67; - $68 = $58 ^ $18; - HEAP32[$17>>2] = $68; - return; -} -function _crypto_sign_ed25519_ref10_fe_copy($h,$f) { - $h = $h|0; - $f = $f|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); - $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); - $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); - $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); - $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); - $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); - $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); - $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); - $18 = HEAP32[$17>>2]|0; - HEAP32[$h>>2] = $0; - $19 = ((($h)) + 4|0); - HEAP32[$19>>2] = $2; - $20 = ((($h)) + 8|0); - HEAP32[$20>>2] = $4; - $21 = ((($h)) + 12|0); - HEAP32[$21>>2] = $6; - $22 = ((($h)) + 16|0); - HEAP32[$22>>2] = $8; - $23 = ((($h)) + 20|0); - HEAP32[$23>>2] = $10; - $24 = ((($h)) + 24|0); - HEAP32[$24>>2] = $12; - $25 = ((($h)) + 28|0); - HEAP32[$25>>2] = $14; - $26 = ((($h)) + 32|0); - HEAP32[$26>>2] = $16; - $27 = ((($h)) + 36|0); - HEAP32[$27>>2] = $18; - return; -} -function _crypto_sign_ed25519_ref10_fe_frombytes($h,$s) { - $h = $h|0; - $s = $s|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; - var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; - var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; - var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; - var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = (_load_4($s)|0); - $1 = tempRet0; - $2 = ((($s)) + 4|0); - $3 = (_load_3($2)|0); - $4 = tempRet0; - $5 = (_bitshift64Shl(($3|0),($4|0),6)|0); - $6 = tempRet0; - $7 = ((($s)) + 7|0); - $8 = (_load_3($7)|0); - $9 = tempRet0; - $10 = (_bitshift64Shl(($8|0),($9|0),5)|0); - $11 = tempRet0; - $12 = ((($s)) + 10|0); - $13 = (_load_3($12)|0); - $14 = tempRet0; - $15 = (_bitshift64Shl(($13|0),($14|0),3)|0); - $16 = tempRet0; - $17 = ((($s)) + 13|0); - $18 = (_load_3($17)|0); - $19 = tempRet0; - $20 = (_bitshift64Shl(($18|0),($19|0),2)|0); - $21 = tempRet0; - $22 = ((($s)) + 16|0); - $23 = (_load_4($22)|0); - $24 = tempRet0; - $25 = ((($s)) + 20|0); - $26 = (_load_3($25)|0); - $27 = tempRet0; - $28 = (_bitshift64Shl(($26|0),($27|0),7)|0); - $29 = tempRet0; - $30 = ((($s)) + 23|0); - $31 = (_load_3($30)|0); - $32 = tempRet0; - $33 = (_bitshift64Shl(($31|0),($32|0),5)|0); - $34 = tempRet0; - $35 = ((($s)) + 26|0); - $36 = (_load_3($35)|0); - $37 = tempRet0; - $38 = (_bitshift64Shl(($36|0),($37|0),4)|0); - $39 = tempRet0; - $40 = ((($s)) + 29|0); - $41 = (_load_3($40)|0); - $42 = tempRet0; - $43 = (_bitshift64Shl(($41|0),($42|0),2)|0); - $44 = tempRet0; - $45 = $43 & 33554428; - $46 = (_i64Add(($45|0),0,16777216,0)|0); - $47 = tempRet0; - $48 = (_bitshift64Lshr(($46|0),($47|0),25)|0); - $49 = tempRet0; - $50 = (_i64Subtract(0,0,($48|0),($49|0))|0); - $51 = tempRet0; - $52 = $50 & 19; - $53 = (_i64Add(($52|0),0,($0|0),($1|0))|0); - $54 = tempRet0; - $55 = (_bitshift64Shl(($48|0),($49|0),25)|0); - $56 = tempRet0; - $57 = (_i64Add(($5|0),($6|0),16777216,0)|0); - $58 = tempRet0; - $59 = (_bitshift64Ashr(($57|0),($58|0),25)|0); - $60 = tempRet0; - $61 = (_i64Add(($59|0),($60|0),($10|0),($11|0))|0); - $62 = tempRet0; - $63 = (_bitshift64Shl(($59|0),($60|0),25)|0); - $64 = tempRet0; - $65 = (_i64Subtract(($5|0),($6|0),($63|0),($64|0))|0); - $66 = tempRet0; - $67 = (_i64Add(($15|0),($16|0),16777216,0)|0); - $68 = tempRet0; - $69 = (_bitshift64Ashr(($67|0),($68|0),25)|0); - $70 = tempRet0; - $71 = (_i64Add(($69|0),($70|0),($20|0),($21|0))|0); - $72 = tempRet0; - $73 = (_bitshift64Shl(($69|0),($70|0),25)|0); - $74 = tempRet0; - $75 = (_i64Subtract(($15|0),($16|0),($73|0),($74|0))|0); - $76 = tempRet0; - $77 = (_i64Add(($23|0),($24|0),16777216,0)|0); - $78 = tempRet0; - $79 = (_bitshift64Ashr(($77|0),($78|0),25)|0); - $80 = tempRet0; - $81 = (_i64Add(($28|0),($29|0),($79|0),($80|0))|0); - $82 = tempRet0; - $83 = (_bitshift64Shl(($79|0),($80|0),25)|0); - $84 = tempRet0; - $85 = (_i64Subtract(($23|0),($24|0),($83|0),($84|0))|0); - $86 = tempRet0; - $87 = (_i64Add(($33|0),($34|0),16777216,0)|0); - $88 = tempRet0; - $89 = (_bitshift64Ashr(($87|0),($88|0),25)|0); - $90 = tempRet0; - $91 = (_i64Add(($89|0),($90|0),($38|0),($39|0))|0); - $92 = tempRet0; - $93 = (_bitshift64Shl(($89|0),($90|0),25)|0); - $94 = tempRet0; - $95 = (_i64Add(($53|0),($54|0),33554432,0)|0); - $96 = tempRet0; - $97 = (_bitshift64Ashr(($95|0),($96|0),26)|0); - $98 = tempRet0; - $99 = (_i64Add(($65|0),($66|0),($97|0),($98|0))|0); - $100 = tempRet0; - $101 = (_bitshift64Shl(($97|0),($98|0),26)|0); - $102 = tempRet0; - $103 = (_i64Subtract(($53|0),($54|0),($101|0),($102|0))|0); - $104 = tempRet0; - $105 = (_i64Add(($61|0),($62|0),33554432,0)|0); - $106 = tempRet0; - $107 = (_bitshift64Ashr(($105|0),($106|0),26)|0); - $108 = tempRet0; - $109 = (_i64Add(($75|0),($76|0),($107|0),($108|0))|0); - $110 = tempRet0; - $111 = (_bitshift64Shl(($107|0),($108|0),26)|0); - $112 = tempRet0; - $113 = (_i64Subtract(($61|0),($62|0),($111|0),($112|0))|0); - $114 = tempRet0; - $115 = (_i64Add(($71|0),($72|0),33554432,0)|0); - $116 = tempRet0; - $117 = (_bitshift64Ashr(($115|0),($116|0),26)|0); - $118 = tempRet0; - $119 = (_i64Add(($85|0),($86|0),($117|0),($118|0))|0); - $120 = tempRet0; - $121 = (_bitshift64Shl(($117|0),($118|0),26)|0); - $122 = tempRet0; - $123 = (_i64Subtract(($71|0),($72|0),($121|0),($122|0))|0); - $124 = tempRet0; - $125 = (_i64Add(($81|0),($82|0),33554432,0)|0); - $126 = tempRet0; - $127 = (_bitshift64Ashr(($125|0),($126|0),26)|0); - $128 = tempRet0; - $129 = (_i64Add(($127|0),($128|0),($33|0),($34|0))|0); - $130 = tempRet0; - $131 = (_i64Subtract(($129|0),($130|0),($93|0),($94|0))|0); - $132 = tempRet0; - $133 = (_bitshift64Shl(($127|0),($128|0),26)|0); - $134 = tempRet0; - $135 = (_i64Subtract(($81|0),($82|0),($133|0),($134|0))|0); - $136 = tempRet0; - $137 = (_i64Add(($91|0),($92|0),33554432,0)|0); - $138 = tempRet0; - $139 = (_bitshift64Ashr(($137|0),($138|0),26)|0); - $140 = tempRet0; - $141 = (_i64Add(($139|0),($140|0),($45|0),0)|0); - $142 = tempRet0; - $143 = (_i64Subtract(($141|0),($142|0),($55|0),($56|0))|0); - $144 = tempRet0; - $145 = (_bitshift64Shl(($139|0),($140|0),26)|0); - $146 = tempRet0; - $147 = (_i64Subtract(($91|0),($92|0),($145|0),($146|0))|0); - $148 = tempRet0; - HEAP32[$h>>2] = $103; - $149 = ((($h)) + 4|0); - HEAP32[$149>>2] = $99; - $150 = ((($h)) + 8|0); - HEAP32[$150>>2] = $113; - $151 = ((($h)) + 12|0); - HEAP32[$151>>2] = $109; - $152 = ((($h)) + 16|0); - HEAP32[$152>>2] = $123; - $153 = ((($h)) + 20|0); - HEAP32[$153>>2] = $119; - $154 = ((($h)) + 24|0); - HEAP32[$154>>2] = $135; - $155 = ((($h)) + 28|0); - HEAP32[$155>>2] = $131; - $156 = ((($h)) + 32|0); - HEAP32[$156>>2] = $147; - $157 = ((($h)) + 36|0); - HEAP32[$157>>2] = $143; - return; -} -function _load_4($in) { - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; - var $8 = 0, $9 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP8[$in>>0]|0; - $1 = $0&255; - $2 = ((($in)) + 1|0); - $3 = HEAP8[$2>>0]|0; - $4 = $3&255; - $5 = (_bitshift64Shl(($4|0),0,8)|0); - $6 = tempRet0; - $7 = $5 | $1; - $8 = ((($in)) + 2|0); - $9 = HEAP8[$8>>0]|0; - $10 = $9&255; - $11 = (_bitshift64Shl(($10|0),0,16)|0); - $12 = tempRet0; - $13 = $7 | $11; - $14 = $6 | $12; - $15 = ((($in)) + 3|0); - $16 = HEAP8[$15>>0]|0; - $17 = $16&255; - $18 = (_bitshift64Shl(($17|0),0,24)|0); - $19 = tempRet0; - $20 = $13 | $18; - $21 = $14 | $19; - tempRet0 = ($21); - return ($20|0); -} -function _load_3($in) { - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP8[$in>>0]|0; - $1 = $0&255; - $2 = ((($in)) + 1|0); - $3 = HEAP8[$2>>0]|0; - $4 = $3&255; - $5 = (_bitshift64Shl(($4|0),0,8)|0); - $6 = tempRet0; - $7 = $5 | $1; - $8 = ((($in)) + 2|0); - $9 = HEAP8[$8>>0]|0; - $10 = $9&255; - $11 = (_bitshift64Shl(($10|0),0,16)|0); - $12 = tempRet0; - $13 = $7 | $11; - $14 = $6 | $12; - tempRet0 = ($14); - return ($13|0); -} -function _crypto_sign_ed25519_ref10_fe_invert($out,$z) { - $out = $out|0; - $z = $z|0; - var $0 = 0, $1 = 0, $2 = 0, $exitcond = 0, $exitcond10 = 0, $exitcond11 = 0, $i$74 = 0, $i$83 = 0, $i$92 = 0, $t0 = 0, $t1 = 0, $t2 = 0, $t3 = 0, label = 0, sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 160|0; - $t0 = sp + 120|0; - $t1 = sp + 80|0; - $t2 = sp + 40|0; - $t3 = sp; - _crypto_sign_ed25519_ref10_fe_sq($t0,$z); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_mul($t1,$z,$t1); - _crypto_sign_ed25519_ref10_fe_mul($t0,$t0,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t0); - _crypto_sign_ed25519_ref10_fe_mul($t1,$t1,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_mul($t2,$t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_mul($t2,$t3,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); - $i$74 = 1; - while(1) { - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - $0 = (($i$74) + 1)|0; - $exitcond11 = ($0|0)==(50); - if ($exitcond11) { - break; - } else { - $i$74 = $0; - } - } - _crypto_sign_ed25519_ref10_fe_mul($t2,$t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t2); - $i$83 = 1; - while(1) { - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - $1 = (($i$83) + 1)|0; - $exitcond10 = ($1|0)==(100); - if ($exitcond10) { - break; - } else { - $i$83 = $1; - } - } - _crypto_sign_ed25519_ref10_fe_mul($t2,$t3,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - $i$92 = 1; - while(1) { - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - $2 = (($i$92) + 1)|0; - $exitcond = ($2|0)==(50); - if ($exitcond) { - break; - } else { - $i$92 = $2; - } - } - _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_mul($out,$t1,$t0); - STACKTOP = sp;return; -} -function _crypto_sign_ed25519_ref10_fe_isnegative($f) { - $f = $f|0; - var $0 = 0, $1 = 0, $2 = 0, $s = 0, label = 0, sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 32|0; - $s = sp; - _crypto_sign_ed25519_ref10_fe_tobytes($s,$f); - $0 = HEAP8[$s>>0]|0; - $1 = $0&255; - $2 = $1 & 1; - STACKTOP = sp;return ($2|0); -} -function _crypto_sign_ed25519_ref10_fe_isnonzero($f) { - $f = $f|0; - var $0 = 0, $s = 0, label = 0, sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 32|0; - $s = sp; - _crypto_sign_ed25519_ref10_fe_tobytes($s,$f); - $0 = (_crypto_verify_32_ref($s,33172)|0); - STACKTOP = sp;return ($0|0); -} -function _crypto_sign_ed25519_ref10_fe_mul($h,$f,$g) { - $h = $h|0; - $f = $f|0; - $g = $g|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; - var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; - var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; - var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; - var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; - var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; - var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; - var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; - var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; - var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; - var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; - var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; - var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0; - var $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0; - var $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0; - var $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0; - var $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0; - var $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0; - var $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0; - var $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0; - var $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0; - var $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0; - var $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0; - var $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0; - var $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0; - var $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0; - var $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); - $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); - $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); - $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); - $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); - $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); - $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); - $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); - $18 = HEAP32[$17>>2]|0; - $19 = HEAP32[$g>>2]|0; - $20 = ((($g)) + 4|0); - $21 = HEAP32[$20>>2]|0; - $22 = ((($g)) + 8|0); - $23 = HEAP32[$22>>2]|0; - $24 = ((($g)) + 12|0); - $25 = HEAP32[$24>>2]|0; - $26 = ((($g)) + 16|0); - $27 = HEAP32[$26>>2]|0; - $28 = ((($g)) + 20|0); - $29 = HEAP32[$28>>2]|0; - $30 = ((($g)) + 24|0); - $31 = HEAP32[$30>>2]|0; - $32 = ((($g)) + 28|0); - $33 = HEAP32[$32>>2]|0; - $34 = ((($g)) + 32|0); - $35 = HEAP32[$34>>2]|0; - $36 = ((($g)) + 36|0); - $37 = HEAP32[$36>>2]|0; - $38 = ($21*19)|0; - $39 = ($23*19)|0; - $40 = ($25*19)|0; - $41 = ($27*19)|0; - $42 = ($29*19)|0; - $43 = ($31*19)|0; - $44 = ($33*19)|0; - $45 = ($35*19)|0; - $46 = ($37*19)|0; - $47 = $2 << 1; - $48 = $6 << 1; - $49 = $10 << 1; - $50 = $14 << 1; - $51 = $18 << 1; - $52 = ($0|0)<(0); - $53 = $52 << 31 >> 31; - $54 = ($19|0)<(0); - $55 = $54 << 31 >> 31; - $56 = (___muldi3(($19|0),($55|0),($0|0),($53|0))|0); - $57 = tempRet0; - $58 = ($21|0)<(0); - $59 = $58 << 31 >> 31; - $60 = (___muldi3(($21|0),($59|0),($0|0),($53|0))|0); - $61 = tempRet0; - $62 = ($23|0)<(0); - $63 = $62 << 31 >> 31; - $64 = (___muldi3(($23|0),($63|0),($0|0),($53|0))|0); - $65 = tempRet0; - $66 = ($25|0)<(0); - $67 = $66 << 31 >> 31; - $68 = (___muldi3(($25|0),($67|0),($0|0),($53|0))|0); - $69 = tempRet0; - $70 = ($27|0)<(0); - $71 = $70 << 31 >> 31; - $72 = (___muldi3(($27|0),($71|0),($0|0),($53|0))|0); - $73 = tempRet0; - $74 = ($29|0)<(0); - $75 = $74 << 31 >> 31; - $76 = (___muldi3(($29|0),($75|0),($0|0),($53|0))|0); - $77 = tempRet0; - $78 = ($31|0)<(0); - $79 = $78 << 31 >> 31; - $80 = (___muldi3(($31|0),($79|0),($0|0),($53|0))|0); - $81 = tempRet0; - $82 = ($33|0)<(0); - $83 = $82 << 31 >> 31; - $84 = (___muldi3(($33|0),($83|0),($0|0),($53|0))|0); - $85 = tempRet0; - $86 = ($35|0)<(0); - $87 = $86 << 31 >> 31; - $88 = (___muldi3(($35|0),($87|0),($0|0),($53|0))|0); - $89 = tempRet0; - $90 = ($37|0)<(0); - $91 = $90 << 31 >> 31; - $92 = (___muldi3(($37|0),($91|0),($0|0),($53|0))|0); - $93 = tempRet0; - $94 = ($2|0)<(0); - $95 = $94 << 31 >> 31; - $96 = (___muldi3(($19|0),($55|0),($2|0),($95|0))|0); - $97 = tempRet0; - $98 = ($47|0)<(0); - $99 = $98 << 31 >> 31; - $100 = (___muldi3(($21|0),($59|0),($47|0),($99|0))|0); - $101 = tempRet0; - $102 = (___muldi3(($23|0),($63|0),($2|0),($95|0))|0); - $103 = tempRet0; - $104 = (___muldi3(($25|0),($67|0),($47|0),($99|0))|0); - $105 = tempRet0; - $106 = (___muldi3(($27|0),($71|0),($2|0),($95|0))|0); - $107 = tempRet0; - $108 = (___muldi3(($29|0),($75|0),($47|0),($99|0))|0); - $109 = tempRet0; - $110 = (___muldi3(($31|0),($79|0),($2|0),($95|0))|0); - $111 = tempRet0; - $112 = (___muldi3(($33|0),($83|0),($47|0),($99|0))|0); - $113 = tempRet0; - $114 = (___muldi3(($35|0),($87|0),($2|0),($95|0))|0); - $115 = tempRet0; - $116 = ($46|0)<(0); - $117 = $116 << 31 >> 31; - $118 = (___muldi3(($46|0),($117|0),($47|0),($99|0))|0); - $119 = tempRet0; - $120 = ($4|0)<(0); - $121 = $120 << 31 >> 31; - $122 = (___muldi3(($19|0),($55|0),($4|0),($121|0))|0); - $123 = tempRet0; - $124 = (___muldi3(($21|0),($59|0),($4|0),($121|0))|0); - $125 = tempRet0; - $126 = (___muldi3(($23|0),($63|0),($4|0),($121|0))|0); - $127 = tempRet0; - $128 = (___muldi3(($25|0),($67|0),($4|0),($121|0))|0); - $129 = tempRet0; - $130 = (___muldi3(($27|0),($71|0),($4|0),($121|0))|0); - $131 = tempRet0; - $132 = (___muldi3(($29|0),($75|0),($4|0),($121|0))|0); - $133 = tempRet0; - $134 = (___muldi3(($31|0),($79|0),($4|0),($121|0))|0); - $135 = tempRet0; - $136 = (___muldi3(($33|0),($83|0),($4|0),($121|0))|0); - $137 = tempRet0; - $138 = ($45|0)<(0); - $139 = $138 << 31 >> 31; - $140 = (___muldi3(($45|0),($139|0),($4|0),($121|0))|0); - $141 = tempRet0; - $142 = (___muldi3(($46|0),($117|0),($4|0),($121|0))|0); - $143 = tempRet0; - $144 = ($6|0)<(0); - $145 = $144 << 31 >> 31; - $146 = (___muldi3(($19|0),($55|0),($6|0),($145|0))|0); - $147 = tempRet0; - $148 = ($48|0)<(0); - $149 = $148 << 31 >> 31; - $150 = (___muldi3(($21|0),($59|0),($48|0),($149|0))|0); - $151 = tempRet0; - $152 = (___muldi3(($23|0),($63|0),($6|0),($145|0))|0); - $153 = tempRet0; - $154 = (___muldi3(($25|0),($67|0),($48|0),($149|0))|0); - $155 = tempRet0; - $156 = (___muldi3(($27|0),($71|0),($6|0),($145|0))|0); - $157 = tempRet0; - $158 = (___muldi3(($29|0),($75|0),($48|0),($149|0))|0); - $159 = tempRet0; - $160 = (___muldi3(($31|0),($79|0),($6|0),($145|0))|0); - $161 = tempRet0; - $162 = ($44|0)<(0); - $163 = $162 << 31 >> 31; - $164 = (___muldi3(($44|0),($163|0),($48|0),($149|0))|0); - $165 = tempRet0; - $166 = (___muldi3(($45|0),($139|0),($6|0),($145|0))|0); - $167 = tempRet0; - $168 = (___muldi3(($46|0),($117|0),($48|0),($149|0))|0); - $169 = tempRet0; - $170 = ($8|0)<(0); - $171 = $170 << 31 >> 31; - $172 = (___muldi3(($19|0),($55|0),($8|0),($171|0))|0); - $173 = tempRet0; - $174 = (___muldi3(($21|0),($59|0),($8|0),($171|0))|0); - $175 = tempRet0; - $176 = (___muldi3(($23|0),($63|0),($8|0),($171|0))|0); - $177 = tempRet0; - $178 = (___muldi3(($25|0),($67|0),($8|0),($171|0))|0); - $179 = tempRet0; - $180 = (___muldi3(($27|0),($71|0),($8|0),($171|0))|0); - $181 = tempRet0; - $182 = (___muldi3(($29|0),($75|0),($8|0),($171|0))|0); - $183 = tempRet0; - $184 = ($43|0)<(0); - $185 = $184 << 31 >> 31; - $186 = (___muldi3(($43|0),($185|0),($8|0),($171|0))|0); - $187 = tempRet0; - $188 = (___muldi3(($44|0),($163|0),($8|0),($171|0))|0); - $189 = tempRet0; - $190 = (___muldi3(($45|0),($139|0),($8|0),($171|0))|0); - $191 = tempRet0; - $192 = (___muldi3(($46|0),($117|0),($8|0),($171|0))|0); - $193 = tempRet0; - $194 = ($10|0)<(0); - $195 = $194 << 31 >> 31; - $196 = (___muldi3(($19|0),($55|0),($10|0),($195|0))|0); - $197 = tempRet0; - $198 = ($49|0)<(0); - $199 = $198 << 31 >> 31; - $200 = (___muldi3(($21|0),($59|0),($49|0),($199|0))|0); - $201 = tempRet0; - $202 = (___muldi3(($23|0),($63|0),($10|0),($195|0))|0); - $203 = tempRet0; - $204 = (___muldi3(($25|0),($67|0),($49|0),($199|0))|0); - $205 = tempRet0; - $206 = (___muldi3(($27|0),($71|0),($10|0),($195|0))|0); - $207 = tempRet0; - $208 = ($42|0)<(0); - $209 = $208 << 31 >> 31; - $210 = (___muldi3(($42|0),($209|0),($49|0),($199|0))|0); - $211 = tempRet0; - $212 = (___muldi3(($43|0),($185|0),($10|0),($195|0))|0); - $213 = tempRet0; - $214 = (___muldi3(($44|0),($163|0),($49|0),($199|0))|0); - $215 = tempRet0; - $216 = (___muldi3(($45|0),($139|0),($10|0),($195|0))|0); - $217 = tempRet0; - $218 = (___muldi3(($46|0),($117|0),($49|0),($199|0))|0); - $219 = tempRet0; - $220 = ($12|0)<(0); - $221 = $220 << 31 >> 31; - $222 = (___muldi3(($19|0),($55|0),($12|0),($221|0))|0); - $223 = tempRet0; - $224 = (___muldi3(($21|0),($59|0),($12|0),($221|0))|0); - $225 = tempRet0; - $226 = (___muldi3(($23|0),($63|0),($12|0),($221|0))|0); - $227 = tempRet0; - $228 = (___muldi3(($25|0),($67|0),($12|0),($221|0))|0); - $229 = tempRet0; - $230 = ($41|0)<(0); - $231 = $230 << 31 >> 31; - $232 = (___muldi3(($41|0),($231|0),($12|0),($221|0))|0); - $233 = tempRet0; - $234 = (___muldi3(($42|0),($209|0),($12|0),($221|0))|0); - $235 = tempRet0; - $236 = (___muldi3(($43|0),($185|0),($12|0),($221|0))|0); - $237 = tempRet0; - $238 = (___muldi3(($44|0),($163|0),($12|0),($221|0))|0); - $239 = tempRet0; - $240 = (___muldi3(($45|0),($139|0),($12|0),($221|0))|0); - $241 = tempRet0; - $242 = (___muldi3(($46|0),($117|0),($12|0),($221|0))|0); - $243 = tempRet0; - $244 = ($14|0)<(0); - $245 = $244 << 31 >> 31; - $246 = (___muldi3(($19|0),($55|0),($14|0),($245|0))|0); - $247 = tempRet0; - $248 = ($50|0)<(0); - $249 = $248 << 31 >> 31; - $250 = (___muldi3(($21|0),($59|0),($50|0),($249|0))|0); - $251 = tempRet0; - $252 = (___muldi3(($23|0),($63|0),($14|0),($245|0))|0); - $253 = tempRet0; - $254 = ($40|0)<(0); - $255 = $254 << 31 >> 31; - $256 = (___muldi3(($40|0),($255|0),($50|0),($249|0))|0); - $257 = tempRet0; - $258 = (___muldi3(($41|0),($231|0),($14|0),($245|0))|0); - $259 = tempRet0; - $260 = (___muldi3(($42|0),($209|0),($50|0),($249|0))|0); - $261 = tempRet0; - $262 = (___muldi3(($43|0),($185|0),($14|0),($245|0))|0); - $263 = tempRet0; - $264 = (___muldi3(($44|0),($163|0),($50|0),($249|0))|0); - $265 = tempRet0; - $266 = (___muldi3(($45|0),($139|0),($14|0),($245|0))|0); - $267 = tempRet0; - $268 = (___muldi3(($46|0),($117|0),($50|0),($249|0))|0); - $269 = tempRet0; - $270 = ($16|0)<(0); - $271 = $270 << 31 >> 31; - $272 = (___muldi3(($19|0),($55|0),($16|0),($271|0))|0); - $273 = tempRet0; - $274 = (___muldi3(($21|0),($59|0),($16|0),($271|0))|0); - $275 = tempRet0; - $276 = ($39|0)<(0); - $277 = $276 << 31 >> 31; - $278 = (___muldi3(($39|0),($277|0),($16|0),($271|0))|0); - $279 = tempRet0; - $280 = (___muldi3(($40|0),($255|0),($16|0),($271|0))|0); - $281 = tempRet0; - $282 = (___muldi3(($41|0),($231|0),($16|0),($271|0))|0); - $283 = tempRet0; - $284 = (___muldi3(($42|0),($209|0),($16|0),($271|0))|0); - $285 = tempRet0; - $286 = (___muldi3(($43|0),($185|0),($16|0),($271|0))|0); - $287 = tempRet0; - $288 = (___muldi3(($44|0),($163|0),($16|0),($271|0))|0); - $289 = tempRet0; - $290 = (___muldi3(($45|0),($139|0),($16|0),($271|0))|0); - $291 = tempRet0; - $292 = (___muldi3(($46|0),($117|0),($16|0),($271|0))|0); - $293 = tempRet0; - $294 = ($18|0)<(0); - $295 = $294 << 31 >> 31; - $296 = (___muldi3(($19|0),($55|0),($18|0),($295|0))|0); - $297 = tempRet0; - $298 = ($51|0)<(0); - $299 = $298 << 31 >> 31; - $300 = ($38|0)<(0); - $301 = $300 << 31 >> 31; - $302 = (___muldi3(($38|0),($301|0),($51|0),($299|0))|0); - $303 = tempRet0; - $304 = (___muldi3(($39|0),($277|0),($18|0),($295|0))|0); - $305 = tempRet0; - $306 = (___muldi3(($40|0),($255|0),($51|0),($299|0))|0); - $307 = tempRet0; - $308 = (___muldi3(($41|0),($231|0),($18|0),($295|0))|0); - $309 = tempRet0; - $310 = (___muldi3(($42|0),($209|0),($51|0),($299|0))|0); - $311 = tempRet0; - $312 = (___muldi3(($43|0),($185|0),($18|0),($295|0))|0); - $313 = tempRet0; - $314 = (___muldi3(($44|0),($163|0),($51|0),($299|0))|0); - $315 = tempRet0; - $316 = (___muldi3(($45|0),($139|0),($18|0),($295|0))|0); - $317 = tempRet0; - $318 = (___muldi3(($46|0),($117|0),($51|0),($299|0))|0); - $319 = tempRet0; - $320 = (_i64Add(($302|0),($303|0),($56|0),($57|0))|0); - $321 = tempRet0; - $322 = (_i64Add(($320|0),($321|0),($278|0),($279|0))|0); - $323 = tempRet0; - $324 = (_i64Add(($322|0),($323|0),($256|0),($257|0))|0); - $325 = tempRet0; - $326 = (_i64Add(($324|0),($325|0),($232|0),($233|0))|0); - $327 = tempRet0; - $328 = (_i64Add(($326|0),($327|0),($210|0),($211|0))|0); - $329 = tempRet0; - $330 = (_i64Add(($328|0),($329|0),($186|0),($187|0))|0); - $331 = tempRet0; - $332 = (_i64Add(($330|0),($331|0),($164|0),($165|0))|0); - $333 = tempRet0; - $334 = (_i64Add(($332|0),($333|0),($140|0),($141|0))|0); - $335 = tempRet0; - $336 = (_i64Add(($334|0),($335|0),($118|0),($119|0))|0); - $337 = tempRet0; - $338 = (_i64Add(($60|0),($61|0),($96|0),($97|0))|0); - $339 = tempRet0; - $340 = (_i64Add(($150|0),($151|0),($172|0),($173|0))|0); - $341 = tempRet0; - $342 = (_i64Add(($340|0),($341|0),($126|0),($127|0))|0); - $343 = tempRet0; - $344 = (_i64Add(($342|0),($343|0),($104|0),($105|0))|0); - $345 = tempRet0; - $346 = (_i64Add(($344|0),($345|0),($72|0),($73|0))|0); - $347 = tempRet0; - $348 = (_i64Add(($346|0),($347|0),($310|0),($311|0))|0); - $349 = tempRet0; - $350 = (_i64Add(($348|0),($349|0),($286|0),($287|0))|0); - $351 = tempRet0; - $352 = (_i64Add(($350|0),($351|0),($264|0),($265|0))|0); - $353 = tempRet0; - $354 = (_i64Add(($352|0),($353|0),($240|0),($241|0))|0); - $355 = tempRet0; - $356 = (_i64Add(($354|0),($355|0),($218|0),($219|0))|0); - $357 = tempRet0; - $358 = (_i64Add(($336|0),($337|0),33554432,0)|0); - $359 = tempRet0; - $360 = (_bitshift64Ashr(($358|0),($359|0),26)|0); - $361 = tempRet0; - $362 = (_i64Add(($338|0),($339|0),($304|0),($305|0))|0); - $363 = tempRet0; - $364 = (_i64Add(($362|0),($363|0),($280|0),($281|0))|0); - $365 = tempRet0; - $366 = (_i64Add(($364|0),($365|0),($258|0),($259|0))|0); - $367 = tempRet0; - $368 = (_i64Add(($366|0),($367|0),($234|0),($235|0))|0); - $369 = tempRet0; - $370 = (_i64Add(($368|0),($369|0),($212|0),($213|0))|0); - $371 = tempRet0; - $372 = (_i64Add(($370|0),($371|0),($188|0),($189|0))|0); - $373 = tempRet0; - $374 = (_i64Add(($372|0),($373|0),($166|0),($167|0))|0); - $375 = tempRet0; - $376 = (_i64Add(($374|0),($375|0),($142|0),($143|0))|0); - $377 = tempRet0; - $378 = (_i64Add(($376|0),($377|0),($360|0),($361|0))|0); - $379 = tempRet0; - $380 = (_bitshift64Shl(($360|0),($361|0),26)|0); - $381 = tempRet0; - $382 = (_i64Subtract(($336|0),($337|0),($380|0),($381|0))|0); - $383 = tempRet0; - $384 = (_i64Add(($356|0),($357|0),33554432,0)|0); - $385 = tempRet0; - $386 = (_bitshift64Ashr(($384|0),($385|0),26)|0); - $387 = tempRet0; - $388 = (_i64Add(($174|0),($175|0),($196|0),($197|0))|0); - $389 = tempRet0; - $390 = (_i64Add(($388|0),($389|0),($152|0),($153|0))|0); - $391 = tempRet0; - $392 = (_i64Add(($390|0),($391|0),($128|0),($129|0))|0); - $393 = tempRet0; - $394 = (_i64Add(($392|0),($393|0),($106|0),($107|0))|0); - $395 = tempRet0; - $396 = (_i64Add(($394|0),($395|0),($76|0),($77|0))|0); - $397 = tempRet0; - $398 = (_i64Add(($396|0),($397|0),($312|0),($313|0))|0); - $399 = tempRet0; - $400 = (_i64Add(($398|0),($399|0),($288|0),($289|0))|0); - $401 = tempRet0; - $402 = (_i64Add(($400|0),($401|0),($266|0),($267|0))|0); - $403 = tempRet0; - $404 = (_i64Add(($402|0),($403|0),($242|0),($243|0))|0); - $405 = tempRet0; - $406 = (_i64Add(($404|0),($405|0),($386|0),($387|0))|0); - $407 = tempRet0; - $408 = (_bitshift64Shl(($386|0),($387|0),26)|0); - $409 = tempRet0; - $410 = (_i64Subtract(($356|0),($357|0),($408|0),($409|0))|0); - $411 = tempRet0; - $412 = (_i64Add(($378|0),($379|0),16777216,0)|0); - $413 = tempRet0; - $414 = (_bitshift64Ashr(($412|0),($413|0),25)|0); - $415 = tempRet0; - $416 = (_i64Add(($100|0),($101|0),($122|0),($123|0))|0); - $417 = tempRet0; - $418 = (_i64Add(($416|0),($417|0),($64|0),($65|0))|0); - $419 = tempRet0; - $420 = (_i64Add(($418|0),($419|0),($306|0),($307|0))|0); - $421 = tempRet0; - $422 = (_i64Add(($420|0),($421|0),($282|0),($283|0))|0); - $423 = tempRet0; - $424 = (_i64Add(($422|0),($423|0),($260|0),($261|0))|0); - $425 = tempRet0; - $426 = (_i64Add(($424|0),($425|0),($236|0),($237|0))|0); - $427 = tempRet0; - $428 = (_i64Add(($426|0),($427|0),($214|0),($215|0))|0); - $429 = tempRet0; - $430 = (_i64Add(($428|0),($429|0),($190|0),($191|0))|0); - $431 = tempRet0; - $432 = (_i64Add(($430|0),($431|0),($168|0),($169|0))|0); - $433 = tempRet0; - $434 = (_i64Add(($432|0),($433|0),($414|0),($415|0))|0); - $435 = tempRet0; - $436 = (_bitshift64Shl(($414|0),($415|0),25)|0); - $437 = tempRet0; - $438 = (_i64Subtract(($378|0),($379|0),($436|0),($437|0))|0); - $439 = tempRet0; - $440 = (_i64Add(($406|0),($407|0),16777216,0)|0); - $441 = tempRet0; - $442 = (_bitshift64Ashr(($440|0),($441|0),25)|0); - $443 = tempRet0; - $444 = (_i64Add(($200|0),($201|0),($222|0),($223|0))|0); - $445 = tempRet0; - $446 = (_i64Add(($444|0),($445|0),($176|0),($177|0))|0); - $447 = tempRet0; - $448 = (_i64Add(($446|0),($447|0),($154|0),($155|0))|0); - $449 = tempRet0; - $450 = (_i64Add(($448|0),($449|0),($130|0),($131|0))|0); - $451 = tempRet0; - $452 = (_i64Add(($450|0),($451|0),($108|0),($109|0))|0); - $453 = tempRet0; - $454 = (_i64Add(($452|0),($453|0),($80|0),($81|0))|0); - $455 = tempRet0; - $456 = (_i64Add(($454|0),($455|0),($314|0),($315|0))|0); - $457 = tempRet0; - $458 = (_i64Add(($456|0),($457|0),($290|0),($291|0))|0); - $459 = tempRet0; - $460 = (_i64Add(($458|0),($459|0),($268|0),($269|0))|0); - $461 = tempRet0; - $462 = (_i64Add(($460|0),($461|0),($442|0),($443|0))|0); - $463 = tempRet0; - $464 = (_bitshift64Shl(($442|0),($443|0),25)|0); - $465 = tempRet0; - $466 = (_i64Subtract(($406|0),($407|0),($464|0),($465|0))|0); - $467 = tempRet0; - $468 = (_i64Add(($434|0),($435|0),33554432,0)|0); - $469 = tempRet0; - $470 = (_bitshift64Ashr(($468|0),($469|0),26)|0); - $471 = tempRet0; - $472 = (_i64Add(($124|0),($125|0),($146|0),($147|0))|0); - $473 = tempRet0; - $474 = (_i64Add(($472|0),($473|0),($102|0),($103|0))|0); - $475 = tempRet0; - $476 = (_i64Add(($474|0),($475|0),($68|0),($69|0))|0); - $477 = tempRet0; - $478 = (_i64Add(($476|0),($477|0),($308|0),($309|0))|0); - $479 = tempRet0; - $480 = (_i64Add(($478|0),($479|0),($284|0),($285|0))|0); - $481 = tempRet0; - $482 = (_i64Add(($480|0),($481|0),($262|0),($263|0))|0); - $483 = tempRet0; - $484 = (_i64Add(($482|0),($483|0),($238|0),($239|0))|0); - $485 = tempRet0; - $486 = (_i64Add(($484|0),($485|0),($216|0),($217|0))|0); - $487 = tempRet0; - $488 = (_i64Add(($486|0),($487|0),($192|0),($193|0))|0); - $489 = tempRet0; - $490 = (_i64Add(($488|0),($489|0),($470|0),($471|0))|0); - $491 = tempRet0; - $492 = (_bitshift64Shl(($470|0),($471|0),26)|0); - $493 = tempRet0; - $494 = (_i64Subtract(($434|0),($435|0),($492|0),($493|0))|0); - $495 = tempRet0; - $496 = (_i64Add(($462|0),($463|0),33554432,0)|0); - $497 = tempRet0; - $498 = (_bitshift64Ashr(($496|0),($497|0),26)|0); - $499 = tempRet0; - $500 = (_i64Add(($224|0),($225|0),($246|0),($247|0))|0); - $501 = tempRet0; - $502 = (_i64Add(($500|0),($501|0),($202|0),($203|0))|0); - $503 = tempRet0; - $504 = (_i64Add(($502|0),($503|0),($178|0),($179|0))|0); - $505 = tempRet0; - $506 = (_i64Add(($504|0),($505|0),($156|0),($157|0))|0); - $507 = tempRet0; - $508 = (_i64Add(($506|0),($507|0),($132|0),($133|0))|0); - $509 = tempRet0; - $510 = (_i64Add(($508|0),($509|0),($110|0),($111|0))|0); - $511 = tempRet0; - $512 = (_i64Add(($510|0),($511|0),($84|0),($85|0))|0); - $513 = tempRet0; - $514 = (_i64Add(($512|0),($513|0),($316|0),($317|0))|0); - $515 = tempRet0; - $516 = (_i64Add(($514|0),($515|0),($292|0),($293|0))|0); - $517 = tempRet0; - $518 = (_i64Add(($516|0),($517|0),($498|0),($499|0))|0); - $519 = tempRet0; - $520 = (_bitshift64Shl(($498|0),($499|0),26)|0); - $521 = tempRet0; - $522 = (_i64Subtract(($462|0),($463|0),($520|0),($521|0))|0); - $523 = tempRet0; - $524 = (_i64Add(($490|0),($491|0),16777216,0)|0); - $525 = tempRet0; - $526 = (_bitshift64Ashr(($524|0),($525|0),25)|0); - $527 = tempRet0; - $528 = (_i64Add(($526|0),($527|0),($410|0),($411|0))|0); - $529 = tempRet0; - $530 = (_bitshift64Shl(($526|0),($527|0),25)|0); - $531 = tempRet0; - $532 = (_i64Subtract(($490|0),($491|0),($530|0),($531|0))|0); - $533 = tempRet0; - $534 = (_i64Add(($518|0),($519|0),16777216,0)|0); - $535 = tempRet0; - $536 = (_bitshift64Ashr(($534|0),($535|0),25)|0); - $537 = tempRet0; - $538 = (_i64Add(($250|0),($251|0),($272|0),($273|0))|0); - $539 = tempRet0; - $540 = (_i64Add(($538|0),($539|0),($226|0),($227|0))|0); - $541 = tempRet0; - $542 = (_i64Add(($540|0),($541|0),($204|0),($205|0))|0); - $543 = tempRet0; - $544 = (_i64Add(($542|0),($543|0),($180|0),($181|0))|0); - $545 = tempRet0; - $546 = (_i64Add(($544|0),($545|0),($158|0),($159|0))|0); - $547 = tempRet0; - $548 = (_i64Add(($546|0),($547|0),($134|0),($135|0))|0); - $549 = tempRet0; - $550 = (_i64Add(($548|0),($549|0),($112|0),($113|0))|0); - $551 = tempRet0; - $552 = (_i64Add(($550|0),($551|0),($88|0),($89|0))|0); - $553 = tempRet0; - $554 = (_i64Add(($552|0),($553|0),($318|0),($319|0))|0); - $555 = tempRet0; - $556 = (_i64Add(($554|0),($555|0),($536|0),($537|0))|0); - $557 = tempRet0; - $558 = (_bitshift64Shl(($536|0),($537|0),25)|0); - $559 = tempRet0; - $560 = (_i64Subtract(($518|0),($519|0),($558|0),($559|0))|0); - $561 = tempRet0; - $562 = (_i64Add(($528|0),($529|0),33554432,0)|0); - $563 = tempRet0; - $564 = (_bitshift64Ashr(($562|0),($563|0),26)|0); - $565 = tempRet0; - $566 = (_i64Add(($466|0),($467|0),($564|0),($565|0))|0); - $567 = tempRet0; - $568 = (_bitshift64Shl(($564|0),($565|0),26)|0); - $569 = tempRet0; - $570 = (_i64Subtract(($528|0),($529|0),($568|0),($569|0))|0); - $571 = tempRet0; - $572 = (_i64Add(($556|0),($557|0),33554432,0)|0); - $573 = tempRet0; - $574 = (_bitshift64Ashr(($572|0),($573|0),26)|0); - $575 = tempRet0; - $576 = (_i64Add(($274|0),($275|0),($296|0),($297|0))|0); - $577 = tempRet0; - $578 = (_i64Add(($576|0),($577|0),($252|0),($253|0))|0); - $579 = tempRet0; - $580 = (_i64Add(($578|0),($579|0),($228|0),($229|0))|0); - $581 = tempRet0; - $582 = (_i64Add(($580|0),($581|0),($206|0),($207|0))|0); - $583 = tempRet0; - $584 = (_i64Add(($582|0),($583|0),($182|0),($183|0))|0); - $585 = tempRet0; - $586 = (_i64Add(($584|0),($585|0),($160|0),($161|0))|0); - $587 = tempRet0; - $588 = (_i64Add(($586|0),($587|0),($136|0),($137|0))|0); - $589 = tempRet0; - $590 = (_i64Add(($588|0),($589|0),($114|0),($115|0))|0); - $591 = tempRet0; - $592 = (_i64Add(($590|0),($591|0),($92|0),($93|0))|0); - $593 = tempRet0; - $594 = (_i64Add(($592|0),($593|0),($574|0),($575|0))|0); - $595 = tempRet0; - $596 = (_bitshift64Shl(($574|0),($575|0),26)|0); - $597 = tempRet0; - $598 = (_i64Subtract(($556|0),($557|0),($596|0),($597|0))|0); - $599 = tempRet0; - $600 = (_i64Add(($594|0),($595|0),16777216,0)|0); - $601 = tempRet0; - $602 = (_bitshift64Ashr(($600|0),($601|0),25)|0); - $603 = tempRet0; - $604 = (___muldi3(($602|0),($603|0),19,0)|0); - $605 = tempRet0; - $606 = (_i64Add(($604|0),($605|0),($382|0),($383|0))|0); - $607 = tempRet0; - $608 = (_bitshift64Shl(($602|0),($603|0),25)|0); - $609 = tempRet0; - $610 = (_i64Subtract(($594|0),($595|0),($608|0),($609|0))|0); - $611 = tempRet0; - $612 = (_i64Add(($606|0),($607|0),33554432,0)|0); - $613 = tempRet0; - $614 = (_bitshift64Ashr(($612|0),($613|0),26)|0); - $615 = tempRet0; - $616 = (_i64Add(($438|0),($439|0),($614|0),($615|0))|0); - $617 = tempRet0; - $618 = (_bitshift64Shl(($614|0),($615|0),26)|0); - $619 = tempRet0; - $620 = (_i64Subtract(($606|0),($607|0),($618|0),($619|0))|0); - $621 = tempRet0; - HEAP32[$h>>2] = $620; - $622 = ((($h)) + 4|0); - HEAP32[$622>>2] = $616; - $623 = ((($h)) + 8|0); - HEAP32[$623>>2] = $494; - $624 = ((($h)) + 12|0); - HEAP32[$624>>2] = $532; - $625 = ((($h)) + 16|0); - HEAP32[$625>>2] = $570; - $626 = ((($h)) + 20|0); - HEAP32[$626>>2] = $566; - $627 = ((($h)) + 24|0); - HEAP32[$627>>2] = $522; - $628 = ((($h)) + 28|0); - HEAP32[$628>>2] = $560; - $629 = ((($h)) + 32|0); - HEAP32[$629>>2] = $598; - $630 = ((($h)) + 36|0); - HEAP32[$630>>2] = $610; - return; -} -function _crypto_sign_ed25519_ref10_fe_neg($h,$f) { - $h = $h|0; - $f = $f|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); - $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); - $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); - $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); - $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); - $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); - $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); - $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); - $18 = HEAP32[$17>>2]|0; - $19 = (0 - ($0))|0; - $20 = (0 - ($2))|0; - $21 = (0 - ($4))|0; - $22 = (0 - ($6))|0; - $23 = (0 - ($8))|0; - $24 = (0 - ($10))|0; - $25 = (0 - ($12))|0; - $26 = (0 - ($14))|0; - $27 = (0 - ($16))|0; - $28 = (0 - ($18))|0; - HEAP32[$h>>2] = $19; - $29 = ((($h)) + 4|0); - HEAP32[$29>>2] = $20; - $30 = ((($h)) + 8|0); - HEAP32[$30>>2] = $21; - $31 = ((($h)) + 12|0); - HEAP32[$31>>2] = $22; - $32 = ((($h)) + 16|0); - HEAP32[$32>>2] = $23; - $33 = ((($h)) + 20|0); - HEAP32[$33>>2] = $24; - $34 = ((($h)) + 24|0); - HEAP32[$34>>2] = $25; - $35 = ((($h)) + 28|0); - HEAP32[$35>>2] = $26; - $36 = ((($h)) + 32|0); - HEAP32[$36>>2] = $27; - $37 = ((($h)) + 36|0); - HEAP32[$37>>2] = $28; - return; -} -function _crypto_sign_ed25519_ref10_fe_pow22523($out,$z) { - $out = $out|0; - $z = $z|0; - var $0 = 0, $1 = 0, $2 = 0, $exitcond = 0, $exitcond10 = 0, $exitcond11 = 0, $i$74 = 0, $i$83 = 0, $i$92 = 0, $t0 = 0, $t1 = 0, $t2 = 0, label = 0, sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 128|0; - $t0 = sp + 80|0; - $t1 = sp + 40|0; - $t2 = sp; - _crypto_sign_ed25519_ref10_fe_sq($t0,$z); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_mul($t1,$z,$t1); - _crypto_sign_ed25519_ref10_fe_mul($t0,$t0,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t0,$t0); - _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_mul($t1,$t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); - $i$74 = 1; - while(1) { - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - $0 = (($i$74) + 1)|0; - $exitcond11 = ($0|0)==(50); - if ($exitcond11) { - break; - } else { - $i$74 = $0; - } - } - _crypto_sign_ed25519_ref10_fe_mul($t1,$t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); - $i$83 = 1; - while(1) { - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - $1 = (($i$83) + 1)|0; - $exitcond10 = ($1|0)==(100); - if ($exitcond10) { - break; - } else { - $i$83 = $1; - } - } - _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - $i$92 = 1; - while(1) { - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - $2 = (($i$92) + 1)|0; - $exitcond = ($2|0)==(50); - if ($exitcond) { - break; - } else { - $i$92 = $2; - } - } - _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t0,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t0,$t0); - _crypto_sign_ed25519_ref10_fe_mul($out,$t0,$z); - STACKTOP = sp;return; -} -function _crypto_sign_ed25519_ref10_fe_sq($h,$f) { - $h = $h|0; - $f = $f|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; - var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; - var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; - var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; - var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; - var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; - var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; - var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; - var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; - var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; - var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; - var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; - var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0; - var $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0; - var $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0; - var $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); - $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); - $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); - $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); - $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); - $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); - $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); - $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); - $18 = HEAP32[$17>>2]|0; - $19 = $0 << 1; - $20 = $2 << 1; - $21 = $4 << 1; - $22 = $6 << 1; - $23 = $8 << 1; - $24 = $10 << 1; - $25 = $12 << 1; - $26 = $14 << 1; - $27 = ($10*38)|0; - $28 = ($12*19)|0; - $29 = ($14*38)|0; - $30 = ($16*19)|0; - $31 = ($18*38)|0; - $32 = ($0|0)<(0); - $33 = $32 << 31 >> 31; - $34 = (___muldi3(($0|0),($33|0),($0|0),($33|0))|0); - $35 = tempRet0; - $36 = ($19|0)<(0); - $37 = $36 << 31 >> 31; - $38 = ($2|0)<(0); - $39 = $38 << 31 >> 31; - $40 = (___muldi3(($19|0),($37|0),($2|0),($39|0))|0); - $41 = tempRet0; - $42 = ($4|0)<(0); - $43 = $42 << 31 >> 31; - $44 = (___muldi3(($4|0),($43|0),($19|0),($37|0))|0); - $45 = tempRet0; - $46 = ($6|0)<(0); - $47 = $46 << 31 >> 31; - $48 = (___muldi3(($6|0),($47|0),($19|0),($37|0))|0); - $49 = tempRet0; - $50 = ($8|0)<(0); - $51 = $50 << 31 >> 31; - $52 = (___muldi3(($8|0),($51|0),($19|0),($37|0))|0); - $53 = tempRet0; - $54 = ($10|0)<(0); - $55 = $54 << 31 >> 31; - $56 = (___muldi3(($10|0),($55|0),($19|0),($37|0))|0); - $57 = tempRet0; - $58 = ($12|0)<(0); - $59 = $58 << 31 >> 31; - $60 = (___muldi3(($12|0),($59|0),($19|0),($37|0))|0); - $61 = tempRet0; - $62 = ($14|0)<(0); - $63 = $62 << 31 >> 31; - $64 = (___muldi3(($14|0),($63|0),($19|0),($37|0))|0); - $65 = tempRet0; - $66 = ($16|0)<(0); - $67 = $66 << 31 >> 31; - $68 = (___muldi3(($16|0),($67|0),($19|0),($37|0))|0); - $69 = tempRet0; - $70 = ($18|0)<(0); - $71 = $70 << 31 >> 31; - $72 = (___muldi3(($18|0),($71|0),($19|0),($37|0))|0); - $73 = tempRet0; - $74 = ($20|0)<(0); - $75 = $74 << 31 >> 31; - $76 = (___muldi3(($20|0),($75|0),($2|0),($39|0))|0); - $77 = tempRet0; - $78 = (___muldi3(($20|0),($75|0),($4|0),($43|0))|0); - $79 = tempRet0; - $80 = ($22|0)<(0); - $81 = $80 << 31 >> 31; - $82 = (___muldi3(($22|0),($81|0),($20|0),($75|0))|0); - $83 = tempRet0; - $84 = (___muldi3(($8|0),($51|0),($20|0),($75|0))|0); - $85 = tempRet0; - $86 = ($24|0)<(0); - $87 = $86 << 31 >> 31; - $88 = (___muldi3(($24|0),($87|0),($20|0),($75|0))|0); - $89 = tempRet0; - $90 = (___muldi3(($12|0),($59|0),($20|0),($75|0))|0); - $91 = tempRet0; - $92 = ($26|0)<(0); - $93 = $92 << 31 >> 31; - $94 = (___muldi3(($26|0),($93|0),($20|0),($75|0))|0); - $95 = tempRet0; - $96 = (___muldi3(($16|0),($67|0),($20|0),($75|0))|0); - $97 = tempRet0; - $98 = ($31|0)<(0); - $99 = $98 << 31 >> 31; - $100 = (___muldi3(($31|0),($99|0),($20|0),($75|0))|0); - $101 = tempRet0; - $102 = (___muldi3(($4|0),($43|0),($4|0),($43|0))|0); - $103 = tempRet0; - $104 = ($21|0)<(0); - $105 = $104 << 31 >> 31; - $106 = (___muldi3(($21|0),($105|0),($6|0),($47|0))|0); - $107 = tempRet0; - $108 = (___muldi3(($8|0),($51|0),($21|0),($105|0))|0); - $109 = tempRet0; - $110 = (___muldi3(($10|0),($55|0),($21|0),($105|0))|0); - $111 = tempRet0; - $112 = (___muldi3(($12|0),($59|0),($21|0),($105|0))|0); - $113 = tempRet0; - $114 = (___muldi3(($14|0),($63|0),($21|0),($105|0))|0); - $115 = tempRet0; - $116 = ($30|0)<(0); - $117 = $116 << 31 >> 31; - $118 = (___muldi3(($30|0),($117|0),($21|0),($105|0))|0); - $119 = tempRet0; - $120 = (___muldi3(($31|0),($99|0),($4|0),($43|0))|0); - $121 = tempRet0; - $122 = (___muldi3(($22|0),($81|0),($6|0),($47|0))|0); - $123 = tempRet0; - $124 = (___muldi3(($22|0),($81|0),($8|0),($51|0))|0); - $125 = tempRet0; - $126 = (___muldi3(($24|0),($87|0),($22|0),($81|0))|0); - $127 = tempRet0; - $128 = (___muldi3(($12|0),($59|0),($22|0),($81|0))|0); - $129 = tempRet0; - $130 = ($29|0)<(0); - $131 = $130 << 31 >> 31; - $132 = (___muldi3(($29|0),($131|0),($22|0),($81|0))|0); - $133 = tempRet0; - $134 = (___muldi3(($30|0),($117|0),($22|0),($81|0))|0); - $135 = tempRet0; - $136 = (___muldi3(($31|0),($99|0),($22|0),($81|0))|0); - $137 = tempRet0; - $138 = (___muldi3(($8|0),($51|0),($8|0),($51|0))|0); - $139 = tempRet0; - $140 = ($23|0)<(0); - $141 = $140 << 31 >> 31; - $142 = (___muldi3(($23|0),($141|0),($10|0),($55|0))|0); - $143 = tempRet0; - $144 = ($28|0)<(0); - $145 = $144 << 31 >> 31; - $146 = (___muldi3(($28|0),($145|0),($23|0),($141|0))|0); - $147 = tempRet0; - $148 = (___muldi3(($29|0),($131|0),($8|0),($51|0))|0); - $149 = tempRet0; - $150 = (___muldi3(($30|0),($117|0),($23|0),($141|0))|0); - $151 = tempRet0; - $152 = (___muldi3(($31|0),($99|0),($8|0),($51|0))|0); - $153 = tempRet0; - $154 = ($27|0)<(0); - $155 = $154 << 31 >> 31; - $156 = (___muldi3(($27|0),($155|0),($10|0),($55|0))|0); - $157 = tempRet0; - $158 = (___muldi3(($28|0),($145|0),($24|0),($87|0))|0); - $159 = tempRet0; - $160 = (___muldi3(($29|0),($131|0),($24|0),($87|0))|0); - $161 = tempRet0; - $162 = (___muldi3(($30|0),($117|0),($24|0),($87|0))|0); - $163 = tempRet0; - $164 = (___muldi3(($31|0),($99|0),($24|0),($87|0))|0); - $165 = tempRet0; - $166 = (___muldi3(($28|0),($145|0),($12|0),($59|0))|0); - $167 = tempRet0; - $168 = (___muldi3(($29|0),($131|0),($12|0),($59|0))|0); - $169 = tempRet0; - $170 = ($25|0)<(0); - $171 = $170 << 31 >> 31; - $172 = (___muldi3(($30|0),($117|0),($25|0),($171|0))|0); - $173 = tempRet0; - $174 = (___muldi3(($31|0),($99|0),($12|0),($59|0))|0); - $175 = tempRet0; - $176 = (___muldi3(($29|0),($131|0),($14|0),($63|0))|0); - $177 = tempRet0; - $178 = (___muldi3(($30|0),($117|0),($26|0),($93|0))|0); - $179 = tempRet0; - $180 = (___muldi3(($31|0),($99|0),($26|0),($93|0))|0); - $181 = tempRet0; - $182 = (___muldi3(($30|0),($117|0),($16|0),($67|0))|0); - $183 = tempRet0; - $184 = (___muldi3(($31|0),($99|0),($16|0),($67|0))|0); - $185 = tempRet0; - $186 = (___muldi3(($31|0),($99|0),($18|0),($71|0))|0); - $187 = tempRet0; - $188 = (_i64Add(($156|0),($157|0),($34|0),($35|0))|0); - $189 = tempRet0; - $190 = (_i64Add(($188|0),($189|0),($146|0),($147|0))|0); - $191 = tempRet0; - $192 = (_i64Add(($190|0),($191|0),($132|0),($133|0))|0); - $193 = tempRet0; - $194 = (_i64Add(($192|0),($193|0),($118|0),($119|0))|0); - $195 = tempRet0; - $196 = (_i64Add(($194|0),($195|0),($100|0),($101|0))|0); - $197 = tempRet0; - $198 = (_i64Add(($44|0),($45|0),($76|0),($77|0))|0); - $199 = tempRet0; - $200 = (_i64Add(($48|0),($49|0),($78|0),($79|0))|0); - $201 = tempRet0; - $202 = (_i64Add(($82|0),($83|0),($102|0),($103|0))|0); - $203 = tempRet0; - $204 = (_i64Add(($202|0),($203|0),($52|0),($53|0))|0); - $205 = tempRet0; - $206 = (_i64Add(($204|0),($205|0),($176|0),($177|0))|0); - $207 = tempRet0; - $208 = (_i64Add(($206|0),($207|0),($172|0),($173|0))|0); - $209 = tempRet0; - $210 = (_i64Add(($208|0),($209|0),($164|0),($165|0))|0); - $211 = tempRet0; - $212 = (_i64Add(($196|0),($197|0),33554432,0)|0); - $213 = tempRet0; - $214 = (_bitshift64Ashr(($212|0),($213|0),26)|0); - $215 = tempRet0; - $216 = (_i64Add(($158|0),($159|0),($40|0),($41|0))|0); - $217 = tempRet0; - $218 = (_i64Add(($216|0),($217|0),($148|0),($149|0))|0); - $219 = tempRet0; - $220 = (_i64Add(($218|0),($219|0),($134|0),($135|0))|0); - $221 = tempRet0; - $222 = (_i64Add(($220|0),($221|0),($120|0),($121|0))|0); - $223 = tempRet0; - $224 = (_i64Add(($222|0),($223|0),($214|0),($215|0))|0); - $225 = tempRet0; - $226 = (_bitshift64Shl(($214|0),($215|0),26)|0); - $227 = tempRet0; - $228 = (_i64Subtract(($196|0),($197|0),($226|0),($227|0))|0); - $229 = tempRet0; - $230 = (_i64Add(($210|0),($211|0),33554432,0)|0); - $231 = tempRet0; - $232 = (_bitshift64Ashr(($230|0),($231|0),26)|0); - $233 = tempRet0; - $234 = (_i64Add(($84|0),($85|0),($106|0),($107|0))|0); - $235 = tempRet0; - $236 = (_i64Add(($234|0),($235|0),($56|0),($57|0))|0); - $237 = tempRet0; - $238 = (_i64Add(($236|0),($237|0),($178|0),($179|0))|0); - $239 = tempRet0; - $240 = (_i64Add(($238|0),($239|0),($174|0),($175|0))|0); - $241 = tempRet0; - $242 = (_i64Add(($240|0),($241|0),($232|0),($233|0))|0); - $243 = tempRet0; - $244 = (_bitshift64Shl(($232|0),($233|0),26)|0); - $245 = tempRet0; - $246 = (_i64Subtract(($210|0),($211|0),($244|0),($245|0))|0); - $247 = tempRet0; - $248 = (_i64Add(($224|0),($225|0),16777216,0)|0); - $249 = tempRet0; - $250 = (_bitshift64Ashr(($248|0),($249|0),25)|0); - $251 = tempRet0; - $252 = (_i64Add(($198|0),($199|0),($166|0),($167|0))|0); - $253 = tempRet0; - $254 = (_i64Add(($252|0),($253|0),($160|0),($161|0))|0); - $255 = tempRet0; - $256 = (_i64Add(($254|0),($255|0),($150|0),($151|0))|0); - $257 = tempRet0; - $258 = (_i64Add(($256|0),($257|0),($136|0),($137|0))|0); - $259 = tempRet0; - $260 = (_i64Add(($258|0),($259|0),($250|0),($251|0))|0); - $261 = tempRet0; - $262 = (_bitshift64Shl(($250|0),($251|0),25)|0); - $263 = tempRet0; - $264 = (_i64Subtract(($224|0),($225|0),($262|0),($263|0))|0); - $265 = tempRet0; - $266 = (_i64Add(($242|0),($243|0),16777216,0)|0); - $267 = tempRet0; - $268 = (_bitshift64Ashr(($266|0),($267|0),25)|0); - $269 = tempRet0; - $270 = (_i64Add(($122|0),($123|0),($108|0),($109|0))|0); - $271 = tempRet0; - $272 = (_i64Add(($270|0),($271|0),($88|0),($89|0))|0); - $273 = tempRet0; - $274 = (_i64Add(($272|0),($273|0),($60|0),($61|0))|0); - $275 = tempRet0; - $276 = (_i64Add(($274|0),($275|0),($182|0),($183|0))|0); - $277 = tempRet0; - $278 = (_i64Add(($276|0),($277|0),($180|0),($181|0))|0); - $279 = tempRet0; - $280 = (_i64Add(($278|0),($279|0),($268|0),($269|0))|0); - $281 = tempRet0; - $282 = (_bitshift64Shl(($268|0),($269|0),25)|0); - $283 = tempRet0; - $284 = (_i64Subtract(($242|0),($243|0),($282|0),($283|0))|0); - $285 = tempRet0; - $286 = (_i64Add(($260|0),($261|0),33554432,0)|0); - $287 = tempRet0; - $288 = (_bitshift64Ashr(($286|0),($287|0),26)|0); - $289 = tempRet0; - $290 = (_i64Add(($200|0),($201|0),($168|0),($169|0))|0); - $291 = tempRet0; - $292 = (_i64Add(($290|0),($291|0),($162|0),($163|0))|0); - $293 = tempRet0; - $294 = (_i64Add(($292|0),($293|0),($152|0),($153|0))|0); - $295 = tempRet0; - $296 = (_i64Add(($294|0),($295|0),($288|0),($289|0))|0); - $297 = tempRet0; - $298 = (_bitshift64Shl(($288|0),($289|0),26)|0); - $299 = tempRet0; - $300 = (_i64Subtract(($260|0),($261|0),($298|0),($299|0))|0); - $301 = tempRet0; - $302 = (_i64Add(($280|0),($281|0),33554432,0)|0); - $303 = tempRet0; - $304 = (_bitshift64Ashr(($302|0),($303|0),26)|0); - $305 = tempRet0; - $306 = (_i64Add(($110|0),($111|0),($124|0),($125|0))|0); - $307 = tempRet0; - $308 = (_i64Add(($306|0),($307|0),($90|0),($91|0))|0); - $309 = tempRet0; - $310 = (_i64Add(($308|0),($309|0),($64|0),($65|0))|0); - $311 = tempRet0; - $312 = (_i64Add(($310|0),($311|0),($184|0),($185|0))|0); - $313 = tempRet0; - $314 = (_i64Add(($312|0),($313|0),($304|0),($305|0))|0); - $315 = tempRet0; - $316 = (_bitshift64Shl(($304|0),($305|0),26)|0); - $317 = tempRet0; - $318 = (_i64Subtract(($280|0),($281|0),($316|0),($317|0))|0); - $319 = tempRet0; - $320 = (_i64Add(($296|0),($297|0),16777216,0)|0); - $321 = tempRet0; - $322 = (_bitshift64Ashr(($320|0),($321|0),25)|0); - $323 = tempRet0; - $324 = (_i64Add(($322|0),($323|0),($246|0),($247|0))|0); - $325 = tempRet0; - $326 = (_bitshift64Shl(($322|0),($323|0),25)|0); - $327 = tempRet0; - $328 = (_i64Subtract(($296|0),($297|0),($326|0),($327|0))|0); - $329 = tempRet0; - $330 = (_i64Add(($314|0),($315|0),16777216,0)|0); - $331 = tempRet0; - $332 = (_bitshift64Ashr(($330|0),($331|0),25)|0); - $333 = tempRet0; - $334 = (_i64Add(($112|0),($113|0),($138|0),($139|0))|0); - $335 = tempRet0; - $336 = (_i64Add(($334|0),($335|0),($126|0),($127|0))|0); - $337 = tempRet0; - $338 = (_i64Add(($336|0),($337|0),($94|0),($95|0))|0); - $339 = tempRet0; - $340 = (_i64Add(($338|0),($339|0),($68|0),($69|0))|0); - $341 = tempRet0; - $342 = (_i64Add(($340|0),($341|0),($186|0),($187|0))|0); - $343 = tempRet0; - $344 = (_i64Add(($342|0),($343|0),($332|0),($333|0))|0); - $345 = tempRet0; - $346 = (_bitshift64Shl(($332|0),($333|0),25)|0); - $347 = tempRet0; - $348 = (_i64Subtract(($314|0),($315|0),($346|0),($347|0))|0); - $349 = tempRet0; - $350 = (_i64Add(($324|0),($325|0),33554432,0)|0); - $351 = tempRet0; - $352 = (_bitshift64Ashr(($350|0),($351|0),26)|0); - $353 = tempRet0; - $354 = (_i64Add(($284|0),($285|0),($352|0),($353|0))|0); - $355 = tempRet0; - $356 = (_bitshift64Shl(($352|0),($353|0),26)|0); - $357 = tempRet0; - $358 = (_i64Subtract(($324|0),($325|0),($356|0),($357|0))|0); - $359 = tempRet0; - $360 = (_i64Add(($344|0),($345|0),33554432,0)|0); - $361 = tempRet0; - $362 = (_bitshift64Ashr(($360|0),($361|0),26)|0); - $363 = tempRet0; - $364 = (_i64Add(($128|0),($129|0),($142|0),($143|0))|0); - $365 = tempRet0; - $366 = (_i64Add(($364|0),($365|0),($114|0),($115|0))|0); - $367 = tempRet0; - $368 = (_i64Add(($366|0),($367|0),($96|0),($97|0))|0); - $369 = tempRet0; - $370 = (_i64Add(($368|0),($369|0),($72|0),($73|0))|0); - $371 = tempRet0; - $372 = (_i64Add(($370|0),($371|0),($362|0),($363|0))|0); - $373 = tempRet0; - $374 = (_bitshift64Shl(($362|0),($363|0),26)|0); - $375 = tempRet0; - $376 = (_i64Subtract(($344|0),($345|0),($374|0),($375|0))|0); - $377 = tempRet0; - $378 = (_i64Add(($372|0),($373|0),16777216,0)|0); - $379 = tempRet0; - $380 = (_bitshift64Ashr(($378|0),($379|0),25)|0); - $381 = tempRet0; - $382 = (___muldi3(($380|0),($381|0),19,0)|0); - $383 = tempRet0; - $384 = (_i64Add(($382|0),($383|0),($228|0),($229|0))|0); - $385 = tempRet0; - $386 = (_bitshift64Shl(($380|0),($381|0),25)|0); - $387 = tempRet0; - $388 = (_i64Subtract(($372|0),($373|0),($386|0),($387|0))|0); - $389 = tempRet0; - $390 = (_i64Add(($384|0),($385|0),33554432,0)|0); - $391 = tempRet0; - $392 = (_bitshift64Ashr(($390|0),($391|0),26)|0); - $393 = tempRet0; - $394 = (_i64Add(($264|0),($265|0),($392|0),($393|0))|0); - $395 = tempRet0; - $396 = (_bitshift64Shl(($392|0),($393|0),26)|0); - $397 = tempRet0; - $398 = (_i64Subtract(($384|0),($385|0),($396|0),($397|0))|0); - $399 = tempRet0; - HEAP32[$h>>2] = $398; - $400 = ((($h)) + 4|0); - HEAP32[$400>>2] = $394; - $401 = ((($h)) + 8|0); - HEAP32[$401>>2] = $300; - $402 = ((($h)) + 12|0); - HEAP32[$402>>2] = $328; - $403 = ((($h)) + 16|0); - HEAP32[$403>>2] = $358; - $404 = ((($h)) + 20|0); - HEAP32[$404>>2] = $354; - $405 = ((($h)) + 24|0); - HEAP32[$405>>2] = $318; - $406 = ((($h)) + 28|0); - HEAP32[$406>>2] = $348; - $407 = ((($h)) + 32|0); - HEAP32[$407>>2] = $376; - $408 = ((($h)) + 36|0); - HEAP32[$408>>2] = $388; - return; -} -function _crypto_sign_ed25519_ref10_fe_sq2($h,$f) { - $h = $h|0; - $f = $f|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; - var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; - var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; - var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; - var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; - var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; - var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; - var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; - var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; - var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; - var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; - var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; - var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0; - var $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0; - var $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0; - var $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0; - var $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); - $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); - $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); - $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); - $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); - $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); - $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); - $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); - $18 = HEAP32[$17>>2]|0; - $19 = $0 << 1; - $20 = $2 << 1; - $21 = $4 << 1; - $22 = $6 << 1; - $23 = $8 << 1; - $24 = $10 << 1; - $25 = $12 << 1; - $26 = $14 << 1; - $27 = ($10*38)|0; - $28 = ($12*19)|0; - $29 = ($14*38)|0; - $30 = ($16*19)|0; - $31 = ($18*38)|0; - $32 = ($0|0)<(0); - $33 = $32 << 31 >> 31; - $34 = (___muldi3(($0|0),($33|0),($0|0),($33|0))|0); - $35 = tempRet0; - $36 = ($19|0)<(0); - $37 = $36 << 31 >> 31; - $38 = ($2|0)<(0); - $39 = $38 << 31 >> 31; - $40 = (___muldi3(($19|0),($37|0),($2|0),($39|0))|0); - $41 = tempRet0; - $42 = ($4|0)<(0); - $43 = $42 << 31 >> 31; - $44 = (___muldi3(($4|0),($43|0),($19|0),($37|0))|0); - $45 = tempRet0; - $46 = ($6|0)<(0); - $47 = $46 << 31 >> 31; - $48 = (___muldi3(($6|0),($47|0),($19|0),($37|0))|0); - $49 = tempRet0; - $50 = ($8|0)<(0); - $51 = $50 << 31 >> 31; - $52 = (___muldi3(($8|0),($51|0),($19|0),($37|0))|0); - $53 = tempRet0; - $54 = ($10|0)<(0); - $55 = $54 << 31 >> 31; - $56 = (___muldi3(($10|0),($55|0),($19|0),($37|0))|0); - $57 = tempRet0; - $58 = ($12|0)<(0); - $59 = $58 << 31 >> 31; - $60 = (___muldi3(($12|0),($59|0),($19|0),($37|0))|0); - $61 = tempRet0; - $62 = ($14|0)<(0); - $63 = $62 << 31 >> 31; - $64 = (___muldi3(($14|0),($63|0),($19|0),($37|0))|0); - $65 = tempRet0; - $66 = ($16|0)<(0); - $67 = $66 << 31 >> 31; - $68 = (___muldi3(($16|0),($67|0),($19|0),($37|0))|0); - $69 = tempRet0; - $70 = ($18|0)<(0); - $71 = $70 << 31 >> 31; - $72 = (___muldi3(($18|0),($71|0),($19|0),($37|0))|0); - $73 = tempRet0; - $74 = ($20|0)<(0); - $75 = $74 << 31 >> 31; - $76 = (___muldi3(($20|0),($75|0),($2|0),($39|0))|0); - $77 = tempRet0; - $78 = (___muldi3(($20|0),($75|0),($4|0),($43|0))|0); - $79 = tempRet0; - $80 = ($22|0)<(0); - $81 = $80 << 31 >> 31; - $82 = (___muldi3(($22|0),($81|0),($20|0),($75|0))|0); - $83 = tempRet0; - $84 = (___muldi3(($8|0),($51|0),($20|0),($75|0))|0); - $85 = tempRet0; - $86 = ($24|0)<(0); - $87 = $86 << 31 >> 31; - $88 = (___muldi3(($24|0),($87|0),($20|0),($75|0))|0); - $89 = tempRet0; - $90 = (___muldi3(($12|0),($59|0),($20|0),($75|0))|0); - $91 = tempRet0; - $92 = ($26|0)<(0); - $93 = $92 << 31 >> 31; - $94 = (___muldi3(($26|0),($93|0),($20|0),($75|0))|0); - $95 = tempRet0; - $96 = (___muldi3(($16|0),($67|0),($20|0),($75|0))|0); - $97 = tempRet0; - $98 = ($31|0)<(0); - $99 = $98 << 31 >> 31; - $100 = (___muldi3(($31|0),($99|0),($20|0),($75|0))|0); - $101 = tempRet0; - $102 = (___muldi3(($4|0),($43|0),($4|0),($43|0))|0); - $103 = tempRet0; - $104 = ($21|0)<(0); - $105 = $104 << 31 >> 31; - $106 = (___muldi3(($21|0),($105|0),($6|0),($47|0))|0); - $107 = tempRet0; - $108 = (___muldi3(($8|0),($51|0),($21|0),($105|0))|0); - $109 = tempRet0; - $110 = (___muldi3(($10|0),($55|0),($21|0),($105|0))|0); - $111 = tempRet0; - $112 = (___muldi3(($12|0),($59|0),($21|0),($105|0))|0); - $113 = tempRet0; - $114 = (___muldi3(($14|0),($63|0),($21|0),($105|0))|0); - $115 = tempRet0; - $116 = ($30|0)<(0); - $117 = $116 << 31 >> 31; - $118 = (___muldi3(($30|0),($117|0),($21|0),($105|0))|0); - $119 = tempRet0; - $120 = (___muldi3(($31|0),($99|0),($4|0),($43|0))|0); - $121 = tempRet0; - $122 = (___muldi3(($22|0),($81|0),($6|0),($47|0))|0); - $123 = tempRet0; - $124 = (___muldi3(($22|0),($81|0),($8|0),($51|0))|0); - $125 = tempRet0; - $126 = (___muldi3(($24|0),($87|0),($22|0),($81|0))|0); - $127 = tempRet0; - $128 = (___muldi3(($12|0),($59|0),($22|0),($81|0))|0); - $129 = tempRet0; - $130 = ($29|0)<(0); - $131 = $130 << 31 >> 31; - $132 = (___muldi3(($29|0),($131|0),($22|0),($81|0))|0); - $133 = tempRet0; - $134 = (___muldi3(($30|0),($117|0),($22|0),($81|0))|0); - $135 = tempRet0; - $136 = (___muldi3(($31|0),($99|0),($22|0),($81|0))|0); - $137 = tempRet0; - $138 = (___muldi3(($8|0),($51|0),($8|0),($51|0))|0); - $139 = tempRet0; - $140 = ($23|0)<(0); - $141 = $140 << 31 >> 31; - $142 = (___muldi3(($23|0),($141|0),($10|0),($55|0))|0); - $143 = tempRet0; - $144 = ($28|0)<(0); - $145 = $144 << 31 >> 31; - $146 = (___muldi3(($28|0),($145|0),($23|0),($141|0))|0); - $147 = tempRet0; - $148 = (___muldi3(($29|0),($131|0),($8|0),($51|0))|0); - $149 = tempRet0; - $150 = (___muldi3(($30|0),($117|0),($23|0),($141|0))|0); - $151 = tempRet0; - $152 = (___muldi3(($31|0),($99|0),($8|0),($51|0))|0); - $153 = tempRet0; - $154 = ($27|0)<(0); - $155 = $154 << 31 >> 31; - $156 = (___muldi3(($27|0),($155|0),($10|0),($55|0))|0); - $157 = tempRet0; - $158 = (___muldi3(($28|0),($145|0),($24|0),($87|0))|0); - $159 = tempRet0; - $160 = (___muldi3(($29|0),($131|0),($24|0),($87|0))|0); - $161 = tempRet0; - $162 = (___muldi3(($30|0),($117|0),($24|0),($87|0))|0); - $163 = tempRet0; - $164 = (___muldi3(($31|0),($99|0),($24|0),($87|0))|0); - $165 = tempRet0; - $166 = (___muldi3(($28|0),($145|0),($12|0),($59|0))|0); - $167 = tempRet0; - $168 = (___muldi3(($29|0),($131|0),($12|0),($59|0))|0); - $169 = tempRet0; - $170 = ($25|0)<(0); - $171 = $170 << 31 >> 31; - $172 = (___muldi3(($30|0),($117|0),($25|0),($171|0))|0); - $173 = tempRet0; - $174 = (___muldi3(($31|0),($99|0),($12|0),($59|0))|0); - $175 = tempRet0; - $176 = (___muldi3(($29|0),($131|0),($14|0),($63|0))|0); - $177 = tempRet0; - $178 = (___muldi3(($30|0),($117|0),($26|0),($93|0))|0); - $179 = tempRet0; - $180 = (___muldi3(($31|0),($99|0),($26|0),($93|0))|0); - $181 = tempRet0; - $182 = (___muldi3(($30|0),($117|0),($16|0),($67|0))|0); - $183 = tempRet0; - $184 = (___muldi3(($31|0),($99|0),($16|0),($67|0))|0); - $185 = tempRet0; - $186 = (___muldi3(($31|0),($99|0),($18|0),($71|0))|0); - $187 = tempRet0; - $188 = (_i64Add(($156|0),($157|0),($34|0),($35|0))|0); - $189 = tempRet0; - $190 = (_i64Add(($188|0),($189|0),($146|0),($147|0))|0); - $191 = tempRet0; - $192 = (_i64Add(($190|0),($191|0),($132|0),($133|0))|0); - $193 = tempRet0; - $194 = (_i64Add(($192|0),($193|0),($118|0),($119|0))|0); - $195 = tempRet0; - $196 = (_i64Add(($194|0),($195|0),($100|0),($101|0))|0); - $197 = tempRet0; - $198 = (_i64Add(($158|0),($159|0),($40|0),($41|0))|0); - $199 = tempRet0; - $200 = (_i64Add(($198|0),($199|0),($148|0),($149|0))|0); - $201 = tempRet0; - $202 = (_i64Add(($200|0),($201|0),($134|0),($135|0))|0); - $203 = tempRet0; - $204 = (_i64Add(($202|0),($203|0),($120|0),($121|0))|0); - $205 = tempRet0; - $206 = (_i64Add(($44|0),($45|0),($76|0),($77|0))|0); - $207 = tempRet0; - $208 = (_i64Add(($206|0),($207|0),($166|0),($167|0))|0); - $209 = tempRet0; - $210 = (_i64Add(($208|0),($209|0),($160|0),($161|0))|0); - $211 = tempRet0; - $212 = (_i64Add(($210|0),($211|0),($150|0),($151|0))|0); - $213 = tempRet0; - $214 = (_i64Add(($212|0),($213|0),($136|0),($137|0))|0); - $215 = tempRet0; - $216 = (_i64Add(($48|0),($49|0),($78|0),($79|0))|0); - $217 = tempRet0; - $218 = (_i64Add(($216|0),($217|0),($168|0),($169|0))|0); - $219 = tempRet0; - $220 = (_i64Add(($218|0),($219|0),($162|0),($163|0))|0); - $221 = tempRet0; - $222 = (_i64Add(($220|0),($221|0),($152|0),($153|0))|0); - $223 = tempRet0; - $224 = (_i64Add(($82|0),($83|0),($102|0),($103|0))|0); - $225 = tempRet0; - $226 = (_i64Add(($224|0),($225|0),($52|0),($53|0))|0); - $227 = tempRet0; - $228 = (_i64Add(($226|0),($227|0),($176|0),($177|0))|0); - $229 = tempRet0; - $230 = (_i64Add(($228|0),($229|0),($172|0),($173|0))|0); - $231 = tempRet0; - $232 = (_i64Add(($230|0),($231|0),($164|0),($165|0))|0); - $233 = tempRet0; - $234 = (_i64Add(($84|0),($85|0),($106|0),($107|0))|0); - $235 = tempRet0; - $236 = (_i64Add(($234|0),($235|0),($56|0),($57|0))|0); - $237 = tempRet0; - $238 = (_i64Add(($236|0),($237|0),($178|0),($179|0))|0); - $239 = tempRet0; - $240 = (_i64Add(($238|0),($239|0),($174|0),($175|0))|0); - $241 = tempRet0; - $242 = (_i64Add(($122|0),($123|0),($108|0),($109|0))|0); - $243 = tempRet0; - $244 = (_i64Add(($242|0),($243|0),($88|0),($89|0))|0); - $245 = tempRet0; - $246 = (_i64Add(($244|0),($245|0),($60|0),($61|0))|0); - $247 = tempRet0; - $248 = (_i64Add(($246|0),($247|0),($182|0),($183|0))|0); - $249 = tempRet0; - $250 = (_i64Add(($248|0),($249|0),($180|0),($181|0))|0); - $251 = tempRet0; - $252 = (_i64Add(($110|0),($111|0),($124|0),($125|0))|0); - $253 = tempRet0; - $254 = (_i64Add(($252|0),($253|0),($90|0),($91|0))|0); - $255 = tempRet0; - $256 = (_i64Add(($254|0),($255|0),($64|0),($65|0))|0); - $257 = tempRet0; - $258 = (_i64Add(($256|0),($257|0),($184|0),($185|0))|0); - $259 = tempRet0; - $260 = (_i64Add(($112|0),($113|0),($138|0),($139|0))|0); - $261 = tempRet0; - $262 = (_i64Add(($260|0),($261|0),($126|0),($127|0))|0); - $263 = tempRet0; - $264 = (_i64Add(($262|0),($263|0),($94|0),($95|0))|0); - $265 = tempRet0; - $266 = (_i64Add(($264|0),($265|0),($68|0),($69|0))|0); - $267 = tempRet0; - $268 = (_i64Add(($266|0),($267|0),($186|0),($187|0))|0); - $269 = tempRet0; - $270 = (_i64Add(($128|0),($129|0),($142|0),($143|0))|0); - $271 = tempRet0; - $272 = (_i64Add(($270|0),($271|0),($114|0),($115|0))|0); - $273 = tempRet0; - $274 = (_i64Add(($272|0),($273|0),($96|0),($97|0))|0); - $275 = tempRet0; - $276 = (_i64Add(($274|0),($275|0),($72|0),($73|0))|0); - $277 = tempRet0; - $278 = (_bitshift64Shl(($196|0),($197|0),1)|0); - $279 = tempRet0; - $280 = (_bitshift64Shl(($204|0),($205|0),1)|0); - $281 = tempRet0; - $282 = (_bitshift64Shl(($214|0),($215|0),1)|0); - $283 = tempRet0; - $284 = (_bitshift64Shl(($222|0),($223|0),1)|0); - $285 = tempRet0; - $286 = (_bitshift64Shl(($232|0),($233|0),1)|0); - $287 = tempRet0; - $288 = (_bitshift64Shl(($240|0),($241|0),1)|0); - $289 = tempRet0; - $290 = (_bitshift64Shl(($250|0),($251|0),1)|0); - $291 = tempRet0; - $292 = (_bitshift64Shl(($258|0),($259|0),1)|0); - $293 = tempRet0; - $294 = (_bitshift64Shl(($268|0),($269|0),1)|0); - $295 = tempRet0; - $296 = (_bitshift64Shl(($276|0),($277|0),1)|0); - $297 = tempRet0; - $298 = (_i64Add(($278|0),($279|0),33554432,0)|0); - $299 = tempRet0; - $300 = (_bitshift64Ashr(($298|0),($299|0),26)|0); - $301 = tempRet0; - $302 = (_i64Add(($300|0),($301|0),($280|0),($281|0))|0); - $303 = tempRet0; - $304 = (_bitshift64Shl(($300|0),($301|0),26)|0); - $305 = tempRet0; - $306 = (_i64Subtract(($278|0),($279|0),($304|0),($305|0))|0); - $307 = tempRet0; - $308 = (_i64Add(($286|0),($287|0),33554432,0)|0); - $309 = tempRet0; - $310 = (_bitshift64Ashr(($308|0),($309|0),26)|0); - $311 = tempRet0; - $312 = (_i64Add(($310|0),($311|0),($288|0),($289|0))|0); - $313 = tempRet0; - $314 = (_bitshift64Shl(($310|0),($311|0),26)|0); - $315 = tempRet0; - $316 = (_i64Subtract(($286|0),($287|0),($314|0),($315|0))|0); - $317 = tempRet0; - $318 = (_i64Add(($302|0),($303|0),16777216,0)|0); - $319 = tempRet0; - $320 = (_bitshift64Ashr(($318|0),($319|0),25)|0); - $321 = tempRet0; - $322 = (_i64Add(($320|0),($321|0),($282|0),($283|0))|0); - $323 = tempRet0; - $324 = (_bitshift64Shl(($320|0),($321|0),25)|0); - $325 = tempRet0; - $326 = (_i64Subtract(($302|0),($303|0),($324|0),($325|0))|0); - $327 = tempRet0; - $328 = (_i64Add(($312|0),($313|0),16777216,0)|0); - $329 = tempRet0; - $330 = (_bitshift64Ashr(($328|0),($329|0),25)|0); - $331 = tempRet0; - $332 = (_i64Add(($330|0),($331|0),($290|0),($291|0))|0); - $333 = tempRet0; - $334 = (_bitshift64Shl(($330|0),($331|0),25)|0); - $335 = tempRet0; - $336 = (_i64Subtract(($312|0),($313|0),($334|0),($335|0))|0); - $337 = tempRet0; - $338 = (_i64Add(($322|0),($323|0),33554432,0)|0); - $339 = tempRet0; - $340 = (_bitshift64Ashr(($338|0),($339|0),26)|0); - $341 = tempRet0; - $342 = (_i64Add(($340|0),($341|0),($284|0),($285|0))|0); - $343 = tempRet0; - $344 = (_bitshift64Shl(($340|0),($341|0),26)|0); - $345 = tempRet0; - $346 = (_i64Subtract(($322|0),($323|0),($344|0),($345|0))|0); - $347 = tempRet0; - $348 = (_i64Add(($332|0),($333|0),33554432,0)|0); - $349 = tempRet0; - $350 = (_bitshift64Ashr(($348|0),($349|0),26)|0); - $351 = tempRet0; - $352 = (_i64Add(($350|0),($351|0),($292|0),($293|0))|0); - $353 = tempRet0; - $354 = (_bitshift64Shl(($350|0),($351|0),26)|0); - $355 = tempRet0; - $356 = (_i64Subtract(($332|0),($333|0),($354|0),($355|0))|0); - $357 = tempRet0; - $358 = (_i64Add(($342|0),($343|0),16777216,0)|0); - $359 = tempRet0; - $360 = (_bitshift64Ashr(($358|0),($359|0),25)|0); - $361 = tempRet0; - $362 = (_i64Add(($360|0),($361|0),($316|0),($317|0))|0); - $363 = tempRet0; - $364 = (_bitshift64Shl(($360|0),($361|0),25)|0); - $365 = tempRet0; - $366 = (_i64Subtract(($342|0),($343|0),($364|0),($365|0))|0); - $367 = tempRet0; - $368 = (_i64Add(($352|0),($353|0),16777216,0)|0); - $369 = tempRet0; - $370 = (_bitshift64Ashr(($368|0),($369|0),25)|0); - $371 = tempRet0; - $372 = (_i64Add(($370|0),($371|0),($294|0),($295|0))|0); - $373 = tempRet0; - $374 = (_bitshift64Shl(($370|0),($371|0),25)|0); - $375 = tempRet0; - $376 = (_i64Subtract(($352|0),($353|0),($374|0),($375|0))|0); - $377 = tempRet0; - $378 = (_i64Add(($362|0),($363|0),33554432,0)|0); - $379 = tempRet0; - $380 = (_bitshift64Ashr(($378|0),($379|0),26)|0); - $381 = tempRet0; - $382 = (_i64Add(($336|0),($337|0),($380|0),($381|0))|0); - $383 = tempRet0; - $384 = (_bitshift64Shl(($380|0),($381|0),26)|0); - $385 = tempRet0; - $386 = (_i64Subtract(($362|0),($363|0),($384|0),($385|0))|0); - $387 = tempRet0; - $388 = (_i64Add(($372|0),($373|0),33554432,0)|0); - $389 = tempRet0; - $390 = (_bitshift64Ashr(($388|0),($389|0),26)|0); - $391 = tempRet0; - $392 = (_i64Add(($390|0),($391|0),($296|0),($297|0))|0); - $393 = tempRet0; - $394 = (_bitshift64Shl(($390|0),($391|0),26)|0); - $395 = tempRet0; - $396 = (_i64Subtract(($372|0),($373|0),($394|0),($395|0))|0); - $397 = tempRet0; - $398 = (_i64Add(($392|0),($393|0),16777216,0)|0); - $399 = tempRet0; - $400 = (_bitshift64Ashr(($398|0),($399|0),25)|0); - $401 = tempRet0; - $402 = (___muldi3(($400|0),($401|0),19,0)|0); - $403 = tempRet0; - $404 = (_i64Add(($402|0),($403|0),($306|0),($307|0))|0); - $405 = tempRet0; - $406 = (_bitshift64Shl(($400|0),($401|0),25)|0); - $407 = tempRet0; - $408 = (_i64Subtract(($392|0),($393|0),($406|0),($407|0))|0); - $409 = tempRet0; - $410 = (_i64Add(($404|0),($405|0),33554432,0)|0); - $411 = tempRet0; - $412 = (_bitshift64Ashr(($410|0),($411|0),26)|0); - $413 = tempRet0; - $414 = (_i64Add(($326|0),($327|0),($412|0),($413|0))|0); - $415 = tempRet0; - $416 = (_bitshift64Shl(($412|0),($413|0),26)|0); - $417 = tempRet0; - $418 = (_i64Subtract(($404|0),($405|0),($416|0),($417|0))|0); - $419 = tempRet0; - HEAP32[$h>>2] = $418; - $420 = ((($h)) + 4|0); - HEAP32[$420>>2] = $414; - $421 = ((($h)) + 8|0); - HEAP32[$421>>2] = $346; - $422 = ((($h)) + 12|0); - HEAP32[$422>>2] = $366; - $423 = ((($h)) + 16|0); - HEAP32[$423>>2] = $386; - $424 = ((($h)) + 20|0); - HEAP32[$424>>2] = $382; - $425 = ((($h)) + 24|0); - HEAP32[$425>>2] = $356; - $426 = ((($h)) + 28|0); - HEAP32[$426>>2] = $376; - $427 = ((($h)) + 32|0); - HEAP32[$427>>2] = $396; - $428 = ((($h)) + 36|0); - HEAP32[$428>>2] = $408; - return; -} -function _crypto_sign_ed25519_ref10_fe_sub($h,$f,$g) { - $h = $h|0; - $f = $f|0; - $g = $g|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; - var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); - $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); - $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); - $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); - $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); - $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); - $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); - $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); - $18 = HEAP32[$17>>2]|0; - $19 = HEAP32[$g>>2]|0; - $20 = ((($g)) + 4|0); - $21 = HEAP32[$20>>2]|0; - $22 = ((($g)) + 8|0); - $23 = HEAP32[$22>>2]|0; - $24 = ((($g)) + 12|0); - $25 = HEAP32[$24>>2]|0; - $26 = ((($g)) + 16|0); - $27 = HEAP32[$26>>2]|0; - $28 = ((($g)) + 20|0); - $29 = HEAP32[$28>>2]|0; - $30 = ((($g)) + 24|0); - $31 = HEAP32[$30>>2]|0; - $32 = ((($g)) + 28|0); - $33 = HEAP32[$32>>2]|0; - $34 = ((($g)) + 32|0); - $35 = HEAP32[$34>>2]|0; - $36 = ((($g)) + 36|0); - $37 = HEAP32[$36>>2]|0; - $38 = (($0) - ($19))|0; - $39 = (($2) - ($21))|0; - $40 = (($4) - ($23))|0; - $41 = (($6) - ($25))|0; - $42 = (($8) - ($27))|0; - $43 = (($10) - ($29))|0; - $44 = (($12) - ($31))|0; - $45 = (($14) - ($33))|0; - $46 = (($16) - ($35))|0; - $47 = (($18) - ($37))|0; - HEAP32[$h>>2] = $38; - $48 = ((($h)) + 4|0); - HEAP32[$48>>2] = $39; - $49 = ((($h)) + 8|0); - HEAP32[$49>>2] = $40; - $50 = ((($h)) + 12|0); - HEAP32[$50>>2] = $41; - $51 = ((($h)) + 16|0); - HEAP32[$51>>2] = $42; - $52 = ((($h)) + 20|0); - HEAP32[$52>>2] = $43; - $53 = ((($h)) + 24|0); - HEAP32[$53>>2] = $44; - $54 = ((($h)) + 28|0); - HEAP32[$54>>2] = $45; - $55 = ((($h)) + 32|0); - HEAP32[$55>>2] = $46; - $56 = ((($h)) + 36|0); - HEAP32[$56>>2] = $47; - return; -} -function _crypto_sign_ed25519_ref10_fe_tobytes($s,$h) { - $s = $s|0; - $h = $h|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0; - var $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0; - var $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0; - var $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0; - var $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP32[$h>>2]|0; - $1 = ((($h)) + 4|0); - $2 = HEAP32[$1>>2]|0; - $3 = ((($h)) + 8|0); - $4 = HEAP32[$3>>2]|0; - $5 = ((($h)) + 12|0); - $6 = HEAP32[$5>>2]|0; - $7 = ((($h)) + 16|0); - $8 = HEAP32[$7>>2]|0; - $9 = ((($h)) + 20|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($h)) + 24|0); - $12 = HEAP32[$11>>2]|0; - $13 = ((($h)) + 28|0); - $14 = HEAP32[$13>>2]|0; - $15 = ((($h)) + 32|0); - $16 = HEAP32[$15>>2]|0; - $17 = ((($h)) + 36|0); - $18 = HEAP32[$17>>2]|0; - $19 = ($18*19)|0; - $20 = (($19) + 16777216)|0; - $21 = $20 >> 25; - $22 = (($21) + ($0))|0; - $23 = $22 >> 26; - $24 = (($23) + ($2))|0; - $25 = $24 >> 25; - $26 = (($25) + ($4))|0; - $27 = $26 >> 26; - $28 = (($27) + ($6))|0; - $29 = $28 >> 25; - $30 = (($29) + ($8))|0; - $31 = $30 >> 26; - $32 = (($31) + ($10))|0; - $33 = $32 >> 25; - $34 = (($33) + ($12))|0; - $35 = $34 >> 26; - $36 = (($35) + ($14))|0; - $37 = $36 >> 25; - $38 = (($37) + ($16))|0; - $39 = $38 >> 26; - $40 = (($39) + ($18))|0; - $41 = $40 >> 25; - $42 = ($41*19)|0; - $43 = (($42) + ($0))|0; - $44 = $43 >> 26; - $45 = (($44) + ($2))|0; - $46 = $44 << 26; - $47 = (($43) - ($46))|0; - $48 = $45 >> 25; - $49 = (($48) + ($4))|0; - $50 = $48 << 25; - $51 = (($45) - ($50))|0; - $52 = $49 >> 26; - $53 = (($52) + ($6))|0; - $54 = $52 << 26; - $55 = (($49) - ($54))|0; - $56 = $53 >> 25; - $57 = (($56) + ($8))|0; - $58 = $56 << 25; - $59 = (($53) - ($58))|0; - $60 = $57 >> 26; - $61 = (($60) + ($10))|0; - $62 = $60 << 26; - $63 = (($57) - ($62))|0; - $64 = $61 >> 25; - $65 = (($64) + ($12))|0; - $66 = $64 << 25; - $67 = (($61) - ($66))|0; - $68 = $65 >> 26; - $69 = (($68) + ($14))|0; - $70 = $68 << 26; - $71 = (($65) - ($70))|0; - $72 = $69 >> 25; - $73 = (($72) + ($16))|0; - $74 = $72 << 25; - $75 = (($69) - ($74))|0; - $76 = $73 >> 26; - $77 = (($76) + ($18))|0; - $78 = $76 << 26; - $79 = (($73) - ($78))|0; - $80 = $77 & 33554431; - $81 = $47&255; - HEAP8[$s>>0] = $81; - $82 = $47 >>> 8; - $83 = $82&255; - $84 = ((($s)) + 1|0); - HEAP8[$84>>0] = $83; - $85 = $47 >>> 16; - $86 = $85&255; - $87 = ((($s)) + 2|0); - HEAP8[$87>>0] = $86; - $88 = $47 >>> 24; - $89 = $51 << 2; - $90 = $89 | $88; - $91 = $90&255; - $92 = ((($s)) + 3|0); - HEAP8[$92>>0] = $91; - $93 = $51 >>> 6; - $94 = $93&255; - $95 = ((($s)) + 4|0); - HEAP8[$95>>0] = $94; - $96 = $51 >>> 14; - $97 = $96&255; - $98 = ((($s)) + 5|0); - HEAP8[$98>>0] = $97; - $99 = $51 >>> 22; - $100 = $55 << 3; - $101 = $100 | $99; - $102 = $101&255; - $103 = ((($s)) + 6|0); - HEAP8[$103>>0] = $102; - $104 = $55 >>> 5; - $105 = $104&255; - $106 = ((($s)) + 7|0); - HEAP8[$106>>0] = $105; - $107 = $55 >>> 13; - $108 = $107&255; - $109 = ((($s)) + 8|0); - HEAP8[$109>>0] = $108; - $110 = $55 >>> 21; - $111 = $59 << 5; - $112 = $111 | $110; - $113 = $112&255; - $114 = ((($s)) + 9|0); - HEAP8[$114>>0] = $113; - $115 = $59 >>> 3; - $116 = $115&255; - $117 = ((($s)) + 10|0); - HEAP8[$117>>0] = $116; - $118 = $59 >>> 11; - $119 = $118&255; - $120 = ((($s)) + 11|0); - HEAP8[$120>>0] = $119; - $121 = $59 >>> 19; - $122 = $63 << 6; - $123 = $122 | $121; - $124 = $123&255; - $125 = ((($s)) + 12|0); - HEAP8[$125>>0] = $124; - $126 = $63 >>> 2; - $127 = $126&255; - $128 = ((($s)) + 13|0); - HEAP8[$128>>0] = $127; - $129 = $63 >>> 10; - $130 = $129&255; - $131 = ((($s)) + 14|0); - HEAP8[$131>>0] = $130; - $132 = $63 >>> 18; - $133 = $132&255; - $134 = ((($s)) + 15|0); - HEAP8[$134>>0] = $133; - $135 = $67&255; - $136 = ((($s)) + 16|0); - HEAP8[$136>>0] = $135; - $137 = $67 >>> 8; - $138 = $137&255; - $139 = ((($s)) + 17|0); - HEAP8[$139>>0] = $138; - $140 = $67 >>> 16; - $141 = $140&255; - $142 = ((($s)) + 18|0); - HEAP8[$142>>0] = $141; - $143 = $67 >>> 24; - $144 = $71 << 1; - $145 = $144 | $143; - $146 = $145&255; - $147 = ((($s)) + 19|0); - HEAP8[$147>>0] = $146; - $148 = $71 >>> 7; - $149 = $148&255; - $150 = ((($s)) + 20|0); - HEAP8[$150>>0] = $149; - $151 = $71 >>> 15; - $152 = $151&255; - $153 = ((($s)) + 21|0); - HEAP8[$153>>0] = $152; - $154 = $71 >>> 23; - $155 = $75 << 3; - $156 = $155 | $154; - $157 = $156&255; - $158 = ((($s)) + 22|0); - HEAP8[$158>>0] = $157; - $159 = $75 >>> 5; - $160 = $159&255; - $161 = ((($s)) + 23|0); - HEAP8[$161>>0] = $160; - $162 = $75 >>> 13; - $163 = $162&255; - $164 = ((($s)) + 24|0); - HEAP8[$164>>0] = $163; - $165 = $75 >>> 21; - $166 = $79 << 4; - $167 = $166 | $165; - $168 = $167&255; - $169 = ((($s)) + 25|0); - HEAP8[$169>>0] = $168; - $170 = $79 >>> 4; - $171 = $170&255; - $172 = ((($s)) + 26|0); - HEAP8[$172>>0] = $171; - $173 = $79 >>> 12; - $174 = $173&255; - $175 = ((($s)) + 27|0); - HEAP8[$175>>0] = $174; - $176 = $79 >>> 20; - $177 = $80 << 6; - $178 = $176 | $177; - $179 = $178&255; - $180 = ((($s)) + 28|0); - HEAP8[$180>>0] = $179; - $181 = $77 >>> 2; - $182 = $181&255; - $183 = ((($s)) + 29|0); - HEAP8[$183>>0] = $182; - $184 = $77 >>> 10; - $185 = $184&255; - $186 = ((($s)) + 30|0); - HEAP8[$186>>0] = $185; - $187 = $80 >>> 18; - $188 = $187&255; - $189 = ((($s)) + 31|0); - HEAP8[$189>>0] = $188; - return; -} -function _crypto_sign_ed25519_ref10_ge_add($r,$p,$q) { - $r = $r|0; - $p = $p|0; - $q = $q|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $t0 = 0, label = 0, sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 48|0; - $t0 = sp; - $0 = ((($p)) + 40|0); - _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); - $1 = ((($r)) + 40|0); - _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); - $2 = ((($r)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($2,$r,$q); - $3 = ((($q)) + 40|0); - _crypto_sign_ed25519_ref10_fe_mul($1,$1,$3); - $4 = ((($r)) + 120|0); - $5 = ((($q)) + 120|0); - $6 = ((($p)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); - $7 = ((($p)) + 80|0); - $8 = ((($q)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($r,$7,$8); - _crypto_sign_ed25519_ref10_fe_add($t0,$r,$r); - _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); - _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); - _crypto_sign_ed25519_ref10_fe_add($2,$t0,$4); - _crypto_sign_ed25519_ref10_fe_sub($4,$t0,$4); - STACKTOP = sp;return; -} -function _crypto_sign_ed25519_ref10_ge_double_scalarmult_vartime($r,$a,$A,$b) { - $r = $r|0; - $a = $a|0; - $A = $A|0; - $b = $b|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $5 = 0, $6 = 0, $7 = 0; - var $8 = 0, $9 = 0, $A2 = 0, $Ai = 0, $aslide = 0, $bslide = 0, $i$0$lcssa = 0, $i$02 = 0, $i$11 = 0, $t = 0, $u = 0, label = 0, sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 2272|0; - $aslide = sp + 2016|0; - $bslide = sp + 1760|0; - $Ai = sp + 480|0; - $t = sp + 320|0; - $u = sp + 160|0; - $A2 = sp; - _slide($aslide,$a); - _slide($bslide,$b); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($Ai,$A); - _crypto_sign_ed25519_ref10_ge_p3_dbl($t,$A); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($A2,$t); - _crypto_sign_ed25519_ref10_ge_add($t,$A2,$Ai); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $0 = ((($Ai)) + 160|0); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($0,$u); - _crypto_sign_ed25519_ref10_ge_add($t,$A2,$0); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $1 = ((($Ai)) + 320|0); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($1,$u); - _crypto_sign_ed25519_ref10_ge_add($t,$A2,$1); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $2 = ((($Ai)) + 480|0); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($2,$u); - _crypto_sign_ed25519_ref10_ge_add($t,$A2,$2); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $3 = ((($Ai)) + 640|0); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($3,$u); - _crypto_sign_ed25519_ref10_ge_add($t,$A2,$3); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $4 = ((($Ai)) + 800|0); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($4,$u); - _crypto_sign_ed25519_ref10_ge_add($t,$A2,$4); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $5 = ((($Ai)) + 960|0); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($5,$u); - _crypto_sign_ed25519_ref10_ge_add($t,$A2,$5); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $6 = ((($Ai)) + 1120|0); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($6,$u); - _crypto_sign_ed25519_ref10_ge_p2_0($r); - $i$02 = 255; - while(1) { - $7 = (($aslide) + ($i$02)|0); - $8 = HEAP8[$7>>0]|0; - $9 = ($8<<24>>24)==(0); - if (!($9)) { - $i$0$lcssa = $i$02; - break; - } - $10 = (($bslide) + ($i$02)|0); - $11 = HEAP8[$10>>0]|0; - $12 = ($11<<24>>24)==(0); - if (!($12)) { - $i$0$lcssa = $i$02; - break; + ret += len; + } + return ret; + } catch (e) { + if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); + return -e.errno; } - $14 = (($i$02) + -1)|0; - $15 = ($i$02|0)>(0); - if ($15) { - $i$02 = $14; - } else { - $i$0$lcssa = $14; - break; } - } - $13 = ($i$0$lcssa|0)>(-1); - if ($13) { - $i$11 = $i$0$lcssa; - } else { - STACKTOP = sp;return; - } - while(1) { - _crypto_sign_ed25519_ref10_ge_p2_dbl($t,$r); - $16 = (($aslide) + ($i$11)|0); - $17 = HEAP8[$16>>0]|0; - $18 = ($17<<24>>24)>(0); - if ($18) { - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $19 = HEAP8[$16>>0]|0; - $20 = $19 << 24 >> 24; - $21 = (($20|0) / 2)&-1; - $22 = (($Ai) + (($21*160)|0)|0); - _crypto_sign_ed25519_ref10_ge_add($t,$u,$22); - } else { - $23 = ($17<<24>>24)<(0); - if ($23) { - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $24 = HEAP8[$16>>0]|0; - $25 = $24 << 24 >> 24; - $26 = (($25|0) / -2)&-1; - $27 = (($Ai) + (($26*160)|0)|0); - _crypto_sign_ed25519_ref10_ge_sub($t,$u,$27); - } + + function ___syscall54(which, varargs) {SYSCALLS.varargs = varargs; + try { + // ioctl + return 0; + } catch (e) { + if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); + return -e.errno; } - $28 = (($bslide) + ($i$11)|0); - $29 = HEAP8[$28>>0]|0; - $30 = ($29<<24>>24)>(0); - if ($30) { - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $31 = HEAP8[$28>>0]|0; - $32 = $31 << 24 >> 24; - $33 = (($32|0) / 2)&-1; - $34 = (712 + (($33*120)|0)|0); - _crypto_sign_ed25519_ref10_ge_madd($t,$u,$34); - } else { - $35 = ($29<<24>>24)<(0); - if ($35) { - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $36 = HEAP8[$28>>0]|0; - $37 = $36 << 24 >> 24; - $38 = (($37|0) / -2)&-1; - $39 = (712 + (($38*120)|0)|0); - _crypto_sign_ed25519_ref10_ge_msub($t,$u,$39); - } } - _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($r,$t); - $40 = (($i$11) + -1)|0; - $41 = ($i$11|0)>(0); - if ($41) { - $i$11 = $40; - } else { - break; +/* flush anything remaining in the buffer during shutdown */ __ATEXIT__.push(function() { var fflush = Module["_fflush"]; if (fflush) fflush(0); var printChar = ___syscall146.printChar; if (!printChar) return; var buffers = ___syscall146.buffers; if (buffers[1].length) printChar(1, 10); if (buffers[2].length) printChar(2, 10); });; +DYNAMICTOP_PTR = allocate(1, "i32", ALLOC_STATIC); + +STACK_BASE = STACKTOP = Runtime.alignMemory(STATICTOP); + +STACK_MAX = STACK_BASE + TOTAL_STACK; + +DYNAMIC_BASE = Runtime.alignMemory(STACK_MAX); + +HEAP32[DYNAMICTOP_PTR>>2] = DYNAMIC_BASE; + +staticSealed = true; // seal the static portion of memory + + +function invoke_ii(index,a1) { + try { + return Module["dynCall_ii"](index,a1); + } catch(e) { + if (typeof e !== 'number' && e !== 'longjmp') throw e; + Module["setThrew"](1, 0); } - } - STACKTOP = sp;return; } -function _slide($r,$a) { - $r = $r|0; - $a = $a|0; - var $$lcssa = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0; - var $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $b$03 = 0, $exitcond = 0, $exitcond9 = 0; - var $i$07 = 0, $i$14 = 0, $k$02 = 0, label = 0, sp = 0; - sp = STACKTOP; - $i$07 = 0; - while(1) { - $0 = $i$07 >> 3; - $1 = (($a) + ($0)|0); - $2 = HEAP8[$1>>0]|0; - $3 = $2&255; - $4 = $i$07 & 7; - $5 = $3 >>> $4; - $6 = $5 & 1; - $7 = $6&255; - $8 = (($r) + ($i$07)|0); - HEAP8[$8>>0] = $7; - $9 = (($i$07) + 1)|0; - $exitcond9 = ($9|0)==(256); - if ($exitcond9) { - $i$14 = 0; - break; - } else { - $i$07 = $9; - } - } - while(1) { - $10 = (($r) + ($i$14)|0); - $11 = HEAP8[$10>>0]|0; - $12 = ($11<<24>>24)==(0); - L5: do { - if (!($12)) { - $b$03 = 1; - while(1) { - $13 = (($b$03) + ($i$14))|0; - $14 = ($13|0)<(256); - if (!($14)) { - break L5; - } - $15 = (($r) + ($13)|0); - $16 = HEAP8[$15>>0]|0; - $17 = ($16<<24>>24)==(0); - L9: do { - if (!($17)) { - $18 = HEAP8[$10>>0]|0; - $19 = $18 << 24 >> 24; - $20 = $16 << 24 >> 24; - $21 = $20 << $b$03; - $22 = (($19) + ($21))|0; - $23 = ($22|0)<(16); - if ($23) { - $24 = $22&255; - HEAP8[$10>>0] = $24; - HEAP8[$15>>0] = 0; - break; - } - $25 = (($19) - ($21))|0; - $26 = ($25|0)>(-16); - if (!($26)) { - break L5; - } - $27 = $25&255; - HEAP8[$10>>0] = $27; - $k$02 = $13; - while(1) { - $28 = (($r) + ($k$02)|0); - $29 = HEAP8[$28>>0]|0; - $30 = ($29<<24>>24)==(0); - if ($30) { - $$lcssa = $28; - break; - } - HEAP8[$28>>0] = 0; - $31 = (($k$02) + 1)|0; - $32 = ($31|0)<(256); - if ($32) { - $k$02 = $31; - } else { - break L9; - } - } - HEAP8[$$lcssa>>0] = 1; - } - } while(0); - $33 = (($b$03) + 1)|0; - $34 = ($33|0)<(7); - if ($34) { - $b$03 = $33; - } else { - break; - } - } - } - } while(0); - $35 = (($i$14) + 1)|0; - $exitcond = ($35|0)==(256); - if ($exitcond) { - break; - } else { - $i$14 = $35; + +function invoke_iiii(index,a1,a2,a3) { + try { + return Module["dynCall_iiii"](index,a1,a2,a3); + } catch(e) { + if (typeof e !== 'number' && e !== 'longjmp') throw e; + Module["setThrew"](1, 0); } - } - return; } -function _crypto_sign_ed25519_ref10_ge_frombytes_negate_vartime($h,$s) { - $h = $h|0; - $s = $s|0; - var $$0 = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $check = 0, $u = 0, $v = 0, $v3 = 0, $vxx = 0, label = 0; - var sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 208|0; - $u = sp + 160|0; - $v = sp + 120|0; - $v3 = sp + 80|0; - $vxx = sp + 40|0; - $check = sp; - $0 = ((($h)) + 40|0); - _crypto_sign_ed25519_ref10_fe_frombytes($0,$s); - $1 = ((($h)) + 80|0); - _crypto_sign_ed25519_ref10_fe_1($1); - _crypto_sign_ed25519_ref10_fe_sq($u,$0); - _crypto_sign_ed25519_ref10_fe_mul($v,$u,1672); - _crypto_sign_ed25519_ref10_fe_sub($u,$u,$1); - _crypto_sign_ed25519_ref10_fe_add($v,$v,$1); - _crypto_sign_ed25519_ref10_fe_sq($v3,$v); - _crypto_sign_ed25519_ref10_fe_mul($v3,$v3,$v); - _crypto_sign_ed25519_ref10_fe_sq($h,$v3); - _crypto_sign_ed25519_ref10_fe_mul($h,$h,$v); - _crypto_sign_ed25519_ref10_fe_mul($h,$h,$u); - _crypto_sign_ed25519_ref10_fe_pow22523($h,$h); - _crypto_sign_ed25519_ref10_fe_mul($h,$h,$v3); - _crypto_sign_ed25519_ref10_fe_mul($h,$h,$u); - _crypto_sign_ed25519_ref10_fe_sq($vxx,$h); - _crypto_sign_ed25519_ref10_fe_mul($vxx,$vxx,$v); - _crypto_sign_ed25519_ref10_fe_sub($check,$vxx,$u); - $2 = (_crypto_sign_ed25519_ref10_fe_isnonzero($check)|0); - $3 = ($2|0)==(0); - do { - if (!($3)) { - _crypto_sign_ed25519_ref10_fe_add($check,$vxx,$u); - $4 = (_crypto_sign_ed25519_ref10_fe_isnonzero($check)|0); - $5 = ($4|0)==(0); - if ($5) { - _crypto_sign_ed25519_ref10_fe_mul($h,$h,1712); - break; - } else { - $$0 = -1; - STACKTOP = sp;return ($$0|0); - } - } - } while(0); - $6 = (_crypto_sign_ed25519_ref10_fe_isnegative($h)|0); - $7 = ((($s)) + 31|0); - $8 = HEAP8[$7>>0]|0; - $9 = $8&255; - $10 = $9 >>> 7; - $11 = ($6|0)==($10|0); - if ($11) { - _crypto_sign_ed25519_ref10_fe_neg($h,$h); - } - $12 = ((($h)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($12,$h,$0); - $$0 = 0; - STACKTOP = sp;return ($$0|0); + +Module.asmGlobalArg = { "Math": Math, "Int8Array": Int8Array, "Int16Array": Int16Array, "Int32Array": Int32Array, "Uint8Array": Uint8Array, "Uint16Array": Uint16Array, "Uint32Array": Uint32Array, "Float32Array": Float32Array, "Float64Array": Float64Array, "NaN": NaN, "Infinity": Infinity }; + +Module.asmLibraryArg = { "abort": abort, "assert": assert, "enlargeMemory": enlargeMemory, "getTotalMemory": getTotalMemory, "abortOnCannotGrowMemory": abortOnCannotGrowMemory, "invoke_ii": invoke_ii, "invoke_iiii": invoke_iiii, "___lock": ___lock, "_abort": _abort, "___setErrNo": ___setErrNo, "___syscall6": ___syscall6, "___syscall140": ___syscall140, "___syscall146": ___syscall146, "_emscripten_memcpy_big": _emscripten_memcpy_big, "___syscall54": ___syscall54, "___unlock": ___unlock, "_llvm_stackrestore": _llvm_stackrestore, "_llvm_stacksave": _llvm_stacksave, "DYNAMICTOP_PTR": DYNAMICTOP_PTR, "tempDoublePtr": tempDoublePtr, "ABORT": ABORT, "STACKTOP": STACKTOP, "STACK_MAX": STACK_MAX }; +// EMSCRIPTEN_START_ASM +var asm = (function(global, env, buffer) { +'use asm'; + + + var HEAP8 = new global.Int8Array(buffer); + var HEAP16 = new global.Int16Array(buffer); + var HEAP32 = new global.Int32Array(buffer); + var HEAPU8 = new global.Uint8Array(buffer); + var HEAPU16 = new global.Uint16Array(buffer); + var HEAPU32 = new global.Uint32Array(buffer); + var HEAPF32 = new global.Float32Array(buffer); + var HEAPF64 = new global.Float64Array(buffer); + + var DYNAMICTOP_PTR=env.DYNAMICTOP_PTR|0; + var tempDoublePtr=env.tempDoublePtr|0; + var ABORT=env.ABORT|0; + var STACKTOP=env.STACKTOP|0; + var STACK_MAX=env.STACK_MAX|0; + + var __THREW__ = 0; + var threwValue = 0; + var setjmpId = 0; + var undef = 0; + var nan = global.NaN, inf = global.Infinity; + var tempInt = 0, tempBigInt = 0, tempBigIntS = 0, tempValue = 0, tempDouble = 0.0; + var tempRet0 = 0; + + var Math_floor=global.Math.floor; + var Math_abs=global.Math.abs; + var Math_sqrt=global.Math.sqrt; + var Math_pow=global.Math.pow; + var Math_cos=global.Math.cos; + var Math_sin=global.Math.sin; + var Math_tan=global.Math.tan; + var Math_acos=global.Math.acos; + var Math_asin=global.Math.asin; + var Math_atan=global.Math.atan; + var Math_atan2=global.Math.atan2; + var Math_exp=global.Math.exp; + var Math_log=global.Math.log; + var Math_ceil=global.Math.ceil; + var Math_imul=global.Math.imul; + var Math_min=global.Math.min; + var Math_max=global.Math.max; + var Math_clz32=global.Math.clz32; + var abort=env.abort; + var assert=env.assert; + var enlargeMemory=env.enlargeMemory; + var getTotalMemory=env.getTotalMemory; + var abortOnCannotGrowMemory=env.abortOnCannotGrowMemory; + var invoke_ii=env.invoke_ii; + var invoke_iiii=env.invoke_iiii; + var ___lock=env.___lock; + var _abort=env._abort; + var ___setErrNo=env.___setErrNo; + var ___syscall6=env.___syscall6; + var ___syscall140=env.___syscall140; + var ___syscall146=env.___syscall146; + var _emscripten_memcpy_big=env._emscripten_memcpy_big; + var ___syscall54=env.___syscall54; + var ___unlock=env.___unlock; + var _llvm_stackrestore=env._llvm_stackrestore; + var _llvm_stacksave=env._llvm_stacksave; + var tempFloat = 0.0; + +// EMSCRIPTEN_START_FUNCS + +function stackAlloc(size) { + size = size|0; + var ret = 0; + ret = STACKTOP; + STACKTOP = (STACKTOP + size)|0; + STACKTOP = (STACKTOP + 15)&-16; + + return ret|0; +} +function stackSave() { + return STACKTOP|0; } -function _crypto_sign_ed25519_ref10_ge_madd($r,$p,$q) { - $r = $r|0; - $p = $p|0; - $q = $q|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $t0 = 0, label = 0, sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 48|0; - $t0 = sp; - $0 = ((($p)) + 40|0); - _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); - $1 = ((($r)) + 40|0); - _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); - $2 = ((($r)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($2,$r,$q); - $3 = ((($q)) + 40|0); - _crypto_sign_ed25519_ref10_fe_mul($1,$1,$3); - $4 = ((($r)) + 120|0); - $5 = ((($q)) + 80|0); - $6 = ((($p)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); - $7 = ((($p)) + 80|0); - _crypto_sign_ed25519_ref10_fe_add($t0,$7,$7); - _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); - _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); - _crypto_sign_ed25519_ref10_fe_add($2,$t0,$4); - _crypto_sign_ed25519_ref10_fe_sub($4,$t0,$4); - STACKTOP = sp;return; +function stackRestore(top) { + top = top|0; + STACKTOP = top; } -function _crypto_sign_ed25519_ref10_ge_msub($r,$p,$q) { - $r = $r|0; - $p = $p|0; - $q = $q|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $t0 = 0, label = 0, sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 48|0; - $t0 = sp; - $0 = ((($p)) + 40|0); - _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); - $1 = ((($r)) + 40|0); - _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); - $2 = ((($r)) + 80|0); - $3 = ((($q)) + 40|0); - _crypto_sign_ed25519_ref10_fe_mul($2,$r,$3); - _crypto_sign_ed25519_ref10_fe_mul($1,$1,$q); - $4 = ((($r)) + 120|0); - $5 = ((($q)) + 80|0); - $6 = ((($p)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); - $7 = ((($p)) + 80|0); - _crypto_sign_ed25519_ref10_fe_add($t0,$7,$7); - _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); - _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); - _crypto_sign_ed25519_ref10_fe_sub($2,$t0,$4); - _crypto_sign_ed25519_ref10_fe_add($4,$t0,$4); - STACKTOP = sp;return; +function establishStackSpace(stackBase, stackMax) { + stackBase = stackBase|0; + stackMax = stackMax|0; + STACKTOP = stackBase; + STACK_MAX = stackMax; } -function _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($r,$p) { - $r = $r|0; - $p = $p|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = ((($p)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($r,$p,$0); - $1 = ((($r)) + 40|0); - $2 = ((($p)) + 40|0); - $3 = ((($p)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($1,$2,$3); - $4 = ((($r)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($4,$3,$0); - return; + +function setThrew(threw, value) { + threw = threw|0; + value = value|0; + if ((__THREW__|0) == 0) { + __THREW__ = threw; + threwValue = value; + } } -function _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($r,$p) { - $r = $r|0; - $p = $p|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = ((($p)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($r,$p,$0); - $1 = ((($r)) + 40|0); - $2 = ((($p)) + 40|0); - $3 = ((($p)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($1,$2,$3); - $4 = ((($r)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($4,$3,$0); - $5 = ((($r)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($5,$p,$2); - return; + +function setTempRet0(value) { + value = value|0; + tempRet0 = value; } -function _crypto_sign_ed25519_ref10_ge_p2_0($h) { - $h = $h|0; - var $0 = 0, $1 = 0, label = 0, sp = 0; +function getTempRet0() { + return tempRet0|0; +} + +function _crypto_verify_32_ref($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0; + var $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0; + var $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0; + var $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0; + var $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; sp = STACKTOP; - _crypto_sign_ed25519_ref10_fe_0($h); - $0 = ((($h)) + 40|0); - _crypto_sign_ed25519_ref10_fe_1($0); - $1 = ((($h)) + 80|0); - _crypto_sign_ed25519_ref10_fe_1($1); - return; + $2 = HEAP8[$0>>0]|0; + $3 = HEAP8[$1>>0]|0; + $4 = $3 ^ $2; + $5 = ((($0)) + 1|0); + $6 = HEAP8[$5>>0]|0; + $7 = ((($1)) + 1|0); + $8 = HEAP8[$7>>0]|0; + $9 = $8 ^ $6; + $10 = $9 | $4; + $11 = ((($0)) + 2|0); + $12 = HEAP8[$11>>0]|0; + $13 = ((($1)) + 2|0); + $14 = HEAP8[$13>>0]|0; + $15 = $14 ^ $12; + $16 = $10 | $15; + $17 = ((($0)) + 3|0); + $18 = HEAP8[$17>>0]|0; + $19 = ((($1)) + 3|0); + $20 = HEAP8[$19>>0]|0; + $21 = $20 ^ $18; + $22 = $16 | $21; + $23 = ((($0)) + 4|0); + $24 = HEAP8[$23>>0]|0; + $25 = ((($1)) + 4|0); + $26 = HEAP8[$25>>0]|0; + $27 = $26 ^ $24; + $28 = $22 | $27; + $29 = ((($0)) + 5|0); + $30 = HEAP8[$29>>0]|0; + $31 = ((($1)) + 5|0); + $32 = HEAP8[$31>>0]|0; + $33 = $32 ^ $30; + $34 = $28 | $33; + $35 = ((($0)) + 6|0); + $36 = HEAP8[$35>>0]|0; + $37 = ((($1)) + 6|0); + $38 = HEAP8[$37>>0]|0; + $39 = $38 ^ $36; + $40 = $34 | $39; + $41 = ((($0)) + 7|0); + $42 = HEAP8[$41>>0]|0; + $43 = ((($1)) + 7|0); + $44 = HEAP8[$43>>0]|0; + $45 = $44 ^ $42; + $46 = $40 | $45; + $47 = ((($0)) + 8|0); + $48 = HEAP8[$47>>0]|0; + $49 = ((($1)) + 8|0); + $50 = HEAP8[$49>>0]|0; + $51 = $50 ^ $48; + $52 = $46 | $51; + $53 = ((($0)) + 9|0); + $54 = HEAP8[$53>>0]|0; + $55 = ((($1)) + 9|0); + $56 = HEAP8[$55>>0]|0; + $57 = $56 ^ $54; + $58 = $52 | $57; + $59 = ((($0)) + 10|0); + $60 = HEAP8[$59>>0]|0; + $61 = ((($1)) + 10|0); + $62 = HEAP8[$61>>0]|0; + $63 = $62 ^ $60; + $64 = $58 | $63; + $65 = ((($0)) + 11|0); + $66 = HEAP8[$65>>0]|0; + $67 = ((($1)) + 11|0); + $68 = HEAP8[$67>>0]|0; + $69 = $68 ^ $66; + $70 = $64 | $69; + $71 = ((($0)) + 12|0); + $72 = HEAP8[$71>>0]|0; + $73 = ((($1)) + 12|0); + $74 = HEAP8[$73>>0]|0; + $75 = $74 ^ $72; + $76 = $70 | $75; + $77 = ((($0)) + 13|0); + $78 = HEAP8[$77>>0]|0; + $79 = ((($1)) + 13|0); + $80 = HEAP8[$79>>0]|0; + $81 = $80 ^ $78; + $82 = $76 | $81; + $83 = ((($0)) + 14|0); + $84 = HEAP8[$83>>0]|0; + $85 = ((($1)) + 14|0); + $86 = HEAP8[$85>>0]|0; + $87 = $86 ^ $84; + $88 = $82 | $87; + $89 = ((($0)) + 15|0); + $90 = HEAP8[$89>>0]|0; + $91 = ((($1)) + 15|0); + $92 = HEAP8[$91>>0]|0; + $93 = $92 ^ $90; + $94 = $88 | $93; + $95 = ((($0)) + 16|0); + $96 = HEAP8[$95>>0]|0; + $97 = ((($1)) + 16|0); + $98 = HEAP8[$97>>0]|0; + $99 = $98 ^ $96; + $100 = $94 | $99; + $101 = ((($0)) + 17|0); + $102 = HEAP8[$101>>0]|0; + $103 = ((($1)) + 17|0); + $104 = HEAP8[$103>>0]|0; + $105 = $104 ^ $102; + $106 = $100 | $105; + $107 = ((($0)) + 18|0); + $108 = HEAP8[$107>>0]|0; + $109 = ((($1)) + 18|0); + $110 = HEAP8[$109>>0]|0; + $111 = $110 ^ $108; + $112 = $106 | $111; + $113 = ((($0)) + 19|0); + $114 = HEAP8[$113>>0]|0; + $115 = ((($1)) + 19|0); + $116 = HEAP8[$115>>0]|0; + $117 = $116 ^ $114; + $118 = $112 | $117; + $119 = ((($0)) + 20|0); + $120 = HEAP8[$119>>0]|0; + $121 = ((($1)) + 20|0); + $122 = HEAP8[$121>>0]|0; + $123 = $122 ^ $120; + $124 = $118 | $123; + $125 = ((($0)) + 21|0); + $126 = HEAP8[$125>>0]|0; + $127 = ((($1)) + 21|0); + $128 = HEAP8[$127>>0]|0; + $129 = $128 ^ $126; + $130 = $124 | $129; + $131 = ((($0)) + 22|0); + $132 = HEAP8[$131>>0]|0; + $133 = ((($1)) + 22|0); + $134 = HEAP8[$133>>0]|0; + $135 = $134 ^ $132; + $136 = $130 | $135; + $137 = ((($0)) + 23|0); + $138 = HEAP8[$137>>0]|0; + $139 = ((($1)) + 23|0); + $140 = HEAP8[$139>>0]|0; + $141 = $140 ^ $138; + $142 = $136 | $141; + $143 = ((($0)) + 24|0); + $144 = HEAP8[$143>>0]|0; + $145 = ((($1)) + 24|0); + $146 = HEAP8[$145>>0]|0; + $147 = $146 ^ $144; + $148 = $142 | $147; + $149 = ((($0)) + 25|0); + $150 = HEAP8[$149>>0]|0; + $151 = ((($1)) + 25|0); + $152 = HEAP8[$151>>0]|0; + $153 = $152 ^ $150; + $154 = $148 | $153; + $155 = ((($0)) + 26|0); + $156 = HEAP8[$155>>0]|0; + $157 = ((($1)) + 26|0); + $158 = HEAP8[$157>>0]|0; + $159 = $158 ^ $156; + $160 = $154 | $159; + $161 = ((($0)) + 27|0); + $162 = HEAP8[$161>>0]|0; + $163 = ((($1)) + 27|0); + $164 = HEAP8[$163>>0]|0; + $165 = $164 ^ $162; + $166 = $160 | $165; + $167 = ((($0)) + 28|0); + $168 = HEAP8[$167>>0]|0; + $169 = ((($1)) + 28|0); + $170 = HEAP8[$169>>0]|0; + $171 = $170 ^ $168; + $172 = $166 | $171; + $173 = ((($0)) + 29|0); + $174 = HEAP8[$173>>0]|0; + $175 = ((($1)) + 29|0); + $176 = HEAP8[$175>>0]|0; + $177 = $176 ^ $174; + $178 = $172 | $177; + $179 = ((($0)) + 30|0); + $180 = HEAP8[$179>>0]|0; + $181 = ((($1)) + 30|0); + $182 = HEAP8[$181>>0]|0; + $183 = $182 ^ $180; + $184 = $178 | $183; + $185 = ((($0)) + 31|0); + $186 = HEAP8[$185>>0]|0; + $187 = ((($1)) + 31|0); + $188 = HEAP8[$187>>0]|0; + $189 = $188 ^ $186; + $190 = $184 | $189; + $191 = $190&255; + $192 = (($191) + 511)|0; + $193 = $192 >>> 8; + $194 = $193 & 1; + $195 = (($194) + -1)|0; + return ($195|0); } -function _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$p) { - $r = $r|0; - $p = $p|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $t0 = 0, label = 0, sp = 0; +function _curve25519_sign($0,$1,$2,$3) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + var $$alloca_mul = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, dest = 0, label = 0; + var sp = 0, src = 0, stop = 0; sp = STACKTOP; - STACKTOP = STACKTOP + 48|0; - $t0 = sp; - _crypto_sign_ed25519_ref10_fe_sq($r,$p); - $0 = ((($r)) + 80|0); - $1 = ((($p)) + 40|0); - _crypto_sign_ed25519_ref10_fe_sq($0,$1); - $2 = ((($r)) + 120|0); - $3 = ((($p)) + 80|0); - _crypto_sign_ed25519_ref10_fe_sq2($2,$3); - $4 = ((($r)) + 40|0); - _crypto_sign_ed25519_ref10_fe_add($4,$p,$1); - _crypto_sign_ed25519_ref10_fe_sq($t0,$4); - _crypto_sign_ed25519_ref10_fe_add($4,$0,$r); - _crypto_sign_ed25519_ref10_fe_sub($0,$0,$r); - _crypto_sign_ed25519_ref10_fe_sub($r,$t0,$4); - _crypto_sign_ed25519_ref10_fe_sub($2,$2,$0); + STACKTOP = STACKTOP + 240|0; + $4 = sp + 8|0; + $5 = sp + 168|0; + $6 = sp; + $7 = (($3) + 64)|0; + $8 = (_llvm_stacksave()|0); + $$alloca_mul = $7; + $9 = STACKTOP; STACKTOP = STACKTOP + ((((1*$$alloca_mul)|0)+15)&-16)|0;; + $10 = $6; + $11 = $10; + HEAP32[$11>>2] = 0; + $12 = (($10) + 4)|0; + $13 = $12; + HEAP32[$13>>2] = 0; + dest=$5; src=$1; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _crypto_sign_ed25519_ref10_ge_scalarmult_base($4,$1); + $14 = ((($5)) + 32|0); + _crypto_sign_ed25519_ref10_ge_p3_tobytes($14,$4); + $15 = ((($5)) + 63|0); + $16 = HEAP8[$15>>0]|0; + $17 = $16 & -128; + (_crypto_sign_modified($9,$6,$2,$3,0,$5)|0); + dest=$0; src=$9; stop=dest+64|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $18 = ((($0)) + 63|0); + $19 = HEAP8[$18>>0]|0; + $20 = $19 | $17; + HEAP8[$18>>0] = $20; + _llvm_stackrestore(($8|0)); STACKTOP = sp;return; } -function _crypto_sign_ed25519_ref10_ge_p3_0($h) { - $h = $h|0; - var $0 = 0, $1 = 0, $2 = 0, label = 0, sp = 0; +function _curve25519_verify($0,$1,$2,$3) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + var $$alloca_mul = 0, $$alloca_mul9 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $4 = 0, $5 = 0, $6 = 0; + var $7 = 0, $8 = 0, $9 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; sp = STACKTOP; - _crypto_sign_ed25519_ref10_fe_0($h); - $0 = ((($h)) + 40|0); - _crypto_sign_ed25519_ref10_fe_1($0); - $1 = ((($h)) + 80|0); - _crypto_sign_ed25519_ref10_fe_1($1); - $2 = ((($h)) + 120|0); - _crypto_sign_ed25519_ref10_fe_0($2); - return; + STACKTOP = STACKTOP + 288|0; + $4 = sp + 208|0; + $5 = sp + 168|0; + $6 = sp + 128|0; + $7 = sp + 88|0; + $8 = sp + 48|0; + $9 = sp + 8|0; + $10 = sp + 248|0; + $11 = sp; + $12 = (($3) + 64)|0; + $13 = (_llvm_stacksave()|0); + $$alloca_mul = $12; + $14 = STACKTOP; STACKTOP = STACKTOP + ((((1*$$alloca_mul)|0)+15)&-16)|0;; + $$alloca_mul9 = $12; + $15 = STACKTOP; STACKTOP = STACKTOP + ((((1*$$alloca_mul9)|0)+15)&-16)|0;; + _crypto_sign_ed25519_ref10_fe_frombytes($4,$1); + _crypto_sign_ed25519_ref10_fe_1($8); + _crypto_sign_ed25519_ref10_fe_sub($5,$4,$8); + _crypto_sign_ed25519_ref10_fe_add($6,$4,$8); + _crypto_sign_ed25519_ref10_fe_invert($7,$6); + _crypto_sign_ed25519_ref10_fe_mul($9,$5,$7); + _crypto_sign_ed25519_ref10_fe_tobytes($10,$9); + $16 = ((($0)) + 63|0); + $17 = HEAP8[$16>>0]|0; + $18 = $17 & -128; + $19 = ((($10)) + 31|0); + $20 = HEAP8[$19>>0]|0; + $21 = $20 | $18; + HEAP8[$19>>0] = $21; + $22 = $17 & 127; + HEAP8[$16>>0] = $22; + dest=$14; src=$0; stop=dest+64|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $23 = ((($14)) + 64|0); + _memcpy(($23|0),($2|0),($3|0))|0; + $24 = (_crypto_sign_edwards25519sha512batch_ref10_open($15,$11,$14,$12,0,$10)|0); + _llvm_stackrestore(($13|0)); + STACKTOP = sp;return ($24|0); } -function _crypto_sign_ed25519_ref10_ge_p3_dbl($r,$p) { - $r = $r|0; - $p = $p|0; - var $q = 0, label = 0, sp = 0; +function _crypto_hash_sha512_ref($0,$1,$2,$3) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + var $4 = 0, label = 0, sp = 0; sp = STACKTOP; - STACKTOP = STACKTOP + 128|0; - $q = sp; - _crypto_sign_ed25519_ref10_ge_p3_to_p2($q,$p); - _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$q); - STACKTOP = sp;return; + STACKTOP = STACKTOP + 208|0; + $4 = sp; + _sph_sha512_init($4); + _sph_sha384($4,$1,$2); + _sph_sha512_close($4,$0); + STACKTOP = sp;return 0; } -function _crypto_sign_ed25519_ref10_ge_p3_to_cached($r,$p) { - $r = $r|0; - $p = $p|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, label = 0, sp = 0; +function _crypto_sign_modified($0,$1,$2,$3,$4,$5) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + $4 = $4|0; + $5 = $5|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; sp = STACKTOP; - $0 = ((($p)) + 40|0); - _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); - $1 = ((($r)) + 40|0); - _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); - $2 = ((($r)) + 80|0); - $3 = ((($p)) + 80|0); - _crypto_sign_ed25519_ref10_fe_copy($2,$3); - $4 = ((($r)) + 120|0); - $5 = ((($p)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($4,$5,1752); - return; + STACKTOP = STACKTOP + 320|0; + $6 = sp + 288|0; + $7 = sp + 224|0; + $8 = sp + 160|0; + $9 = sp; + $10 = ((($5)) + 32|0); + dest=$6; src=$10; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $11 = (_i64Add(($3|0),($4|0),64,0)|0); + $12 = tempRet0; + $13 = $1; + $14 = $13; + HEAP32[$14>>2] = $11; + $15 = (($13) + 4)|0; + $16 = $15; + HEAP32[$16>>2] = $12; + $17 = ((($0)) + 64|0); + _memmove(($17|0),($2|0),($3|0))|0; + $18 = ((($0)) + 32|0); + _memmove(($18|0),($5|0),32)|0; + $19 = (_i64Add(($3|0),($4|0),32,0)|0); + $20 = tempRet0; + (_crypto_hash_sha512_ref($7,$18,$19,$20)|0); + dest=$18; src=$6; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _crypto_sign_ed25519_ref10_sc_reduce($7); + _crypto_sign_ed25519_ref10_ge_scalarmult_base($9,$7); + _crypto_sign_ed25519_ref10_ge_p3_tobytes($0,$9); + (_crypto_hash_sha512_ref($8,$0,$11,$12)|0); + _crypto_sign_ed25519_ref10_sc_reduce($8); + _crypto_sign_ed25519_ref10_sc_muladd($18,$8,$5,$7); + STACKTOP = sp;return 0; } -function _crypto_sign_ed25519_ref10_ge_p3_to_p2($r,$p) { - $r = $r|0; - $p = $p|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, label = 0, sp = 0; +function _curve25519_donna($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; sp = STACKTOP; - _crypto_sign_ed25519_ref10_fe_copy($r,$p); - $0 = ((($r)) + 40|0); - $1 = ((($p)) + 40|0); - _crypto_sign_ed25519_ref10_fe_copy($0,$1); - $2 = ((($r)) + 80|0); - $3 = ((($p)) + 80|0); - _crypto_sign_ed25519_ref10_fe_copy($2,$3); - return; + STACKTOP = STACKTOP + 368|0; + $3 = sp + 248|0; + $4 = sp + 168|0; + $5 = sp + 80|0; + $6 = sp; + $7 = sp + 328|0; + dest=$7; src=$1; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _fexpand($3,$2); + _cmult($4,$5,$7,$3); + _crecip($6,$5); + _fmul($5,$4,$6); + _fcontract($0,$5); + STACKTOP = sp;return 0; } -function _crypto_sign_ed25519_ref10_ge_p3_tobytes($s,$h) { - $s = $s|0; - $h = $h|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $recip = 0, $x = 0, $y = 0, label = 0, sp = 0; +function _fexpand($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0; + var $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0; + var $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0; + var $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0; + var $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0; + var $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $3 = 0, $30 = 0, $31 = 0; + var $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0; + var $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0; + var $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0; + var $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; sp = STACKTOP; - STACKTOP = STACKTOP + 128|0; - $recip = sp + 80|0; - $x = sp + 40|0; - $y = sp; - $0 = ((($h)) + 80|0); - _crypto_sign_ed25519_ref10_fe_invert($recip,$0); - _crypto_sign_ed25519_ref10_fe_mul($x,$h,$recip); - $1 = ((($h)) + 40|0); - _crypto_sign_ed25519_ref10_fe_mul($y,$1,$recip); - _crypto_sign_ed25519_ref10_fe_tobytes($s,$y); - $2 = (_crypto_sign_ed25519_ref10_fe_isnegative($x)|0); - $3 = $2 << 7; - $4 = ((($s)) + 31|0); + $2 = HEAP8[$1>>0]|0; + $3 = $2&255; + $4 = ((($1)) + 1|0); $5 = HEAP8[$4>>0]|0; $6 = $5&255; - $7 = $6 ^ $3; - $8 = $7&255; - HEAP8[$4>>0] = $8; - STACKTOP = sp;return; -} -function _crypto_sign_ed25519_ref10_ge_precomp_0($h) { - $h = $h|0; - var $0 = 0, $1 = 0, label = 0, sp = 0; - sp = STACKTOP; - _crypto_sign_ed25519_ref10_fe_1($h); - $0 = ((($h)) + 40|0); - _crypto_sign_ed25519_ref10_fe_1($0); - $1 = ((($h)) + 80|0); - _crypto_sign_ed25519_ref10_fe_0($1); + $7 = (_bitshift64Shl(($6|0),0,8)|0); + $8 = tempRet0; + $9 = $7 | $3; + $10 = ((($1)) + 2|0); + $11 = HEAP8[$10>>0]|0; + $12 = $11&255; + $13 = (_bitshift64Shl(($12|0),0,16)|0); + $14 = tempRet0; + $15 = $9 | $13; + $16 = $8 | $14; + $17 = ((($1)) + 3|0); + $18 = HEAP8[$17>>0]|0; + $19 = $18&255; + $20 = (_bitshift64Shl(($19|0),0,24)|0); + $21 = tempRet0; + $22 = $20 & 50331648; + $23 = $15 | $22; + $24 = $0; + $25 = $24; + HEAP32[$25>>2] = $23; + $26 = (($24) + 4)|0; + $27 = $26; + HEAP32[$27>>2] = $16; + $28 = HEAP8[$17>>0]|0; + $29 = $28&255; + $30 = ((($1)) + 4|0); + $31 = HEAP8[$30>>0]|0; + $32 = $31&255; + $33 = (_bitshift64Shl(($32|0),0,8)|0); + $34 = tempRet0; + $35 = $33 | $29; + $36 = ((($1)) + 5|0); + $37 = HEAP8[$36>>0]|0; + $38 = $37&255; + $39 = (_bitshift64Shl(($38|0),0,16)|0); + $40 = tempRet0; + $41 = $35 | $39; + $42 = $34 | $40; + $43 = ((($1)) + 6|0); + $44 = HEAP8[$43>>0]|0; + $45 = $44&255; + $46 = (_bitshift64Shl(($45|0),0,24)|0); + $47 = tempRet0; + $48 = $41 | $46; + $49 = $42 | $47; + $50 = (_bitshift64Lshr(($48|0),($49|0),2)|0); + $51 = tempRet0; + $52 = $50 & 33554431; + $53 = ((($0)) + 8|0); + $54 = $53; + $55 = $54; + HEAP32[$55>>2] = $52; + $56 = (($54) + 4)|0; + $57 = $56; + HEAP32[$57>>2] = 0; + $58 = HEAP8[$43>>0]|0; + $59 = $58&255; + $60 = ((($1)) + 7|0); + $61 = HEAP8[$60>>0]|0; + $62 = $61&255; + $63 = (_bitshift64Shl(($62|0),0,8)|0); + $64 = tempRet0; + $65 = $63 | $59; + $66 = ((($1)) + 8|0); + $67 = HEAP8[$66>>0]|0; + $68 = $67&255; + $69 = (_bitshift64Shl(($68|0),0,16)|0); + $70 = tempRet0; + $71 = $65 | $69; + $72 = $64 | $70; + $73 = ((($1)) + 9|0); + $74 = HEAP8[$73>>0]|0; + $75 = $74&255; + $76 = (_bitshift64Shl(($75|0),0,24)|0); + $77 = tempRet0; + $78 = $71 | $76; + $79 = $72 | $77; + $80 = (_bitshift64Lshr(($78|0),($79|0),3)|0); + $81 = tempRet0; + $82 = $80 & 67108863; + $83 = ((($0)) + 16|0); + $84 = $83; + $85 = $84; + HEAP32[$85>>2] = $82; + $86 = (($84) + 4)|0; + $87 = $86; + HEAP32[$87>>2] = 0; + $88 = HEAP8[$73>>0]|0; + $89 = $88&255; + $90 = ((($1)) + 10|0); + $91 = HEAP8[$90>>0]|0; + $92 = $91&255; + $93 = (_bitshift64Shl(($92|0),0,8)|0); + $94 = tempRet0; + $95 = $93 | $89; + $96 = ((($1)) + 11|0); + $97 = HEAP8[$96>>0]|0; + $98 = $97&255; + $99 = (_bitshift64Shl(($98|0),0,16)|0); + $100 = tempRet0; + $101 = $95 | $99; + $102 = $94 | $100; + $103 = ((($1)) + 12|0); + $104 = HEAP8[$103>>0]|0; + $105 = $104&255; + $106 = (_bitshift64Shl(($105|0),0,24)|0); + $107 = tempRet0; + $108 = $101 | $106; + $109 = $102 | $107; + $110 = (_bitshift64Lshr(($108|0),($109|0),5)|0); + $111 = tempRet0; + $112 = $110 & 33554431; + $113 = ((($0)) + 24|0); + $114 = $113; + $115 = $114; + HEAP32[$115>>2] = $112; + $116 = (($114) + 4)|0; + $117 = $116; + HEAP32[$117>>2] = 0; + $118 = HEAP8[$103>>0]|0; + $119 = $118&255; + $120 = ((($1)) + 13|0); + $121 = HEAP8[$120>>0]|0; + $122 = $121&255; + $123 = (_bitshift64Shl(($122|0),0,8)|0); + $124 = tempRet0; + $125 = $123 | $119; + $126 = ((($1)) + 14|0); + $127 = HEAP8[$126>>0]|0; + $128 = $127&255; + $129 = (_bitshift64Shl(($128|0),0,16)|0); + $130 = tempRet0; + $131 = $125 | $129; + $132 = $124 | $130; + $133 = ((($1)) + 15|0); + $134 = HEAP8[$133>>0]|0; + $135 = $134&255; + $136 = (_bitshift64Shl(($135|0),0,24)|0); + $137 = tempRet0; + $138 = $131 | $136; + $139 = $132 | $137; + $140 = (_bitshift64Lshr(($138|0),($139|0),6)|0); + $141 = tempRet0; + $142 = $140 & 67108863; + $143 = ((($0)) + 32|0); + $144 = $143; + $145 = $144; + HEAP32[$145>>2] = $142; + $146 = (($144) + 4)|0; + $147 = $146; + HEAP32[$147>>2] = 0; + $148 = ((($1)) + 16|0); + $149 = HEAP8[$148>>0]|0; + $150 = $149&255; + $151 = ((($1)) + 17|0); + $152 = HEAP8[$151>>0]|0; + $153 = $152&255; + $154 = (_bitshift64Shl(($153|0),0,8)|0); + $155 = tempRet0; + $156 = $154 | $150; + $157 = ((($1)) + 18|0); + $158 = HEAP8[$157>>0]|0; + $159 = $158&255; + $160 = (_bitshift64Shl(($159|0),0,16)|0); + $161 = tempRet0; + $162 = $156 | $160; + $163 = $155 | $161; + $164 = ((($1)) + 19|0); + $165 = HEAP8[$164>>0]|0; + $166 = $165&255; + $167 = (_bitshift64Shl(($166|0),0,24)|0); + $168 = tempRet0; + $169 = $167 & 16777216; + $170 = $162 | $169; + $171 = ((($0)) + 40|0); + $172 = $171; + $173 = $172; + HEAP32[$173>>2] = $170; + $174 = (($172) + 4)|0; + $175 = $174; + HEAP32[$175>>2] = $163; + $176 = HEAP8[$164>>0]|0; + $177 = $176&255; + $178 = ((($1)) + 20|0); + $179 = HEAP8[$178>>0]|0; + $180 = $179&255; + $181 = (_bitshift64Shl(($180|0),0,8)|0); + $182 = tempRet0; + $183 = $181 | $177; + $184 = ((($1)) + 21|0); + $185 = HEAP8[$184>>0]|0; + $186 = $185&255; + $187 = (_bitshift64Shl(($186|0),0,16)|0); + $188 = tempRet0; + $189 = $183 | $187; + $190 = $182 | $188; + $191 = ((($1)) + 22|0); + $192 = HEAP8[$191>>0]|0; + $193 = $192&255; + $194 = (_bitshift64Shl(($193|0),0,24)|0); + $195 = tempRet0; + $196 = $189 | $194; + $197 = $190 | $195; + $198 = (_bitshift64Lshr(($196|0),($197|0),1)|0); + $199 = tempRet0; + $200 = $198 & 67108863; + $201 = ((($0)) + 48|0); + $202 = $201; + $203 = $202; + HEAP32[$203>>2] = $200; + $204 = (($202) + 4)|0; + $205 = $204; + HEAP32[$205>>2] = 0; + $206 = HEAP8[$191>>0]|0; + $207 = $206&255; + $208 = ((($1)) + 23|0); + $209 = HEAP8[$208>>0]|0; + $210 = $209&255; + $211 = (_bitshift64Shl(($210|0),0,8)|0); + $212 = tempRet0; + $213 = $211 | $207; + $214 = ((($1)) + 24|0); + $215 = HEAP8[$214>>0]|0; + $216 = $215&255; + $217 = (_bitshift64Shl(($216|0),0,16)|0); + $218 = tempRet0; + $219 = $213 | $217; + $220 = $212 | $218; + $221 = ((($1)) + 25|0); + $222 = HEAP8[$221>>0]|0; + $223 = $222&255; + $224 = (_bitshift64Shl(($223|0),0,24)|0); + $225 = tempRet0; + $226 = $219 | $224; + $227 = $220 | $225; + $228 = (_bitshift64Lshr(($226|0),($227|0),3)|0); + $229 = tempRet0; + $230 = $228 & 33554431; + $231 = ((($0)) + 56|0); + $232 = $231; + $233 = $232; + HEAP32[$233>>2] = $230; + $234 = (($232) + 4)|0; + $235 = $234; + HEAP32[$235>>2] = 0; + $236 = HEAP8[$221>>0]|0; + $237 = $236&255; + $238 = ((($1)) + 26|0); + $239 = HEAP8[$238>>0]|0; + $240 = $239&255; + $241 = (_bitshift64Shl(($240|0),0,8)|0); + $242 = tempRet0; + $243 = $241 | $237; + $244 = ((($1)) + 27|0); + $245 = HEAP8[$244>>0]|0; + $246 = $245&255; + $247 = (_bitshift64Shl(($246|0),0,16)|0); + $248 = tempRet0; + $249 = $243 | $247; + $250 = $242 | $248; + $251 = ((($1)) + 28|0); + $252 = HEAP8[$251>>0]|0; + $253 = $252&255; + $254 = (_bitshift64Shl(($253|0),0,24)|0); + $255 = tempRet0; + $256 = $249 | $254; + $257 = $250 | $255; + $258 = (_bitshift64Lshr(($256|0),($257|0),4)|0); + $259 = tempRet0; + $260 = $258 & 67108863; + $261 = ((($0)) + 64|0); + $262 = $261; + $263 = $262; + HEAP32[$263>>2] = $260; + $264 = (($262) + 4)|0; + $265 = $264; + HEAP32[$265>>2] = 0; + $266 = HEAP8[$251>>0]|0; + $267 = $266&255; + $268 = ((($1)) + 29|0); + $269 = HEAP8[$268>>0]|0; + $270 = $269&255; + $271 = (_bitshift64Shl(($270|0),0,8)|0); + $272 = tempRet0; + $273 = $271 | $267; + $274 = ((($1)) + 30|0); + $275 = HEAP8[$274>>0]|0; + $276 = $275&255; + $277 = (_bitshift64Shl(($276|0),0,16)|0); + $278 = tempRet0; + $279 = $273 | $277; + $280 = $272 | $278; + $281 = ((($1)) + 31|0); + $282 = HEAP8[$281>>0]|0; + $283 = $282&255; + $284 = (_bitshift64Shl(($283|0),0,24)|0); + $285 = tempRet0; + $286 = $279 | $284; + $287 = $280 | $285; + $288 = (_bitshift64Lshr(($286|0),($287|0),6)|0); + $289 = tempRet0; + $290 = $288 & 33554431; + $291 = ((($0)) + 72|0); + $292 = $291; + $293 = $292; + HEAP32[$293>>2] = $290; + $294 = (($292) + 4)|0; + $295 = $294; + HEAP32[$295>>2] = 0; return; } -function _crypto_sign_ed25519_ref10_ge_scalarmult_base($h,$a) { - $h = $h|0; - $a = $a|0; - var $$lcssa = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0; - var $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $carry$04 = 0, $e = 0, $exitcond = 0; - var $exitcond7 = 0, $i$06 = 0, $i$15 = 0, $i$23 = 0, $i$32 = 0, $r = 0, $s = 0, $sext = 0, $sext1 = 0, $t = 0, label = 0, sp = 0; +function _cmult($0,$1,$2,$3) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + var $$0104 = 0, $$06994 = 0, $$07093 = 0, $$071103 = 0, $$072102 = 0, $$074101 = 0, $$076100 = 0, $$07899 = 0, $$08098 = 0, $$08297 = 0, $$08496 = 0, $$17392 = 0, $$17392$phi = 0, $$17591 = 0, $$17591$phi = 0, $$17790 = 0, $$17790$phi = 0, $$17989 = 0, $$17989$phi = 0, $$18188 = 0; + var $$18188$phi = 0, $$18387 = 0, $$18387$phi = 0, $$18586 = 0, $$18586$phi = 0, $$195 = 0, $$195$phi = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0; + var $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0; + var $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $exitcond = 0, $exitcond105 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; sp = STACKTOP; - STACKTOP = STACKTOP + 464|0; - $e = sp + 400|0; - $r = sp + 240|0; - $s = sp + 120|0; - $t = sp; - $i$06 = 0; + STACKTOP = STACKTOP + 1216|0; + $4 = sp + 1064|0; + $5 = sp + 912|0; + $6 = sp + 760|0; + $7 = sp + 608|0; + $8 = sp + 456|0; + $9 = sp + 304|0; + $10 = sp + 152|0; + $11 = sp; + $12 = ((($5)) + 8|0); + _memset(($12|0),0,144)|0; + $13 = $5; + $14 = $13; + HEAP32[$14>>2] = 1; + $15 = (($13) + 4)|0; + $16 = $15; + HEAP32[$16>>2] = 0; + $17 = ((($6)) + 8|0); + _memset(($17|0),0,144)|0; + $18 = $6; + $19 = $18; + HEAP32[$19>>2] = 1; + $20 = (($18) + 4)|0; + $21 = $20; + HEAP32[$21>>2] = 0; + _memset(($7|0),0,152)|0; + _memset(($8|0),0,152)|0; + $22 = ((($9)) + 8|0); + _memset(($22|0),0,144)|0; + $23 = $9; + $24 = $23; + HEAP32[$24>>2] = 1; + $25 = (($23) + 4)|0; + $26 = $25; + HEAP32[$26>>2] = 0; + _memset(($10|0),0,152)|0; + $27 = ((($11)) + 8|0); + _memset(($27|0),0,144)|0; + $28 = $11; + $29 = $28; + HEAP32[$29>>2] = 1; + $30 = (($28) + 4)|0; + $31 = $30; + HEAP32[$31>>2] = 0; + $32 = ((($4)) + 80|0); + dest=$32; stop=dest+72|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); + dest=$4; src=$3; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + $$0104 = $4;$$071103 = 0;$$072102 = $11;$$074101 = $10;$$076100 = $9;$$07899 = $8;$$08098 = $5;$$08297 = $7;$$08496 = $6; while(1) { - $0 = (($a) + ($i$06)|0); - $1 = HEAP8[$0>>0]|0; - $2 = $1&255; - $3 = $2 & 15; - $4 = $3&255; - $5 = $i$06 << 1; - $6 = (($e) + ($5)|0); - HEAP8[$6>>0] = $4; - $7 = HEAP8[$0>>0]|0; - $8 = ($7&255) >>> 4; - $9 = $5 | 1; - $10 = (($e) + ($9)|0); - HEAP8[$10>>0] = $8; - $11 = (($i$06) + 1)|0; - $exitcond7 = ($11|0)==(32); - if ($exitcond7) { - $carry$04 = 0;$i$15 = 0; + $33 = (31 - ($$071103))|0; + $34 = (($2) + ($33)|0); + $35 = HEAP8[$34>>0]|0; + $$06994 = $35;$$07093 = 0;$$17392 = $$072102;$$17591 = $$074101;$$17790 = $$076100;$$17989 = $$07899;$$18188 = $$08098;$$18387 = $$08297;$$18586 = $$08496;$$195 = $$0104; + while(1) { + $36 = $$06994&255; + $37 = $36 >>> 7; + _swap_conditional($$18586,$$195,$37,0); + _swap_conditional($$18387,$$18188,$37,0); + _fmonty($$17591,$$17392,$$17989,$$17790,$$18586,$$18387,$$195,$$18188,$3); + _swap_conditional($$17591,$$17989,$37,0); + _swap_conditional($$17392,$$17790,$37,0); + $38 = $36 << 1; + $39 = $38&255; + $40 = (($$07093) + 1)|0; + $exitcond = ($40|0)==(8); + if ($exitcond) { + break; + } else { + $$195$phi = $$17989;$$18586$phi = $$17591;$$18387$phi = $$17392;$$18188$phi = $$17790;$$17989$phi = $$195;$$17790$phi = $$18188;$$17591$phi = $$18586;$$17392$phi = $$18387;$$06994 = $39;$$07093 = $40;$$195 = $$195$phi;$$18586 = $$18586$phi;$$18387 = $$18387$phi;$$18188 = $$18188$phi;$$17989 = $$17989$phi;$$17790 = $$17790$phi;$$17591 = $$17591$phi;$$17392 = $$17392$phi; + } + } + $41 = (($$071103) + 1)|0; + $exitcond105 = ($41|0)==(32); + if ($exitcond105) { break; } else { - $i$06 = $11; + $$0104 = $$17989;$$071103 = $41;$$072102 = $$18387;$$074101 = $$18586;$$076100 = $$18188;$$07899 = $$195;$$08098 = $$17790;$$08297 = $$17392;$$08496 = $$17591; } } + dest=$0; src=$$17591; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + dest=$1; src=$$17392; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + STACKTOP = sp;return; +} +function _crecip($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$317 = 0, $$416 = 0, $$515 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0; + var sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 800|0; + $2 = sp + 720|0; + $3 = sp + 640|0; + $4 = sp + 560|0; + $5 = sp + 480|0; + $6 = sp + 400|0; + $7 = sp + 320|0; + $8 = sp + 240|0; + $9 = sp + 160|0; + $10 = sp + 80|0; + $11 = sp; + _fsquare($2,$1); + _fsquare($11,$2); + _fsquare($10,$11); + _fmul($3,$10,$1); + _fmul($4,$3,$2); + _fsquare($10,$4); + _fmul($5,$10,$3); + _fsquare($10,$5); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fmul($6,$10,$5); + _fsquare($10,$6); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fmul($7,$11,$6); + _fsquare($10,$7); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fmul($10,$11,$7); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fmul($8,$10,$6); + _fsquare($10,$8); + _fsquare($11,$10); + $$317 = 2; while(1) { - $12 = (($e) + ($i$15)|0); - $13 = HEAP8[$12>>0]|0; - $14 = $13&255; - $15 = (($14) + ($carry$04))|0; - $sext = $15 << 24; - $sext1 = (($sext) + 134217728)|0; - $16 = $sext1 >> 28; - $17 = $16 << 4; - $18 = (($15) - ($17))|0; - $19 = $18&255; - HEAP8[$12>>0] = $19; - $20 = (($i$15) + 1)|0; - $exitcond = ($20|0)==(63); - if ($exitcond) { - $$lcssa = $16; - break; + _fsquare($10,$11); + _fsquare($11,$10); + $12 = (($$317) + 2)|0; + $13 = ($12|0)<(50); + if ($13) { + $$317 = $12; } else { - $carry$04 = $16;$i$15 = $20; + break; } } - $21 = ((($e)) + 63|0); - $22 = HEAP8[$21>>0]|0; - $23 = $22&255; - $24 = (($23) + ($$lcssa))|0; - $25 = $24&255; - HEAP8[$21>>0] = $25; - _crypto_sign_ed25519_ref10_ge_p3_0($h); - $i$23 = 1; + _fmul($9,$11,$8); + _fsquare($11,$9); + _fsquare($10,$11); + $$416 = 2; while(1) { - $26 = (($i$23|0) / 2)&-1; - $27 = (($e) + ($i$23)|0); - $28 = HEAP8[$27>>0]|0; - _select60($t,$26,$28); - _crypto_sign_ed25519_ref10_ge_madd($r,$h,$t); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($h,$r); - $29 = (($i$23) + 2)|0; - $30 = ($29|0)<(64); - if ($30) { - $i$23 = $29; + _fsquare($11,$10); + _fsquare($10,$11); + $14 = (($$416) + 2)|0; + $15 = ($14|0)<(100); + if ($15) { + $$416 = $14; } else { break; } } - _crypto_sign_ed25519_ref10_ge_p3_dbl($r,$h); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($s,$r); - _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$s); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($s,$r); - _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$s); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($s,$r); - _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$s); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($h,$r); - $i$32 = 0; + _fmul($11,$10,$9); + _fsquare($10,$11); + _fsquare($11,$10); + $$515 = 2; while(1) { - $31 = (($i$32|0) / 2)&-1; - $32 = (($e) + ($i$32)|0); - $33 = HEAP8[$32>>0]|0; - _select60($t,$31,$33); - _crypto_sign_ed25519_ref10_ge_madd($r,$h,$t); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($h,$r); - $34 = (($i$32) + 2)|0; - $35 = ($34|0)<(64); - if ($35) { - $i$32 = $34; + _fsquare($10,$11); + _fsquare($11,$10); + $16 = (($$515) + 2)|0; + $17 = ($16|0)<(50); + if ($17) { + $$515 = $16; } else { break; } } + _fmul($10,$11,$8); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fmul($0,$11,$4); STACKTOP = sp;return; } -function _select60($t,$pos,$b) { - $t = $t|0; - $pos = $pos|0; - $b = $b|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $minust = 0, label = 0, sp = 0; +function _fmul($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $3 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; sp = STACKTOP; - STACKTOP = STACKTOP + 128|0; - $minust = sp; - $0 = (_negative($b)|0); - $1 = $b << 24 >> 24; - $2 = $0&255; - $3 = (0 - ($2))|0; - $4 = $1 & $3; - $5 = $4 << 1; - $6 = (($1) - ($5))|0; - $7 = $6&255; - _crypto_sign_ed25519_ref10_ge_precomp_0($t); - $8 = (1792 + (($pos*960)|0)|0); - $9 = (_equal($7,1)|0); - _cmov($t,$8,$9); - $10 = (((1792 + (($pos*960)|0)|0)) + 120|0); - $11 = (_equal($7,2)|0); - _cmov($t,$10,$11); - $12 = (((1792 + (($pos*960)|0)|0)) + 240|0); - $13 = (_equal($7,3)|0); - _cmov($t,$12,$13); - $14 = (((1792 + (($pos*960)|0)|0)) + 360|0); - $15 = (_equal($7,4)|0); - _cmov($t,$14,$15); - $16 = (((1792 + (($pos*960)|0)|0)) + 480|0); - $17 = (_equal($7,5)|0); - _cmov($t,$16,$17); - $18 = (((1792 + (($pos*960)|0)|0)) + 600|0); - $19 = (_equal($7,6)|0); - _cmov($t,$18,$19); - $20 = (((1792 + (($pos*960)|0)|0)) + 720|0); - $21 = (_equal($7,7)|0); - _cmov($t,$20,$21); - $22 = (((1792 + (($pos*960)|0)|0)) + 840|0); - $23 = (_equal($7,8)|0); - _cmov($t,$22,$23); - $24 = ((($t)) + 40|0); - _crypto_sign_ed25519_ref10_fe_copy($minust,$24); - $25 = ((($minust)) + 40|0); - _crypto_sign_ed25519_ref10_fe_copy($25,$t); - $26 = ((($minust)) + 80|0); - $27 = ((($t)) + 80|0); - _crypto_sign_ed25519_ref10_fe_neg($26,$27); - _cmov($t,$minust,$0); + STACKTOP = STACKTOP + 160|0; + $3 = sp; + _fproduct($3,$1,$2); + _freduce_degree($3); + _freduce_coefficients($3); + dest=$0; src=$3; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); STACKTOP = sp;return; } -function _negative($b) { - $b = $b|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = $b << 24 >> 24; - $1 = ($0|0)<(0); - $2 = $1 << 31 >> 31; - $3 = (_bitshift64Lshr(($0|0),($2|0),63)|0); - $4 = tempRet0; - $5 = $3&255; - return ($5|0); -} -function _equal($b,$c) { - $b = $b|0; - $c = $c|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = $c ^ $b; - $1 = $0&255; - $2 = (($1) + -1)|0; - $3 = $2 >>> 31; - $4 = $3&255; - return ($4|0); -} -function _cmov($t,$u,$b) { - $t = $t|0; - $u = $u|0; - $b = $b|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = $b&255; - _crypto_sign_ed25519_ref10_fe_cmov($t,$u,$0); - $1 = ((($t)) + 40|0); - $2 = ((($u)) + 40|0); - _crypto_sign_ed25519_ref10_fe_cmov($1,$2,$0); - $3 = ((($t)) + 80|0); - $4 = ((($u)) + 80|0); - _crypto_sign_ed25519_ref10_fe_cmov($3,$4,$0); - return; -} -function _crypto_sign_ed25519_ref10_ge_sub($r,$p,$q) { - $r = $r|0; - $p = $p|0; - $q = $q|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $t0 = 0, label = 0, sp = 0; +function _fcontract($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$0135149 = 0, $$1136 = 0, $$3150 = 0, $$promoted = 0, $$promoted163 = 0, $$promoted165 = 0, $$promoted167 = 0, $$promoted169 = 0, $$promoted171 = 0, $$promoted173 = 0, $$promoted175 = 0, $$promoted177 = 0, $$promoted179 = 0, $$sink141 = 0, $$sink141$1 = 0, $$sink141$1$1 = 0, $$sink141$1199 = 0, $$sink141$2 = 0, $$sink141$2$1 = 0, $$sink141$3 = 0; + var $$sink141$3$1 = 0, $$sink141$4 = 0, $$sink141$4$1 = 0, $$sink141$5 = 0, $$sink141$5$1 = 0, $$sink141$6 = 0, $$sink141$6$1 = 0, $$sink141$7 = 0, $$sink141$7$1 = 0, $$sink141$8 = 0, $$sink141$8$1 = 0, $$sink3 = 0, $$sink3$1 = 0, $$sink3$2 = 0, $$sink3$3 = 0, $$sink3$4 = 0, $$sink3$5 = 0, $$sink3$6 = 0, $$sink3$7 = 0, $$sink3$8 = 0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0; + var $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0; + var $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0; + var $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0; + var $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0; + var $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0; + var $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0; + var $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0; + var $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0; + var $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0; + var $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0; + var $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0; + var $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0; + var $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0; + var $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0; + var $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0; + var $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0; + var $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0; + var $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; + var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; + var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $exitcond = 0, label = 0; + var sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 48|0; - $t0 = sp; - $0 = ((($p)) + 40|0); - _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); - $1 = ((($r)) + 40|0); - _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); - $2 = ((($r)) + 80|0); - $3 = ((($q)) + 40|0); - _crypto_sign_ed25519_ref10_fe_mul($2,$r,$3); - _crypto_sign_ed25519_ref10_fe_mul($1,$1,$q); - $4 = ((($r)) + 120|0); - $5 = ((($q)) + 120|0); - $6 = ((($p)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); - $7 = ((($p)) + 80|0); - $8 = ((($q)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($r,$7,$8); - _crypto_sign_ed25519_ref10_fe_add($t0,$r,$r); - _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); - _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); - _crypto_sign_ed25519_ref10_fe_sub($2,$t0,$4); - _crypto_sign_ed25519_ref10_fe_add($4,$t0,$4); + $2 = sp; + $3 = $1; + $4 = $3; + $5 = HEAP32[$4>>2]|0; + $6 = (($3) + 4)|0; + $7 = $6; + $8 = HEAP32[$7>>2]|0; + HEAP32[$2>>2] = $5; + $9 = ((($1)) + 8|0); + $10 = $9; + $11 = $10; + $12 = HEAP32[$11>>2]|0; + $13 = (($10) + 4)|0; + $14 = $13; + $15 = HEAP32[$14>>2]|0; + $16 = ((($2)) + 4|0); + HEAP32[$16>>2] = $12; + $17 = ((($1)) + 16|0); + $18 = $17; + $19 = $18; + $20 = HEAP32[$19>>2]|0; + $21 = (($18) + 4)|0; + $22 = $21; + $23 = HEAP32[$22>>2]|0; + $24 = ((($2)) + 8|0); + HEAP32[$24>>2] = $20; + $25 = ((($1)) + 24|0); + $26 = $25; + $27 = $26; + $28 = HEAP32[$27>>2]|0; + $29 = (($26) + 4)|0; + $30 = $29; + $31 = HEAP32[$30>>2]|0; + $32 = ((($2)) + 12|0); + HEAP32[$32>>2] = $28; + $33 = ((($1)) + 32|0); + $34 = $33; + $35 = $34; + $36 = HEAP32[$35>>2]|0; + $37 = (($34) + 4)|0; + $38 = $37; + $39 = HEAP32[$38>>2]|0; + $40 = ((($2)) + 16|0); + HEAP32[$40>>2] = $36; + $41 = ((($1)) + 40|0); + $42 = $41; + $43 = $42; + $44 = HEAP32[$43>>2]|0; + $45 = (($42) + 4)|0; + $46 = $45; + $47 = HEAP32[$46>>2]|0; + $48 = ((($2)) + 20|0); + HEAP32[$48>>2] = $44; + $49 = ((($1)) + 48|0); + $50 = $49; + $51 = $50; + $52 = HEAP32[$51>>2]|0; + $53 = (($50) + 4)|0; + $54 = $53; + $55 = HEAP32[$54>>2]|0; + $56 = ((($2)) + 24|0); + HEAP32[$56>>2] = $52; + $57 = ((($1)) + 56|0); + $58 = $57; + $59 = $58; + $60 = HEAP32[$59>>2]|0; + $61 = (($58) + 4)|0; + $62 = $61; + $63 = HEAP32[$62>>2]|0; + $64 = ((($2)) + 28|0); + HEAP32[$64>>2] = $60; + $65 = ((($1)) + 64|0); + $66 = $65; + $67 = $66; + $68 = HEAP32[$67>>2]|0; + $69 = (($66) + 4)|0; + $70 = $69; + $71 = HEAP32[$70>>2]|0; + $72 = ((($2)) + 32|0); + HEAP32[$72>>2] = $68; + $73 = ((($1)) + 72|0); + $74 = $73; + $75 = $74; + $76 = HEAP32[$75>>2]|0; + $77 = (($74) + 4)|0; + $78 = $77; + $79 = HEAP32[$78>>2]|0; + $80 = ((($2)) + 36|0); + HEAP32[$80>>2] = $76; + $81 = ((($2)) + 4|0); + $82 = ((($2)) + 8|0); + $83 = ((($2)) + 12|0); + $84 = ((($2)) + 16|0); + $85 = ((($2)) + 20|0); + $86 = ((($2)) + 24|0); + $87 = ((($2)) + 28|0); + $88 = ((($2)) + 32|0); + $89 = ((($2)) + 36|0); + $$promoted163 = HEAP32[$2>>2]|0; + $$promoted179 = HEAP32[$89>>2]|0; + $$promoted177 = HEAP32[$88>>2]|0; + $$promoted175 = HEAP32[$87>>2]|0; + $$promoted173 = HEAP32[$86>>2]|0; + $$promoted171 = HEAP32[$85>>2]|0; + $$promoted169 = HEAP32[$84>>2]|0; + $$promoted167 = HEAP32[$83>>2]|0; + $$promoted165 = HEAP32[$82>>2]|0; + $$promoted = HEAP32[$81>>2]|0; + $90 = $$promoted163 >> 31; + $91 = $90 & $$promoted163; + $$sink141 = $91 >> 26; + $92 = (0 - ($$sink141))|0; + $93 = $92 << 26; + $94 = (($93) + ($$promoted163))|0; + $95 = (($$sink141) + ($$promoted))|0; + $96 = $95 >> 31; + $97 = $96 & $95; + $$sink141$1 = $97 >> 25; + $98 = (0 - ($$sink141$1))|0; + $99 = $98 << 25; + $100 = (($99) + ($95))|0; + $101 = (($$sink141$1) + ($$promoted165))|0; + $102 = $101 >> 31; + $103 = $102 & $101; + $$sink141$2 = $103 >> 26; + $104 = (0 - ($$sink141$2))|0; + $105 = $104 << 26; + $106 = (($105) + ($101))|0; + $107 = (($$sink141$2) + ($$promoted167))|0; + $108 = $107 >> 31; + $109 = $108 & $107; + $$sink141$3 = $109 >> 25; + $110 = (0 - ($$sink141$3))|0; + $111 = $110 << 25; + $112 = (($111) + ($107))|0; + $113 = (($$sink141$3) + ($$promoted169))|0; + $114 = $113 >> 31; + $115 = $114 & $113; + $$sink141$4 = $115 >> 26; + $116 = (0 - ($$sink141$4))|0; + $117 = $116 << 26; + $118 = (($117) + ($113))|0; + $119 = (($$sink141$4) + ($$promoted171))|0; + $120 = $119 >> 31; + $121 = $120 & $119; + $$sink141$5 = $121 >> 25; + $122 = (0 - ($$sink141$5))|0; + $123 = $122 << 25; + $124 = (($123) + ($119))|0; + $125 = (($$sink141$5) + ($$promoted173))|0; + $126 = $125 >> 31; + $127 = $126 & $125; + $$sink141$6 = $127 >> 26; + $128 = (0 - ($$sink141$6))|0; + $129 = $128 << 26; + $130 = (($129) + ($125))|0; + $131 = (($$sink141$6) + ($$promoted175))|0; + $132 = $131 >> 31; + $133 = $132 & $131; + $$sink141$7 = $133 >> 25; + $134 = (0 - ($$sink141$7))|0; + $135 = $134 << 25; + $136 = (($135) + ($131))|0; + $137 = (($$sink141$7) + ($$promoted177))|0; + $138 = $137 >> 31; + $139 = $138 & $137; + $$sink141$8 = $139 >> 26; + $140 = (0 - ($$sink141$8))|0; + $141 = $140 << 26; + $142 = (($141) + ($137))|0; + $143 = (($$sink141$8) + ($$promoted179))|0; + $144 = $143 >> 31; + $145 = $144 & $143; + $146 = $145 >> 25; + $147 = Math_imul($146, -33554432)|0; + $148 = (($147) + ($143))|0; + $149 = ($146*19)|0; + $150 = (($149) + ($94))|0; + $151 = $150 >> 31; + $152 = $151 & $150; + $$sink141$1199 = $152 >> 26; + $153 = (0 - ($$sink141$1199))|0; + $154 = $153 << 26; + $155 = (($154) + ($150))|0; + $156 = (($$sink141$1199) + ($100))|0; + $157 = $156 >> 31; + $158 = $157 & $156; + $$sink141$1$1 = $158 >> 25; + $159 = (0 - ($$sink141$1$1))|0; + $160 = $159 << 25; + $161 = (($160) + ($156))|0; + $162 = (($$sink141$1$1) + ($106))|0; + $163 = $162 >> 31; + $164 = $163 & $162; + $$sink141$2$1 = $164 >> 26; + $165 = (0 - ($$sink141$2$1))|0; + $166 = $165 << 26; + $167 = (($166) + ($162))|0; + $168 = (($$sink141$2$1) + ($112))|0; + $169 = $168 >> 31; + $170 = $169 & $168; + $$sink141$3$1 = $170 >> 25; + $171 = (0 - ($$sink141$3$1))|0; + $172 = $171 << 25; + $173 = (($172) + ($168))|0; + $174 = (($$sink141$3$1) + ($118))|0; + $175 = $174 >> 31; + $176 = $175 & $174; + $$sink141$4$1 = $176 >> 26; + $177 = (0 - ($$sink141$4$1))|0; + $178 = $177 << 26; + $179 = (($178) + ($174))|0; + $180 = (($$sink141$4$1) + ($124))|0; + $181 = $180 >> 31; + $182 = $181 & $180; + $$sink141$5$1 = $182 >> 25; + $183 = (0 - ($$sink141$5$1))|0; + $184 = $183 << 25; + $185 = (($184) + ($180))|0; + $186 = (($$sink141$5$1) + ($130))|0; + $187 = $186 >> 31; + $188 = $187 & $186; + $$sink141$6$1 = $188 >> 26; + $189 = (0 - ($$sink141$6$1))|0; + $190 = $189 << 26; + $191 = (($190) + ($186))|0; + $192 = (($$sink141$6$1) + ($136))|0; + $193 = $192 >> 31; + $194 = $193 & $192; + $$sink141$7$1 = $194 >> 25; + $195 = (0 - ($$sink141$7$1))|0; + $196 = $195 << 25; + $197 = (($196) + ($192))|0; + $198 = (($$sink141$7$1) + ($142))|0; + $199 = $198 >> 31; + $200 = $199 & $198; + $$sink141$8$1 = $200 >> 26; + $201 = (0 - ($$sink141$8$1))|0; + $202 = $201 << 26; + $203 = (($202) + ($198))|0; + $204 = (($$sink141$8$1) + ($148))|0; + $205 = $204 >> 31; + $206 = $205 & $204; + $207 = $206 >> 25; + $208 = Math_imul($207, -33554432)|0; + $209 = (($208) + ($204))|0; + $210 = ($207*19)|0; + $211 = (($210) + ($155))|0; + HEAP32[$81>>2] = $161; + HEAP32[$2>>2] = $211; + HEAP32[$82>>2] = $167; + HEAP32[$83>>2] = $173; + HEAP32[$84>>2] = $179; + HEAP32[$85>>2] = $185; + HEAP32[$86>>2] = $191; + HEAP32[$87>>2] = $197; + HEAP32[$88>>2] = $203; + HEAP32[$89>>2] = $209; + $212 = HEAP32[$2>>2]|0; + $213 = $212 >> 31; + $214 = $213 & $212; + $215 = $214 >> 26; + $216 = Math_imul($215, -67108864)|0; + $217 = (($216) + ($212))|0; + HEAP32[$2>>2] = $217; + $218 = ((($2)) + 4|0); + $219 = HEAP32[$218>>2]|0; + $220 = (($215) + ($219))|0; + HEAP32[$218>>2] = $220; + $221 = ((($2)) + 36|0); + $222 = HEAP32[$2>>2]|0; + $223 = $222 >> 26; + $224 = $222 & 67108863; + HEAP32[$2>>2] = $224; + $225 = (($220) + ($223))|0; + $226 = ((($2)) + 4|0); + $227 = ((($2)) + 8|0); + $228 = HEAP32[$227>>2]|0; + $229 = $225 >> 25; + $230 = $225 & 33554431; + HEAP32[$226>>2] = $230; + $231 = (($228) + ($229))|0; + $232 = ((($2)) + 8|0); + $233 = ((($2)) + 12|0); + $234 = HEAP32[$233>>2]|0; + $235 = $231 >> 26; + $236 = $231 & 67108863; + HEAP32[$232>>2] = $236; + $237 = (($234) + ($235))|0; + $238 = ((($2)) + 12|0); + $239 = ((($2)) + 16|0); + $240 = HEAP32[$239>>2]|0; + $241 = $237 >> 25; + $242 = $237 & 33554431; + HEAP32[$238>>2] = $242; + $243 = (($240) + ($241))|0; + $244 = ((($2)) + 16|0); + $245 = ((($2)) + 20|0); + $246 = HEAP32[$245>>2]|0; + $247 = $243 >> 26; + $248 = $243 & 67108863; + HEAP32[$244>>2] = $248; + $249 = (($246) + ($247))|0; + $250 = ((($2)) + 20|0); + $251 = ((($2)) + 24|0); + $252 = HEAP32[$251>>2]|0; + $253 = $249 >> 25; + $254 = $249 & 33554431; + HEAP32[$250>>2] = $254; + $255 = (($252) + ($253))|0; + $256 = ((($2)) + 24|0); + $257 = ((($2)) + 28|0); + $258 = HEAP32[$257>>2]|0; + $259 = $255 >> 26; + $260 = $255 & 67108863; + HEAP32[$256>>2] = $260; + $261 = (($258) + ($259))|0; + $262 = ((($2)) + 28|0); + $263 = ((($2)) + 32|0); + $264 = HEAP32[$263>>2]|0; + $265 = $261 >> 25; + $266 = $261 & 33554431; + HEAP32[$262>>2] = $266; + $267 = (($264) + ($265))|0; + $268 = ((($2)) + 32|0); + $269 = ((($2)) + 36|0); + $270 = HEAP32[$269>>2]|0; + $271 = $267 >> 26; + $272 = $267 & 67108863; + HEAP32[$268>>2] = $272; + $273 = (($270) + ($271))|0; + $274 = $273 >> 25; + $275 = $273 & 33554431; + HEAP32[$221>>2] = $275; + $276 = ($274*19)|0; + $277 = HEAP32[$2>>2]|0; + $278 = (($277) + ($276))|0; + HEAP32[$2>>2] = $278; + $279 = ((($2)) + 4|0); + $280 = HEAP32[$279>>2]|0; + $281 = $278 >> 26; + $282 = $278 & 67108863; + HEAP32[$2>>2] = $282; + $283 = (($280) + ($281))|0; + $284 = ((($2)) + 4|0); + $285 = ((($2)) + 8|0); + $286 = HEAP32[$285>>2]|0; + $287 = $283 >> 25; + $288 = $283 & 33554431; + HEAP32[$284>>2] = $288; + $289 = (($286) + ($287))|0; + $290 = ((($2)) + 8|0); + $291 = ((($2)) + 12|0); + $292 = HEAP32[$291>>2]|0; + $293 = $289 >> 26; + $294 = $289 & 67108863; + HEAP32[$290>>2] = $294; + $295 = (($292) + ($293))|0; + $296 = ((($2)) + 12|0); + $297 = ((($2)) + 16|0); + $298 = HEAP32[$297>>2]|0; + $299 = $295 >> 25; + $300 = $295 & 33554431; + HEAP32[$296>>2] = $300; + $301 = (($298) + ($299))|0; + $302 = ((($2)) + 16|0); + $303 = ((($2)) + 20|0); + $304 = HEAP32[$303>>2]|0; + $305 = $301 >> 26; + $306 = $301 & 67108863; + HEAP32[$302>>2] = $306; + $307 = (($304) + ($305))|0; + $308 = ((($2)) + 20|0); + $309 = ((($2)) + 24|0); + $310 = HEAP32[$309>>2]|0; + $311 = $307 >> 25; + $312 = $307 & 33554431; + HEAP32[$308>>2] = $312; + $313 = (($310) + ($311))|0; + $314 = ((($2)) + 24|0); + $315 = ((($2)) + 28|0); + $316 = HEAP32[$315>>2]|0; + $317 = $313 >> 26; + $318 = $313 & 67108863; + HEAP32[$314>>2] = $318; + $319 = (($316) + ($317))|0; + $320 = ((($2)) + 28|0); + $321 = ((($2)) + 32|0); + $322 = HEAP32[$321>>2]|0; + $323 = $319 >> 25; + $324 = $319 & 33554431; + HEAP32[$320>>2] = $324; + $325 = (($322) + ($323))|0; + $326 = ((($2)) + 32|0); + $327 = ((($2)) + 36|0); + $328 = HEAP32[$327>>2]|0; + $329 = $325 >> 26; + $330 = $325 & 67108863; + HEAP32[$326>>2] = $330; + $331 = (($328) + ($329))|0; + $332 = $331 >> 25; + $333 = $331 & 33554431; + HEAP32[$221>>2] = $333; + $334 = ($332*19)|0; + $335 = HEAP32[$2>>2]|0; + $336 = (($335) + ($334))|0; + HEAP32[$2>>2] = $336; + $337 = (_s32_gte($336)|0); + $$0135149 = $337;$$3150 = 1; + while(1) { + $338 = (($2) + ($$3150<<2)|0); + $339 = HEAP32[$338>>2]|0; + $340 = $$3150 << 25; + $341 = $340 & 33554432; + $342 = $341 ^ 67108863; + $343 = (_s32_eq($339,$342)|0); + $$1136 = $343 & $$0135149; + $344 = (($$3150) + 1)|0; + $exitcond = ($344|0)==(10); + if ($exitcond) { + break; + } else { + $$0135149 = $$1136;$$3150 = $344; + } + } + $345 = $$1136 & 67108845; + $346 = HEAP32[$2>>2]|0; + $347 = (($346) - ($345))|0; + HEAP32[$2>>2] = $347; + $$sink3 = $$1136 & 33554431; + $348 = ((($2)) + 4|0); + $349 = HEAP32[$348>>2]|0; + $350 = (($349) - ($$sink3))|0; + HEAP32[$348>>2] = $350; + $$sink3$1 = $$1136 & 67108863; + $351 = ((($2)) + 8|0); + $352 = HEAP32[$351>>2]|0; + $353 = (($352) - ($$sink3$1))|0; + HEAP32[$351>>2] = $353; + $$sink3$2 = $$1136 & 33554431; + $354 = ((($2)) + 12|0); + $355 = HEAP32[$354>>2]|0; + $356 = (($355) - ($$sink3$2))|0; + HEAP32[$354>>2] = $356; + $$sink3$3 = $$1136 & 67108863; + $357 = ((($2)) + 16|0); + $358 = HEAP32[$357>>2]|0; + $359 = (($358) - ($$sink3$3))|0; + HEAP32[$357>>2] = $359; + $$sink3$4 = $$1136 & 33554431; + $360 = ((($2)) + 20|0); + $361 = HEAP32[$360>>2]|0; + $362 = (($361) - ($$sink3$4))|0; + HEAP32[$360>>2] = $362; + $$sink3$5 = $$1136 & 67108863; + $363 = ((($2)) + 24|0); + $364 = HEAP32[$363>>2]|0; + $365 = (($364) - ($$sink3$5))|0; + HEAP32[$363>>2] = $365; + $$sink3$6 = $$1136 & 33554431; + $366 = ((($2)) + 28|0); + $367 = HEAP32[$366>>2]|0; + $368 = (($367) - ($$sink3$6))|0; + HEAP32[$366>>2] = $368; + $$sink3$7 = $$1136 & 67108863; + $369 = ((($2)) + 32|0); + $370 = HEAP32[$369>>2]|0; + $371 = (($370) - ($$sink3$7))|0; + HEAP32[$369>>2] = $371; + $$sink3$8 = $$1136 & 33554431; + $372 = ((($2)) + 36|0); + $373 = HEAP32[$372>>2]|0; + $374 = (($373) - ($$sink3$8))|0; + HEAP32[$372>>2] = $374; + $375 = HEAP32[$218>>2]|0; + $376 = $375 << 2; + HEAP32[$218>>2] = $376; + $377 = ((($2)) + 8|0); + $378 = HEAP32[$377>>2]|0; + $379 = $378 << 3; + HEAP32[$377>>2] = $379; + $380 = ((($2)) + 12|0); + $381 = HEAP32[$380>>2]|0; + $382 = $381 << 5; + HEAP32[$380>>2] = $382; + $383 = ((($2)) + 16|0); + $384 = HEAP32[$383>>2]|0; + $385 = $384 << 6; + HEAP32[$383>>2] = $385; + $386 = ((($2)) + 24|0); + $387 = HEAP32[$386>>2]|0; + $388 = $387 << 1; + HEAP32[$386>>2] = $388; + $389 = ((($2)) + 28|0); + $390 = HEAP32[$389>>2]|0; + $391 = $390 << 3; + HEAP32[$389>>2] = $391; + $392 = ((($2)) + 32|0); + $393 = HEAP32[$392>>2]|0; + $394 = $393 << 4; + HEAP32[$392>>2] = $394; + $395 = ((($2)) + 36|0); + $396 = HEAP32[$395>>2]|0; + $397 = $396 << 6; + HEAP32[$395>>2] = $397; + $398 = ((($0)) + 16|0); + HEAP8[$398>>0] = 0; + $399 = HEAP32[$2>>2]|0; + $400 = $399&255; + HEAP8[$0>>0] = $400; + $401 = $399 >>> 8; + $402 = $401&255; + $403 = ((($0)) + 1|0); + HEAP8[$403>>0] = $402; + $404 = $399 >>> 16; + $405 = $404&255; + $406 = ((($0)) + 2|0); + HEAP8[$406>>0] = $405; + $407 = $399 >>> 24; + $408 = ((($0)) + 3|0); + $409 = HEAP32[$218>>2]|0; + $410 = $409 | $407; + $411 = $410&255; + HEAP8[$408>>0] = $411; + $412 = $409 >>> 8; + $413 = $412&255; + $414 = ((($0)) + 4|0); + HEAP8[$414>>0] = $413; + $415 = $409 >>> 16; + $416 = $415&255; + $417 = ((($0)) + 5|0); + HEAP8[$417>>0] = $416; + $418 = $409 >>> 24; + $419 = ((($0)) + 6|0); + $420 = HEAP32[$377>>2]|0; + $421 = $420 | $418; + $422 = $421&255; + HEAP8[$419>>0] = $422; + $423 = $420 >>> 8; + $424 = $423&255; + $425 = ((($0)) + 7|0); + HEAP8[$425>>0] = $424; + $426 = $420 >>> 16; + $427 = $426&255; + $428 = ((($0)) + 8|0); + HEAP8[$428>>0] = $427; + $429 = $420 >>> 24; + $430 = ((($0)) + 9|0); + $431 = HEAP32[$380>>2]|0; + $432 = $431 | $429; + $433 = $432&255; + HEAP8[$430>>0] = $433; + $434 = $431 >>> 8; + $435 = $434&255; + $436 = ((($0)) + 10|0); + HEAP8[$436>>0] = $435; + $437 = HEAP32[$380>>2]|0; + $438 = $437 >>> 16; + $439 = $438&255; + $440 = ((($0)) + 11|0); + HEAP8[$440>>0] = $439; + $441 = $437 >>> 24; + $442 = ((($0)) + 12|0); + $443 = HEAP32[$383>>2]|0; + $444 = $443 | $441; + $445 = $444&255; + HEAP8[$442>>0] = $445; + $446 = $443 >>> 8; + $447 = $446&255; + $448 = ((($0)) + 13|0); + HEAP8[$448>>0] = $447; + $449 = HEAP32[$383>>2]|0; + $450 = $449 >>> 16; + $451 = $450&255; + $452 = ((($0)) + 14|0); + HEAP8[$452>>0] = $451; + $453 = $449 >>> 24; + $454 = $453&255; + $455 = ((($0)) + 15|0); + HEAP8[$455>>0] = $454; + $456 = ((($2)) + 20|0); + $457 = HEAP32[$456>>2]|0; + $458 = HEAP8[$398>>0]|0; + $459 = $458&255; + $460 = $459 | $457; + $461 = $460&255; + HEAP8[$398>>0] = $461; + $462 = $457 >>> 8; + $463 = $462&255; + $464 = ((($0)) + 17|0); + HEAP8[$464>>0] = $463; + $465 = HEAP32[$456>>2]|0; + $466 = $465 >>> 16; + $467 = $466&255; + $468 = ((($0)) + 18|0); + HEAP8[$468>>0] = $467; + $469 = $465 >>> 24; + $470 = ((($0)) + 19|0); + $471 = HEAP32[$386>>2]|0; + $472 = $471 | $469; + $473 = $472&255; + HEAP8[$470>>0] = $473; + $474 = $471 >>> 8; + $475 = $474&255; + $476 = ((($0)) + 20|0); + HEAP8[$476>>0] = $475; + $477 = HEAP32[$386>>2]|0; + $478 = $477 >>> 16; + $479 = $478&255; + $480 = ((($0)) + 21|0); + HEAP8[$480>>0] = $479; + $481 = $477 >>> 24; + $482 = ((($0)) + 22|0); + $483 = HEAP32[$389>>2]|0; + $484 = $483 | $481; + $485 = $484&255; + HEAP8[$482>>0] = $485; + $486 = $483 >>> 8; + $487 = $486&255; + $488 = ((($0)) + 23|0); + HEAP8[$488>>0] = $487; + $489 = HEAP32[$389>>2]|0; + $490 = $489 >>> 16; + $491 = $490&255; + $492 = ((($0)) + 24|0); + HEAP8[$492>>0] = $491; + $493 = $489 >>> 24; + $494 = ((($0)) + 25|0); + $495 = HEAP32[$392>>2]|0; + $496 = $495 | $493; + $497 = $496&255; + HEAP8[$494>>0] = $497; + $498 = $495 >>> 8; + $499 = $498&255; + $500 = ((($0)) + 26|0); + HEAP8[$500>>0] = $499; + $501 = HEAP32[$392>>2]|0; + $502 = $501 >>> 16; + $503 = $502&255; + $504 = ((($0)) + 27|0); + HEAP8[$504>>0] = $503; + $505 = $501 >>> 24; + $506 = ((($0)) + 28|0); + $507 = HEAP32[$395>>2]|0; + $508 = $507 | $505; + $509 = $508&255; + HEAP8[$506>>0] = $509; + $510 = $507 >>> 8; + $511 = $510&255; + $512 = ((($0)) + 29|0); + HEAP8[$512>>0] = $511; + $513 = HEAP32[$395>>2]|0; + $514 = $513 >>> 16; + $515 = $514&255; + $516 = ((($0)) + 30|0); + HEAP8[$516>>0] = $515; + $517 = $513 >>> 24; + $518 = $517&255; + $519 = ((($0)) + 31|0); + HEAP8[$519>>0] = $518; STACKTOP = sp;return; } -function _crypto_sign_ed25519_ref10_ge_tobytes($s,$h) { - $s = $s|0; - $h = $h|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $recip = 0, $x = 0, $y = 0, label = 0, sp = 0; +function _s32_gte($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, $3 = 0, label = 0, sp = 0; sp = STACKTOP; - STACKTOP = STACKTOP + 128|0; - $recip = sp + 80|0; - $x = sp + 40|0; - $y = sp; - $0 = ((($h)) + 80|0); - _crypto_sign_ed25519_ref10_fe_invert($recip,$0); - _crypto_sign_ed25519_ref10_fe_mul($x,$h,$recip); - $1 = ((($h)) + 40|0); - _crypto_sign_ed25519_ref10_fe_mul($y,$1,$recip); - _crypto_sign_ed25519_ref10_fe_tobytes($s,$y); - $2 = (_crypto_sign_ed25519_ref10_fe_isnegative($x)|0); - $3 = $2 << 7; - $4 = ((($s)) + 31|0); - $5 = HEAP8[$4>>0]|0; - $6 = $5&255; - $7 = $6 ^ $3; - $8 = $7&255; - HEAP8[$4>>0] = $8; - STACKTOP = sp;return; + $1 = (($0) + -67108845)|0; + $2 = $1 >> 31; + $3 = $2 ^ -1; + return ($3|0); } -function _crypto_sign_edwards25519sha512batch_ref10_open($m,$mlen,$sm,$0,$1,$pk) { - $m = $m|0; - $mlen = $mlen|0; - $sm = $sm|0; +function _s32_eq($0,$1) { $0 = $0|0; $1 = $1|0; - $pk = $pk|0; - var $$0 = 0, $$sum = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $A = 0, $R = 0, $h = 0, $pkcopy1 = 0, $rcheck = 0, $rcopy = 0, $scopy = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - STACKTOP = STACKTOP + 480|0; - $pkcopy1 = sp + 440|0; - $rcopy = sp + 344|0; - $scopy = sp + 312|0; - $h = sp + 376|0; - $rcheck = sp + 280|0; - $A = sp + 120|0; - $R = sp; - $2 = ($1>>>0)<(0); - $3 = ($0>>>0)<(64); - $4 = ($1|0)==(0); + $2 = $0 ^ -1; + $3 = $2 ^ $1; + $4 = $3 << 16; $5 = $4 & $3; - $6 = $2 | $5; - if (!($6)) { - $7 = ((($sm)) + 63|0); - $8 = HEAP8[$7>>0]|0; - $9 = ($8&255)>(31); - if (!($9)) { - $10 = (_crypto_sign_ed25519_ref10_ge_frombytes_negate_vartime($A,$pk)|0); - $11 = ($10|0)==(0); - if ($11) { - dest=$pkcopy1; src=$pk; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - dest=$rcopy; src=$sm; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - $12 = ((($sm)) + 32|0); - dest=$scopy; src=$12; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - _memmove(($m|0),($sm|0),($0|0))|0; - $13 = ((($m)) + 32|0); - dest=$13; src=$pkcopy1; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - (_crypto_hash_sha512_ref($h,$m,$0,$1)|0); - _crypto_sign_ed25519_ref10_sc_reduce($h); - _crypto_sign_ed25519_ref10_ge_double_scalarmult_vartime($R,$h,$A,$scopy); - _crypto_sign_ed25519_ref10_ge_tobytes($rcheck,$R); - $14 = (_crypto_verify_32_ref($rcheck,$rcopy)|0); - $15 = ($14|0)==(0); - if ($15) { - $16 = ((($m)) + 64|0); - $17 = (_i64Add(($0|0),($1|0),-64,-1)|0); - $18 = tempRet0; - _memmove(($m|0),($16|0),($17|0))|0; - $$sum = (($0) + -64)|0; - $19 = (($m) + ($$sum)|0); - dest=$19; stop=dest+64|0; do { HEAP8[dest>>0]=0|0; dest=dest+1|0; } while ((dest|0) < (stop|0)); - $20 = $mlen; - $21 = $20; - HEAP32[$21>>2] = $17; - $22 = (($20) + 4)|0; - $23 = $22; - HEAP32[$23>>2] = $18; - $$0 = 0; - STACKTOP = sp;return ($$0|0); - } - } - } - } - $24 = $mlen; - $25 = $24; - HEAP32[$25>>2] = -1; - $26 = (($24) + 4)|0; - $27 = $26; - HEAP32[$27>>2] = -1; - _memset(($m|0),0,($0|0))|0; - $$0 = -1; - STACKTOP = sp;return ($$0|0); + $6 = $5 << 8; + $7 = $6 & $5; + $8 = $7 << 4; + $9 = $8 & $7; + $10 = $9 << 2; + $11 = $10 & $9; + $12 = $11 << 1; + $13 = $12 & $11; + $14 = $13 >> 31; + return ($14|0); } -function _crypto_sign_ed25519_ref10_sc_muladd($s,$a,$b,$c) { - $s = $s|0; - $a = $a|0; - $b = $b|0; - $c = $c|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; - var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0; - var $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0; - var $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0; - var $107 = 0, $1070 = 0, $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0; - var $1088 = 0, $1089 = 0, $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0; - var $1105 = 0, $1106 = 0, $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $1119 = 0, $112 = 0, $1120 = 0, $1121 = 0, $1122 = 0; - var $1123 = 0, $1124 = 0, $1125 = 0, $1126 = 0, $1127 = 0, $1128 = 0, $1129 = 0, $113 = 0, $1130 = 0, $1131 = 0, $1132 = 0, $1133 = 0, $1134 = 0, $1135 = 0, $1136 = 0, $1137 = 0, $1138 = 0, $1139 = 0, $114 = 0, $1140 = 0; - var $1141 = 0, $1142 = 0, $1143 = 0, $1144 = 0, $1145 = 0, $1146 = 0, $1147 = 0, $1148 = 0, $1149 = 0, $115 = 0, $1150 = 0, $1151 = 0, $1152 = 0, $1153 = 0, $1154 = 0, $1155 = 0, $1156 = 0, $1157 = 0, $1158 = 0, $1159 = 0; - var $116 = 0, $1160 = 0, $1161 = 0, $1162 = 0, $1163 = 0, $1164 = 0, $1165 = 0, $1166 = 0, $1167 = 0, $1168 = 0, $1169 = 0, $117 = 0, $1170 = 0, $1171 = 0, $1172 = 0, $1173 = 0, $1174 = 0, $1175 = 0, $1176 = 0, $1177 = 0; - var $1178 = 0, $1179 = 0, $118 = 0, $1180 = 0, $1181 = 0, $1182 = 0, $1183 = 0, $1184 = 0, $1185 = 0, $1186 = 0, $1187 = 0, $1188 = 0, $1189 = 0, $119 = 0, $1190 = 0, $1191 = 0, $1192 = 0, $1193 = 0, $1194 = 0, $1195 = 0; - var $1196 = 0, $1197 = 0, $1198 = 0, $1199 = 0, $12 = 0, $120 = 0, $1200 = 0, $1201 = 0, $1202 = 0, $1203 = 0, $1204 = 0, $1205 = 0, $1206 = 0, $1207 = 0, $1208 = 0, $1209 = 0, $121 = 0, $1210 = 0, $1211 = 0, $1212 = 0; - var $1213 = 0, $1214 = 0, $1215 = 0, $1216 = 0, $1217 = 0, $1218 = 0, $1219 = 0, $122 = 0, $1220 = 0, $1221 = 0, $1222 = 0, $1223 = 0, $1224 = 0, $1225 = 0, $1226 = 0, $1227 = 0, $1228 = 0, $1229 = 0, $123 = 0, $1230 = 0; - var $1231 = 0, $1232 = 0, $1233 = 0, $1234 = 0, $1235 = 0, $1236 = 0, $1237 = 0, $1238 = 0, $1239 = 0, $124 = 0, $1240 = 0, $1241 = 0, $1242 = 0, $1243 = 0, $1244 = 0, $1245 = 0, $1246 = 0, $1247 = 0, $1248 = 0, $1249 = 0; - var $125 = 0, $1250 = 0, $1251 = 0, $1252 = 0, $1253 = 0, $1254 = 0, $1255 = 0, $1256 = 0, $1257 = 0, $1258 = 0, $1259 = 0, $126 = 0, $1260 = 0, $1261 = 0, $1262 = 0, $1263 = 0, $1264 = 0, $1265 = 0, $1266 = 0, $1267 = 0; - var $1268 = 0, $1269 = 0, $127 = 0, $1270 = 0, $1271 = 0, $1272 = 0, $1273 = 0, $1274 = 0, $1275 = 0, $1276 = 0, $1277 = 0, $1278 = 0, $1279 = 0, $128 = 0, $1280 = 0, $1281 = 0, $1282 = 0, $1283 = 0, $1284 = 0, $1285 = 0; - var $1286 = 0, $1287 = 0, $1288 = 0, $1289 = 0, $129 = 0, $1290 = 0, $1291 = 0, $1292 = 0, $1293 = 0, $1294 = 0, $1295 = 0, $1296 = 0, $1297 = 0, $1298 = 0, $1299 = 0, $13 = 0, $130 = 0, $1300 = 0, $1301 = 0, $1302 = 0; - var $1303 = 0, $1304 = 0, $1305 = 0, $1306 = 0, $1307 = 0, $1308 = 0, $1309 = 0, $131 = 0, $1310 = 0, $1311 = 0, $1312 = 0, $1313 = 0, $1314 = 0, $1315 = 0, $1316 = 0, $1317 = 0, $1318 = 0, $1319 = 0, $132 = 0, $1320 = 0; - var $1321 = 0, $1322 = 0, $1323 = 0, $1324 = 0, $1325 = 0, $1326 = 0, $1327 = 0, $1328 = 0, $1329 = 0, $133 = 0, $1330 = 0, $1331 = 0, $1332 = 0, $1333 = 0, $1334 = 0, $1335 = 0, $1336 = 0, $1337 = 0, $1338 = 0, $1339 = 0; - var $134 = 0, $1340 = 0, $1341 = 0, $1342 = 0, $1343 = 0, $1344 = 0, $1345 = 0, $1346 = 0, $1347 = 0, $1348 = 0, $1349 = 0, $135 = 0, $1350 = 0, $1351 = 0, $1352 = 0, $1353 = 0, $1354 = 0, $1355 = 0, $1356 = 0, $1357 = 0; - var $1358 = 0, $1359 = 0, $136 = 0, $1360 = 0, $1361 = 0, $1362 = 0, $1363 = 0, $1364 = 0, $1365 = 0, $1366 = 0, $1367 = 0, $1368 = 0, $1369 = 0, $137 = 0, $1370 = 0, $1371 = 0, $1372 = 0, $1373 = 0, $1374 = 0, $1375 = 0; - var $1376 = 0, $1377 = 0, $1378 = 0, $1379 = 0, $138 = 0, $1380 = 0, $1381 = 0, $1382 = 0, $1383 = 0, $1384 = 0, $1385 = 0, $1386 = 0, $1387 = 0, $1388 = 0, $1389 = 0, $139 = 0, $1390 = 0, $1391 = 0, $1392 = 0, $1393 = 0; - var $1394 = 0, $1395 = 0, $1396 = 0, $1397 = 0, $1398 = 0, $1399 = 0, $14 = 0, $140 = 0, $1400 = 0, $1401 = 0, $1402 = 0, $1403 = 0, $1404 = 0, $1405 = 0, $1406 = 0, $1407 = 0, $1408 = 0, $1409 = 0, $141 = 0, $1410 = 0; - var $1411 = 0, $1412 = 0, $1413 = 0, $1414 = 0, $1415 = 0, $1416 = 0, $1417 = 0, $1418 = 0, $1419 = 0, $142 = 0, $1420 = 0, $1421 = 0, $1422 = 0, $1423 = 0, $1424 = 0, $1425 = 0, $1426 = 0, $1427 = 0, $1428 = 0, $1429 = 0; - var $143 = 0, $1430 = 0, $1431 = 0, $1432 = 0, $1433 = 0, $1434 = 0, $1435 = 0, $1436 = 0, $1437 = 0, $1438 = 0, $1439 = 0, $144 = 0, $1440 = 0, $1441 = 0, $1442 = 0, $1443 = 0, $1444 = 0, $1445 = 0, $1446 = 0, $1447 = 0; - var $1448 = 0, $1449 = 0, $145 = 0, $1450 = 0, $1451 = 0, $1452 = 0, $1453 = 0, $1454 = 0, $1455 = 0, $1456 = 0, $1457 = 0, $1458 = 0, $1459 = 0, $146 = 0, $1460 = 0, $1461 = 0, $1462 = 0, $1463 = 0, $1464 = 0, $1465 = 0; - var $1466 = 0, $1467 = 0, $1468 = 0, $1469 = 0, $147 = 0, $1470 = 0, $1471 = 0, $1472 = 0, $1473 = 0, $1474 = 0, $1475 = 0, $1476 = 0, $1477 = 0, $1478 = 0, $1479 = 0, $148 = 0, $1480 = 0, $1481 = 0, $1482 = 0, $1483 = 0; - var $1484 = 0, $1485 = 0, $1486 = 0, $1487 = 0, $1488 = 0, $1489 = 0, $149 = 0, $1490 = 0, $1491 = 0, $1492 = 0, $1493 = 0, $1494 = 0, $1495 = 0, $1496 = 0, $1497 = 0, $1498 = 0, $1499 = 0, $15 = 0, $150 = 0, $1500 = 0; - var $1501 = 0, $1502 = 0, $1503 = 0, $1504 = 0, $1505 = 0, $1506 = 0, $1507 = 0, $1508 = 0, $1509 = 0, $151 = 0, $1510 = 0, $1511 = 0, $1512 = 0, $1513 = 0, $1514 = 0, $1515 = 0, $1516 = 0, $1517 = 0, $1518 = 0, $1519 = 0; - var $152 = 0, $1520 = 0, $1521 = 0, $1522 = 0, $1523 = 0, $1524 = 0, $1525 = 0, $1526 = 0, $1527 = 0, $1528 = 0, $1529 = 0, $153 = 0, $1530 = 0, $1531 = 0, $1532 = 0, $1533 = 0, $1534 = 0, $1535 = 0, $1536 = 0, $1537 = 0; - var $1538 = 0, $1539 = 0, $154 = 0, $1540 = 0, $1541 = 0, $1542 = 0, $1543 = 0, $1544 = 0, $1545 = 0, $1546 = 0, $1547 = 0, $1548 = 0, $1549 = 0, $155 = 0, $1550 = 0, $1551 = 0, $1552 = 0, $1553 = 0, $1554 = 0, $1555 = 0; - var $1556 = 0, $1557 = 0, $1558 = 0, $1559 = 0, $156 = 0, $1560 = 0, $1561 = 0, $1562 = 0, $1563 = 0, $1564 = 0, $1565 = 0, $1566 = 0, $1567 = 0, $1568 = 0, $1569 = 0, $157 = 0, $1570 = 0, $1571 = 0, $1572 = 0, $1573 = 0; - var $1574 = 0, $1575 = 0, $1576 = 0, $1577 = 0, $1578 = 0, $1579 = 0, $158 = 0, $1580 = 0, $1581 = 0, $1582 = 0, $1583 = 0, $1584 = 0, $1585 = 0, $1586 = 0, $1587 = 0, $1588 = 0, $1589 = 0, $159 = 0, $1590 = 0, $1591 = 0; - var $1592 = 0, $1593 = 0, $1594 = 0, $1595 = 0, $1596 = 0, $1597 = 0, $1598 = 0, $1599 = 0, $16 = 0, $160 = 0, $1600 = 0, $1601 = 0, $1602 = 0, $1603 = 0, $1604 = 0, $1605 = 0, $1606 = 0, $1607 = 0, $1608 = 0, $1609 = 0; - var $161 = 0, $1610 = 0, $1611 = 0, $1612 = 0, $1613 = 0, $1614 = 0, $1615 = 0, $1616 = 0, $1617 = 0, $1618 = 0, $1619 = 0, $162 = 0, $1620 = 0, $1621 = 0, $1622 = 0, $1623 = 0, $1624 = 0, $1625 = 0, $1626 = 0, $1627 = 0; - var $1628 = 0, $1629 = 0, $163 = 0, $1630 = 0, $1631 = 0, $1632 = 0, $1633 = 0, $1634 = 0, $1635 = 0, $1636 = 0, $1637 = 0, $1638 = 0, $1639 = 0, $164 = 0, $1640 = 0, $1641 = 0, $1642 = 0, $1643 = 0, $1644 = 0, $1645 = 0; - var $1646 = 0, $1647 = 0, $1648 = 0, $1649 = 0, $165 = 0, $1650 = 0, $1651 = 0, $1652 = 0, $1653 = 0, $1654 = 0, $1655 = 0, $1656 = 0, $1657 = 0, $1658 = 0, $1659 = 0, $166 = 0, $1660 = 0, $1661 = 0, $1662 = 0, $1663 = 0; - var $1664 = 0, $1665 = 0, $1666 = 0, $1667 = 0, $1668 = 0, $1669 = 0, $167 = 0, $1670 = 0, $1671 = 0, $1672 = 0, $1673 = 0, $1674 = 0, $1675 = 0, $1676 = 0, $1677 = 0, $1678 = 0, $1679 = 0, $168 = 0, $1680 = 0, $1681 = 0; - var $1682 = 0, $1683 = 0, $1684 = 0, $1685 = 0, $1686 = 0, $1687 = 0, $1688 = 0, $1689 = 0, $169 = 0, $1690 = 0, $1691 = 0, $1692 = 0, $1693 = 0, $1694 = 0, $1695 = 0, $1696 = 0, $1697 = 0, $1698 = 0, $1699 = 0, $17 = 0; - var $170 = 0, $1700 = 0, $1701 = 0, $1702 = 0, $1703 = 0, $1704 = 0, $1705 = 0, $1706 = 0, $1707 = 0, $1708 = 0, $1709 = 0, $171 = 0, $1710 = 0, $1711 = 0, $1712 = 0, $1713 = 0, $1714 = 0, $1715 = 0, $1716 = 0, $1717 = 0; - var $1718 = 0, $1719 = 0, $172 = 0, $1720 = 0, $1721 = 0, $1722 = 0, $1723 = 0, $1724 = 0, $1725 = 0, $1726 = 0, $1727 = 0, $1728 = 0, $1729 = 0, $173 = 0, $1730 = 0, $1731 = 0, $1732 = 0, $1733 = 0, $1734 = 0, $1735 = 0; - var $1736 = 0, $1737 = 0, $1738 = 0, $1739 = 0, $174 = 0, $1740 = 0, $1741 = 0, $1742 = 0, $1743 = 0, $1744 = 0, $1745 = 0, $1746 = 0, $1747 = 0, $1748 = 0, $1749 = 0, $175 = 0, $1750 = 0, $1751 = 0, $1752 = 0, $1753 = 0; - var $1754 = 0, $1755 = 0, $1756 = 0, $1757 = 0, $1758 = 0, $1759 = 0, $176 = 0, $1760 = 0, $1761 = 0, $1762 = 0, $1763 = 0, $1764 = 0, $1765 = 0, $1766 = 0, $1767 = 0, $1768 = 0, $1769 = 0, $177 = 0, $1770 = 0, $1771 = 0; - var $1772 = 0, $1773 = 0, $1774 = 0, $1775 = 0, $1776 = 0, $1777 = 0, $1778 = 0, $1779 = 0, $178 = 0, $1780 = 0, $1781 = 0, $1782 = 0, $1783 = 0, $1784 = 0, $1785 = 0, $1786 = 0, $1787 = 0, $1788 = 0, $1789 = 0, $179 = 0; - var $1790 = 0, $1791 = 0, $1792 = 0, $1793 = 0, $1794 = 0, $1795 = 0, $1796 = 0, $1797 = 0, $1798 = 0, $1799 = 0, $18 = 0, $180 = 0, $1800 = 0, $1801 = 0, $1802 = 0, $1803 = 0, $1804 = 0, $1805 = 0, $1806 = 0, $1807 = 0; - var $1808 = 0, $1809 = 0, $181 = 0, $1810 = 0, $1811 = 0, $1812 = 0, $1813 = 0, $1814 = 0, $1815 = 0, $1816 = 0, $1817 = 0, $1818 = 0, $1819 = 0, $182 = 0, $1820 = 0, $1821 = 0, $1822 = 0, $1823 = 0, $1824 = 0, $1825 = 0; - var $1826 = 0, $1827 = 0, $1828 = 0, $1829 = 0, $183 = 0, $1830 = 0, $1831 = 0, $1832 = 0, $1833 = 0, $1834 = 0, $1835 = 0, $1836 = 0, $1837 = 0, $1838 = 0, $1839 = 0, $184 = 0, $1840 = 0, $1841 = 0, $1842 = 0, $1843 = 0; - var $1844 = 0, $1845 = 0, $1846 = 0, $1847 = 0, $1848 = 0, $1849 = 0, $185 = 0, $1850 = 0, $1851 = 0, $1852 = 0, $1853 = 0, $1854 = 0, $1855 = 0, $1856 = 0, $1857 = 0, $1858 = 0, $1859 = 0, $186 = 0, $1860 = 0, $1861 = 0; - var $1862 = 0, $1863 = 0, $1864 = 0, $1865 = 0, $1866 = 0, $1867 = 0, $1868 = 0, $1869 = 0, $187 = 0, $1870 = 0, $1871 = 0, $1872 = 0, $1873 = 0, $1874 = 0, $1875 = 0, $1876 = 0, $1877 = 0, $1878 = 0, $188 = 0, $189 = 0; - var $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0; - var $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0; - var $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0; - var $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0; - var $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0; - var $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0; - var $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0; - var $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0; - var $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0; - var $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0; - var $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0; - var $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0; - var $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0; - var $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0; - var $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0; - var $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0; - var $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0; - var $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0; - var $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0; - var $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0; - var $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0; - var $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0; - var $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0; - var $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0; - var $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0; - var $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0; - var $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0; - var $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0; - var $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0; - var $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0; - var $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0; - var $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0; - var $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0; - var $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0; - var $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0; - var $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0; - var $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0; - var $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0; - var $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0; - var $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0; - var $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0; - var $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0; - var $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0; - var $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0; - var $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, label = 0; - var sp = 0; +function _fproduct($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0, $1015 = 0, $1016 = 0; + var $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0, $1033 = 0, $1034 = 0; + var $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0, $1051 = 0, $1052 = 0; + var $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0, $107 = 0, $1070 = 0; + var $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0, $1088 = 0, $1089 = 0; + var $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0, $1105 = 0, $1106 = 0; + var $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $1119 = 0, $112 = 0, $1120 = 0, $1121 = 0, $1122 = 0, $1123 = 0, $1124 = 0; + var $1125 = 0, $1126 = 0, $1127 = 0, $1128 = 0, $1129 = 0, $113 = 0, $1130 = 0, $1131 = 0, $1132 = 0, $1133 = 0, $1134 = 0, $1135 = 0, $1136 = 0, $1137 = 0, $1138 = 0, $1139 = 0, $114 = 0, $1140 = 0, $1141 = 0, $1142 = 0; + var $1143 = 0, $1144 = 0, $1145 = 0, $1146 = 0, $1147 = 0, $1148 = 0, $1149 = 0, $115 = 0, $1150 = 0, $1151 = 0, $1152 = 0, $1153 = 0, $1154 = 0, $1155 = 0, $1156 = 0, $1157 = 0, $1158 = 0, $1159 = 0, $116 = 0, $1160 = 0; + var $1161 = 0, $1162 = 0, $1163 = 0, $1164 = 0, $1165 = 0, $1166 = 0, $1167 = 0, $1168 = 0, $1169 = 0, $117 = 0, $1170 = 0, $1171 = 0, $1172 = 0, $1173 = 0, $1174 = 0, $1175 = 0, $1176 = 0, $1177 = 0, $1178 = 0, $1179 = 0; + var $118 = 0, $1180 = 0, $1181 = 0, $1182 = 0, $1183 = 0, $1184 = 0, $1185 = 0, $1186 = 0, $1187 = 0, $1188 = 0, $1189 = 0, $119 = 0, $1190 = 0, $1191 = 0, $1192 = 0, $1193 = 0, $1194 = 0, $1195 = 0, $1196 = 0, $1197 = 0; + var $1198 = 0, $1199 = 0, $12 = 0, $120 = 0, $1200 = 0, $1201 = 0, $1202 = 0, $1203 = 0, $1204 = 0, $1205 = 0, $1206 = 0, $1207 = 0, $1208 = 0, $1209 = 0, $121 = 0, $1210 = 0, $1211 = 0, $1212 = 0, $1213 = 0, $1214 = 0; + var $1215 = 0, $1216 = 0, $1217 = 0, $1218 = 0, $1219 = 0, $122 = 0, $1220 = 0, $1221 = 0, $1222 = 0, $1223 = 0, $1224 = 0, $1225 = 0, $1226 = 0, $1227 = 0, $1228 = 0, $1229 = 0, $123 = 0, $1230 = 0, $1231 = 0, $1232 = 0; + var $1233 = 0, $1234 = 0, $1235 = 0, $1236 = 0, $1237 = 0, $1238 = 0, $1239 = 0, $124 = 0, $1240 = 0, $1241 = 0, $1242 = 0, $1243 = 0, $1244 = 0, $1245 = 0, $1246 = 0, $1247 = 0, $1248 = 0, $1249 = 0, $125 = 0, $1250 = 0; + var $1251 = 0, $1252 = 0, $1253 = 0, $1254 = 0, $1255 = 0, $1256 = 0, $1257 = 0, $1258 = 0, $1259 = 0, $126 = 0, $1260 = 0, $1261 = 0, $1262 = 0, $1263 = 0, $1264 = 0, $1265 = 0, $1266 = 0, $1267 = 0, $1268 = 0, $1269 = 0; + var $127 = 0, $1270 = 0, $1271 = 0, $1272 = 0, $1273 = 0, $1274 = 0, $1275 = 0, $1276 = 0, $1277 = 0, $1278 = 0, $1279 = 0, $128 = 0, $1280 = 0, $1281 = 0, $1282 = 0, $1283 = 0, $1284 = 0, $1285 = 0, $1286 = 0, $1287 = 0; + var $1288 = 0, $1289 = 0, $129 = 0, $1290 = 0, $1291 = 0, $1292 = 0, $1293 = 0, $1294 = 0, $1295 = 0, $1296 = 0, $1297 = 0, $1298 = 0, $1299 = 0, $13 = 0, $130 = 0, $1300 = 0, $1301 = 0, $1302 = 0, $1303 = 0, $1304 = 0; + var $1305 = 0, $1306 = 0, $1307 = 0, $1308 = 0, $1309 = 0, $131 = 0, $1310 = 0, $1311 = 0, $1312 = 0, $1313 = 0, $1314 = 0, $1315 = 0, $1316 = 0, $1317 = 0, $1318 = 0, $1319 = 0, $132 = 0, $1320 = 0, $1321 = 0, $1322 = 0; + var $1323 = 0, $1324 = 0, $1325 = 0, $1326 = 0, $1327 = 0, $1328 = 0, $1329 = 0, $133 = 0, $1330 = 0, $1331 = 0, $1332 = 0, $1333 = 0, $1334 = 0, $1335 = 0, $1336 = 0, $1337 = 0, $1338 = 0, $1339 = 0, $134 = 0, $1340 = 0; + var $1341 = 0, $1342 = 0, $1343 = 0, $1344 = 0, $1345 = 0, $1346 = 0, $1347 = 0, $1348 = 0, $1349 = 0, $135 = 0, $1350 = 0, $1351 = 0, $1352 = 0, $1353 = 0, $1354 = 0, $1355 = 0, $1356 = 0, $1357 = 0, $1358 = 0, $1359 = 0; + var $136 = 0, $1360 = 0, $1361 = 0, $1362 = 0, $1363 = 0, $1364 = 0, $1365 = 0, $1366 = 0, $1367 = 0, $1368 = 0, $1369 = 0, $137 = 0, $1370 = 0, $1371 = 0, $1372 = 0, $1373 = 0, $1374 = 0, $1375 = 0, $1376 = 0, $1377 = 0; + var $1378 = 0, $1379 = 0, $138 = 0, $1380 = 0, $1381 = 0, $1382 = 0, $1383 = 0, $1384 = 0, $1385 = 0, $1386 = 0, $1387 = 0, $1388 = 0, $1389 = 0, $139 = 0, $1390 = 0, $1391 = 0, $1392 = 0, $1393 = 0, $1394 = 0, $1395 = 0; + var $1396 = 0, $1397 = 0, $1398 = 0, $1399 = 0, $14 = 0, $140 = 0, $1400 = 0, $1401 = 0, $1402 = 0, $1403 = 0, $1404 = 0, $1405 = 0, $1406 = 0, $1407 = 0, $1408 = 0, $1409 = 0, $141 = 0, $1410 = 0, $1411 = 0, $1412 = 0; + var $1413 = 0, $1414 = 0, $1415 = 0, $1416 = 0, $1417 = 0, $1418 = 0, $1419 = 0, $142 = 0, $1420 = 0, $1421 = 0, $1422 = 0, $1423 = 0, $1424 = 0, $1425 = 0, $1426 = 0, $1427 = 0, $1428 = 0, $1429 = 0, $143 = 0, $1430 = 0; + var $1431 = 0, $1432 = 0, $1433 = 0, $1434 = 0, $1435 = 0, $1436 = 0, $1437 = 0, $1438 = 0, $1439 = 0, $144 = 0, $1440 = 0, $1441 = 0, $1442 = 0, $1443 = 0, $1444 = 0, $1445 = 0, $1446 = 0, $1447 = 0, $1448 = 0, $1449 = 0; + var $145 = 0, $1450 = 0, $1451 = 0, $1452 = 0, $1453 = 0, $1454 = 0, $1455 = 0, $1456 = 0, $1457 = 0, $1458 = 0, $1459 = 0, $146 = 0, $1460 = 0, $1461 = 0, $1462 = 0, $1463 = 0, $1464 = 0, $1465 = 0, $1466 = 0, $1467 = 0; + var $1468 = 0, $1469 = 0, $147 = 0, $1470 = 0, $1471 = 0, $1472 = 0, $1473 = 0, $1474 = 0, $1475 = 0, $1476 = 0, $1477 = 0, $1478 = 0, $1479 = 0, $148 = 0, $1480 = 0, $1481 = 0, $1482 = 0, $1483 = 0, $1484 = 0, $1485 = 0; + var $1486 = 0, $1487 = 0, $1488 = 0, $1489 = 0, $149 = 0, $1490 = 0, $1491 = 0, $1492 = 0, $1493 = 0, $1494 = 0, $1495 = 0, $1496 = 0, $1497 = 0, $1498 = 0, $1499 = 0, $15 = 0, $150 = 0, $1500 = 0, $1501 = 0, $1502 = 0; + var $1503 = 0, $1504 = 0, $1505 = 0, $1506 = 0, $1507 = 0, $1508 = 0, $1509 = 0, $151 = 0, $1510 = 0, $1511 = 0, $1512 = 0, $1513 = 0, $1514 = 0, $1515 = 0, $1516 = 0, $1517 = 0, $1518 = 0, $1519 = 0, $152 = 0, $1520 = 0; + var $1521 = 0, $1522 = 0, $1523 = 0, $1524 = 0, $1525 = 0, $1526 = 0, $1527 = 0, $1528 = 0, $1529 = 0, $153 = 0, $1530 = 0, $1531 = 0, $1532 = 0, $1533 = 0, $1534 = 0, $1535 = 0, $1536 = 0, $1537 = 0, $1538 = 0, $1539 = 0; + var $154 = 0, $1540 = 0, $1541 = 0, $1542 = 0, $1543 = 0, $1544 = 0, $1545 = 0, $1546 = 0, $1547 = 0, $1548 = 0, $1549 = 0, $155 = 0, $1550 = 0, $1551 = 0, $1552 = 0, $1553 = 0, $1554 = 0, $1555 = 0, $1556 = 0, $1557 = 0; + var $1558 = 0, $1559 = 0, $156 = 0, $1560 = 0, $1561 = 0, $1562 = 0, $1563 = 0, $1564 = 0, $1565 = 0, $1566 = 0, $1567 = 0, $1568 = 0, $1569 = 0, $157 = 0, $1570 = 0, $1571 = 0, $1572 = 0, $1573 = 0, $1574 = 0, $1575 = 0; + var $1576 = 0, $1577 = 0, $1578 = 0, $1579 = 0, $158 = 0, $1580 = 0, $1581 = 0, $1582 = 0, $1583 = 0, $1584 = 0, $1585 = 0, $1586 = 0, $1587 = 0, $1588 = 0, $1589 = 0, $159 = 0, $1590 = 0, $1591 = 0, $1592 = 0, $1593 = 0; + var $1594 = 0, $1595 = 0, $1596 = 0, $1597 = 0, $1598 = 0, $1599 = 0, $16 = 0, $160 = 0, $1600 = 0, $1601 = 0, $1602 = 0, $1603 = 0, $1604 = 0, $1605 = 0, $1606 = 0, $1607 = 0, $1608 = 0, $1609 = 0, $161 = 0, $1610 = 0; + var $1611 = 0, $1612 = 0, $1613 = 0, $1614 = 0, $1615 = 0, $1616 = 0, $1617 = 0, $1618 = 0, $1619 = 0, $162 = 0, $1620 = 0, $1621 = 0, $1622 = 0, $1623 = 0, $1624 = 0, $1625 = 0, $1626 = 0, $1627 = 0, $1628 = 0, $1629 = 0; + var $163 = 0, $1630 = 0, $1631 = 0, $1632 = 0, $1633 = 0, $1634 = 0, $1635 = 0, $1636 = 0, $1637 = 0, $1638 = 0, $1639 = 0, $164 = 0, $1640 = 0, $1641 = 0, $1642 = 0, $1643 = 0, $1644 = 0, $1645 = 0, $1646 = 0, $1647 = 0; + var $1648 = 0, $1649 = 0, $165 = 0, $1650 = 0, $1651 = 0, $1652 = 0, $1653 = 0, $1654 = 0, $1655 = 0, $1656 = 0, $1657 = 0, $1658 = 0, $1659 = 0, $166 = 0, $1660 = 0, $1661 = 0, $1662 = 0, $1663 = 0, $1664 = 0, $1665 = 0; + var $1666 = 0, $1667 = 0, $1668 = 0, $1669 = 0, $167 = 0, $1670 = 0, $1671 = 0, $1672 = 0, $1673 = 0, $1674 = 0, $1675 = 0, $1676 = 0, $1677 = 0, $1678 = 0, $1679 = 0, $168 = 0, $1680 = 0, $1681 = 0, $1682 = 0, $1683 = 0; + var $1684 = 0, $1685 = 0, $1686 = 0, $1687 = 0, $1688 = 0, $1689 = 0, $169 = 0, $1690 = 0, $1691 = 0, $1692 = 0, $1693 = 0, $1694 = 0, $1695 = 0, $1696 = 0, $1697 = 0, $1698 = 0, $1699 = 0, $17 = 0, $170 = 0, $1700 = 0; + var $1701 = 0, $1702 = 0, $1703 = 0, $1704 = 0, $1705 = 0, $1706 = 0, $1707 = 0, $1708 = 0, $1709 = 0, $171 = 0, $1710 = 0, $1711 = 0, $1712 = 0, $1713 = 0, $1714 = 0, $1715 = 0, $1716 = 0, $1717 = 0, $1718 = 0, $1719 = 0; + var $172 = 0, $1720 = 0, $1721 = 0, $1722 = 0, $1723 = 0, $1724 = 0, $1725 = 0, $1726 = 0, $1727 = 0, $1728 = 0, $1729 = 0, $173 = 0, $1730 = 0, $1731 = 0, $1732 = 0, $1733 = 0, $1734 = 0, $1735 = 0, $1736 = 0, $1737 = 0; + var $1738 = 0, $1739 = 0, $174 = 0, $1740 = 0, $1741 = 0, $1742 = 0, $1743 = 0, $1744 = 0, $1745 = 0, $1746 = 0, $1747 = 0, $1748 = 0, $1749 = 0, $175 = 0, $1750 = 0, $1751 = 0, $1752 = 0, $1753 = 0, $1754 = 0, $1755 = 0; + var $1756 = 0, $1757 = 0, $1758 = 0, $1759 = 0, $176 = 0, $1760 = 0, $1761 = 0, $1762 = 0, $1763 = 0, $1764 = 0, $1765 = 0, $1766 = 0, $1767 = 0, $1768 = 0, $1769 = 0, $177 = 0, $1770 = 0, $1771 = 0, $1772 = 0, $1773 = 0; + var $1774 = 0, $1775 = 0, $1776 = 0, $1777 = 0, $1778 = 0, $1779 = 0, $178 = 0, $1780 = 0, $1781 = 0, $1782 = 0, $1783 = 0, $1784 = 0, $1785 = 0, $1786 = 0, $1787 = 0, $1788 = 0, $1789 = 0, $179 = 0, $1790 = 0, $1791 = 0; + var $1792 = 0, $1793 = 0, $1794 = 0, $1795 = 0, $1796 = 0, $1797 = 0, $1798 = 0, $1799 = 0, $18 = 0, $180 = 0, $1800 = 0, $1801 = 0, $1802 = 0, $1803 = 0, $1804 = 0, $1805 = 0, $1806 = 0, $1807 = 0, $1808 = 0, $1809 = 0; + var $181 = 0, $1810 = 0, $1811 = 0, $1812 = 0, $1813 = 0, $1814 = 0, $1815 = 0, $1816 = 0, $1817 = 0, $1818 = 0, $1819 = 0, $182 = 0, $1820 = 0, $1821 = 0, $1822 = 0, $1823 = 0, $1824 = 0, $1825 = 0, $1826 = 0, $1827 = 0; + var $1828 = 0, $1829 = 0, $183 = 0, $1830 = 0, $1831 = 0, $1832 = 0, $1833 = 0, $1834 = 0, $1835 = 0, $1836 = 0, $1837 = 0, $1838 = 0, $1839 = 0, $184 = 0, $1840 = 0, $1841 = 0, $1842 = 0, $1843 = 0, $1844 = 0, $1845 = 0; + var $1846 = 0, $1847 = 0, $1848 = 0, $1849 = 0, $185 = 0, $1850 = 0, $1851 = 0, $1852 = 0, $1853 = 0, $1854 = 0, $1855 = 0, $1856 = 0, $1857 = 0, $1858 = 0, $1859 = 0, $186 = 0, $1860 = 0, $1861 = 0, $1862 = 0, $1863 = 0; + var $1864 = 0, $1865 = 0, $1866 = 0, $1867 = 0, $1868 = 0, $1869 = 0, $187 = 0, $1870 = 0, $1871 = 0, $1872 = 0, $1873 = 0, $1874 = 0, $1875 = 0, $1876 = 0, $1877 = 0, $1878 = 0, $1879 = 0, $188 = 0, $1880 = 0, $1881 = 0; + var $1882 = 0, $1883 = 0, $1884 = 0, $1885 = 0, $1886 = 0, $1887 = 0, $1888 = 0, $1889 = 0, $189 = 0, $1890 = 0, $1891 = 0, $1892 = 0, $1893 = 0, $1894 = 0, $1895 = 0, $1896 = 0, $1897 = 0, $1898 = 0, $1899 = 0, $19 = 0; + var $190 = 0, $1900 = 0, $1901 = 0, $1902 = 0, $1903 = 0, $1904 = 0, $1905 = 0, $1906 = 0, $1907 = 0, $1908 = 0, $1909 = 0, $191 = 0, $1910 = 0, $1911 = 0, $1912 = 0, $1913 = 0, $1914 = 0, $1915 = 0, $1916 = 0, $1917 = 0; + var $1918 = 0, $1919 = 0, $192 = 0, $1920 = 0, $1921 = 0, $1922 = 0, $1923 = 0, $1924 = 0, $1925 = 0, $1926 = 0, $1927 = 0, $1928 = 0, $1929 = 0, $193 = 0, $1930 = 0, $1931 = 0, $1932 = 0, $1933 = 0, $1934 = 0, $1935 = 0; + var $1936 = 0, $1937 = 0, $1938 = 0, $1939 = 0, $194 = 0, $1940 = 0, $1941 = 0, $1942 = 0, $1943 = 0, $1944 = 0, $1945 = 0, $1946 = 0, $1947 = 0, $1948 = 0, $1949 = 0, $195 = 0, $1950 = 0, $1951 = 0, $1952 = 0, $1953 = 0; + var $1954 = 0, $1955 = 0, $1956 = 0, $1957 = 0, $1958 = 0, $1959 = 0, $196 = 0, $1960 = 0, $1961 = 0, $1962 = 0, $1963 = 0, $1964 = 0, $1965 = 0, $1966 = 0, $1967 = 0, $1968 = 0, $1969 = 0, $197 = 0, $1970 = 0, $1971 = 0; + var $1972 = 0, $1973 = 0, $1974 = 0, $1975 = 0, $1976 = 0, $1977 = 0, $1978 = 0, $1979 = 0, $198 = 0, $1980 = 0, $1981 = 0, $1982 = 0, $1983 = 0, $1984 = 0, $1985 = 0, $1986 = 0, $1987 = 0, $1988 = 0, $1989 = 0, $199 = 0; + var $1990 = 0, $1991 = 0, $1992 = 0, $1993 = 0, $1994 = 0, $1995 = 0, $1996 = 0, $1997 = 0, $1998 = 0, $1999 = 0, $20 = 0, $200 = 0, $2000 = 0, $2001 = 0, $2002 = 0, $2003 = 0, $2004 = 0, $2005 = 0, $2006 = 0, $2007 = 0; + var $2008 = 0, $2009 = 0, $201 = 0, $2010 = 0, $2011 = 0, $2012 = 0, $2013 = 0, $2014 = 0, $2015 = 0, $2016 = 0, $2017 = 0, $2018 = 0, $2019 = 0, $202 = 0, $2020 = 0, $2021 = 0, $2022 = 0, $2023 = 0, $2024 = 0, $2025 = 0; + var $2026 = 0, $2027 = 0, $2028 = 0, $2029 = 0, $203 = 0, $2030 = 0, $2031 = 0, $2032 = 0, $2033 = 0, $2034 = 0, $2035 = 0, $2036 = 0, $2037 = 0, $2038 = 0, $2039 = 0, $204 = 0, $2040 = 0, $2041 = 0, $2042 = 0, $2043 = 0; + var $2044 = 0, $2045 = 0, $2046 = 0, $2047 = 0, $2048 = 0, $2049 = 0, $205 = 0, $2050 = 0, $2051 = 0, $2052 = 0, $2053 = 0, $2054 = 0, $2055 = 0, $2056 = 0, $2057 = 0, $2058 = 0, $2059 = 0, $206 = 0, $2060 = 0, $2061 = 0; + var $2062 = 0, $2063 = 0, $2064 = 0, $2065 = 0, $2066 = 0, $2067 = 0, $2068 = 0, $2069 = 0, $207 = 0, $2070 = 0, $2071 = 0, $2072 = 0, $2073 = 0, $2074 = 0, $2075 = 0, $2076 = 0, $2077 = 0, $2078 = 0, $2079 = 0, $208 = 0; + var $2080 = 0, $2081 = 0, $2082 = 0, $2083 = 0, $2084 = 0, $2085 = 0, $2086 = 0, $2087 = 0, $2088 = 0, $2089 = 0, $209 = 0, $2090 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0; + var $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0; + var $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0; + var $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0; + var $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0; + var $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0; + var $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0; + var $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0; + var $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0; + var $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0; + var $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0; + var $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0; + var $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0; + var $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0; + var $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0; + var $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0; + var $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0; + var $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0; + var $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0; + var $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0; + var $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0; + var $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0; + var $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0; + var $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0; + var $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0; + var $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0; + var $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0; + var $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0; + var $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0; + var $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0; + var $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0; + var $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0; + var $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0; + var $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0; + var $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0; + var $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0; + var $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0; + var $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0; + var $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0; + var $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0; + var $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0; + var $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0; + var $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0, $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0; + var $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0; + var $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = (_load_347($a)|0); - $1 = tempRet0; - $2 = $0 & 2097151; - $3 = ((($a)) + 2|0); - $4 = (_load_448($3)|0); - $5 = tempRet0; - $6 = (_bitshift64Lshr(($4|0),($5|0),5)|0); - $7 = tempRet0; - $8 = $6 & 2097151; - $9 = ((($a)) + 5|0); - $10 = (_load_347($9)|0); - $11 = tempRet0; - $12 = (_bitshift64Lshr(($10|0),($11|0),2)|0); - $13 = tempRet0; - $14 = $12 & 2097151; - $15 = ((($a)) + 7|0); - $16 = (_load_448($15)|0); - $17 = tempRet0; - $18 = (_bitshift64Lshr(($16|0),($17|0),7)|0); - $19 = tempRet0; - $20 = $18 & 2097151; - $21 = ((($a)) + 10|0); - $22 = (_load_448($21)|0); - $23 = tempRet0; - $24 = (_bitshift64Lshr(($22|0),($23|0),4)|0); - $25 = tempRet0; - $26 = $24 & 2097151; - $27 = ((($a)) + 13|0); - $28 = (_load_347($27)|0); - $29 = tempRet0; - $30 = (_bitshift64Lshr(($28|0),($29|0),1)|0); - $31 = tempRet0; - $32 = $30 & 2097151; - $33 = ((($a)) + 15|0); - $34 = (_load_448($33)|0); - $35 = tempRet0; - $36 = (_bitshift64Lshr(($34|0),($35|0),6)|0); - $37 = tempRet0; - $38 = $36 & 2097151; - $39 = ((($a)) + 18|0); - $40 = (_load_347($39)|0); + $3 = $1; + $4 = $3; + $5 = HEAP32[$4>>2]|0; + $6 = (($3) + 4)|0; + $7 = $6; + $8 = HEAP32[$7>>2]|0; + $9 = (_bitshift64Ashr(0,($5|0),32)|0); + $10 = tempRet0; + $11 = $2; + $12 = $11; + $13 = HEAP32[$12>>2]|0; + $14 = (($11) + 4)|0; + $15 = $14; + $16 = HEAP32[$15>>2]|0; + $17 = (_bitshift64Ashr(0,($13|0),32)|0); + $18 = tempRet0; + $19 = (___muldi3(($17|0),($18|0),($9|0),($10|0))|0); + $20 = tempRet0; + $21 = $0; + $22 = $21; + HEAP32[$22>>2] = $19; + $23 = (($21) + 4)|0; + $24 = $23; + HEAP32[$24>>2] = $20; + $25 = $1; + $26 = $25; + $27 = HEAP32[$26>>2]|0; + $28 = (($25) + 4)|0; + $29 = $28; + $30 = HEAP32[$29>>2]|0; + $31 = (_bitshift64Ashr(0,($27|0),32)|0); + $32 = tempRet0; + $33 = ((($2)) + 8|0); + $34 = $33; + $35 = $34; + $36 = HEAP32[$35>>2]|0; + $37 = (($34) + 4)|0; + $38 = $37; + $39 = HEAP32[$38>>2]|0; + $40 = (_bitshift64Ashr(0,($36|0),32)|0); $41 = tempRet0; - $42 = (_bitshift64Lshr(($40|0),($41|0),3)|0); + $42 = (___muldi3(($40|0),($41|0),($31|0),($32|0))|0); $43 = tempRet0; - $44 = $42 & 2097151; - $45 = ((($a)) + 21|0); - $46 = (_load_347($45)|0); - $47 = tempRet0; - $48 = $46 & 2097151; - $49 = ((($a)) + 23|0); - $50 = (_load_448($49)|0); - $51 = tempRet0; - $52 = (_bitshift64Lshr(($50|0),($51|0),5)|0); - $53 = tempRet0; - $54 = $52 & 2097151; - $55 = ((($a)) + 26|0); - $56 = (_load_347($55)|0); - $57 = tempRet0; - $58 = (_bitshift64Lshr(($56|0),($57|0),2)|0); - $59 = tempRet0; - $60 = $58 & 2097151; - $61 = ((($a)) + 28|0); - $62 = (_load_448($61)|0); - $63 = tempRet0; - $64 = (_bitshift64Lshr(($62|0),($63|0),7)|0); - $65 = tempRet0; - $66 = (_load_347($b)|0); - $67 = tempRet0; - $68 = $66 & 2097151; - $69 = ((($b)) + 2|0); - $70 = (_load_448($69)|0); - $71 = tempRet0; - $72 = (_bitshift64Lshr(($70|0),($71|0),5)|0); - $73 = tempRet0; - $74 = $72 & 2097151; - $75 = ((($b)) + 5|0); - $76 = (_load_347($75)|0); + $44 = ((($1)) + 8|0); + $45 = $44; + $46 = $45; + $47 = HEAP32[$46>>2]|0; + $48 = (($45) + 4)|0; + $49 = $48; + $50 = HEAP32[$49>>2]|0; + $51 = (_bitshift64Ashr(0,($47|0),32)|0); + $52 = tempRet0; + $53 = $2; + $54 = $53; + $55 = HEAP32[$54>>2]|0; + $56 = (($53) + 4)|0; + $57 = $56; + $58 = HEAP32[$57>>2]|0; + $59 = (_bitshift64Ashr(0,($55|0),32)|0); + $60 = tempRet0; + $61 = (___muldi3(($59|0),($60|0),($51|0),($52|0))|0); + $62 = tempRet0; + $63 = (_i64Add(($61|0),($62|0),($42|0),($43|0))|0); + $64 = tempRet0; + $65 = ((($0)) + 8|0); + $66 = $65; + $67 = $66; + HEAP32[$67>>2] = $63; + $68 = (($66) + 4)|0; + $69 = $68; + HEAP32[$69>>2] = $64; + $70 = $44; + $71 = $70; + $72 = HEAP32[$71>>2]|0; + $73 = (($70) + 4)|0; + $74 = $73; + $75 = HEAP32[$74>>2]|0; + $76 = (_bitshift64Ashr(0,($72|0),31)|0); $77 = tempRet0; - $78 = (_bitshift64Lshr(($76|0),($77|0),2)|0); - $79 = tempRet0; - $80 = $78 & 2097151; - $81 = ((($b)) + 7|0); - $82 = (_load_448($81)|0); - $83 = tempRet0; - $84 = (_bitshift64Lshr(($82|0),($83|0),7)|0); + $78 = $33; + $79 = $78; + $80 = HEAP32[$79>>2]|0; + $81 = (($78) + 4)|0; + $82 = $81; + $83 = HEAP32[$82>>2]|0; + $84 = (_bitshift64Ashr(0,($80|0),32)|0); $85 = tempRet0; - $86 = $84 & 2097151; - $87 = ((($b)) + 10|0); - $88 = (_load_448($87)|0); - $89 = tempRet0; - $90 = (_bitshift64Lshr(($88|0),($89|0),4)|0); - $91 = tempRet0; - $92 = $90 & 2097151; - $93 = ((($b)) + 13|0); - $94 = (_load_347($93)|0); + $86 = (___muldi3(($84|0),($85|0),($76|0),($77|0))|0); + $87 = tempRet0; + $88 = $1; + $89 = $88; + $90 = HEAP32[$89>>2]|0; + $91 = (($88) + 4)|0; + $92 = $91; + $93 = HEAP32[$92>>2]|0; + $94 = (_bitshift64Ashr(0,($90|0),32)|0); $95 = tempRet0; - $96 = (_bitshift64Lshr(($94|0),($95|0),1)|0); - $97 = tempRet0; - $98 = $96 & 2097151; - $99 = ((($b)) + 15|0); - $100 = (_load_448($99)|0); - $101 = tempRet0; - $102 = (_bitshift64Lshr(($100|0),($101|0),6)|0); - $103 = tempRet0; - $104 = $102 & 2097151; - $105 = ((($b)) + 18|0); - $106 = (_load_347($105)|0); - $107 = tempRet0; - $108 = (_bitshift64Lshr(($106|0),($107|0),3)|0); - $109 = tempRet0; - $110 = $108 & 2097151; - $111 = ((($b)) + 21|0); - $112 = (_load_347($111)|0); - $113 = tempRet0; - $114 = $112 & 2097151; - $115 = ((($b)) + 23|0); - $116 = (_load_448($115)|0); + $96 = ((($2)) + 16|0); + $97 = $96; + $98 = $97; + $99 = HEAP32[$98>>2]|0; + $100 = (($97) + 4)|0; + $101 = $100; + $102 = HEAP32[$101>>2]|0; + $103 = (_bitshift64Ashr(0,($99|0),32)|0); + $104 = tempRet0; + $105 = (___muldi3(($103|0),($104|0),($94|0),($95|0))|0); + $106 = tempRet0; + $107 = (_i64Add(($105|0),($106|0),($86|0),($87|0))|0); + $108 = tempRet0; + $109 = ((($1)) + 16|0); + $110 = $109; + $111 = $110; + $112 = HEAP32[$111>>2]|0; + $113 = (($110) + 4)|0; + $114 = $113; + $115 = HEAP32[$114>>2]|0; + $116 = (_bitshift64Ashr(0,($112|0),32)|0); $117 = tempRet0; - $118 = (_bitshift64Lshr(($116|0),($117|0),5)|0); - $119 = tempRet0; - $120 = $118 & 2097151; - $121 = ((($b)) + 26|0); - $122 = (_load_347($121)|0); - $123 = tempRet0; - $124 = (_bitshift64Lshr(($122|0),($123|0),2)|0); + $118 = $2; + $119 = $118; + $120 = HEAP32[$119>>2]|0; + $121 = (($118) + 4)|0; + $122 = $121; + $123 = HEAP32[$122>>2]|0; + $124 = (_bitshift64Ashr(0,($120|0),32)|0); $125 = tempRet0; - $126 = $124 & 2097151; - $127 = ((($b)) + 28|0); - $128 = (_load_448($127)|0); + $126 = (___muldi3(($124|0),($125|0),($116|0),($117|0))|0); + $127 = tempRet0; + $128 = (_i64Add(($107|0),($108|0),($126|0),($127|0))|0); $129 = tempRet0; - $130 = (_bitshift64Lshr(($128|0),($129|0),7)|0); - $131 = tempRet0; - $132 = (_load_347($c)|0); - $133 = tempRet0; - $134 = $132 & 2097151; - $135 = ((($c)) + 2|0); - $136 = (_load_448($135)|0); - $137 = tempRet0; - $138 = (_bitshift64Lshr(($136|0),($137|0),5)|0); - $139 = tempRet0; - $140 = $138 & 2097151; - $141 = ((($c)) + 5|0); - $142 = (_load_347($141)|0); - $143 = tempRet0; - $144 = (_bitshift64Lshr(($142|0),($143|0),2)|0); - $145 = tempRet0; - $146 = $144 & 2097151; - $147 = ((($c)) + 7|0); - $148 = (_load_448($147)|0); - $149 = tempRet0; - $150 = (_bitshift64Lshr(($148|0),($149|0),7)|0); - $151 = tempRet0; - $152 = $150 & 2097151; - $153 = ((($c)) + 10|0); - $154 = (_load_448($153)|0); - $155 = tempRet0; - $156 = (_bitshift64Lshr(($154|0),($155|0),4)|0); - $157 = tempRet0; - $158 = $156 & 2097151; - $159 = ((($c)) + 13|0); - $160 = (_load_347($159)|0); - $161 = tempRet0; - $162 = (_bitshift64Lshr(($160|0),($161|0),1)|0); - $163 = tempRet0; - $164 = $162 & 2097151; - $165 = ((($c)) + 15|0); - $166 = (_load_448($165)|0); - $167 = tempRet0; - $168 = (_bitshift64Lshr(($166|0),($167|0),6)|0); - $169 = tempRet0; - $170 = $168 & 2097151; - $171 = ((($c)) + 18|0); - $172 = (_load_347($171)|0); - $173 = tempRet0; - $174 = (_bitshift64Lshr(($172|0),($173|0),3)|0); - $175 = tempRet0; - $176 = $174 & 2097151; - $177 = ((($c)) + 21|0); - $178 = (_load_347($177)|0); - $179 = tempRet0; - $180 = $178 & 2097151; - $181 = ((($c)) + 23|0); - $182 = (_load_448($181)|0); - $183 = tempRet0; - $184 = (_bitshift64Lshr(($182|0),($183|0),5)|0); - $185 = tempRet0; - $186 = $184 & 2097151; - $187 = ((($c)) + 26|0); - $188 = (_load_347($187)|0); + $130 = ((($0)) + 16|0); + $131 = $130; + $132 = $131; + HEAP32[$132>>2] = $128; + $133 = (($131) + 4)|0; + $134 = $133; + HEAP32[$134>>2] = $129; + $135 = $44; + $136 = $135; + $137 = HEAP32[$136>>2]|0; + $138 = (($135) + 4)|0; + $139 = $138; + $140 = HEAP32[$139>>2]|0; + $141 = (_bitshift64Ashr(0,($137|0),32)|0); + $142 = tempRet0; + $143 = $96; + $144 = $143; + $145 = HEAP32[$144>>2]|0; + $146 = (($143) + 4)|0; + $147 = $146; + $148 = HEAP32[$147>>2]|0; + $149 = (_bitshift64Ashr(0,($145|0),32)|0); + $150 = tempRet0; + $151 = (___muldi3(($149|0),($150|0),($141|0),($142|0))|0); + $152 = tempRet0; + $153 = $109; + $154 = $153; + $155 = HEAP32[$154>>2]|0; + $156 = (($153) + 4)|0; + $157 = $156; + $158 = HEAP32[$157>>2]|0; + $159 = (_bitshift64Ashr(0,($155|0),32)|0); + $160 = tempRet0; + $161 = $33; + $162 = $161; + $163 = HEAP32[$162>>2]|0; + $164 = (($161) + 4)|0; + $165 = $164; + $166 = HEAP32[$165>>2]|0; + $167 = (_bitshift64Ashr(0,($163|0),32)|0); + $168 = tempRet0; + $169 = (___muldi3(($167|0),($168|0),($159|0),($160|0))|0); + $170 = tempRet0; + $171 = (_i64Add(($169|0),($170|0),($151|0),($152|0))|0); + $172 = tempRet0; + $173 = $1; + $174 = $173; + $175 = HEAP32[$174>>2]|0; + $176 = (($173) + 4)|0; + $177 = $176; + $178 = HEAP32[$177>>2]|0; + $179 = (_bitshift64Ashr(0,($175|0),32)|0); + $180 = tempRet0; + $181 = ((($2)) + 24|0); + $182 = $181; + $183 = $182; + $184 = HEAP32[$183>>2]|0; + $185 = (($182) + 4)|0; + $186 = $185; + $187 = HEAP32[$186>>2]|0; + $188 = (_bitshift64Ashr(0,($184|0),32)|0); $189 = tempRet0; - $190 = (_bitshift64Lshr(($188|0),($189|0),2)|0); + $190 = (___muldi3(($188|0),($189|0),($179|0),($180|0))|0); $191 = tempRet0; - $192 = $190 & 2097151; - $193 = ((($c)) + 28|0); - $194 = (_load_448($193)|0); - $195 = tempRet0; - $196 = (_bitshift64Lshr(($194|0),($195|0),7)|0); - $197 = tempRet0; - $198 = (___muldi3(($68|0),0,($2|0),0)|0); - $199 = tempRet0; - $200 = (_i64Add(($134|0),0,($198|0),($199|0))|0); - $201 = tempRet0; - $202 = (___muldi3(($74|0),0,($2|0),0)|0); - $203 = tempRet0; - $204 = (___muldi3(($68|0),0,($8|0),0)|0); - $205 = tempRet0; - $206 = (___muldi3(($80|0),0,($2|0),0)|0); - $207 = tempRet0; - $208 = (___muldi3(($74|0),0,($8|0),0)|0); - $209 = tempRet0; - $210 = (___muldi3(($68|0),0,($14|0),0)|0); - $211 = tempRet0; - $212 = (_i64Add(($208|0),($209|0),($210|0),($211|0))|0); - $213 = tempRet0; - $214 = (_i64Add(($212|0),($213|0),($206|0),($207|0))|0); - $215 = tempRet0; - $216 = (_i64Add(($214|0),($215|0),($146|0),0)|0); - $217 = tempRet0; - $218 = (___muldi3(($86|0),0,($2|0),0)|0); - $219 = tempRet0; - $220 = (___muldi3(($80|0),0,($8|0),0)|0); - $221 = tempRet0; - $222 = (___muldi3(($74|0),0,($14|0),0)|0); - $223 = tempRet0; - $224 = (___muldi3(($68|0),0,($20|0),0)|0); - $225 = tempRet0; - $226 = (___muldi3(($92|0),0,($2|0),0)|0); - $227 = tempRet0; - $228 = (___muldi3(($86|0),0,($8|0),0)|0); - $229 = tempRet0; - $230 = (___muldi3(($80|0),0,($14|0),0)|0); - $231 = tempRet0; - $232 = (___muldi3(($74|0),0,($20|0),0)|0); - $233 = tempRet0; - $234 = (___muldi3(($68|0),0,($26|0),0)|0); - $235 = tempRet0; - $236 = (_i64Add(($232|0),($233|0),($234|0),($235|0))|0); - $237 = tempRet0; - $238 = (_i64Add(($236|0),($237|0),($230|0),($231|0))|0); - $239 = tempRet0; - $240 = (_i64Add(($238|0),($239|0),($228|0),($229|0))|0); - $241 = tempRet0; - $242 = (_i64Add(($240|0),($241|0),($226|0),($227|0))|0); - $243 = tempRet0; - $244 = (_i64Add(($242|0),($243|0),($158|0),0)|0); - $245 = tempRet0; - $246 = (___muldi3(($98|0),0,($2|0),0)|0); - $247 = tempRet0; - $248 = (___muldi3(($92|0),0,($8|0),0)|0); - $249 = tempRet0; - $250 = (___muldi3(($86|0),0,($14|0),0)|0); - $251 = tempRet0; - $252 = (___muldi3(($80|0),0,($20|0),0)|0); - $253 = tempRet0; - $254 = (___muldi3(($74|0),0,($26|0),0)|0); - $255 = tempRet0; - $256 = (___muldi3(($68|0),0,($32|0),0)|0); - $257 = tempRet0; - $258 = (___muldi3(($104|0),0,($2|0),0)|0); - $259 = tempRet0; - $260 = (___muldi3(($98|0),0,($8|0),0)|0); - $261 = tempRet0; - $262 = (___muldi3(($92|0),0,($14|0),0)|0); - $263 = tempRet0; - $264 = (___muldi3(($86|0),0,($20|0),0)|0); - $265 = tempRet0; - $266 = (___muldi3(($80|0),0,($26|0),0)|0); - $267 = tempRet0; - $268 = (___muldi3(($74|0),0,($32|0),0)|0); - $269 = tempRet0; - $270 = (___muldi3(($68|0),0,($38|0),0)|0); - $271 = tempRet0; - $272 = (_i64Add(($268|0),($269|0),($270|0),($271|0))|0); - $273 = tempRet0; - $274 = (_i64Add(($272|0),($273|0),($266|0),($267|0))|0); - $275 = tempRet0; - $276 = (_i64Add(($274|0),($275|0),($264|0),($265|0))|0); - $277 = tempRet0; - $278 = (_i64Add(($276|0),($277|0),($262|0),($263|0))|0); - $279 = tempRet0; - $280 = (_i64Add(($278|0),($279|0),($260|0),($261|0))|0); - $281 = tempRet0; - $282 = (_i64Add(($280|0),($281|0),($258|0),($259|0))|0); - $283 = tempRet0; - $284 = (_i64Add(($282|0),($283|0),($170|0),0)|0); - $285 = tempRet0; - $286 = (___muldi3(($110|0),0,($2|0),0)|0); - $287 = tempRet0; - $288 = (___muldi3(($104|0),0,($8|0),0)|0); - $289 = tempRet0; - $290 = (___muldi3(($98|0),0,($14|0),0)|0); - $291 = tempRet0; - $292 = (___muldi3(($92|0),0,($20|0),0)|0); - $293 = tempRet0; - $294 = (___muldi3(($86|0),0,($26|0),0)|0); - $295 = tempRet0; - $296 = (___muldi3(($80|0),0,($32|0),0)|0); - $297 = tempRet0; - $298 = (___muldi3(($74|0),0,($38|0),0)|0); - $299 = tempRet0; - $300 = (___muldi3(($68|0),0,($44|0),0)|0); - $301 = tempRet0; - $302 = (___muldi3(($114|0),0,($2|0),0)|0); - $303 = tempRet0; - $304 = (___muldi3(($110|0),0,($8|0),0)|0); - $305 = tempRet0; - $306 = (___muldi3(($104|0),0,($14|0),0)|0); - $307 = tempRet0; - $308 = (___muldi3(($98|0),0,($20|0),0)|0); - $309 = tempRet0; - $310 = (___muldi3(($92|0),0,($26|0),0)|0); - $311 = tempRet0; - $312 = (___muldi3(($86|0),0,($32|0),0)|0); - $313 = tempRet0; - $314 = (___muldi3(($80|0),0,($38|0),0)|0); - $315 = tempRet0; - $316 = (___muldi3(($74|0),0,($44|0),0)|0); - $317 = tempRet0; - $318 = (___muldi3(($68|0),0,($48|0),0)|0); - $319 = tempRet0; - $320 = (_i64Add(($316|0),($317|0),($318|0),($319|0))|0); - $321 = tempRet0; - $322 = (_i64Add(($320|0),($321|0),($314|0),($315|0))|0); - $323 = tempRet0; - $324 = (_i64Add(($322|0),($323|0),($312|0),($313|0))|0); - $325 = tempRet0; - $326 = (_i64Add(($324|0),($325|0),($310|0),($311|0))|0); - $327 = tempRet0; - $328 = (_i64Add(($326|0),($327|0),($308|0),($309|0))|0); - $329 = tempRet0; - $330 = (_i64Add(($328|0),($329|0),($306|0),($307|0))|0); - $331 = tempRet0; - $332 = (_i64Add(($330|0),($331|0),($302|0),($303|0))|0); - $333 = tempRet0; - $334 = (_i64Add(($332|0),($333|0),($304|0),($305|0))|0); - $335 = tempRet0; - $336 = (_i64Add(($334|0),($335|0),($180|0),0)|0); - $337 = tempRet0; - $338 = (___muldi3(($120|0),0,($2|0),0)|0); - $339 = tempRet0; - $340 = (___muldi3(($114|0),0,($8|0),0)|0); - $341 = tempRet0; - $342 = (___muldi3(($110|0),0,($14|0),0)|0); - $343 = tempRet0; - $344 = (___muldi3(($104|0),0,($20|0),0)|0); - $345 = tempRet0; - $346 = (___muldi3(($98|0),0,($26|0),0)|0); - $347 = tempRet0; - $348 = (___muldi3(($92|0),0,($32|0),0)|0); - $349 = tempRet0; - $350 = (___muldi3(($86|0),0,($38|0),0)|0); - $351 = tempRet0; - $352 = (___muldi3(($80|0),0,($44|0),0)|0); - $353 = tempRet0; - $354 = (___muldi3(($74|0),0,($48|0),0)|0); - $355 = tempRet0; - $356 = (___muldi3(($68|0),0,($54|0),0)|0); - $357 = tempRet0; - $358 = (___muldi3(($126|0),0,($2|0),0)|0); - $359 = tempRet0; - $360 = (___muldi3(($120|0),0,($8|0),0)|0); - $361 = tempRet0; - $362 = (___muldi3(($114|0),0,($14|0),0)|0); - $363 = tempRet0; - $364 = (___muldi3(($110|0),0,($20|0),0)|0); - $365 = tempRet0; - $366 = (___muldi3(($104|0),0,($26|0),0)|0); - $367 = tempRet0; - $368 = (___muldi3(($98|0),0,($32|0),0)|0); - $369 = tempRet0; - $370 = (___muldi3(($92|0),0,($38|0),0)|0); - $371 = tempRet0; - $372 = (___muldi3(($86|0),0,($44|0),0)|0); - $373 = tempRet0; - $374 = (___muldi3(($80|0),0,($48|0),0)|0); - $375 = tempRet0; - $376 = (___muldi3(($74|0),0,($54|0),0)|0); - $377 = tempRet0; - $378 = (___muldi3(($68|0),0,($60|0),0)|0); - $379 = tempRet0; - $380 = (_i64Add(($376|0),($377|0),($378|0),($379|0))|0); - $381 = tempRet0; - $382 = (_i64Add(($380|0),($381|0),($374|0),($375|0))|0); - $383 = tempRet0; - $384 = (_i64Add(($382|0),($383|0),($372|0),($373|0))|0); - $385 = tempRet0; - $386 = (_i64Add(($384|0),($385|0),($370|0),($371|0))|0); - $387 = tempRet0; - $388 = (_i64Add(($386|0),($387|0),($368|0),($369|0))|0); - $389 = tempRet0; - $390 = (_i64Add(($388|0),($389|0),($366|0),($367|0))|0); - $391 = tempRet0; - $392 = (_i64Add(($390|0),($391|0),($362|0),($363|0))|0); - $393 = tempRet0; - $394 = (_i64Add(($392|0),($393|0),($364|0),($365|0))|0); - $395 = tempRet0; - $396 = (_i64Add(($394|0),($395|0),($360|0),($361|0))|0); - $397 = tempRet0; - $398 = (_i64Add(($396|0),($397|0),($358|0),($359|0))|0); - $399 = tempRet0; - $400 = (_i64Add(($398|0),($399|0),($192|0),0)|0); - $401 = tempRet0; - $402 = (___muldi3(($130|0),($131|0),($2|0),0)|0); - $403 = tempRet0; - $404 = (___muldi3(($126|0),0,($8|0),0)|0); - $405 = tempRet0; - $406 = (___muldi3(($120|0),0,($14|0),0)|0); - $407 = tempRet0; - $408 = (___muldi3(($114|0),0,($20|0),0)|0); - $409 = tempRet0; - $410 = (___muldi3(($110|0),0,($26|0),0)|0); - $411 = tempRet0; - $412 = (___muldi3(($104|0),0,($32|0),0)|0); - $413 = tempRet0; - $414 = (___muldi3(($98|0),0,($38|0),0)|0); - $415 = tempRet0; - $416 = (___muldi3(($92|0),0,($44|0),0)|0); - $417 = tempRet0; - $418 = (___muldi3(($86|0),0,($48|0),0)|0); - $419 = tempRet0; - $420 = (___muldi3(($80|0),0,($54|0),0)|0); + $192 = (_i64Add(($171|0),($172|0),($190|0),($191|0))|0); + $193 = tempRet0; + $194 = ((($1)) + 24|0); + $195 = $194; + $196 = $195; + $197 = HEAP32[$196>>2]|0; + $198 = (($195) + 4)|0; + $199 = $198; + $200 = HEAP32[$199>>2]|0; + $201 = (_bitshift64Ashr(0,($197|0),32)|0); + $202 = tempRet0; + $203 = $2; + $204 = $203; + $205 = HEAP32[$204>>2]|0; + $206 = (($203) + 4)|0; + $207 = $206; + $208 = HEAP32[$207>>2]|0; + $209 = (_bitshift64Ashr(0,($205|0),32)|0); + $210 = tempRet0; + $211 = (___muldi3(($209|0),($210|0),($201|0),($202|0))|0); + $212 = tempRet0; + $213 = (_i64Add(($192|0),($193|0),($211|0),($212|0))|0); + $214 = tempRet0; + $215 = ((($0)) + 24|0); + $216 = $215; + $217 = $216; + HEAP32[$217>>2] = $213; + $218 = (($216) + 4)|0; + $219 = $218; + HEAP32[$219>>2] = $214; + $220 = $109; + $221 = $220; + $222 = HEAP32[$221>>2]|0; + $223 = (($220) + 4)|0; + $224 = $223; + $225 = HEAP32[$224>>2]|0; + $226 = (_bitshift64Ashr(0,($222|0),32)|0); + $227 = tempRet0; + $228 = $96; + $229 = $228; + $230 = HEAP32[$229>>2]|0; + $231 = (($228) + 4)|0; + $232 = $231; + $233 = HEAP32[$232>>2]|0; + $234 = (_bitshift64Ashr(0,($230|0),32)|0); + $235 = tempRet0; + $236 = (___muldi3(($234|0),($235|0),($226|0),($227|0))|0); + $237 = tempRet0; + $238 = $44; + $239 = $238; + $240 = HEAP32[$239>>2]|0; + $241 = (($238) + 4)|0; + $242 = $241; + $243 = HEAP32[$242>>2]|0; + $244 = (_bitshift64Ashr(0,($240|0),32)|0); + $245 = tempRet0; + $246 = $181; + $247 = $246; + $248 = HEAP32[$247>>2]|0; + $249 = (($246) + 4)|0; + $250 = $249; + $251 = HEAP32[$250>>2]|0; + $252 = (_bitshift64Ashr(0,($248|0),32)|0); + $253 = tempRet0; + $254 = (___muldi3(($252|0),($253|0),($244|0),($245|0))|0); + $255 = tempRet0; + $256 = $194; + $257 = $256; + $258 = HEAP32[$257>>2]|0; + $259 = (($256) + 4)|0; + $260 = $259; + $261 = HEAP32[$260>>2]|0; + $262 = (_bitshift64Ashr(0,($258|0),32)|0); + $263 = tempRet0; + $264 = $33; + $265 = $264; + $266 = HEAP32[$265>>2]|0; + $267 = (($264) + 4)|0; + $268 = $267; + $269 = HEAP32[$268>>2]|0; + $270 = (_bitshift64Ashr(0,($266|0),32)|0); + $271 = tempRet0; + $272 = (___muldi3(($270|0),($271|0),($262|0),($263|0))|0); + $273 = tempRet0; + $274 = (_i64Add(($272|0),($273|0),($254|0),($255|0))|0); + $275 = tempRet0; + $276 = (_bitshift64Shl(($274|0),($275|0),1)|0); + $277 = tempRet0; + $278 = (_i64Add(($276|0),($277|0),($236|0),($237|0))|0); + $279 = tempRet0; + $280 = $1; + $281 = $280; + $282 = HEAP32[$281>>2]|0; + $283 = (($280) + 4)|0; + $284 = $283; + $285 = HEAP32[$284>>2]|0; + $286 = (_bitshift64Ashr(0,($282|0),32)|0); + $287 = tempRet0; + $288 = ((($2)) + 32|0); + $289 = $288; + $290 = $289; + $291 = HEAP32[$290>>2]|0; + $292 = (($289) + 4)|0; + $293 = $292; + $294 = HEAP32[$293>>2]|0; + $295 = (_bitshift64Ashr(0,($291|0),32)|0); + $296 = tempRet0; + $297 = (___muldi3(($295|0),($296|0),($286|0),($287|0))|0); + $298 = tempRet0; + $299 = (_i64Add(($278|0),($279|0),($297|0),($298|0))|0); + $300 = tempRet0; + $301 = ((($1)) + 32|0); + $302 = $301; + $303 = $302; + $304 = HEAP32[$303>>2]|0; + $305 = (($302) + 4)|0; + $306 = $305; + $307 = HEAP32[$306>>2]|0; + $308 = (_bitshift64Ashr(0,($304|0),32)|0); + $309 = tempRet0; + $310 = $2; + $311 = $310; + $312 = HEAP32[$311>>2]|0; + $313 = (($310) + 4)|0; + $314 = $313; + $315 = HEAP32[$314>>2]|0; + $316 = (_bitshift64Ashr(0,($312|0),32)|0); + $317 = tempRet0; + $318 = (___muldi3(($316|0),($317|0),($308|0),($309|0))|0); + $319 = tempRet0; + $320 = (_i64Add(($299|0),($300|0),($318|0),($319|0))|0); + $321 = tempRet0; + $322 = ((($0)) + 32|0); + $323 = $322; + $324 = $323; + HEAP32[$324>>2] = $320; + $325 = (($323) + 4)|0; + $326 = $325; + HEAP32[$326>>2] = $321; + $327 = $109; + $328 = $327; + $329 = HEAP32[$328>>2]|0; + $330 = (($327) + 4)|0; + $331 = $330; + $332 = HEAP32[$331>>2]|0; + $333 = (_bitshift64Ashr(0,($329|0),32)|0); + $334 = tempRet0; + $335 = $181; + $336 = $335; + $337 = HEAP32[$336>>2]|0; + $338 = (($335) + 4)|0; + $339 = $338; + $340 = HEAP32[$339>>2]|0; + $341 = (_bitshift64Ashr(0,($337|0),32)|0); + $342 = tempRet0; + $343 = (___muldi3(($341|0),($342|0),($333|0),($334|0))|0); + $344 = tempRet0; + $345 = $194; + $346 = $345; + $347 = HEAP32[$346>>2]|0; + $348 = (($345) + 4)|0; + $349 = $348; + $350 = HEAP32[$349>>2]|0; + $351 = (_bitshift64Ashr(0,($347|0),32)|0); + $352 = tempRet0; + $353 = $96; + $354 = $353; + $355 = HEAP32[$354>>2]|0; + $356 = (($353) + 4)|0; + $357 = $356; + $358 = HEAP32[$357>>2]|0; + $359 = (_bitshift64Ashr(0,($355|0),32)|0); + $360 = tempRet0; + $361 = (___muldi3(($359|0),($360|0),($351|0),($352|0))|0); + $362 = tempRet0; + $363 = (_i64Add(($361|0),($362|0),($343|0),($344|0))|0); + $364 = tempRet0; + $365 = $44; + $366 = $365; + $367 = HEAP32[$366>>2]|0; + $368 = (($365) + 4)|0; + $369 = $368; + $370 = HEAP32[$369>>2]|0; + $371 = (_bitshift64Ashr(0,($367|0),32)|0); + $372 = tempRet0; + $373 = $288; + $374 = $373; + $375 = HEAP32[$374>>2]|0; + $376 = (($373) + 4)|0; + $377 = $376; + $378 = HEAP32[$377>>2]|0; + $379 = (_bitshift64Ashr(0,($375|0),32)|0); + $380 = tempRet0; + $381 = (___muldi3(($379|0),($380|0),($371|0),($372|0))|0); + $382 = tempRet0; + $383 = (_i64Add(($363|0),($364|0),($381|0),($382|0))|0); + $384 = tempRet0; + $385 = $301; + $386 = $385; + $387 = HEAP32[$386>>2]|0; + $388 = (($385) + 4)|0; + $389 = $388; + $390 = HEAP32[$389>>2]|0; + $391 = (_bitshift64Ashr(0,($387|0),32)|0); + $392 = tempRet0; + $393 = $33; + $394 = $393; + $395 = HEAP32[$394>>2]|0; + $396 = (($393) + 4)|0; + $397 = $396; + $398 = HEAP32[$397>>2]|0; + $399 = (_bitshift64Ashr(0,($395|0),32)|0); + $400 = tempRet0; + $401 = (___muldi3(($399|0),($400|0),($391|0),($392|0))|0); + $402 = tempRet0; + $403 = (_i64Add(($383|0),($384|0),($401|0),($402|0))|0); + $404 = tempRet0; + $405 = $1; + $406 = $405; + $407 = HEAP32[$406>>2]|0; + $408 = (($405) + 4)|0; + $409 = $408; + $410 = HEAP32[$409>>2]|0; + $411 = (_bitshift64Ashr(0,($407|0),32)|0); + $412 = tempRet0; + $413 = ((($2)) + 40|0); + $414 = $413; + $415 = $414; + $416 = HEAP32[$415>>2]|0; + $417 = (($414) + 4)|0; + $418 = $417; + $419 = HEAP32[$418>>2]|0; + $420 = (_bitshift64Ashr(0,($416|0),32)|0); $421 = tempRet0; - $422 = (___muldi3(($74|0),0,($60|0),0)|0); + $422 = (___muldi3(($420|0),($421|0),($411|0),($412|0))|0); $423 = tempRet0; - $424 = (___muldi3(($68|0),0,($64|0),($65|0))|0); + $424 = (_i64Add(($403|0),($404|0),($422|0),($423|0))|0); $425 = tempRet0; - $426 = (___muldi3(($130|0),($131|0),($8|0),0)|0); - $427 = tempRet0; - $428 = (___muldi3(($126|0),0,($14|0),0)|0); - $429 = tempRet0; - $430 = (___muldi3(($120|0),0,($20|0),0)|0); - $431 = tempRet0; - $432 = (___muldi3(($114|0),0,($26|0),0)|0); - $433 = tempRet0; - $434 = (___muldi3(($110|0),0,($32|0),0)|0); - $435 = tempRet0; - $436 = (___muldi3(($104|0),0,($38|0),0)|0); - $437 = tempRet0; - $438 = (___muldi3(($98|0),0,($44|0),0)|0); - $439 = tempRet0; - $440 = (___muldi3(($92|0),0,($48|0),0)|0); - $441 = tempRet0; - $442 = (___muldi3(($86|0),0,($54|0),0)|0); - $443 = tempRet0; - $444 = (___muldi3(($80|0),0,($60|0),0)|0); - $445 = tempRet0; - $446 = (___muldi3(($74|0),0,($64|0),($65|0))|0); - $447 = tempRet0; - $448 = (_i64Add(($444|0),($445|0),($446|0),($447|0))|0); - $449 = tempRet0; - $450 = (_i64Add(($448|0),($449|0),($442|0),($443|0))|0); - $451 = tempRet0; - $452 = (_i64Add(($450|0),($451|0),($440|0),($441|0))|0); - $453 = tempRet0; - $454 = (_i64Add(($452|0),($453|0),($438|0),($439|0))|0); - $455 = tempRet0; - $456 = (_i64Add(($454|0),($455|0),($436|0),($437|0))|0); - $457 = tempRet0; - $458 = (_i64Add(($456|0),($457|0),($432|0),($433|0))|0); + $426 = ((($1)) + 40|0); + $427 = $426; + $428 = $427; + $429 = HEAP32[$428>>2]|0; + $430 = (($427) + 4)|0; + $431 = $430; + $432 = HEAP32[$431>>2]|0; + $433 = (_bitshift64Ashr(0,($429|0),32)|0); + $434 = tempRet0; + $435 = $2; + $436 = $435; + $437 = HEAP32[$436>>2]|0; + $438 = (($435) + 4)|0; + $439 = $438; + $440 = HEAP32[$439>>2]|0; + $441 = (_bitshift64Ashr(0,($437|0),32)|0); + $442 = tempRet0; + $443 = (___muldi3(($441|0),($442|0),($433|0),($434|0))|0); + $444 = tempRet0; + $445 = (_i64Add(($424|0),($425|0),($443|0),($444|0))|0); + $446 = tempRet0; + $447 = ((($0)) + 40|0); + $448 = $447; + $449 = $448; + HEAP32[$449>>2] = $445; + $450 = (($448) + 4)|0; + $451 = $450; + HEAP32[$451>>2] = $446; + $452 = $194; + $453 = $452; + $454 = HEAP32[$453>>2]|0; + $455 = (($452) + 4)|0; + $456 = $455; + $457 = HEAP32[$456>>2]|0; + $458 = (_bitshift64Ashr(0,($454|0),32)|0); $459 = tempRet0; - $460 = (_i64Add(($458|0),($459|0),($434|0),($435|0))|0); - $461 = tempRet0; - $462 = (_i64Add(($460|0),($461|0),($430|0),($431|0))|0); - $463 = tempRet0; - $464 = (_i64Add(($462|0),($463|0),($428|0),($429|0))|0); - $465 = tempRet0; - $466 = (_i64Add(($464|0),($465|0),($426|0),($427|0))|0); + $460 = $181; + $461 = $460; + $462 = HEAP32[$461>>2]|0; + $463 = (($460) + 4)|0; + $464 = $463; + $465 = HEAP32[$464>>2]|0; + $466 = (_bitshift64Ashr(0,($462|0),32)|0); $467 = tempRet0; - $468 = (___muldi3(($130|0),($131|0),($14|0),0)|0); + $468 = (___muldi3(($466|0),($467|0),($458|0),($459|0))|0); $469 = tempRet0; - $470 = (___muldi3(($126|0),0,($20|0),0)|0); - $471 = tempRet0; - $472 = (___muldi3(($120|0),0,($26|0),0)|0); - $473 = tempRet0; - $474 = (___muldi3(($114|0),0,($32|0),0)|0); - $475 = tempRet0; - $476 = (___muldi3(($110|0),0,($38|0),0)|0); + $470 = $44; + $471 = $470; + $472 = HEAP32[$471>>2]|0; + $473 = (($470) + 4)|0; + $474 = $473; + $475 = HEAP32[$474>>2]|0; + $476 = (_bitshift64Ashr(0,($472|0),32)|0); $477 = tempRet0; - $478 = (___muldi3(($104|0),0,($44|0),0)|0); - $479 = tempRet0; - $480 = (___muldi3(($98|0),0,($48|0),0)|0); - $481 = tempRet0; - $482 = (___muldi3(($92|0),0,($54|0),0)|0); - $483 = tempRet0; - $484 = (___muldi3(($86|0),0,($60|0),0)|0); + $478 = $413; + $479 = $478; + $480 = HEAP32[$479>>2]|0; + $481 = (($478) + 4)|0; + $482 = $481; + $483 = HEAP32[$482>>2]|0; + $484 = (_bitshift64Ashr(0,($480|0),32)|0); $485 = tempRet0; - $486 = (___muldi3(($80|0),0,($64|0),($65|0))|0); + $486 = (___muldi3(($484|0),($485|0),($476|0),($477|0))|0); $487 = tempRet0; - $488 = (___muldi3(($130|0),($131|0),($20|0),0)|0); + $488 = (_i64Add(($486|0),($487|0),($468|0),($469|0))|0); $489 = tempRet0; - $490 = (___muldi3(($126|0),0,($26|0),0)|0); - $491 = tempRet0; - $492 = (___muldi3(($120|0),0,($32|0),0)|0); - $493 = tempRet0; - $494 = (___muldi3(($114|0),0,($38|0),0)|0); - $495 = tempRet0; - $496 = (___muldi3(($110|0),0,($44|0),0)|0); + $490 = $426; + $491 = $490; + $492 = HEAP32[$491>>2]|0; + $493 = (($490) + 4)|0; + $494 = $493; + $495 = HEAP32[$494>>2]|0; + $496 = (_bitshift64Ashr(0,($492|0),32)|0); $497 = tempRet0; - $498 = (___muldi3(($104|0),0,($48|0),0)|0); - $499 = tempRet0; - $500 = (___muldi3(($98|0),0,($54|0),0)|0); - $501 = tempRet0; - $502 = (___muldi3(($92|0),0,($60|0),0)|0); - $503 = tempRet0; - $504 = (___muldi3(($86|0),0,($64|0),($65|0))|0); + $498 = $33; + $499 = $498; + $500 = HEAP32[$499>>2]|0; + $501 = (($498) + 4)|0; + $502 = $501; + $503 = HEAP32[$502>>2]|0; + $504 = (_bitshift64Ashr(0,($500|0),32)|0); $505 = tempRet0; - $506 = (_i64Add(($502|0),($503|0),($504|0),($505|0))|0); + $506 = (___muldi3(($504|0),($505|0),($496|0),($497|0))|0); $507 = tempRet0; - $508 = (_i64Add(($506|0),($507|0),($500|0),($501|0))|0); + $508 = (_i64Add(($488|0),($489|0),($506|0),($507|0))|0); $509 = tempRet0; - $510 = (_i64Add(($508|0),($509|0),($498|0),($499|0))|0); + $510 = (_bitshift64Shl(($508|0),($509|0),1)|0); $511 = tempRet0; - $512 = (_i64Add(($510|0),($511|0),($494|0),($495|0))|0); - $513 = tempRet0; - $514 = (_i64Add(($512|0),($513|0),($496|0),($497|0))|0); - $515 = tempRet0; - $516 = (_i64Add(($514|0),($515|0),($492|0),($493|0))|0); - $517 = tempRet0; - $518 = (_i64Add(($516|0),($517|0),($490|0),($491|0))|0); + $512 = $109; + $513 = $512; + $514 = HEAP32[$513>>2]|0; + $515 = (($512) + 4)|0; + $516 = $515; + $517 = HEAP32[$516>>2]|0; + $518 = (_bitshift64Ashr(0,($514|0),32)|0); $519 = tempRet0; - $520 = (_i64Add(($518|0),($519|0),($488|0),($489|0))|0); - $521 = tempRet0; - $522 = (___muldi3(($130|0),($131|0),($26|0),0)|0); - $523 = tempRet0; - $524 = (___muldi3(($126|0),0,($32|0),0)|0); - $525 = tempRet0; - $526 = (___muldi3(($120|0),0,($38|0),0)|0); + $520 = $288; + $521 = $520; + $522 = HEAP32[$521>>2]|0; + $523 = (($520) + 4)|0; + $524 = $523; + $525 = HEAP32[$524>>2]|0; + $526 = (_bitshift64Ashr(0,($522|0),32)|0); $527 = tempRet0; - $528 = (___muldi3(($114|0),0,($44|0),0)|0); + $528 = (___muldi3(($526|0),($527|0),($518|0),($519|0))|0); $529 = tempRet0; - $530 = (___muldi3(($110|0),0,($48|0),0)|0); + $530 = (_i64Add(($510|0),($511|0),($528|0),($529|0))|0); $531 = tempRet0; - $532 = (___muldi3(($104|0),0,($54|0),0)|0); - $533 = tempRet0; - $534 = (___muldi3(($98|0),0,($60|0),0)|0); - $535 = tempRet0; - $536 = (___muldi3(($92|0),0,($64|0),($65|0))|0); - $537 = tempRet0; - $538 = (___muldi3(($130|0),($131|0),($32|0),0)|0); + $532 = $301; + $533 = $532; + $534 = HEAP32[$533>>2]|0; + $535 = (($532) + 4)|0; + $536 = $535; + $537 = HEAP32[$536>>2]|0; + $538 = (_bitshift64Ashr(0,($534|0),32)|0); $539 = tempRet0; - $540 = (___muldi3(($126|0),0,($38|0),0)|0); - $541 = tempRet0; - $542 = (___muldi3(($120|0),0,($44|0),0)|0); - $543 = tempRet0; - $544 = (___muldi3(($114|0),0,($48|0),0)|0); - $545 = tempRet0; - $546 = (___muldi3(($110|0),0,($54|0),0)|0); + $540 = $96; + $541 = $540; + $542 = HEAP32[$541>>2]|0; + $543 = (($540) + 4)|0; + $544 = $543; + $545 = HEAP32[$544>>2]|0; + $546 = (_bitshift64Ashr(0,($542|0),32)|0); $547 = tempRet0; - $548 = (___muldi3(($104|0),0,($60|0),0)|0); + $548 = (___muldi3(($546|0),($547|0),($538|0),($539|0))|0); $549 = tempRet0; - $550 = (___muldi3(($98|0),0,($64|0),($65|0))|0); + $550 = (_i64Add(($530|0),($531|0),($548|0),($549|0))|0); $551 = tempRet0; - $552 = (_i64Add(($548|0),($549|0),($550|0),($551|0))|0); - $553 = tempRet0; - $554 = (_i64Add(($552|0),($553|0),($544|0),($545|0))|0); - $555 = tempRet0; - $556 = (_i64Add(($554|0),($555|0),($546|0),($547|0))|0); - $557 = tempRet0; - $558 = (_i64Add(($556|0),($557|0),($542|0),($543|0))|0); + $552 = $1; + $553 = $552; + $554 = HEAP32[$553>>2]|0; + $555 = (($552) + 4)|0; + $556 = $555; + $557 = HEAP32[$556>>2]|0; + $558 = (_bitshift64Ashr(0,($554|0),32)|0); $559 = tempRet0; - $560 = (_i64Add(($558|0),($559|0),($540|0),($541|0))|0); - $561 = tempRet0; - $562 = (_i64Add(($560|0),($561|0),($538|0),($539|0))|0); - $563 = tempRet0; - $564 = (___muldi3(($130|0),($131|0),($38|0),0)|0); - $565 = tempRet0; - $566 = (___muldi3(($126|0),0,($44|0),0)|0); - $567 = tempRet0; - $568 = (___muldi3(($120|0),0,($48|0),0)|0); - $569 = tempRet0; - $570 = (___muldi3(($114|0),0,($54|0),0)|0); - $571 = tempRet0; - $572 = (___muldi3(($110|0),0,($60|0),0)|0); - $573 = tempRet0; - $574 = (___muldi3(($104|0),0,($64|0),($65|0))|0); - $575 = tempRet0; - $576 = (___muldi3(($130|0),($131|0),($44|0),0)|0); - $577 = tempRet0; - $578 = (___muldi3(($126|0),0,($48|0),0)|0); - $579 = tempRet0; - $580 = (___muldi3(($120|0),0,($54|0),0)|0); + $560 = ((($2)) + 48|0); + $561 = $560; + $562 = $561; + $563 = HEAP32[$562>>2]|0; + $564 = (($561) + 4)|0; + $565 = $564; + $566 = HEAP32[$565>>2]|0; + $567 = (_bitshift64Ashr(0,($563|0),32)|0); + $568 = tempRet0; + $569 = (___muldi3(($567|0),($568|0),($558|0),($559|0))|0); + $570 = tempRet0; + $571 = (_i64Add(($550|0),($551|0),($569|0),($570|0))|0); + $572 = tempRet0; + $573 = ((($1)) + 48|0); + $574 = $573; + $575 = $574; + $576 = HEAP32[$575>>2]|0; + $577 = (($574) + 4)|0; + $578 = $577; + $579 = HEAP32[$578>>2]|0; + $580 = (_bitshift64Ashr(0,($576|0),32)|0); $581 = tempRet0; - $582 = (___muldi3(($114|0),0,($60|0),0)|0); - $583 = tempRet0; - $584 = (___muldi3(($110|0),0,($64|0),($65|0))|0); - $585 = tempRet0; - $586 = (_i64Add(($584|0),($585|0),($582|0),($583|0))|0); - $587 = tempRet0; - $588 = (_i64Add(($586|0),($587|0),($580|0),($581|0))|0); + $582 = $2; + $583 = $582; + $584 = HEAP32[$583>>2]|0; + $585 = (($582) + 4)|0; + $586 = $585; + $587 = HEAP32[$586>>2]|0; + $588 = (_bitshift64Ashr(0,($584|0),32)|0); $589 = tempRet0; - $590 = (_i64Add(($588|0),($589|0),($578|0),($579|0))|0); + $590 = (___muldi3(($588|0),($589|0),($580|0),($581|0))|0); $591 = tempRet0; - $592 = (_i64Add(($590|0),($591|0),($576|0),($577|0))|0); + $592 = (_i64Add(($571|0),($572|0),($590|0),($591|0))|0); $593 = tempRet0; - $594 = (___muldi3(($130|0),($131|0),($48|0),0)|0); - $595 = tempRet0; - $596 = (___muldi3(($126|0),0,($54|0),0)|0); - $597 = tempRet0; - $598 = (___muldi3(($120|0),0,($60|0),0)|0); - $599 = tempRet0; - $600 = (___muldi3(($114|0),0,($64|0),($65|0))|0); - $601 = tempRet0; - $602 = (___muldi3(($130|0),($131|0),($54|0),0)|0); - $603 = tempRet0; - $604 = (___muldi3(($126|0),0,($60|0),0)|0); - $605 = tempRet0; - $606 = (___muldi3(($120|0),0,($64|0),($65|0))|0); - $607 = tempRet0; - $608 = (_i64Add(($604|0),($605|0),($606|0),($607|0))|0); - $609 = tempRet0; - $610 = (_i64Add(($608|0),($609|0),($602|0),($603|0))|0); - $611 = tempRet0; - $612 = (___muldi3(($130|0),($131|0),($60|0),0)|0); - $613 = tempRet0; - $614 = (___muldi3(($126|0),0,($64|0),($65|0))|0); - $615 = tempRet0; - $616 = (_i64Add(($612|0),($613|0),($614|0),($615|0))|0); - $617 = tempRet0; - $618 = (___muldi3(($130|0),($131|0),($64|0),($65|0))|0); - $619 = tempRet0; - $620 = (_i64Add(($200|0),($201|0),1048576,0)|0); - $621 = tempRet0; - $622 = (_bitshift64Lshr(($620|0),($621|0),21)|0); - $623 = tempRet0; - $624 = (_i64Add(($202|0),($203|0),($204|0),($205|0))|0); - $625 = tempRet0; - $626 = (_i64Add(($624|0),($625|0),($140|0),0)|0); - $627 = tempRet0; - $628 = (_i64Add(($626|0),($627|0),($622|0),($623|0))|0); - $629 = tempRet0; - $630 = (_bitshift64Shl(($622|0),($623|0),21)|0); - $631 = tempRet0; - $632 = (_i64Subtract(($200|0),($201|0),($630|0),($631|0))|0); - $633 = tempRet0; - $634 = (_i64Add(($216|0),($217|0),1048576,0)|0); - $635 = tempRet0; - $636 = (_bitshift64Lshr(($634|0),($635|0),21)|0); - $637 = tempRet0; - $638 = (_i64Add(($222|0),($223|0),($224|0),($225|0))|0); - $639 = tempRet0; - $640 = (_i64Add(($638|0),($639|0),($220|0),($221|0))|0); - $641 = tempRet0; - $642 = (_i64Add(($640|0),($641|0),($218|0),($219|0))|0); - $643 = tempRet0; - $644 = (_i64Add(($642|0),($643|0),($152|0),0)|0); - $645 = tempRet0; - $646 = (_i64Add(($644|0),($645|0),($636|0),($637|0))|0); - $647 = tempRet0; - $648 = (_bitshift64Shl(($636|0),($637|0),21)|0); - $649 = tempRet0; - $650 = (_i64Add(($244|0),($245|0),1048576,0)|0); - $651 = tempRet0; - $652 = (_bitshift64Ashr(($650|0),($651|0),21)|0); - $653 = tempRet0; - $654 = (_i64Add(($254|0),($255|0),($256|0),($257|0))|0); - $655 = tempRet0; - $656 = (_i64Add(($654|0),($655|0),($252|0),($253|0))|0); - $657 = tempRet0; - $658 = (_i64Add(($656|0),($657|0),($250|0),($251|0))|0); - $659 = tempRet0; - $660 = (_i64Add(($658|0),($659|0),($248|0),($249|0))|0); - $661 = tempRet0; - $662 = (_i64Add(($660|0),($661|0),($246|0),($247|0))|0); - $663 = tempRet0; - $664 = (_i64Add(($662|0),($663|0),($164|0),0)|0); - $665 = tempRet0; - $666 = (_i64Add(($664|0),($665|0),($652|0),($653|0))|0); - $667 = tempRet0; - $668 = (_bitshift64Shl(($652|0),($653|0),21)|0); - $669 = tempRet0; - $670 = (_i64Subtract(($244|0),($245|0),($668|0),($669|0))|0); - $671 = tempRet0; - $672 = (_i64Add(($284|0),($285|0),1048576,0)|0); - $673 = tempRet0; - $674 = (_bitshift64Ashr(($672|0),($673|0),21)|0); - $675 = tempRet0; - $676 = (_i64Add(($298|0),($299|0),($300|0),($301|0))|0); - $677 = tempRet0; - $678 = (_i64Add(($676|0),($677|0),($296|0),($297|0))|0); - $679 = tempRet0; - $680 = (_i64Add(($678|0),($679|0),($294|0),($295|0))|0); - $681 = tempRet0; - $682 = (_i64Add(($680|0),($681|0),($292|0),($293|0))|0); - $683 = tempRet0; - $684 = (_i64Add(($682|0),($683|0),($290|0),($291|0))|0); - $685 = tempRet0; - $686 = (_i64Add(($684|0),($685|0),($288|0),($289|0))|0); - $687 = tempRet0; - $688 = (_i64Add(($686|0),($687|0),($286|0),($287|0))|0); - $689 = tempRet0; - $690 = (_i64Add(($688|0),($689|0),($176|0),0)|0); - $691 = tempRet0; - $692 = (_i64Add(($690|0),($691|0),($674|0),($675|0))|0); - $693 = tempRet0; - $694 = (_bitshift64Shl(($674|0),($675|0),21)|0); - $695 = tempRet0; - $696 = (_i64Add(($336|0),($337|0),1048576,0)|0); - $697 = tempRet0; - $698 = (_bitshift64Ashr(($696|0),($697|0),21)|0); - $699 = tempRet0; - $700 = (_i64Add(($354|0),($355|0),($356|0),($357|0))|0); - $701 = tempRet0; - $702 = (_i64Add(($700|0),($701|0),($352|0),($353|0))|0); - $703 = tempRet0; - $704 = (_i64Add(($702|0),($703|0),($350|0),($351|0))|0); - $705 = tempRet0; - $706 = (_i64Add(($704|0),($705|0),($348|0),($349|0))|0); - $707 = tempRet0; - $708 = (_i64Add(($706|0),($707|0),($346|0),($347|0))|0); - $709 = tempRet0; - $710 = (_i64Add(($708|0),($709|0),($344|0),($345|0))|0); - $711 = tempRet0; - $712 = (_i64Add(($710|0),($711|0),($340|0),($341|0))|0); - $713 = tempRet0; - $714 = (_i64Add(($712|0),($713|0),($342|0),($343|0))|0); - $715 = tempRet0; - $716 = (_i64Add(($714|0),($715|0),($338|0),($339|0))|0); - $717 = tempRet0; - $718 = (_i64Add(($716|0),($717|0),($186|0),0)|0); - $719 = tempRet0; - $720 = (_i64Add(($718|0),($719|0),($698|0),($699|0))|0); - $721 = tempRet0; - $722 = (_bitshift64Shl(($698|0),($699|0),21)|0); - $723 = tempRet0; - $724 = (_i64Add(($400|0),($401|0),1048576,0)|0); - $725 = tempRet0; - $726 = (_bitshift64Ashr(($724|0),($725|0),21)|0); - $727 = tempRet0; - $728 = (_i64Add(($422|0),($423|0),($424|0),($425|0))|0); - $729 = tempRet0; - $730 = (_i64Add(($728|0),($729|0),($420|0),($421|0))|0); - $731 = tempRet0; - $732 = (_i64Add(($730|0),($731|0),($418|0),($419|0))|0); + $594 = ((($0)) + 48|0); + $595 = $594; + $596 = $595; + HEAP32[$596>>2] = $592; + $597 = (($595) + 4)|0; + $598 = $597; + HEAP32[$598>>2] = $593; + $599 = $194; + $600 = $599; + $601 = HEAP32[$600>>2]|0; + $602 = (($599) + 4)|0; + $603 = $602; + $604 = HEAP32[$603>>2]|0; + $605 = (_bitshift64Ashr(0,($601|0),32)|0); + $606 = tempRet0; + $607 = $288; + $608 = $607; + $609 = HEAP32[$608>>2]|0; + $610 = (($607) + 4)|0; + $611 = $610; + $612 = HEAP32[$611>>2]|0; + $613 = (_bitshift64Ashr(0,($609|0),32)|0); + $614 = tempRet0; + $615 = (___muldi3(($613|0),($614|0),($605|0),($606|0))|0); + $616 = tempRet0; + $617 = $301; + $618 = $617; + $619 = HEAP32[$618>>2]|0; + $620 = (($617) + 4)|0; + $621 = $620; + $622 = HEAP32[$621>>2]|0; + $623 = (_bitshift64Ashr(0,($619|0),32)|0); + $624 = tempRet0; + $625 = $181; + $626 = $625; + $627 = HEAP32[$626>>2]|0; + $628 = (($625) + 4)|0; + $629 = $628; + $630 = HEAP32[$629>>2]|0; + $631 = (_bitshift64Ashr(0,($627|0),32)|0); + $632 = tempRet0; + $633 = (___muldi3(($631|0),($632|0),($623|0),($624|0))|0); + $634 = tempRet0; + $635 = (_i64Add(($633|0),($634|0),($615|0),($616|0))|0); + $636 = tempRet0; + $637 = $109; + $638 = $637; + $639 = HEAP32[$638>>2]|0; + $640 = (($637) + 4)|0; + $641 = $640; + $642 = HEAP32[$641>>2]|0; + $643 = (_bitshift64Ashr(0,($639|0),32)|0); + $644 = tempRet0; + $645 = $413; + $646 = $645; + $647 = HEAP32[$646>>2]|0; + $648 = (($645) + 4)|0; + $649 = $648; + $650 = HEAP32[$649>>2]|0; + $651 = (_bitshift64Ashr(0,($647|0),32)|0); + $652 = tempRet0; + $653 = (___muldi3(($651|0),($652|0),($643|0),($644|0))|0); + $654 = tempRet0; + $655 = (_i64Add(($635|0),($636|0),($653|0),($654|0))|0); + $656 = tempRet0; + $657 = $426; + $658 = $657; + $659 = HEAP32[$658>>2]|0; + $660 = (($657) + 4)|0; + $661 = $660; + $662 = HEAP32[$661>>2]|0; + $663 = (_bitshift64Ashr(0,($659|0),32)|0); + $664 = tempRet0; + $665 = $96; + $666 = $665; + $667 = HEAP32[$666>>2]|0; + $668 = (($665) + 4)|0; + $669 = $668; + $670 = HEAP32[$669>>2]|0; + $671 = (_bitshift64Ashr(0,($667|0),32)|0); + $672 = tempRet0; + $673 = (___muldi3(($671|0),($672|0),($663|0),($664|0))|0); + $674 = tempRet0; + $675 = (_i64Add(($655|0),($656|0),($673|0),($674|0))|0); + $676 = tempRet0; + $677 = $44; + $678 = $677; + $679 = HEAP32[$678>>2]|0; + $680 = (($677) + 4)|0; + $681 = $680; + $682 = HEAP32[$681>>2]|0; + $683 = (_bitshift64Ashr(0,($679|0),32)|0); + $684 = tempRet0; + $685 = $560; + $686 = $685; + $687 = HEAP32[$686>>2]|0; + $688 = (($685) + 4)|0; + $689 = $688; + $690 = HEAP32[$689>>2]|0; + $691 = (_bitshift64Ashr(0,($687|0),32)|0); + $692 = tempRet0; + $693 = (___muldi3(($691|0),($692|0),($683|0),($684|0))|0); + $694 = tempRet0; + $695 = (_i64Add(($675|0),($676|0),($693|0),($694|0))|0); + $696 = tempRet0; + $697 = $573; + $698 = $697; + $699 = HEAP32[$698>>2]|0; + $700 = (($697) + 4)|0; + $701 = $700; + $702 = HEAP32[$701>>2]|0; + $703 = (_bitshift64Ashr(0,($699|0),32)|0); + $704 = tempRet0; + $705 = $33; + $706 = $705; + $707 = HEAP32[$706>>2]|0; + $708 = (($705) + 4)|0; + $709 = $708; + $710 = HEAP32[$709>>2]|0; + $711 = (_bitshift64Ashr(0,($707|0),32)|0); + $712 = tempRet0; + $713 = (___muldi3(($711|0),($712|0),($703|0),($704|0))|0); + $714 = tempRet0; + $715 = (_i64Add(($695|0),($696|0),($713|0),($714|0))|0); + $716 = tempRet0; + $717 = $1; + $718 = $717; + $719 = HEAP32[$718>>2]|0; + $720 = (($717) + 4)|0; + $721 = $720; + $722 = HEAP32[$721>>2]|0; + $723 = (_bitshift64Ashr(0,($719|0),32)|0); + $724 = tempRet0; + $725 = ((($2)) + 56|0); + $726 = $725; + $727 = $726; + $728 = HEAP32[$727>>2]|0; + $729 = (($726) + 4)|0; + $730 = $729; + $731 = HEAP32[$730>>2]|0; + $732 = (_bitshift64Ashr(0,($728|0),32)|0); $733 = tempRet0; - $734 = (_i64Add(($732|0),($733|0),($416|0),($417|0))|0); + $734 = (___muldi3(($732|0),($733|0),($723|0),($724|0))|0); $735 = tempRet0; - $736 = (_i64Add(($734|0),($735|0),($414|0),($415|0))|0); + $736 = (_i64Add(($715|0),($716|0),($734|0),($735|0))|0); $737 = tempRet0; - $738 = (_i64Add(($736|0),($737|0),($412|0),($413|0))|0); - $739 = tempRet0; - $740 = (_i64Add(($738|0),($739|0),($408|0),($409|0))|0); - $741 = tempRet0; - $742 = (_i64Add(($740|0),($741|0),($410|0),($411|0))|0); - $743 = tempRet0; - $744 = (_i64Add(($742|0),($743|0),($406|0),($407|0))|0); - $745 = tempRet0; - $746 = (_i64Add(($744|0),($745|0),($402|0),($403|0))|0); - $747 = tempRet0; - $748 = (_i64Add(($746|0),($747|0),($404|0),($405|0))|0); - $749 = tempRet0; - $750 = (_i64Add(($748|0),($749|0),($196|0),($197|0))|0); - $751 = tempRet0; - $752 = (_i64Add(($750|0),($751|0),($726|0),($727|0))|0); - $753 = tempRet0; - $754 = (_bitshift64Shl(($726|0),($727|0),21)|0); - $755 = tempRet0; - $756 = (_i64Subtract(($400|0),($401|0),($754|0),($755|0))|0); - $757 = tempRet0; - $758 = (_i64Add(($466|0),($467|0),1048576,0)|0); - $759 = tempRet0; - $760 = (_bitshift64Ashr(($758|0),($759|0),21)|0); - $761 = tempRet0; - $762 = (_i64Add(($484|0),($485|0),($486|0),($487|0))|0); - $763 = tempRet0; - $764 = (_i64Add(($762|0),($763|0),($482|0),($483|0))|0); - $765 = tempRet0; - $766 = (_i64Add(($764|0),($765|0),($480|0),($481|0))|0); - $767 = tempRet0; - $768 = (_i64Add(($766|0),($767|0),($478|0),($479|0))|0); - $769 = tempRet0; - $770 = (_i64Add(($768|0),($769|0),($474|0),($475|0))|0); + $738 = ((($1)) + 56|0); + $739 = $738; + $740 = $739; + $741 = HEAP32[$740>>2]|0; + $742 = (($739) + 4)|0; + $743 = $742; + $744 = HEAP32[$743>>2]|0; + $745 = (_bitshift64Ashr(0,($741|0),32)|0); + $746 = tempRet0; + $747 = $2; + $748 = $747; + $749 = HEAP32[$748>>2]|0; + $750 = (($747) + 4)|0; + $751 = $750; + $752 = HEAP32[$751>>2]|0; + $753 = (_bitshift64Ashr(0,($749|0),32)|0); + $754 = tempRet0; + $755 = (___muldi3(($753|0),($754|0),($745|0),($746|0))|0); + $756 = tempRet0; + $757 = (_i64Add(($736|0),($737|0),($755|0),($756|0))|0); + $758 = tempRet0; + $759 = ((($0)) + 56|0); + $760 = $759; + $761 = $760; + HEAP32[$761>>2] = $757; + $762 = (($760) + 4)|0; + $763 = $762; + HEAP32[$763>>2] = $758; + $764 = $301; + $765 = $764; + $766 = HEAP32[$765>>2]|0; + $767 = (($764) + 4)|0; + $768 = $767; + $769 = HEAP32[$768>>2]|0; + $770 = (_bitshift64Ashr(0,($766|0),32)|0); $771 = tempRet0; - $772 = (_i64Add(($770|0),($771|0),($476|0),($477|0))|0); - $773 = tempRet0; - $774 = (_i64Add(($772|0),($773|0),($472|0),($473|0))|0); - $775 = tempRet0; - $776 = (_i64Add(($774|0),($775|0),($470|0),($471|0))|0); - $777 = tempRet0; - $778 = (_i64Add(($776|0),($777|0),($468|0),($469|0))|0); + $772 = $288; + $773 = $772; + $774 = HEAP32[$773>>2]|0; + $775 = (($772) + 4)|0; + $776 = $775; + $777 = HEAP32[$776>>2]|0; + $778 = (_bitshift64Ashr(0,($774|0),32)|0); $779 = tempRet0; - $780 = (_i64Add(($778|0),($779|0),($760|0),($761|0))|0); + $780 = (___muldi3(($778|0),($779|0),($770|0),($771|0))|0); $781 = tempRet0; - $782 = (_bitshift64Shl(($760|0),($761|0),21)|0); - $783 = tempRet0; - $784 = (_i64Subtract(($466|0),($467|0),($782|0),($783|0))|0); - $785 = tempRet0; - $786 = (_i64Add(($520|0),($521|0),1048576,0)|0); - $787 = tempRet0; - $788 = (_bitshift64Ashr(($786|0),($787|0),21)|0); + $782 = $194; + $783 = $782; + $784 = HEAP32[$783>>2]|0; + $785 = (($782) + 4)|0; + $786 = $785; + $787 = HEAP32[$786>>2]|0; + $788 = (_bitshift64Ashr(0,($784|0),32)|0); $789 = tempRet0; - $790 = (_i64Add(($534|0),($535|0),($536|0),($537|0))|0); - $791 = tempRet0; - $792 = (_i64Add(($790|0),($791|0),($532|0),($533|0))|0); - $793 = tempRet0; - $794 = (_i64Add(($792|0),($793|0),($528|0),($529|0))|0); - $795 = tempRet0; - $796 = (_i64Add(($794|0),($795|0),($530|0),($531|0))|0); + $790 = $413; + $791 = $790; + $792 = HEAP32[$791>>2]|0; + $793 = (($790) + 4)|0; + $794 = $793; + $795 = HEAP32[$794>>2]|0; + $796 = (_bitshift64Ashr(0,($792|0),32)|0); $797 = tempRet0; - $798 = (_i64Add(($796|0),($797|0),($526|0),($527|0))|0); + $798 = (___muldi3(($796|0),($797|0),($788|0),($789|0))|0); $799 = tempRet0; - $800 = (_i64Add(($798|0),($799|0),($524|0),($525|0))|0); - $801 = tempRet0; - $802 = (_i64Add(($800|0),($801|0),($522|0),($523|0))|0); - $803 = tempRet0; - $804 = (_i64Add(($802|0),($803|0),($788|0),($789|0))|0); - $805 = tempRet0; - $806 = (_bitshift64Shl(($788|0),($789|0),21)|0); + $800 = $426; + $801 = $800; + $802 = HEAP32[$801>>2]|0; + $803 = (($800) + 4)|0; + $804 = $803; + $805 = HEAP32[$804>>2]|0; + $806 = (_bitshift64Ashr(0,($802|0),32)|0); $807 = tempRet0; - $808 = (_i64Subtract(($520|0),($521|0),($806|0),($807|0))|0); - $809 = tempRet0; - $810 = (_i64Add(($562|0),($563|0),1048576,0)|0); - $811 = tempRet0; - $812 = (_bitshift64Ashr(($810|0),($811|0),21)|0); - $813 = tempRet0; - $814 = (_i64Add(($570|0),($571|0),($574|0),($575|0))|0); + $808 = $181; + $809 = $808; + $810 = HEAP32[$809>>2]|0; + $811 = (($808) + 4)|0; + $812 = $811; + $813 = HEAP32[$812>>2]|0; + $814 = (_bitshift64Ashr(0,($810|0),32)|0); $815 = tempRet0; - $816 = (_i64Add(($814|0),($815|0),($572|0),($573|0))|0); + $816 = (___muldi3(($814|0),($815|0),($806|0),($807|0))|0); $817 = tempRet0; - $818 = (_i64Add(($816|0),($817|0),($568|0),($569|0))|0); + $818 = (_i64Add(($816|0),($817|0),($798|0),($799|0))|0); $819 = tempRet0; - $820 = (_i64Add(($818|0),($819|0),($566|0),($567|0))|0); - $821 = tempRet0; - $822 = (_i64Add(($820|0),($821|0),($564|0),($565|0))|0); - $823 = tempRet0; - $824 = (_i64Add(($822|0),($823|0),($812|0),($813|0))|0); - $825 = tempRet0; - $826 = (_bitshift64Shl(($812|0),($813|0),21)|0); + $820 = $44; + $821 = $820; + $822 = HEAP32[$821>>2]|0; + $823 = (($820) + 4)|0; + $824 = $823; + $825 = HEAP32[$824>>2]|0; + $826 = (_bitshift64Ashr(0,($822|0),32)|0); $827 = tempRet0; - $828 = (_i64Subtract(($562|0),($563|0),($826|0),($827|0))|0); - $829 = tempRet0; - $830 = (_i64Add(($592|0),($593|0),1048576,0)|0); - $831 = tempRet0; - $832 = (_bitshift64Ashr(($830|0),($831|0),21)|0); - $833 = tempRet0; - $834 = (_i64Add(($598|0),($599|0),($600|0),($601|0))|0); + $828 = $725; + $829 = $828; + $830 = HEAP32[$829>>2]|0; + $831 = (($828) + 4)|0; + $832 = $831; + $833 = HEAP32[$832>>2]|0; + $834 = (_bitshift64Ashr(0,($830|0),32)|0); $835 = tempRet0; - $836 = (_i64Add(($834|0),($835|0),($596|0),($597|0))|0); + $836 = (___muldi3(($834|0),($835|0),($826|0),($827|0))|0); $837 = tempRet0; - $838 = (_i64Add(($836|0),($837|0),($594|0),($595|0))|0); + $838 = (_i64Add(($818|0),($819|0),($836|0),($837|0))|0); $839 = tempRet0; - $840 = (_i64Add(($838|0),($839|0),($832|0),($833|0))|0); - $841 = tempRet0; - $842 = (_bitshift64Shl(($832|0),($833|0),21)|0); - $843 = tempRet0; - $844 = (_i64Subtract(($592|0),($593|0),($842|0),($843|0))|0); - $845 = tempRet0; - $846 = (_i64Add(($610|0),($611|0),1048576,0)|0); + $840 = $738; + $841 = $840; + $842 = HEAP32[$841>>2]|0; + $843 = (($840) + 4)|0; + $844 = $843; + $845 = HEAP32[$844>>2]|0; + $846 = (_bitshift64Ashr(0,($842|0),32)|0); $847 = tempRet0; - $848 = (_bitshift64Lshr(($846|0),($847|0),21)|0); - $849 = tempRet0; - $850 = (_i64Add(($616|0),($617|0),($848|0),($849|0))|0); - $851 = tempRet0; - $852 = (_bitshift64Shl(($848|0),($849|0),21)|0); - $853 = tempRet0; - $854 = (_i64Subtract(($610|0),($611|0),($852|0),($853|0))|0); + $848 = $33; + $849 = $848; + $850 = HEAP32[$849>>2]|0; + $851 = (($848) + 4)|0; + $852 = $851; + $853 = HEAP32[$852>>2]|0; + $854 = (_bitshift64Ashr(0,($850|0),32)|0); $855 = tempRet0; - $856 = (_i64Add(($618|0),($619|0),1048576,0)|0); + $856 = (___muldi3(($854|0),($855|0),($846|0),($847|0))|0); $857 = tempRet0; - $858 = (_bitshift64Lshr(($856|0),($857|0),21)|0); + $858 = (_i64Add(($838|0),($839|0),($856|0),($857|0))|0); $859 = tempRet0; - $860 = (_bitshift64Shl(($858|0),($859|0),21)|0); + $860 = (_bitshift64Shl(($858|0),($859|0),1)|0); $861 = tempRet0; - $862 = (_i64Subtract(($618|0),($619|0),($860|0),($861|0))|0); + $862 = (_i64Add(($860|0),($861|0),($780|0),($781|0))|0); $863 = tempRet0; - $864 = (_i64Add(($628|0),($629|0),1048576,0)|0); - $865 = tempRet0; - $866 = (_bitshift64Lshr(($864|0),($865|0),21)|0); - $867 = tempRet0; - $868 = (_bitshift64Shl(($866|0),($867|0),21)|0); - $869 = tempRet0; - $870 = (_i64Subtract(($628|0),($629|0),($868|0),($869|0))|0); + $864 = $109; + $865 = $864; + $866 = HEAP32[$865>>2]|0; + $867 = (($864) + 4)|0; + $868 = $867; + $869 = HEAP32[$868>>2]|0; + $870 = (_bitshift64Ashr(0,($866|0),32)|0); $871 = tempRet0; - $872 = (_i64Add(($646|0),($647|0),1048576,0)|0); - $873 = tempRet0; - $874 = (_bitshift64Ashr(($872|0),($873|0),21)|0); - $875 = tempRet0; - $876 = (_i64Add(($874|0),($875|0),($670|0),($671|0))|0); - $877 = tempRet0; - $878 = (_bitshift64Shl(($874|0),($875|0),21)|0); + $872 = $560; + $873 = $872; + $874 = HEAP32[$873>>2]|0; + $875 = (($872) + 4)|0; + $876 = $875; + $877 = HEAP32[$876>>2]|0; + $878 = (_bitshift64Ashr(0,($874|0),32)|0); $879 = tempRet0; - $880 = (_i64Subtract(($646|0),($647|0),($878|0),($879|0))|0); + $880 = (___muldi3(($878|0),($879|0),($870|0),($871|0))|0); $881 = tempRet0; - $882 = (_i64Add(($666|0),($667|0),1048576,0)|0); + $882 = (_i64Add(($862|0),($863|0),($880|0),($881|0))|0); $883 = tempRet0; - $884 = (_bitshift64Ashr(($882|0),($883|0),21)|0); - $885 = tempRet0; - $886 = (_bitshift64Shl(($884|0),($885|0),21)|0); - $887 = tempRet0; - $888 = (_i64Subtract(($666|0),($667|0),($886|0),($887|0))|0); - $889 = tempRet0; - $890 = (_i64Add(($692|0),($693|0),1048576,0)|0); + $884 = $573; + $885 = $884; + $886 = HEAP32[$885>>2]|0; + $887 = (($884) + 4)|0; + $888 = $887; + $889 = HEAP32[$888>>2]|0; + $890 = (_bitshift64Ashr(0,($886|0),32)|0); $891 = tempRet0; - $892 = (_bitshift64Ashr(($890|0),($891|0),21)|0); - $893 = tempRet0; - $894 = (_bitshift64Shl(($892|0),($893|0),21)|0); - $895 = tempRet0; - $896 = (_i64Add(($720|0),($721|0),1048576,0)|0); - $897 = tempRet0; - $898 = (_bitshift64Ashr(($896|0),($897|0),21)|0); + $892 = $96; + $893 = $892; + $894 = HEAP32[$893>>2]|0; + $895 = (($892) + 4)|0; + $896 = $895; + $897 = HEAP32[$896>>2]|0; + $898 = (_bitshift64Ashr(0,($894|0),32)|0); $899 = tempRet0; - $900 = (_i64Add(($898|0),($899|0),($756|0),($757|0))|0); + $900 = (___muldi3(($898|0),($899|0),($890|0),($891|0))|0); $901 = tempRet0; - $902 = (_bitshift64Shl(($898|0),($899|0),21)|0); + $902 = (_i64Add(($882|0),($883|0),($900|0),($901|0))|0); $903 = tempRet0; - $904 = (_i64Subtract(($720|0),($721|0),($902|0),($903|0))|0); - $905 = tempRet0; - $906 = (_i64Add(($752|0),($753|0),1048576,0)|0); - $907 = tempRet0; - $908 = (_bitshift64Ashr(($906|0),($907|0),21)|0); - $909 = tempRet0; - $910 = (_i64Add(($784|0),($785|0),($908|0),($909|0))|0); + $904 = $1; + $905 = $904; + $906 = HEAP32[$905>>2]|0; + $907 = (($904) + 4)|0; + $908 = $907; + $909 = HEAP32[$908>>2]|0; + $910 = (_bitshift64Ashr(0,($906|0),32)|0); $911 = tempRet0; - $912 = (_bitshift64Shl(($908|0),($909|0),21)|0); - $913 = tempRet0; - $914 = (_i64Subtract(($752|0),($753|0),($912|0),($913|0))|0); - $915 = tempRet0; - $916 = (_i64Add(($780|0),($781|0),1048576,0)|0); - $917 = tempRet0; - $918 = (_bitshift64Ashr(($916|0),($917|0),21)|0); - $919 = tempRet0; - $920 = (_i64Add(($808|0),($809|0),($918|0),($919|0))|0); - $921 = tempRet0; - $922 = (_bitshift64Shl(($918|0),($919|0),21)|0); - $923 = tempRet0; - $924 = (_i64Subtract(($780|0),($781|0),($922|0),($923|0))|0); - $925 = tempRet0; - $926 = (_i64Add(($804|0),($805|0),1048576,0)|0); - $927 = tempRet0; - $928 = (_bitshift64Ashr(($926|0),($927|0),21)|0); - $929 = tempRet0; - $930 = (_i64Add(($828|0),($829|0),($928|0),($929|0))|0); - $931 = tempRet0; - $932 = (_bitshift64Shl(($928|0),($929|0),21)|0); + $912 = ((($2)) + 64|0); + $913 = $912; + $914 = $913; + $915 = HEAP32[$914>>2]|0; + $916 = (($913) + 4)|0; + $917 = $916; + $918 = HEAP32[$917>>2]|0; + $919 = (_bitshift64Ashr(0,($915|0),32)|0); + $920 = tempRet0; + $921 = (___muldi3(($919|0),($920|0),($910|0),($911|0))|0); + $922 = tempRet0; + $923 = (_i64Add(($902|0),($903|0),($921|0),($922|0))|0); + $924 = tempRet0; + $925 = ((($1)) + 64|0); + $926 = $925; + $927 = $926; + $928 = HEAP32[$927>>2]|0; + $929 = (($926) + 4)|0; + $930 = $929; + $931 = HEAP32[$930>>2]|0; + $932 = (_bitshift64Ashr(0,($928|0),32)|0); $933 = tempRet0; - $934 = (_i64Subtract(($804|0),($805|0),($932|0),($933|0))|0); - $935 = tempRet0; - $936 = (_i64Add(($824|0),($825|0),1048576,0)|0); - $937 = tempRet0; - $938 = (_bitshift64Ashr(($936|0),($937|0),21)|0); - $939 = tempRet0; - $940 = (_i64Add(($938|0),($939|0),($844|0),($845|0))|0); + $934 = $2; + $935 = $934; + $936 = HEAP32[$935>>2]|0; + $937 = (($934) + 4)|0; + $938 = $937; + $939 = HEAP32[$938>>2]|0; + $940 = (_bitshift64Ashr(0,($936|0),32)|0); $941 = tempRet0; - $942 = (_bitshift64Shl(($938|0),($939|0),21)|0); + $942 = (___muldi3(($940|0),($941|0),($932|0),($933|0))|0); $943 = tempRet0; - $944 = (_i64Subtract(($824|0),($825|0),($942|0),($943|0))|0); + $944 = (_i64Add(($923|0),($924|0),($942|0),($943|0))|0); $945 = tempRet0; - $946 = (_i64Add(($840|0),($841|0),1048576,0)|0); - $947 = tempRet0; - $948 = (_bitshift64Ashr(($946|0),($947|0),21)|0); - $949 = tempRet0; - $950 = (_i64Add(($948|0),($949|0),($854|0),($855|0))|0); - $951 = tempRet0; - $952 = (_bitshift64Shl(($948|0),($949|0),21)|0); - $953 = tempRet0; - $954 = (_i64Subtract(($840|0),($841|0),($952|0),($953|0))|0); - $955 = tempRet0; - $956 = (_i64Add(($850|0),($851|0),1048576,0)|0); - $957 = tempRet0; - $958 = (_bitshift64Lshr(($956|0),($957|0),21)|0); - $959 = tempRet0; - $960 = (_i64Add(($958|0),($959|0),($862|0),($863|0))|0); - $961 = tempRet0; - $962 = (_bitshift64Shl(($958|0),($959|0),21)|0); - $963 = tempRet0; - $964 = (_i64Subtract(($850|0),($851|0),($962|0),($963|0))|0); - $965 = tempRet0; - $966 = (___muldi3(($858|0),($859|0),666643,0)|0); - $967 = tempRet0; - $968 = (_i64Add(($966|0),($967|0),($914|0),($915|0))|0); - $969 = tempRet0; - $970 = (___muldi3(($858|0),($859|0),470296,0)|0); - $971 = tempRet0; - $972 = (_i64Add(($970|0),($971|0),($910|0),($911|0))|0); - $973 = tempRet0; - $974 = (___muldi3(($858|0),($859|0),654183,0)|0); - $975 = tempRet0; - $976 = (_i64Add(($974|0),($975|0),($924|0),($925|0))|0); - $977 = tempRet0; - $978 = (___muldi3(($858|0),($859|0),-997805,-1)|0); - $979 = tempRet0; - $980 = (_i64Add(($978|0),($979|0),($920|0),($921|0))|0); - $981 = tempRet0; - $982 = (___muldi3(($858|0),($859|0),136657,0)|0); - $983 = tempRet0; - $984 = (_i64Add(($982|0),($983|0),($934|0),($935|0))|0); - $985 = tempRet0; - $986 = (___muldi3(($858|0),($859|0),-683901,-1)|0); - $987 = tempRet0; - $988 = (_i64Add(($930|0),($931|0),($986|0),($987|0))|0); - $989 = tempRet0; - $990 = (___muldi3(($960|0),($961|0),666643,0)|0); - $991 = tempRet0; - $992 = (_i64Add(($990|0),($991|0),($900|0),($901|0))|0); - $993 = tempRet0; - $994 = (___muldi3(($960|0),($961|0),470296,0)|0); - $995 = tempRet0; - $996 = (_i64Add(($994|0),($995|0),($968|0),($969|0))|0); - $997 = tempRet0; - $998 = (___muldi3(($960|0),($961|0),654183,0)|0); - $999 = tempRet0; - $1000 = (_i64Add(($998|0),($999|0),($972|0),($973|0))|0); - $1001 = tempRet0; - $1002 = (___muldi3(($960|0),($961|0),-997805,-1)|0); - $1003 = tempRet0; - $1004 = (_i64Add(($1002|0),($1003|0),($976|0),($977|0))|0); - $1005 = tempRet0; - $1006 = (___muldi3(($960|0),($961|0),136657,0)|0); - $1007 = tempRet0; - $1008 = (_i64Add(($1006|0),($1007|0),($980|0),($981|0))|0); - $1009 = tempRet0; - $1010 = (___muldi3(($960|0),($961|0),-683901,-1)|0); - $1011 = tempRet0; - $1012 = (_i64Add(($984|0),($985|0),($1010|0),($1011|0))|0); - $1013 = tempRet0; - $1014 = (___muldi3(($964|0),($965|0),666643,0)|0); - $1015 = tempRet0; - $1016 = (_i64Add(($1014|0),($1015|0),($904|0),($905|0))|0); - $1017 = tempRet0; - $1018 = (___muldi3(($964|0),($965|0),470296,0)|0); - $1019 = tempRet0; - $1020 = (_i64Add(($1018|0),($1019|0),($992|0),($993|0))|0); - $1021 = tempRet0; - $1022 = (___muldi3(($964|0),($965|0),654183,0)|0); - $1023 = tempRet0; - $1024 = (_i64Add(($1022|0),($1023|0),($996|0),($997|0))|0); - $1025 = tempRet0; - $1026 = (___muldi3(($964|0),($965|0),-997805,-1)|0); - $1027 = tempRet0; - $1028 = (_i64Add(($1026|0),($1027|0),($1000|0),($1001|0))|0); - $1029 = tempRet0; - $1030 = (___muldi3(($964|0),($965|0),136657,0)|0); - $1031 = tempRet0; - $1032 = (_i64Add(($1030|0),($1031|0),($1004|0),($1005|0))|0); - $1033 = tempRet0; - $1034 = (___muldi3(($964|0),($965|0),-683901,-1)|0); - $1035 = tempRet0; - $1036 = (_i64Add(($1008|0),($1009|0),($1034|0),($1035|0))|0); - $1037 = tempRet0; - $1038 = (___muldi3(($950|0),($951|0),666643,0)|0); - $1039 = tempRet0; - $1040 = (___muldi3(($950|0),($951|0),470296,0)|0); - $1041 = tempRet0; - $1042 = (_i64Add(($1040|0),($1041|0),($1016|0),($1017|0))|0); - $1043 = tempRet0; - $1044 = (___muldi3(($950|0),($951|0),654183,0)|0); - $1045 = tempRet0; - $1046 = (_i64Add(($1044|0),($1045|0),($1020|0),($1021|0))|0); - $1047 = tempRet0; - $1048 = (___muldi3(($950|0),($951|0),-997805,-1)|0); - $1049 = tempRet0; - $1050 = (_i64Add(($1048|0),($1049|0),($1024|0),($1025|0))|0); - $1051 = tempRet0; - $1052 = (___muldi3(($950|0),($951|0),136657,0)|0); - $1053 = tempRet0; - $1054 = (_i64Add(($1052|0),($1053|0),($1028|0),($1029|0))|0); - $1055 = tempRet0; - $1056 = (___muldi3(($950|0),($951|0),-683901,-1)|0); - $1057 = tempRet0; - $1058 = (_i64Add(($1032|0),($1033|0),($1056|0),($1057|0))|0); - $1059 = tempRet0; - $1060 = (___muldi3(($954|0),($955|0),666643,0)|0); - $1061 = tempRet0; - $1062 = (___muldi3(($954|0),($955|0),470296,0)|0); - $1063 = tempRet0; - $1064 = (___muldi3(($954|0),($955|0),654183,0)|0); - $1065 = tempRet0; - $1066 = (_i64Add(($1064|0),($1065|0),($1042|0),($1043|0))|0); - $1067 = tempRet0; - $1068 = (___muldi3(($954|0),($955|0),-997805,-1)|0); - $1069 = tempRet0; - $1070 = (_i64Add(($1046|0),($1047|0),($1068|0),($1069|0))|0); - $1071 = tempRet0; - $1072 = (___muldi3(($954|0),($955|0),136657,0)|0); - $1073 = tempRet0; - $1074 = (_i64Add(($1072|0),($1073|0),($1050|0),($1051|0))|0); - $1075 = tempRet0; - $1076 = (___muldi3(($954|0),($955|0),-683901,-1)|0); - $1077 = tempRet0; - $1078 = (_i64Add(($1054|0),($1055|0),($1076|0),($1077|0))|0); - $1079 = tempRet0; - $1080 = (___muldi3(($940|0),($941|0),666643,0)|0); - $1081 = tempRet0; - $1082 = (_i64Add(($284|0),($285|0),($1080|0),($1081|0))|0); - $1083 = tempRet0; - $1084 = (_i64Add(($1082|0),($1083|0),($884|0),($885|0))|0); - $1085 = tempRet0; - $1086 = (_i64Subtract(($1084|0),($1085|0),($694|0),($695|0))|0); - $1087 = tempRet0; - $1088 = (___muldi3(($940|0),($941|0),470296,0)|0); - $1089 = tempRet0; - $1090 = (___muldi3(($940|0),($941|0),654183,0)|0); - $1091 = tempRet0; - $1092 = (_i64Add(($1062|0),($1063|0),($1038|0),($1039|0))|0); - $1093 = tempRet0; - $1094 = (_i64Add(($1092|0),($1093|0),($1090|0),($1091|0))|0); - $1095 = tempRet0; - $1096 = (_i64Add(($1094|0),($1095|0),($336|0),($337|0))|0); - $1097 = tempRet0; - $1098 = (_i64Add(($1096|0),($1097|0),($892|0),($893|0))|0); - $1099 = tempRet0; - $1100 = (_i64Subtract(($1098|0),($1099|0),($722|0),($723|0))|0); - $1101 = tempRet0; - $1102 = (___muldi3(($940|0),($941|0),-997805,-1)|0); - $1103 = tempRet0; - $1104 = (_i64Add(($1066|0),($1067|0),($1102|0),($1103|0))|0); - $1105 = tempRet0; - $1106 = (___muldi3(($940|0),($941|0),136657,0)|0); - $1107 = tempRet0; - $1108 = (_i64Add(($1070|0),($1071|0),($1106|0),($1107|0))|0); - $1109 = tempRet0; - $1110 = (___muldi3(($940|0),($941|0),-683901,-1)|0); - $1111 = tempRet0; - $1112 = (_i64Add(($1074|0),($1075|0),($1110|0),($1111|0))|0); - $1113 = tempRet0; - $1114 = (_i64Add(($1086|0),($1087|0),1048576,0)|0); - $1115 = tempRet0; - $1116 = (_bitshift64Ashr(($1114|0),($1115|0),21)|0); - $1117 = tempRet0; - $1118 = (_i64Add(($1088|0),($1089|0),($1060|0),($1061|0))|0); - $1119 = tempRet0; - $1120 = (_i64Add(($1118|0),($1119|0),($692|0),($693|0))|0); - $1121 = tempRet0; - $1122 = (_i64Subtract(($1120|0),($1121|0),($894|0),($895|0))|0); - $1123 = tempRet0; - $1124 = (_i64Add(($1122|0),($1123|0),($1116|0),($1117|0))|0); + $946 = ((($0)) + 64|0); + $947 = $946; + $948 = $947; + HEAP32[$948>>2] = $944; + $949 = (($947) + 4)|0; + $950 = $949; + HEAP32[$950>>2] = $945; + $951 = $301; + $952 = $951; + $953 = HEAP32[$952>>2]|0; + $954 = (($951) + 4)|0; + $955 = $954; + $956 = HEAP32[$955>>2]|0; + $957 = (_bitshift64Ashr(0,($953|0),32)|0); + $958 = tempRet0; + $959 = $413; + $960 = $959; + $961 = HEAP32[$960>>2]|0; + $962 = (($959) + 4)|0; + $963 = $962; + $964 = HEAP32[$963>>2]|0; + $965 = (_bitshift64Ashr(0,($961|0),32)|0); + $966 = tempRet0; + $967 = (___muldi3(($965|0),($966|0),($957|0),($958|0))|0); + $968 = tempRet0; + $969 = $426; + $970 = $969; + $971 = HEAP32[$970>>2]|0; + $972 = (($969) + 4)|0; + $973 = $972; + $974 = HEAP32[$973>>2]|0; + $975 = (_bitshift64Ashr(0,($971|0),32)|0); + $976 = tempRet0; + $977 = $288; + $978 = $977; + $979 = HEAP32[$978>>2]|0; + $980 = (($977) + 4)|0; + $981 = $980; + $982 = HEAP32[$981>>2]|0; + $983 = (_bitshift64Ashr(0,($979|0),32)|0); + $984 = tempRet0; + $985 = (___muldi3(($983|0),($984|0),($975|0),($976|0))|0); + $986 = tempRet0; + $987 = (_i64Add(($985|0),($986|0),($967|0),($968|0))|0); + $988 = tempRet0; + $989 = $194; + $990 = $989; + $991 = HEAP32[$990>>2]|0; + $992 = (($989) + 4)|0; + $993 = $992; + $994 = HEAP32[$993>>2]|0; + $995 = (_bitshift64Ashr(0,($991|0),32)|0); + $996 = tempRet0; + $997 = $560; + $998 = $997; + $999 = HEAP32[$998>>2]|0; + $1000 = (($997) + 4)|0; + $1001 = $1000; + $1002 = HEAP32[$1001>>2]|0; + $1003 = (_bitshift64Ashr(0,($999|0),32)|0); + $1004 = tempRet0; + $1005 = (___muldi3(($1003|0),($1004|0),($995|0),($996|0))|0); + $1006 = tempRet0; + $1007 = (_i64Add(($987|0),($988|0),($1005|0),($1006|0))|0); + $1008 = tempRet0; + $1009 = $573; + $1010 = $1009; + $1011 = HEAP32[$1010>>2]|0; + $1012 = (($1009) + 4)|0; + $1013 = $1012; + $1014 = HEAP32[$1013>>2]|0; + $1015 = (_bitshift64Ashr(0,($1011|0),32)|0); + $1016 = tempRet0; + $1017 = $181; + $1018 = $1017; + $1019 = HEAP32[$1018>>2]|0; + $1020 = (($1017) + 4)|0; + $1021 = $1020; + $1022 = HEAP32[$1021>>2]|0; + $1023 = (_bitshift64Ashr(0,($1019|0),32)|0); + $1024 = tempRet0; + $1025 = (___muldi3(($1023|0),($1024|0),($1015|0),($1016|0))|0); + $1026 = tempRet0; + $1027 = (_i64Add(($1007|0),($1008|0),($1025|0),($1026|0))|0); + $1028 = tempRet0; + $1029 = $109; + $1030 = $1029; + $1031 = HEAP32[$1030>>2]|0; + $1032 = (($1029) + 4)|0; + $1033 = $1032; + $1034 = HEAP32[$1033>>2]|0; + $1035 = (_bitshift64Ashr(0,($1031|0),32)|0); + $1036 = tempRet0; + $1037 = $725; + $1038 = $1037; + $1039 = HEAP32[$1038>>2]|0; + $1040 = (($1037) + 4)|0; + $1041 = $1040; + $1042 = HEAP32[$1041>>2]|0; + $1043 = (_bitshift64Ashr(0,($1039|0),32)|0); + $1044 = tempRet0; + $1045 = (___muldi3(($1043|0),($1044|0),($1035|0),($1036|0))|0); + $1046 = tempRet0; + $1047 = (_i64Add(($1027|0),($1028|0),($1045|0),($1046|0))|0); + $1048 = tempRet0; + $1049 = $738; + $1050 = $1049; + $1051 = HEAP32[$1050>>2]|0; + $1052 = (($1049) + 4)|0; + $1053 = $1052; + $1054 = HEAP32[$1053>>2]|0; + $1055 = (_bitshift64Ashr(0,($1051|0),32)|0); + $1056 = tempRet0; + $1057 = $96; + $1058 = $1057; + $1059 = HEAP32[$1058>>2]|0; + $1060 = (($1057) + 4)|0; + $1061 = $1060; + $1062 = HEAP32[$1061>>2]|0; + $1063 = (_bitshift64Ashr(0,($1059|0),32)|0); + $1064 = tempRet0; + $1065 = (___muldi3(($1063|0),($1064|0),($1055|0),($1056|0))|0); + $1066 = tempRet0; + $1067 = (_i64Add(($1047|0),($1048|0),($1065|0),($1066|0))|0); + $1068 = tempRet0; + $1069 = $44; + $1070 = $1069; + $1071 = HEAP32[$1070>>2]|0; + $1072 = (($1069) + 4)|0; + $1073 = $1072; + $1074 = HEAP32[$1073>>2]|0; + $1075 = (_bitshift64Ashr(0,($1071|0),32)|0); + $1076 = tempRet0; + $1077 = $912; + $1078 = $1077; + $1079 = HEAP32[$1078>>2]|0; + $1080 = (($1077) + 4)|0; + $1081 = $1080; + $1082 = HEAP32[$1081>>2]|0; + $1083 = (_bitshift64Ashr(0,($1079|0),32)|0); + $1084 = tempRet0; + $1085 = (___muldi3(($1083|0),($1084|0),($1075|0),($1076|0))|0); + $1086 = tempRet0; + $1087 = (_i64Add(($1067|0),($1068|0),($1085|0),($1086|0))|0); + $1088 = tempRet0; + $1089 = $925; + $1090 = $1089; + $1091 = HEAP32[$1090>>2]|0; + $1092 = (($1089) + 4)|0; + $1093 = $1092; + $1094 = HEAP32[$1093>>2]|0; + $1095 = (_bitshift64Ashr(0,($1091|0),32)|0); + $1096 = tempRet0; + $1097 = $33; + $1098 = $1097; + $1099 = HEAP32[$1098>>2]|0; + $1100 = (($1097) + 4)|0; + $1101 = $1100; + $1102 = HEAP32[$1101>>2]|0; + $1103 = (_bitshift64Ashr(0,($1099|0),32)|0); + $1104 = tempRet0; + $1105 = (___muldi3(($1103|0),($1104|0),($1095|0),($1096|0))|0); + $1106 = tempRet0; + $1107 = (_i64Add(($1087|0),($1088|0),($1105|0),($1106|0))|0); + $1108 = tempRet0; + $1109 = $1; + $1110 = $1109; + $1111 = HEAP32[$1110>>2]|0; + $1112 = (($1109) + 4)|0; + $1113 = $1112; + $1114 = HEAP32[$1113>>2]|0; + $1115 = (_bitshift64Ashr(0,($1111|0),32)|0); + $1116 = tempRet0; + $1117 = ((($2)) + 72|0); + $1118 = $1117; + $1119 = $1118; + $1120 = HEAP32[$1119>>2]|0; + $1121 = (($1118) + 4)|0; + $1122 = $1121; + $1123 = HEAP32[$1122>>2]|0; + $1124 = (_bitshift64Ashr(0,($1120|0),32)|0); $1125 = tempRet0; - $1126 = (_bitshift64Shl(($1116|0),($1117|0),21)|0); + $1126 = (___muldi3(($1124|0),($1125|0),($1115|0),($1116|0))|0); $1127 = tempRet0; - $1128 = (_i64Subtract(($1086|0),($1087|0),($1126|0),($1127|0))|0); + $1128 = (_i64Add(($1107|0),($1108|0),($1126|0),($1127|0))|0); $1129 = tempRet0; - $1130 = (_i64Add(($1100|0),($1101|0),1048576,0)|0); - $1131 = tempRet0; - $1132 = (_bitshift64Ashr(($1130|0),($1131|0),21)|0); - $1133 = tempRet0; - $1134 = (_i64Add(($1104|0),($1105|0),($1132|0),($1133|0))|0); - $1135 = tempRet0; - $1136 = (_bitshift64Shl(($1132|0),($1133|0),21)|0); - $1137 = tempRet0; - $1138 = (_i64Subtract(($1100|0),($1101|0),($1136|0),($1137|0))|0); - $1139 = tempRet0; - $1140 = (_i64Add(($1108|0),($1109|0),1048576,0)|0); - $1141 = tempRet0; - $1142 = (_bitshift64Ashr(($1140|0),($1141|0),21)|0); - $1143 = tempRet0; - $1144 = (_i64Add(($1112|0),($1113|0),($1142|0),($1143|0))|0); - $1145 = tempRet0; - $1146 = (_bitshift64Shl(($1142|0),($1143|0),21)|0); - $1147 = tempRet0; - $1148 = (_i64Subtract(($1108|0),($1109|0),($1146|0),($1147|0))|0); - $1149 = tempRet0; - $1150 = (_i64Add(($1078|0),($1079|0),1048576,0)|0); - $1151 = tempRet0; - $1152 = (_bitshift64Ashr(($1150|0),($1151|0),21)|0); - $1153 = tempRet0; - $1154 = (_i64Add(($1152|0),($1153|0),($1058|0),($1059|0))|0); - $1155 = tempRet0; - $1156 = (_bitshift64Shl(($1152|0),($1153|0),21)|0); - $1157 = tempRet0; - $1158 = (_i64Subtract(($1078|0),($1079|0),($1156|0),($1157|0))|0); - $1159 = tempRet0; - $1160 = (_i64Add(($1036|0),($1037|0),1048576,0)|0); - $1161 = tempRet0; - $1162 = (_bitshift64Ashr(($1160|0),($1161|0),21)|0); + $1130 = ((($1)) + 72|0); + $1131 = $1130; + $1132 = $1131; + $1133 = HEAP32[$1132>>2]|0; + $1134 = (($1131) + 4)|0; + $1135 = $1134; + $1136 = HEAP32[$1135>>2]|0; + $1137 = (_bitshift64Ashr(0,($1133|0),32)|0); + $1138 = tempRet0; + $1139 = $2; + $1140 = $1139; + $1141 = HEAP32[$1140>>2]|0; + $1142 = (($1139) + 4)|0; + $1143 = $1142; + $1144 = HEAP32[$1143>>2]|0; + $1145 = (_bitshift64Ashr(0,($1141|0),32)|0); + $1146 = tempRet0; + $1147 = (___muldi3(($1145|0),($1146|0),($1137|0),($1138|0))|0); + $1148 = tempRet0; + $1149 = (_i64Add(($1128|0),($1129|0),($1147|0),($1148|0))|0); + $1150 = tempRet0; + $1151 = ((($0)) + 72|0); + $1152 = $1151; + $1153 = $1152; + HEAP32[$1153>>2] = $1149; + $1154 = (($1152) + 4)|0; + $1155 = $1154; + HEAP32[$1155>>2] = $1150; + $1156 = $426; + $1157 = $1156; + $1158 = HEAP32[$1157>>2]|0; + $1159 = (($1156) + 4)|0; + $1160 = $1159; + $1161 = HEAP32[$1160>>2]|0; + $1162 = (_bitshift64Ashr(0,($1158|0),32)|0); $1163 = tempRet0; - $1164 = (_i64Add(($1162|0),($1163|0),($1012|0),($1013|0))|0); - $1165 = tempRet0; - $1166 = (_bitshift64Shl(($1162|0),($1163|0),21)|0); - $1167 = tempRet0; - $1168 = (_i64Subtract(($1036|0),($1037|0),($1166|0),($1167|0))|0); - $1169 = tempRet0; - $1170 = (_i64Add(($988|0),($989|0),1048576,0)|0); + $1164 = $413; + $1165 = $1164; + $1166 = HEAP32[$1165>>2]|0; + $1167 = (($1164) + 4)|0; + $1168 = $1167; + $1169 = HEAP32[$1168>>2]|0; + $1170 = (_bitshift64Ashr(0,($1166|0),32)|0); $1171 = tempRet0; - $1172 = (_bitshift64Ashr(($1170|0),($1171|0),21)|0); + $1172 = (___muldi3(($1170|0),($1171|0),($1162|0),($1163|0))|0); $1173 = tempRet0; - $1174 = (_i64Add(($1172|0),($1173|0),($944|0),($945|0))|0); - $1175 = tempRet0; - $1176 = (_bitshift64Shl(($1172|0),($1173|0),21)|0); - $1177 = tempRet0; - $1178 = (_i64Subtract(($988|0),($989|0),($1176|0),($1177|0))|0); - $1179 = tempRet0; - $1180 = (_i64Add(($1124|0),($1125|0),1048576,0)|0); + $1174 = $194; + $1175 = $1174; + $1176 = HEAP32[$1175>>2]|0; + $1177 = (($1174) + 4)|0; + $1178 = $1177; + $1179 = HEAP32[$1178>>2]|0; + $1180 = (_bitshift64Ashr(0,($1176|0),32)|0); $1181 = tempRet0; - $1182 = (_bitshift64Ashr(($1180|0),($1181|0),21)|0); - $1183 = tempRet0; - $1184 = (_i64Add(($1182|0),($1183|0),($1138|0),($1139|0))|0); - $1185 = tempRet0; - $1186 = (_bitshift64Shl(($1182|0),($1183|0),21)|0); - $1187 = tempRet0; - $1188 = (_i64Subtract(($1124|0),($1125|0),($1186|0),($1187|0))|0); + $1182 = $725; + $1183 = $1182; + $1184 = HEAP32[$1183>>2]|0; + $1185 = (($1182) + 4)|0; + $1186 = $1185; + $1187 = HEAP32[$1186>>2]|0; + $1188 = (_bitshift64Ashr(0,($1184|0),32)|0); $1189 = tempRet0; - $1190 = (_i64Add(($1134|0),($1135|0),1048576,0)|0); + $1190 = (___muldi3(($1188|0),($1189|0),($1180|0),($1181|0))|0); $1191 = tempRet0; - $1192 = (_bitshift64Ashr(($1190|0),($1191|0),21)|0); + $1192 = (_i64Add(($1190|0),($1191|0),($1172|0),($1173|0))|0); $1193 = tempRet0; - $1194 = (_i64Add(($1192|0),($1193|0),($1148|0),($1149|0))|0); - $1195 = tempRet0; - $1196 = (_bitshift64Shl(($1192|0),($1193|0),21)|0); - $1197 = tempRet0; - $1198 = (_i64Subtract(($1134|0),($1135|0),($1196|0),($1197|0))|0); - $1199 = tempRet0; - $1200 = (_i64Add(($1144|0),($1145|0),1048576,0)|0); + $1194 = $738; + $1195 = $1194; + $1196 = HEAP32[$1195>>2]|0; + $1197 = (($1194) + 4)|0; + $1198 = $1197; + $1199 = HEAP32[$1198>>2]|0; + $1200 = (_bitshift64Ashr(0,($1196|0),32)|0); $1201 = tempRet0; - $1202 = (_bitshift64Ashr(($1200|0),($1201|0),21)|0); - $1203 = tempRet0; - $1204 = (_i64Add(($1202|0),($1203|0),($1158|0),($1159|0))|0); - $1205 = tempRet0; - $1206 = (_bitshift64Shl(($1202|0),($1203|0),21)|0); - $1207 = tempRet0; - $1208 = (_i64Subtract(($1144|0),($1145|0),($1206|0),($1207|0))|0); + $1202 = $181; + $1203 = $1202; + $1204 = HEAP32[$1203>>2]|0; + $1205 = (($1202) + 4)|0; + $1206 = $1205; + $1207 = HEAP32[$1206>>2]|0; + $1208 = (_bitshift64Ashr(0,($1204|0),32)|0); $1209 = tempRet0; - $1210 = (_i64Add(($1154|0),($1155|0),1048576,0)|0); + $1210 = (___muldi3(($1208|0),($1209|0),($1200|0),($1201|0))|0); $1211 = tempRet0; - $1212 = (_bitshift64Ashr(($1210|0),($1211|0),21)|0); + $1212 = (_i64Add(($1192|0),($1193|0),($1210|0),($1211|0))|0); $1213 = tempRet0; - $1214 = (_i64Add(($1212|0),($1213|0),($1168|0),($1169|0))|0); - $1215 = tempRet0; - $1216 = (_bitshift64Shl(($1212|0),($1213|0),21)|0); - $1217 = tempRet0; - $1218 = (_i64Subtract(($1154|0),($1155|0),($1216|0),($1217|0))|0); - $1219 = tempRet0; - $1220 = (_i64Add(($1164|0),($1165|0),1048576,0)|0); + $1214 = $44; + $1215 = $1214; + $1216 = HEAP32[$1215>>2]|0; + $1217 = (($1214) + 4)|0; + $1218 = $1217; + $1219 = HEAP32[$1218>>2]|0; + $1220 = (_bitshift64Ashr(0,($1216|0),32)|0); $1221 = tempRet0; - $1222 = (_bitshift64Ashr(($1220|0),($1221|0),21)|0); - $1223 = tempRet0; - $1224 = (_i64Add(($1222|0),($1223|0),($1178|0),($1179|0))|0); - $1225 = tempRet0; - $1226 = (_bitshift64Shl(($1222|0),($1223|0),21)|0); - $1227 = tempRet0; - $1228 = (_i64Subtract(($1164|0),($1165|0),($1226|0),($1227|0))|0); + $1222 = $1117; + $1223 = $1222; + $1224 = HEAP32[$1223>>2]|0; + $1225 = (($1222) + 4)|0; + $1226 = $1225; + $1227 = HEAP32[$1226>>2]|0; + $1228 = (_bitshift64Ashr(0,($1224|0),32)|0); $1229 = tempRet0; - $1230 = (___muldi3(($1174|0),($1175|0),666643,0)|0); + $1230 = (___muldi3(($1228|0),($1229|0),($1220|0),($1221|0))|0); $1231 = tempRet0; - $1232 = (_i64Add(($888|0),($889|0),($1230|0),($1231|0))|0); + $1232 = (_i64Add(($1212|0),($1213|0),($1230|0),($1231|0))|0); $1233 = tempRet0; - $1234 = (___muldi3(($1174|0),($1175|0),470296,0)|0); - $1235 = tempRet0; - $1236 = (_i64Add(($1234|0),($1235|0),($1128|0),($1129|0))|0); - $1237 = tempRet0; - $1238 = (___muldi3(($1174|0),($1175|0),654183,0)|0); - $1239 = tempRet0; - $1240 = (_i64Add(($1238|0),($1239|0),($1188|0),($1189|0))|0); + $1234 = $1130; + $1235 = $1234; + $1236 = HEAP32[$1235>>2]|0; + $1237 = (($1234) + 4)|0; + $1238 = $1237; + $1239 = HEAP32[$1238>>2]|0; + $1240 = (_bitshift64Ashr(0,($1236|0),32)|0); $1241 = tempRet0; - $1242 = (___muldi3(($1174|0),($1175|0),-997805,-1)|0); - $1243 = tempRet0; - $1244 = (_i64Add(($1242|0),($1243|0),($1184|0),($1185|0))|0); - $1245 = tempRet0; - $1246 = (___muldi3(($1174|0),($1175|0),136657,0)|0); - $1247 = tempRet0; - $1248 = (_i64Add(($1246|0),($1247|0),($1198|0),($1199|0))|0); + $1242 = $33; + $1243 = $1242; + $1244 = HEAP32[$1243>>2]|0; + $1245 = (($1242) + 4)|0; + $1246 = $1245; + $1247 = HEAP32[$1246>>2]|0; + $1248 = (_bitshift64Ashr(0,($1244|0),32)|0); $1249 = tempRet0; - $1250 = (___muldi3(($1174|0),($1175|0),-683901,-1)|0); + $1250 = (___muldi3(($1248|0),($1249|0),($1240|0),($1241|0))|0); $1251 = tempRet0; - $1252 = (_i64Add(($1194|0),($1195|0),($1250|0),($1251|0))|0); + $1252 = (_i64Add(($1232|0),($1233|0),($1250|0),($1251|0))|0); $1253 = tempRet0; - $1254 = (___muldi3(($1224|0),($1225|0),666643,0)|0); + $1254 = (_bitshift64Shl(($1252|0),($1253|0),1)|0); $1255 = tempRet0; - $1256 = (_i64Add(($876|0),($877|0),($1254|0),($1255|0))|0); - $1257 = tempRet0; - $1258 = (___muldi3(($1224|0),($1225|0),470296,0)|0); - $1259 = tempRet0; - $1260 = (_i64Add(($1232|0),($1233|0),($1258|0),($1259|0))|0); - $1261 = tempRet0; - $1262 = (___muldi3(($1224|0),($1225|0),654183,0)|0); + $1256 = $301; + $1257 = $1256; + $1258 = HEAP32[$1257>>2]|0; + $1259 = (($1256) + 4)|0; + $1260 = $1259; + $1261 = HEAP32[$1260>>2]|0; + $1262 = (_bitshift64Ashr(0,($1258|0),32)|0); $1263 = tempRet0; - $1264 = (_i64Add(($1236|0),($1237|0),($1262|0),($1263|0))|0); - $1265 = tempRet0; - $1266 = (___muldi3(($1224|0),($1225|0),-997805,-1)|0); - $1267 = tempRet0; - $1268 = (_i64Add(($1266|0),($1267|0),($1240|0),($1241|0))|0); - $1269 = tempRet0; - $1270 = (___muldi3(($1224|0),($1225|0),136657,0)|0); + $1264 = $560; + $1265 = $1264; + $1266 = HEAP32[$1265>>2]|0; + $1267 = (($1264) + 4)|0; + $1268 = $1267; + $1269 = HEAP32[$1268>>2]|0; + $1270 = (_bitshift64Ashr(0,($1266|0),32)|0); $1271 = tempRet0; - $1272 = (_i64Add(($1270|0),($1271|0),($1244|0),($1245|0))|0); + $1272 = (___muldi3(($1270|0),($1271|0),($1262|0),($1263|0))|0); $1273 = tempRet0; - $1274 = (___muldi3(($1224|0),($1225|0),-683901,-1)|0); + $1274 = (_i64Add(($1254|0),($1255|0),($1272|0),($1273|0))|0); $1275 = tempRet0; - $1276 = (_i64Add(($1248|0),($1249|0),($1274|0),($1275|0))|0); - $1277 = tempRet0; - $1278 = (___muldi3(($1228|0),($1229|0),666643,0)|0); - $1279 = tempRet0; - $1280 = (_i64Add(($880|0),($881|0),($1278|0),($1279|0))|0); - $1281 = tempRet0; - $1282 = (___muldi3(($1228|0),($1229|0),470296,0)|0); + $1276 = $573; + $1277 = $1276; + $1278 = HEAP32[$1277>>2]|0; + $1279 = (($1276) + 4)|0; + $1280 = $1279; + $1281 = HEAP32[$1280>>2]|0; + $1282 = (_bitshift64Ashr(0,($1278|0),32)|0); $1283 = tempRet0; - $1284 = (_i64Add(($1256|0),($1257|0),($1282|0),($1283|0))|0); - $1285 = tempRet0; - $1286 = (___muldi3(($1228|0),($1229|0),654183,0)|0); - $1287 = tempRet0; - $1288 = (_i64Add(($1260|0),($1261|0),($1286|0),($1287|0))|0); - $1289 = tempRet0; - $1290 = (___muldi3(($1228|0),($1229|0),-997805,-1)|0); + $1284 = $288; + $1285 = $1284; + $1286 = HEAP32[$1285>>2]|0; + $1287 = (($1284) + 4)|0; + $1288 = $1287; + $1289 = HEAP32[$1288>>2]|0; + $1290 = (_bitshift64Ashr(0,($1286|0),32)|0); $1291 = tempRet0; - $1292 = (_i64Add(($1264|0),($1265|0),($1290|0),($1291|0))|0); + $1292 = (___muldi3(($1290|0),($1291|0),($1282|0),($1283|0))|0); $1293 = tempRet0; - $1294 = (___muldi3(($1228|0),($1229|0),136657,0)|0); + $1294 = (_i64Add(($1274|0),($1275|0),($1292|0),($1293|0))|0); $1295 = tempRet0; - $1296 = (_i64Add(($1294|0),($1295|0),($1268|0),($1269|0))|0); - $1297 = tempRet0; - $1298 = (___muldi3(($1228|0),($1229|0),-683901,-1)|0); - $1299 = tempRet0; - $1300 = (_i64Add(($1272|0),($1273|0),($1298|0),($1299|0))|0); - $1301 = tempRet0; - $1302 = (___muldi3(($1214|0),($1215|0),666643,0)|0); + $1296 = $109; + $1297 = $1296; + $1298 = HEAP32[$1297>>2]|0; + $1299 = (($1296) + 4)|0; + $1300 = $1299; + $1301 = HEAP32[$1300>>2]|0; + $1302 = (_bitshift64Ashr(0,($1298|0),32)|0); $1303 = tempRet0; - $1304 = (___muldi3(($1214|0),($1215|0),470296,0)|0); - $1305 = tempRet0; - $1306 = (_i64Add(($1280|0),($1281|0),($1304|0),($1305|0))|0); - $1307 = tempRet0; - $1308 = (___muldi3(($1214|0),($1215|0),654183,0)|0); - $1309 = tempRet0; - $1310 = (_i64Add(($1284|0),($1285|0),($1308|0),($1309|0))|0); + $1304 = $912; + $1305 = $1304; + $1306 = HEAP32[$1305>>2]|0; + $1307 = (($1304) + 4)|0; + $1308 = $1307; + $1309 = HEAP32[$1308>>2]|0; + $1310 = (_bitshift64Ashr(0,($1306|0),32)|0); $1311 = tempRet0; - $1312 = (___muldi3(($1214|0),($1215|0),-997805,-1)|0); + $1312 = (___muldi3(($1310|0),($1311|0),($1302|0),($1303|0))|0); $1313 = tempRet0; - $1314 = (_i64Add(($1288|0),($1289|0),($1312|0),($1313|0))|0); + $1314 = (_i64Add(($1294|0),($1295|0),($1312|0),($1313|0))|0); $1315 = tempRet0; - $1316 = (___muldi3(($1214|0),($1215|0),136657,0)|0); - $1317 = tempRet0; - $1318 = (_i64Add(($1292|0),($1293|0),($1316|0),($1317|0))|0); - $1319 = tempRet0; - $1320 = (___muldi3(($1214|0),($1215|0),-683901,-1)|0); - $1321 = tempRet0; - $1322 = (_i64Add(($1296|0),($1297|0),($1320|0),($1321|0))|0); + $1316 = $925; + $1317 = $1316; + $1318 = HEAP32[$1317>>2]|0; + $1319 = (($1316) + 4)|0; + $1320 = $1319; + $1321 = HEAP32[$1320>>2]|0; + $1322 = (_bitshift64Ashr(0,($1318|0),32)|0); $1323 = tempRet0; - $1324 = (___muldi3(($1218|0),($1219|0),666643,0)|0); - $1325 = tempRet0; - $1326 = (___muldi3(($1218|0),($1219|0),470296,0)|0); - $1327 = tempRet0; - $1328 = (___muldi3(($1218|0),($1219|0),654183,0)|0); - $1329 = tempRet0; - $1330 = (_i64Add(($1306|0),($1307|0),($1328|0),($1329|0))|0); - $1331 = tempRet0; - $1332 = (___muldi3(($1218|0),($1219|0),-997805,-1)|0); - $1333 = tempRet0; - $1334 = (_i64Add(($1310|0),($1311|0),($1332|0),($1333|0))|0); - $1335 = tempRet0; - $1336 = (___muldi3(($1218|0),($1219|0),136657,0)|0); - $1337 = tempRet0; - $1338 = (_i64Add(($1314|0),($1315|0),($1336|0),($1337|0))|0); - $1339 = tempRet0; - $1340 = (___muldi3(($1218|0),($1219|0),-683901,-1)|0); - $1341 = tempRet0; - $1342 = (_i64Add(($1318|0),($1319|0),($1340|0),($1341|0))|0); - $1343 = tempRet0; - $1344 = (___muldi3(($1204|0),($1205|0),666643,0)|0); - $1345 = tempRet0; - $1346 = (_i64Add(($1344|0),($1345|0),($632|0),($633|0))|0); - $1347 = tempRet0; - $1348 = (___muldi3(($1204|0),($1205|0),470296,0)|0); - $1349 = tempRet0; - $1350 = (___muldi3(($1204|0),($1205|0),654183,0)|0); - $1351 = tempRet0; - $1352 = (_i64Add(($866|0),($867|0),($216|0),($217|0))|0); - $1353 = tempRet0; - $1354 = (_i64Subtract(($1352|0),($1353|0),($648|0),($649|0))|0); - $1355 = tempRet0; - $1356 = (_i64Add(($1354|0),($1355|0),($1302|0),($1303|0))|0); - $1357 = tempRet0; - $1358 = (_i64Add(($1356|0),($1357|0),($1350|0),($1351|0))|0); - $1359 = tempRet0; - $1360 = (_i64Add(($1358|0),($1359|0),($1326|0),($1327|0))|0); - $1361 = tempRet0; - $1362 = (___muldi3(($1204|0),($1205|0),-997805,-1)|0); - $1363 = tempRet0; - $1364 = (_i64Add(($1330|0),($1331|0),($1362|0),($1363|0))|0); - $1365 = tempRet0; - $1366 = (___muldi3(($1204|0),($1205|0),136657,0)|0); - $1367 = tempRet0; - $1368 = (_i64Add(($1334|0),($1335|0),($1366|0),($1367|0))|0); - $1369 = tempRet0; - $1370 = (___muldi3(($1204|0),($1205|0),-683901,-1)|0); - $1371 = tempRet0; - $1372 = (_i64Add(($1338|0),($1339|0),($1370|0),($1371|0))|0); - $1373 = tempRet0; - $1374 = (_i64Add(($1346|0),($1347|0),1048576,0)|0); - $1375 = tempRet0; - $1376 = (_bitshift64Ashr(($1374|0),($1375|0),21)|0); - $1377 = tempRet0; - $1378 = (_i64Add(($870|0),($871|0),($1348|0),($1349|0))|0); - $1379 = tempRet0; - $1380 = (_i64Add(($1378|0),($1379|0),($1324|0),($1325|0))|0); - $1381 = tempRet0; - $1382 = (_i64Add(($1380|0),($1381|0),($1376|0),($1377|0))|0); - $1383 = tempRet0; - $1384 = (_bitshift64Shl(($1376|0),($1377|0),21)|0); - $1385 = tempRet0; - $1386 = (_i64Subtract(($1346|0),($1347|0),($1384|0),($1385|0))|0); - $1387 = tempRet0; - $1388 = (_i64Add(($1360|0),($1361|0),1048576,0)|0); - $1389 = tempRet0; - $1390 = (_bitshift64Ashr(($1388|0),($1389|0),21)|0); - $1391 = tempRet0; - $1392 = (_i64Add(($1390|0),($1391|0),($1364|0),($1365|0))|0); - $1393 = tempRet0; - $1394 = (_bitshift64Shl(($1390|0),($1391|0),21)|0); - $1395 = tempRet0; - $1396 = (_i64Add(($1368|0),($1369|0),1048576,0)|0); - $1397 = tempRet0; - $1398 = (_bitshift64Ashr(($1396|0),($1397|0),21)|0); - $1399 = tempRet0; - $1400 = (_i64Add(($1398|0),($1399|0),($1372|0),($1373|0))|0); - $1401 = tempRet0; - $1402 = (_bitshift64Shl(($1398|0),($1399|0),21)|0); - $1403 = tempRet0; - $1404 = (_i64Add(($1342|0),($1343|0),1048576,0)|0); - $1405 = tempRet0; - $1406 = (_bitshift64Ashr(($1404|0),($1405|0),21)|0); - $1407 = tempRet0; - $1408 = (_i64Add(($1406|0),($1407|0),($1322|0),($1323|0))|0); - $1409 = tempRet0; - $1410 = (_bitshift64Shl(($1406|0),($1407|0),21)|0); - $1411 = tempRet0; - $1412 = (_i64Subtract(($1342|0),($1343|0),($1410|0),($1411|0))|0); - $1413 = tempRet0; - $1414 = (_i64Add(($1300|0),($1301|0),1048576,0)|0); - $1415 = tempRet0; - $1416 = (_bitshift64Ashr(($1414|0),($1415|0),21)|0); - $1417 = tempRet0; - $1418 = (_i64Add(($1276|0),($1277|0),($1416|0),($1417|0))|0); - $1419 = tempRet0; - $1420 = (_bitshift64Shl(($1416|0),($1417|0),21)|0); - $1421 = tempRet0; - $1422 = (_i64Subtract(($1300|0),($1301|0),($1420|0),($1421|0))|0); - $1423 = tempRet0; - $1424 = (_i64Add(($1252|0),($1253|0),1048576,0)|0); - $1425 = tempRet0; - $1426 = (_bitshift64Ashr(($1424|0),($1425|0),21)|0); - $1427 = tempRet0; - $1428 = (_i64Add(($1208|0),($1209|0),($1426|0),($1427|0))|0); - $1429 = tempRet0; - $1430 = (_bitshift64Shl(($1426|0),($1427|0),21)|0); - $1431 = tempRet0; - $1432 = (_i64Add(($1382|0),($1383|0),1048576,0)|0); - $1433 = tempRet0; - $1434 = (_bitshift64Ashr(($1432|0),($1433|0),21)|0); - $1435 = tempRet0; - $1436 = (_bitshift64Shl(($1434|0),($1435|0),21)|0); - $1437 = tempRet0; - $1438 = (_i64Add(($1392|0),($1393|0),1048576,0)|0); - $1439 = tempRet0; - $1440 = (_bitshift64Ashr(($1438|0),($1439|0),21)|0); - $1441 = tempRet0; - $1442 = (_bitshift64Shl(($1440|0),($1441|0),21)|0); - $1443 = tempRet0; - $1444 = (_i64Subtract(($1392|0),($1393|0),($1442|0),($1443|0))|0); - $1445 = tempRet0; - $1446 = (_i64Add(($1400|0),($1401|0),1048576,0)|0); - $1447 = tempRet0; - $1448 = (_bitshift64Ashr(($1446|0),($1447|0),21)|0); - $1449 = tempRet0; - $1450 = (_i64Add(($1412|0),($1413|0),($1448|0),($1449|0))|0); - $1451 = tempRet0; - $1452 = (_bitshift64Shl(($1448|0),($1449|0),21)|0); - $1453 = tempRet0; - $1454 = (_i64Subtract(($1400|0),($1401|0),($1452|0),($1453|0))|0); - $1455 = tempRet0; - $1456 = (_i64Add(($1408|0),($1409|0),1048576,0)|0); - $1457 = tempRet0; - $1458 = (_bitshift64Ashr(($1456|0),($1457|0),21)|0); - $1459 = tempRet0; - $1460 = (_i64Add(($1422|0),($1423|0),($1458|0),($1459|0))|0); - $1461 = tempRet0; - $1462 = (_bitshift64Shl(($1458|0),($1459|0),21)|0); - $1463 = tempRet0; - $1464 = (_i64Subtract(($1408|0),($1409|0),($1462|0),($1463|0))|0); - $1465 = tempRet0; - $1466 = (_i64Add(($1418|0),($1419|0),1048576,0)|0); - $1467 = tempRet0; - $1468 = (_bitshift64Ashr(($1466|0),($1467|0),21)|0); - $1469 = tempRet0; - $1470 = (_bitshift64Shl(($1468|0),($1469|0),21)|0); - $1471 = tempRet0; - $1472 = (_i64Subtract(($1418|0),($1419|0),($1470|0),($1471|0))|0); - $1473 = tempRet0; - $1474 = (_i64Add(($1428|0),($1429|0),1048576,0)|0); - $1475 = tempRet0; - $1476 = (_bitshift64Ashr(($1474|0),($1475|0),21)|0); - $1477 = tempRet0; - $1478 = (_bitshift64Shl(($1476|0),($1477|0),21)|0); - $1479 = tempRet0; - $1480 = (_i64Subtract(($1428|0),($1429|0),($1478|0),($1479|0))|0); - $1481 = tempRet0; - $1482 = (___muldi3(($1476|0),($1477|0),666643,0)|0); - $1483 = tempRet0; - $1484 = (_i64Add(($1386|0),($1387|0),($1482|0),($1483|0))|0); - $1485 = tempRet0; - $1486 = (___muldi3(($1476|0),($1477|0),470296,0)|0); - $1487 = tempRet0; - $1488 = (___muldi3(($1476|0),($1477|0),654183,0)|0); - $1489 = tempRet0; - $1490 = (___muldi3(($1476|0),($1477|0),-997805,-1)|0); - $1491 = tempRet0; - $1492 = (_i64Add(($1444|0),($1445|0),($1490|0),($1491|0))|0); - $1493 = tempRet0; - $1494 = (___muldi3(($1476|0),($1477|0),136657,0)|0); - $1495 = tempRet0; - $1496 = (___muldi3(($1476|0),($1477|0),-683901,-1)|0); - $1497 = tempRet0; - $1498 = (_i64Add(($1454|0),($1455|0),($1496|0),($1497|0))|0); - $1499 = tempRet0; - $1500 = (_bitshift64Ashr(($1484|0),($1485|0),21)|0); - $1501 = tempRet0; - $1502 = (_i64Add(($1486|0),($1487|0),($1382|0),($1383|0))|0); - $1503 = tempRet0; - $1504 = (_i64Subtract(($1502|0),($1503|0),($1436|0),($1437|0))|0); - $1505 = tempRet0; - $1506 = (_i64Add(($1504|0),($1505|0),($1500|0),($1501|0))|0); - $1507 = tempRet0; - $1508 = (_bitshift64Shl(($1500|0),($1501|0),21)|0); - $1509 = tempRet0; - $1510 = (_i64Subtract(($1484|0),($1485|0),($1508|0),($1509|0))|0); + $1324 = $96; + $1325 = $1324; + $1326 = HEAP32[$1325>>2]|0; + $1327 = (($1324) + 4)|0; + $1328 = $1327; + $1329 = HEAP32[$1328>>2]|0; + $1330 = (_bitshift64Ashr(0,($1326|0),32)|0); + $1331 = tempRet0; + $1332 = (___muldi3(($1330|0),($1331|0),($1322|0),($1323|0))|0); + $1333 = tempRet0; + $1334 = (_i64Add(($1314|0),($1315|0),($1332|0),($1333|0))|0); + $1335 = tempRet0; + $1336 = ((($0)) + 80|0); + $1337 = $1336; + $1338 = $1337; + HEAP32[$1338>>2] = $1334; + $1339 = (($1337) + 4)|0; + $1340 = $1339; + HEAP32[$1340>>2] = $1335; + $1341 = $426; + $1342 = $1341; + $1343 = HEAP32[$1342>>2]|0; + $1344 = (($1341) + 4)|0; + $1345 = $1344; + $1346 = HEAP32[$1345>>2]|0; + $1347 = (_bitshift64Ashr(0,($1343|0),32)|0); + $1348 = tempRet0; + $1349 = $560; + $1350 = $1349; + $1351 = HEAP32[$1350>>2]|0; + $1352 = (($1349) + 4)|0; + $1353 = $1352; + $1354 = HEAP32[$1353>>2]|0; + $1355 = (_bitshift64Ashr(0,($1351|0),32)|0); + $1356 = tempRet0; + $1357 = (___muldi3(($1355|0),($1356|0),($1347|0),($1348|0))|0); + $1358 = tempRet0; + $1359 = $573; + $1360 = $1359; + $1361 = HEAP32[$1360>>2]|0; + $1362 = (($1359) + 4)|0; + $1363 = $1362; + $1364 = HEAP32[$1363>>2]|0; + $1365 = (_bitshift64Ashr(0,($1361|0),32)|0); + $1366 = tempRet0; + $1367 = $413; + $1368 = $1367; + $1369 = HEAP32[$1368>>2]|0; + $1370 = (($1367) + 4)|0; + $1371 = $1370; + $1372 = HEAP32[$1371>>2]|0; + $1373 = (_bitshift64Ashr(0,($1369|0),32)|0); + $1374 = tempRet0; + $1375 = (___muldi3(($1373|0),($1374|0),($1365|0),($1366|0))|0); + $1376 = tempRet0; + $1377 = (_i64Add(($1375|0),($1376|0),($1357|0),($1358|0))|0); + $1378 = tempRet0; + $1379 = $301; + $1380 = $1379; + $1381 = HEAP32[$1380>>2]|0; + $1382 = (($1379) + 4)|0; + $1383 = $1382; + $1384 = HEAP32[$1383>>2]|0; + $1385 = (_bitshift64Ashr(0,($1381|0),32)|0); + $1386 = tempRet0; + $1387 = $725; + $1388 = $1387; + $1389 = HEAP32[$1388>>2]|0; + $1390 = (($1387) + 4)|0; + $1391 = $1390; + $1392 = HEAP32[$1391>>2]|0; + $1393 = (_bitshift64Ashr(0,($1389|0),32)|0); + $1394 = tempRet0; + $1395 = (___muldi3(($1393|0),($1394|0),($1385|0),($1386|0))|0); + $1396 = tempRet0; + $1397 = (_i64Add(($1377|0),($1378|0),($1395|0),($1396|0))|0); + $1398 = tempRet0; + $1399 = $738; + $1400 = $1399; + $1401 = HEAP32[$1400>>2]|0; + $1402 = (($1399) + 4)|0; + $1403 = $1402; + $1404 = HEAP32[$1403>>2]|0; + $1405 = (_bitshift64Ashr(0,($1401|0),32)|0); + $1406 = tempRet0; + $1407 = $288; + $1408 = $1407; + $1409 = HEAP32[$1408>>2]|0; + $1410 = (($1407) + 4)|0; + $1411 = $1410; + $1412 = HEAP32[$1411>>2]|0; + $1413 = (_bitshift64Ashr(0,($1409|0),32)|0); + $1414 = tempRet0; + $1415 = (___muldi3(($1413|0),($1414|0),($1405|0),($1406|0))|0); + $1416 = tempRet0; + $1417 = (_i64Add(($1397|0),($1398|0),($1415|0),($1416|0))|0); + $1418 = tempRet0; + $1419 = $194; + $1420 = $1419; + $1421 = HEAP32[$1420>>2]|0; + $1422 = (($1419) + 4)|0; + $1423 = $1422; + $1424 = HEAP32[$1423>>2]|0; + $1425 = (_bitshift64Ashr(0,($1421|0),32)|0); + $1426 = tempRet0; + $1427 = $912; + $1428 = $1427; + $1429 = HEAP32[$1428>>2]|0; + $1430 = (($1427) + 4)|0; + $1431 = $1430; + $1432 = HEAP32[$1431>>2]|0; + $1433 = (_bitshift64Ashr(0,($1429|0),32)|0); + $1434 = tempRet0; + $1435 = (___muldi3(($1433|0),($1434|0),($1425|0),($1426|0))|0); + $1436 = tempRet0; + $1437 = (_i64Add(($1417|0),($1418|0),($1435|0),($1436|0))|0); + $1438 = tempRet0; + $1439 = $925; + $1440 = $1439; + $1441 = HEAP32[$1440>>2]|0; + $1442 = (($1439) + 4)|0; + $1443 = $1442; + $1444 = HEAP32[$1443>>2]|0; + $1445 = (_bitshift64Ashr(0,($1441|0),32)|0); + $1446 = tempRet0; + $1447 = $181; + $1448 = $1447; + $1449 = HEAP32[$1448>>2]|0; + $1450 = (($1447) + 4)|0; + $1451 = $1450; + $1452 = HEAP32[$1451>>2]|0; + $1453 = (_bitshift64Ashr(0,($1449|0),32)|0); + $1454 = tempRet0; + $1455 = (___muldi3(($1453|0),($1454|0),($1445|0),($1446|0))|0); + $1456 = tempRet0; + $1457 = (_i64Add(($1437|0),($1438|0),($1455|0),($1456|0))|0); + $1458 = tempRet0; + $1459 = $109; + $1460 = $1459; + $1461 = HEAP32[$1460>>2]|0; + $1462 = (($1459) + 4)|0; + $1463 = $1462; + $1464 = HEAP32[$1463>>2]|0; + $1465 = (_bitshift64Ashr(0,($1461|0),32)|0); + $1466 = tempRet0; + $1467 = $1117; + $1468 = $1467; + $1469 = HEAP32[$1468>>2]|0; + $1470 = (($1467) + 4)|0; + $1471 = $1470; + $1472 = HEAP32[$1471>>2]|0; + $1473 = (_bitshift64Ashr(0,($1469|0),32)|0); + $1474 = tempRet0; + $1475 = (___muldi3(($1473|0),($1474|0),($1465|0),($1466|0))|0); + $1476 = tempRet0; + $1477 = (_i64Add(($1457|0),($1458|0),($1475|0),($1476|0))|0); + $1478 = tempRet0; + $1479 = $1130; + $1480 = $1479; + $1481 = HEAP32[$1480>>2]|0; + $1482 = (($1479) + 4)|0; + $1483 = $1482; + $1484 = HEAP32[$1483>>2]|0; + $1485 = (_bitshift64Ashr(0,($1481|0),32)|0); + $1486 = tempRet0; + $1487 = $96; + $1488 = $1487; + $1489 = HEAP32[$1488>>2]|0; + $1490 = (($1487) + 4)|0; + $1491 = $1490; + $1492 = HEAP32[$1491>>2]|0; + $1493 = (_bitshift64Ashr(0,($1489|0),32)|0); + $1494 = tempRet0; + $1495 = (___muldi3(($1493|0),($1494|0),($1485|0),($1486|0))|0); + $1496 = tempRet0; + $1497 = (_i64Add(($1477|0),($1478|0),($1495|0),($1496|0))|0); + $1498 = tempRet0; + $1499 = ((($0)) + 88|0); + $1500 = $1499; + $1501 = $1500; + HEAP32[$1501>>2] = $1497; + $1502 = (($1500) + 4)|0; + $1503 = $1502; + HEAP32[$1503>>2] = $1498; + $1504 = $573; + $1505 = $1504; + $1506 = HEAP32[$1505>>2]|0; + $1507 = (($1504) + 4)|0; + $1508 = $1507; + $1509 = HEAP32[$1508>>2]|0; + $1510 = (_bitshift64Ashr(0,($1506|0),32)|0); $1511 = tempRet0; - $1512 = (_bitshift64Ashr(($1506|0),($1507|0),21)|0); - $1513 = tempRet0; - $1514 = (_i64Add(($1488|0),($1489|0),($1360|0),($1361|0))|0); - $1515 = tempRet0; - $1516 = (_i64Subtract(($1514|0),($1515|0),($1394|0),($1395|0))|0); - $1517 = tempRet0; - $1518 = (_i64Add(($1516|0),($1517|0),($1434|0),($1435|0))|0); + $1512 = $560; + $1513 = $1512; + $1514 = HEAP32[$1513>>2]|0; + $1515 = (($1512) + 4)|0; + $1516 = $1515; + $1517 = HEAP32[$1516>>2]|0; + $1518 = (_bitshift64Ashr(0,($1514|0),32)|0); $1519 = tempRet0; - $1520 = (_i64Add(($1518|0),($1519|0),($1512|0),($1513|0))|0); + $1520 = (___muldi3(($1518|0),($1519|0),($1510|0),($1511|0))|0); $1521 = tempRet0; - $1522 = (_bitshift64Shl(($1512|0),($1513|0),21)|0); - $1523 = tempRet0; - $1524 = (_i64Subtract(($1506|0),($1507|0),($1522|0),($1523|0))|0); - $1525 = tempRet0; - $1526 = (_bitshift64Ashr(($1520|0),($1521|0),21)|0); - $1527 = tempRet0; - $1528 = (_i64Add(($1526|0),($1527|0),($1492|0),($1493|0))|0); + $1522 = $426; + $1523 = $1522; + $1524 = HEAP32[$1523>>2]|0; + $1525 = (($1522) + 4)|0; + $1526 = $1525; + $1527 = HEAP32[$1526>>2]|0; + $1528 = (_bitshift64Ashr(0,($1524|0),32)|0); $1529 = tempRet0; - $1530 = (_bitshift64Shl(($1526|0),($1527|0),21)|0); - $1531 = tempRet0; - $1532 = (_i64Subtract(($1520|0),($1521|0),($1530|0),($1531|0))|0); - $1533 = tempRet0; - $1534 = (_bitshift64Ashr(($1528|0),($1529|0),21)|0); - $1535 = tempRet0; - $1536 = (_i64Add(($1494|0),($1495|0),($1368|0),($1369|0))|0); + $1530 = $725; + $1531 = $1530; + $1532 = HEAP32[$1531>>2]|0; + $1533 = (($1530) + 4)|0; + $1534 = $1533; + $1535 = HEAP32[$1534>>2]|0; + $1536 = (_bitshift64Ashr(0,($1532|0),32)|0); $1537 = tempRet0; - $1538 = (_i64Subtract(($1536|0),($1537|0),($1402|0),($1403|0))|0); + $1538 = (___muldi3(($1536|0),($1537|0),($1528|0),($1529|0))|0); $1539 = tempRet0; - $1540 = (_i64Add(($1538|0),($1539|0),($1440|0),($1441|0))|0); - $1541 = tempRet0; - $1542 = (_i64Add(($1540|0),($1541|0),($1534|0),($1535|0))|0); - $1543 = tempRet0; - $1544 = (_bitshift64Shl(($1534|0),($1535|0),21)|0); - $1545 = tempRet0; - $1546 = (_i64Subtract(($1528|0),($1529|0),($1544|0),($1545|0))|0); + $1540 = $738; + $1541 = $1540; + $1542 = HEAP32[$1541>>2]|0; + $1543 = (($1540) + 4)|0; + $1544 = $1543; + $1545 = HEAP32[$1544>>2]|0; + $1546 = (_bitshift64Ashr(0,($1542|0),32)|0); $1547 = tempRet0; - $1548 = (_bitshift64Ashr(($1542|0),($1543|0),21)|0); - $1549 = tempRet0; - $1550 = (_i64Add(($1548|0),($1549|0),($1498|0),($1499|0))|0); - $1551 = tempRet0; - $1552 = (_bitshift64Shl(($1548|0),($1549|0),21)|0); - $1553 = tempRet0; - $1554 = (_i64Subtract(($1542|0),($1543|0),($1552|0),($1553|0))|0); + $1548 = $413; + $1549 = $1548; + $1550 = HEAP32[$1549>>2]|0; + $1551 = (($1548) + 4)|0; + $1552 = $1551; + $1553 = HEAP32[$1552>>2]|0; + $1554 = (_bitshift64Ashr(0,($1550|0),32)|0); $1555 = tempRet0; - $1556 = (_bitshift64Ashr(($1550|0),($1551|0),21)|0); + $1556 = (___muldi3(($1554|0),($1555|0),($1546|0),($1547|0))|0); $1557 = tempRet0; - $1558 = (_i64Add(($1450|0),($1451|0),($1556|0),($1557|0))|0); + $1558 = (_i64Add(($1556|0),($1557|0),($1538|0),($1539|0))|0); $1559 = tempRet0; - $1560 = (_bitshift64Shl(($1556|0),($1557|0),21)|0); - $1561 = tempRet0; - $1562 = (_i64Subtract(($1550|0),($1551|0),($1560|0),($1561|0))|0); - $1563 = tempRet0; - $1564 = (_bitshift64Ashr(($1558|0),($1559|0),21)|0); - $1565 = tempRet0; - $1566 = (_i64Add(($1564|0),($1565|0),($1464|0),($1465|0))|0); + $1560 = $194; + $1561 = $1560; + $1562 = HEAP32[$1561>>2]|0; + $1563 = (($1560) + 4)|0; + $1564 = $1563; + $1565 = HEAP32[$1564>>2]|0; + $1566 = (_bitshift64Ashr(0,($1562|0),32)|0); $1567 = tempRet0; - $1568 = (_bitshift64Shl(($1564|0),($1565|0),21)|0); - $1569 = tempRet0; - $1570 = (_i64Subtract(($1558|0),($1559|0),($1568|0),($1569|0))|0); - $1571 = tempRet0; - $1572 = (_bitshift64Ashr(($1566|0),($1567|0),21)|0); - $1573 = tempRet0; - $1574 = (_i64Add(($1460|0),($1461|0),($1572|0),($1573|0))|0); + $1568 = $1117; + $1569 = $1568; + $1570 = HEAP32[$1569>>2]|0; + $1571 = (($1568) + 4)|0; + $1572 = $1571; + $1573 = HEAP32[$1572>>2]|0; + $1574 = (_bitshift64Ashr(0,($1570|0),32)|0); $1575 = tempRet0; - $1576 = (_bitshift64Shl(($1572|0),($1573|0),21)|0); + $1576 = (___muldi3(($1574|0),($1575|0),($1566|0),($1567|0))|0); $1577 = tempRet0; - $1578 = (_i64Subtract(($1566|0),($1567|0),($1576|0),($1577|0))|0); + $1578 = (_i64Add(($1558|0),($1559|0),($1576|0),($1577|0))|0); $1579 = tempRet0; - $1580 = (_bitshift64Ashr(($1574|0),($1575|0),21)|0); - $1581 = tempRet0; - $1582 = (_i64Add(($1580|0),($1581|0),($1472|0),($1473|0))|0); - $1583 = tempRet0; - $1584 = (_bitshift64Shl(($1580|0),($1581|0),21)|0); - $1585 = tempRet0; - $1586 = (_i64Subtract(($1574|0),($1575|0),($1584|0),($1585|0))|0); + $1580 = $1130; + $1581 = $1580; + $1582 = HEAP32[$1581>>2]|0; + $1583 = (($1580) + 4)|0; + $1584 = $1583; + $1585 = HEAP32[$1584>>2]|0; + $1586 = (_bitshift64Ashr(0,($1582|0),32)|0); $1587 = tempRet0; - $1588 = (_bitshift64Ashr(($1582|0),($1583|0),21)|0); - $1589 = tempRet0; - $1590 = (_i64Add(($1468|0),($1469|0),($1252|0),($1253|0))|0); - $1591 = tempRet0; - $1592 = (_i64Subtract(($1590|0),($1591|0),($1430|0),($1431|0))|0); - $1593 = tempRet0; - $1594 = (_i64Add(($1592|0),($1593|0),($1588|0),($1589|0))|0); + $1588 = $181; + $1589 = $1588; + $1590 = HEAP32[$1589>>2]|0; + $1591 = (($1588) + 4)|0; + $1592 = $1591; + $1593 = HEAP32[$1592>>2]|0; + $1594 = (_bitshift64Ashr(0,($1590|0),32)|0); $1595 = tempRet0; - $1596 = (_bitshift64Shl(($1588|0),($1589|0),21)|0); + $1596 = (___muldi3(($1594|0),($1595|0),($1586|0),($1587|0))|0); $1597 = tempRet0; - $1598 = (_i64Subtract(($1582|0),($1583|0),($1596|0),($1597|0))|0); + $1598 = (_i64Add(($1578|0),($1579|0),($1596|0),($1597|0))|0); $1599 = tempRet0; - $1600 = (_bitshift64Ashr(($1594|0),($1595|0),21)|0); + $1600 = (_bitshift64Shl(($1598|0),($1599|0),1)|0); $1601 = tempRet0; - $1602 = (_i64Add(($1600|0),($1601|0),($1480|0),($1481|0))|0); + $1602 = (_i64Add(($1600|0),($1601|0),($1520|0),($1521|0))|0); $1603 = tempRet0; - $1604 = (_bitshift64Shl(($1600|0),($1601|0),21)|0); - $1605 = tempRet0; - $1606 = (_i64Subtract(($1594|0),($1595|0),($1604|0),($1605|0))|0); - $1607 = tempRet0; - $1608 = (_bitshift64Ashr(($1602|0),($1603|0),21)|0); - $1609 = tempRet0; - $1610 = (_bitshift64Shl(($1608|0),($1609|0),21)|0); + $1604 = $301; + $1605 = $1604; + $1606 = HEAP32[$1605>>2]|0; + $1607 = (($1604) + 4)|0; + $1608 = $1607; + $1609 = HEAP32[$1608>>2]|0; + $1610 = (_bitshift64Ashr(0,($1606|0),32)|0); $1611 = tempRet0; - $1612 = (_i64Subtract(($1602|0),($1603|0),($1610|0),($1611|0))|0); - $1613 = tempRet0; - $1614 = (___muldi3(($1608|0),($1609|0),666643,0)|0); - $1615 = tempRet0; - $1616 = (_i64Add(($1614|0),($1615|0),($1510|0),($1511|0))|0); - $1617 = tempRet0; - $1618 = (___muldi3(($1608|0),($1609|0),470296,0)|0); + $1612 = $912; + $1613 = $1612; + $1614 = HEAP32[$1613>>2]|0; + $1615 = (($1612) + 4)|0; + $1616 = $1615; + $1617 = HEAP32[$1616>>2]|0; + $1618 = (_bitshift64Ashr(0,($1614|0),32)|0); $1619 = tempRet0; - $1620 = (_i64Add(($1524|0),($1525|0),($1618|0),($1619|0))|0); + $1620 = (___muldi3(($1618|0),($1619|0),($1610|0),($1611|0))|0); $1621 = tempRet0; - $1622 = (___muldi3(($1608|0),($1609|0),654183,0)|0); + $1622 = (_i64Add(($1602|0),($1603|0),($1620|0),($1621|0))|0); $1623 = tempRet0; - $1624 = (_i64Add(($1532|0),($1533|0),($1622|0),($1623|0))|0); - $1625 = tempRet0; - $1626 = (___muldi3(($1608|0),($1609|0),-997805,-1)|0); - $1627 = tempRet0; - $1628 = (_i64Add(($1546|0),($1547|0),($1626|0),($1627|0))|0); - $1629 = tempRet0; - $1630 = (___muldi3(($1608|0),($1609|0),136657,0)|0); + $1624 = $925; + $1625 = $1624; + $1626 = HEAP32[$1625>>2]|0; + $1627 = (($1624) + 4)|0; + $1628 = $1627; + $1629 = HEAP32[$1628>>2]|0; + $1630 = (_bitshift64Ashr(0,($1626|0),32)|0); $1631 = tempRet0; - $1632 = (_i64Add(($1554|0),($1555|0),($1630|0),($1631|0))|0); - $1633 = tempRet0; - $1634 = (___muldi3(($1608|0),($1609|0),-683901,-1)|0); - $1635 = tempRet0; - $1636 = (_i64Add(($1562|0),($1563|0),($1634|0),($1635|0))|0); - $1637 = tempRet0; - $1638 = (_bitshift64Ashr(($1616|0),($1617|0),21)|0); + $1632 = $288; + $1633 = $1632; + $1634 = HEAP32[$1633>>2]|0; + $1635 = (($1632) + 4)|0; + $1636 = $1635; + $1637 = HEAP32[$1636>>2]|0; + $1638 = (_bitshift64Ashr(0,($1634|0),32)|0); $1639 = tempRet0; - $1640 = (_i64Add(($1620|0),($1621|0),($1638|0),($1639|0))|0); + $1640 = (___muldi3(($1638|0),($1639|0),($1630|0),($1631|0))|0); $1641 = tempRet0; - $1642 = (_bitshift64Shl(($1638|0),($1639|0),21)|0); + $1642 = (_i64Add(($1622|0),($1623|0),($1640|0),($1641|0))|0); $1643 = tempRet0; - $1644 = (_i64Subtract(($1616|0),($1617|0),($1642|0),($1643|0))|0); - $1645 = tempRet0; - $1646 = (_bitshift64Ashr(($1640|0),($1641|0),21)|0); - $1647 = tempRet0; - $1648 = (_i64Add(($1624|0),($1625|0),($1646|0),($1647|0))|0); - $1649 = tempRet0; - $1650 = (_bitshift64Shl(($1646|0),($1647|0),21)|0); - $1651 = tempRet0; - $1652 = (_i64Subtract(($1640|0),($1641|0),($1650|0),($1651|0))|0); - $1653 = tempRet0; - $1654 = (_bitshift64Ashr(($1648|0),($1649|0),21)|0); - $1655 = tempRet0; - $1656 = (_i64Add(($1654|0),($1655|0),($1628|0),($1629|0))|0); - $1657 = tempRet0; - $1658 = (_bitshift64Shl(($1654|0),($1655|0),21)|0); - $1659 = tempRet0; - $1660 = (_i64Subtract(($1648|0),($1649|0),($1658|0),($1659|0))|0); - $1661 = tempRet0; - $1662 = (_bitshift64Ashr(($1656|0),($1657|0),21)|0); - $1663 = tempRet0; - $1664 = (_i64Add(($1632|0),($1633|0),($1662|0),($1663|0))|0); - $1665 = tempRet0; - $1666 = (_bitshift64Shl(($1662|0),($1663|0),21)|0); - $1667 = tempRet0; - $1668 = (_i64Subtract(($1656|0),($1657|0),($1666|0),($1667|0))|0); - $1669 = tempRet0; - $1670 = (_bitshift64Ashr(($1664|0),($1665|0),21)|0); - $1671 = tempRet0; - $1672 = (_i64Add(($1670|0),($1671|0),($1636|0),($1637|0))|0); - $1673 = tempRet0; - $1674 = (_bitshift64Shl(($1670|0),($1671|0),21)|0); - $1675 = tempRet0; - $1676 = (_i64Subtract(($1664|0),($1665|0),($1674|0),($1675|0))|0); - $1677 = tempRet0; - $1678 = (_bitshift64Ashr(($1672|0),($1673|0),21)|0); - $1679 = tempRet0; - $1680 = (_i64Add(($1678|0),($1679|0),($1570|0),($1571|0))|0); - $1681 = tempRet0; - $1682 = (_bitshift64Shl(($1678|0),($1679|0),21)|0); - $1683 = tempRet0; - $1684 = (_i64Subtract(($1672|0),($1673|0),($1682|0),($1683|0))|0); - $1685 = tempRet0; - $1686 = (_bitshift64Ashr(($1680|0),($1681|0),21)|0); - $1687 = tempRet0; - $1688 = (_i64Add(($1686|0),($1687|0),($1578|0),($1579|0))|0); - $1689 = tempRet0; - $1690 = (_bitshift64Shl(($1686|0),($1687|0),21)|0); - $1691 = tempRet0; - $1692 = (_i64Subtract(($1680|0),($1681|0),($1690|0),($1691|0))|0); - $1693 = tempRet0; - $1694 = (_bitshift64Ashr(($1688|0),($1689|0),21)|0); - $1695 = tempRet0; - $1696 = (_i64Add(($1694|0),($1695|0),($1586|0),($1587|0))|0); - $1697 = tempRet0; - $1698 = (_bitshift64Shl(($1694|0),($1695|0),21)|0); - $1699 = tempRet0; - $1700 = (_i64Subtract(($1688|0),($1689|0),($1698|0),($1699|0))|0); - $1701 = tempRet0; - $1702 = (_bitshift64Ashr(($1696|0),($1697|0),21)|0); - $1703 = tempRet0; - $1704 = (_i64Add(($1702|0),($1703|0),($1598|0),($1599|0))|0); - $1705 = tempRet0; - $1706 = (_bitshift64Shl(($1702|0),($1703|0),21)|0); - $1707 = tempRet0; - $1708 = (_i64Subtract(($1696|0),($1697|0),($1706|0),($1707|0))|0); - $1709 = tempRet0; - $1710 = (_bitshift64Ashr(($1704|0),($1705|0),21)|0); - $1711 = tempRet0; - $1712 = (_i64Add(($1710|0),($1711|0),($1606|0),($1607|0))|0); - $1713 = tempRet0; - $1714 = (_bitshift64Shl(($1710|0),($1711|0),21)|0); - $1715 = tempRet0; - $1716 = (_i64Subtract(($1704|0),($1705|0),($1714|0),($1715|0))|0); - $1717 = tempRet0; - $1718 = (_bitshift64Ashr(($1712|0),($1713|0),21)|0); - $1719 = tempRet0; - $1720 = (_i64Add(($1718|0),($1719|0),($1612|0),($1613|0))|0); - $1721 = tempRet0; - $1722 = (_bitshift64Shl(($1718|0),($1719|0),21)|0); - $1723 = tempRet0; - $1724 = (_i64Subtract(($1712|0),($1713|0),($1722|0),($1723|0))|0); - $1725 = tempRet0; - $1726 = $1644&255; - HEAP8[$s>>0] = $1726; - $1727 = (_bitshift64Lshr(($1644|0),($1645|0),8)|0); - $1728 = tempRet0; - $1729 = $1727&255; - $1730 = ((($s)) + 1|0); - HEAP8[$1730>>0] = $1729; - $1731 = (_bitshift64Lshr(($1644|0),($1645|0),16)|0); - $1732 = tempRet0; - $1733 = (_bitshift64Shl(($1652|0),($1653|0),5)|0); + $1644 = ((($0)) + 96|0); + $1645 = $1644; + $1646 = $1645; + HEAP32[$1646>>2] = $1642; + $1647 = (($1645) + 4)|0; + $1648 = $1647; + HEAP32[$1648>>2] = $1643; + $1649 = $573; + $1650 = $1649; + $1651 = HEAP32[$1650>>2]|0; + $1652 = (($1649) + 4)|0; + $1653 = $1652; + $1654 = HEAP32[$1653>>2]|0; + $1655 = (_bitshift64Ashr(0,($1651|0),32)|0); + $1656 = tempRet0; + $1657 = $725; + $1658 = $1657; + $1659 = HEAP32[$1658>>2]|0; + $1660 = (($1657) + 4)|0; + $1661 = $1660; + $1662 = HEAP32[$1661>>2]|0; + $1663 = (_bitshift64Ashr(0,($1659|0),32)|0); + $1664 = tempRet0; + $1665 = (___muldi3(($1663|0),($1664|0),($1655|0),($1656|0))|0); + $1666 = tempRet0; + $1667 = $738; + $1668 = $1667; + $1669 = HEAP32[$1668>>2]|0; + $1670 = (($1667) + 4)|0; + $1671 = $1670; + $1672 = HEAP32[$1671>>2]|0; + $1673 = (_bitshift64Ashr(0,($1669|0),32)|0); + $1674 = tempRet0; + $1675 = $560; + $1676 = $1675; + $1677 = HEAP32[$1676>>2]|0; + $1678 = (($1675) + 4)|0; + $1679 = $1678; + $1680 = HEAP32[$1679>>2]|0; + $1681 = (_bitshift64Ashr(0,($1677|0),32)|0); + $1682 = tempRet0; + $1683 = (___muldi3(($1681|0),($1682|0),($1673|0),($1674|0))|0); + $1684 = tempRet0; + $1685 = (_i64Add(($1683|0),($1684|0),($1665|0),($1666|0))|0); + $1686 = tempRet0; + $1687 = $426; + $1688 = $1687; + $1689 = HEAP32[$1688>>2]|0; + $1690 = (($1687) + 4)|0; + $1691 = $1690; + $1692 = HEAP32[$1691>>2]|0; + $1693 = (_bitshift64Ashr(0,($1689|0),32)|0); + $1694 = tempRet0; + $1695 = $912; + $1696 = $1695; + $1697 = HEAP32[$1696>>2]|0; + $1698 = (($1695) + 4)|0; + $1699 = $1698; + $1700 = HEAP32[$1699>>2]|0; + $1701 = (_bitshift64Ashr(0,($1697|0),32)|0); + $1702 = tempRet0; + $1703 = (___muldi3(($1701|0),($1702|0),($1693|0),($1694|0))|0); + $1704 = tempRet0; + $1705 = (_i64Add(($1685|0),($1686|0),($1703|0),($1704|0))|0); + $1706 = tempRet0; + $1707 = $925; + $1708 = $1707; + $1709 = HEAP32[$1708>>2]|0; + $1710 = (($1707) + 4)|0; + $1711 = $1710; + $1712 = HEAP32[$1711>>2]|0; + $1713 = (_bitshift64Ashr(0,($1709|0),32)|0); + $1714 = tempRet0; + $1715 = $413; + $1716 = $1715; + $1717 = HEAP32[$1716>>2]|0; + $1718 = (($1715) + 4)|0; + $1719 = $1718; + $1720 = HEAP32[$1719>>2]|0; + $1721 = (_bitshift64Ashr(0,($1717|0),32)|0); + $1722 = tempRet0; + $1723 = (___muldi3(($1721|0),($1722|0),($1713|0),($1714|0))|0); + $1724 = tempRet0; + $1725 = (_i64Add(($1705|0),($1706|0),($1723|0),($1724|0))|0); + $1726 = tempRet0; + $1727 = $301; + $1728 = $1727; + $1729 = HEAP32[$1728>>2]|0; + $1730 = (($1727) + 4)|0; + $1731 = $1730; + $1732 = HEAP32[$1731>>2]|0; + $1733 = (_bitshift64Ashr(0,($1729|0),32)|0); $1734 = tempRet0; - $1735 = $1733 | $1731; - $1734 | $1732; - $1736 = $1735&255; - $1737 = ((($s)) + 2|0); - HEAP8[$1737>>0] = $1736; - $1738 = (_bitshift64Lshr(($1652|0),($1653|0),3)|0); - $1739 = tempRet0; - $1740 = $1738&255; - $1741 = ((($s)) + 3|0); - HEAP8[$1741>>0] = $1740; - $1742 = (_bitshift64Lshr(($1652|0),($1653|0),11)|0); - $1743 = tempRet0; - $1744 = $1742&255; - $1745 = ((($s)) + 4|0); - HEAP8[$1745>>0] = $1744; - $1746 = (_bitshift64Lshr(($1652|0),($1653|0),19)|0); - $1747 = tempRet0; - $1748 = (_bitshift64Shl(($1660|0),($1661|0),2)|0); - $1749 = tempRet0; - $1750 = $1748 | $1746; - $1749 | $1747; - $1751 = $1750&255; - $1752 = ((($s)) + 5|0); - HEAP8[$1752>>0] = $1751; - $1753 = (_bitshift64Lshr(($1660|0),($1661|0),6)|0); + $1735 = $1117; + $1736 = $1735; + $1737 = HEAP32[$1736>>2]|0; + $1738 = (($1735) + 4)|0; + $1739 = $1738; + $1740 = HEAP32[$1739>>2]|0; + $1741 = (_bitshift64Ashr(0,($1737|0),32)|0); + $1742 = tempRet0; + $1743 = (___muldi3(($1741|0),($1742|0),($1733|0),($1734|0))|0); + $1744 = tempRet0; + $1745 = (_i64Add(($1725|0),($1726|0),($1743|0),($1744|0))|0); + $1746 = tempRet0; + $1747 = $1130; + $1748 = $1747; + $1749 = HEAP32[$1748>>2]|0; + $1750 = (($1747) + 4)|0; + $1751 = $1750; + $1752 = HEAP32[$1751>>2]|0; + $1753 = (_bitshift64Ashr(0,($1749|0),32)|0); $1754 = tempRet0; - $1755 = $1753&255; - $1756 = ((($s)) + 6|0); - HEAP8[$1756>>0] = $1755; - $1757 = (_bitshift64Lshr(($1660|0),($1661|0),14)|0); - $1758 = tempRet0; - $1759 = (_bitshift64Shl(($1668|0),($1669|0),7)|0); - $1760 = tempRet0; - $1761 = $1759 | $1757; - $1760 | $1758; - $1762 = $1761&255; - $1763 = ((($s)) + 7|0); - HEAP8[$1763>>0] = $1762; - $1764 = (_bitshift64Lshr(($1668|0),($1669|0),1)|0); - $1765 = tempRet0; - $1766 = $1764&255; - $1767 = ((($s)) + 8|0); - HEAP8[$1767>>0] = $1766; - $1768 = (_bitshift64Lshr(($1668|0),($1669|0),9)|0); - $1769 = tempRet0; - $1770 = $1768&255; - $1771 = ((($s)) + 9|0); - HEAP8[$1771>>0] = $1770; - $1772 = (_bitshift64Lshr(($1668|0),($1669|0),17)|0); - $1773 = tempRet0; - $1774 = (_bitshift64Shl(($1676|0),($1677|0),4)|0); - $1775 = tempRet0; - $1776 = $1774 | $1772; - $1775 | $1773; - $1777 = $1776&255; - $1778 = ((($s)) + 10|0); - HEAP8[$1778>>0] = $1777; - $1779 = (_bitshift64Lshr(($1676|0),($1677|0),4)|0); - $1780 = tempRet0; - $1781 = $1779&255; - $1782 = ((($s)) + 11|0); - HEAP8[$1782>>0] = $1781; - $1783 = (_bitshift64Lshr(($1676|0),($1677|0),12)|0); - $1784 = tempRet0; - $1785 = $1783&255; - $1786 = ((($s)) + 12|0); - HEAP8[$1786>>0] = $1785; - $1787 = (_bitshift64Lshr(($1676|0),($1677|0),20)|0); - $1788 = tempRet0; - $1789 = (_bitshift64Shl(($1684|0),($1685|0),1)|0); - $1790 = tempRet0; - $1791 = $1789 | $1787; - $1790 | $1788; - $1792 = $1791&255; - $1793 = ((($s)) + 13|0); - HEAP8[$1793>>0] = $1792; - $1794 = (_bitshift64Lshr(($1684|0),($1685|0),7)|0); - $1795 = tempRet0; - $1796 = $1794&255; - $1797 = ((($s)) + 14|0); - HEAP8[$1797>>0] = $1796; - $1798 = (_bitshift64Lshr(($1684|0),($1685|0),15)|0); - $1799 = tempRet0; - $1800 = (_bitshift64Shl(($1692|0),($1693|0),6)|0); - $1801 = tempRet0; - $1802 = $1800 | $1798; - $1801 | $1799; - $1803 = $1802&255; - $1804 = ((($s)) + 15|0); - HEAP8[$1804>>0] = $1803; - $1805 = (_bitshift64Lshr(($1692|0),($1693|0),2)|0); - $1806 = tempRet0; - $1807 = $1805&255; - $1808 = ((($s)) + 16|0); - HEAP8[$1808>>0] = $1807; - $1809 = (_bitshift64Lshr(($1692|0),($1693|0),10)|0); - $1810 = tempRet0; - $1811 = $1809&255; - $1812 = ((($s)) + 17|0); - HEAP8[$1812>>0] = $1811; - $1813 = (_bitshift64Lshr(($1692|0),($1693|0),18)|0); - $1814 = tempRet0; - $1815 = (_bitshift64Shl(($1700|0),($1701|0),3)|0); - $1816 = tempRet0; - $1817 = $1815 | $1813; - $1816 | $1814; - $1818 = $1817&255; - $1819 = ((($s)) + 18|0); - HEAP8[$1819>>0] = $1818; - $1820 = (_bitshift64Lshr(($1700|0),($1701|0),5)|0); - $1821 = tempRet0; - $1822 = $1820&255; - $1823 = ((($s)) + 19|0); - HEAP8[$1823>>0] = $1822; - $1824 = (_bitshift64Lshr(($1700|0),($1701|0),13)|0); + $1755 = $288; + $1756 = $1755; + $1757 = HEAP32[$1756>>2]|0; + $1758 = (($1755) + 4)|0; + $1759 = $1758; + $1760 = HEAP32[$1759>>2]|0; + $1761 = (_bitshift64Ashr(0,($1757|0),32)|0); + $1762 = tempRet0; + $1763 = (___muldi3(($1761|0),($1762|0),($1753|0),($1754|0))|0); + $1764 = tempRet0; + $1765 = (_i64Add(($1745|0),($1746|0),($1763|0),($1764|0))|0); + $1766 = tempRet0; + $1767 = ((($0)) + 104|0); + $1768 = $1767; + $1769 = $1768; + HEAP32[$1769>>2] = $1765; + $1770 = (($1768) + 4)|0; + $1771 = $1770; + HEAP32[$1771>>2] = $1766; + $1772 = $738; + $1773 = $1772; + $1774 = HEAP32[$1773>>2]|0; + $1775 = (($1772) + 4)|0; + $1776 = $1775; + $1777 = HEAP32[$1776>>2]|0; + $1778 = (_bitshift64Ashr(0,($1774|0),32)|0); + $1779 = tempRet0; + $1780 = $725; + $1781 = $1780; + $1782 = HEAP32[$1781>>2]|0; + $1783 = (($1780) + 4)|0; + $1784 = $1783; + $1785 = HEAP32[$1784>>2]|0; + $1786 = (_bitshift64Ashr(0,($1782|0),32)|0); + $1787 = tempRet0; + $1788 = (___muldi3(($1786|0),($1787|0),($1778|0),($1779|0))|0); + $1789 = tempRet0; + $1790 = $426; + $1791 = $1790; + $1792 = HEAP32[$1791>>2]|0; + $1793 = (($1790) + 4)|0; + $1794 = $1793; + $1795 = HEAP32[$1794>>2]|0; + $1796 = (_bitshift64Ashr(0,($1792|0),32)|0); + $1797 = tempRet0; + $1798 = $1117; + $1799 = $1798; + $1800 = HEAP32[$1799>>2]|0; + $1801 = (($1798) + 4)|0; + $1802 = $1801; + $1803 = HEAP32[$1802>>2]|0; + $1804 = (_bitshift64Ashr(0,($1800|0),32)|0); + $1805 = tempRet0; + $1806 = (___muldi3(($1804|0),($1805|0),($1796|0),($1797|0))|0); + $1807 = tempRet0; + $1808 = (_i64Add(($1806|0),($1807|0),($1788|0),($1789|0))|0); + $1809 = tempRet0; + $1810 = $1130; + $1811 = $1810; + $1812 = HEAP32[$1811>>2]|0; + $1813 = (($1810) + 4)|0; + $1814 = $1813; + $1815 = HEAP32[$1814>>2]|0; + $1816 = (_bitshift64Ashr(0,($1812|0),32)|0); + $1817 = tempRet0; + $1818 = $413; + $1819 = $1818; + $1820 = HEAP32[$1819>>2]|0; + $1821 = (($1818) + 4)|0; + $1822 = $1821; + $1823 = HEAP32[$1822>>2]|0; + $1824 = (_bitshift64Ashr(0,($1820|0),32)|0); $1825 = tempRet0; - $1826 = $1824&255; - $1827 = ((($s)) + 20|0); - HEAP8[$1827>>0] = $1826; - $1828 = $1708&255; - $1829 = ((($s)) + 21|0); - HEAP8[$1829>>0] = $1828; - $1830 = (_bitshift64Lshr(($1708|0),($1709|0),8)|0); + $1826 = (___muldi3(($1824|0),($1825|0),($1816|0),($1817|0))|0); + $1827 = tempRet0; + $1828 = (_i64Add(($1808|0),($1809|0),($1826|0),($1827|0))|0); + $1829 = tempRet0; + $1830 = (_bitshift64Shl(($1828|0),($1829|0),1)|0); $1831 = tempRet0; - $1832 = $1830&255; - $1833 = ((($s)) + 22|0); - HEAP8[$1833>>0] = $1832; - $1834 = (_bitshift64Lshr(($1708|0),($1709|0),16)|0); - $1835 = tempRet0; - $1836 = (_bitshift64Shl(($1716|0),($1717|0),5)|0); - $1837 = tempRet0; - $1838 = $1836 | $1834; - $1837 | $1835; - $1839 = $1838&255; - $1840 = ((($s)) + 23|0); - HEAP8[$1840>>0] = $1839; - $1841 = (_bitshift64Lshr(($1716|0),($1717|0),3)|0); - $1842 = tempRet0; - $1843 = $1841&255; - $1844 = ((($s)) + 24|0); - HEAP8[$1844>>0] = $1843; - $1845 = (_bitshift64Lshr(($1716|0),($1717|0),11)|0); - $1846 = tempRet0; - $1847 = $1845&255; - $1848 = ((($s)) + 25|0); - HEAP8[$1848>>0] = $1847; - $1849 = (_bitshift64Lshr(($1716|0),($1717|0),19)|0); - $1850 = tempRet0; - $1851 = (_bitshift64Shl(($1724|0),($1725|0),2)|0); - $1852 = tempRet0; - $1853 = $1851 | $1849; - $1852 | $1850; - $1854 = $1853&255; - $1855 = ((($s)) + 26|0); - HEAP8[$1855>>0] = $1854; - $1856 = (_bitshift64Lshr(($1724|0),($1725|0),6)|0); - $1857 = tempRet0; - $1858 = $1856&255; - $1859 = ((($s)) + 27|0); - HEAP8[$1859>>0] = $1858; - $1860 = (_bitshift64Lshr(($1724|0),($1725|0),14)|0); - $1861 = tempRet0; - $1862 = (_bitshift64Shl(($1720|0),($1721|0),7)|0); - $1863 = tempRet0; - $1864 = $1860 | $1862; - $1861 | $1863; - $1865 = $1864&255; - $1866 = ((($s)) + 28|0); - HEAP8[$1866>>0] = $1865; - $1867 = (_bitshift64Lshr(($1720|0),($1721|0),1)|0); - $1868 = tempRet0; - $1869 = $1867&255; - $1870 = ((($s)) + 29|0); - HEAP8[$1870>>0] = $1869; - $1871 = (_bitshift64Lshr(($1720|0),($1721|0),9)|0); - $1872 = tempRet0; - $1873 = $1871&255; - $1874 = ((($s)) + 30|0); - HEAP8[$1874>>0] = $1873; - $1875 = (_bitshift64Lshr(($1720|0),($1721|0),17)|0); - $1876 = tempRet0; - $1877 = $1875&255; - $1878 = ((($s)) + 31|0); - HEAP8[$1878>>0] = $1877; + $1832 = $573; + $1833 = $1832; + $1834 = HEAP32[$1833>>2]|0; + $1835 = (($1832) + 4)|0; + $1836 = $1835; + $1837 = HEAP32[$1836>>2]|0; + $1838 = (_bitshift64Ashr(0,($1834|0),32)|0); + $1839 = tempRet0; + $1840 = $912; + $1841 = $1840; + $1842 = HEAP32[$1841>>2]|0; + $1843 = (($1840) + 4)|0; + $1844 = $1843; + $1845 = HEAP32[$1844>>2]|0; + $1846 = (_bitshift64Ashr(0,($1842|0),32)|0); + $1847 = tempRet0; + $1848 = (___muldi3(($1846|0),($1847|0),($1838|0),($1839|0))|0); + $1849 = tempRet0; + $1850 = (_i64Add(($1830|0),($1831|0),($1848|0),($1849|0))|0); + $1851 = tempRet0; + $1852 = $925; + $1853 = $1852; + $1854 = HEAP32[$1853>>2]|0; + $1855 = (($1852) + 4)|0; + $1856 = $1855; + $1857 = HEAP32[$1856>>2]|0; + $1858 = (_bitshift64Ashr(0,($1854|0),32)|0); + $1859 = tempRet0; + $1860 = $560; + $1861 = $1860; + $1862 = HEAP32[$1861>>2]|0; + $1863 = (($1860) + 4)|0; + $1864 = $1863; + $1865 = HEAP32[$1864>>2]|0; + $1866 = (_bitshift64Ashr(0,($1862|0),32)|0); + $1867 = tempRet0; + $1868 = (___muldi3(($1866|0),($1867|0),($1858|0),($1859|0))|0); + $1869 = tempRet0; + $1870 = (_i64Add(($1850|0),($1851|0),($1868|0),($1869|0))|0); + $1871 = tempRet0; + $1872 = ((($0)) + 112|0); + $1873 = $1872; + $1874 = $1873; + HEAP32[$1874>>2] = $1870; + $1875 = (($1873) + 4)|0; + $1876 = $1875; + HEAP32[$1876>>2] = $1871; + $1877 = $738; + $1878 = $1877; + $1879 = HEAP32[$1878>>2]|0; + $1880 = (($1877) + 4)|0; + $1881 = $1880; + $1882 = HEAP32[$1881>>2]|0; + $1883 = (_bitshift64Ashr(0,($1879|0),32)|0); + $1884 = tempRet0; + $1885 = $912; + $1886 = $1885; + $1887 = HEAP32[$1886>>2]|0; + $1888 = (($1885) + 4)|0; + $1889 = $1888; + $1890 = HEAP32[$1889>>2]|0; + $1891 = (_bitshift64Ashr(0,($1887|0),32)|0); + $1892 = tempRet0; + $1893 = (___muldi3(($1891|0),($1892|0),($1883|0),($1884|0))|0); + $1894 = tempRet0; + $1895 = $925; + $1896 = $1895; + $1897 = HEAP32[$1896>>2]|0; + $1898 = (($1895) + 4)|0; + $1899 = $1898; + $1900 = HEAP32[$1899>>2]|0; + $1901 = (_bitshift64Ashr(0,($1897|0),32)|0); + $1902 = tempRet0; + $1903 = $725; + $1904 = $1903; + $1905 = HEAP32[$1904>>2]|0; + $1906 = (($1903) + 4)|0; + $1907 = $1906; + $1908 = HEAP32[$1907>>2]|0; + $1909 = (_bitshift64Ashr(0,($1905|0),32)|0); + $1910 = tempRet0; + $1911 = (___muldi3(($1909|0),($1910|0),($1901|0),($1902|0))|0); + $1912 = tempRet0; + $1913 = (_i64Add(($1911|0),($1912|0),($1893|0),($1894|0))|0); + $1914 = tempRet0; + $1915 = $573; + $1916 = $1915; + $1917 = HEAP32[$1916>>2]|0; + $1918 = (($1915) + 4)|0; + $1919 = $1918; + $1920 = HEAP32[$1919>>2]|0; + $1921 = (_bitshift64Ashr(0,($1917|0),32)|0); + $1922 = tempRet0; + $1923 = $1117; + $1924 = $1923; + $1925 = HEAP32[$1924>>2]|0; + $1926 = (($1923) + 4)|0; + $1927 = $1926; + $1928 = HEAP32[$1927>>2]|0; + $1929 = (_bitshift64Ashr(0,($1925|0),32)|0); + $1930 = tempRet0; + $1931 = (___muldi3(($1929|0),($1930|0),($1921|0),($1922|0))|0); + $1932 = tempRet0; + $1933 = (_i64Add(($1913|0),($1914|0),($1931|0),($1932|0))|0); + $1934 = tempRet0; + $1935 = $1130; + $1936 = $1935; + $1937 = HEAP32[$1936>>2]|0; + $1938 = (($1935) + 4)|0; + $1939 = $1938; + $1940 = HEAP32[$1939>>2]|0; + $1941 = (_bitshift64Ashr(0,($1937|0),32)|0); + $1942 = tempRet0; + $1943 = $560; + $1944 = $1943; + $1945 = HEAP32[$1944>>2]|0; + $1946 = (($1943) + 4)|0; + $1947 = $1946; + $1948 = HEAP32[$1947>>2]|0; + $1949 = (_bitshift64Ashr(0,($1945|0),32)|0); + $1950 = tempRet0; + $1951 = (___muldi3(($1949|0),($1950|0),($1941|0),($1942|0))|0); + $1952 = tempRet0; + $1953 = (_i64Add(($1933|0),($1934|0),($1951|0),($1952|0))|0); + $1954 = tempRet0; + $1955 = ((($0)) + 120|0); + $1956 = $1955; + $1957 = $1956; + HEAP32[$1957>>2] = $1953; + $1958 = (($1956) + 4)|0; + $1959 = $1958; + HEAP32[$1959>>2] = $1954; + $1960 = $925; + $1961 = $1960; + $1962 = HEAP32[$1961>>2]|0; + $1963 = (($1960) + 4)|0; + $1964 = $1963; + $1965 = HEAP32[$1964>>2]|0; + $1966 = (_bitshift64Ashr(0,($1962|0),32)|0); + $1967 = tempRet0; + $1968 = $912; + $1969 = $1968; + $1970 = HEAP32[$1969>>2]|0; + $1971 = (($1968) + 4)|0; + $1972 = $1971; + $1973 = HEAP32[$1972>>2]|0; + $1974 = (_bitshift64Ashr(0,($1970|0),32)|0); + $1975 = tempRet0; + $1976 = (___muldi3(($1974|0),($1975|0),($1966|0),($1967|0))|0); + $1977 = tempRet0; + $1978 = $738; + $1979 = $1978; + $1980 = HEAP32[$1979>>2]|0; + $1981 = (($1978) + 4)|0; + $1982 = $1981; + $1983 = HEAP32[$1982>>2]|0; + $1984 = (_bitshift64Ashr(0,($1980|0),32)|0); + $1985 = tempRet0; + $1986 = $1117; + $1987 = $1986; + $1988 = HEAP32[$1987>>2]|0; + $1989 = (($1986) + 4)|0; + $1990 = $1989; + $1991 = HEAP32[$1990>>2]|0; + $1992 = (_bitshift64Ashr(0,($1988|0),32)|0); + $1993 = tempRet0; + $1994 = (___muldi3(($1992|0),($1993|0),($1984|0),($1985|0))|0); + $1995 = tempRet0; + $1996 = $1130; + $1997 = $1996; + $1998 = HEAP32[$1997>>2]|0; + $1999 = (($1996) + 4)|0; + $2000 = $1999; + $2001 = HEAP32[$2000>>2]|0; + $2002 = (_bitshift64Ashr(0,($1998|0),32)|0); + $2003 = tempRet0; + $2004 = $725; + $2005 = $2004; + $2006 = HEAP32[$2005>>2]|0; + $2007 = (($2004) + 4)|0; + $2008 = $2007; + $2009 = HEAP32[$2008>>2]|0; + $2010 = (_bitshift64Ashr(0,($2006|0),32)|0); + $2011 = tempRet0; + $2012 = (___muldi3(($2010|0),($2011|0),($2002|0),($2003|0))|0); + $2013 = tempRet0; + $2014 = (_i64Add(($2012|0),($2013|0),($1994|0),($1995|0))|0); + $2015 = tempRet0; + $2016 = (_bitshift64Shl(($2014|0),($2015|0),1)|0); + $2017 = tempRet0; + $2018 = (_i64Add(($2016|0),($2017|0),($1976|0),($1977|0))|0); + $2019 = tempRet0; + $2020 = ((($0)) + 128|0); + $2021 = $2020; + $2022 = $2021; + HEAP32[$2022>>2] = $2018; + $2023 = (($2021) + 4)|0; + $2024 = $2023; + HEAP32[$2024>>2] = $2019; + $2025 = $925; + $2026 = $2025; + $2027 = HEAP32[$2026>>2]|0; + $2028 = (($2025) + 4)|0; + $2029 = $2028; + $2030 = HEAP32[$2029>>2]|0; + $2031 = (_bitshift64Ashr(0,($2027|0),32)|0); + $2032 = tempRet0; + $2033 = $1117; + $2034 = $2033; + $2035 = HEAP32[$2034>>2]|0; + $2036 = (($2033) + 4)|0; + $2037 = $2036; + $2038 = HEAP32[$2037>>2]|0; + $2039 = (_bitshift64Ashr(0,($2035|0),32)|0); + $2040 = tempRet0; + $2041 = (___muldi3(($2039|0),($2040|0),($2031|0),($2032|0))|0); + $2042 = tempRet0; + $2043 = $1130; + $2044 = $2043; + $2045 = HEAP32[$2044>>2]|0; + $2046 = (($2043) + 4)|0; + $2047 = $2046; + $2048 = HEAP32[$2047>>2]|0; + $2049 = (_bitshift64Ashr(0,($2045|0),32)|0); + $2050 = tempRet0; + $2051 = $912; + $2052 = $2051; + $2053 = HEAP32[$2052>>2]|0; + $2054 = (($2051) + 4)|0; + $2055 = $2054; + $2056 = HEAP32[$2055>>2]|0; + $2057 = (_bitshift64Ashr(0,($2053|0),32)|0); + $2058 = tempRet0; + $2059 = (___muldi3(($2057|0),($2058|0),($2049|0),($2050|0))|0); + $2060 = tempRet0; + $2061 = (_i64Add(($2059|0),($2060|0),($2041|0),($2042|0))|0); + $2062 = tempRet0; + $2063 = ((($0)) + 136|0); + $2064 = $2063; + $2065 = $2064; + HEAP32[$2065>>2] = $2061; + $2066 = (($2064) + 4)|0; + $2067 = $2066; + HEAP32[$2067>>2] = $2062; + $2068 = $1130; + $2069 = $2068; + $2070 = HEAP32[$2069>>2]|0; + $2071 = (($2068) + 4)|0; + $2072 = $2071; + $2073 = HEAP32[$2072>>2]|0; + $2074 = (_bitshift64Ashr(0,($2070|0),31)|0); + $2075 = tempRet0; + $2076 = $1117; + $2077 = $2076; + $2078 = HEAP32[$2077>>2]|0; + $2079 = (($2076) + 4)|0; + $2080 = $2079; + $2081 = HEAP32[$2080>>2]|0; + $2082 = (_bitshift64Ashr(0,($2078|0),32)|0); + $2083 = tempRet0; + $2084 = (___muldi3(($2082|0),($2083|0),($2074|0),($2075|0))|0); + $2085 = tempRet0; + $2086 = ((($0)) + 144|0); + $2087 = $2086; + $2088 = $2087; + HEAP32[$2088>>2] = $2084; + $2089 = (($2087) + 4)|0; + $2090 = $2089; + HEAP32[$2090>>2] = $2085; + return; +} +function _freduce_degree($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0; + var $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0; + var $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0; + var $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0; + var $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0; + var $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0; + var $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0; + var $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0; + var $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0; + var $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0; + var $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0; + var sp = 0; + sp = STACKTOP; + $1 = ((($0)) + 144|0); + $2 = $1; + $3 = $2; + $4 = HEAP32[$3>>2]|0; + $5 = (($2) + 4)|0; + $6 = $5; + $7 = HEAP32[$6>>2]|0; + $8 = ((($0)) + 64|0); + $9 = $8; + $10 = $9; + $11 = HEAP32[$10>>2]|0; + $12 = (($9) + 4)|0; + $13 = $12; + $14 = HEAP32[$13>>2]|0; + $15 = (___muldi3(($4|0),($7|0),18,0)|0); + $16 = tempRet0; + $17 = (_i64Add(($11|0),($14|0),($4|0),($7|0))|0); + $18 = tempRet0; + $19 = (_i64Add(($17|0),($18|0),($15|0),($16|0))|0); + $20 = tempRet0; + $21 = $8; + $22 = $21; + HEAP32[$22>>2] = $19; + $23 = (($21) + 4)|0; + $24 = $23; + HEAP32[$24>>2] = $20; + $25 = ((($0)) + 136|0); + $26 = $25; + $27 = $26; + $28 = HEAP32[$27>>2]|0; + $29 = (($26) + 4)|0; + $30 = $29; + $31 = HEAP32[$30>>2]|0; + $32 = ((($0)) + 56|0); + $33 = $32; + $34 = $33; + $35 = HEAP32[$34>>2]|0; + $36 = (($33) + 4)|0; + $37 = $36; + $38 = HEAP32[$37>>2]|0; + $39 = (___muldi3(($28|0),($31|0),18,0)|0); + $40 = tempRet0; + $41 = (_i64Add(($35|0),($38|0),($28|0),($31|0))|0); + $42 = tempRet0; + $43 = (_i64Add(($41|0),($42|0),($39|0),($40|0))|0); + $44 = tempRet0; + $45 = $32; + $46 = $45; + HEAP32[$46>>2] = $43; + $47 = (($45) + 4)|0; + $48 = $47; + HEAP32[$48>>2] = $44; + $49 = ((($0)) + 128|0); + $50 = $49; + $51 = $50; + $52 = HEAP32[$51>>2]|0; + $53 = (($50) + 4)|0; + $54 = $53; + $55 = HEAP32[$54>>2]|0; + $56 = ((($0)) + 48|0); + $57 = $56; + $58 = $57; + $59 = HEAP32[$58>>2]|0; + $60 = (($57) + 4)|0; + $61 = $60; + $62 = HEAP32[$61>>2]|0; + $63 = (___muldi3(($52|0),($55|0),18,0)|0); + $64 = tempRet0; + $65 = (_i64Add(($59|0),($62|0),($52|0),($55|0))|0); + $66 = tempRet0; + $67 = (_i64Add(($65|0),($66|0),($63|0),($64|0))|0); + $68 = tempRet0; + $69 = $56; + $70 = $69; + HEAP32[$70>>2] = $67; + $71 = (($69) + 4)|0; + $72 = $71; + HEAP32[$72>>2] = $68; + $73 = ((($0)) + 120|0); + $74 = $73; + $75 = $74; + $76 = HEAP32[$75>>2]|0; + $77 = (($74) + 4)|0; + $78 = $77; + $79 = HEAP32[$78>>2]|0; + $80 = ((($0)) + 40|0); + $81 = $80; + $82 = $81; + $83 = HEAP32[$82>>2]|0; + $84 = (($81) + 4)|0; + $85 = $84; + $86 = HEAP32[$85>>2]|0; + $87 = (___muldi3(($76|0),($79|0),18,0)|0); + $88 = tempRet0; + $89 = (_i64Add(($83|0),($86|0),($76|0),($79|0))|0); + $90 = tempRet0; + $91 = (_i64Add(($89|0),($90|0),($87|0),($88|0))|0); + $92 = tempRet0; + $93 = $80; + $94 = $93; + HEAP32[$94>>2] = $91; + $95 = (($93) + 4)|0; + $96 = $95; + HEAP32[$96>>2] = $92; + $97 = ((($0)) + 112|0); + $98 = $97; + $99 = $98; + $100 = HEAP32[$99>>2]|0; + $101 = (($98) + 4)|0; + $102 = $101; + $103 = HEAP32[$102>>2]|0; + $104 = ((($0)) + 32|0); + $105 = $104; + $106 = $105; + $107 = HEAP32[$106>>2]|0; + $108 = (($105) + 4)|0; + $109 = $108; + $110 = HEAP32[$109>>2]|0; + $111 = (___muldi3(($100|0),($103|0),18,0)|0); + $112 = tempRet0; + $113 = (_i64Add(($107|0),($110|0),($100|0),($103|0))|0); + $114 = tempRet0; + $115 = (_i64Add(($113|0),($114|0),($111|0),($112|0))|0); + $116 = tempRet0; + $117 = $104; + $118 = $117; + HEAP32[$118>>2] = $115; + $119 = (($117) + 4)|0; + $120 = $119; + HEAP32[$120>>2] = $116; + $121 = ((($0)) + 104|0); + $122 = $121; + $123 = $122; + $124 = HEAP32[$123>>2]|0; + $125 = (($122) + 4)|0; + $126 = $125; + $127 = HEAP32[$126>>2]|0; + $128 = ((($0)) + 24|0); + $129 = $128; + $130 = $129; + $131 = HEAP32[$130>>2]|0; + $132 = (($129) + 4)|0; + $133 = $132; + $134 = HEAP32[$133>>2]|0; + $135 = (___muldi3(($124|0),($127|0),18,0)|0); + $136 = tempRet0; + $137 = (_i64Add(($131|0),($134|0),($124|0),($127|0))|0); + $138 = tempRet0; + $139 = (_i64Add(($137|0),($138|0),($135|0),($136|0))|0); + $140 = tempRet0; + $141 = $128; + $142 = $141; + HEAP32[$142>>2] = $139; + $143 = (($141) + 4)|0; + $144 = $143; + HEAP32[$144>>2] = $140; + $145 = ((($0)) + 96|0); + $146 = $145; + $147 = $146; + $148 = HEAP32[$147>>2]|0; + $149 = (($146) + 4)|0; + $150 = $149; + $151 = HEAP32[$150>>2]|0; + $152 = ((($0)) + 16|0); + $153 = $152; + $154 = $153; + $155 = HEAP32[$154>>2]|0; + $156 = (($153) + 4)|0; + $157 = $156; + $158 = HEAP32[$157>>2]|0; + $159 = (___muldi3(($148|0),($151|0),18,0)|0); + $160 = tempRet0; + $161 = (_i64Add(($155|0),($158|0),($148|0),($151|0))|0); + $162 = tempRet0; + $163 = (_i64Add(($161|0),($162|0),($159|0),($160|0))|0); + $164 = tempRet0; + $165 = $152; + $166 = $165; + HEAP32[$166>>2] = $163; + $167 = (($165) + 4)|0; + $168 = $167; + HEAP32[$168>>2] = $164; + $169 = ((($0)) + 88|0); + $170 = $169; + $171 = $170; + $172 = HEAP32[$171>>2]|0; + $173 = (($170) + 4)|0; + $174 = $173; + $175 = HEAP32[$174>>2]|0; + $176 = ((($0)) + 8|0); + $177 = $176; + $178 = $177; + $179 = HEAP32[$178>>2]|0; + $180 = (($177) + 4)|0; + $181 = $180; + $182 = HEAP32[$181>>2]|0; + $183 = (___muldi3(($172|0),($175|0),18,0)|0); + $184 = tempRet0; + $185 = (_i64Add(($179|0),($182|0),($172|0),($175|0))|0); + $186 = tempRet0; + $187 = (_i64Add(($185|0),($186|0),($183|0),($184|0))|0); + $188 = tempRet0; + $189 = $176; + $190 = $189; + HEAP32[$190>>2] = $187; + $191 = (($189) + 4)|0; + $192 = $191; + HEAP32[$192>>2] = $188; + $193 = ((($0)) + 80|0); + $194 = $193; + $195 = $194; + $196 = HEAP32[$195>>2]|0; + $197 = (($194) + 4)|0; + $198 = $197; + $199 = HEAP32[$198>>2]|0; + $200 = (_bitshift64Shl(($196|0),($199|0),4)|0); + $201 = tempRet0; + $202 = $0; + $203 = $202; + $204 = HEAP32[$203>>2]|0; + $205 = (($202) + 4)|0; + $206 = $205; + $207 = HEAP32[$206>>2]|0; + $208 = (_i64Add(($204|0),($207|0),($200|0),($201|0))|0); + $209 = tempRet0; + $210 = (_bitshift64Shl(($196|0),($199|0),1)|0); + $211 = tempRet0; + $212 = (_i64Add(($208|0),($209|0),($210|0),($211|0))|0); + $213 = tempRet0; + $214 = (_i64Add(($212|0),($213|0),($196|0),($199|0))|0); + $215 = tempRet0; + $216 = $0; + $217 = $216; + HEAP32[$217>>2] = $214; + $218 = (($216) + 4)|0; + $219 = $218; + HEAP32[$219>>2] = $215; + return; +} +function _freduce_coefficients($0) { + $0 = $0|0; + var $$036 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0; + var $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0; + var $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0; + var $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0; + var $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0; + var $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $1 = ((($0)) + 80|0); + $2 = $1; + $3 = $2; + HEAP32[$3>>2] = 0; + $4 = (($2) + 4)|0; + $5 = $4; + HEAP32[$5>>2] = 0; + $$036 = 0; + while(1) { + $6 = (($0) + ($$036<<3)|0); + $7 = $6; + $8 = $7; + $9 = HEAP32[$8>>2]|0; + $10 = (($7) + 4)|0; + $11 = $10; + $12 = HEAP32[$11>>2]|0; + $13 = (_div_by_2_26($9,$12)|0); + $14 = tempRet0; + $15 = (_bitshift64Shl(($13|0),($14|0),26)|0); + $16 = tempRet0; + $17 = (_i64Subtract(($9|0),($12|0),($15|0),($16|0))|0); + $18 = tempRet0; + $19 = $6; + $20 = $19; + HEAP32[$20>>2] = $17; + $21 = (($19) + 4)|0; + $22 = $21; + HEAP32[$22>>2] = $18; + $23 = $$036 | 1; + $24 = (($0) + ($23<<3)|0); + $25 = $24; + $26 = $25; + $27 = HEAP32[$26>>2]|0; + $28 = (($25) + 4)|0; + $29 = $28; + $30 = HEAP32[$29>>2]|0; + $31 = (_i64Add(($27|0),($30|0),($13|0),($14|0))|0); + $32 = tempRet0; + $33 = (_div_by_2_25($31,$32)|0); + $34 = tempRet0; + $35 = (_bitshift64Shl(($33|0),($34|0),25)|0); + $36 = tempRet0; + $37 = (_i64Subtract(($31|0),($32|0),($35|0),($36|0))|0); + $38 = tempRet0; + $39 = $24; + $40 = $39; + HEAP32[$40>>2] = $37; + $41 = (($39) + 4)|0; + $42 = $41; + HEAP32[$42>>2] = $38; + $43 = (($$036) + 2)|0; + $44 = (($0) + ($43<<3)|0); + $45 = $44; + $46 = $45; + $47 = HEAP32[$46>>2]|0; + $48 = (($45) + 4)|0; + $49 = $48; + $50 = HEAP32[$49>>2]|0; + $51 = (_i64Add(($47|0),($50|0),($33|0),($34|0))|0); + $52 = tempRet0; + $53 = $44; + $54 = $53; + HEAP32[$54>>2] = $51; + $55 = (($53) + 4)|0; + $56 = $55; + HEAP32[$56>>2] = $52; + $57 = ($43>>>0)<(10); + if ($57) { + $$036 = $43; + } else { + break; + } + } + $58 = $1; + $59 = $58; + $60 = HEAP32[$59>>2]|0; + $61 = (($58) + 4)|0; + $62 = $61; + $63 = HEAP32[$62>>2]|0; + $64 = $0; + $65 = $64; + $66 = HEAP32[$65>>2]|0; + $67 = (($64) + 4)|0; + $68 = $67; + $69 = HEAP32[$68>>2]|0; + $70 = (___muldi3(($60|0),($63|0),18,0)|0); + $71 = tempRet0; + $72 = (_i64Add(($66|0),($69|0),($60|0),($63|0))|0); + $73 = tempRet0; + $74 = (_i64Add(($72|0),($73|0),($70|0),($71|0))|0); + $75 = tempRet0; + $76 = $1; + $77 = $76; + HEAP32[$77>>2] = 0; + $78 = (($76) + 4)|0; + $79 = $78; + HEAP32[$79>>2] = 0; + $80 = (_div_by_2_26($74,$75)|0); + $81 = tempRet0; + $82 = (_bitshift64Shl(($80|0),($81|0),26)|0); + $83 = tempRet0; + $84 = (_i64Subtract(($74|0),($75|0),($82|0),($83|0))|0); + $85 = tempRet0; + $86 = $0; + $87 = $86; + HEAP32[$87>>2] = $84; + $88 = (($86) + 4)|0; + $89 = $88; + HEAP32[$89>>2] = $85; + $90 = ((($0)) + 8|0); + $91 = $90; + $92 = $91; + $93 = HEAP32[$92>>2]|0; + $94 = (($91) + 4)|0; + $95 = $94; + $96 = HEAP32[$95>>2]|0; + $97 = (_i64Add(($93|0),($96|0),($80|0),($81|0))|0); + $98 = tempRet0; + $99 = $90; + $100 = $99; + HEAP32[$100>>2] = $97; + $101 = (($99) + 4)|0; + $102 = $101; + HEAP32[$102>>2] = $98; + return; +} +function _div_by_2_26($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = $1 >> 31; + $3 = $2 >>> 6; + $4 = (_i64Add(($3|0),0,($0|0),($1|0))|0); + $5 = tempRet0; + $6 = (_bitshift64Ashr(($4|0),($5|0),26)|0); + $7 = tempRet0; + tempRet0 = ($7); + return ($6|0); +} +function _div_by_2_25($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = $1 >> 31; + $3 = $2 >>> 7; + $4 = (_i64Add(($3|0),0,($0|0),($1|0))|0); + $5 = tempRet0; + $6 = (_bitshift64Ashr(($4|0),($5|0),25)|0); + $7 = tempRet0; + tempRet0 = ($7); + return ($6|0); +} +function _fsquare($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 160|0; + $2 = sp; + _fsquare_inner($2,$1); + _freduce_degree($2); + _freduce_coefficients($2); + dest=$0; src=$2; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + STACKTOP = sp;return; +} +function _fsquare_inner($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0, $1015 = 0, $1016 = 0; + var $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0, $1033 = 0, $1034 = 0; + var $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0, $1051 = 0, $1052 = 0; + var $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0, $107 = 0, $1070 = 0; + var $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0, $1088 = 0, $1089 = 0; + var $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0, $1105 = 0, $1106 = 0; + var $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $1119 = 0, $112 = 0, $1120 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0; + var $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0; + var $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0; + var $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0; + var $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0; + var $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0; + var $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0; + var $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0; + var $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0; + var $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0; + var $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0; + var $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0; + var $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0; + var $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0; + var $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0; + var $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0; + var $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0; + var $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0; + var $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0; + var $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0; + var $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0; + var $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0; + var $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0; + var $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0; + var $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0; + var $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0; + var $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0; + var $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0; + var $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0; + var $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0; + var $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0; + var $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0; + var $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0; + var $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0; + var $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0; + var $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0; + var $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0; + var $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0; + var $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0; + var $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0; + var $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0; + var $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0; + var $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0; + var $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0; + var $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0; + var $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0; + var $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0; + var $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0; + var $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0; + var $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, label = 0; + var sp = 0; + sp = STACKTOP; + $2 = $1; + $3 = $2; + $4 = HEAP32[$3>>2]|0; + $5 = (($2) + 4)|0; + $6 = $5; + $7 = HEAP32[$6>>2]|0; + $8 = (_bitshift64Ashr(0,($4|0),32)|0); + $9 = tempRet0; + $10 = (___muldi3(($8|0),($9|0),($8|0),($9|0))|0); + $11 = tempRet0; + $12 = $0; + $13 = $12; + HEAP32[$13>>2] = $10; + $14 = (($12) + 4)|0; + $15 = $14; + HEAP32[$15>>2] = $11; + $16 = $1; + $17 = $16; + $18 = HEAP32[$17>>2]|0; + $19 = (($16) + 4)|0; + $20 = $19; + $21 = HEAP32[$20>>2]|0; + $22 = (_bitshift64Ashr(0,($18|0),31)|0); + $23 = tempRet0; + $24 = ((($1)) + 8|0); + $25 = $24; + $26 = $25; + $27 = HEAP32[$26>>2]|0; + $28 = (($25) + 4)|0; + $29 = $28; + $30 = HEAP32[$29>>2]|0; + $31 = (_bitshift64Ashr(0,($27|0),32)|0); + $32 = tempRet0; + $33 = (___muldi3(($31|0),($32|0),($22|0),($23|0))|0); + $34 = tempRet0; + $35 = ((($0)) + 8|0); + $36 = $35; + $37 = $36; + HEAP32[$37>>2] = $33; + $38 = (($36) + 4)|0; + $39 = $38; + HEAP32[$39>>2] = $34; + $40 = $24; + $41 = $40; + $42 = HEAP32[$41>>2]|0; + $43 = (($40) + 4)|0; + $44 = $43; + $45 = HEAP32[$44>>2]|0; + $46 = (_bitshift64Ashr(0,($42|0),32)|0); + $47 = tempRet0; + $48 = (___muldi3(($46|0),($47|0),($46|0),($47|0))|0); + $49 = tempRet0; + $50 = $1; + $51 = $50; + $52 = HEAP32[$51>>2]|0; + $53 = (($50) + 4)|0; + $54 = $53; + $55 = HEAP32[$54>>2]|0; + $56 = (_bitshift64Ashr(0,($52|0),32)|0); + $57 = tempRet0; + $58 = ((($1)) + 16|0); + $59 = $58; + $60 = $59; + $61 = HEAP32[$60>>2]|0; + $62 = (($59) + 4)|0; + $63 = $62; + $64 = HEAP32[$63>>2]|0; + $65 = (_bitshift64Ashr(0,($61|0),32)|0); + $66 = tempRet0; + $67 = (___muldi3(($65|0),($66|0),($56|0),($57|0))|0); + $68 = tempRet0; + $69 = (_i64Add(($67|0),($68|0),($48|0),($49|0))|0); + $70 = tempRet0; + $71 = (_bitshift64Shl(($69|0),($70|0),1)|0); + $72 = tempRet0; + $73 = ((($0)) + 16|0); + $74 = $73; + $75 = $74; + HEAP32[$75>>2] = $71; + $76 = (($74) + 4)|0; + $77 = $76; + HEAP32[$77>>2] = $72; + $78 = $24; + $79 = $78; + $80 = HEAP32[$79>>2]|0; + $81 = (($78) + 4)|0; + $82 = $81; + $83 = HEAP32[$82>>2]|0; + $84 = (_bitshift64Ashr(0,($80|0),32)|0); + $85 = tempRet0; + $86 = $58; + $87 = $86; + $88 = HEAP32[$87>>2]|0; + $89 = (($86) + 4)|0; + $90 = $89; + $91 = HEAP32[$90>>2]|0; + $92 = (_bitshift64Ashr(0,($88|0),32)|0); + $93 = tempRet0; + $94 = (___muldi3(($92|0),($93|0),($84|0),($85|0))|0); + $95 = tempRet0; + $96 = $1; + $97 = $96; + $98 = HEAP32[$97>>2]|0; + $99 = (($96) + 4)|0; + $100 = $99; + $101 = HEAP32[$100>>2]|0; + $102 = (_bitshift64Ashr(0,($98|0),32)|0); + $103 = tempRet0; + $104 = ((($1)) + 24|0); + $105 = $104; + $106 = $105; + $107 = HEAP32[$106>>2]|0; + $108 = (($105) + 4)|0; + $109 = $108; + $110 = HEAP32[$109>>2]|0; + $111 = (_bitshift64Ashr(0,($107|0),32)|0); + $112 = tempRet0; + $113 = (___muldi3(($111|0),($112|0),($102|0),($103|0))|0); + $114 = tempRet0; + $115 = (_i64Add(($113|0),($114|0),($94|0),($95|0))|0); + $116 = tempRet0; + $117 = (_bitshift64Shl(($115|0),($116|0),1)|0); + $118 = tempRet0; + $119 = ((($0)) + 24|0); + $120 = $119; + $121 = $120; + HEAP32[$121>>2] = $117; + $122 = (($120) + 4)|0; + $123 = $122; + HEAP32[$123>>2] = $118; + $124 = $58; + $125 = $124; + $126 = HEAP32[$125>>2]|0; + $127 = (($124) + 4)|0; + $128 = $127; + $129 = HEAP32[$128>>2]|0; + $130 = (_bitshift64Ashr(0,($126|0),32)|0); + $131 = tempRet0; + $132 = (___muldi3(($130|0),($131|0),($130|0),($131|0))|0); + $133 = tempRet0; + $134 = $24; + $135 = $134; + $136 = HEAP32[$135>>2]|0; + $137 = (($134) + 4)|0; + $138 = $137; + $139 = HEAP32[$138>>2]|0; + $140 = (_bitshift64Ashr(0,($136|0),30)|0); + $141 = tempRet0; + $142 = $104; + $143 = $142; + $144 = HEAP32[$143>>2]|0; + $145 = (($142) + 4)|0; + $146 = $145; + $147 = HEAP32[$146>>2]|0; + $148 = (_bitshift64Ashr(0,($144|0),32)|0); + $149 = tempRet0; + $150 = (___muldi3(($148|0),($149|0),($140|0),($141|0))|0); + $151 = tempRet0; + $152 = (_i64Add(($150|0),($151|0),($132|0),($133|0))|0); + $153 = tempRet0; + $154 = $1; + $155 = $154; + $156 = HEAP32[$155>>2]|0; + $157 = (($154) + 4)|0; + $158 = $157; + $159 = HEAP32[$158>>2]|0; + $160 = (_bitshift64Ashr(0,($156|0),31)|0); + $161 = tempRet0; + $162 = ((($1)) + 32|0); + $163 = $162; + $164 = $163; + $165 = HEAP32[$164>>2]|0; + $166 = (($163) + 4)|0; + $167 = $166; + $168 = HEAP32[$167>>2]|0; + $169 = (_bitshift64Ashr(0,($165|0),32)|0); + $170 = tempRet0; + $171 = (___muldi3(($169|0),($170|0),($160|0),($161|0))|0); + $172 = tempRet0; + $173 = (_i64Add(($152|0),($153|0),($171|0),($172|0))|0); + $174 = tempRet0; + $175 = ((($0)) + 32|0); + $176 = $175; + $177 = $176; + HEAP32[$177>>2] = $173; + $178 = (($176) + 4)|0; + $179 = $178; + HEAP32[$179>>2] = $174; + $180 = $58; + $181 = $180; + $182 = HEAP32[$181>>2]|0; + $183 = (($180) + 4)|0; + $184 = $183; + $185 = HEAP32[$184>>2]|0; + $186 = (_bitshift64Ashr(0,($182|0),32)|0); + $187 = tempRet0; + $188 = $104; + $189 = $188; + $190 = HEAP32[$189>>2]|0; + $191 = (($188) + 4)|0; + $192 = $191; + $193 = HEAP32[$192>>2]|0; + $194 = (_bitshift64Ashr(0,($190|0),32)|0); + $195 = tempRet0; + $196 = (___muldi3(($194|0),($195|0),($186|0),($187|0))|0); + $197 = tempRet0; + $198 = $24; + $199 = $198; + $200 = HEAP32[$199>>2]|0; + $201 = (($198) + 4)|0; + $202 = $201; + $203 = HEAP32[$202>>2]|0; + $204 = (_bitshift64Ashr(0,($200|0),32)|0); + $205 = tempRet0; + $206 = $162; + $207 = $206; + $208 = HEAP32[$207>>2]|0; + $209 = (($206) + 4)|0; + $210 = $209; + $211 = HEAP32[$210>>2]|0; + $212 = (_bitshift64Ashr(0,($208|0),32)|0); + $213 = tempRet0; + $214 = (___muldi3(($212|0),($213|0),($204|0),($205|0))|0); + $215 = tempRet0; + $216 = (_i64Add(($214|0),($215|0),($196|0),($197|0))|0); + $217 = tempRet0; + $218 = $1; + $219 = $218; + $220 = HEAP32[$219>>2]|0; + $221 = (($218) + 4)|0; + $222 = $221; + $223 = HEAP32[$222>>2]|0; + $224 = (_bitshift64Ashr(0,($220|0),32)|0); + $225 = tempRet0; + $226 = ((($1)) + 40|0); + $227 = $226; + $228 = $227; + $229 = HEAP32[$228>>2]|0; + $230 = (($227) + 4)|0; + $231 = $230; + $232 = HEAP32[$231>>2]|0; + $233 = (_bitshift64Ashr(0,($229|0),32)|0); + $234 = tempRet0; + $235 = (___muldi3(($233|0),($234|0),($224|0),($225|0))|0); + $236 = tempRet0; + $237 = (_i64Add(($216|0),($217|0),($235|0),($236|0))|0); + $238 = tempRet0; + $239 = (_bitshift64Shl(($237|0),($238|0),1)|0); + $240 = tempRet0; + $241 = ((($0)) + 40|0); + $242 = $241; + $243 = $242; + HEAP32[$243>>2] = $239; + $244 = (($242) + 4)|0; + $245 = $244; + HEAP32[$245>>2] = $240; + $246 = $104; + $247 = $246; + $248 = HEAP32[$247>>2]|0; + $249 = (($246) + 4)|0; + $250 = $249; + $251 = HEAP32[$250>>2]|0; + $252 = (_bitshift64Ashr(0,($248|0),32)|0); + $253 = tempRet0; + $254 = (___muldi3(($252|0),($253|0),($252|0),($253|0))|0); + $255 = tempRet0; + $256 = $58; + $257 = $256; + $258 = HEAP32[$257>>2]|0; + $259 = (($256) + 4)|0; + $260 = $259; + $261 = HEAP32[$260>>2]|0; + $262 = (_bitshift64Ashr(0,($258|0),32)|0); + $263 = tempRet0; + $264 = $162; + $265 = $264; + $266 = HEAP32[$265>>2]|0; + $267 = (($264) + 4)|0; + $268 = $267; + $269 = HEAP32[$268>>2]|0; + $270 = (_bitshift64Ashr(0,($266|0),32)|0); + $271 = tempRet0; + $272 = (___muldi3(($270|0),($271|0),($262|0),($263|0))|0); + $273 = tempRet0; + $274 = (_i64Add(($272|0),($273|0),($254|0),($255|0))|0); + $275 = tempRet0; + $276 = $1; + $277 = $276; + $278 = HEAP32[$277>>2]|0; + $279 = (($276) + 4)|0; + $280 = $279; + $281 = HEAP32[$280>>2]|0; + $282 = (_bitshift64Ashr(0,($278|0),32)|0); + $283 = tempRet0; + $284 = ((($1)) + 48|0); + $285 = $284; + $286 = $285; + $287 = HEAP32[$286>>2]|0; + $288 = (($285) + 4)|0; + $289 = $288; + $290 = HEAP32[$289>>2]|0; + $291 = (_bitshift64Ashr(0,($287|0),32)|0); + $292 = tempRet0; + $293 = (___muldi3(($291|0),($292|0),($282|0),($283|0))|0); + $294 = tempRet0; + $295 = (_i64Add(($274|0),($275|0),($293|0),($294|0))|0); + $296 = tempRet0; + $297 = $24; + $298 = $297; + $299 = HEAP32[$298>>2]|0; + $300 = (($297) + 4)|0; + $301 = $300; + $302 = HEAP32[$301>>2]|0; + $303 = (_bitshift64Ashr(0,($299|0),31)|0); + $304 = tempRet0; + $305 = $226; + $306 = $305; + $307 = HEAP32[$306>>2]|0; + $308 = (($305) + 4)|0; + $309 = $308; + $310 = HEAP32[$309>>2]|0; + $311 = (_bitshift64Ashr(0,($307|0),32)|0); + $312 = tempRet0; + $313 = (___muldi3(($311|0),($312|0),($303|0),($304|0))|0); + $314 = tempRet0; + $315 = (_i64Add(($295|0),($296|0),($313|0),($314|0))|0); + $316 = tempRet0; + $317 = (_bitshift64Shl(($315|0),($316|0),1)|0); + $318 = tempRet0; + $319 = ((($0)) + 48|0); + $320 = $319; + $321 = $320; + HEAP32[$321>>2] = $317; + $322 = (($320) + 4)|0; + $323 = $322; + HEAP32[$323>>2] = $318; + $324 = $104; + $325 = $324; + $326 = HEAP32[$325>>2]|0; + $327 = (($324) + 4)|0; + $328 = $327; + $329 = HEAP32[$328>>2]|0; + $330 = (_bitshift64Ashr(0,($326|0),32)|0); + $331 = tempRet0; + $332 = $162; + $333 = $332; + $334 = HEAP32[$333>>2]|0; + $335 = (($332) + 4)|0; + $336 = $335; + $337 = HEAP32[$336>>2]|0; + $338 = (_bitshift64Ashr(0,($334|0),32)|0); + $339 = tempRet0; + $340 = (___muldi3(($338|0),($339|0),($330|0),($331|0))|0); + $341 = tempRet0; + $342 = $58; + $343 = $342; + $344 = HEAP32[$343>>2]|0; + $345 = (($342) + 4)|0; + $346 = $345; + $347 = HEAP32[$346>>2]|0; + $348 = (_bitshift64Ashr(0,($344|0),32)|0); + $349 = tempRet0; + $350 = $226; + $351 = $350; + $352 = HEAP32[$351>>2]|0; + $353 = (($350) + 4)|0; + $354 = $353; + $355 = HEAP32[$354>>2]|0; + $356 = (_bitshift64Ashr(0,($352|0),32)|0); + $357 = tempRet0; + $358 = (___muldi3(($356|0),($357|0),($348|0),($349|0))|0); + $359 = tempRet0; + $360 = (_i64Add(($358|0),($359|0),($340|0),($341|0))|0); + $361 = tempRet0; + $362 = $24; + $363 = $362; + $364 = HEAP32[$363>>2]|0; + $365 = (($362) + 4)|0; + $366 = $365; + $367 = HEAP32[$366>>2]|0; + $368 = (_bitshift64Ashr(0,($364|0),32)|0); + $369 = tempRet0; + $370 = $284; + $371 = $370; + $372 = HEAP32[$371>>2]|0; + $373 = (($370) + 4)|0; + $374 = $373; + $375 = HEAP32[$374>>2]|0; + $376 = (_bitshift64Ashr(0,($372|0),32)|0); + $377 = tempRet0; + $378 = (___muldi3(($376|0),($377|0),($368|0),($369|0))|0); + $379 = tempRet0; + $380 = (_i64Add(($360|0),($361|0),($378|0),($379|0))|0); + $381 = tempRet0; + $382 = $1; + $383 = $382; + $384 = HEAP32[$383>>2]|0; + $385 = (($382) + 4)|0; + $386 = $385; + $387 = HEAP32[$386>>2]|0; + $388 = (_bitshift64Ashr(0,($384|0),32)|0); + $389 = tempRet0; + $390 = ((($1)) + 56|0); + $391 = $390; + $392 = $391; + $393 = HEAP32[$392>>2]|0; + $394 = (($391) + 4)|0; + $395 = $394; + $396 = HEAP32[$395>>2]|0; + $397 = (_bitshift64Ashr(0,($393|0),32)|0); + $398 = tempRet0; + $399 = (___muldi3(($397|0),($398|0),($388|0),($389|0))|0); + $400 = tempRet0; + $401 = (_i64Add(($380|0),($381|0),($399|0),($400|0))|0); + $402 = tempRet0; + $403 = (_bitshift64Shl(($401|0),($402|0),1)|0); + $404 = tempRet0; + $405 = ((($0)) + 56|0); + $406 = $405; + $407 = $406; + HEAP32[$407>>2] = $403; + $408 = (($406) + 4)|0; + $409 = $408; + HEAP32[$409>>2] = $404; + $410 = $162; + $411 = $410; + $412 = HEAP32[$411>>2]|0; + $413 = (($410) + 4)|0; + $414 = $413; + $415 = HEAP32[$414>>2]|0; + $416 = (_bitshift64Ashr(0,($412|0),32)|0); + $417 = tempRet0; + $418 = (___muldi3(($416|0),($417|0),($416|0),($417|0))|0); + $419 = tempRet0; + $420 = $58; + $421 = $420; + $422 = HEAP32[$421>>2]|0; + $423 = (($420) + 4)|0; + $424 = $423; + $425 = HEAP32[$424>>2]|0; + $426 = (_bitshift64Ashr(0,($422|0),32)|0); + $427 = tempRet0; + $428 = $284; + $429 = $428; + $430 = HEAP32[$429>>2]|0; + $431 = (($428) + 4)|0; + $432 = $431; + $433 = HEAP32[$432>>2]|0; + $434 = (_bitshift64Ashr(0,($430|0),32)|0); + $435 = tempRet0; + $436 = (___muldi3(($434|0),($435|0),($426|0),($427|0))|0); + $437 = tempRet0; + $438 = $1; + $439 = $438; + $440 = HEAP32[$439>>2]|0; + $441 = (($438) + 4)|0; + $442 = $441; + $443 = HEAP32[$442>>2]|0; + $444 = (_bitshift64Ashr(0,($440|0),32)|0); + $445 = tempRet0; + $446 = ((($1)) + 64|0); + $447 = $446; + $448 = $447; + $449 = HEAP32[$448>>2]|0; + $450 = (($447) + 4)|0; + $451 = $450; + $452 = HEAP32[$451>>2]|0; + $453 = (_bitshift64Ashr(0,($449|0),32)|0); + $454 = tempRet0; + $455 = (___muldi3(($453|0),($454|0),($444|0),($445|0))|0); + $456 = tempRet0; + $457 = (_i64Add(($455|0),($456|0),($436|0),($437|0))|0); + $458 = tempRet0; + $459 = $24; + $460 = $459; + $461 = HEAP32[$460>>2]|0; + $462 = (($459) + 4)|0; + $463 = $462; + $464 = HEAP32[$463>>2]|0; + $465 = (_bitshift64Ashr(0,($461|0),32)|0); + $466 = tempRet0; + $467 = $390; + $468 = $467; + $469 = HEAP32[$468>>2]|0; + $470 = (($467) + 4)|0; + $471 = $470; + $472 = HEAP32[$471>>2]|0; + $473 = (_bitshift64Ashr(0,($469|0),32)|0); + $474 = tempRet0; + $475 = (___muldi3(($473|0),($474|0),($465|0),($466|0))|0); + $476 = tempRet0; + $477 = $104; + $478 = $477; + $479 = HEAP32[$478>>2]|0; + $480 = (($477) + 4)|0; + $481 = $480; + $482 = HEAP32[$481>>2]|0; + $483 = (_bitshift64Ashr(0,($479|0),32)|0); + $484 = tempRet0; + $485 = $226; + $486 = $485; + $487 = HEAP32[$486>>2]|0; + $488 = (($485) + 4)|0; + $489 = $488; + $490 = HEAP32[$489>>2]|0; + $491 = (_bitshift64Ashr(0,($487|0),32)|0); + $492 = tempRet0; + $493 = (___muldi3(($491|0),($492|0),($483|0),($484|0))|0); + $494 = tempRet0; + $495 = (_i64Add(($493|0),($494|0),($475|0),($476|0))|0); + $496 = tempRet0; + $497 = (_bitshift64Shl(($495|0),($496|0),1)|0); + $498 = tempRet0; + $499 = (_i64Add(($457|0),($458|0),($497|0),($498|0))|0); + $500 = tempRet0; + $501 = (_bitshift64Shl(($499|0),($500|0),1)|0); + $502 = tempRet0; + $503 = (_i64Add(($501|0),($502|0),($418|0),($419|0))|0); + $504 = tempRet0; + $505 = ((($0)) + 64|0); + $506 = $505; + $507 = $506; + HEAP32[$507>>2] = $503; + $508 = (($506) + 4)|0; + $509 = $508; + HEAP32[$509>>2] = $504; + $510 = $162; + $511 = $510; + $512 = HEAP32[$511>>2]|0; + $513 = (($510) + 4)|0; + $514 = $513; + $515 = HEAP32[$514>>2]|0; + $516 = (_bitshift64Ashr(0,($512|0),32)|0); + $517 = tempRet0; + $518 = $226; + $519 = $518; + $520 = HEAP32[$519>>2]|0; + $521 = (($518) + 4)|0; + $522 = $521; + $523 = HEAP32[$522>>2]|0; + $524 = (_bitshift64Ashr(0,($520|0),32)|0); + $525 = tempRet0; + $526 = (___muldi3(($524|0),($525|0),($516|0),($517|0))|0); + $527 = tempRet0; + $528 = $104; + $529 = $528; + $530 = HEAP32[$529>>2]|0; + $531 = (($528) + 4)|0; + $532 = $531; + $533 = HEAP32[$532>>2]|0; + $534 = (_bitshift64Ashr(0,($530|0),32)|0); + $535 = tempRet0; + $536 = $284; + $537 = $536; + $538 = HEAP32[$537>>2]|0; + $539 = (($536) + 4)|0; + $540 = $539; + $541 = HEAP32[$540>>2]|0; + $542 = (_bitshift64Ashr(0,($538|0),32)|0); + $543 = tempRet0; + $544 = (___muldi3(($542|0),($543|0),($534|0),($535|0))|0); + $545 = tempRet0; + $546 = (_i64Add(($544|0),($545|0),($526|0),($527|0))|0); + $547 = tempRet0; + $548 = $58; + $549 = $548; + $550 = HEAP32[$549>>2]|0; + $551 = (($548) + 4)|0; + $552 = $551; + $553 = HEAP32[$552>>2]|0; + $554 = (_bitshift64Ashr(0,($550|0),32)|0); + $555 = tempRet0; + $556 = $390; + $557 = $556; + $558 = HEAP32[$557>>2]|0; + $559 = (($556) + 4)|0; + $560 = $559; + $561 = HEAP32[$560>>2]|0; + $562 = (_bitshift64Ashr(0,($558|0),32)|0); + $563 = tempRet0; + $564 = (___muldi3(($562|0),($563|0),($554|0),($555|0))|0); + $565 = tempRet0; + $566 = (_i64Add(($546|0),($547|0),($564|0),($565|0))|0); + $567 = tempRet0; + $568 = $24; + $569 = $568; + $570 = HEAP32[$569>>2]|0; + $571 = (($568) + 4)|0; + $572 = $571; + $573 = HEAP32[$572>>2]|0; + $574 = (_bitshift64Ashr(0,($570|0),32)|0); + $575 = tempRet0; + $576 = $446; + $577 = $576; + $578 = HEAP32[$577>>2]|0; + $579 = (($576) + 4)|0; + $580 = $579; + $581 = HEAP32[$580>>2]|0; + $582 = (_bitshift64Ashr(0,($578|0),32)|0); + $583 = tempRet0; + $584 = (___muldi3(($582|0),($583|0),($574|0),($575|0))|0); + $585 = tempRet0; + $586 = (_i64Add(($566|0),($567|0),($584|0),($585|0))|0); + $587 = tempRet0; + $588 = $1; + $589 = $588; + $590 = HEAP32[$589>>2]|0; + $591 = (($588) + 4)|0; + $592 = $591; + $593 = HEAP32[$592>>2]|0; + $594 = (_bitshift64Ashr(0,($590|0),32)|0); + $595 = tempRet0; + $596 = ((($1)) + 72|0); + $597 = $596; + $598 = $597; + $599 = HEAP32[$598>>2]|0; + $600 = (($597) + 4)|0; + $601 = $600; + $602 = HEAP32[$601>>2]|0; + $603 = (_bitshift64Ashr(0,($599|0),32)|0); + $604 = tempRet0; + $605 = (___muldi3(($603|0),($604|0),($594|0),($595|0))|0); + $606 = tempRet0; + $607 = (_i64Add(($586|0),($587|0),($605|0),($606|0))|0); + $608 = tempRet0; + $609 = (_bitshift64Shl(($607|0),($608|0),1)|0); + $610 = tempRet0; + $611 = ((($0)) + 72|0); + $612 = $611; + $613 = $612; + HEAP32[$613>>2] = $609; + $614 = (($612) + 4)|0; + $615 = $614; + HEAP32[$615>>2] = $610; + $616 = $226; + $617 = $616; + $618 = HEAP32[$617>>2]|0; + $619 = (($616) + 4)|0; + $620 = $619; + $621 = HEAP32[$620>>2]|0; + $622 = (_bitshift64Ashr(0,($618|0),32)|0); + $623 = tempRet0; + $624 = (___muldi3(($622|0),($623|0),($622|0),($623|0))|0); + $625 = tempRet0; + $626 = $162; + $627 = $626; + $628 = HEAP32[$627>>2]|0; + $629 = (($626) + 4)|0; + $630 = $629; + $631 = HEAP32[$630>>2]|0; + $632 = (_bitshift64Ashr(0,($628|0),32)|0); + $633 = tempRet0; + $634 = $284; + $635 = $634; + $636 = HEAP32[$635>>2]|0; + $637 = (($634) + 4)|0; + $638 = $637; + $639 = HEAP32[$638>>2]|0; + $640 = (_bitshift64Ashr(0,($636|0),32)|0); + $641 = tempRet0; + $642 = (___muldi3(($640|0),($641|0),($632|0),($633|0))|0); + $643 = tempRet0; + $644 = (_i64Add(($642|0),($643|0),($624|0),($625|0))|0); + $645 = tempRet0; + $646 = $58; + $647 = $646; + $648 = HEAP32[$647>>2]|0; + $649 = (($646) + 4)|0; + $650 = $649; + $651 = HEAP32[$650>>2]|0; + $652 = (_bitshift64Ashr(0,($648|0),32)|0); + $653 = tempRet0; + $654 = $446; + $655 = $654; + $656 = HEAP32[$655>>2]|0; + $657 = (($654) + 4)|0; + $658 = $657; + $659 = HEAP32[$658>>2]|0; + $660 = (_bitshift64Ashr(0,($656|0),32)|0); + $661 = tempRet0; + $662 = (___muldi3(($660|0),($661|0),($652|0),($653|0))|0); + $663 = tempRet0; + $664 = (_i64Add(($644|0),($645|0),($662|0),($663|0))|0); + $665 = tempRet0; + $666 = $104; + $667 = $666; + $668 = HEAP32[$667>>2]|0; + $669 = (($666) + 4)|0; + $670 = $669; + $671 = HEAP32[$670>>2]|0; + $672 = (_bitshift64Ashr(0,($668|0),32)|0); + $673 = tempRet0; + $674 = $390; + $675 = $674; + $676 = HEAP32[$675>>2]|0; + $677 = (($674) + 4)|0; + $678 = $677; + $679 = HEAP32[$678>>2]|0; + $680 = (_bitshift64Ashr(0,($676|0),32)|0); + $681 = tempRet0; + $682 = (___muldi3(($680|0),($681|0),($672|0),($673|0))|0); + $683 = tempRet0; + $684 = $24; + $685 = $684; + $686 = HEAP32[$685>>2]|0; + $687 = (($684) + 4)|0; + $688 = $687; + $689 = HEAP32[$688>>2]|0; + $690 = (_bitshift64Ashr(0,($686|0),32)|0); + $691 = tempRet0; + $692 = $596; + $693 = $692; + $694 = HEAP32[$693>>2]|0; + $695 = (($692) + 4)|0; + $696 = $695; + $697 = HEAP32[$696>>2]|0; + $698 = (_bitshift64Ashr(0,($694|0),32)|0); + $699 = tempRet0; + $700 = (___muldi3(($698|0),($699|0),($690|0),($691|0))|0); + $701 = tempRet0; + $702 = (_i64Add(($700|0),($701|0),($682|0),($683|0))|0); + $703 = tempRet0; + $704 = (_bitshift64Shl(($702|0),($703|0),1)|0); + $705 = tempRet0; + $706 = (_i64Add(($664|0),($665|0),($704|0),($705|0))|0); + $707 = tempRet0; + $708 = (_bitshift64Shl(($706|0),($707|0),1)|0); + $709 = tempRet0; + $710 = ((($0)) + 80|0); + $711 = $710; + $712 = $711; + HEAP32[$712>>2] = $708; + $713 = (($711) + 4)|0; + $714 = $713; + HEAP32[$714>>2] = $709; + $715 = $226; + $716 = $715; + $717 = HEAP32[$716>>2]|0; + $718 = (($715) + 4)|0; + $719 = $718; + $720 = HEAP32[$719>>2]|0; + $721 = (_bitshift64Ashr(0,($717|0),32)|0); + $722 = tempRet0; + $723 = $284; + $724 = $723; + $725 = HEAP32[$724>>2]|0; + $726 = (($723) + 4)|0; + $727 = $726; + $728 = HEAP32[$727>>2]|0; + $729 = (_bitshift64Ashr(0,($725|0),32)|0); + $730 = tempRet0; + $731 = (___muldi3(($729|0),($730|0),($721|0),($722|0))|0); + $732 = tempRet0; + $733 = $162; + $734 = $733; + $735 = HEAP32[$734>>2]|0; + $736 = (($733) + 4)|0; + $737 = $736; + $738 = HEAP32[$737>>2]|0; + $739 = (_bitshift64Ashr(0,($735|0),32)|0); + $740 = tempRet0; + $741 = $390; + $742 = $741; + $743 = HEAP32[$742>>2]|0; + $744 = (($741) + 4)|0; + $745 = $744; + $746 = HEAP32[$745>>2]|0; + $747 = (_bitshift64Ashr(0,($743|0),32)|0); + $748 = tempRet0; + $749 = (___muldi3(($747|0),($748|0),($739|0),($740|0))|0); + $750 = tempRet0; + $751 = (_i64Add(($749|0),($750|0),($731|0),($732|0))|0); + $752 = tempRet0; + $753 = $104; + $754 = $753; + $755 = HEAP32[$754>>2]|0; + $756 = (($753) + 4)|0; + $757 = $756; + $758 = HEAP32[$757>>2]|0; + $759 = (_bitshift64Ashr(0,($755|0),32)|0); + $760 = tempRet0; + $761 = $446; + $762 = $761; + $763 = HEAP32[$762>>2]|0; + $764 = (($761) + 4)|0; + $765 = $764; + $766 = HEAP32[$765>>2]|0; + $767 = (_bitshift64Ashr(0,($763|0),32)|0); + $768 = tempRet0; + $769 = (___muldi3(($767|0),($768|0),($759|0),($760|0))|0); + $770 = tempRet0; + $771 = (_i64Add(($751|0),($752|0),($769|0),($770|0))|0); + $772 = tempRet0; + $773 = $58; + $774 = $773; + $775 = HEAP32[$774>>2]|0; + $776 = (($773) + 4)|0; + $777 = $776; + $778 = HEAP32[$777>>2]|0; + $779 = (_bitshift64Ashr(0,($775|0),32)|0); + $780 = tempRet0; + $781 = $596; + $782 = $781; + $783 = HEAP32[$782>>2]|0; + $784 = (($781) + 4)|0; + $785 = $784; + $786 = HEAP32[$785>>2]|0; + $787 = (_bitshift64Ashr(0,($783|0),32)|0); + $788 = tempRet0; + $789 = (___muldi3(($787|0),($788|0),($779|0),($780|0))|0); + $790 = tempRet0; + $791 = (_i64Add(($771|0),($772|0),($789|0),($790|0))|0); + $792 = tempRet0; + $793 = (_bitshift64Shl(($791|0),($792|0),1)|0); + $794 = tempRet0; + $795 = ((($0)) + 88|0); + $796 = $795; + $797 = $796; + HEAP32[$797>>2] = $793; + $798 = (($796) + 4)|0; + $799 = $798; + HEAP32[$799>>2] = $794; + $800 = $284; + $801 = $800; + $802 = HEAP32[$801>>2]|0; + $803 = (($800) + 4)|0; + $804 = $803; + $805 = HEAP32[$804>>2]|0; + $806 = (_bitshift64Ashr(0,($802|0),32)|0); + $807 = tempRet0; + $808 = (___muldi3(($806|0),($807|0),($806|0),($807|0))|0); + $809 = tempRet0; + $810 = $162; + $811 = $810; + $812 = HEAP32[$811>>2]|0; + $813 = (($810) + 4)|0; + $814 = $813; + $815 = HEAP32[$814>>2]|0; + $816 = (_bitshift64Ashr(0,($812|0),32)|0); + $817 = tempRet0; + $818 = $446; + $819 = $818; + $820 = HEAP32[$819>>2]|0; + $821 = (($818) + 4)|0; + $822 = $821; + $823 = HEAP32[$822>>2]|0; + $824 = (_bitshift64Ashr(0,($820|0),32)|0); + $825 = tempRet0; + $826 = (___muldi3(($824|0),($825|0),($816|0),($817|0))|0); + $827 = tempRet0; + $828 = $226; + $829 = $828; + $830 = HEAP32[$829>>2]|0; + $831 = (($828) + 4)|0; + $832 = $831; + $833 = HEAP32[$832>>2]|0; + $834 = (_bitshift64Ashr(0,($830|0),32)|0); + $835 = tempRet0; + $836 = $390; + $837 = $836; + $838 = HEAP32[$837>>2]|0; + $839 = (($836) + 4)|0; + $840 = $839; + $841 = HEAP32[$840>>2]|0; + $842 = (_bitshift64Ashr(0,($838|0),32)|0); + $843 = tempRet0; + $844 = (___muldi3(($842|0),($843|0),($834|0),($835|0))|0); + $845 = tempRet0; + $846 = $104; + $847 = $846; + $848 = HEAP32[$847>>2]|0; + $849 = (($846) + 4)|0; + $850 = $849; + $851 = HEAP32[$850>>2]|0; + $852 = (_bitshift64Ashr(0,($848|0),32)|0); + $853 = tempRet0; + $854 = $596; + $855 = $854; + $856 = HEAP32[$855>>2]|0; + $857 = (($854) + 4)|0; + $858 = $857; + $859 = HEAP32[$858>>2]|0; + $860 = (_bitshift64Ashr(0,($856|0),32)|0); + $861 = tempRet0; + $862 = (___muldi3(($860|0),($861|0),($852|0),($853|0))|0); + $863 = tempRet0; + $864 = (_i64Add(($862|0),($863|0),($844|0),($845|0))|0); + $865 = tempRet0; + $866 = (_bitshift64Shl(($864|0),($865|0),1)|0); + $867 = tempRet0; + $868 = (_i64Add(($866|0),($867|0),($826|0),($827|0))|0); + $869 = tempRet0; + $870 = (_bitshift64Shl(($868|0),($869|0),1)|0); + $871 = tempRet0; + $872 = (_i64Add(($870|0),($871|0),($808|0),($809|0))|0); + $873 = tempRet0; + $874 = ((($0)) + 96|0); + $875 = $874; + $876 = $875; + HEAP32[$876>>2] = $872; + $877 = (($875) + 4)|0; + $878 = $877; + HEAP32[$878>>2] = $873; + $879 = $284; + $880 = $879; + $881 = HEAP32[$880>>2]|0; + $882 = (($879) + 4)|0; + $883 = $882; + $884 = HEAP32[$883>>2]|0; + $885 = (_bitshift64Ashr(0,($881|0),32)|0); + $886 = tempRet0; + $887 = $390; + $888 = $887; + $889 = HEAP32[$888>>2]|0; + $890 = (($887) + 4)|0; + $891 = $890; + $892 = HEAP32[$891>>2]|0; + $893 = (_bitshift64Ashr(0,($889|0),32)|0); + $894 = tempRet0; + $895 = (___muldi3(($893|0),($894|0),($885|0),($886|0))|0); + $896 = tempRet0; + $897 = $226; + $898 = $897; + $899 = HEAP32[$898>>2]|0; + $900 = (($897) + 4)|0; + $901 = $900; + $902 = HEAP32[$901>>2]|0; + $903 = (_bitshift64Ashr(0,($899|0),32)|0); + $904 = tempRet0; + $905 = $446; + $906 = $905; + $907 = HEAP32[$906>>2]|0; + $908 = (($905) + 4)|0; + $909 = $908; + $910 = HEAP32[$909>>2]|0; + $911 = (_bitshift64Ashr(0,($907|0),32)|0); + $912 = tempRet0; + $913 = (___muldi3(($911|0),($912|0),($903|0),($904|0))|0); + $914 = tempRet0; + $915 = (_i64Add(($913|0),($914|0),($895|0),($896|0))|0); + $916 = tempRet0; + $917 = $162; + $918 = $917; + $919 = HEAP32[$918>>2]|0; + $920 = (($917) + 4)|0; + $921 = $920; + $922 = HEAP32[$921>>2]|0; + $923 = (_bitshift64Ashr(0,($919|0),32)|0); + $924 = tempRet0; + $925 = $596; + $926 = $925; + $927 = HEAP32[$926>>2]|0; + $928 = (($925) + 4)|0; + $929 = $928; + $930 = HEAP32[$929>>2]|0; + $931 = (_bitshift64Ashr(0,($927|0),32)|0); + $932 = tempRet0; + $933 = (___muldi3(($931|0),($932|0),($923|0),($924|0))|0); + $934 = tempRet0; + $935 = (_i64Add(($915|0),($916|0),($933|0),($934|0))|0); + $936 = tempRet0; + $937 = (_bitshift64Shl(($935|0),($936|0),1)|0); + $938 = tempRet0; + $939 = ((($0)) + 104|0); + $940 = $939; + $941 = $940; + HEAP32[$941>>2] = $937; + $942 = (($940) + 4)|0; + $943 = $942; + HEAP32[$943>>2] = $938; + $944 = $390; + $945 = $944; + $946 = HEAP32[$945>>2]|0; + $947 = (($944) + 4)|0; + $948 = $947; + $949 = HEAP32[$948>>2]|0; + $950 = (_bitshift64Ashr(0,($946|0),32)|0); + $951 = tempRet0; + $952 = (___muldi3(($950|0),($951|0),($950|0),($951|0))|0); + $953 = tempRet0; + $954 = $284; + $955 = $954; + $956 = HEAP32[$955>>2]|0; + $957 = (($954) + 4)|0; + $958 = $957; + $959 = HEAP32[$958>>2]|0; + $960 = (_bitshift64Ashr(0,($956|0),32)|0); + $961 = tempRet0; + $962 = $446; + $963 = $962; + $964 = HEAP32[$963>>2]|0; + $965 = (($962) + 4)|0; + $966 = $965; + $967 = HEAP32[$966>>2]|0; + $968 = (_bitshift64Ashr(0,($964|0),32)|0); + $969 = tempRet0; + $970 = (___muldi3(($968|0),($969|0),($960|0),($961|0))|0); + $971 = tempRet0; + $972 = (_i64Add(($970|0),($971|0),($952|0),($953|0))|0); + $973 = tempRet0; + $974 = $226; + $975 = $974; + $976 = HEAP32[$975>>2]|0; + $977 = (($974) + 4)|0; + $978 = $977; + $979 = HEAP32[$978>>2]|0; + $980 = (_bitshift64Ashr(0,($976|0),31)|0); + $981 = tempRet0; + $982 = $596; + $983 = $982; + $984 = HEAP32[$983>>2]|0; + $985 = (($982) + 4)|0; + $986 = $985; + $987 = HEAP32[$986>>2]|0; + $988 = (_bitshift64Ashr(0,($984|0),32)|0); + $989 = tempRet0; + $990 = (___muldi3(($988|0),($989|0),($980|0),($981|0))|0); + $991 = tempRet0; + $992 = (_i64Add(($972|0),($973|0),($990|0),($991|0))|0); + $993 = tempRet0; + $994 = (_bitshift64Shl(($992|0),($993|0),1)|0); + $995 = tempRet0; + $996 = ((($0)) + 112|0); + $997 = $996; + $998 = $997; + HEAP32[$998>>2] = $994; + $999 = (($997) + 4)|0; + $1000 = $999; + HEAP32[$1000>>2] = $995; + $1001 = $390; + $1002 = $1001; + $1003 = HEAP32[$1002>>2]|0; + $1004 = (($1001) + 4)|0; + $1005 = $1004; + $1006 = HEAP32[$1005>>2]|0; + $1007 = (_bitshift64Ashr(0,($1003|0),32)|0); + $1008 = tempRet0; + $1009 = $446; + $1010 = $1009; + $1011 = HEAP32[$1010>>2]|0; + $1012 = (($1009) + 4)|0; + $1013 = $1012; + $1014 = HEAP32[$1013>>2]|0; + $1015 = (_bitshift64Ashr(0,($1011|0),32)|0); + $1016 = tempRet0; + $1017 = (___muldi3(($1015|0),($1016|0),($1007|0),($1008|0))|0); + $1018 = tempRet0; + $1019 = $284; + $1020 = $1019; + $1021 = HEAP32[$1020>>2]|0; + $1022 = (($1019) + 4)|0; + $1023 = $1022; + $1024 = HEAP32[$1023>>2]|0; + $1025 = (_bitshift64Ashr(0,($1021|0),32)|0); + $1026 = tempRet0; + $1027 = $596; + $1028 = $1027; + $1029 = HEAP32[$1028>>2]|0; + $1030 = (($1027) + 4)|0; + $1031 = $1030; + $1032 = HEAP32[$1031>>2]|0; + $1033 = (_bitshift64Ashr(0,($1029|0),32)|0); + $1034 = tempRet0; + $1035 = (___muldi3(($1033|0),($1034|0),($1025|0),($1026|0))|0); + $1036 = tempRet0; + $1037 = (_i64Add(($1035|0),($1036|0),($1017|0),($1018|0))|0); + $1038 = tempRet0; + $1039 = (_bitshift64Shl(($1037|0),($1038|0),1)|0); + $1040 = tempRet0; + $1041 = ((($0)) + 120|0); + $1042 = $1041; + $1043 = $1042; + HEAP32[$1043>>2] = $1039; + $1044 = (($1042) + 4)|0; + $1045 = $1044; + HEAP32[$1045>>2] = $1040; + $1046 = $446; + $1047 = $1046; + $1048 = HEAP32[$1047>>2]|0; + $1049 = (($1046) + 4)|0; + $1050 = $1049; + $1051 = HEAP32[$1050>>2]|0; + $1052 = (_bitshift64Ashr(0,($1048|0),32)|0); + $1053 = tempRet0; + $1054 = (___muldi3(($1052|0),($1053|0),($1052|0),($1053|0))|0); + $1055 = tempRet0; + $1056 = $390; + $1057 = $1056; + $1058 = HEAP32[$1057>>2]|0; + $1059 = (($1056) + 4)|0; + $1060 = $1059; + $1061 = HEAP32[$1060>>2]|0; + $1062 = (_bitshift64Ashr(0,($1058|0),30)|0); + $1063 = tempRet0; + $1064 = $596; + $1065 = $1064; + $1066 = HEAP32[$1065>>2]|0; + $1067 = (($1064) + 4)|0; + $1068 = $1067; + $1069 = HEAP32[$1068>>2]|0; + $1070 = (_bitshift64Ashr(0,($1066|0),32)|0); + $1071 = tempRet0; + $1072 = (___muldi3(($1070|0),($1071|0),($1062|0),($1063|0))|0); + $1073 = tempRet0; + $1074 = (_i64Add(($1072|0),($1073|0),($1054|0),($1055|0))|0); + $1075 = tempRet0; + $1076 = ((($0)) + 128|0); + $1077 = $1076; + $1078 = $1077; + HEAP32[$1078>>2] = $1074; + $1079 = (($1077) + 4)|0; + $1080 = $1079; + HEAP32[$1080>>2] = $1075; + $1081 = $446; + $1082 = $1081; + $1083 = HEAP32[$1082>>2]|0; + $1084 = (($1081) + 4)|0; + $1085 = $1084; + $1086 = HEAP32[$1085>>2]|0; + $1087 = (_bitshift64Ashr(0,($1083|0),31)|0); + $1088 = tempRet0; + $1089 = $596; + $1090 = $1089; + $1091 = HEAP32[$1090>>2]|0; + $1092 = (($1089) + 4)|0; + $1093 = $1092; + $1094 = HEAP32[$1093>>2]|0; + $1095 = (_bitshift64Ashr(0,($1091|0),32)|0); + $1096 = tempRet0; + $1097 = (___muldi3(($1095|0),($1096|0),($1087|0),($1088|0))|0); + $1098 = tempRet0; + $1099 = ((($0)) + 136|0); + $1100 = $1099; + $1101 = $1100; + HEAP32[$1101>>2] = $1097; + $1102 = (($1100) + 4)|0; + $1103 = $1102; + HEAP32[$1103>>2] = $1098; + $1104 = $596; + $1105 = $1104; + $1106 = HEAP32[$1105>>2]|0; + $1107 = (($1104) + 4)|0; + $1108 = $1107; + $1109 = HEAP32[$1108>>2]|0; + $1110 = (_bitshift64Ashr(0,($1106|0),32)|0); + $1111 = tempRet0; + $1112 = (_bitshift64Ashr(0,($1106|0),31)|0); + $1113 = tempRet0; + $1114 = (___muldi3(($1112|0),($1113|0),($1110|0),($1111|0))|0); + $1115 = tempRet0; + $1116 = ((($0)) + 144|0); + $1117 = $1116; + $1118 = $1117; + HEAP32[$1118>>2] = $1114; + $1119 = (($1117) + 4)|0; + $1120 = $1119; + HEAP32[$1120>>2] = $1115; + return; +} +function _swap_conditional($0,$1,$2,$3) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0; + var $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0; + var $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0; + var $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0; + var $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0; + var $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0; + var $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0; + var $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0; + var $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0; + var $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0; + var $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; + var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0; + var $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0; + var $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0; + var label = 0, sp = 0; + sp = STACKTOP; + $4 = (_i64Subtract(0,0,($2|0),($3|0))|0); + $5 = tempRet0; + $6 = $0; + $7 = $6; + $8 = HEAP32[$7>>2]|0; + $9 = (($6) + 4)|0; + $10 = $9; + $11 = HEAP32[$10>>2]|0; + $12 = $1; + $13 = $12; + $14 = HEAP32[$13>>2]|0; + $15 = (($12) + 4)|0; + $16 = $15; + $17 = HEAP32[$16>>2]|0; + $18 = $14 ^ $8; + $19 = $17 ^ $11; + $20 = $18 & $4; + $21 = $19 & $5; + $22 = $20 ^ $8; + $21 ^ $11; + $23 = (_bitshift64Ashr(0,($22|0),32)|0); + $24 = tempRet0; + $25 = $0; + $26 = $25; + HEAP32[$26>>2] = $23; + $27 = (($25) + 4)|0; + $28 = $27; + HEAP32[$28>>2] = $24; + $29 = $1; + $30 = $29; + $31 = HEAP32[$30>>2]|0; + $32 = (($29) + 4)|0; + $33 = $32; + $34 = HEAP32[$33>>2]|0; + $35 = $31 ^ $20; + $34 ^ $21; + $36 = (_bitshift64Ashr(0,($35|0),32)|0); + $37 = tempRet0; + $38 = $1; + $39 = $38; + HEAP32[$39>>2] = $36; + $40 = (($38) + 4)|0; + $41 = $40; + HEAP32[$41>>2] = $37; + $42 = ((($0)) + 8|0); + $43 = $42; + $44 = $43; + $45 = HEAP32[$44>>2]|0; + $46 = (($43) + 4)|0; + $47 = $46; + $48 = HEAP32[$47>>2]|0; + $49 = ((($1)) + 8|0); + $50 = $49; + $51 = $50; + $52 = HEAP32[$51>>2]|0; + $53 = (($50) + 4)|0; + $54 = $53; + $55 = HEAP32[$54>>2]|0; + $56 = $52 ^ $45; + $57 = $55 ^ $48; + $58 = $56 & $4; + $59 = $57 & $5; + $60 = $58 ^ $45; + $59 ^ $48; + $61 = (_bitshift64Ashr(0,($60|0),32)|0); + $62 = tempRet0; + $63 = $42; + $64 = $63; + HEAP32[$64>>2] = $61; + $65 = (($63) + 4)|0; + $66 = $65; + HEAP32[$66>>2] = $62; + $67 = $49; + $68 = $67; + $69 = HEAP32[$68>>2]|0; + $70 = (($67) + 4)|0; + $71 = $70; + $72 = HEAP32[$71>>2]|0; + $73 = $69 ^ $58; + $72 ^ $59; + $74 = (_bitshift64Ashr(0,($73|0),32)|0); + $75 = tempRet0; + $76 = $49; + $77 = $76; + HEAP32[$77>>2] = $74; + $78 = (($76) + 4)|0; + $79 = $78; + HEAP32[$79>>2] = $75; + $80 = ((($0)) + 16|0); + $81 = $80; + $82 = $81; + $83 = HEAP32[$82>>2]|0; + $84 = (($81) + 4)|0; + $85 = $84; + $86 = HEAP32[$85>>2]|0; + $87 = ((($1)) + 16|0); + $88 = $87; + $89 = $88; + $90 = HEAP32[$89>>2]|0; + $91 = (($88) + 4)|0; + $92 = $91; + $93 = HEAP32[$92>>2]|0; + $94 = $90 ^ $83; + $95 = $93 ^ $86; + $96 = $94 & $4; + $97 = $95 & $5; + $98 = $96 ^ $83; + $97 ^ $86; + $99 = (_bitshift64Ashr(0,($98|0),32)|0); + $100 = tempRet0; + $101 = $80; + $102 = $101; + HEAP32[$102>>2] = $99; + $103 = (($101) + 4)|0; + $104 = $103; + HEAP32[$104>>2] = $100; + $105 = $87; + $106 = $105; + $107 = HEAP32[$106>>2]|0; + $108 = (($105) + 4)|0; + $109 = $108; + $110 = HEAP32[$109>>2]|0; + $111 = $107 ^ $96; + $110 ^ $97; + $112 = (_bitshift64Ashr(0,($111|0),32)|0); + $113 = tempRet0; + $114 = $87; + $115 = $114; + HEAP32[$115>>2] = $112; + $116 = (($114) + 4)|0; + $117 = $116; + HEAP32[$117>>2] = $113; + $118 = ((($0)) + 24|0); + $119 = $118; + $120 = $119; + $121 = HEAP32[$120>>2]|0; + $122 = (($119) + 4)|0; + $123 = $122; + $124 = HEAP32[$123>>2]|0; + $125 = ((($1)) + 24|0); + $126 = $125; + $127 = $126; + $128 = HEAP32[$127>>2]|0; + $129 = (($126) + 4)|0; + $130 = $129; + $131 = HEAP32[$130>>2]|0; + $132 = $128 ^ $121; + $133 = $131 ^ $124; + $134 = $132 & $4; + $135 = $133 & $5; + $136 = $134 ^ $121; + $135 ^ $124; + $137 = (_bitshift64Ashr(0,($136|0),32)|0); + $138 = tempRet0; + $139 = $118; + $140 = $139; + HEAP32[$140>>2] = $137; + $141 = (($139) + 4)|0; + $142 = $141; + HEAP32[$142>>2] = $138; + $143 = $125; + $144 = $143; + $145 = HEAP32[$144>>2]|0; + $146 = (($143) + 4)|0; + $147 = $146; + $148 = HEAP32[$147>>2]|0; + $149 = $145 ^ $134; + $148 ^ $135; + $150 = (_bitshift64Ashr(0,($149|0),32)|0); + $151 = tempRet0; + $152 = $125; + $153 = $152; + HEAP32[$153>>2] = $150; + $154 = (($152) + 4)|0; + $155 = $154; + HEAP32[$155>>2] = $151; + $156 = ((($0)) + 32|0); + $157 = $156; + $158 = $157; + $159 = HEAP32[$158>>2]|0; + $160 = (($157) + 4)|0; + $161 = $160; + $162 = HEAP32[$161>>2]|0; + $163 = ((($1)) + 32|0); + $164 = $163; + $165 = $164; + $166 = HEAP32[$165>>2]|0; + $167 = (($164) + 4)|0; + $168 = $167; + $169 = HEAP32[$168>>2]|0; + $170 = $166 ^ $159; + $171 = $169 ^ $162; + $172 = $170 & $4; + $173 = $171 & $5; + $174 = $172 ^ $159; + $173 ^ $162; + $175 = (_bitshift64Ashr(0,($174|0),32)|0); + $176 = tempRet0; + $177 = $156; + $178 = $177; + HEAP32[$178>>2] = $175; + $179 = (($177) + 4)|0; + $180 = $179; + HEAP32[$180>>2] = $176; + $181 = $163; + $182 = $181; + $183 = HEAP32[$182>>2]|0; + $184 = (($181) + 4)|0; + $185 = $184; + $186 = HEAP32[$185>>2]|0; + $187 = $183 ^ $172; + $186 ^ $173; + $188 = (_bitshift64Ashr(0,($187|0),32)|0); + $189 = tempRet0; + $190 = $163; + $191 = $190; + HEAP32[$191>>2] = $188; + $192 = (($190) + 4)|0; + $193 = $192; + HEAP32[$193>>2] = $189; + $194 = ((($0)) + 40|0); + $195 = $194; + $196 = $195; + $197 = HEAP32[$196>>2]|0; + $198 = (($195) + 4)|0; + $199 = $198; + $200 = HEAP32[$199>>2]|0; + $201 = ((($1)) + 40|0); + $202 = $201; + $203 = $202; + $204 = HEAP32[$203>>2]|0; + $205 = (($202) + 4)|0; + $206 = $205; + $207 = HEAP32[$206>>2]|0; + $208 = $204 ^ $197; + $209 = $207 ^ $200; + $210 = $208 & $4; + $211 = $209 & $5; + $212 = $210 ^ $197; + $211 ^ $200; + $213 = (_bitshift64Ashr(0,($212|0),32)|0); + $214 = tempRet0; + $215 = $194; + $216 = $215; + HEAP32[$216>>2] = $213; + $217 = (($215) + 4)|0; + $218 = $217; + HEAP32[$218>>2] = $214; + $219 = $201; + $220 = $219; + $221 = HEAP32[$220>>2]|0; + $222 = (($219) + 4)|0; + $223 = $222; + $224 = HEAP32[$223>>2]|0; + $225 = $221 ^ $210; + $224 ^ $211; + $226 = (_bitshift64Ashr(0,($225|0),32)|0); + $227 = tempRet0; + $228 = $201; + $229 = $228; + HEAP32[$229>>2] = $226; + $230 = (($228) + 4)|0; + $231 = $230; + HEAP32[$231>>2] = $227; + $232 = ((($0)) + 48|0); + $233 = $232; + $234 = $233; + $235 = HEAP32[$234>>2]|0; + $236 = (($233) + 4)|0; + $237 = $236; + $238 = HEAP32[$237>>2]|0; + $239 = ((($1)) + 48|0); + $240 = $239; + $241 = $240; + $242 = HEAP32[$241>>2]|0; + $243 = (($240) + 4)|0; + $244 = $243; + $245 = HEAP32[$244>>2]|0; + $246 = $242 ^ $235; + $247 = $245 ^ $238; + $248 = $246 & $4; + $249 = $247 & $5; + $250 = $248 ^ $235; + $249 ^ $238; + $251 = (_bitshift64Ashr(0,($250|0),32)|0); + $252 = tempRet0; + $253 = $232; + $254 = $253; + HEAP32[$254>>2] = $251; + $255 = (($253) + 4)|0; + $256 = $255; + HEAP32[$256>>2] = $252; + $257 = $239; + $258 = $257; + $259 = HEAP32[$258>>2]|0; + $260 = (($257) + 4)|0; + $261 = $260; + $262 = HEAP32[$261>>2]|0; + $263 = $259 ^ $248; + $262 ^ $249; + $264 = (_bitshift64Ashr(0,($263|0),32)|0); + $265 = tempRet0; + $266 = $239; + $267 = $266; + HEAP32[$267>>2] = $264; + $268 = (($266) + 4)|0; + $269 = $268; + HEAP32[$269>>2] = $265; + $270 = ((($0)) + 56|0); + $271 = $270; + $272 = $271; + $273 = HEAP32[$272>>2]|0; + $274 = (($271) + 4)|0; + $275 = $274; + $276 = HEAP32[$275>>2]|0; + $277 = ((($1)) + 56|0); + $278 = $277; + $279 = $278; + $280 = HEAP32[$279>>2]|0; + $281 = (($278) + 4)|0; + $282 = $281; + $283 = HEAP32[$282>>2]|0; + $284 = $280 ^ $273; + $285 = $283 ^ $276; + $286 = $284 & $4; + $287 = $285 & $5; + $288 = $286 ^ $273; + $287 ^ $276; + $289 = (_bitshift64Ashr(0,($288|0),32)|0); + $290 = tempRet0; + $291 = $270; + $292 = $291; + HEAP32[$292>>2] = $289; + $293 = (($291) + 4)|0; + $294 = $293; + HEAP32[$294>>2] = $290; + $295 = $277; + $296 = $295; + $297 = HEAP32[$296>>2]|0; + $298 = (($295) + 4)|0; + $299 = $298; + $300 = HEAP32[$299>>2]|0; + $301 = $297 ^ $286; + $300 ^ $287; + $302 = (_bitshift64Ashr(0,($301|0),32)|0); + $303 = tempRet0; + $304 = $277; + $305 = $304; + HEAP32[$305>>2] = $302; + $306 = (($304) + 4)|0; + $307 = $306; + HEAP32[$307>>2] = $303; + $308 = ((($0)) + 64|0); + $309 = $308; + $310 = $309; + $311 = HEAP32[$310>>2]|0; + $312 = (($309) + 4)|0; + $313 = $312; + $314 = HEAP32[$313>>2]|0; + $315 = ((($1)) + 64|0); + $316 = $315; + $317 = $316; + $318 = HEAP32[$317>>2]|0; + $319 = (($316) + 4)|0; + $320 = $319; + $321 = HEAP32[$320>>2]|0; + $322 = $318 ^ $311; + $323 = $321 ^ $314; + $324 = $322 & $4; + $325 = $323 & $5; + $326 = $324 ^ $311; + $325 ^ $314; + $327 = (_bitshift64Ashr(0,($326|0),32)|0); + $328 = tempRet0; + $329 = $308; + $330 = $329; + HEAP32[$330>>2] = $327; + $331 = (($329) + 4)|0; + $332 = $331; + HEAP32[$332>>2] = $328; + $333 = $315; + $334 = $333; + $335 = HEAP32[$334>>2]|0; + $336 = (($333) + 4)|0; + $337 = $336; + $338 = HEAP32[$337>>2]|0; + $339 = $335 ^ $324; + $338 ^ $325; + $340 = (_bitshift64Ashr(0,($339|0),32)|0); + $341 = tempRet0; + $342 = $315; + $343 = $342; + HEAP32[$343>>2] = $340; + $344 = (($342) + 4)|0; + $345 = $344; + HEAP32[$345>>2] = $341; + $346 = ((($0)) + 72|0); + $347 = $346; + $348 = $347; + $349 = HEAP32[$348>>2]|0; + $350 = (($347) + 4)|0; + $351 = $350; + $352 = HEAP32[$351>>2]|0; + $353 = ((($1)) + 72|0); + $354 = $353; + $355 = $354; + $356 = HEAP32[$355>>2]|0; + $357 = (($354) + 4)|0; + $358 = $357; + $359 = HEAP32[$358>>2]|0; + $360 = $356 ^ $349; + $361 = $359 ^ $352; + $362 = $360 & $4; + $363 = $361 & $5; + $364 = $362 ^ $349; + $363 ^ $352; + $365 = (_bitshift64Ashr(0,($364|0),32)|0); + $366 = tempRet0; + $367 = $346; + $368 = $367; + HEAP32[$368>>2] = $365; + $369 = (($367) + 4)|0; + $370 = $369; + HEAP32[$370>>2] = $366; + $371 = $353; + $372 = $371; + $373 = HEAP32[$372>>2]|0; + $374 = (($371) + 4)|0; + $375 = $374; + $376 = HEAP32[$375>>2]|0; + $377 = $373 ^ $362; + $376 ^ $363; + $378 = (_bitshift64Ashr(0,($377|0),32)|0); + $379 = tempRet0; + $380 = $353; + $381 = $380; + HEAP32[$381>>2] = $378; + $382 = (($380) + 4)|0; + $383 = $382; + HEAP32[$383>>2] = $379; + return; +} +function _fmonty($0,$1,$2,$3,$4,$5,$6,$7,$8) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + $4 = $4|0; + $5 = $5|0; + $6 = $6|0; + $7 = $7|0; + $8 = $8|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $9 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 1232|0; + $9 = sp + 1144|0; + $10 = sp + 1064|0; + $11 = sp + 912|0; + $12 = sp + 760|0; + $13 = sp + 608|0; + $14 = sp + 456|0; + $15 = sp + 304|0; + $16 = sp + 152|0; + $17 = sp; + dest=$9; src=$4; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsum($4,$5); + _fdifference($5,$9); + dest=$10; src=$6; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsum($6,$7); + _fdifference($7,$10); + _fproduct($14,$6,$5); + _fproduct($15,$4,$7); + _freduce_degree($14); + _freduce_coefficients($14); + _freduce_degree($15); + _freduce_coefficients($15); + dest=$10; src=$14; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsum($14,$15); + _fdifference($15,$10); + _fsquare($17,$14); + _fsquare($16,$15); + _fproduct($15,$16,$8); + _freduce_degree($15); + _freduce_coefficients($15); + dest=$2; src=$17; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + dest=$3; src=$15; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsquare($12,$4); + _fsquare($13,$5); + _fproduct($0,$12,$13); + _freduce_degree($0); + _freduce_coefficients($0); + _fdifference($13,$12); + $18 = ((($11)) + 80|0); + dest=$18; stop=dest+72|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); + _fscalar_product($11,$13); + _freduce_coefficients($11); + _fsum($11,$12); + _fproduct($1,$13,$11); + _freduce_degree($1); + _freduce_coefficients($1); + STACKTOP = sp;return; +} +function _fsum($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; + var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; + var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; + var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = $0; + $3 = $2; + $4 = HEAP32[$3>>2]|0; + $5 = (($2) + 4)|0; + $6 = $5; + $7 = HEAP32[$6>>2]|0; + $8 = $1; + $9 = $8; + $10 = HEAP32[$9>>2]|0; + $11 = (($8) + 4)|0; + $12 = $11; + $13 = HEAP32[$12>>2]|0; + $14 = (_i64Add(($10|0),($13|0),($4|0),($7|0))|0); + $15 = tempRet0; + $16 = $0; + $17 = $16; + HEAP32[$17>>2] = $14; + $18 = (($16) + 4)|0; + $19 = $18; + HEAP32[$19>>2] = $15; + $20 = ((($0)) + 8|0); + $21 = $20; + $22 = $21; + $23 = HEAP32[$22>>2]|0; + $24 = (($21) + 4)|0; + $25 = $24; + $26 = HEAP32[$25>>2]|0; + $27 = ((($1)) + 8|0); + $28 = $27; + $29 = $28; + $30 = HEAP32[$29>>2]|0; + $31 = (($28) + 4)|0; + $32 = $31; + $33 = HEAP32[$32>>2]|0; + $34 = (_i64Add(($30|0),($33|0),($23|0),($26|0))|0); + $35 = tempRet0; + $36 = $20; + $37 = $36; + HEAP32[$37>>2] = $34; + $38 = (($36) + 4)|0; + $39 = $38; + HEAP32[$39>>2] = $35; + $40 = ((($0)) + 16|0); + $41 = $40; + $42 = $41; + $43 = HEAP32[$42>>2]|0; + $44 = (($41) + 4)|0; + $45 = $44; + $46 = HEAP32[$45>>2]|0; + $47 = ((($1)) + 16|0); + $48 = $47; + $49 = $48; + $50 = HEAP32[$49>>2]|0; + $51 = (($48) + 4)|0; + $52 = $51; + $53 = HEAP32[$52>>2]|0; + $54 = (_i64Add(($50|0),($53|0),($43|0),($46|0))|0); + $55 = tempRet0; + $56 = $40; + $57 = $56; + HEAP32[$57>>2] = $54; + $58 = (($56) + 4)|0; + $59 = $58; + HEAP32[$59>>2] = $55; + $60 = ((($0)) + 24|0); + $61 = $60; + $62 = $61; + $63 = HEAP32[$62>>2]|0; + $64 = (($61) + 4)|0; + $65 = $64; + $66 = HEAP32[$65>>2]|0; + $67 = ((($1)) + 24|0); + $68 = $67; + $69 = $68; + $70 = HEAP32[$69>>2]|0; + $71 = (($68) + 4)|0; + $72 = $71; + $73 = HEAP32[$72>>2]|0; + $74 = (_i64Add(($70|0),($73|0),($63|0),($66|0))|0); + $75 = tempRet0; + $76 = $60; + $77 = $76; + HEAP32[$77>>2] = $74; + $78 = (($76) + 4)|0; + $79 = $78; + HEAP32[$79>>2] = $75; + $80 = ((($0)) + 32|0); + $81 = $80; + $82 = $81; + $83 = HEAP32[$82>>2]|0; + $84 = (($81) + 4)|0; + $85 = $84; + $86 = HEAP32[$85>>2]|0; + $87 = ((($1)) + 32|0); + $88 = $87; + $89 = $88; + $90 = HEAP32[$89>>2]|0; + $91 = (($88) + 4)|0; + $92 = $91; + $93 = HEAP32[$92>>2]|0; + $94 = (_i64Add(($90|0),($93|0),($83|0),($86|0))|0); + $95 = tempRet0; + $96 = $80; + $97 = $96; + HEAP32[$97>>2] = $94; + $98 = (($96) + 4)|0; + $99 = $98; + HEAP32[$99>>2] = $95; + $100 = ((($0)) + 40|0); + $101 = $100; + $102 = $101; + $103 = HEAP32[$102>>2]|0; + $104 = (($101) + 4)|0; + $105 = $104; + $106 = HEAP32[$105>>2]|0; + $107 = ((($1)) + 40|0); + $108 = $107; + $109 = $108; + $110 = HEAP32[$109>>2]|0; + $111 = (($108) + 4)|0; + $112 = $111; + $113 = HEAP32[$112>>2]|0; + $114 = (_i64Add(($110|0),($113|0),($103|0),($106|0))|0); + $115 = tempRet0; + $116 = $100; + $117 = $116; + HEAP32[$117>>2] = $114; + $118 = (($116) + 4)|0; + $119 = $118; + HEAP32[$119>>2] = $115; + $120 = ((($0)) + 48|0); + $121 = $120; + $122 = $121; + $123 = HEAP32[$122>>2]|0; + $124 = (($121) + 4)|0; + $125 = $124; + $126 = HEAP32[$125>>2]|0; + $127 = ((($1)) + 48|0); + $128 = $127; + $129 = $128; + $130 = HEAP32[$129>>2]|0; + $131 = (($128) + 4)|0; + $132 = $131; + $133 = HEAP32[$132>>2]|0; + $134 = (_i64Add(($130|0),($133|0),($123|0),($126|0))|0); + $135 = tempRet0; + $136 = $120; + $137 = $136; + HEAP32[$137>>2] = $134; + $138 = (($136) + 4)|0; + $139 = $138; + HEAP32[$139>>2] = $135; + $140 = ((($0)) + 56|0); + $141 = $140; + $142 = $141; + $143 = HEAP32[$142>>2]|0; + $144 = (($141) + 4)|0; + $145 = $144; + $146 = HEAP32[$145>>2]|0; + $147 = ((($1)) + 56|0); + $148 = $147; + $149 = $148; + $150 = HEAP32[$149>>2]|0; + $151 = (($148) + 4)|0; + $152 = $151; + $153 = HEAP32[$152>>2]|0; + $154 = (_i64Add(($150|0),($153|0),($143|0),($146|0))|0); + $155 = tempRet0; + $156 = $140; + $157 = $156; + HEAP32[$157>>2] = $154; + $158 = (($156) + 4)|0; + $159 = $158; + HEAP32[$159>>2] = $155; + $160 = ((($0)) + 64|0); + $161 = $160; + $162 = $161; + $163 = HEAP32[$162>>2]|0; + $164 = (($161) + 4)|0; + $165 = $164; + $166 = HEAP32[$165>>2]|0; + $167 = ((($1)) + 64|0); + $168 = $167; + $169 = $168; + $170 = HEAP32[$169>>2]|0; + $171 = (($168) + 4)|0; + $172 = $171; + $173 = HEAP32[$172>>2]|0; + $174 = (_i64Add(($170|0),($173|0),($163|0),($166|0))|0); + $175 = tempRet0; + $176 = $160; + $177 = $176; + HEAP32[$177>>2] = $174; + $178 = (($176) + 4)|0; + $179 = $178; + HEAP32[$179>>2] = $175; + $180 = ((($0)) + 72|0); + $181 = $180; + $182 = $181; + $183 = HEAP32[$182>>2]|0; + $184 = (($181) + 4)|0; + $185 = $184; + $186 = HEAP32[$185>>2]|0; + $187 = ((($1)) + 72|0); + $188 = $187; + $189 = $188; + $190 = HEAP32[$189>>2]|0; + $191 = (($188) + 4)|0; + $192 = $191; + $193 = HEAP32[$192>>2]|0; + $194 = (_i64Add(($190|0),($193|0),($183|0),($186|0))|0); + $195 = tempRet0; + $196 = $180; + $197 = $196; + HEAP32[$197>>2] = $194; + $198 = (($196) + 4)|0; + $199 = $198; + HEAP32[$199>>2] = $195; + return; +} +function _fdifference($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; + var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; + var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; + var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = $1; + $3 = $2; + $4 = HEAP32[$3>>2]|0; + $5 = (($2) + 4)|0; + $6 = $5; + $7 = HEAP32[$6>>2]|0; + $8 = $0; + $9 = $8; + $10 = HEAP32[$9>>2]|0; + $11 = (($8) + 4)|0; + $12 = $11; + $13 = HEAP32[$12>>2]|0; + $14 = (_i64Subtract(($4|0),($7|0),($10|0),($13|0))|0); + $15 = tempRet0; + $16 = $0; + $17 = $16; + HEAP32[$17>>2] = $14; + $18 = (($16) + 4)|0; + $19 = $18; + HEAP32[$19>>2] = $15; + $20 = ((($1)) + 8|0); + $21 = $20; + $22 = $21; + $23 = HEAP32[$22>>2]|0; + $24 = (($21) + 4)|0; + $25 = $24; + $26 = HEAP32[$25>>2]|0; + $27 = ((($0)) + 8|0); + $28 = $27; + $29 = $28; + $30 = HEAP32[$29>>2]|0; + $31 = (($28) + 4)|0; + $32 = $31; + $33 = HEAP32[$32>>2]|0; + $34 = (_i64Subtract(($23|0),($26|0),($30|0),($33|0))|0); + $35 = tempRet0; + $36 = $27; + $37 = $36; + HEAP32[$37>>2] = $34; + $38 = (($36) + 4)|0; + $39 = $38; + HEAP32[$39>>2] = $35; + $40 = ((($1)) + 16|0); + $41 = $40; + $42 = $41; + $43 = HEAP32[$42>>2]|0; + $44 = (($41) + 4)|0; + $45 = $44; + $46 = HEAP32[$45>>2]|0; + $47 = ((($0)) + 16|0); + $48 = $47; + $49 = $48; + $50 = HEAP32[$49>>2]|0; + $51 = (($48) + 4)|0; + $52 = $51; + $53 = HEAP32[$52>>2]|0; + $54 = (_i64Subtract(($43|0),($46|0),($50|0),($53|0))|0); + $55 = tempRet0; + $56 = $47; + $57 = $56; + HEAP32[$57>>2] = $54; + $58 = (($56) + 4)|0; + $59 = $58; + HEAP32[$59>>2] = $55; + $60 = ((($1)) + 24|0); + $61 = $60; + $62 = $61; + $63 = HEAP32[$62>>2]|0; + $64 = (($61) + 4)|0; + $65 = $64; + $66 = HEAP32[$65>>2]|0; + $67 = ((($0)) + 24|0); + $68 = $67; + $69 = $68; + $70 = HEAP32[$69>>2]|0; + $71 = (($68) + 4)|0; + $72 = $71; + $73 = HEAP32[$72>>2]|0; + $74 = (_i64Subtract(($63|0),($66|0),($70|0),($73|0))|0); + $75 = tempRet0; + $76 = $67; + $77 = $76; + HEAP32[$77>>2] = $74; + $78 = (($76) + 4)|0; + $79 = $78; + HEAP32[$79>>2] = $75; + $80 = ((($1)) + 32|0); + $81 = $80; + $82 = $81; + $83 = HEAP32[$82>>2]|0; + $84 = (($81) + 4)|0; + $85 = $84; + $86 = HEAP32[$85>>2]|0; + $87 = ((($0)) + 32|0); + $88 = $87; + $89 = $88; + $90 = HEAP32[$89>>2]|0; + $91 = (($88) + 4)|0; + $92 = $91; + $93 = HEAP32[$92>>2]|0; + $94 = (_i64Subtract(($83|0),($86|0),($90|0),($93|0))|0); + $95 = tempRet0; + $96 = $87; + $97 = $96; + HEAP32[$97>>2] = $94; + $98 = (($96) + 4)|0; + $99 = $98; + HEAP32[$99>>2] = $95; + $100 = ((($1)) + 40|0); + $101 = $100; + $102 = $101; + $103 = HEAP32[$102>>2]|0; + $104 = (($101) + 4)|0; + $105 = $104; + $106 = HEAP32[$105>>2]|0; + $107 = ((($0)) + 40|0); + $108 = $107; + $109 = $108; + $110 = HEAP32[$109>>2]|0; + $111 = (($108) + 4)|0; + $112 = $111; + $113 = HEAP32[$112>>2]|0; + $114 = (_i64Subtract(($103|0),($106|0),($110|0),($113|0))|0); + $115 = tempRet0; + $116 = $107; + $117 = $116; + HEAP32[$117>>2] = $114; + $118 = (($116) + 4)|0; + $119 = $118; + HEAP32[$119>>2] = $115; + $120 = ((($1)) + 48|0); + $121 = $120; + $122 = $121; + $123 = HEAP32[$122>>2]|0; + $124 = (($121) + 4)|0; + $125 = $124; + $126 = HEAP32[$125>>2]|0; + $127 = ((($0)) + 48|0); + $128 = $127; + $129 = $128; + $130 = HEAP32[$129>>2]|0; + $131 = (($128) + 4)|0; + $132 = $131; + $133 = HEAP32[$132>>2]|0; + $134 = (_i64Subtract(($123|0),($126|0),($130|0),($133|0))|0); + $135 = tempRet0; + $136 = $127; + $137 = $136; + HEAP32[$137>>2] = $134; + $138 = (($136) + 4)|0; + $139 = $138; + HEAP32[$139>>2] = $135; + $140 = ((($1)) + 56|0); + $141 = $140; + $142 = $141; + $143 = HEAP32[$142>>2]|0; + $144 = (($141) + 4)|0; + $145 = $144; + $146 = HEAP32[$145>>2]|0; + $147 = ((($0)) + 56|0); + $148 = $147; + $149 = $148; + $150 = HEAP32[$149>>2]|0; + $151 = (($148) + 4)|0; + $152 = $151; + $153 = HEAP32[$152>>2]|0; + $154 = (_i64Subtract(($143|0),($146|0),($150|0),($153|0))|0); + $155 = tempRet0; + $156 = $147; + $157 = $156; + HEAP32[$157>>2] = $154; + $158 = (($156) + 4)|0; + $159 = $158; + HEAP32[$159>>2] = $155; + $160 = ((($1)) + 64|0); + $161 = $160; + $162 = $161; + $163 = HEAP32[$162>>2]|0; + $164 = (($161) + 4)|0; + $165 = $164; + $166 = HEAP32[$165>>2]|0; + $167 = ((($0)) + 64|0); + $168 = $167; + $169 = $168; + $170 = HEAP32[$169>>2]|0; + $171 = (($168) + 4)|0; + $172 = $171; + $173 = HEAP32[$172>>2]|0; + $174 = (_i64Subtract(($163|0),($166|0),($170|0),($173|0))|0); + $175 = tempRet0; + $176 = $167; + $177 = $176; + HEAP32[$177>>2] = $174; + $178 = (($176) + 4)|0; + $179 = $178; + HEAP32[$179>>2] = $175; + $180 = ((($1)) + 72|0); + $181 = $180; + $182 = $181; + $183 = HEAP32[$182>>2]|0; + $184 = (($181) + 4)|0; + $185 = $184; + $186 = HEAP32[$185>>2]|0; + $187 = ((($0)) + 72|0); + $188 = $187; + $189 = $188; + $190 = HEAP32[$189>>2]|0; + $191 = (($188) + 4)|0; + $192 = $191; + $193 = HEAP32[$192>>2]|0; + $194 = (_i64Subtract(($183|0),($186|0),($190|0),($193|0))|0); + $195 = tempRet0; + $196 = $187; + $197 = $196; + HEAP32[$197>>2] = $194; + $198 = (($196) + 4)|0; + $199 = $198; + HEAP32[$199>>2] = $195; + return; +} +function _fscalar_product($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; + var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; + var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; + var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = $1; + $3 = $2; + $4 = HEAP32[$3>>2]|0; + $5 = (($2) + 4)|0; + $6 = $5; + $7 = HEAP32[$6>>2]|0; + $8 = (___muldi3(($4|0),($7|0),121665,0)|0); + $9 = tempRet0; + $10 = $0; + $11 = $10; + HEAP32[$11>>2] = $8; + $12 = (($10) + 4)|0; + $13 = $12; + HEAP32[$13>>2] = $9; + $14 = ((($1)) + 8|0); + $15 = $14; + $16 = $15; + $17 = HEAP32[$16>>2]|0; + $18 = (($15) + 4)|0; + $19 = $18; + $20 = HEAP32[$19>>2]|0; + $21 = (___muldi3(($17|0),($20|0),121665,0)|0); + $22 = tempRet0; + $23 = ((($0)) + 8|0); + $24 = $23; + $25 = $24; + HEAP32[$25>>2] = $21; + $26 = (($24) + 4)|0; + $27 = $26; + HEAP32[$27>>2] = $22; + $28 = ((($1)) + 16|0); + $29 = $28; + $30 = $29; + $31 = HEAP32[$30>>2]|0; + $32 = (($29) + 4)|0; + $33 = $32; + $34 = HEAP32[$33>>2]|0; + $35 = (___muldi3(($31|0),($34|0),121665,0)|0); + $36 = tempRet0; + $37 = ((($0)) + 16|0); + $38 = $37; + $39 = $38; + HEAP32[$39>>2] = $35; + $40 = (($38) + 4)|0; + $41 = $40; + HEAP32[$41>>2] = $36; + $42 = ((($1)) + 24|0); + $43 = $42; + $44 = $43; + $45 = HEAP32[$44>>2]|0; + $46 = (($43) + 4)|0; + $47 = $46; + $48 = HEAP32[$47>>2]|0; + $49 = (___muldi3(($45|0),($48|0),121665,0)|0); + $50 = tempRet0; + $51 = ((($0)) + 24|0); + $52 = $51; + $53 = $52; + HEAP32[$53>>2] = $49; + $54 = (($52) + 4)|0; + $55 = $54; + HEAP32[$55>>2] = $50; + $56 = ((($1)) + 32|0); + $57 = $56; + $58 = $57; + $59 = HEAP32[$58>>2]|0; + $60 = (($57) + 4)|0; + $61 = $60; + $62 = HEAP32[$61>>2]|0; + $63 = (___muldi3(($59|0),($62|0),121665,0)|0); + $64 = tempRet0; + $65 = ((($0)) + 32|0); + $66 = $65; + $67 = $66; + HEAP32[$67>>2] = $63; + $68 = (($66) + 4)|0; + $69 = $68; + HEAP32[$69>>2] = $64; + $70 = ((($1)) + 40|0); + $71 = $70; + $72 = $71; + $73 = HEAP32[$72>>2]|0; + $74 = (($71) + 4)|0; + $75 = $74; + $76 = HEAP32[$75>>2]|0; + $77 = (___muldi3(($73|0),($76|0),121665,0)|0); + $78 = tempRet0; + $79 = ((($0)) + 40|0); + $80 = $79; + $81 = $80; + HEAP32[$81>>2] = $77; + $82 = (($80) + 4)|0; + $83 = $82; + HEAP32[$83>>2] = $78; + $84 = ((($1)) + 48|0); + $85 = $84; + $86 = $85; + $87 = HEAP32[$86>>2]|0; + $88 = (($85) + 4)|0; + $89 = $88; + $90 = HEAP32[$89>>2]|0; + $91 = (___muldi3(($87|0),($90|0),121665,0)|0); + $92 = tempRet0; + $93 = ((($0)) + 48|0); + $94 = $93; + $95 = $94; + HEAP32[$95>>2] = $91; + $96 = (($94) + 4)|0; + $97 = $96; + HEAP32[$97>>2] = $92; + $98 = ((($1)) + 56|0); + $99 = $98; + $100 = $99; + $101 = HEAP32[$100>>2]|0; + $102 = (($99) + 4)|0; + $103 = $102; + $104 = HEAP32[$103>>2]|0; + $105 = (___muldi3(($101|0),($104|0),121665,0)|0); + $106 = tempRet0; + $107 = ((($0)) + 56|0); + $108 = $107; + $109 = $108; + HEAP32[$109>>2] = $105; + $110 = (($108) + 4)|0; + $111 = $110; + HEAP32[$111>>2] = $106; + $112 = ((($1)) + 64|0); + $113 = $112; + $114 = $113; + $115 = HEAP32[$114>>2]|0; + $116 = (($113) + 4)|0; + $117 = $116; + $118 = HEAP32[$117>>2]|0; + $119 = (___muldi3(($115|0),($118|0),121665,0)|0); + $120 = tempRet0; + $121 = ((($0)) + 64|0); + $122 = $121; + $123 = $122; + HEAP32[$123>>2] = $119; + $124 = (($122) + 4)|0; + $125 = $124; + HEAP32[$125>>2] = $120; + $126 = ((($1)) + 72|0); + $127 = $126; + $128 = $127; + $129 = HEAP32[$128>>2]|0; + $130 = (($127) + 4)|0; + $131 = $130; + $132 = HEAP32[$131>>2]|0; + $133 = (___muldi3(($129|0),($132|0),121665,0)|0); + $134 = tempRet0; + $135 = ((($0)) + 72|0); + $136 = $135; + $137 = $136; + HEAP32[$137>>2] = $133; + $138 = (($136) + 4)|0; + $139 = $138; + HEAP32[$139>>2] = $134; + return; +} +function _crypto_sign_ed25519_ref10_fe_0($0) { + $0 = $0|0; + var dest = 0, label = 0, sp = 0, stop = 0; + sp = STACKTOP; + dest=$0; stop=dest+40|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); + return; +} +function _crypto_sign_ed25519_ref10_fe_1($0) { + $0 = $0|0; + var $1 = 0, dest = 0, label = 0, sp = 0, stop = 0; + sp = STACKTOP; + HEAP32[$0>>2] = 1; + $1 = ((($0)) + 4|0); + dest=$1; stop=dest+36|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); + return; +} +function _crypto_sign_ed25519_ref10_fe_add($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0; + var $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0; + var $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $3 = HEAP32[$1>>2]|0; + $4 = ((($1)) + 4|0); + $5 = HEAP32[$4>>2]|0; + $6 = ((($1)) + 8|0); + $7 = HEAP32[$6>>2]|0; + $8 = ((($1)) + 12|0); + $9 = HEAP32[$8>>2]|0; + $10 = ((($1)) + 16|0); + $11 = HEAP32[$10>>2]|0; + $12 = ((($1)) + 20|0); + $13 = HEAP32[$12>>2]|0; + $14 = ((($1)) + 24|0); + $15 = HEAP32[$14>>2]|0; + $16 = ((($1)) + 28|0); + $17 = HEAP32[$16>>2]|0; + $18 = ((($1)) + 32|0); + $19 = HEAP32[$18>>2]|0; + $20 = ((($1)) + 36|0); + $21 = HEAP32[$20>>2]|0; + $22 = HEAP32[$2>>2]|0; + $23 = ((($2)) + 4|0); + $24 = HEAP32[$23>>2]|0; + $25 = ((($2)) + 8|0); + $26 = HEAP32[$25>>2]|0; + $27 = ((($2)) + 12|0); + $28 = HEAP32[$27>>2]|0; + $29 = ((($2)) + 16|0); + $30 = HEAP32[$29>>2]|0; + $31 = ((($2)) + 20|0); + $32 = HEAP32[$31>>2]|0; + $33 = ((($2)) + 24|0); + $34 = HEAP32[$33>>2]|0; + $35 = ((($2)) + 28|0); + $36 = HEAP32[$35>>2]|0; + $37 = ((($2)) + 32|0); + $38 = HEAP32[$37>>2]|0; + $39 = ((($2)) + 36|0); + $40 = HEAP32[$39>>2]|0; + $41 = (($22) + ($3))|0; + $42 = (($24) + ($5))|0; + $43 = (($26) + ($7))|0; + $44 = (($28) + ($9))|0; + $45 = (($30) + ($11))|0; + $46 = (($32) + ($13))|0; + $47 = (($34) + ($15))|0; + $48 = (($36) + ($17))|0; + $49 = (($38) + ($19))|0; + $50 = (($40) + ($21))|0; + HEAP32[$0>>2] = $41; + $51 = ((($0)) + 4|0); + HEAP32[$51>>2] = $42; + $52 = ((($0)) + 8|0); + HEAP32[$52>>2] = $43; + $53 = ((($0)) + 12|0); + HEAP32[$53>>2] = $44; + $54 = ((($0)) + 16|0); + HEAP32[$54>>2] = $45; + $55 = ((($0)) + 20|0); + HEAP32[$55>>2] = $46; + $56 = ((($0)) + 24|0); + HEAP32[$56>>2] = $47; + $57 = ((($0)) + 28|0); + HEAP32[$57>>2] = $48; + $58 = ((($0)) + 32|0); + HEAP32[$58>>2] = $49; + $59 = ((($0)) + 36|0); + HEAP32[$59>>2] = $50; + return; +} +function _crypto_sign_ed25519_ref10_fe_cmov($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0; + var $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0; + var $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0; + var $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $3 = HEAP32[$0>>2]|0; + $4 = ((($0)) + 4|0); + $5 = HEAP32[$4>>2]|0; + $6 = ((($0)) + 8|0); + $7 = HEAP32[$6>>2]|0; + $8 = ((($0)) + 12|0); + $9 = HEAP32[$8>>2]|0; + $10 = ((($0)) + 16|0); + $11 = HEAP32[$10>>2]|0; + $12 = ((($0)) + 20|0); + $13 = HEAP32[$12>>2]|0; + $14 = ((($0)) + 24|0); + $15 = HEAP32[$14>>2]|0; + $16 = ((($0)) + 28|0); + $17 = HEAP32[$16>>2]|0; + $18 = ((($0)) + 32|0); + $19 = HEAP32[$18>>2]|0; + $20 = ((($0)) + 36|0); + $21 = HEAP32[$20>>2]|0; + $22 = HEAP32[$1>>2]|0; + $23 = ((($1)) + 4|0); + $24 = HEAP32[$23>>2]|0; + $25 = ((($1)) + 8|0); + $26 = HEAP32[$25>>2]|0; + $27 = ((($1)) + 12|0); + $28 = HEAP32[$27>>2]|0; + $29 = ((($1)) + 16|0); + $30 = HEAP32[$29>>2]|0; + $31 = ((($1)) + 20|0); + $32 = HEAP32[$31>>2]|0; + $33 = ((($1)) + 24|0); + $34 = HEAP32[$33>>2]|0; + $35 = ((($1)) + 28|0); + $36 = HEAP32[$35>>2]|0; + $37 = ((($1)) + 32|0); + $38 = HEAP32[$37>>2]|0; + $39 = ((($1)) + 36|0); + $40 = HEAP32[$39>>2]|0; + $41 = $22 ^ $3; + $42 = $24 ^ $5; + $43 = $26 ^ $7; + $44 = $28 ^ $9; + $45 = $30 ^ $11; + $46 = $32 ^ $13; + $47 = $34 ^ $15; + $48 = $36 ^ $17; + $49 = $38 ^ $19; + $50 = $40 ^ $21; + $51 = (0 - ($2))|0; + $52 = $41 & $51; + $53 = $42 & $51; + $54 = $43 & $51; + $55 = $44 & $51; + $56 = $45 & $51; + $57 = $46 & $51; + $58 = $47 & $51; + $59 = $48 & $51; + $60 = $49 & $51; + $61 = $50 & $51; + $62 = $52 ^ $3; + HEAP32[$0>>2] = $62; + $63 = $53 ^ $5; + HEAP32[$4>>2] = $63; + $64 = $54 ^ $7; + HEAP32[$6>>2] = $64; + $65 = $55 ^ $9; + HEAP32[$8>>2] = $65; + $66 = $56 ^ $11; + HEAP32[$10>>2] = $66; + $67 = $57 ^ $13; + HEAP32[$12>>2] = $67; + $68 = $58 ^ $15; + HEAP32[$14>>2] = $68; + $69 = $59 ^ $17; + HEAP32[$16>>2] = $69; + $70 = $60 ^ $19; + HEAP32[$18>>2] = $70; + $71 = $61 ^ $21; + HEAP32[$20>>2] = $71; + return; +} +function _crypto_sign_ed25519_ref10_fe_copy($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = HEAP32[$1>>2]|0; + $3 = ((($1)) + 4|0); + $4 = HEAP32[$3>>2]|0; + $5 = ((($1)) + 8|0); + $6 = HEAP32[$5>>2]|0; + $7 = ((($1)) + 12|0); + $8 = HEAP32[$7>>2]|0; + $9 = ((($1)) + 16|0); + $10 = HEAP32[$9>>2]|0; + $11 = ((($1)) + 20|0); + $12 = HEAP32[$11>>2]|0; + $13 = ((($1)) + 24|0); + $14 = HEAP32[$13>>2]|0; + $15 = ((($1)) + 28|0); + $16 = HEAP32[$15>>2]|0; + $17 = ((($1)) + 32|0); + $18 = HEAP32[$17>>2]|0; + $19 = ((($1)) + 36|0); + $20 = HEAP32[$19>>2]|0; + HEAP32[$0>>2] = $2; + $21 = ((($0)) + 4|0); + HEAP32[$21>>2] = $4; + $22 = ((($0)) + 8|0); + HEAP32[$22>>2] = $6; + $23 = ((($0)) + 12|0); + HEAP32[$23>>2] = $8; + $24 = ((($0)) + 16|0); + HEAP32[$24>>2] = $10; + $25 = ((($0)) + 20|0); + HEAP32[$25>>2] = $12; + $26 = ((($0)) + 24|0); + HEAP32[$26>>2] = $14; + $27 = ((($0)) + 28|0); + HEAP32[$27>>2] = $16; + $28 = ((($0)) + 32|0); + HEAP32[$28>>2] = $18; + $29 = ((($0)) + 36|0); + HEAP32[$29>>2] = $20; + return; +} +function _crypto_sign_ed25519_ref10_fe_frombytes($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; + var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; + var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; + var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = (_load_4($1)|0); + $3 = tempRet0; + $4 = ((($1)) + 4|0); + $5 = (_load_3($4)|0); + $6 = tempRet0; + $7 = (_bitshift64Shl(($5|0),($6|0),6)|0); + $8 = tempRet0; + $9 = ((($1)) + 7|0); + $10 = (_load_3($9)|0); + $11 = tempRet0; + $12 = (_bitshift64Shl(($10|0),($11|0),5)|0); + $13 = tempRet0; + $14 = ((($1)) + 10|0); + $15 = (_load_3($14)|0); + $16 = tempRet0; + $17 = (_bitshift64Shl(($15|0),($16|0),3)|0); + $18 = tempRet0; + $19 = ((($1)) + 13|0); + $20 = (_load_3($19)|0); + $21 = tempRet0; + $22 = (_bitshift64Shl(($20|0),($21|0),2)|0); + $23 = tempRet0; + $24 = ((($1)) + 16|0); + $25 = (_load_4($24)|0); + $26 = tempRet0; + $27 = ((($1)) + 20|0); + $28 = (_load_3($27)|0); + $29 = tempRet0; + $30 = (_bitshift64Shl(($28|0),($29|0),7)|0); + $31 = tempRet0; + $32 = ((($1)) + 23|0); + $33 = (_load_3($32)|0); + $34 = tempRet0; + $35 = (_bitshift64Shl(($33|0),($34|0),5)|0); + $36 = tempRet0; + $37 = ((($1)) + 26|0); + $38 = (_load_3($37)|0); + $39 = tempRet0; + $40 = (_bitshift64Shl(($38|0),($39|0),4)|0); + $41 = tempRet0; + $42 = ((($1)) + 29|0); + $43 = (_load_3($42)|0); + $44 = tempRet0; + $45 = (_bitshift64Shl(($43|0),($44|0),2)|0); + $46 = tempRet0; + $47 = $45 & 33554428; + $48 = (_i64Add(($47|0),0,16777216,0)|0); + $49 = tempRet0; + $50 = (_bitshift64Lshr(($48|0),($49|0),25)|0); + $51 = tempRet0; + $52 = (_i64Subtract(0,0,($50|0),($51|0))|0); + $53 = tempRet0; + $54 = $52 & 19; + $55 = (_i64Add(($54|0),0,($2|0),($3|0))|0); + $56 = tempRet0; + $57 = (_bitshift64Shl(($50|0),($51|0),25)|0); + $58 = tempRet0; + $59 = (_i64Add(($7|0),($8|0),16777216,0)|0); + $60 = tempRet0; + $61 = (_bitshift64Ashr(($59|0),($60|0),25)|0); + $62 = tempRet0; + $63 = (_i64Add(($61|0),($62|0),($12|0),($13|0))|0); + $64 = tempRet0; + $65 = (_bitshift64Shl(($61|0),($62|0),25)|0); + $66 = tempRet0; + $67 = (_i64Subtract(($7|0),($8|0),($65|0),($66|0))|0); + $68 = tempRet0; + $69 = (_i64Add(($17|0),($18|0),16777216,0)|0); + $70 = tempRet0; + $71 = (_bitshift64Ashr(($69|0),($70|0),25)|0); + $72 = tempRet0; + $73 = (_i64Add(($71|0),($72|0),($22|0),($23|0))|0); + $74 = tempRet0; + $75 = (_bitshift64Shl(($71|0),($72|0),25)|0); + $76 = tempRet0; + $77 = (_i64Subtract(($17|0),($18|0),($75|0),($76|0))|0); + $78 = tempRet0; + $79 = (_i64Add(($25|0),($26|0),16777216,0)|0); + $80 = tempRet0; + $81 = (_bitshift64Ashr(($79|0),($80|0),25)|0); + $82 = tempRet0; + $83 = (_i64Add(($30|0),($31|0),($81|0),($82|0))|0); + $84 = tempRet0; + $85 = (_bitshift64Shl(($81|0),($82|0),25)|0); + $86 = tempRet0; + $87 = (_i64Subtract(($25|0),($26|0),($85|0),($86|0))|0); + $88 = tempRet0; + $89 = (_i64Add(($35|0),($36|0),16777216,0)|0); + $90 = tempRet0; + $91 = (_bitshift64Ashr(($89|0),($90|0),25)|0); + $92 = tempRet0; + $93 = (_i64Add(($91|0),($92|0),($40|0),($41|0))|0); + $94 = tempRet0; + $95 = (_bitshift64Shl(($91|0),($92|0),25)|0); + $96 = tempRet0; + $97 = (_i64Add(($55|0),($56|0),33554432,0)|0); + $98 = tempRet0; + $99 = (_bitshift64Ashr(($97|0),($98|0),26)|0); + $100 = tempRet0; + $101 = (_i64Add(($67|0),($68|0),($99|0),($100|0))|0); + $102 = tempRet0; + $103 = (_bitshift64Shl(($99|0),($100|0),26)|0); + $104 = tempRet0; + $105 = (_i64Subtract(($55|0),($56|0),($103|0),($104|0))|0); + $106 = tempRet0; + $107 = (_i64Add(($63|0),($64|0),33554432,0)|0); + $108 = tempRet0; + $109 = (_bitshift64Ashr(($107|0),($108|0),26)|0); + $110 = tempRet0; + $111 = (_i64Add(($77|0),($78|0),($109|0),($110|0))|0); + $112 = tempRet0; + $113 = (_bitshift64Shl(($109|0),($110|0),26)|0); + $114 = tempRet0; + $115 = (_i64Subtract(($63|0),($64|0),($113|0),($114|0))|0); + $116 = tempRet0; + $117 = (_i64Add(($73|0),($74|0),33554432,0)|0); + $118 = tempRet0; + $119 = (_bitshift64Ashr(($117|0),($118|0),26)|0); + $120 = tempRet0; + $121 = (_i64Add(($87|0),($88|0),($119|0),($120|0))|0); + $122 = tempRet0; + $123 = (_bitshift64Shl(($119|0),($120|0),26)|0); + $124 = tempRet0; + $125 = (_i64Subtract(($73|0),($74|0),($123|0),($124|0))|0); + $126 = tempRet0; + $127 = (_i64Add(($83|0),($84|0),33554432,0)|0); + $128 = tempRet0; + $129 = (_bitshift64Ashr(($127|0),($128|0),26)|0); + $130 = tempRet0; + $131 = (_i64Add(($129|0),($130|0),($35|0),($36|0))|0); + $132 = tempRet0; + $133 = (_i64Subtract(($131|0),($132|0),($95|0),($96|0))|0); + $134 = tempRet0; + $135 = (_bitshift64Shl(($129|0),($130|0),26)|0); + $136 = tempRet0; + $137 = (_i64Subtract(($83|0),($84|0),($135|0),($136|0))|0); + $138 = tempRet0; + $139 = (_i64Add(($93|0),($94|0),33554432,0)|0); + $140 = tempRet0; + $141 = (_bitshift64Ashr(($139|0),($140|0),26)|0); + $142 = tempRet0; + $143 = (_i64Add(($141|0),($142|0),($47|0),0)|0); + $144 = tempRet0; + $145 = (_i64Subtract(($143|0),($144|0),($57|0),($58|0))|0); + $146 = tempRet0; + $147 = (_bitshift64Shl(($141|0),($142|0),26)|0); + $148 = tempRet0; + $149 = (_i64Subtract(($93|0),($94|0),($147|0),($148|0))|0); + $150 = tempRet0; + HEAP32[$0>>2] = $105; + $151 = ((($0)) + 4|0); + HEAP32[$151>>2] = $101; + $152 = ((($0)) + 8|0); + HEAP32[$152>>2] = $115; + $153 = ((($0)) + 12|0); + HEAP32[$153>>2] = $111; + $154 = ((($0)) + 16|0); + HEAP32[$154>>2] = $125; + $155 = ((($0)) + 20|0); + HEAP32[$155>>2] = $121; + $156 = ((($0)) + 24|0); + HEAP32[$156>>2] = $137; + $157 = ((($0)) + 28|0); + HEAP32[$157>>2] = $133; + $158 = ((($0)) + 32|0); + HEAP32[$158>>2] = $149; + $159 = ((($0)) + 36|0); + HEAP32[$159>>2] = $145; + return; +} +function _load_4($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; + var $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = ((($0)) + 1|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = (_bitshift64Shl(($5|0),0,8)|0); + $7 = tempRet0; + $8 = $6 | $2; + $9 = ((($0)) + 2|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = (_bitshift64Shl(($11|0),0,16)|0); + $13 = tempRet0; + $14 = $8 | $12; + $15 = $7 | $13; + $16 = ((($0)) + 3|0); + $17 = HEAP8[$16>>0]|0; + $18 = $17&255; + $19 = (_bitshift64Shl(($18|0),0,24)|0); + $20 = tempRet0; + $21 = $14 | $19; + $22 = $15 | $20; + tempRet0 = ($22); + return ($21|0); +} +function _load_3($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = ((($0)) + 1|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = (_bitshift64Shl(($5|0),0,8)|0); + $7 = tempRet0; + $8 = $6 | $2; + $9 = ((($0)) + 2|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = (_bitshift64Shl(($11|0),0,16)|0); + $13 = tempRet0; + $14 = $8 | $12; + $15 = $7 | $13; + tempRet0 = ($15); + return ($14|0); +} +function _crypto_sign_ed25519_ref10_fe_invert($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$728 = 0, $$827 = 0, $$926 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $exitcond = 0, $exitcond34 = 0, $exitcond35 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 160|0; + $2 = sp + 120|0; + $3 = sp + 80|0; + $4 = sp + 40|0; + $5 = sp; + _crypto_sign_ed25519_ref10_fe_sq($2,$1); + _crypto_sign_ed25519_ref10_fe_sq($3,$2); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_mul($3,$1,$3); + _crypto_sign_ed25519_ref10_fe_mul($2,$2,$3); + _crypto_sign_ed25519_ref10_fe_sq($4,$2); + _crypto_sign_ed25519_ref10_fe_mul($3,$3,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$3); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_mul($3,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($4,$3); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_mul($4,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($5,$4); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_mul($4,$5,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_mul($3,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($4,$3); + $$728 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + $6 = (($$728) + 1)|0; + $exitcond35 = ($6|0)==(50); + if ($exitcond35) { + break; + } else { + $$728 = $6; + } + } + _crypto_sign_ed25519_ref10_fe_mul($4,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($5,$4); + $$827 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + $7 = (($$827) + 1)|0; + $exitcond34 = ($7|0)==(100); + if ($exitcond34) { + break; + } else { + $$827 = $7; + } + } + _crypto_sign_ed25519_ref10_fe_mul($4,$5,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + $$926 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + $8 = (($$926) + 1)|0; + $exitcond = ($8|0)==(50); + if ($exitcond) { + break; + } else { + $$926 = $8; + } + } + _crypto_sign_ed25519_ref10_fe_mul($3,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_mul($0,$3,$2); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_isnegative($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 32|0; + $1 = sp; + _crypto_sign_ed25519_ref10_fe_tobytes($1,$0); + $2 = HEAP8[$1>>0]|0; + $3 = $2 & 1; + $4 = $3&255; + STACKTOP = sp;return ($4|0); +} +function _crypto_sign_ed25519_ref10_fe_isnonzero($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 32|0; + $1 = sp; + _crypto_sign_ed25519_ref10_fe_tobytes($1,$0); + $2 = (_crypto_verify_32_ref($1,33460)|0); + STACKTOP = sp;return ($2|0); +} +function _crypto_sign_ed25519_ref10_fe_mul($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0; + var $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0; + var $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0; + var $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0; + var $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0; + var $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0; + var $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0; + var $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0; + var $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0; + var $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0; + var $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0; + var $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0; + var $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0; + var $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0; + var $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0; + var $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0; + var $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0; + var $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0; + var $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0; + var $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0; + var $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0; + var $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0; + var $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0; + var $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0; + var $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0; + var $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0; + var $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $3 = HEAP32[$1>>2]|0; + $4 = ((($1)) + 4|0); + $5 = HEAP32[$4>>2]|0; + $6 = ((($1)) + 8|0); + $7 = HEAP32[$6>>2]|0; + $8 = ((($1)) + 12|0); + $9 = HEAP32[$8>>2]|0; + $10 = ((($1)) + 16|0); + $11 = HEAP32[$10>>2]|0; + $12 = ((($1)) + 20|0); + $13 = HEAP32[$12>>2]|0; + $14 = ((($1)) + 24|0); + $15 = HEAP32[$14>>2]|0; + $16 = ((($1)) + 28|0); + $17 = HEAP32[$16>>2]|0; + $18 = ((($1)) + 32|0); + $19 = HEAP32[$18>>2]|0; + $20 = ((($1)) + 36|0); + $21 = HEAP32[$20>>2]|0; + $22 = HEAP32[$2>>2]|0; + $23 = ((($2)) + 4|0); + $24 = HEAP32[$23>>2]|0; + $25 = ((($2)) + 8|0); + $26 = HEAP32[$25>>2]|0; + $27 = ((($2)) + 12|0); + $28 = HEAP32[$27>>2]|0; + $29 = ((($2)) + 16|0); + $30 = HEAP32[$29>>2]|0; + $31 = ((($2)) + 20|0); + $32 = HEAP32[$31>>2]|0; + $33 = ((($2)) + 24|0); + $34 = HEAP32[$33>>2]|0; + $35 = ((($2)) + 28|0); + $36 = HEAP32[$35>>2]|0; + $37 = ((($2)) + 32|0); + $38 = HEAP32[$37>>2]|0; + $39 = ((($2)) + 36|0); + $40 = HEAP32[$39>>2]|0; + $41 = ($24*19)|0; + $42 = ($26*19)|0; + $43 = ($28*19)|0; + $44 = ($30*19)|0; + $45 = ($32*19)|0; + $46 = ($34*19)|0; + $47 = ($36*19)|0; + $48 = ($38*19)|0; + $49 = ($40*19)|0; + $50 = $5 << 1; + $51 = $9 << 1; + $52 = $13 << 1; + $53 = $17 << 1; + $54 = $21 << 1; + $55 = ($3|0)<(0); + $56 = $55 << 31 >> 31; + $57 = ($22|0)<(0); + $58 = $57 << 31 >> 31; + $59 = (___muldi3(($22|0),($58|0),($3|0),($56|0))|0); + $60 = tempRet0; + $61 = ($24|0)<(0); + $62 = $61 << 31 >> 31; + $63 = (___muldi3(($24|0),($62|0),($3|0),($56|0))|0); + $64 = tempRet0; + $65 = ($26|0)<(0); + $66 = $65 << 31 >> 31; + $67 = (___muldi3(($26|0),($66|0),($3|0),($56|0))|0); + $68 = tempRet0; + $69 = ($28|0)<(0); + $70 = $69 << 31 >> 31; + $71 = (___muldi3(($28|0),($70|0),($3|0),($56|0))|0); + $72 = tempRet0; + $73 = ($30|0)<(0); + $74 = $73 << 31 >> 31; + $75 = (___muldi3(($30|0),($74|0),($3|0),($56|0))|0); + $76 = tempRet0; + $77 = ($32|0)<(0); + $78 = $77 << 31 >> 31; + $79 = (___muldi3(($32|0),($78|0),($3|0),($56|0))|0); + $80 = tempRet0; + $81 = ($34|0)<(0); + $82 = $81 << 31 >> 31; + $83 = (___muldi3(($34|0),($82|0),($3|0),($56|0))|0); + $84 = tempRet0; + $85 = ($36|0)<(0); + $86 = $85 << 31 >> 31; + $87 = (___muldi3(($36|0),($86|0),($3|0),($56|0))|0); + $88 = tempRet0; + $89 = ($38|0)<(0); + $90 = $89 << 31 >> 31; + $91 = (___muldi3(($38|0),($90|0),($3|0),($56|0))|0); + $92 = tempRet0; + $93 = ($40|0)<(0); + $94 = $93 << 31 >> 31; + $95 = (___muldi3(($40|0),($94|0),($3|0),($56|0))|0); + $96 = tempRet0; + $97 = ($5|0)<(0); + $98 = $97 << 31 >> 31; + $99 = (___muldi3(($22|0),($58|0),($5|0),($98|0))|0); + $100 = tempRet0; + $101 = ($50|0)<(0); + $102 = $101 << 31 >> 31; + $103 = (___muldi3(($24|0),($62|0),($50|0),($102|0))|0); + $104 = tempRet0; + $105 = (___muldi3(($26|0),($66|0),($5|0),($98|0))|0); + $106 = tempRet0; + $107 = (___muldi3(($28|0),($70|0),($50|0),($102|0))|0); + $108 = tempRet0; + $109 = (___muldi3(($30|0),($74|0),($5|0),($98|0))|0); + $110 = tempRet0; + $111 = (___muldi3(($32|0),($78|0),($50|0),($102|0))|0); + $112 = tempRet0; + $113 = (___muldi3(($34|0),($82|0),($5|0),($98|0))|0); + $114 = tempRet0; + $115 = (___muldi3(($36|0),($86|0),($50|0),($102|0))|0); + $116 = tempRet0; + $117 = (___muldi3(($38|0),($90|0),($5|0),($98|0))|0); + $118 = tempRet0; + $119 = ($49|0)<(0); + $120 = $119 << 31 >> 31; + $121 = (___muldi3(($49|0),($120|0),($50|0),($102|0))|0); + $122 = tempRet0; + $123 = ($7|0)<(0); + $124 = $123 << 31 >> 31; + $125 = (___muldi3(($22|0),($58|0),($7|0),($124|0))|0); + $126 = tempRet0; + $127 = (___muldi3(($24|0),($62|0),($7|0),($124|0))|0); + $128 = tempRet0; + $129 = (___muldi3(($26|0),($66|0),($7|0),($124|0))|0); + $130 = tempRet0; + $131 = (___muldi3(($28|0),($70|0),($7|0),($124|0))|0); + $132 = tempRet0; + $133 = (___muldi3(($30|0),($74|0),($7|0),($124|0))|0); + $134 = tempRet0; + $135 = (___muldi3(($32|0),($78|0),($7|0),($124|0))|0); + $136 = tempRet0; + $137 = (___muldi3(($34|0),($82|0),($7|0),($124|0))|0); + $138 = tempRet0; + $139 = (___muldi3(($36|0),($86|0),($7|0),($124|0))|0); + $140 = tempRet0; + $141 = ($48|0)<(0); + $142 = $141 << 31 >> 31; + $143 = (___muldi3(($48|0),($142|0),($7|0),($124|0))|0); + $144 = tempRet0; + $145 = (___muldi3(($49|0),($120|0),($7|0),($124|0))|0); + $146 = tempRet0; + $147 = ($9|0)<(0); + $148 = $147 << 31 >> 31; + $149 = (___muldi3(($22|0),($58|0),($9|0),($148|0))|0); + $150 = tempRet0; + $151 = ($51|0)<(0); + $152 = $151 << 31 >> 31; + $153 = (___muldi3(($24|0),($62|0),($51|0),($152|0))|0); + $154 = tempRet0; + $155 = (___muldi3(($26|0),($66|0),($9|0),($148|0))|0); + $156 = tempRet0; + $157 = (___muldi3(($28|0),($70|0),($51|0),($152|0))|0); + $158 = tempRet0; + $159 = (___muldi3(($30|0),($74|0),($9|0),($148|0))|0); + $160 = tempRet0; + $161 = (___muldi3(($32|0),($78|0),($51|0),($152|0))|0); + $162 = tempRet0; + $163 = (___muldi3(($34|0),($82|0),($9|0),($148|0))|0); + $164 = tempRet0; + $165 = ($47|0)<(0); + $166 = $165 << 31 >> 31; + $167 = (___muldi3(($47|0),($166|0),($51|0),($152|0))|0); + $168 = tempRet0; + $169 = (___muldi3(($48|0),($142|0),($9|0),($148|0))|0); + $170 = tempRet0; + $171 = (___muldi3(($49|0),($120|0),($51|0),($152|0))|0); + $172 = tempRet0; + $173 = ($11|0)<(0); + $174 = $173 << 31 >> 31; + $175 = (___muldi3(($22|0),($58|0),($11|0),($174|0))|0); + $176 = tempRet0; + $177 = (___muldi3(($24|0),($62|0),($11|0),($174|0))|0); + $178 = tempRet0; + $179 = (___muldi3(($26|0),($66|0),($11|0),($174|0))|0); + $180 = tempRet0; + $181 = (___muldi3(($28|0),($70|0),($11|0),($174|0))|0); + $182 = tempRet0; + $183 = (___muldi3(($30|0),($74|0),($11|0),($174|0))|0); + $184 = tempRet0; + $185 = (___muldi3(($32|0),($78|0),($11|0),($174|0))|0); + $186 = tempRet0; + $187 = ($46|0)<(0); + $188 = $187 << 31 >> 31; + $189 = (___muldi3(($46|0),($188|0),($11|0),($174|0))|0); + $190 = tempRet0; + $191 = (___muldi3(($47|0),($166|0),($11|0),($174|0))|0); + $192 = tempRet0; + $193 = (___muldi3(($48|0),($142|0),($11|0),($174|0))|0); + $194 = tempRet0; + $195 = (___muldi3(($49|0),($120|0),($11|0),($174|0))|0); + $196 = tempRet0; + $197 = ($13|0)<(0); + $198 = $197 << 31 >> 31; + $199 = (___muldi3(($22|0),($58|0),($13|0),($198|0))|0); + $200 = tempRet0; + $201 = ($52|0)<(0); + $202 = $201 << 31 >> 31; + $203 = (___muldi3(($24|0),($62|0),($52|0),($202|0))|0); + $204 = tempRet0; + $205 = (___muldi3(($26|0),($66|0),($13|0),($198|0))|0); + $206 = tempRet0; + $207 = (___muldi3(($28|0),($70|0),($52|0),($202|0))|0); + $208 = tempRet0; + $209 = (___muldi3(($30|0),($74|0),($13|0),($198|0))|0); + $210 = tempRet0; + $211 = ($45|0)<(0); + $212 = $211 << 31 >> 31; + $213 = (___muldi3(($45|0),($212|0),($52|0),($202|0))|0); + $214 = tempRet0; + $215 = (___muldi3(($46|0),($188|0),($13|0),($198|0))|0); + $216 = tempRet0; + $217 = (___muldi3(($47|0),($166|0),($52|0),($202|0))|0); + $218 = tempRet0; + $219 = (___muldi3(($48|0),($142|0),($13|0),($198|0))|0); + $220 = tempRet0; + $221 = (___muldi3(($49|0),($120|0),($52|0),($202|0))|0); + $222 = tempRet0; + $223 = ($15|0)<(0); + $224 = $223 << 31 >> 31; + $225 = (___muldi3(($22|0),($58|0),($15|0),($224|0))|0); + $226 = tempRet0; + $227 = (___muldi3(($24|0),($62|0),($15|0),($224|0))|0); + $228 = tempRet0; + $229 = (___muldi3(($26|0),($66|0),($15|0),($224|0))|0); + $230 = tempRet0; + $231 = (___muldi3(($28|0),($70|0),($15|0),($224|0))|0); + $232 = tempRet0; + $233 = ($44|0)<(0); + $234 = $233 << 31 >> 31; + $235 = (___muldi3(($44|0),($234|0),($15|0),($224|0))|0); + $236 = tempRet0; + $237 = (___muldi3(($45|0),($212|0),($15|0),($224|0))|0); + $238 = tempRet0; + $239 = (___muldi3(($46|0),($188|0),($15|0),($224|0))|0); + $240 = tempRet0; + $241 = (___muldi3(($47|0),($166|0),($15|0),($224|0))|0); + $242 = tempRet0; + $243 = (___muldi3(($48|0),($142|0),($15|0),($224|0))|0); + $244 = tempRet0; + $245 = (___muldi3(($49|0),($120|0),($15|0),($224|0))|0); + $246 = tempRet0; + $247 = ($17|0)<(0); + $248 = $247 << 31 >> 31; + $249 = (___muldi3(($22|0),($58|0),($17|0),($248|0))|0); + $250 = tempRet0; + $251 = ($53|0)<(0); + $252 = $251 << 31 >> 31; + $253 = (___muldi3(($24|0),($62|0),($53|0),($252|0))|0); + $254 = tempRet0; + $255 = (___muldi3(($26|0),($66|0),($17|0),($248|0))|0); + $256 = tempRet0; + $257 = ($43|0)<(0); + $258 = $257 << 31 >> 31; + $259 = (___muldi3(($43|0),($258|0),($53|0),($252|0))|0); + $260 = tempRet0; + $261 = (___muldi3(($44|0),($234|0),($17|0),($248|0))|0); + $262 = tempRet0; + $263 = (___muldi3(($45|0),($212|0),($53|0),($252|0))|0); + $264 = tempRet0; + $265 = (___muldi3(($46|0),($188|0),($17|0),($248|0))|0); + $266 = tempRet0; + $267 = (___muldi3(($47|0),($166|0),($53|0),($252|0))|0); + $268 = tempRet0; + $269 = (___muldi3(($48|0),($142|0),($17|0),($248|0))|0); + $270 = tempRet0; + $271 = (___muldi3(($49|0),($120|0),($53|0),($252|0))|0); + $272 = tempRet0; + $273 = ($19|0)<(0); + $274 = $273 << 31 >> 31; + $275 = (___muldi3(($22|0),($58|0),($19|0),($274|0))|0); + $276 = tempRet0; + $277 = (___muldi3(($24|0),($62|0),($19|0),($274|0))|0); + $278 = tempRet0; + $279 = ($42|0)<(0); + $280 = $279 << 31 >> 31; + $281 = (___muldi3(($42|0),($280|0),($19|0),($274|0))|0); + $282 = tempRet0; + $283 = (___muldi3(($43|0),($258|0),($19|0),($274|0))|0); + $284 = tempRet0; + $285 = (___muldi3(($44|0),($234|0),($19|0),($274|0))|0); + $286 = tempRet0; + $287 = (___muldi3(($45|0),($212|0),($19|0),($274|0))|0); + $288 = tempRet0; + $289 = (___muldi3(($46|0),($188|0),($19|0),($274|0))|0); + $290 = tempRet0; + $291 = (___muldi3(($47|0),($166|0),($19|0),($274|0))|0); + $292 = tempRet0; + $293 = (___muldi3(($48|0),($142|0),($19|0),($274|0))|0); + $294 = tempRet0; + $295 = (___muldi3(($49|0),($120|0),($19|0),($274|0))|0); + $296 = tempRet0; + $297 = ($21|0)<(0); + $298 = $297 << 31 >> 31; + $299 = (___muldi3(($22|0),($58|0),($21|0),($298|0))|0); + $300 = tempRet0; + $301 = ($54|0)<(0); + $302 = $301 << 31 >> 31; + $303 = ($41|0)<(0); + $304 = $303 << 31 >> 31; + $305 = (___muldi3(($41|0),($304|0),($54|0),($302|0))|0); + $306 = tempRet0; + $307 = (___muldi3(($42|0),($280|0),($21|0),($298|0))|0); + $308 = tempRet0; + $309 = (___muldi3(($43|0),($258|0),($54|0),($302|0))|0); + $310 = tempRet0; + $311 = (___muldi3(($44|0),($234|0),($21|0),($298|0))|0); + $312 = tempRet0; + $313 = (___muldi3(($45|0),($212|0),($54|0),($302|0))|0); + $314 = tempRet0; + $315 = (___muldi3(($46|0),($188|0),($21|0),($298|0))|0); + $316 = tempRet0; + $317 = (___muldi3(($47|0),($166|0),($54|0),($302|0))|0); + $318 = tempRet0; + $319 = (___muldi3(($48|0),($142|0),($21|0),($298|0))|0); + $320 = tempRet0; + $321 = (___muldi3(($49|0),($120|0),($54|0),($302|0))|0); + $322 = tempRet0; + $323 = (_i64Add(($305|0),($306|0),($59|0),($60|0))|0); + $324 = tempRet0; + $325 = (_i64Add(($323|0),($324|0),($281|0),($282|0))|0); + $326 = tempRet0; + $327 = (_i64Add(($325|0),($326|0),($259|0),($260|0))|0); + $328 = tempRet0; + $329 = (_i64Add(($327|0),($328|0),($235|0),($236|0))|0); + $330 = tempRet0; + $331 = (_i64Add(($329|0),($330|0),($213|0),($214|0))|0); + $332 = tempRet0; + $333 = (_i64Add(($331|0),($332|0),($189|0),($190|0))|0); + $334 = tempRet0; + $335 = (_i64Add(($333|0),($334|0),($167|0),($168|0))|0); + $336 = tempRet0; + $337 = (_i64Add(($335|0),($336|0),($143|0),($144|0))|0); + $338 = tempRet0; + $339 = (_i64Add(($337|0),($338|0),($121|0),($122|0))|0); + $340 = tempRet0; + $341 = (_i64Add(($63|0),($64|0),($99|0),($100|0))|0); + $342 = tempRet0; + $343 = (_i64Add(($153|0),($154|0),($175|0),($176|0))|0); + $344 = tempRet0; + $345 = (_i64Add(($343|0),($344|0),($129|0),($130|0))|0); + $346 = tempRet0; + $347 = (_i64Add(($345|0),($346|0),($107|0),($108|0))|0); + $348 = tempRet0; + $349 = (_i64Add(($347|0),($348|0),($75|0),($76|0))|0); + $350 = tempRet0; + $351 = (_i64Add(($349|0),($350|0),($313|0),($314|0))|0); + $352 = tempRet0; + $353 = (_i64Add(($351|0),($352|0),($289|0),($290|0))|0); + $354 = tempRet0; + $355 = (_i64Add(($353|0),($354|0),($267|0),($268|0))|0); + $356 = tempRet0; + $357 = (_i64Add(($355|0),($356|0),($243|0),($244|0))|0); + $358 = tempRet0; + $359 = (_i64Add(($357|0),($358|0),($221|0),($222|0))|0); + $360 = tempRet0; + $361 = (_i64Add(($339|0),($340|0),33554432,0)|0); + $362 = tempRet0; + $363 = (_bitshift64Ashr(($361|0),($362|0),26)|0); + $364 = tempRet0; + $365 = (_i64Add(($341|0),($342|0),($307|0),($308|0))|0); + $366 = tempRet0; + $367 = (_i64Add(($365|0),($366|0),($283|0),($284|0))|0); + $368 = tempRet0; + $369 = (_i64Add(($367|0),($368|0),($261|0),($262|0))|0); + $370 = tempRet0; + $371 = (_i64Add(($369|0),($370|0),($237|0),($238|0))|0); + $372 = tempRet0; + $373 = (_i64Add(($371|0),($372|0),($215|0),($216|0))|0); + $374 = tempRet0; + $375 = (_i64Add(($373|0),($374|0),($191|0),($192|0))|0); + $376 = tempRet0; + $377 = (_i64Add(($375|0),($376|0),($169|0),($170|0))|0); + $378 = tempRet0; + $379 = (_i64Add(($377|0),($378|0),($145|0),($146|0))|0); + $380 = tempRet0; + $381 = (_i64Add(($379|0),($380|0),($363|0),($364|0))|0); + $382 = tempRet0; + $383 = (_bitshift64Shl(($363|0),($364|0),26)|0); + $384 = tempRet0; + $385 = (_i64Subtract(($339|0),($340|0),($383|0),($384|0))|0); + $386 = tempRet0; + $387 = (_i64Add(($359|0),($360|0),33554432,0)|0); + $388 = tempRet0; + $389 = (_bitshift64Ashr(($387|0),($388|0),26)|0); + $390 = tempRet0; + $391 = (_i64Add(($177|0),($178|0),($199|0),($200|0))|0); + $392 = tempRet0; + $393 = (_i64Add(($391|0),($392|0),($155|0),($156|0))|0); + $394 = tempRet0; + $395 = (_i64Add(($393|0),($394|0),($131|0),($132|0))|0); + $396 = tempRet0; + $397 = (_i64Add(($395|0),($396|0),($109|0),($110|0))|0); + $398 = tempRet0; + $399 = (_i64Add(($397|0),($398|0),($79|0),($80|0))|0); + $400 = tempRet0; + $401 = (_i64Add(($399|0),($400|0),($315|0),($316|0))|0); + $402 = tempRet0; + $403 = (_i64Add(($401|0),($402|0),($291|0),($292|0))|0); + $404 = tempRet0; + $405 = (_i64Add(($403|0),($404|0),($269|0),($270|0))|0); + $406 = tempRet0; + $407 = (_i64Add(($405|0),($406|0),($245|0),($246|0))|0); + $408 = tempRet0; + $409 = (_i64Add(($407|0),($408|0),($389|0),($390|0))|0); + $410 = tempRet0; + $411 = (_bitshift64Shl(($389|0),($390|0),26)|0); + $412 = tempRet0; + $413 = (_i64Subtract(($359|0),($360|0),($411|0),($412|0))|0); + $414 = tempRet0; + $415 = (_i64Add(($381|0),($382|0),16777216,0)|0); + $416 = tempRet0; + $417 = (_bitshift64Ashr(($415|0),($416|0),25)|0); + $418 = tempRet0; + $419 = (_i64Add(($103|0),($104|0),($125|0),($126|0))|0); + $420 = tempRet0; + $421 = (_i64Add(($419|0),($420|0),($67|0),($68|0))|0); + $422 = tempRet0; + $423 = (_i64Add(($421|0),($422|0),($309|0),($310|0))|0); + $424 = tempRet0; + $425 = (_i64Add(($423|0),($424|0),($285|0),($286|0))|0); + $426 = tempRet0; + $427 = (_i64Add(($425|0),($426|0),($263|0),($264|0))|0); + $428 = tempRet0; + $429 = (_i64Add(($427|0),($428|0),($239|0),($240|0))|0); + $430 = tempRet0; + $431 = (_i64Add(($429|0),($430|0),($217|0),($218|0))|0); + $432 = tempRet0; + $433 = (_i64Add(($431|0),($432|0),($193|0),($194|0))|0); + $434 = tempRet0; + $435 = (_i64Add(($433|0),($434|0),($171|0),($172|0))|0); + $436 = tempRet0; + $437 = (_i64Add(($435|0),($436|0),($417|0),($418|0))|0); + $438 = tempRet0; + $439 = (_bitshift64Shl(($417|0),($418|0),25)|0); + $440 = tempRet0; + $441 = (_i64Subtract(($381|0),($382|0),($439|0),($440|0))|0); + $442 = tempRet0; + $443 = (_i64Add(($409|0),($410|0),16777216,0)|0); + $444 = tempRet0; + $445 = (_bitshift64Ashr(($443|0),($444|0),25)|0); + $446 = tempRet0; + $447 = (_i64Add(($203|0),($204|0),($225|0),($226|0))|0); + $448 = tempRet0; + $449 = (_i64Add(($447|0),($448|0),($179|0),($180|0))|0); + $450 = tempRet0; + $451 = (_i64Add(($449|0),($450|0),($157|0),($158|0))|0); + $452 = tempRet0; + $453 = (_i64Add(($451|0),($452|0),($133|0),($134|0))|0); + $454 = tempRet0; + $455 = (_i64Add(($453|0),($454|0),($111|0),($112|0))|0); + $456 = tempRet0; + $457 = (_i64Add(($455|0),($456|0),($83|0),($84|0))|0); + $458 = tempRet0; + $459 = (_i64Add(($457|0),($458|0),($317|0),($318|0))|0); + $460 = tempRet0; + $461 = (_i64Add(($459|0),($460|0),($293|0),($294|0))|0); + $462 = tempRet0; + $463 = (_i64Add(($461|0),($462|0),($271|0),($272|0))|0); + $464 = tempRet0; + $465 = (_i64Add(($463|0),($464|0),($445|0),($446|0))|0); + $466 = tempRet0; + $467 = (_bitshift64Shl(($445|0),($446|0),25)|0); + $468 = tempRet0; + $469 = (_i64Subtract(($409|0),($410|0),($467|0),($468|0))|0); + $470 = tempRet0; + $471 = (_i64Add(($437|0),($438|0),33554432,0)|0); + $472 = tempRet0; + $473 = (_bitshift64Ashr(($471|0),($472|0),26)|0); + $474 = tempRet0; + $475 = (_i64Add(($127|0),($128|0),($149|0),($150|0))|0); + $476 = tempRet0; + $477 = (_i64Add(($475|0),($476|0),($105|0),($106|0))|0); + $478 = tempRet0; + $479 = (_i64Add(($477|0),($478|0),($71|0),($72|0))|0); + $480 = tempRet0; + $481 = (_i64Add(($479|0),($480|0),($311|0),($312|0))|0); + $482 = tempRet0; + $483 = (_i64Add(($481|0),($482|0),($287|0),($288|0))|0); + $484 = tempRet0; + $485 = (_i64Add(($483|0),($484|0),($265|0),($266|0))|0); + $486 = tempRet0; + $487 = (_i64Add(($485|0),($486|0),($241|0),($242|0))|0); + $488 = tempRet0; + $489 = (_i64Add(($487|0),($488|0),($219|0),($220|0))|0); + $490 = tempRet0; + $491 = (_i64Add(($489|0),($490|0),($195|0),($196|0))|0); + $492 = tempRet0; + $493 = (_i64Add(($491|0),($492|0),($473|0),($474|0))|0); + $494 = tempRet0; + $495 = (_bitshift64Shl(($473|0),($474|0),26)|0); + $496 = tempRet0; + $497 = (_i64Subtract(($437|0),($438|0),($495|0),($496|0))|0); + $498 = tempRet0; + $499 = (_i64Add(($465|0),($466|0),33554432,0)|0); + $500 = tempRet0; + $501 = (_bitshift64Ashr(($499|0),($500|0),26)|0); + $502 = tempRet0; + $503 = (_i64Add(($227|0),($228|0),($249|0),($250|0))|0); + $504 = tempRet0; + $505 = (_i64Add(($503|0),($504|0),($205|0),($206|0))|0); + $506 = tempRet0; + $507 = (_i64Add(($505|0),($506|0),($181|0),($182|0))|0); + $508 = tempRet0; + $509 = (_i64Add(($507|0),($508|0),($159|0),($160|0))|0); + $510 = tempRet0; + $511 = (_i64Add(($509|0),($510|0),($135|0),($136|0))|0); + $512 = tempRet0; + $513 = (_i64Add(($511|0),($512|0),($113|0),($114|0))|0); + $514 = tempRet0; + $515 = (_i64Add(($513|0),($514|0),($87|0),($88|0))|0); + $516 = tempRet0; + $517 = (_i64Add(($515|0),($516|0),($319|0),($320|0))|0); + $518 = tempRet0; + $519 = (_i64Add(($517|0),($518|0),($295|0),($296|0))|0); + $520 = tempRet0; + $521 = (_i64Add(($519|0),($520|0),($501|0),($502|0))|0); + $522 = tempRet0; + $523 = (_bitshift64Shl(($501|0),($502|0),26)|0); + $524 = tempRet0; + $525 = (_i64Subtract(($465|0),($466|0),($523|0),($524|0))|0); + $526 = tempRet0; + $527 = (_i64Add(($493|0),($494|0),16777216,0)|0); + $528 = tempRet0; + $529 = (_bitshift64Ashr(($527|0),($528|0),25)|0); + $530 = tempRet0; + $531 = (_i64Add(($529|0),($530|0),($413|0),($414|0))|0); + $532 = tempRet0; + $533 = (_bitshift64Shl(($529|0),($530|0),25)|0); + $534 = tempRet0; + $535 = (_i64Subtract(($493|0),($494|0),($533|0),($534|0))|0); + $536 = tempRet0; + $537 = (_i64Add(($521|0),($522|0),16777216,0)|0); + $538 = tempRet0; + $539 = (_bitshift64Ashr(($537|0),($538|0),25)|0); + $540 = tempRet0; + $541 = (_i64Add(($253|0),($254|0),($275|0),($276|0))|0); + $542 = tempRet0; + $543 = (_i64Add(($541|0),($542|0),($229|0),($230|0))|0); + $544 = tempRet0; + $545 = (_i64Add(($543|0),($544|0),($207|0),($208|0))|0); + $546 = tempRet0; + $547 = (_i64Add(($545|0),($546|0),($183|0),($184|0))|0); + $548 = tempRet0; + $549 = (_i64Add(($547|0),($548|0),($161|0),($162|0))|0); + $550 = tempRet0; + $551 = (_i64Add(($549|0),($550|0),($137|0),($138|0))|0); + $552 = tempRet0; + $553 = (_i64Add(($551|0),($552|0),($115|0),($116|0))|0); + $554 = tempRet0; + $555 = (_i64Add(($553|0),($554|0),($91|0),($92|0))|0); + $556 = tempRet0; + $557 = (_i64Add(($555|0),($556|0),($321|0),($322|0))|0); + $558 = tempRet0; + $559 = (_i64Add(($557|0),($558|0),($539|0),($540|0))|0); + $560 = tempRet0; + $561 = (_bitshift64Shl(($539|0),($540|0),25)|0); + $562 = tempRet0; + $563 = (_i64Subtract(($521|0),($522|0),($561|0),($562|0))|0); + $564 = tempRet0; + $565 = (_i64Add(($531|0),($532|0),33554432,0)|0); + $566 = tempRet0; + $567 = (_bitshift64Ashr(($565|0),($566|0),26)|0); + $568 = tempRet0; + $569 = (_i64Add(($469|0),($470|0),($567|0),($568|0))|0); + $570 = tempRet0; + $571 = (_bitshift64Shl(($567|0),($568|0),26)|0); + $572 = tempRet0; + $573 = (_i64Subtract(($531|0),($532|0),($571|0),($572|0))|0); + $574 = tempRet0; + $575 = (_i64Add(($559|0),($560|0),33554432,0)|0); + $576 = tempRet0; + $577 = (_bitshift64Ashr(($575|0),($576|0),26)|0); + $578 = tempRet0; + $579 = (_i64Add(($277|0),($278|0),($299|0),($300|0))|0); + $580 = tempRet0; + $581 = (_i64Add(($579|0),($580|0),($255|0),($256|0))|0); + $582 = tempRet0; + $583 = (_i64Add(($581|0),($582|0),($231|0),($232|0))|0); + $584 = tempRet0; + $585 = (_i64Add(($583|0),($584|0),($209|0),($210|0))|0); + $586 = tempRet0; + $587 = (_i64Add(($585|0),($586|0),($185|0),($186|0))|0); + $588 = tempRet0; + $589 = (_i64Add(($587|0),($588|0),($163|0),($164|0))|0); + $590 = tempRet0; + $591 = (_i64Add(($589|0),($590|0),($139|0),($140|0))|0); + $592 = tempRet0; + $593 = (_i64Add(($591|0),($592|0),($117|0),($118|0))|0); + $594 = tempRet0; + $595 = (_i64Add(($593|0),($594|0),($95|0),($96|0))|0); + $596 = tempRet0; + $597 = (_i64Add(($595|0),($596|0),($577|0),($578|0))|0); + $598 = tempRet0; + $599 = (_bitshift64Shl(($577|0),($578|0),26)|0); + $600 = tempRet0; + $601 = (_i64Subtract(($559|0),($560|0),($599|0),($600|0))|0); + $602 = tempRet0; + $603 = (_i64Add(($597|0),($598|0),16777216,0)|0); + $604 = tempRet0; + $605 = (_bitshift64Ashr(($603|0),($604|0),25)|0); + $606 = tempRet0; + $607 = (___muldi3(($605|0),($606|0),19,0)|0); + $608 = tempRet0; + $609 = (_i64Add(($607|0),($608|0),($385|0),($386|0))|0); + $610 = tempRet0; + $611 = (_bitshift64Shl(($605|0),($606|0),25)|0); + $612 = tempRet0; + $613 = (_i64Subtract(($597|0),($598|0),($611|0),($612|0))|0); + $614 = tempRet0; + $615 = (_i64Add(($609|0),($610|0),33554432,0)|0); + $616 = tempRet0; + $617 = (_bitshift64Ashr(($615|0),($616|0),26)|0); + $618 = tempRet0; + $619 = (_i64Add(($441|0),($442|0),($617|0),($618|0))|0); + $620 = tempRet0; + $621 = (_bitshift64Shl(($617|0),($618|0),26)|0); + $622 = tempRet0; + $623 = (_i64Subtract(($609|0),($610|0),($621|0),($622|0))|0); + $624 = tempRet0; + HEAP32[$0>>2] = $623; + $625 = ((($0)) + 4|0); + HEAP32[$625>>2] = $619; + $626 = ((($0)) + 8|0); + HEAP32[$626>>2] = $497; + $627 = ((($0)) + 12|0); + HEAP32[$627>>2] = $535; + $628 = ((($0)) + 16|0); + HEAP32[$628>>2] = $573; + $629 = ((($0)) + 20|0); + HEAP32[$629>>2] = $569; + $630 = ((($0)) + 24|0); + HEAP32[$630>>2] = $525; + $631 = ((($0)) + 28|0); + HEAP32[$631>>2] = $563; + $632 = ((($0)) + 32|0); + HEAP32[$632>>2] = $601; + $633 = ((($0)) + 36|0); + HEAP32[$633>>2] = $613; + return; +} +function _crypto_sign_ed25519_ref10_fe_neg($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = HEAP32[$1>>2]|0; + $3 = ((($1)) + 4|0); + $4 = HEAP32[$3>>2]|0; + $5 = ((($1)) + 8|0); + $6 = HEAP32[$5>>2]|0; + $7 = ((($1)) + 12|0); + $8 = HEAP32[$7>>2]|0; + $9 = ((($1)) + 16|0); + $10 = HEAP32[$9>>2]|0; + $11 = ((($1)) + 20|0); + $12 = HEAP32[$11>>2]|0; + $13 = ((($1)) + 24|0); + $14 = HEAP32[$13>>2]|0; + $15 = ((($1)) + 28|0); + $16 = HEAP32[$15>>2]|0; + $17 = ((($1)) + 32|0); + $18 = HEAP32[$17>>2]|0; + $19 = ((($1)) + 36|0); + $20 = HEAP32[$19>>2]|0; + $21 = (0 - ($2))|0; + $22 = (0 - ($4))|0; + $23 = (0 - ($6))|0; + $24 = (0 - ($8))|0; + $25 = (0 - ($10))|0; + $26 = (0 - ($12))|0; + $27 = (0 - ($14))|0; + $28 = (0 - ($16))|0; + $29 = (0 - ($18))|0; + $30 = (0 - ($20))|0; + HEAP32[$0>>2] = $21; + $31 = ((($0)) + 4|0); + HEAP32[$31>>2] = $22; + $32 = ((($0)) + 8|0); + HEAP32[$32>>2] = $23; + $33 = ((($0)) + 12|0); + HEAP32[$33>>2] = $24; + $34 = ((($0)) + 16|0); + HEAP32[$34>>2] = $25; + $35 = ((($0)) + 20|0); + HEAP32[$35>>2] = $26; + $36 = ((($0)) + 24|0); + HEAP32[$36>>2] = $27; + $37 = ((($0)) + 28|0); + HEAP32[$37>>2] = $28; + $38 = ((($0)) + 32|0); + HEAP32[$38>>2] = $29; + $39 = ((($0)) + 36|0); + HEAP32[$39>>2] = $30; + return; +} +function _crypto_sign_ed25519_ref10_fe_pow22523($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$729 = 0, $$828 = 0, $$927 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $exitcond = 0, $exitcond35 = 0, $exitcond36 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 128|0; + $2 = sp + 80|0; + $3 = sp + 40|0; + $4 = sp; + _crypto_sign_ed25519_ref10_fe_sq($2,$1); + _crypto_sign_ed25519_ref10_fe_sq($3,$2); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_mul($3,$1,$3); + _crypto_sign_ed25519_ref10_fe_mul($2,$2,$3); + _crypto_sign_ed25519_ref10_fe_sq($2,$2); + _crypto_sign_ed25519_ref10_fe_mul($2,$3,$2); + _crypto_sign_ed25519_ref10_fe_sq($3,$2); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_mul($2,$3,$2); + _crypto_sign_ed25519_ref10_fe_sq($3,$2); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_mul($3,$3,$2); + _crypto_sign_ed25519_ref10_fe_sq($4,$3); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_mul($3,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_mul($2,$3,$2); + _crypto_sign_ed25519_ref10_fe_sq($3,$2); + $$729 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + $5 = (($$729) + 1)|0; + $exitcond36 = ($5|0)==(50); + if ($exitcond36) { + break; + } else { + $$729 = $5; + } + } + _crypto_sign_ed25519_ref10_fe_mul($3,$3,$2); + _crypto_sign_ed25519_ref10_fe_sq($4,$3); + $$828 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + $6 = (($$828) + 1)|0; + $exitcond35 = ($6|0)==(100); + if ($exitcond35) { + break; + } else { + $$828 = $6; + } + } + _crypto_sign_ed25519_ref10_fe_mul($3,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + $$927 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + $7 = (($$927) + 1)|0; + $exitcond = ($7|0)==(50); + if ($exitcond) { + break; + } else { + $$927 = $7; + } + } + _crypto_sign_ed25519_ref10_fe_mul($2,$3,$2); + _crypto_sign_ed25519_ref10_fe_sq($2,$2); + _crypto_sign_ed25519_ref10_fe_sq($2,$2); + _crypto_sign_ed25519_ref10_fe_mul($0,$2,$1); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_sq($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0; + var $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0; + var $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0; + var $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0; + var $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0; + var $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0; + var $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0; + var $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0; + var $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0; + var $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0; + var $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0; + var $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0; + var $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0; + var $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0; + var $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0; + var $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = HEAP32[$1>>2]|0; + $3 = ((($1)) + 4|0); + $4 = HEAP32[$3>>2]|0; + $5 = ((($1)) + 8|0); + $6 = HEAP32[$5>>2]|0; + $7 = ((($1)) + 12|0); + $8 = HEAP32[$7>>2]|0; + $9 = ((($1)) + 16|0); + $10 = HEAP32[$9>>2]|0; + $11 = ((($1)) + 20|0); + $12 = HEAP32[$11>>2]|0; + $13 = ((($1)) + 24|0); + $14 = HEAP32[$13>>2]|0; + $15 = ((($1)) + 28|0); + $16 = HEAP32[$15>>2]|0; + $17 = ((($1)) + 32|0); + $18 = HEAP32[$17>>2]|0; + $19 = ((($1)) + 36|0); + $20 = HEAP32[$19>>2]|0; + $21 = $2 << 1; + $22 = $4 << 1; + $23 = $6 << 1; + $24 = $8 << 1; + $25 = $10 << 1; + $26 = $12 << 1; + $27 = $14 << 1; + $28 = $16 << 1; + $29 = ($12*38)|0; + $30 = ($14*19)|0; + $31 = ($16*38)|0; + $32 = ($18*19)|0; + $33 = ($20*38)|0; + $34 = ($2|0)<(0); + $35 = $34 << 31 >> 31; + $36 = (___muldi3(($2|0),($35|0),($2|0),($35|0))|0); + $37 = tempRet0; + $38 = ($21|0)<(0); + $39 = $38 << 31 >> 31; + $40 = ($4|0)<(0); + $41 = $40 << 31 >> 31; + $42 = (___muldi3(($21|0),($39|0),($4|0),($41|0))|0); + $43 = tempRet0; + $44 = ($6|0)<(0); + $45 = $44 << 31 >> 31; + $46 = (___muldi3(($6|0),($45|0),($21|0),($39|0))|0); + $47 = tempRet0; + $48 = ($8|0)<(0); + $49 = $48 << 31 >> 31; + $50 = (___muldi3(($8|0),($49|0),($21|0),($39|0))|0); + $51 = tempRet0; + $52 = ($10|0)<(0); + $53 = $52 << 31 >> 31; + $54 = (___muldi3(($10|0),($53|0),($21|0),($39|0))|0); + $55 = tempRet0; + $56 = ($12|0)<(0); + $57 = $56 << 31 >> 31; + $58 = (___muldi3(($12|0),($57|0),($21|0),($39|0))|0); + $59 = tempRet0; + $60 = ($14|0)<(0); + $61 = $60 << 31 >> 31; + $62 = (___muldi3(($14|0),($61|0),($21|0),($39|0))|0); + $63 = tempRet0; + $64 = ($16|0)<(0); + $65 = $64 << 31 >> 31; + $66 = (___muldi3(($16|0),($65|0),($21|0),($39|0))|0); + $67 = tempRet0; + $68 = ($18|0)<(0); + $69 = $68 << 31 >> 31; + $70 = (___muldi3(($18|0),($69|0),($21|0),($39|0))|0); + $71 = tempRet0; + $72 = ($20|0)<(0); + $73 = $72 << 31 >> 31; + $74 = (___muldi3(($20|0),($73|0),($21|0),($39|0))|0); + $75 = tempRet0; + $76 = ($22|0)<(0); + $77 = $76 << 31 >> 31; + $78 = (___muldi3(($22|0),($77|0),($4|0),($41|0))|0); + $79 = tempRet0; + $80 = (___muldi3(($22|0),($77|0),($6|0),($45|0))|0); + $81 = tempRet0; + $82 = ($24|0)<(0); + $83 = $82 << 31 >> 31; + $84 = (___muldi3(($24|0),($83|0),($22|0),($77|0))|0); + $85 = tempRet0; + $86 = (___muldi3(($10|0),($53|0),($22|0),($77|0))|0); + $87 = tempRet0; + $88 = ($26|0)<(0); + $89 = $88 << 31 >> 31; + $90 = (___muldi3(($26|0),($89|0),($22|0),($77|0))|0); + $91 = tempRet0; + $92 = (___muldi3(($14|0),($61|0),($22|0),($77|0))|0); + $93 = tempRet0; + $94 = ($28|0)<(0); + $95 = $94 << 31 >> 31; + $96 = (___muldi3(($28|0),($95|0),($22|0),($77|0))|0); + $97 = tempRet0; + $98 = (___muldi3(($18|0),($69|0),($22|0),($77|0))|0); + $99 = tempRet0; + $100 = ($33|0)<(0); + $101 = $100 << 31 >> 31; + $102 = (___muldi3(($33|0),($101|0),($22|0),($77|0))|0); + $103 = tempRet0; + $104 = (___muldi3(($6|0),($45|0),($6|0),($45|0))|0); + $105 = tempRet0; + $106 = ($23|0)<(0); + $107 = $106 << 31 >> 31; + $108 = (___muldi3(($23|0),($107|0),($8|0),($49|0))|0); + $109 = tempRet0; + $110 = (___muldi3(($10|0),($53|0),($23|0),($107|0))|0); + $111 = tempRet0; + $112 = (___muldi3(($12|0),($57|0),($23|0),($107|0))|0); + $113 = tempRet0; + $114 = (___muldi3(($14|0),($61|0),($23|0),($107|0))|0); + $115 = tempRet0; + $116 = (___muldi3(($16|0),($65|0),($23|0),($107|0))|0); + $117 = tempRet0; + $118 = ($32|0)<(0); + $119 = $118 << 31 >> 31; + $120 = (___muldi3(($32|0),($119|0),($23|0),($107|0))|0); + $121 = tempRet0; + $122 = (___muldi3(($33|0),($101|0),($6|0),($45|0))|0); + $123 = tempRet0; + $124 = (___muldi3(($24|0),($83|0),($8|0),($49|0))|0); + $125 = tempRet0; + $126 = (___muldi3(($24|0),($83|0),($10|0),($53|0))|0); + $127 = tempRet0; + $128 = (___muldi3(($26|0),($89|0),($24|0),($83|0))|0); + $129 = tempRet0; + $130 = (___muldi3(($14|0),($61|0),($24|0),($83|0))|0); + $131 = tempRet0; + $132 = ($31|0)<(0); + $133 = $132 << 31 >> 31; + $134 = (___muldi3(($31|0),($133|0),($24|0),($83|0))|0); + $135 = tempRet0; + $136 = (___muldi3(($32|0),($119|0),($24|0),($83|0))|0); + $137 = tempRet0; + $138 = (___muldi3(($33|0),($101|0),($24|0),($83|0))|0); + $139 = tempRet0; + $140 = (___muldi3(($10|0),($53|0),($10|0),($53|0))|0); + $141 = tempRet0; + $142 = ($25|0)<(0); + $143 = $142 << 31 >> 31; + $144 = (___muldi3(($25|0),($143|0),($12|0),($57|0))|0); + $145 = tempRet0; + $146 = ($30|0)<(0); + $147 = $146 << 31 >> 31; + $148 = (___muldi3(($30|0),($147|0),($25|0),($143|0))|0); + $149 = tempRet0; + $150 = (___muldi3(($31|0),($133|0),($10|0),($53|0))|0); + $151 = tempRet0; + $152 = (___muldi3(($32|0),($119|0),($25|0),($143|0))|0); + $153 = tempRet0; + $154 = (___muldi3(($33|0),($101|0),($10|0),($53|0))|0); + $155 = tempRet0; + $156 = ($29|0)<(0); + $157 = $156 << 31 >> 31; + $158 = (___muldi3(($29|0),($157|0),($12|0),($57|0))|0); + $159 = tempRet0; + $160 = (___muldi3(($30|0),($147|0),($26|0),($89|0))|0); + $161 = tempRet0; + $162 = (___muldi3(($31|0),($133|0),($26|0),($89|0))|0); + $163 = tempRet0; + $164 = (___muldi3(($32|0),($119|0),($26|0),($89|0))|0); + $165 = tempRet0; + $166 = (___muldi3(($33|0),($101|0),($26|0),($89|0))|0); + $167 = tempRet0; + $168 = (___muldi3(($30|0),($147|0),($14|0),($61|0))|0); + $169 = tempRet0; + $170 = (___muldi3(($31|0),($133|0),($14|0),($61|0))|0); + $171 = tempRet0; + $172 = ($27|0)<(0); + $173 = $172 << 31 >> 31; + $174 = (___muldi3(($32|0),($119|0),($27|0),($173|0))|0); + $175 = tempRet0; + $176 = (___muldi3(($33|0),($101|0),($14|0),($61|0))|0); + $177 = tempRet0; + $178 = (___muldi3(($31|0),($133|0),($16|0),($65|0))|0); + $179 = tempRet0; + $180 = (___muldi3(($32|0),($119|0),($28|0),($95|0))|0); + $181 = tempRet0; + $182 = (___muldi3(($33|0),($101|0),($28|0),($95|0))|0); + $183 = tempRet0; + $184 = (___muldi3(($32|0),($119|0),($18|0),($69|0))|0); + $185 = tempRet0; + $186 = (___muldi3(($33|0),($101|0),($18|0),($69|0))|0); + $187 = tempRet0; + $188 = (___muldi3(($33|0),($101|0),($20|0),($73|0))|0); + $189 = tempRet0; + $190 = (_i64Add(($158|0),($159|0),($36|0),($37|0))|0); + $191 = tempRet0; + $192 = (_i64Add(($190|0),($191|0),($148|0),($149|0))|0); + $193 = tempRet0; + $194 = (_i64Add(($192|0),($193|0),($134|0),($135|0))|0); + $195 = tempRet0; + $196 = (_i64Add(($194|0),($195|0),($120|0),($121|0))|0); + $197 = tempRet0; + $198 = (_i64Add(($196|0),($197|0),($102|0),($103|0))|0); + $199 = tempRet0; + $200 = (_i64Add(($46|0),($47|0),($78|0),($79|0))|0); + $201 = tempRet0; + $202 = (_i64Add(($50|0),($51|0),($80|0),($81|0))|0); + $203 = tempRet0; + $204 = (_i64Add(($84|0),($85|0),($104|0),($105|0))|0); + $205 = tempRet0; + $206 = (_i64Add(($204|0),($205|0),($54|0),($55|0))|0); + $207 = tempRet0; + $208 = (_i64Add(($206|0),($207|0),($178|0),($179|0))|0); + $209 = tempRet0; + $210 = (_i64Add(($208|0),($209|0),($174|0),($175|0))|0); + $211 = tempRet0; + $212 = (_i64Add(($210|0),($211|0),($166|0),($167|0))|0); + $213 = tempRet0; + $214 = (_i64Add(($198|0),($199|0),33554432,0)|0); + $215 = tempRet0; + $216 = (_bitshift64Ashr(($214|0),($215|0),26)|0); + $217 = tempRet0; + $218 = (_i64Add(($160|0),($161|0),($42|0),($43|0))|0); + $219 = tempRet0; + $220 = (_i64Add(($218|0),($219|0),($150|0),($151|0))|0); + $221 = tempRet0; + $222 = (_i64Add(($220|0),($221|0),($136|0),($137|0))|0); + $223 = tempRet0; + $224 = (_i64Add(($222|0),($223|0),($122|0),($123|0))|0); + $225 = tempRet0; + $226 = (_i64Add(($224|0),($225|0),($216|0),($217|0))|0); + $227 = tempRet0; + $228 = (_bitshift64Shl(($216|0),($217|0),26)|0); + $229 = tempRet0; + $230 = (_i64Subtract(($198|0),($199|0),($228|0),($229|0))|0); + $231 = tempRet0; + $232 = (_i64Add(($212|0),($213|0),33554432,0)|0); + $233 = tempRet0; + $234 = (_bitshift64Ashr(($232|0),($233|0),26)|0); + $235 = tempRet0; + $236 = (_i64Add(($86|0),($87|0),($108|0),($109|0))|0); + $237 = tempRet0; + $238 = (_i64Add(($236|0),($237|0),($58|0),($59|0))|0); + $239 = tempRet0; + $240 = (_i64Add(($238|0),($239|0),($180|0),($181|0))|0); + $241 = tempRet0; + $242 = (_i64Add(($240|0),($241|0),($176|0),($177|0))|0); + $243 = tempRet0; + $244 = (_i64Add(($242|0),($243|0),($234|0),($235|0))|0); + $245 = tempRet0; + $246 = (_bitshift64Shl(($234|0),($235|0),26)|0); + $247 = tempRet0; + $248 = (_i64Subtract(($212|0),($213|0),($246|0),($247|0))|0); + $249 = tempRet0; + $250 = (_i64Add(($226|0),($227|0),16777216,0)|0); + $251 = tempRet0; + $252 = (_bitshift64Ashr(($250|0),($251|0),25)|0); + $253 = tempRet0; + $254 = (_i64Add(($200|0),($201|0),($168|0),($169|0))|0); + $255 = tempRet0; + $256 = (_i64Add(($254|0),($255|0),($162|0),($163|0))|0); + $257 = tempRet0; + $258 = (_i64Add(($256|0),($257|0),($152|0),($153|0))|0); + $259 = tempRet0; + $260 = (_i64Add(($258|0),($259|0),($138|0),($139|0))|0); + $261 = tempRet0; + $262 = (_i64Add(($260|0),($261|0),($252|0),($253|0))|0); + $263 = tempRet0; + $264 = (_bitshift64Shl(($252|0),($253|0),25)|0); + $265 = tempRet0; + $266 = (_i64Subtract(($226|0),($227|0),($264|0),($265|0))|0); + $267 = tempRet0; + $268 = (_i64Add(($244|0),($245|0),16777216,0)|0); + $269 = tempRet0; + $270 = (_bitshift64Ashr(($268|0),($269|0),25)|0); + $271 = tempRet0; + $272 = (_i64Add(($124|0),($125|0),($110|0),($111|0))|0); + $273 = tempRet0; + $274 = (_i64Add(($272|0),($273|0),($90|0),($91|0))|0); + $275 = tempRet0; + $276 = (_i64Add(($274|0),($275|0),($62|0),($63|0))|0); + $277 = tempRet0; + $278 = (_i64Add(($276|0),($277|0),($184|0),($185|0))|0); + $279 = tempRet0; + $280 = (_i64Add(($278|0),($279|0),($182|0),($183|0))|0); + $281 = tempRet0; + $282 = (_i64Add(($280|0),($281|0),($270|0),($271|0))|0); + $283 = tempRet0; + $284 = (_bitshift64Shl(($270|0),($271|0),25)|0); + $285 = tempRet0; + $286 = (_i64Subtract(($244|0),($245|0),($284|0),($285|0))|0); + $287 = tempRet0; + $288 = (_i64Add(($262|0),($263|0),33554432,0)|0); + $289 = tempRet0; + $290 = (_bitshift64Ashr(($288|0),($289|0),26)|0); + $291 = tempRet0; + $292 = (_i64Add(($202|0),($203|0),($170|0),($171|0))|0); + $293 = tempRet0; + $294 = (_i64Add(($292|0),($293|0),($164|0),($165|0))|0); + $295 = tempRet0; + $296 = (_i64Add(($294|0),($295|0),($154|0),($155|0))|0); + $297 = tempRet0; + $298 = (_i64Add(($296|0),($297|0),($290|0),($291|0))|0); + $299 = tempRet0; + $300 = (_bitshift64Shl(($290|0),($291|0),26)|0); + $301 = tempRet0; + $302 = (_i64Subtract(($262|0),($263|0),($300|0),($301|0))|0); + $303 = tempRet0; + $304 = (_i64Add(($282|0),($283|0),33554432,0)|0); + $305 = tempRet0; + $306 = (_bitshift64Ashr(($304|0),($305|0),26)|0); + $307 = tempRet0; + $308 = (_i64Add(($112|0),($113|0),($126|0),($127|0))|0); + $309 = tempRet0; + $310 = (_i64Add(($308|0),($309|0),($92|0),($93|0))|0); + $311 = tempRet0; + $312 = (_i64Add(($310|0),($311|0),($66|0),($67|0))|0); + $313 = tempRet0; + $314 = (_i64Add(($312|0),($313|0),($186|0),($187|0))|0); + $315 = tempRet0; + $316 = (_i64Add(($314|0),($315|0),($306|0),($307|0))|0); + $317 = tempRet0; + $318 = (_bitshift64Shl(($306|0),($307|0),26)|0); + $319 = tempRet0; + $320 = (_i64Subtract(($282|0),($283|0),($318|0),($319|0))|0); + $321 = tempRet0; + $322 = (_i64Add(($298|0),($299|0),16777216,0)|0); + $323 = tempRet0; + $324 = (_bitshift64Ashr(($322|0),($323|0),25)|0); + $325 = tempRet0; + $326 = (_i64Add(($324|0),($325|0),($248|0),($249|0))|0); + $327 = tempRet0; + $328 = (_bitshift64Shl(($324|0),($325|0),25)|0); + $329 = tempRet0; + $330 = (_i64Subtract(($298|0),($299|0),($328|0),($329|0))|0); + $331 = tempRet0; + $332 = (_i64Add(($316|0),($317|0),16777216,0)|0); + $333 = tempRet0; + $334 = (_bitshift64Ashr(($332|0),($333|0),25)|0); + $335 = tempRet0; + $336 = (_i64Add(($114|0),($115|0),($140|0),($141|0))|0); + $337 = tempRet0; + $338 = (_i64Add(($336|0),($337|0),($128|0),($129|0))|0); + $339 = tempRet0; + $340 = (_i64Add(($338|0),($339|0),($96|0),($97|0))|0); + $341 = tempRet0; + $342 = (_i64Add(($340|0),($341|0),($70|0),($71|0))|0); + $343 = tempRet0; + $344 = (_i64Add(($342|0),($343|0),($188|0),($189|0))|0); + $345 = tempRet0; + $346 = (_i64Add(($344|0),($345|0),($334|0),($335|0))|0); + $347 = tempRet0; + $348 = (_bitshift64Shl(($334|0),($335|0),25)|0); + $349 = tempRet0; + $350 = (_i64Subtract(($316|0),($317|0),($348|0),($349|0))|0); + $351 = tempRet0; + $352 = (_i64Add(($326|0),($327|0),33554432,0)|0); + $353 = tempRet0; + $354 = (_bitshift64Ashr(($352|0),($353|0),26)|0); + $355 = tempRet0; + $356 = (_i64Add(($286|0),($287|0),($354|0),($355|0))|0); + $357 = tempRet0; + $358 = (_bitshift64Shl(($354|0),($355|0),26)|0); + $359 = tempRet0; + $360 = (_i64Subtract(($326|0),($327|0),($358|0),($359|0))|0); + $361 = tempRet0; + $362 = (_i64Add(($346|0),($347|0),33554432,0)|0); + $363 = tempRet0; + $364 = (_bitshift64Ashr(($362|0),($363|0),26)|0); + $365 = tempRet0; + $366 = (_i64Add(($130|0),($131|0),($144|0),($145|0))|0); + $367 = tempRet0; + $368 = (_i64Add(($366|0),($367|0),($116|0),($117|0))|0); + $369 = tempRet0; + $370 = (_i64Add(($368|0),($369|0),($98|0),($99|0))|0); + $371 = tempRet0; + $372 = (_i64Add(($370|0),($371|0),($74|0),($75|0))|0); + $373 = tempRet0; + $374 = (_i64Add(($372|0),($373|0),($364|0),($365|0))|0); + $375 = tempRet0; + $376 = (_bitshift64Shl(($364|0),($365|0),26)|0); + $377 = tempRet0; + $378 = (_i64Subtract(($346|0),($347|0),($376|0),($377|0))|0); + $379 = tempRet0; + $380 = (_i64Add(($374|0),($375|0),16777216,0)|0); + $381 = tempRet0; + $382 = (_bitshift64Ashr(($380|0),($381|0),25)|0); + $383 = tempRet0; + $384 = (___muldi3(($382|0),($383|0),19,0)|0); + $385 = tempRet0; + $386 = (_i64Add(($384|0),($385|0),($230|0),($231|0))|0); + $387 = tempRet0; + $388 = (_bitshift64Shl(($382|0),($383|0),25)|0); + $389 = tempRet0; + $390 = (_i64Subtract(($374|0),($375|0),($388|0),($389|0))|0); + $391 = tempRet0; + $392 = (_i64Add(($386|0),($387|0),33554432,0)|0); + $393 = tempRet0; + $394 = (_bitshift64Ashr(($392|0),($393|0),26)|0); + $395 = tempRet0; + $396 = (_i64Add(($266|0),($267|0),($394|0),($395|0))|0); + $397 = tempRet0; + $398 = (_bitshift64Shl(($394|0),($395|0),26)|0); + $399 = tempRet0; + $400 = (_i64Subtract(($386|0),($387|0),($398|0),($399|0))|0); + $401 = tempRet0; + HEAP32[$0>>2] = $400; + $402 = ((($0)) + 4|0); + HEAP32[$402>>2] = $396; + $403 = ((($0)) + 8|0); + HEAP32[$403>>2] = $302; + $404 = ((($0)) + 12|0); + HEAP32[$404>>2] = $330; + $405 = ((($0)) + 16|0); + HEAP32[$405>>2] = $360; + $406 = ((($0)) + 20|0); + HEAP32[$406>>2] = $356; + $407 = ((($0)) + 24|0); + HEAP32[$407>>2] = $320; + $408 = ((($0)) + 28|0); + HEAP32[$408>>2] = $350; + $409 = ((($0)) + 32|0); + HEAP32[$409>>2] = $378; + $410 = ((($0)) + 36|0); + HEAP32[$410>>2] = $390; + return; +} +function _crypto_sign_ed25519_ref10_fe_sq2($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0; + var $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0; + var $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0; + var $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0; + var $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0; + var $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0; + var $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0; + var $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0; + var $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0; + var $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0; + var $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0; + var $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0; + var $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0; + var $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0; + var $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0; + var $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0; + var $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = HEAP32[$1>>2]|0; + $3 = ((($1)) + 4|0); + $4 = HEAP32[$3>>2]|0; + $5 = ((($1)) + 8|0); + $6 = HEAP32[$5>>2]|0; + $7 = ((($1)) + 12|0); + $8 = HEAP32[$7>>2]|0; + $9 = ((($1)) + 16|0); + $10 = HEAP32[$9>>2]|0; + $11 = ((($1)) + 20|0); + $12 = HEAP32[$11>>2]|0; + $13 = ((($1)) + 24|0); + $14 = HEAP32[$13>>2]|0; + $15 = ((($1)) + 28|0); + $16 = HEAP32[$15>>2]|0; + $17 = ((($1)) + 32|0); + $18 = HEAP32[$17>>2]|0; + $19 = ((($1)) + 36|0); + $20 = HEAP32[$19>>2]|0; + $21 = $2 << 1; + $22 = $4 << 1; + $23 = $6 << 1; + $24 = $8 << 1; + $25 = $10 << 1; + $26 = $12 << 1; + $27 = $14 << 1; + $28 = $16 << 1; + $29 = ($12*38)|0; + $30 = ($14*19)|0; + $31 = ($16*38)|0; + $32 = ($18*19)|0; + $33 = ($20*38)|0; + $34 = ($2|0)<(0); + $35 = $34 << 31 >> 31; + $36 = (___muldi3(($2|0),($35|0),($2|0),($35|0))|0); + $37 = tempRet0; + $38 = ($21|0)<(0); + $39 = $38 << 31 >> 31; + $40 = ($4|0)<(0); + $41 = $40 << 31 >> 31; + $42 = (___muldi3(($21|0),($39|0),($4|0),($41|0))|0); + $43 = tempRet0; + $44 = ($6|0)<(0); + $45 = $44 << 31 >> 31; + $46 = (___muldi3(($6|0),($45|0),($21|0),($39|0))|0); + $47 = tempRet0; + $48 = ($8|0)<(0); + $49 = $48 << 31 >> 31; + $50 = (___muldi3(($8|0),($49|0),($21|0),($39|0))|0); + $51 = tempRet0; + $52 = ($10|0)<(0); + $53 = $52 << 31 >> 31; + $54 = (___muldi3(($10|0),($53|0),($21|0),($39|0))|0); + $55 = tempRet0; + $56 = ($12|0)<(0); + $57 = $56 << 31 >> 31; + $58 = (___muldi3(($12|0),($57|0),($21|0),($39|0))|0); + $59 = tempRet0; + $60 = ($14|0)<(0); + $61 = $60 << 31 >> 31; + $62 = (___muldi3(($14|0),($61|0),($21|0),($39|0))|0); + $63 = tempRet0; + $64 = ($16|0)<(0); + $65 = $64 << 31 >> 31; + $66 = (___muldi3(($16|0),($65|0),($21|0),($39|0))|0); + $67 = tempRet0; + $68 = ($18|0)<(0); + $69 = $68 << 31 >> 31; + $70 = (___muldi3(($18|0),($69|0),($21|0),($39|0))|0); + $71 = tempRet0; + $72 = ($20|0)<(0); + $73 = $72 << 31 >> 31; + $74 = (___muldi3(($20|0),($73|0),($21|0),($39|0))|0); + $75 = tempRet0; + $76 = ($22|0)<(0); + $77 = $76 << 31 >> 31; + $78 = (___muldi3(($22|0),($77|0),($4|0),($41|0))|0); + $79 = tempRet0; + $80 = (___muldi3(($22|0),($77|0),($6|0),($45|0))|0); + $81 = tempRet0; + $82 = ($24|0)<(0); + $83 = $82 << 31 >> 31; + $84 = (___muldi3(($24|0),($83|0),($22|0),($77|0))|0); + $85 = tempRet0; + $86 = (___muldi3(($10|0),($53|0),($22|0),($77|0))|0); + $87 = tempRet0; + $88 = ($26|0)<(0); + $89 = $88 << 31 >> 31; + $90 = (___muldi3(($26|0),($89|0),($22|0),($77|0))|0); + $91 = tempRet0; + $92 = (___muldi3(($14|0),($61|0),($22|0),($77|0))|0); + $93 = tempRet0; + $94 = ($28|0)<(0); + $95 = $94 << 31 >> 31; + $96 = (___muldi3(($28|0),($95|0),($22|0),($77|0))|0); + $97 = tempRet0; + $98 = (___muldi3(($18|0),($69|0),($22|0),($77|0))|0); + $99 = tempRet0; + $100 = ($33|0)<(0); + $101 = $100 << 31 >> 31; + $102 = (___muldi3(($33|0),($101|0),($22|0),($77|0))|0); + $103 = tempRet0; + $104 = (___muldi3(($6|0),($45|0),($6|0),($45|0))|0); + $105 = tempRet0; + $106 = ($23|0)<(0); + $107 = $106 << 31 >> 31; + $108 = (___muldi3(($23|0),($107|0),($8|0),($49|0))|0); + $109 = tempRet0; + $110 = (___muldi3(($10|0),($53|0),($23|0),($107|0))|0); + $111 = tempRet0; + $112 = (___muldi3(($12|0),($57|0),($23|0),($107|0))|0); + $113 = tempRet0; + $114 = (___muldi3(($14|0),($61|0),($23|0),($107|0))|0); + $115 = tempRet0; + $116 = (___muldi3(($16|0),($65|0),($23|0),($107|0))|0); + $117 = tempRet0; + $118 = ($32|0)<(0); + $119 = $118 << 31 >> 31; + $120 = (___muldi3(($32|0),($119|0),($23|0),($107|0))|0); + $121 = tempRet0; + $122 = (___muldi3(($33|0),($101|0),($6|0),($45|0))|0); + $123 = tempRet0; + $124 = (___muldi3(($24|0),($83|0),($8|0),($49|0))|0); + $125 = tempRet0; + $126 = (___muldi3(($24|0),($83|0),($10|0),($53|0))|0); + $127 = tempRet0; + $128 = (___muldi3(($26|0),($89|0),($24|0),($83|0))|0); + $129 = tempRet0; + $130 = (___muldi3(($14|0),($61|0),($24|0),($83|0))|0); + $131 = tempRet0; + $132 = ($31|0)<(0); + $133 = $132 << 31 >> 31; + $134 = (___muldi3(($31|0),($133|0),($24|0),($83|0))|0); + $135 = tempRet0; + $136 = (___muldi3(($32|0),($119|0),($24|0),($83|0))|0); + $137 = tempRet0; + $138 = (___muldi3(($33|0),($101|0),($24|0),($83|0))|0); + $139 = tempRet0; + $140 = (___muldi3(($10|0),($53|0),($10|0),($53|0))|0); + $141 = tempRet0; + $142 = ($25|0)<(0); + $143 = $142 << 31 >> 31; + $144 = (___muldi3(($25|0),($143|0),($12|0),($57|0))|0); + $145 = tempRet0; + $146 = ($30|0)<(0); + $147 = $146 << 31 >> 31; + $148 = (___muldi3(($30|0),($147|0),($25|0),($143|0))|0); + $149 = tempRet0; + $150 = (___muldi3(($31|0),($133|0),($10|0),($53|0))|0); + $151 = tempRet0; + $152 = (___muldi3(($32|0),($119|0),($25|0),($143|0))|0); + $153 = tempRet0; + $154 = (___muldi3(($33|0),($101|0),($10|0),($53|0))|0); + $155 = tempRet0; + $156 = ($29|0)<(0); + $157 = $156 << 31 >> 31; + $158 = (___muldi3(($29|0),($157|0),($12|0),($57|0))|0); + $159 = tempRet0; + $160 = (___muldi3(($30|0),($147|0),($26|0),($89|0))|0); + $161 = tempRet0; + $162 = (___muldi3(($31|0),($133|0),($26|0),($89|0))|0); + $163 = tempRet0; + $164 = (___muldi3(($32|0),($119|0),($26|0),($89|0))|0); + $165 = tempRet0; + $166 = (___muldi3(($33|0),($101|0),($26|0),($89|0))|0); + $167 = tempRet0; + $168 = (___muldi3(($30|0),($147|0),($14|0),($61|0))|0); + $169 = tempRet0; + $170 = (___muldi3(($31|0),($133|0),($14|0),($61|0))|0); + $171 = tempRet0; + $172 = ($27|0)<(0); + $173 = $172 << 31 >> 31; + $174 = (___muldi3(($32|0),($119|0),($27|0),($173|0))|0); + $175 = tempRet0; + $176 = (___muldi3(($33|0),($101|0),($14|0),($61|0))|0); + $177 = tempRet0; + $178 = (___muldi3(($31|0),($133|0),($16|0),($65|0))|0); + $179 = tempRet0; + $180 = (___muldi3(($32|0),($119|0),($28|0),($95|0))|0); + $181 = tempRet0; + $182 = (___muldi3(($33|0),($101|0),($28|0),($95|0))|0); + $183 = tempRet0; + $184 = (___muldi3(($32|0),($119|0),($18|0),($69|0))|0); + $185 = tempRet0; + $186 = (___muldi3(($33|0),($101|0),($18|0),($69|0))|0); + $187 = tempRet0; + $188 = (___muldi3(($33|0),($101|0),($20|0),($73|0))|0); + $189 = tempRet0; + $190 = (_i64Add(($158|0),($159|0),($36|0),($37|0))|0); + $191 = tempRet0; + $192 = (_i64Add(($190|0),($191|0),($148|0),($149|0))|0); + $193 = tempRet0; + $194 = (_i64Add(($192|0),($193|0),($134|0),($135|0))|0); + $195 = tempRet0; + $196 = (_i64Add(($194|0),($195|0),($120|0),($121|0))|0); + $197 = tempRet0; + $198 = (_i64Add(($196|0),($197|0),($102|0),($103|0))|0); + $199 = tempRet0; + $200 = (_i64Add(($160|0),($161|0),($42|0),($43|0))|0); + $201 = tempRet0; + $202 = (_i64Add(($200|0),($201|0),($150|0),($151|0))|0); + $203 = tempRet0; + $204 = (_i64Add(($202|0),($203|0),($136|0),($137|0))|0); + $205 = tempRet0; + $206 = (_i64Add(($204|0),($205|0),($122|0),($123|0))|0); + $207 = tempRet0; + $208 = (_i64Add(($46|0),($47|0),($78|0),($79|0))|0); + $209 = tempRet0; + $210 = (_i64Add(($208|0),($209|0),($168|0),($169|0))|0); + $211 = tempRet0; + $212 = (_i64Add(($210|0),($211|0),($162|0),($163|0))|0); + $213 = tempRet0; + $214 = (_i64Add(($212|0),($213|0),($152|0),($153|0))|0); + $215 = tempRet0; + $216 = (_i64Add(($214|0),($215|0),($138|0),($139|0))|0); + $217 = tempRet0; + $218 = (_i64Add(($50|0),($51|0),($80|0),($81|0))|0); + $219 = tempRet0; + $220 = (_i64Add(($218|0),($219|0),($170|0),($171|0))|0); + $221 = tempRet0; + $222 = (_i64Add(($220|0),($221|0),($164|0),($165|0))|0); + $223 = tempRet0; + $224 = (_i64Add(($222|0),($223|0),($154|0),($155|0))|0); + $225 = tempRet0; + $226 = (_i64Add(($84|0),($85|0),($104|0),($105|0))|0); + $227 = tempRet0; + $228 = (_i64Add(($226|0),($227|0),($54|0),($55|0))|0); + $229 = tempRet0; + $230 = (_i64Add(($228|0),($229|0),($178|0),($179|0))|0); + $231 = tempRet0; + $232 = (_i64Add(($230|0),($231|0),($174|0),($175|0))|0); + $233 = tempRet0; + $234 = (_i64Add(($232|0),($233|0),($166|0),($167|0))|0); + $235 = tempRet0; + $236 = (_i64Add(($86|0),($87|0),($108|0),($109|0))|0); + $237 = tempRet0; + $238 = (_i64Add(($236|0),($237|0),($58|0),($59|0))|0); + $239 = tempRet0; + $240 = (_i64Add(($238|0),($239|0),($180|0),($181|0))|0); + $241 = tempRet0; + $242 = (_i64Add(($240|0),($241|0),($176|0),($177|0))|0); + $243 = tempRet0; + $244 = (_i64Add(($124|0),($125|0),($110|0),($111|0))|0); + $245 = tempRet0; + $246 = (_i64Add(($244|0),($245|0),($90|0),($91|0))|0); + $247 = tempRet0; + $248 = (_i64Add(($246|0),($247|0),($62|0),($63|0))|0); + $249 = tempRet0; + $250 = (_i64Add(($248|0),($249|0),($184|0),($185|0))|0); + $251 = tempRet0; + $252 = (_i64Add(($250|0),($251|0),($182|0),($183|0))|0); + $253 = tempRet0; + $254 = (_i64Add(($112|0),($113|0),($126|0),($127|0))|0); + $255 = tempRet0; + $256 = (_i64Add(($254|0),($255|0),($92|0),($93|0))|0); + $257 = tempRet0; + $258 = (_i64Add(($256|0),($257|0),($66|0),($67|0))|0); + $259 = tempRet0; + $260 = (_i64Add(($258|0),($259|0),($186|0),($187|0))|0); + $261 = tempRet0; + $262 = (_i64Add(($114|0),($115|0),($140|0),($141|0))|0); + $263 = tempRet0; + $264 = (_i64Add(($262|0),($263|0),($128|0),($129|0))|0); + $265 = tempRet0; + $266 = (_i64Add(($264|0),($265|0),($96|0),($97|0))|0); + $267 = tempRet0; + $268 = (_i64Add(($266|0),($267|0),($70|0),($71|0))|0); + $269 = tempRet0; + $270 = (_i64Add(($268|0),($269|0),($188|0),($189|0))|0); + $271 = tempRet0; + $272 = (_i64Add(($130|0),($131|0),($144|0),($145|0))|0); + $273 = tempRet0; + $274 = (_i64Add(($272|0),($273|0),($116|0),($117|0))|0); + $275 = tempRet0; + $276 = (_i64Add(($274|0),($275|0),($98|0),($99|0))|0); + $277 = tempRet0; + $278 = (_i64Add(($276|0),($277|0),($74|0),($75|0))|0); + $279 = tempRet0; + $280 = (_bitshift64Shl(($198|0),($199|0),1)|0); + $281 = tempRet0; + $282 = (_bitshift64Shl(($206|0),($207|0),1)|0); + $283 = tempRet0; + $284 = (_bitshift64Shl(($216|0),($217|0),1)|0); + $285 = tempRet0; + $286 = (_bitshift64Shl(($224|0),($225|0),1)|0); + $287 = tempRet0; + $288 = (_bitshift64Shl(($234|0),($235|0),1)|0); + $289 = tempRet0; + $290 = (_bitshift64Shl(($242|0),($243|0),1)|0); + $291 = tempRet0; + $292 = (_bitshift64Shl(($252|0),($253|0),1)|0); + $293 = tempRet0; + $294 = (_bitshift64Shl(($260|0),($261|0),1)|0); + $295 = tempRet0; + $296 = (_bitshift64Shl(($270|0),($271|0),1)|0); + $297 = tempRet0; + $298 = (_bitshift64Shl(($278|0),($279|0),1)|0); + $299 = tempRet0; + $300 = (_i64Add(($280|0),($281|0),33554432,0)|0); + $301 = tempRet0; + $302 = (_bitshift64Ashr(($300|0),($301|0),26)|0); + $303 = tempRet0; + $304 = (_i64Add(($302|0),($303|0),($282|0),($283|0))|0); + $305 = tempRet0; + $306 = (_bitshift64Shl(($302|0),($303|0),26)|0); + $307 = tempRet0; + $308 = (_i64Subtract(($280|0),($281|0),($306|0),($307|0))|0); + $309 = tempRet0; + $310 = (_i64Add(($288|0),($289|0),33554432,0)|0); + $311 = tempRet0; + $312 = (_bitshift64Ashr(($310|0),($311|0),26)|0); + $313 = tempRet0; + $314 = (_i64Add(($312|0),($313|0),($290|0),($291|0))|0); + $315 = tempRet0; + $316 = (_bitshift64Shl(($312|0),($313|0),26)|0); + $317 = tempRet0; + $318 = (_i64Subtract(($288|0),($289|0),($316|0),($317|0))|0); + $319 = tempRet0; + $320 = (_i64Add(($304|0),($305|0),16777216,0)|0); + $321 = tempRet0; + $322 = (_bitshift64Ashr(($320|0),($321|0),25)|0); + $323 = tempRet0; + $324 = (_i64Add(($322|0),($323|0),($284|0),($285|0))|0); + $325 = tempRet0; + $326 = (_bitshift64Shl(($322|0),($323|0),25)|0); + $327 = tempRet0; + $328 = (_i64Subtract(($304|0),($305|0),($326|0),($327|0))|0); + $329 = tempRet0; + $330 = (_i64Add(($314|0),($315|0),16777216,0)|0); + $331 = tempRet0; + $332 = (_bitshift64Ashr(($330|0),($331|0),25)|0); + $333 = tempRet0; + $334 = (_i64Add(($332|0),($333|0),($292|0),($293|0))|0); + $335 = tempRet0; + $336 = (_bitshift64Shl(($332|0),($333|0),25)|0); + $337 = tempRet0; + $338 = (_i64Subtract(($314|0),($315|0),($336|0),($337|0))|0); + $339 = tempRet0; + $340 = (_i64Add(($324|0),($325|0),33554432,0)|0); + $341 = tempRet0; + $342 = (_bitshift64Ashr(($340|0),($341|0),26)|0); + $343 = tempRet0; + $344 = (_i64Add(($342|0),($343|0),($286|0),($287|0))|0); + $345 = tempRet0; + $346 = (_bitshift64Shl(($342|0),($343|0),26)|0); + $347 = tempRet0; + $348 = (_i64Subtract(($324|0),($325|0),($346|0),($347|0))|0); + $349 = tempRet0; + $350 = (_i64Add(($334|0),($335|0),33554432,0)|0); + $351 = tempRet0; + $352 = (_bitshift64Ashr(($350|0),($351|0),26)|0); + $353 = tempRet0; + $354 = (_i64Add(($352|0),($353|0),($294|0),($295|0))|0); + $355 = tempRet0; + $356 = (_bitshift64Shl(($352|0),($353|0),26)|0); + $357 = tempRet0; + $358 = (_i64Subtract(($334|0),($335|0),($356|0),($357|0))|0); + $359 = tempRet0; + $360 = (_i64Add(($344|0),($345|0),16777216,0)|0); + $361 = tempRet0; + $362 = (_bitshift64Ashr(($360|0),($361|0),25)|0); + $363 = tempRet0; + $364 = (_i64Add(($362|0),($363|0),($318|0),($319|0))|0); + $365 = tempRet0; + $366 = (_bitshift64Shl(($362|0),($363|0),25)|0); + $367 = tempRet0; + $368 = (_i64Subtract(($344|0),($345|0),($366|0),($367|0))|0); + $369 = tempRet0; + $370 = (_i64Add(($354|0),($355|0),16777216,0)|0); + $371 = tempRet0; + $372 = (_bitshift64Ashr(($370|0),($371|0),25)|0); + $373 = tempRet0; + $374 = (_i64Add(($372|0),($373|0),($296|0),($297|0))|0); + $375 = tempRet0; + $376 = (_bitshift64Shl(($372|0),($373|0),25)|0); + $377 = tempRet0; + $378 = (_i64Subtract(($354|0),($355|0),($376|0),($377|0))|0); + $379 = tempRet0; + $380 = (_i64Add(($364|0),($365|0),33554432,0)|0); + $381 = tempRet0; + $382 = (_bitshift64Ashr(($380|0),($381|0),26)|0); + $383 = tempRet0; + $384 = (_i64Add(($338|0),($339|0),($382|0),($383|0))|0); + $385 = tempRet0; + $386 = (_bitshift64Shl(($382|0),($383|0),26)|0); + $387 = tempRet0; + $388 = (_i64Subtract(($364|0),($365|0),($386|0),($387|0))|0); + $389 = tempRet0; + $390 = (_i64Add(($374|0),($375|0),33554432,0)|0); + $391 = tempRet0; + $392 = (_bitshift64Ashr(($390|0),($391|0),26)|0); + $393 = tempRet0; + $394 = (_i64Add(($392|0),($393|0),($298|0),($299|0))|0); + $395 = tempRet0; + $396 = (_bitshift64Shl(($392|0),($393|0),26)|0); + $397 = tempRet0; + $398 = (_i64Subtract(($374|0),($375|0),($396|0),($397|0))|0); + $399 = tempRet0; + $400 = (_i64Add(($394|0),($395|0),16777216,0)|0); + $401 = tempRet0; + $402 = (_bitshift64Ashr(($400|0),($401|0),25)|0); + $403 = tempRet0; + $404 = (___muldi3(($402|0),($403|0),19,0)|0); + $405 = tempRet0; + $406 = (_i64Add(($404|0),($405|0),($308|0),($309|0))|0); + $407 = tempRet0; + $408 = (_bitshift64Shl(($402|0),($403|0),25)|0); + $409 = tempRet0; + $410 = (_i64Subtract(($394|0),($395|0),($408|0),($409|0))|0); + $411 = tempRet0; + $412 = (_i64Add(($406|0),($407|0),33554432,0)|0); + $413 = tempRet0; + $414 = (_bitshift64Ashr(($412|0),($413|0),26)|0); + $415 = tempRet0; + $416 = (_i64Add(($328|0),($329|0),($414|0),($415|0))|0); + $417 = tempRet0; + $418 = (_bitshift64Shl(($414|0),($415|0),26)|0); + $419 = tempRet0; + $420 = (_i64Subtract(($406|0),($407|0),($418|0),($419|0))|0); + $421 = tempRet0; + HEAP32[$0>>2] = $420; + $422 = ((($0)) + 4|0); + HEAP32[$422>>2] = $416; + $423 = ((($0)) + 8|0); + HEAP32[$423>>2] = $348; + $424 = ((($0)) + 12|0); + HEAP32[$424>>2] = $368; + $425 = ((($0)) + 16|0); + HEAP32[$425>>2] = $388; + $426 = ((($0)) + 20|0); + HEAP32[$426>>2] = $384; + $427 = ((($0)) + 24|0); + HEAP32[$427>>2] = $358; + $428 = ((($0)) + 28|0); + HEAP32[$428>>2] = $378; + $429 = ((($0)) + 32|0); + HEAP32[$429>>2] = $398; + $430 = ((($0)) + 36|0); + HEAP32[$430>>2] = $410; + return; +} +function _crypto_sign_ed25519_ref10_fe_sub($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0; + var $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0; + var $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $3 = HEAP32[$1>>2]|0; + $4 = ((($1)) + 4|0); + $5 = HEAP32[$4>>2]|0; + $6 = ((($1)) + 8|0); + $7 = HEAP32[$6>>2]|0; + $8 = ((($1)) + 12|0); + $9 = HEAP32[$8>>2]|0; + $10 = ((($1)) + 16|0); + $11 = HEAP32[$10>>2]|0; + $12 = ((($1)) + 20|0); + $13 = HEAP32[$12>>2]|0; + $14 = ((($1)) + 24|0); + $15 = HEAP32[$14>>2]|0; + $16 = ((($1)) + 28|0); + $17 = HEAP32[$16>>2]|0; + $18 = ((($1)) + 32|0); + $19 = HEAP32[$18>>2]|0; + $20 = ((($1)) + 36|0); + $21 = HEAP32[$20>>2]|0; + $22 = HEAP32[$2>>2]|0; + $23 = ((($2)) + 4|0); + $24 = HEAP32[$23>>2]|0; + $25 = ((($2)) + 8|0); + $26 = HEAP32[$25>>2]|0; + $27 = ((($2)) + 12|0); + $28 = HEAP32[$27>>2]|0; + $29 = ((($2)) + 16|0); + $30 = HEAP32[$29>>2]|0; + $31 = ((($2)) + 20|0); + $32 = HEAP32[$31>>2]|0; + $33 = ((($2)) + 24|0); + $34 = HEAP32[$33>>2]|0; + $35 = ((($2)) + 28|0); + $36 = HEAP32[$35>>2]|0; + $37 = ((($2)) + 32|0); + $38 = HEAP32[$37>>2]|0; + $39 = ((($2)) + 36|0); + $40 = HEAP32[$39>>2]|0; + $41 = (($3) - ($22))|0; + $42 = (($5) - ($24))|0; + $43 = (($7) - ($26))|0; + $44 = (($9) - ($28))|0; + $45 = (($11) - ($30))|0; + $46 = (($13) - ($32))|0; + $47 = (($15) - ($34))|0; + $48 = (($17) - ($36))|0; + $49 = (($19) - ($38))|0; + $50 = (($21) - ($40))|0; + HEAP32[$0>>2] = $41; + $51 = ((($0)) + 4|0); + HEAP32[$51>>2] = $42; + $52 = ((($0)) + 8|0); + HEAP32[$52>>2] = $43; + $53 = ((($0)) + 12|0); + HEAP32[$53>>2] = $44; + $54 = ((($0)) + 16|0); + HEAP32[$54>>2] = $45; + $55 = ((($0)) + 20|0); + HEAP32[$55>>2] = $46; + $56 = ((($0)) + 24|0); + HEAP32[$56>>2] = $47; + $57 = ((($0)) + 28|0); + HEAP32[$57>>2] = $48; + $58 = ((($0)) + 32|0); + HEAP32[$58>>2] = $49; + $59 = ((($0)) + 36|0); + HEAP32[$59>>2] = $50; + return; +} +function _crypto_sign_ed25519_ref10_fe_tobytes($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0; + var $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0; + var $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0; + var $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0; + var $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = HEAP32[$1>>2]|0; + $3 = ((($1)) + 4|0); + $4 = HEAP32[$3>>2]|0; + $5 = ((($1)) + 8|0); + $6 = HEAP32[$5>>2]|0; + $7 = ((($1)) + 12|0); + $8 = HEAP32[$7>>2]|0; + $9 = ((($1)) + 16|0); + $10 = HEAP32[$9>>2]|0; + $11 = ((($1)) + 20|0); + $12 = HEAP32[$11>>2]|0; + $13 = ((($1)) + 24|0); + $14 = HEAP32[$13>>2]|0; + $15 = ((($1)) + 28|0); + $16 = HEAP32[$15>>2]|0; + $17 = ((($1)) + 32|0); + $18 = HEAP32[$17>>2]|0; + $19 = ((($1)) + 36|0); + $20 = HEAP32[$19>>2]|0; + $21 = ($20*19)|0; + $22 = (($21) + 16777216)|0; + $23 = $22 >> 25; + $24 = (($23) + ($2))|0; + $25 = $24 >> 26; + $26 = (($25) + ($4))|0; + $27 = $26 >> 25; + $28 = (($27) + ($6))|0; + $29 = $28 >> 26; + $30 = (($29) + ($8))|0; + $31 = $30 >> 25; + $32 = (($31) + ($10))|0; + $33 = $32 >> 26; + $34 = (($33) + ($12))|0; + $35 = $34 >> 25; + $36 = (($35) + ($14))|0; + $37 = $36 >> 26; + $38 = (($37) + ($16))|0; + $39 = $38 >> 25; + $40 = (($39) + ($18))|0; + $41 = $40 >> 26; + $42 = (($41) + ($20))|0; + $43 = $42 >> 25; + $44 = ($43*19)|0; + $45 = (($44) + ($2))|0; + $46 = $45 >> 26; + $47 = (($46) + ($4))|0; + $48 = $46 << 26; + $49 = (($45) - ($48))|0; + $50 = $47 >> 25; + $51 = (($50) + ($6))|0; + $52 = $50 << 25; + $53 = (($47) - ($52))|0; + $54 = $51 >> 26; + $55 = (($54) + ($8))|0; + $56 = $54 << 26; + $57 = (($51) - ($56))|0; + $58 = $55 >> 25; + $59 = (($58) + ($10))|0; + $60 = $58 << 25; + $61 = (($55) - ($60))|0; + $62 = $59 >> 26; + $63 = (($62) + ($12))|0; + $64 = $62 << 26; + $65 = (($59) - ($64))|0; + $66 = $63 >> 25; + $67 = (($66) + ($14))|0; + $68 = $66 << 25; + $69 = (($63) - ($68))|0; + $70 = $67 >> 26; + $71 = (($70) + ($16))|0; + $72 = $70 << 26; + $73 = (($67) - ($72))|0; + $74 = $71 >> 25; + $75 = (($74) + ($18))|0; + $76 = $74 << 25; + $77 = (($71) - ($76))|0; + $78 = $75 >> 26; + $79 = (($78) + ($20))|0; + $80 = $78 << 26; + $81 = (($75) - ($80))|0; + $82 = $79 & 33554431; + $83 = $49&255; + HEAP8[$0>>0] = $83; + $84 = $49 >>> 8; + $85 = $84&255; + $86 = ((($0)) + 1|0); + HEAP8[$86>>0] = $85; + $87 = $49 >>> 16; + $88 = $87&255; + $89 = ((($0)) + 2|0); + HEAP8[$89>>0] = $88; + $90 = $49 >>> 24; + $91 = $53 << 2; + $92 = $91 | $90; + $93 = $92&255; + $94 = ((($0)) + 3|0); + HEAP8[$94>>0] = $93; + $95 = $53 >>> 6; + $96 = $95&255; + $97 = ((($0)) + 4|0); + HEAP8[$97>>0] = $96; + $98 = $53 >>> 14; + $99 = $98&255; + $100 = ((($0)) + 5|0); + HEAP8[$100>>0] = $99; + $101 = $53 >>> 22; + $102 = $57 << 3; + $103 = $102 | $101; + $104 = $103&255; + $105 = ((($0)) + 6|0); + HEAP8[$105>>0] = $104; + $106 = $57 >>> 5; + $107 = $106&255; + $108 = ((($0)) + 7|0); + HEAP8[$108>>0] = $107; + $109 = $57 >>> 13; + $110 = $109&255; + $111 = ((($0)) + 8|0); + HEAP8[$111>>0] = $110; + $112 = $57 >>> 21; + $113 = $61 << 5; + $114 = $113 | $112; + $115 = $114&255; + $116 = ((($0)) + 9|0); + HEAP8[$116>>0] = $115; + $117 = $61 >>> 3; + $118 = $117&255; + $119 = ((($0)) + 10|0); + HEAP8[$119>>0] = $118; + $120 = $61 >>> 11; + $121 = $120&255; + $122 = ((($0)) + 11|0); + HEAP8[$122>>0] = $121; + $123 = $61 >>> 19; + $124 = $65 << 6; + $125 = $124 | $123; + $126 = $125&255; + $127 = ((($0)) + 12|0); + HEAP8[$127>>0] = $126; + $128 = $65 >>> 2; + $129 = $128&255; + $130 = ((($0)) + 13|0); + HEAP8[$130>>0] = $129; + $131 = $65 >>> 10; + $132 = $131&255; + $133 = ((($0)) + 14|0); + HEAP8[$133>>0] = $132; + $134 = $65 >>> 18; + $135 = $134&255; + $136 = ((($0)) + 15|0); + HEAP8[$136>>0] = $135; + $137 = $69&255; + $138 = ((($0)) + 16|0); + HEAP8[$138>>0] = $137; + $139 = $69 >>> 8; + $140 = $139&255; + $141 = ((($0)) + 17|0); + HEAP8[$141>>0] = $140; + $142 = $69 >>> 16; + $143 = $142&255; + $144 = ((($0)) + 18|0); + HEAP8[$144>>0] = $143; + $145 = $69 >>> 24; + $146 = $73 << 1; + $147 = $146 | $145; + $148 = $147&255; + $149 = ((($0)) + 19|0); + HEAP8[$149>>0] = $148; + $150 = $73 >>> 7; + $151 = $150&255; + $152 = ((($0)) + 20|0); + HEAP8[$152>>0] = $151; + $153 = $73 >>> 15; + $154 = $153&255; + $155 = ((($0)) + 21|0); + HEAP8[$155>>0] = $154; + $156 = $73 >>> 23; + $157 = $77 << 3; + $158 = $157 | $156; + $159 = $158&255; + $160 = ((($0)) + 22|0); + HEAP8[$160>>0] = $159; + $161 = $77 >>> 5; + $162 = $161&255; + $163 = ((($0)) + 23|0); + HEAP8[$163>>0] = $162; + $164 = $77 >>> 13; + $165 = $164&255; + $166 = ((($0)) + 24|0); + HEAP8[$166>>0] = $165; + $167 = $77 >>> 21; + $168 = $81 << 4; + $169 = $168 | $167; + $170 = $169&255; + $171 = ((($0)) + 25|0); + HEAP8[$171>>0] = $170; + $172 = $81 >>> 4; + $173 = $172&255; + $174 = ((($0)) + 26|0); + HEAP8[$174>>0] = $173; + $175 = $81 >>> 12; + $176 = $175&255; + $177 = ((($0)) + 27|0); + HEAP8[$177>>0] = $176; + $178 = $81 >>> 20; + $179 = $82 << 6; + $180 = $178 | $179; + $181 = $180&255; + $182 = ((($0)) + 28|0); + HEAP8[$182>>0] = $181; + $183 = $79 >>> 2; + $184 = $183&255; + $185 = ((($0)) + 29|0); + HEAP8[$185>>0] = $184; + $186 = $79 >>> 10; + $187 = $186&255; + $188 = ((($0)) + 30|0); + HEAP8[$188>>0] = $187; + $189 = $82 >>> 18; + $190 = $189&255; + $191 = ((($0)) + 31|0); + HEAP8[$191>>0] = $190; + return; +} +function _crypto_sign_ed25519_ref10_ge_add($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $3 = sp; + $4 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($0,$4,$1); + $5 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($5,$4,$1); + $6 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($6,$0,$2); + $7 = ((($2)) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($5,$5,$7); + $8 = ((($0)) + 120|0); + $9 = ((($2)) + 120|0); + $10 = ((($1)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($8,$9,$10); + $11 = ((($1)) + 80|0); + $12 = ((($2)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($0,$11,$12); + _crypto_sign_ed25519_ref10_fe_add($3,$0,$0); + _crypto_sign_ed25519_ref10_fe_sub($0,$6,$5); + _crypto_sign_ed25519_ref10_fe_add($5,$6,$5); + _crypto_sign_ed25519_ref10_fe_add($6,$3,$8); + _crypto_sign_ed25519_ref10_fe_sub($8,$3,$8); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_double_scalarmult_vartime($0,$1,$2,$3) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + var $$0$lcssa = 0, $$022 = 0, $$121 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0; + var $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 2272|0; + $4 = sp + 2016|0; + $5 = sp + 1760|0; + $6 = sp + 480|0; + $7 = sp + 320|0; + $8 = sp + 160|0; + $9 = sp; + _slide($4,$1); + _slide($5,$3); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($6,$2); + _crypto_sign_ed25519_ref10_ge_p3_dbl($7,$2); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($9,$7); + _crypto_sign_ed25519_ref10_ge_add($7,$9,$6); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $10 = ((($6)) + 160|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($10,$8); + _crypto_sign_ed25519_ref10_ge_add($7,$9,$10); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $11 = ((($6)) + 320|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($11,$8); + _crypto_sign_ed25519_ref10_ge_add($7,$9,$11); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $12 = ((($6)) + 480|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($12,$8); + _crypto_sign_ed25519_ref10_ge_add($7,$9,$12); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $13 = ((($6)) + 640|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($13,$8); + _crypto_sign_ed25519_ref10_ge_add($7,$9,$13); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $14 = ((($6)) + 800|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($14,$8); + _crypto_sign_ed25519_ref10_ge_add($7,$9,$14); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $15 = ((($6)) + 960|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($15,$8); + _crypto_sign_ed25519_ref10_ge_add($7,$9,$15); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $16 = ((($6)) + 1120|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($16,$8); + _crypto_sign_ed25519_ref10_ge_p2_0($0); + $$022 = 255; + while(1) { + $17 = (($4) + ($$022)|0); + $18 = HEAP8[$17>>0]|0; + $19 = ($18<<24>>24)==(0); + if (!($19)) { + $$0$lcssa = $$022; + break; + } + $20 = (($5) + ($$022)|0); + $21 = HEAP8[$20>>0]|0; + $22 = ($21<<24>>24)==(0); + if (!($22)) { + $$0$lcssa = $$022; + break; + } + $24 = (($$022) + -1)|0; + $25 = ($$022|0)>(0); + if ($25) { + $$022 = $24; + } else { + $$0$lcssa = $24; + break; + } + } + $23 = ($$0$lcssa|0)>(-1); + if ($23) { + $$121 = $$0$lcssa; + } else { + STACKTOP = sp;return; + } + while(1) { + _crypto_sign_ed25519_ref10_ge_p2_dbl($7,$0); + $26 = (($4) + ($$121)|0); + $27 = HEAP8[$26>>0]|0; + $28 = ($27<<24>>24)>(0); + if ($28) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $29 = HEAP8[$26>>0]|0; + $30 = (($29<<24>>24) / 2)&-1; + $31 = $30 << 24 >> 24; + $32 = (($6) + (($31*160)|0)|0); + _crypto_sign_ed25519_ref10_ge_add($7,$8,$32); + } else { + $33 = ($27<<24>>24)<(0); + if ($33) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $34 = HEAP8[$26>>0]|0; + $35 = (($34<<24>>24) / -2)&-1; + $36 = $35 << 24 >> 24; + $37 = (($6) + (($36*160)|0)|0); + _crypto_sign_ed25519_ref10_ge_sub($7,$8,$37); + } + } + $38 = (($5) + ($$121)|0); + $39 = HEAP8[$38>>0]|0; + $40 = ($39<<24>>24)>(0); + if ($40) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $41 = HEAP8[$38>>0]|0; + $42 = (($41<<24>>24) / 2)&-1; + $43 = $42 << 24 >> 24; + $44 = (712 + (($43*120)|0)|0); + _crypto_sign_ed25519_ref10_ge_madd($7,$8,$44); + } else { + $45 = ($39<<24>>24)<(0); + if ($45) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $46 = HEAP8[$38>>0]|0; + $47 = (($46<<24>>24) / -2)&-1; + $48 = $47 << 24 >> 24; + $49 = (712 + (($48*120)|0)|0); + _crypto_sign_ed25519_ref10_ge_msub($7,$8,$49); + } + } + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($0,$7); + $50 = (($$121) + -1)|0; + $51 = ($$121|0)>(0); + if ($51) { + $$121 = $50; + } else { + break; + } + } + STACKTOP = sp;return; +} +function _slide($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$05559 = 0, $$05663 = 0, $$058 = 0, $$160 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0; + var $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0; + var $exitcond = 0, $exitcond65 = 0, label = 0, sp = 0; + sp = STACKTOP; + $$05663 = 0; + while(1) { + $2 = $$05663 >> 3; + $3 = (($1) + ($2)|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = $$05663 & 7; + $7 = $5 >>> $6; + $8 = $7 & 1; + $9 = $8&255; + $10 = (($0) + ($$05663)|0); + HEAP8[$10>>0] = $9; + $11 = (($$05663) + 1)|0; + $exitcond65 = ($11|0)==(256); + if ($exitcond65) { + $$160 = 0; + break; + } else { + $$05663 = $11; + } + } + while(1) { + $12 = (($0) + ($$160)|0); + $13 = HEAP8[$12>>0]|0; + $14 = ($13<<24>>24)==(0); + L5: do { + if (!($14)) { + $$05559 = 1; + while(1) { + $15 = (($$05559) + ($$160))|0; + $16 = ($15|0)<(256); + if (!($16)) { + break L5; + } + $17 = (($0) + ($15)|0); + $18 = HEAP8[$17>>0]|0; + $19 = ($18<<24>>24)==(0); + L9: do { + if (!($19)) { + $20 = HEAP8[$12>>0]|0; + $21 = $20 << 24 >> 24; + $22 = $18 << 24 >> 24; + $23 = $22 << $$05559; + $24 = (($21) + ($23))|0; + $25 = ($24|0)<(16); + if ($25) { + $26 = $24&255; + HEAP8[$12>>0] = $26; + HEAP8[$17>>0] = 0; + break; + } + $27 = (($21) - ($23))|0; + $28 = ($27|0)>(-16); + if (!($28)) { + break L5; + } + $29 = $27&255; + HEAP8[$12>>0] = $29; + $$058 = $15; + while(1) { + $30 = (($0) + ($$058)|0); + $31 = HEAP8[$30>>0]|0; + $32 = ($31<<24>>24)==(0); + if ($32) { + break; + } + HEAP8[$30>>0] = 0; + $33 = (($$058) + 1)|0; + $34 = ($33|0)<(256); + if ($34) { + $$058 = $33; + } else { + break L9; + } + } + HEAP8[$30>>0] = 1; + } + } while(0); + $35 = (($$05559) + 1)|0; + $36 = ($35|0)<(7); + if ($36) { + $$05559 = $35; + } else { + break; + } + } + } + } while(0); + $37 = (($$160) + 1)|0; + $exitcond = ($37|0)==(256); + if ($exitcond) { + break; + } else { + $$160 = $37; + } + } + return; +} +function _crypto_sign_ed25519_ref10_ge_frombytes_negate_vartime($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$0 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0; + var sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 208|0; + $2 = sp + 160|0; + $3 = sp + 120|0; + $4 = sp + 80|0; + $5 = sp + 40|0; + $6 = sp; + $7 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_frombytes($7,$1); + $8 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_1($8); + _crypto_sign_ed25519_ref10_fe_sq($2,$7); + _crypto_sign_ed25519_ref10_fe_mul($3,$2,1672); + _crypto_sign_ed25519_ref10_fe_sub($2,$2,$8); + _crypto_sign_ed25519_ref10_fe_add($3,$3,$8); + _crypto_sign_ed25519_ref10_fe_sq($4,$3); + _crypto_sign_ed25519_ref10_fe_mul($4,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($0,$4); + _crypto_sign_ed25519_ref10_fe_mul($0,$0,$3); + _crypto_sign_ed25519_ref10_fe_mul($0,$0,$2); + _crypto_sign_ed25519_ref10_fe_pow22523($0,$0); + _crypto_sign_ed25519_ref10_fe_mul($0,$0,$4); + _crypto_sign_ed25519_ref10_fe_mul($0,$0,$2); + _crypto_sign_ed25519_ref10_fe_sq($5,$0); + _crypto_sign_ed25519_ref10_fe_mul($5,$5,$3); + _crypto_sign_ed25519_ref10_fe_sub($6,$5,$2); + $9 = (_crypto_sign_ed25519_ref10_fe_isnonzero($6)|0); + $10 = ($9|0)==(0); + do { + if (!($10)) { + _crypto_sign_ed25519_ref10_fe_add($6,$5,$2); + $11 = (_crypto_sign_ed25519_ref10_fe_isnonzero($6)|0); + $12 = ($11|0)==(0); + if ($12) { + _crypto_sign_ed25519_ref10_fe_mul($0,$0,1712); + break; + } else { + $$0 = -1; + STACKTOP = sp;return ($$0|0); + } + } + } while(0); + $13 = (_crypto_sign_ed25519_ref10_fe_isnegative($0)|0); + $14 = ((($1)) + 31|0); + $15 = HEAP8[$14>>0]|0; + $16 = $15&255; + $17 = $16 >>> 7; + $18 = ($13|0)==($17|0); + if ($18) { + _crypto_sign_ed25519_ref10_fe_neg($0,$0); + } + $19 = ((($0)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($19,$0,$7); + $$0 = 0; + STACKTOP = sp;return ($$0|0); +} +function _crypto_sign_ed25519_ref10_ge_madd($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $3 = sp; + $4 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($0,$4,$1); + $5 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($5,$4,$1); + $6 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($6,$0,$2); + $7 = ((($2)) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($5,$5,$7); + $8 = ((($0)) + 120|0); + $9 = ((($2)) + 80|0); + $10 = ((($1)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($8,$9,$10); + $11 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_add($3,$11,$11); + _crypto_sign_ed25519_ref10_fe_sub($0,$6,$5); + _crypto_sign_ed25519_ref10_fe_add($5,$6,$5); + _crypto_sign_ed25519_ref10_fe_add($6,$3,$8); + _crypto_sign_ed25519_ref10_fe_sub($8,$3,$8); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_msub($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $3 = sp; + $4 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($0,$4,$1); + $5 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($5,$4,$1); + $6 = ((($0)) + 80|0); + $7 = ((($2)) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($6,$0,$7); + _crypto_sign_ed25519_ref10_fe_mul($5,$5,$2); + $8 = ((($0)) + 120|0); + $9 = ((($2)) + 80|0); + $10 = ((($1)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($8,$9,$10); + $11 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_add($3,$11,$11); + _crypto_sign_ed25519_ref10_fe_sub($0,$6,$5); + _crypto_sign_ed25519_ref10_fe_add($5,$6,$5); + _crypto_sign_ed25519_ref10_fe_sub($6,$3,$8); + _crypto_sign_ed25519_ref10_fe_add($8,$3,$8); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = ((($1)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($0,$1,$2); + $3 = ((($0)) + 40|0); + $4 = ((($1)) + 40|0); + $5 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($3,$4,$5); + $6 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($6,$5,$2); + return; +} +function _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = ((($1)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($0,$1,$2); + $3 = ((($0)) + 40|0); + $4 = ((($1)) + 40|0); + $5 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($3,$4,$5); + $6 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($6,$5,$2); + $7 = ((($0)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($7,$1,$4); + return; +} +function _crypto_sign_ed25519_ref10_ge_p2_0($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, label = 0, sp = 0; + sp = STACKTOP; + _crypto_sign_ed25519_ref10_fe_0($0); + $1 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_1($1); + $2 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_1($2); + return; +} +function _crypto_sign_ed25519_ref10_ge_p2_dbl($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $2 = sp; + _crypto_sign_ed25519_ref10_fe_sq($0,$1); + $3 = ((($0)) + 80|0); + $4 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_sq($3,$4); + $5 = ((($0)) + 120|0); + $6 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_sq2($5,$6); + $7 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($7,$1,$4); + _crypto_sign_ed25519_ref10_fe_sq($2,$7); + _crypto_sign_ed25519_ref10_fe_add($7,$3,$0); + _crypto_sign_ed25519_ref10_fe_sub($3,$3,$0); + _crypto_sign_ed25519_ref10_fe_sub($0,$2,$7); + _crypto_sign_ed25519_ref10_fe_sub($5,$5,$3); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p3_0($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, $3 = 0, label = 0, sp = 0; + sp = STACKTOP; + _crypto_sign_ed25519_ref10_fe_0($0); + $1 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_1($1); + $2 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_1($2); + $3 = ((($0)) + 120|0); + _crypto_sign_ed25519_ref10_fe_0($3); + return; +} +function _crypto_sign_ed25519_ref10_ge_p3_dbl($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 128|0; + $2 = sp; + _crypto_sign_ed25519_ref10_ge_p3_to_p2($2,$1); + _crypto_sign_ed25519_ref10_ge_p2_dbl($0,$2); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_p3_to_cached($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($0,$2,$1); + $3 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($3,$2,$1); + $4 = ((($0)) + 80|0); + $5 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_copy($4,$5); + $6 = ((($0)) + 120|0); + $7 = ((($1)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($6,$7,1752); + return; +} +function _crypto_sign_ed25519_ref10_ge_p3_to_p2($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, label = 0, sp = 0; + sp = STACKTOP; + _crypto_sign_ed25519_ref10_fe_copy($0,$1); + $2 = ((($0)) + 40|0); + $3 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_copy($2,$3); + $4 = ((($0)) + 80|0); + $5 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_copy($4,$5); + return; +} +function _crypto_sign_ed25519_ref10_ge_p3_tobytes($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 128|0; + $2 = sp + 80|0; + $3 = sp + 40|0; + $4 = sp; + $5 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_invert($2,$5); + _crypto_sign_ed25519_ref10_fe_mul($3,$1,$2); + $6 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$6,$2); + _crypto_sign_ed25519_ref10_fe_tobytes($0,$4); + $7 = (_crypto_sign_ed25519_ref10_fe_isnegative($3)|0); + $8 = $7 << 7; + $9 = ((($0)) + 31|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = $11 ^ $8; + $13 = $12&255; + HEAP8[$9>>0] = $13; + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_ge_precomp_0($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, label = 0, sp = 0; + sp = STACKTOP; + _crypto_sign_ed25519_ref10_fe_1($0); + $1 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_1($1); + $2 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_0($2); + return; +} +function _crypto_sign_ed25519_ref10_ge_scalarmult_base($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$03135 = 0, $$037 = 0, $$136 = 0, $$234 = 0, $$333 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0; + var $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; + var $8 = 0, $9 = 0, $exitcond = 0, $exitcond38 = 0, $sext = 0, $sext32 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 464|0; + $2 = sp + 400|0; + $3 = sp + 240|0; + $4 = sp + 120|0; + $5 = sp; + $$037 = 0; + while(1) { + $6 = (($1) + ($$037)|0); + $7 = HEAP8[$6>>0]|0; + $8 = $7 & 15; + $9 = $$037 << 1; + $10 = (($2) + ($9)|0); + HEAP8[$10>>0] = $8; + $11 = ($7&255) >>> 4; + $12 = $9 | 1; + $13 = (($2) + ($12)|0); + HEAP8[$13>>0] = $11; + $14 = (($$037) + 1)|0; + $exitcond38 = ($14|0)==(32); + if ($exitcond38) { + $$03135 = 0;$$136 = 0; + break; + } else { + $$037 = $14; + } + } + while(1) { + $15 = (($2) + ($$136)|0); + $16 = HEAP8[$15>>0]|0; + $17 = $16&255; + $18 = (($17) + ($$03135))|0; + $sext = $18 << 24; + $sext32 = (($sext) + 134217728)|0; + $19 = $sext32 >> 28; + $20 = $19 << 4; + $21 = (($18) - ($20))|0; + $22 = $21&255; + HEAP8[$15>>0] = $22; + $23 = (($$136) + 1)|0; + $exitcond = ($23|0)==(63); + if ($exitcond) { + break; + } else { + $$03135 = $19;$$136 = $23; + } + } + $24 = ((($2)) + 63|0); + $25 = HEAP8[$24>>0]|0; + $26 = $25&255; + $27 = (($26) + ($19))|0; + $28 = $27&255; + HEAP8[$24>>0] = $28; + _crypto_sign_ed25519_ref10_ge_p3_0($0); + $$234 = 1; + while(1) { + $29 = (($$234|0) / 2)&-1; + $30 = (($2) + ($$234)|0); + $31 = HEAP8[$30>>0]|0; + _select_60($5,$29,$31); + _crypto_sign_ed25519_ref10_ge_madd($3,$0,$5); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($0,$3); + $32 = (($$234) + 2)|0; + $33 = ($32|0)<(64); + if ($33) { + $$234 = $32; + } else { + break; + } + } + _crypto_sign_ed25519_ref10_ge_p3_dbl($3,$0); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($4,$3); + _crypto_sign_ed25519_ref10_ge_p2_dbl($3,$4); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($4,$3); + _crypto_sign_ed25519_ref10_ge_p2_dbl($3,$4); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($4,$3); + _crypto_sign_ed25519_ref10_ge_p2_dbl($3,$4); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($0,$3); + $$333 = 0; + while(1) { + $34 = (($$333|0) / 2)&-1; + $35 = (($2) + ($$333)|0); + $36 = HEAP8[$35>>0]|0; + _select_60($5,$34,$36); + _crypto_sign_ed25519_ref10_ge_madd($3,$0,$5); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($0,$3); + $37 = (($$333) + 2)|0; + $38 = ($37|0)<(64); + if ($38) { + $$333 = $37; + } else { + break; + } + } + STACKTOP = sp;return; +} +function _select_60($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0; + var $3 = 0, $30 = 0, $31 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 128|0; + $3 = sp; + $4 = (_negative($2)|0); + $5 = $2 << 24 >> 24; + $6 = $4&255; + $7 = (0 - ($6))|0; + $8 = $5 & $7; + $9 = $8 << 1; + $10 = (($5) - ($9))|0; + $11 = $10&255; + _crypto_sign_ed25519_ref10_ge_precomp_0($0); + $12 = (1792 + (($1*960)|0)|0); + $13 = (_equal($11,1)|0); + _cmov($0,$12,$13); + $14 = (((1792 + (($1*960)|0)|0)) + 120|0); + $15 = (_equal($11,2)|0); + _cmov($0,$14,$15); + $16 = (((1792 + (($1*960)|0)|0)) + 240|0); + $17 = (_equal($11,3)|0); + _cmov($0,$16,$17); + $18 = (((1792 + (($1*960)|0)|0)) + 360|0); + $19 = (_equal($11,4)|0); + _cmov($0,$18,$19); + $20 = (((1792 + (($1*960)|0)|0)) + 480|0); + $21 = (_equal($11,5)|0); + _cmov($0,$20,$21); + $22 = (((1792 + (($1*960)|0)|0)) + 600|0); + $23 = (_equal($11,6)|0); + _cmov($0,$22,$23); + $24 = (((1792 + (($1*960)|0)|0)) + 720|0); + $25 = (_equal($11,7)|0); + _cmov($0,$24,$25); + $26 = (((1792 + (($1*960)|0)|0)) + 840|0); + $27 = (_equal($11,8)|0); + _cmov($0,$26,$27); + $28 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_copy($3,$28); + $29 = ((($3)) + 40|0); + _crypto_sign_ed25519_ref10_fe_copy($29,$0); + $30 = ((($3)) + 80|0); + $31 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_neg($30,$31); + _cmov($0,$3,$4); + STACKTOP = sp;return; +} +function _negative($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, label = 0, sp = 0; + sp = STACKTOP; + $1 = $0 << 24 >> 24; + $2 = ($1|0)<(0); + $3 = $2 << 31 >> 31; + $4 = (_bitshift64Lshr(($1|0),($3|0),63)|0); + $5 = tempRet0; + $6 = $4&255; + return ($6|0); +} +function _equal($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = $1 ^ $0; + $3 = $2&255; + $4 = (($3) + -1)|0; + $5 = $4 >>> 31; + $6 = $5&255; + return ($6|0); +} +function _cmov($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; + sp = STACKTOP; + $3 = $2&255; + _crypto_sign_ed25519_ref10_fe_cmov($0,$1,$3); + $4 = ((($0)) + 40|0); + $5 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_cmov($4,$5,$3); + $6 = ((($0)) + 80|0); + $7 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_cmov($6,$7,$3); return; } -function _load_347($in) { - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_sub($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP8[$in>>0]|0; - $1 = $0&255; - $2 = ((($in)) + 1|0); - $3 = HEAP8[$2>>0]|0; - $4 = $3&255; - $5 = (_bitshift64Shl(($4|0),0,8)|0); - $6 = tempRet0; - $7 = $5 | $1; - $8 = ((($in)) + 2|0); - $9 = HEAP8[$8>>0]|0; - $10 = $9&255; - $11 = (_bitshift64Shl(($10|0),0,16)|0); - $12 = tempRet0; - $13 = $7 | $11; - $14 = $6 | $12; - tempRet0 = ($14); - return ($13|0); + STACKTOP = STACKTOP + 48|0; + $3 = sp; + $4 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($0,$4,$1); + $5 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($5,$4,$1); + $6 = ((($0)) + 80|0); + $7 = ((($2)) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($6,$0,$7); + _crypto_sign_ed25519_ref10_fe_mul($5,$5,$2); + $8 = ((($0)) + 120|0); + $9 = ((($2)) + 120|0); + $10 = ((($1)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($8,$9,$10); + $11 = ((($1)) + 80|0); + $12 = ((($2)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($0,$11,$12); + _crypto_sign_ed25519_ref10_fe_add($3,$0,$0); + _crypto_sign_ed25519_ref10_fe_sub($0,$6,$5); + _crypto_sign_ed25519_ref10_fe_add($5,$6,$5); + _crypto_sign_ed25519_ref10_fe_sub($6,$3,$8); + _crypto_sign_ed25519_ref10_fe_add($8,$3,$8); + STACKTOP = sp;return; } -function _load_448($in) { - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; - var $8 = 0, $9 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_tobytes($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP8[$in>>0]|0; - $1 = $0&255; - $2 = ((($in)) + 1|0); - $3 = HEAP8[$2>>0]|0; - $4 = $3&255; - $5 = (_bitshift64Shl(($4|0),0,8)|0); - $6 = tempRet0; - $7 = $5 | $1; - $8 = ((($in)) + 2|0); - $9 = HEAP8[$8>>0]|0; - $10 = $9&255; - $11 = (_bitshift64Shl(($10|0),0,16)|0); - $12 = tempRet0; - $13 = $7 | $11; - $14 = $6 | $12; - $15 = ((($in)) + 3|0); - $16 = HEAP8[$15>>0]|0; - $17 = $16&255; - $18 = (_bitshift64Shl(($17|0),0,24)|0); - $19 = tempRet0; - $20 = $13 | $18; - $21 = $14 | $19; - tempRet0 = ($21); - return ($20|0); + STACKTOP = STACKTOP + 128|0; + $2 = sp + 80|0; + $3 = sp + 40|0; + $4 = sp; + $5 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_invert($2,$5); + _crypto_sign_ed25519_ref10_fe_mul($3,$1,$2); + $6 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$6,$2); + _crypto_sign_ed25519_ref10_fe_tobytes($0,$4); + $7 = (_crypto_sign_ed25519_ref10_fe_isnegative($3)|0); + $8 = $7 << 7; + $9 = ((($0)) + 31|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = $11 ^ $8; + $13 = $12&255; + HEAP8[$9>>0] = $13; + STACKTOP = sp;return; } -function _crypto_sign_ed25519_ref10_sc_reduce($s) { - $s = $s|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; - var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0; - var $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0; - var $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0; - var $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0; - var $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0; - var $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0; - var $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0; - var $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0; - var $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0; - var $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0; - var $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0; - var $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0; - var $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0; - var $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0; - var $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0; - var $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0; - var $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0; - var $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0; - var $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0; - var $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0; - var $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0; - var $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0; - var $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0; - var $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0; - var $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0; - var $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0; - var $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0; - var $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0; - var $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0; - var $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0; - var $636 = 0, $637 = 0, $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0; - var $654 = 0, $655 = 0, $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0; - var $672 = 0, $673 = 0, $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0; - var $690 = 0, $691 = 0, $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0; - var $708 = 0, $709 = 0, $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0; - var $726 = 0, $727 = 0, $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0; - var $744 = 0, $745 = 0, $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0; - var $762 = 0, $763 = 0, $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0; - var $780 = 0, $781 = 0, $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0; - var $799 = 0, $8 = 0, $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0; - var $816 = 0, $817 = 0, $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0; - var $834 = 0, $835 = 0, $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0; - var $852 = 0, $853 = 0, $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0; - var $870 = 0, $871 = 0, $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0; - var $889 = 0, $89 = 0, $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0; - var $906 = 0, $907 = 0, $908 = 0, $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0; - var $924 = 0, $925 = 0, $926 = 0, $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0; - var $942 = 0, $943 = 0, $944 = 0, $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0; - var $960 = 0, $961 = 0, $962 = 0, $963 = 0, $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0; - var $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0; - var $997 = 0, $998 = 0, $999 = 0, label = 0, sp = 0; +function _crypto_sign_edwards25519sha512batch_ref10_open($0,$1,$2,$3,$4,$5) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + $4 = $4|0; + $5 = $5|0; + var $$0 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 480|0; + $6 = sp + 440|0; + $7 = sp + 408|0; + $8 = sp + 376|0; + $9 = sp + 312|0; + $10 = sp + 280|0; + $11 = sp + 120|0; + $12 = sp; + $13 = ($4>>>0)<(0); + $14 = ($3>>>0)<(64); + $15 = ($4|0)==(0); + $16 = $15 & $14; + $17 = $13 | $16; + if (!($17)) { + $18 = ((($2)) + 63|0); + $19 = HEAP8[$18>>0]|0; + $20 = ($19&255)>(31); + if (!($20)) { + $21 = (_crypto_sign_ed25519_ref10_ge_frombytes_negate_vartime($11,$5)|0); + $22 = ($21|0)==(0); + if ($22) { + dest=$6; src=$5; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + dest=$7; src=$2; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $23 = ((($2)) + 32|0); + dest=$8; src=$23; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _memmove(($0|0),($2|0),($3|0))|0; + $24 = ((($0)) + 32|0); + dest=$24; src=$6; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + (_crypto_hash_sha512_ref($9,$0,$3,$4)|0); + _crypto_sign_ed25519_ref10_sc_reduce($9); + _crypto_sign_ed25519_ref10_ge_double_scalarmult_vartime($12,$9,$11,$8); + _crypto_sign_ed25519_ref10_ge_tobytes($10,$12); + $25 = (_crypto_verify_32_ref($10,$7)|0); + $26 = ($25|0)==(0); + if ($26) { + $27 = ((($0)) + 64|0); + $28 = (_i64Add(($3|0),($4|0),-64,-1)|0); + $29 = tempRet0; + _memmove(($0|0),($27|0),($28|0))|0; + $30 = (($0) + ($3)|0); + $31 = ((($30)) + -64|0); + dest=$31; stop=dest+64|0; do { HEAP8[dest>>0]=0|0; dest=dest+1|0; } while ((dest|0) < (stop|0)); + $32 = $1; + $33 = $32; + HEAP32[$33>>2] = $28; + $34 = (($32) + 4)|0; + $35 = $34; + HEAP32[$35>>2] = $29; + $$0 = 0; + STACKTOP = sp;return ($$0|0); + } + } + } + } + $36 = $1; + $37 = $36; + HEAP32[$37>>2] = -1; + $38 = (($36) + 4)|0; + $39 = $38; + HEAP32[$39>>2] = -1; + _memset(($0|0),0,($3|0))|0; + $$0 = -1; + STACKTOP = sp;return ($$0|0); +} +function _crypto_sign_ed25519_ref10_sc_muladd($0,$1,$2,$3) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + var $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0, $1015 = 0, $1016 = 0; + var $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0, $1033 = 0, $1034 = 0; + var $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0, $1051 = 0, $1052 = 0; + var $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0, $107 = 0, $1070 = 0; + var $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0, $1088 = 0, $1089 = 0; + var $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0, $1105 = 0, $1106 = 0; + var $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $1119 = 0, $112 = 0, $1120 = 0, $1121 = 0, $1122 = 0, $1123 = 0, $1124 = 0; + var $1125 = 0, $1126 = 0, $1127 = 0, $1128 = 0, $1129 = 0, $113 = 0, $1130 = 0, $1131 = 0, $1132 = 0, $1133 = 0, $1134 = 0, $1135 = 0, $1136 = 0, $1137 = 0, $1138 = 0, $1139 = 0, $114 = 0, $1140 = 0, $1141 = 0, $1142 = 0; + var $1143 = 0, $1144 = 0, $1145 = 0, $1146 = 0, $1147 = 0, $1148 = 0, $1149 = 0, $115 = 0, $1150 = 0, $1151 = 0, $1152 = 0, $1153 = 0, $1154 = 0, $1155 = 0, $1156 = 0, $1157 = 0, $1158 = 0, $1159 = 0, $116 = 0, $1160 = 0; + var $1161 = 0, $1162 = 0, $1163 = 0, $1164 = 0, $1165 = 0, $1166 = 0, $1167 = 0, $1168 = 0, $1169 = 0, $117 = 0, $1170 = 0, $1171 = 0, $1172 = 0, $1173 = 0, $1174 = 0, $1175 = 0, $1176 = 0, $1177 = 0, $1178 = 0, $1179 = 0; + var $118 = 0, $1180 = 0, $1181 = 0, $1182 = 0, $1183 = 0, $1184 = 0, $1185 = 0, $1186 = 0, $1187 = 0, $1188 = 0, $1189 = 0, $119 = 0, $1190 = 0, $1191 = 0, $1192 = 0, $1193 = 0, $1194 = 0, $1195 = 0, $1196 = 0, $1197 = 0; + var $1198 = 0, $1199 = 0, $12 = 0, $120 = 0, $1200 = 0, $1201 = 0, $1202 = 0, $1203 = 0, $1204 = 0, $1205 = 0, $1206 = 0, $1207 = 0, $1208 = 0, $1209 = 0, $121 = 0, $1210 = 0, $1211 = 0, $1212 = 0, $1213 = 0, $1214 = 0; + var $1215 = 0, $1216 = 0, $1217 = 0, $1218 = 0, $1219 = 0, $122 = 0, $1220 = 0, $1221 = 0, $1222 = 0, $1223 = 0, $1224 = 0, $1225 = 0, $1226 = 0, $1227 = 0, $1228 = 0, $1229 = 0, $123 = 0, $1230 = 0, $1231 = 0, $1232 = 0; + var $1233 = 0, $1234 = 0, $1235 = 0, $1236 = 0, $1237 = 0, $1238 = 0, $1239 = 0, $124 = 0, $1240 = 0, $1241 = 0, $1242 = 0, $1243 = 0, $1244 = 0, $1245 = 0, $1246 = 0, $1247 = 0, $1248 = 0, $1249 = 0, $125 = 0, $1250 = 0; + var $1251 = 0, $1252 = 0, $1253 = 0, $1254 = 0, $1255 = 0, $1256 = 0, $1257 = 0, $1258 = 0, $1259 = 0, $126 = 0, $1260 = 0, $1261 = 0, $1262 = 0, $1263 = 0, $1264 = 0, $1265 = 0, $1266 = 0, $1267 = 0, $1268 = 0, $1269 = 0; + var $127 = 0, $1270 = 0, $1271 = 0, $1272 = 0, $1273 = 0, $1274 = 0, $1275 = 0, $1276 = 0, $1277 = 0, $1278 = 0, $1279 = 0, $128 = 0, $1280 = 0, $1281 = 0, $1282 = 0, $1283 = 0, $1284 = 0, $1285 = 0, $1286 = 0, $1287 = 0; + var $1288 = 0, $1289 = 0, $129 = 0, $1290 = 0, $1291 = 0, $1292 = 0, $1293 = 0, $1294 = 0, $1295 = 0, $1296 = 0, $1297 = 0, $1298 = 0, $1299 = 0, $13 = 0, $130 = 0, $1300 = 0, $1301 = 0, $1302 = 0, $1303 = 0, $1304 = 0; + var $1305 = 0, $1306 = 0, $1307 = 0, $1308 = 0, $1309 = 0, $131 = 0, $1310 = 0, $1311 = 0, $1312 = 0, $1313 = 0, $1314 = 0, $1315 = 0, $1316 = 0, $1317 = 0, $1318 = 0, $1319 = 0, $132 = 0, $1320 = 0, $1321 = 0, $1322 = 0; + var $1323 = 0, $1324 = 0, $1325 = 0, $1326 = 0, $1327 = 0, $1328 = 0, $1329 = 0, $133 = 0, $1330 = 0, $1331 = 0, $1332 = 0, $1333 = 0, $1334 = 0, $1335 = 0, $1336 = 0, $1337 = 0, $1338 = 0, $1339 = 0, $134 = 0, $1340 = 0; + var $1341 = 0, $1342 = 0, $1343 = 0, $1344 = 0, $1345 = 0, $1346 = 0, $1347 = 0, $1348 = 0, $1349 = 0, $135 = 0, $1350 = 0, $1351 = 0, $1352 = 0, $1353 = 0, $1354 = 0, $1355 = 0, $1356 = 0, $1357 = 0, $1358 = 0, $1359 = 0; + var $136 = 0, $1360 = 0, $1361 = 0, $1362 = 0, $1363 = 0, $1364 = 0, $1365 = 0, $1366 = 0, $1367 = 0, $1368 = 0, $1369 = 0, $137 = 0, $1370 = 0, $1371 = 0, $1372 = 0, $1373 = 0, $1374 = 0, $1375 = 0, $1376 = 0, $1377 = 0; + var $1378 = 0, $1379 = 0, $138 = 0, $1380 = 0, $1381 = 0, $1382 = 0, $1383 = 0, $1384 = 0, $1385 = 0, $1386 = 0, $1387 = 0, $1388 = 0, $1389 = 0, $139 = 0, $1390 = 0, $1391 = 0, $1392 = 0, $1393 = 0, $1394 = 0, $1395 = 0; + var $1396 = 0, $1397 = 0, $1398 = 0, $1399 = 0, $14 = 0, $140 = 0, $1400 = 0, $1401 = 0, $1402 = 0, $1403 = 0, $1404 = 0, $1405 = 0, $1406 = 0, $1407 = 0, $1408 = 0, $1409 = 0, $141 = 0, $1410 = 0, $1411 = 0, $1412 = 0; + var $1413 = 0, $1414 = 0, $1415 = 0, $1416 = 0, $1417 = 0, $1418 = 0, $1419 = 0, $142 = 0, $1420 = 0, $1421 = 0, $1422 = 0, $1423 = 0, $1424 = 0, $1425 = 0, $1426 = 0, $1427 = 0, $1428 = 0, $1429 = 0, $143 = 0, $1430 = 0; + var $1431 = 0, $1432 = 0, $1433 = 0, $1434 = 0, $1435 = 0, $1436 = 0, $1437 = 0, $1438 = 0, $1439 = 0, $144 = 0, $1440 = 0, $1441 = 0, $1442 = 0, $1443 = 0, $1444 = 0, $1445 = 0, $1446 = 0, $1447 = 0, $1448 = 0, $1449 = 0; + var $145 = 0, $1450 = 0, $1451 = 0, $1452 = 0, $1453 = 0, $1454 = 0, $1455 = 0, $1456 = 0, $1457 = 0, $1458 = 0, $1459 = 0, $146 = 0, $1460 = 0, $1461 = 0, $1462 = 0, $1463 = 0, $1464 = 0, $1465 = 0, $1466 = 0, $1467 = 0; + var $1468 = 0, $1469 = 0, $147 = 0, $1470 = 0, $1471 = 0, $1472 = 0, $1473 = 0, $1474 = 0, $1475 = 0, $1476 = 0, $1477 = 0, $1478 = 0, $1479 = 0, $148 = 0, $1480 = 0, $1481 = 0, $1482 = 0, $1483 = 0, $1484 = 0, $1485 = 0; + var $1486 = 0, $1487 = 0, $1488 = 0, $1489 = 0, $149 = 0, $1490 = 0, $1491 = 0, $1492 = 0, $1493 = 0, $1494 = 0, $1495 = 0, $1496 = 0, $1497 = 0, $1498 = 0, $1499 = 0, $15 = 0, $150 = 0, $1500 = 0, $1501 = 0, $1502 = 0; + var $1503 = 0, $1504 = 0, $1505 = 0, $1506 = 0, $1507 = 0, $1508 = 0, $1509 = 0, $151 = 0, $1510 = 0, $1511 = 0, $1512 = 0, $1513 = 0, $1514 = 0, $1515 = 0, $1516 = 0, $1517 = 0, $1518 = 0, $1519 = 0, $152 = 0, $1520 = 0; + var $1521 = 0, $1522 = 0, $1523 = 0, $1524 = 0, $1525 = 0, $1526 = 0, $1527 = 0, $1528 = 0, $1529 = 0, $153 = 0, $1530 = 0, $1531 = 0, $1532 = 0, $1533 = 0, $1534 = 0, $1535 = 0, $1536 = 0, $1537 = 0, $1538 = 0, $1539 = 0; + var $154 = 0, $1540 = 0, $1541 = 0, $1542 = 0, $1543 = 0, $1544 = 0, $1545 = 0, $1546 = 0, $1547 = 0, $1548 = 0, $1549 = 0, $155 = 0, $1550 = 0, $1551 = 0, $1552 = 0, $1553 = 0, $1554 = 0, $1555 = 0, $1556 = 0, $1557 = 0; + var $1558 = 0, $1559 = 0, $156 = 0, $1560 = 0, $1561 = 0, $1562 = 0, $1563 = 0, $1564 = 0, $1565 = 0, $1566 = 0, $1567 = 0, $1568 = 0, $1569 = 0, $157 = 0, $1570 = 0, $1571 = 0, $1572 = 0, $1573 = 0, $1574 = 0, $1575 = 0; + var $1576 = 0, $1577 = 0, $1578 = 0, $1579 = 0, $158 = 0, $1580 = 0, $1581 = 0, $1582 = 0, $1583 = 0, $1584 = 0, $1585 = 0, $1586 = 0, $1587 = 0, $1588 = 0, $1589 = 0, $159 = 0, $1590 = 0, $1591 = 0, $1592 = 0, $1593 = 0; + var $1594 = 0, $1595 = 0, $1596 = 0, $1597 = 0, $1598 = 0, $1599 = 0, $16 = 0, $160 = 0, $1600 = 0, $1601 = 0, $1602 = 0, $1603 = 0, $1604 = 0, $1605 = 0, $1606 = 0, $1607 = 0, $1608 = 0, $1609 = 0, $161 = 0, $1610 = 0; + var $1611 = 0, $1612 = 0, $1613 = 0, $1614 = 0, $1615 = 0, $1616 = 0, $1617 = 0, $1618 = 0, $1619 = 0, $162 = 0, $1620 = 0, $1621 = 0, $1622 = 0, $1623 = 0, $1624 = 0, $1625 = 0, $1626 = 0, $1627 = 0, $1628 = 0, $1629 = 0; + var $163 = 0, $1630 = 0, $1631 = 0, $1632 = 0, $1633 = 0, $1634 = 0, $1635 = 0, $1636 = 0, $1637 = 0, $1638 = 0, $1639 = 0, $164 = 0, $1640 = 0, $1641 = 0, $1642 = 0, $1643 = 0, $1644 = 0, $1645 = 0, $1646 = 0, $1647 = 0; + var $1648 = 0, $1649 = 0, $165 = 0, $1650 = 0, $1651 = 0, $1652 = 0, $1653 = 0, $1654 = 0, $1655 = 0, $1656 = 0, $1657 = 0, $1658 = 0, $1659 = 0, $166 = 0, $1660 = 0, $1661 = 0, $1662 = 0, $1663 = 0, $1664 = 0, $1665 = 0; + var $1666 = 0, $1667 = 0, $1668 = 0, $1669 = 0, $167 = 0, $1670 = 0, $1671 = 0, $1672 = 0, $1673 = 0, $1674 = 0, $1675 = 0, $1676 = 0, $1677 = 0, $1678 = 0, $1679 = 0, $168 = 0, $1680 = 0, $1681 = 0, $1682 = 0, $1683 = 0; + var $1684 = 0, $1685 = 0, $1686 = 0, $1687 = 0, $1688 = 0, $1689 = 0, $169 = 0, $1690 = 0, $1691 = 0, $1692 = 0, $1693 = 0, $1694 = 0, $1695 = 0, $1696 = 0, $1697 = 0, $1698 = 0, $1699 = 0, $17 = 0, $170 = 0, $1700 = 0; + var $1701 = 0, $1702 = 0, $1703 = 0, $1704 = 0, $1705 = 0, $1706 = 0, $1707 = 0, $1708 = 0, $1709 = 0, $171 = 0, $1710 = 0, $1711 = 0, $1712 = 0, $1713 = 0, $1714 = 0, $1715 = 0, $1716 = 0, $1717 = 0, $1718 = 0, $1719 = 0; + var $172 = 0, $1720 = 0, $1721 = 0, $1722 = 0, $1723 = 0, $1724 = 0, $1725 = 0, $1726 = 0, $1727 = 0, $1728 = 0, $1729 = 0, $173 = 0, $1730 = 0, $1731 = 0, $1732 = 0, $1733 = 0, $1734 = 0, $1735 = 0, $1736 = 0, $1737 = 0; + var $1738 = 0, $1739 = 0, $174 = 0, $1740 = 0, $1741 = 0, $1742 = 0, $1743 = 0, $1744 = 0, $1745 = 0, $1746 = 0, $1747 = 0, $1748 = 0, $1749 = 0, $175 = 0, $1750 = 0, $1751 = 0, $1752 = 0, $1753 = 0, $1754 = 0, $1755 = 0; + var $1756 = 0, $1757 = 0, $1758 = 0, $1759 = 0, $176 = 0, $1760 = 0, $1761 = 0, $1762 = 0, $1763 = 0, $1764 = 0, $1765 = 0, $1766 = 0, $1767 = 0, $1768 = 0, $1769 = 0, $177 = 0, $1770 = 0, $1771 = 0, $1772 = 0, $1773 = 0; + var $1774 = 0, $1775 = 0, $1776 = 0, $1777 = 0, $1778 = 0, $1779 = 0, $178 = 0, $1780 = 0, $1781 = 0, $1782 = 0, $1783 = 0, $1784 = 0, $1785 = 0, $1786 = 0, $1787 = 0, $1788 = 0, $1789 = 0, $179 = 0, $1790 = 0, $1791 = 0; + var $1792 = 0, $1793 = 0, $1794 = 0, $1795 = 0, $1796 = 0, $1797 = 0, $1798 = 0, $1799 = 0, $18 = 0, $180 = 0, $1800 = 0, $1801 = 0, $1802 = 0, $1803 = 0, $1804 = 0, $1805 = 0, $1806 = 0, $1807 = 0, $1808 = 0, $1809 = 0; + var $181 = 0, $1810 = 0, $1811 = 0, $1812 = 0, $1813 = 0, $1814 = 0, $1815 = 0, $1816 = 0, $1817 = 0, $1818 = 0, $1819 = 0, $182 = 0, $1820 = 0, $1821 = 0, $1822 = 0, $1823 = 0, $1824 = 0, $1825 = 0, $1826 = 0, $1827 = 0; + var $1828 = 0, $1829 = 0, $183 = 0, $1830 = 0, $1831 = 0, $1832 = 0, $1833 = 0, $1834 = 0, $1835 = 0, $1836 = 0, $1837 = 0, $1838 = 0, $1839 = 0, $184 = 0, $1840 = 0, $1841 = 0, $1842 = 0, $1843 = 0, $1844 = 0, $1845 = 0; + var $1846 = 0, $1847 = 0, $1848 = 0, $1849 = 0, $185 = 0, $1850 = 0, $1851 = 0, $1852 = 0, $1853 = 0, $1854 = 0, $1855 = 0, $1856 = 0, $1857 = 0, $1858 = 0, $1859 = 0, $186 = 0, $1860 = 0, $1861 = 0, $1862 = 0, $1863 = 0; + var $1864 = 0, $1865 = 0, $1866 = 0, $1867 = 0, $1868 = 0, $1869 = 0, $187 = 0, $1870 = 0, $1871 = 0, $1872 = 0, $1873 = 0, $1874 = 0, $1875 = 0, $1876 = 0, $1877 = 0, $1878 = 0, $1879 = 0, $188 = 0, $1880 = 0, $1881 = 0; + var $1882 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; + var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; + var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; + var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; + var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; + var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; + var $297 = 0, $298 = 0, $299 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0; + var $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0; + var $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0; + var $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0; + var $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0; + var $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0; + var $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0; + var $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0; + var $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0; + var $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0; + var $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0; + var $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0; + var $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0; + var $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0; + var $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0; + var $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0; + var $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0; + var $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0; + var $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0; + var $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0; + var $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0; + var $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0; + var $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0; + var $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0; + var $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0; + var $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0; + var $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0; + var $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0; + var $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0; + var $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0; + var $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0; + var $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0; + var $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0; + var $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0; + var $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0; + var $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0; + var $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0; + var $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0; + var $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, label = 0; + var sp = 0; sp = STACKTOP; - $0 = (_load_351($s)|0); - $1 = tempRet0; - $2 = $0 & 2097151; - $3 = ((($s)) + 2|0); - $4 = (_load_452($3)|0); + $4 = (_load_3_47($1)|0); $5 = tempRet0; - $6 = (_bitshift64Lshr(($4|0),($5|0),5)|0); - $7 = tempRet0; - $8 = $6 & 2097151; - $9 = ((($s)) + 5|0); - $10 = (_load_351($9)|0); + $6 = $4 & 2097151; + $7 = ((($1)) + 2|0); + $8 = (_load_4_48($7)|0); + $9 = tempRet0; + $10 = (_bitshift64Lshr(($8|0),($9|0),5)|0); $11 = tempRet0; - $12 = (_bitshift64Lshr(($10|0),($11|0),2)|0); - $13 = tempRet0; - $14 = $12 & 2097151; - $15 = ((($s)) + 7|0); - $16 = (_load_452($15)|0); + $12 = $10 & 2097151; + $13 = ((($1)) + 5|0); + $14 = (_load_3_47($13)|0); + $15 = tempRet0; + $16 = (_bitshift64Lshr(($14|0),($15|0),2)|0); $17 = tempRet0; - $18 = (_bitshift64Lshr(($16|0),($17|0),7)|0); - $19 = tempRet0; - $20 = $18 & 2097151; - $21 = ((($s)) + 10|0); - $22 = (_load_452($21)|0); + $18 = $16 & 2097151; + $19 = ((($1)) + 7|0); + $20 = (_load_4_48($19)|0); + $21 = tempRet0; + $22 = (_bitshift64Lshr(($20|0),($21|0),7)|0); $23 = tempRet0; - $24 = (_bitshift64Lshr(($22|0),($23|0),4)|0); - $25 = tempRet0; - $26 = $24 & 2097151; - $27 = ((($s)) + 13|0); - $28 = (_load_351($27)|0); + $24 = $22 & 2097151; + $25 = ((($1)) + 10|0); + $26 = (_load_4_48($25)|0); + $27 = tempRet0; + $28 = (_bitshift64Lshr(($26|0),($27|0),4)|0); $29 = tempRet0; - $30 = (_bitshift64Lshr(($28|0),($29|0),1)|0); - $31 = tempRet0; - $32 = $30 & 2097151; - $33 = ((($s)) + 15|0); - $34 = (_load_452($33)|0); + $30 = $28 & 2097151; + $31 = ((($1)) + 13|0); + $32 = (_load_3_47($31)|0); + $33 = tempRet0; + $34 = (_bitshift64Lshr(($32|0),($33|0),1)|0); $35 = tempRet0; - $36 = (_bitshift64Lshr(($34|0),($35|0),6)|0); - $37 = tempRet0; - $38 = $36 & 2097151; - $39 = ((($s)) + 18|0); - $40 = (_load_351($39)|0); + $36 = $34 & 2097151; + $37 = ((($1)) + 15|0); + $38 = (_load_4_48($37)|0); + $39 = tempRet0; + $40 = (_bitshift64Lshr(($38|0),($39|0),6)|0); $41 = tempRet0; - $42 = (_bitshift64Lshr(($40|0),($41|0),3)|0); - $43 = tempRet0; - $44 = $42 & 2097151; - $45 = ((($s)) + 21|0); - $46 = (_load_351($45)|0); + $42 = $40 & 2097151; + $43 = ((($1)) + 18|0); + $44 = (_load_3_47($43)|0); + $45 = tempRet0; + $46 = (_bitshift64Lshr(($44|0),($45|0),3)|0); $47 = tempRet0; $48 = $46 & 2097151; - $49 = ((($s)) + 23|0); - $50 = (_load_452($49)|0); + $49 = ((($1)) + 21|0); + $50 = (_load_3_47($49)|0); $51 = tempRet0; - $52 = (_bitshift64Lshr(($50|0),($51|0),5)|0); - $53 = tempRet0; - $54 = $52 & 2097151; - $55 = ((($s)) + 26|0); - $56 = (_load_351($55)|0); + $52 = $50 & 2097151; + $53 = ((($1)) + 23|0); + $54 = (_load_4_48($53)|0); + $55 = tempRet0; + $56 = (_bitshift64Lshr(($54|0),($55|0),5)|0); $57 = tempRet0; - $58 = (_bitshift64Lshr(($56|0),($57|0),2)|0); - $59 = tempRet0; - $60 = $58 & 2097151; - $61 = ((($s)) + 28|0); - $62 = (_load_452($61)|0); + $58 = $56 & 2097151; + $59 = ((($1)) + 26|0); + $60 = (_load_3_47($59)|0); + $61 = tempRet0; + $62 = (_bitshift64Lshr(($60|0),($61|0),2)|0); $63 = tempRet0; - $64 = (_bitshift64Lshr(($62|0),($63|0),7)|0); - $65 = tempRet0; - $66 = $64 & 2097151; - $67 = ((($s)) + 31|0); - $68 = (_load_452($67)|0); + $64 = $62 & 2097151; + $65 = ((($1)) + 28|0); + $66 = (_load_4_48($65)|0); + $67 = tempRet0; + $68 = (_bitshift64Lshr(($66|0),($67|0),7)|0); $69 = tempRet0; - $70 = (_bitshift64Lshr(($68|0),($69|0),4)|0); + $70 = (_load_3_47($2)|0); $71 = tempRet0; $72 = $70 & 2097151; - $73 = ((($s)) + 34|0); - $74 = (_load_351($73)|0); + $73 = ((($2)) + 2|0); + $74 = (_load_4_48($73)|0); $75 = tempRet0; - $76 = (_bitshift64Lshr(($74|0),($75|0),1)|0); + $76 = (_bitshift64Lshr(($74|0),($75|0),5)|0); $77 = tempRet0; $78 = $76 & 2097151; - $79 = ((($s)) + 36|0); - $80 = (_load_452($79)|0); + $79 = ((($2)) + 5|0); + $80 = (_load_3_47($79)|0); $81 = tempRet0; - $82 = (_bitshift64Lshr(($80|0),($81|0),6)|0); + $82 = (_bitshift64Lshr(($80|0),($81|0),2)|0); $83 = tempRet0; $84 = $82 & 2097151; - $85 = ((($s)) + 39|0); - $86 = (_load_351($85)|0); + $85 = ((($2)) + 7|0); + $86 = (_load_4_48($85)|0); $87 = tempRet0; - $88 = (_bitshift64Lshr(($86|0),($87|0),3)|0); + $88 = (_bitshift64Lshr(($86|0),($87|0),7)|0); $89 = tempRet0; $90 = $88 & 2097151; - $91 = ((($s)) + 42|0); - $92 = (_load_351($91)|0); + $91 = ((($2)) + 10|0); + $92 = (_load_4_48($91)|0); $93 = tempRet0; - $94 = $92 & 2097151; - $95 = ((($s)) + 44|0); - $96 = (_load_452($95)|0); - $97 = tempRet0; - $98 = (_bitshift64Lshr(($96|0),($97|0),5)|0); + $94 = (_bitshift64Lshr(($92|0),($93|0),4)|0); + $95 = tempRet0; + $96 = $94 & 2097151; + $97 = ((($2)) + 13|0); + $98 = (_load_3_47($97)|0); $99 = tempRet0; - $100 = $98 & 2097151; - $101 = ((($s)) + 47|0); - $102 = (_load_351($101)|0); - $103 = tempRet0; - $104 = (_bitshift64Lshr(($102|0),($103|0),2)|0); + $100 = (_bitshift64Lshr(($98|0),($99|0),1)|0); + $101 = tempRet0; + $102 = $100 & 2097151; + $103 = ((($2)) + 15|0); + $104 = (_load_4_48($103)|0); $105 = tempRet0; - $106 = $104 & 2097151; - $107 = ((($s)) + 49|0); - $108 = (_load_452($107)|0); - $109 = tempRet0; - $110 = (_bitshift64Lshr(($108|0),($109|0),7)|0); + $106 = (_bitshift64Lshr(($104|0),($105|0),6)|0); + $107 = tempRet0; + $108 = $106 & 2097151; + $109 = ((($2)) + 18|0); + $110 = (_load_3_47($109)|0); $111 = tempRet0; - $112 = $110 & 2097151; - $113 = ((($s)) + 52|0); - $114 = (_load_452($113)|0); - $115 = tempRet0; - $116 = (_bitshift64Lshr(($114|0),($115|0),4)|0); + $112 = (_bitshift64Lshr(($110|0),($111|0),3)|0); + $113 = tempRet0; + $114 = $112 & 2097151; + $115 = ((($2)) + 21|0); + $116 = (_load_3_47($115)|0); $117 = tempRet0; $118 = $116 & 2097151; - $119 = ((($s)) + 55|0); - $120 = (_load_351($119)|0); + $119 = ((($2)) + 23|0); + $120 = (_load_4_48($119)|0); $121 = tempRet0; - $122 = (_bitshift64Lshr(($120|0),($121|0),1)|0); + $122 = (_bitshift64Lshr(($120|0),($121|0),5)|0); $123 = tempRet0; $124 = $122 & 2097151; - $125 = ((($s)) + 57|0); - $126 = (_load_452($125)|0); + $125 = ((($2)) + 26|0); + $126 = (_load_3_47($125)|0); $127 = tempRet0; - $128 = (_bitshift64Lshr(($126|0),($127|0),6)|0); + $128 = (_bitshift64Lshr(($126|0),($127|0),2)|0); $129 = tempRet0; $130 = $128 & 2097151; - $131 = ((($s)) + 60|0); - $132 = (_load_452($131)|0); + $131 = ((($2)) + 28|0); + $132 = (_load_4_48($131)|0); $133 = tempRet0; - $134 = (_bitshift64Lshr(($132|0),($133|0),3)|0); + $134 = (_bitshift64Lshr(($132|0),($133|0),7)|0); $135 = tempRet0; - $136 = (___muldi3(($134|0),($135|0),666643,0)|0); + $136 = (_load_3_47($3)|0); $137 = tempRet0; - $138 = (_i64Add(($66|0),0,($136|0),($137|0))|0); - $139 = tempRet0; - $140 = (___muldi3(($134|0),($135|0),470296,0)|0); + $138 = $136 & 2097151; + $139 = ((($3)) + 2|0); + $140 = (_load_4_48($139)|0); $141 = tempRet0; - $142 = (_i64Add(($72|0),0,($140|0),($141|0))|0); + $142 = (_bitshift64Lshr(($140|0),($141|0),5)|0); $143 = tempRet0; - $144 = (___muldi3(($134|0),($135|0),654183,0)|0); - $145 = tempRet0; - $146 = (_i64Add(($78|0),0,($144|0),($145|0))|0); + $144 = $142 & 2097151; + $145 = ((($3)) + 5|0); + $146 = (_load_3_47($145)|0); $147 = tempRet0; - $148 = (___muldi3(($134|0),($135|0),-997805,-1)|0); + $148 = (_bitshift64Lshr(($146|0),($147|0),2)|0); $149 = tempRet0; - $150 = (_i64Add(($84|0),0,($148|0),($149|0))|0); - $151 = tempRet0; - $152 = (___muldi3(($134|0),($135|0),136657,0)|0); + $150 = $148 & 2097151; + $151 = ((($3)) + 7|0); + $152 = (_load_4_48($151)|0); $153 = tempRet0; - $154 = (_i64Add(($90|0),0,($152|0),($153|0))|0); + $154 = (_bitshift64Lshr(($152|0),($153|0),7)|0); $155 = tempRet0; - $156 = (___muldi3(($134|0),($135|0),-683901,-1)|0); - $157 = tempRet0; - $158 = (_i64Add(($94|0),0,($156|0),($157|0))|0); + $156 = $154 & 2097151; + $157 = ((($3)) + 10|0); + $158 = (_load_4_48($157)|0); $159 = tempRet0; - $160 = (___muldi3(($130|0),0,666643,0)|0); + $160 = (_bitshift64Lshr(($158|0),($159|0),4)|0); $161 = tempRet0; - $162 = (_i64Add(($60|0),0,($160|0),($161|0))|0); - $163 = tempRet0; - $164 = (___muldi3(($130|0),0,470296,0)|0); + $162 = $160 & 2097151; + $163 = ((($3)) + 13|0); + $164 = (_load_3_47($163)|0); $165 = tempRet0; - $166 = (_i64Add(($164|0),($165|0),($138|0),($139|0))|0); + $166 = (_bitshift64Lshr(($164|0),($165|0),1)|0); $167 = tempRet0; - $168 = (___muldi3(($130|0),0,654183,0)|0); - $169 = tempRet0; - $170 = (_i64Add(($168|0),($169|0),($142|0),($143|0))|0); + $168 = $166 & 2097151; + $169 = ((($3)) + 15|0); + $170 = (_load_4_48($169)|0); $171 = tempRet0; - $172 = (___muldi3(($130|0),0,-997805,-1)|0); + $172 = (_bitshift64Lshr(($170|0),($171|0),6)|0); $173 = tempRet0; - $174 = (_i64Add(($172|0),($173|0),($146|0),($147|0))|0); - $175 = tempRet0; - $176 = (___muldi3(($130|0),0,136657,0)|0); + $174 = $172 & 2097151; + $175 = ((($3)) + 18|0); + $176 = (_load_3_47($175)|0); $177 = tempRet0; - $178 = (_i64Add(($176|0),($177|0),($150|0),($151|0))|0); + $178 = (_bitshift64Lshr(($176|0),($177|0),3)|0); $179 = tempRet0; - $180 = (___muldi3(($130|0),0,-683901,-1)|0); - $181 = tempRet0; - $182 = (_i64Add(($154|0),($155|0),($180|0),($181|0))|0); + $180 = $178 & 2097151; + $181 = ((($3)) + 21|0); + $182 = (_load_3_47($181)|0); $183 = tempRet0; - $184 = (___muldi3(($124|0),0,666643,0)|0); - $185 = tempRet0; - $186 = (_i64Add(($54|0),0,($184|0),($185|0))|0); + $184 = $182 & 2097151; + $185 = ((($3)) + 23|0); + $186 = (_load_4_48($185)|0); $187 = tempRet0; - $188 = (___muldi3(($124|0),0,470296,0)|0); + $188 = (_bitshift64Lshr(($186|0),($187|0),5)|0); $189 = tempRet0; - $190 = (_i64Add(($188|0),($189|0),($162|0),($163|0))|0); - $191 = tempRet0; - $192 = (___muldi3(($124|0),0,654183,0)|0); + $190 = $188 & 2097151; + $191 = ((($3)) + 26|0); + $192 = (_load_3_47($191)|0); $193 = tempRet0; - $194 = (_i64Add(($192|0),($193|0),($166|0),($167|0))|0); + $194 = (_bitshift64Lshr(($192|0),($193|0),2)|0); $195 = tempRet0; - $196 = (___muldi3(($124|0),0,-997805,-1)|0); - $197 = tempRet0; - $198 = (_i64Add(($196|0),($197|0),($170|0),($171|0))|0); + $196 = $194 & 2097151; + $197 = ((($3)) + 28|0); + $198 = (_load_4_48($197)|0); $199 = tempRet0; - $200 = (___muldi3(($124|0),0,136657,0)|0); + $200 = (_bitshift64Lshr(($198|0),($199|0),7)|0); $201 = tempRet0; - $202 = (_i64Add(($200|0),($201|0),($174|0),($175|0))|0); + $202 = (___muldi3(($72|0),0,($6|0),0)|0); $203 = tempRet0; - $204 = (___muldi3(($124|0),0,-683901,-1)|0); + $204 = (_i64Add(($138|0),0,($202|0),($203|0))|0); $205 = tempRet0; - $206 = (_i64Add(($178|0),($179|0),($204|0),($205|0))|0); + $206 = (___muldi3(($78|0),0,($6|0),0)|0); $207 = tempRet0; - $208 = (___muldi3(($118|0),0,666643,0)|0); + $208 = (___muldi3(($72|0),0,($12|0),0)|0); $209 = tempRet0; - $210 = (___muldi3(($118|0),0,470296,0)|0); + $210 = (___muldi3(($84|0),0,($6|0),0)|0); $211 = tempRet0; - $212 = (_i64Add(($210|0),($211|0),($186|0),($187|0))|0); + $212 = (___muldi3(($78|0),0,($12|0),0)|0); $213 = tempRet0; - $214 = (___muldi3(($118|0),0,654183,0)|0); + $214 = (___muldi3(($72|0),0,($18|0),0)|0); $215 = tempRet0; - $216 = (_i64Add(($214|0),($215|0),($190|0),($191|0))|0); + $216 = (_i64Add(($212|0),($213|0),($214|0),($215|0))|0); $217 = tempRet0; - $218 = (___muldi3(($118|0),0,-997805,-1)|0); + $218 = (_i64Add(($216|0),($217|0),($210|0),($211|0))|0); $219 = tempRet0; - $220 = (_i64Add(($218|0),($219|0),($194|0),($195|0))|0); + $220 = (_i64Add(($218|0),($219|0),($150|0),0)|0); $221 = tempRet0; - $222 = (___muldi3(($118|0),0,136657,0)|0); + $222 = (___muldi3(($90|0),0,($6|0),0)|0); $223 = tempRet0; - $224 = (_i64Add(($222|0),($223|0),($198|0),($199|0))|0); + $224 = (___muldi3(($84|0),0,($12|0),0)|0); $225 = tempRet0; - $226 = (___muldi3(($118|0),0,-683901,-1)|0); + $226 = (___muldi3(($78|0),0,($18|0),0)|0); $227 = tempRet0; - $228 = (_i64Add(($202|0),($203|0),($226|0),($227|0))|0); + $228 = (___muldi3(($72|0),0,($24|0),0)|0); $229 = tempRet0; - $230 = (___muldi3(($112|0),0,666643,0)|0); + $230 = (___muldi3(($96|0),0,($6|0),0)|0); $231 = tempRet0; - $232 = (___muldi3(($112|0),0,470296,0)|0); + $232 = (___muldi3(($90|0),0,($12|0),0)|0); $233 = tempRet0; - $234 = (___muldi3(($112|0),0,654183,0)|0); + $234 = (___muldi3(($84|0),0,($18|0),0)|0); $235 = tempRet0; - $236 = (_i64Add(($234|0),($235|0),($212|0),($213|0))|0); + $236 = (___muldi3(($78|0),0,($24|0),0)|0); $237 = tempRet0; - $238 = (___muldi3(($112|0),0,-997805,-1)|0); + $238 = (___muldi3(($72|0),0,($30|0),0)|0); $239 = tempRet0; - $240 = (_i64Add(($216|0),($217|0),($238|0),($239|0))|0); + $240 = (_i64Add(($236|0),($237|0),($238|0),($239|0))|0); $241 = tempRet0; - $242 = (___muldi3(($112|0),0,136657,0)|0); + $242 = (_i64Add(($240|0),($241|0),($234|0),($235|0))|0); $243 = tempRet0; - $244 = (_i64Add(($242|0),($243|0),($220|0),($221|0))|0); + $244 = (_i64Add(($242|0),($243|0),($232|0),($233|0))|0); $245 = tempRet0; - $246 = (___muldi3(($112|0),0,-683901,-1)|0); + $246 = (_i64Add(($244|0),($245|0),($230|0),($231|0))|0); $247 = tempRet0; - $248 = (_i64Add(($224|0),($225|0),($246|0),($247|0))|0); + $248 = (_i64Add(($246|0),($247|0),($162|0),0)|0); $249 = tempRet0; - $250 = (___muldi3(($106|0),0,666643,0)|0); + $250 = (___muldi3(($102|0),0,($6|0),0)|0); $251 = tempRet0; - $252 = (_i64Add(($250|0),($251|0),($38|0),0)|0); + $252 = (___muldi3(($96|0),0,($12|0),0)|0); $253 = tempRet0; - $254 = (___muldi3(($106|0),0,470296,0)|0); + $254 = (___muldi3(($90|0),0,($18|0),0)|0); $255 = tempRet0; - $256 = (___muldi3(($106|0),0,654183,0)|0); + $256 = (___muldi3(($84|0),0,($24|0),0)|0); $257 = tempRet0; - $258 = (_i64Add(($256|0),($257|0),($48|0),0)|0); + $258 = (___muldi3(($78|0),0,($30|0),0)|0); $259 = tempRet0; - $260 = (_i64Add(($258|0),($259|0),($232|0),($233|0))|0); + $260 = (___muldi3(($72|0),0,($36|0),0)|0); $261 = tempRet0; - $262 = (_i64Add(($260|0),($261|0),($208|0),($209|0))|0); + $262 = (___muldi3(($108|0),0,($6|0),0)|0); $263 = tempRet0; - $264 = (___muldi3(($106|0),0,-997805,-1)|0); + $264 = (___muldi3(($102|0),0,($12|0),0)|0); $265 = tempRet0; - $266 = (_i64Add(($236|0),($237|0),($264|0),($265|0))|0); + $266 = (___muldi3(($96|0),0,($18|0),0)|0); $267 = tempRet0; - $268 = (___muldi3(($106|0),0,136657,0)|0); + $268 = (___muldi3(($90|0),0,($24|0),0)|0); $269 = tempRet0; - $270 = (_i64Add(($240|0),($241|0),($268|0),($269|0))|0); + $270 = (___muldi3(($84|0),0,($30|0),0)|0); $271 = tempRet0; - $272 = (___muldi3(($106|0),0,-683901,-1)|0); + $272 = (___muldi3(($78|0),0,($36|0),0)|0); $273 = tempRet0; - $274 = (_i64Add(($244|0),($245|0),($272|0),($273|0))|0); + $274 = (___muldi3(($72|0),0,($42|0),0)|0); $275 = tempRet0; - $276 = (_i64Add(($252|0),($253|0),1048576,0)|0); + $276 = (_i64Add(($272|0),($273|0),($274|0),($275|0))|0); $277 = tempRet0; - $278 = (_bitshift64Lshr(($276|0),($277|0),21)|0); + $278 = (_i64Add(($276|0),($277|0),($270|0),($271|0))|0); $279 = tempRet0; - $280 = (_i64Add(($254|0),($255|0),($44|0),0)|0); + $280 = (_i64Add(($278|0),($279|0),($268|0),($269|0))|0); $281 = tempRet0; - $282 = (_i64Add(($280|0),($281|0),($230|0),($231|0))|0); + $282 = (_i64Add(($280|0),($281|0),($266|0),($267|0))|0); $283 = tempRet0; - $284 = (_i64Add(($282|0),($283|0),($278|0),($279|0))|0); + $284 = (_i64Add(($282|0),($283|0),($264|0),($265|0))|0); $285 = tempRet0; - $286 = (_bitshift64Shl(($278|0),($279|0),21)|0); + $286 = (_i64Add(($284|0),($285|0),($262|0),($263|0))|0); $287 = tempRet0; - $288 = (_i64Subtract(($252|0),($253|0),($286|0),($287|0))|0); + $288 = (_i64Add(($286|0),($287|0),($174|0),0)|0); $289 = tempRet0; - $290 = (_i64Add(($262|0),($263|0),1048576,0)|0); + $290 = (___muldi3(($114|0),0,($6|0),0)|0); $291 = tempRet0; - $292 = (_bitshift64Lshr(($290|0),($291|0),21)|0); + $292 = (___muldi3(($108|0),0,($12|0),0)|0); $293 = tempRet0; - $294 = (_i64Add(($266|0),($267|0),($292|0),($293|0))|0); + $294 = (___muldi3(($102|0),0,($18|0),0)|0); $295 = tempRet0; - $296 = (_bitshift64Shl(($292|0),($293|0),21)|0); + $296 = (___muldi3(($96|0),0,($24|0),0)|0); $297 = tempRet0; - $298 = (_i64Subtract(($262|0),($263|0),($296|0),($297|0))|0); + $298 = (___muldi3(($90|0),0,($30|0),0)|0); $299 = tempRet0; - $300 = (_i64Add(($270|0),($271|0),1048576,0)|0); + $300 = (___muldi3(($84|0),0,($36|0),0)|0); $301 = tempRet0; - $302 = (_bitshift64Ashr(($300|0),($301|0),21)|0); + $302 = (___muldi3(($78|0),0,($42|0),0)|0); $303 = tempRet0; - $304 = (_i64Add(($302|0),($303|0),($274|0),($275|0))|0); + $304 = (___muldi3(($72|0),0,($48|0),0)|0); $305 = tempRet0; - $306 = (_bitshift64Shl(($302|0),($303|0),21)|0); + $306 = (___muldi3(($118|0),0,($6|0),0)|0); $307 = tempRet0; - $308 = (_i64Subtract(($270|0),($271|0),($306|0),($307|0))|0); + $308 = (___muldi3(($114|0),0,($12|0),0)|0); $309 = tempRet0; - $310 = (_i64Add(($248|0),($249|0),1048576,0)|0); + $310 = (___muldi3(($108|0),0,($18|0),0)|0); $311 = tempRet0; - $312 = (_bitshift64Ashr(($310|0),($311|0),21)|0); + $312 = (___muldi3(($102|0),0,($24|0),0)|0); $313 = tempRet0; - $314 = (_i64Add(($312|0),($313|0),($228|0),($229|0))|0); + $314 = (___muldi3(($96|0),0,($30|0),0)|0); $315 = tempRet0; - $316 = (_bitshift64Shl(($312|0),($313|0),21)|0); + $316 = (___muldi3(($90|0),0,($36|0),0)|0); $317 = tempRet0; - $318 = (_i64Subtract(($248|0),($249|0),($316|0),($317|0))|0); + $318 = (___muldi3(($84|0),0,($42|0),0)|0); $319 = tempRet0; - $320 = (_i64Add(($206|0),($207|0),1048576,0)|0); + $320 = (___muldi3(($78|0),0,($48|0),0)|0); $321 = tempRet0; - $322 = (_bitshift64Ashr(($320|0),($321|0),21)|0); + $322 = (___muldi3(($72|0),0,($52|0),0)|0); $323 = tempRet0; - $324 = (_i64Add(($322|0),($323|0),($182|0),($183|0))|0); + $324 = (_i64Add(($320|0),($321|0),($322|0),($323|0))|0); $325 = tempRet0; - $326 = (_bitshift64Shl(($322|0),($323|0),21)|0); + $326 = (_i64Add(($324|0),($325|0),($318|0),($319|0))|0); $327 = tempRet0; - $328 = (_i64Subtract(($206|0),($207|0),($326|0),($327|0))|0); + $328 = (_i64Add(($326|0),($327|0),($316|0),($317|0))|0); $329 = tempRet0; - $330 = (_i64Add(($158|0),($159|0),1048576,0)|0); + $330 = (_i64Add(($328|0),($329|0),($314|0),($315|0))|0); $331 = tempRet0; - $332 = (_bitshift64Ashr(($330|0),($331|0),21)|0); + $332 = (_i64Add(($330|0),($331|0),($312|0),($313|0))|0); $333 = tempRet0; - $334 = (_i64Add(($332|0),($333|0),($100|0),0)|0); + $334 = (_i64Add(($332|0),($333|0),($310|0),($311|0))|0); $335 = tempRet0; - $336 = (_bitshift64Shl(($332|0),($333|0),21)|0); + $336 = (_i64Add(($334|0),($335|0),($306|0),($307|0))|0); $337 = tempRet0; - $338 = (_i64Subtract(($158|0),($159|0),($336|0),($337|0))|0); + $338 = (_i64Add(($336|0),($337|0),($308|0),($309|0))|0); $339 = tempRet0; - $340 = (_i64Add(($284|0),($285|0),1048576,0)|0); + $340 = (_i64Add(($338|0),($339|0),($184|0),0)|0); $341 = tempRet0; - $342 = (_bitshift64Lshr(($340|0),($341|0),21)|0); + $342 = (___muldi3(($124|0),0,($6|0),0)|0); $343 = tempRet0; - $344 = (_i64Add(($342|0),($343|0),($298|0),($299|0))|0); + $344 = (___muldi3(($118|0),0,($12|0),0)|0); $345 = tempRet0; - $346 = (_bitshift64Shl(($342|0),($343|0),21)|0); + $346 = (___muldi3(($114|0),0,($18|0),0)|0); $347 = tempRet0; - $348 = (_i64Subtract(($284|0),($285|0),($346|0),($347|0))|0); + $348 = (___muldi3(($108|0),0,($24|0),0)|0); $349 = tempRet0; - $350 = (_i64Add(($294|0),($295|0),1048576,0)|0); + $350 = (___muldi3(($102|0),0,($30|0),0)|0); $351 = tempRet0; - $352 = (_bitshift64Ashr(($350|0),($351|0),21)|0); + $352 = (___muldi3(($96|0),0,($36|0),0)|0); $353 = tempRet0; - $354 = (_i64Add(($352|0),($353|0),($308|0),($309|0))|0); + $354 = (___muldi3(($90|0),0,($42|0),0)|0); $355 = tempRet0; - $356 = (_bitshift64Shl(($352|0),($353|0),21)|0); + $356 = (___muldi3(($84|0),0,($48|0),0)|0); $357 = tempRet0; - $358 = (_i64Subtract(($294|0),($295|0),($356|0),($357|0))|0); + $358 = (___muldi3(($78|0),0,($52|0),0)|0); $359 = tempRet0; - $360 = (_i64Add(($304|0),($305|0),1048576,0)|0); + $360 = (___muldi3(($72|0),0,($58|0),0)|0); $361 = tempRet0; - $362 = (_bitshift64Ashr(($360|0),($361|0),21)|0); + $362 = (___muldi3(($130|0),0,($6|0),0)|0); $363 = tempRet0; - $364 = (_i64Add(($362|0),($363|0),($318|0),($319|0))|0); + $364 = (___muldi3(($124|0),0,($12|0),0)|0); $365 = tempRet0; - $366 = (_bitshift64Shl(($362|0),($363|0),21)|0); + $366 = (___muldi3(($118|0),0,($18|0),0)|0); $367 = tempRet0; - $368 = (_i64Subtract(($304|0),($305|0),($366|0),($367|0))|0); + $368 = (___muldi3(($114|0),0,($24|0),0)|0); $369 = tempRet0; - $370 = (_i64Add(($314|0),($315|0),1048576,0)|0); + $370 = (___muldi3(($108|0),0,($30|0),0)|0); $371 = tempRet0; - $372 = (_bitshift64Ashr(($370|0),($371|0),21)|0); + $372 = (___muldi3(($102|0),0,($36|0),0)|0); $373 = tempRet0; - $374 = (_i64Add(($372|0),($373|0),($328|0),($329|0))|0); + $374 = (___muldi3(($96|0),0,($42|0),0)|0); $375 = tempRet0; - $376 = (_bitshift64Shl(($372|0),($373|0),21)|0); + $376 = (___muldi3(($90|0),0,($48|0),0)|0); $377 = tempRet0; - $378 = (_i64Subtract(($314|0),($315|0),($376|0),($377|0))|0); + $378 = (___muldi3(($84|0),0,($52|0),0)|0); $379 = tempRet0; - $380 = (_i64Add(($324|0),($325|0),1048576,0)|0); + $380 = (___muldi3(($78|0),0,($58|0),0)|0); $381 = tempRet0; - $382 = (_bitshift64Ashr(($380|0),($381|0),21)|0); + $382 = (___muldi3(($72|0),0,($64|0),0)|0); $383 = tempRet0; - $384 = (_i64Add(($382|0),($383|0),($338|0),($339|0))|0); + $384 = (_i64Add(($380|0),($381|0),($382|0),($383|0))|0); $385 = tempRet0; - $386 = (_bitshift64Shl(($382|0),($383|0),21)|0); + $386 = (_i64Add(($384|0),($385|0),($378|0),($379|0))|0); $387 = tempRet0; - $388 = (_i64Subtract(($324|0),($325|0),($386|0),($387|0))|0); + $388 = (_i64Add(($386|0),($387|0),($376|0),($377|0))|0); $389 = tempRet0; - $390 = (___muldi3(($334|0),($335|0),666643,0)|0); + $390 = (_i64Add(($388|0),($389|0),($374|0),($375|0))|0); $391 = tempRet0; - $392 = (_i64Add(($32|0),0,($390|0),($391|0))|0); + $392 = (_i64Add(($390|0),($391|0),($372|0),($373|0))|0); $393 = tempRet0; - $394 = (___muldi3(($334|0),($335|0),470296,0)|0); + $394 = (_i64Add(($392|0),($393|0),($370|0),($371|0))|0); $395 = tempRet0; - $396 = (_i64Add(($288|0),($289|0),($394|0),($395|0))|0); + $396 = (_i64Add(($394|0),($395|0),($366|0),($367|0))|0); $397 = tempRet0; - $398 = (___muldi3(($334|0),($335|0),654183,0)|0); + $398 = (_i64Add(($396|0),($397|0),($368|0),($369|0))|0); $399 = tempRet0; - $400 = (_i64Add(($348|0),($349|0),($398|0),($399|0))|0); + $400 = (_i64Add(($398|0),($399|0),($364|0),($365|0))|0); $401 = tempRet0; - $402 = (___muldi3(($334|0),($335|0),-997805,-1)|0); + $402 = (_i64Add(($400|0),($401|0),($362|0),($363|0))|0); $403 = tempRet0; - $404 = (_i64Add(($402|0),($403|0),($344|0),($345|0))|0); + $404 = (_i64Add(($402|0),($403|0),($196|0),0)|0); $405 = tempRet0; - $406 = (___muldi3(($334|0),($335|0),136657,0)|0); + $406 = (___muldi3(($134|0),($135|0),($6|0),0)|0); $407 = tempRet0; - $408 = (_i64Add(($406|0),($407|0),($358|0),($359|0))|0); + $408 = (___muldi3(($130|0),0,($12|0),0)|0); $409 = tempRet0; - $410 = (___muldi3(($334|0),($335|0),-683901,-1)|0); + $410 = (___muldi3(($124|0),0,($18|0),0)|0); $411 = tempRet0; - $412 = (_i64Add(($354|0),($355|0),($410|0),($411|0))|0); + $412 = (___muldi3(($118|0),0,($24|0),0)|0); $413 = tempRet0; - $414 = (___muldi3(($384|0),($385|0),666643,0)|0); + $414 = (___muldi3(($114|0),0,($30|0),0)|0); $415 = tempRet0; - $416 = (_i64Add(($26|0),0,($414|0),($415|0))|0); + $416 = (___muldi3(($108|0),0,($36|0),0)|0); $417 = tempRet0; - $418 = (___muldi3(($384|0),($385|0),470296,0)|0); + $418 = (___muldi3(($102|0),0,($42|0),0)|0); $419 = tempRet0; - $420 = (_i64Add(($392|0),($393|0),($418|0),($419|0))|0); + $420 = (___muldi3(($96|0),0,($48|0),0)|0); $421 = tempRet0; - $422 = (___muldi3(($384|0),($385|0),654183,0)|0); + $422 = (___muldi3(($90|0),0,($52|0),0)|0); $423 = tempRet0; - $424 = (_i64Add(($396|0),($397|0),($422|0),($423|0))|0); + $424 = (___muldi3(($84|0),0,($58|0),0)|0); $425 = tempRet0; - $426 = (___muldi3(($384|0),($385|0),-997805,-1)|0); + $426 = (___muldi3(($78|0),0,($64|0),0)|0); $427 = tempRet0; - $428 = (_i64Add(($400|0),($401|0),($426|0),($427|0))|0); + $428 = (___muldi3(($72|0),0,($68|0),($69|0))|0); $429 = tempRet0; - $430 = (___muldi3(($384|0),($385|0),136657,0)|0); + $430 = (___muldi3(($134|0),($135|0),($12|0),0)|0); $431 = tempRet0; - $432 = (_i64Add(($404|0),($405|0),($430|0),($431|0))|0); + $432 = (___muldi3(($130|0),0,($18|0),0)|0); $433 = tempRet0; - $434 = (___muldi3(($384|0),($385|0),-683901,-1)|0); + $434 = (___muldi3(($124|0),0,($24|0),0)|0); $435 = tempRet0; - $436 = (_i64Add(($408|0),($409|0),($434|0),($435|0))|0); + $436 = (___muldi3(($118|0),0,($30|0),0)|0); $437 = tempRet0; - $438 = (___muldi3(($388|0),($389|0),666643,0)|0); + $438 = (___muldi3(($114|0),0,($36|0),0)|0); $439 = tempRet0; - $440 = (_i64Add(($20|0),0,($438|0),($439|0))|0); + $440 = (___muldi3(($108|0),0,($42|0),0)|0); $441 = tempRet0; - $442 = (___muldi3(($388|0),($389|0),470296,0)|0); + $442 = (___muldi3(($102|0),0,($48|0),0)|0); $443 = tempRet0; - $444 = (_i64Add(($416|0),($417|0),($442|0),($443|0))|0); + $444 = (___muldi3(($96|0),0,($52|0),0)|0); $445 = tempRet0; - $446 = (___muldi3(($388|0),($389|0),654183,0)|0); + $446 = (___muldi3(($90|0),0,($58|0),0)|0); $447 = tempRet0; - $448 = (_i64Add(($420|0),($421|0),($446|0),($447|0))|0); + $448 = (___muldi3(($84|0),0,($64|0),0)|0); $449 = tempRet0; - $450 = (___muldi3(($388|0),($389|0),-997805,-1)|0); + $450 = (___muldi3(($78|0),0,($68|0),($69|0))|0); $451 = tempRet0; - $452 = (_i64Add(($424|0),($425|0),($450|0),($451|0))|0); + $452 = (_i64Add(($448|0),($449|0),($450|0),($451|0))|0); $453 = tempRet0; - $454 = (___muldi3(($388|0),($389|0),136657,0)|0); + $454 = (_i64Add(($452|0),($453|0),($446|0),($447|0))|0); $455 = tempRet0; - $456 = (_i64Add(($428|0),($429|0),($454|0),($455|0))|0); + $456 = (_i64Add(($454|0),($455|0),($444|0),($445|0))|0); $457 = tempRet0; - $458 = (___muldi3(($388|0),($389|0),-683901,-1)|0); + $458 = (_i64Add(($456|0),($457|0),($442|0),($443|0))|0); $459 = tempRet0; - $460 = (_i64Add(($432|0),($433|0),($458|0),($459|0))|0); + $460 = (_i64Add(($458|0),($459|0),($440|0),($441|0))|0); $461 = tempRet0; - $462 = (___muldi3(($374|0),($375|0),666643,0)|0); + $462 = (_i64Add(($460|0),($461|0),($436|0),($437|0))|0); $463 = tempRet0; - $464 = (_i64Add(($462|0),($463|0),($14|0),0)|0); + $464 = (_i64Add(($462|0),($463|0),($438|0),($439|0))|0); $465 = tempRet0; - $466 = (___muldi3(($374|0),($375|0),470296,0)|0); + $466 = (_i64Add(($464|0),($465|0),($434|0),($435|0))|0); $467 = tempRet0; - $468 = (_i64Add(($440|0),($441|0),($466|0),($467|0))|0); + $468 = (_i64Add(($466|0),($467|0),($432|0),($433|0))|0); $469 = tempRet0; - $470 = (___muldi3(($374|0),($375|0),654183,0)|0); + $470 = (_i64Add(($468|0),($469|0),($430|0),($431|0))|0); $471 = tempRet0; - $472 = (_i64Add(($444|0),($445|0),($470|0),($471|0))|0); + $472 = (___muldi3(($134|0),($135|0),($18|0),0)|0); $473 = tempRet0; - $474 = (___muldi3(($374|0),($375|0),-997805,-1)|0); + $474 = (___muldi3(($130|0),0,($24|0),0)|0); $475 = tempRet0; - $476 = (_i64Add(($448|0),($449|0),($474|0),($475|0))|0); + $476 = (___muldi3(($124|0),0,($30|0),0)|0); $477 = tempRet0; - $478 = (___muldi3(($374|0),($375|0),136657,0)|0); + $478 = (___muldi3(($118|0),0,($36|0),0)|0); $479 = tempRet0; - $480 = (_i64Add(($452|0),($453|0),($478|0),($479|0))|0); + $480 = (___muldi3(($114|0),0,($42|0),0)|0); $481 = tempRet0; - $482 = (___muldi3(($374|0),($375|0),-683901,-1)|0); + $482 = (___muldi3(($108|0),0,($48|0),0)|0); $483 = tempRet0; - $484 = (_i64Add(($456|0),($457|0),($482|0),($483|0))|0); + $484 = (___muldi3(($102|0),0,($52|0),0)|0); $485 = tempRet0; - $486 = (___muldi3(($378|0),($379|0),666643,0)|0); + $486 = (___muldi3(($96|0),0,($58|0),0)|0); $487 = tempRet0; - $488 = (___muldi3(($378|0),($379|0),470296,0)|0); + $488 = (___muldi3(($90|0),0,($64|0),0)|0); $489 = tempRet0; - $490 = (___muldi3(($378|0),($379|0),654183,0)|0); + $490 = (___muldi3(($84|0),0,($68|0),($69|0))|0); $491 = tempRet0; - $492 = (_i64Add(($468|0),($469|0),($490|0),($491|0))|0); + $492 = (___muldi3(($134|0),($135|0),($24|0),0)|0); $493 = tempRet0; - $494 = (___muldi3(($378|0),($379|0),-997805,-1)|0); + $494 = (___muldi3(($130|0),0,($30|0),0)|0); $495 = tempRet0; - $496 = (_i64Add(($472|0),($473|0),($494|0),($495|0))|0); + $496 = (___muldi3(($124|0),0,($36|0),0)|0); $497 = tempRet0; - $498 = (___muldi3(($378|0),($379|0),136657,0)|0); + $498 = (___muldi3(($118|0),0,($42|0),0)|0); $499 = tempRet0; - $500 = (_i64Add(($476|0),($477|0),($498|0),($499|0))|0); + $500 = (___muldi3(($114|0),0,($48|0),0)|0); $501 = tempRet0; - $502 = (___muldi3(($378|0),($379|0),-683901,-1)|0); + $502 = (___muldi3(($108|0),0,($52|0),0)|0); $503 = tempRet0; - $504 = (_i64Add(($480|0),($481|0),($502|0),($503|0))|0); + $504 = (___muldi3(($102|0),0,($58|0),0)|0); $505 = tempRet0; - $506 = (___muldi3(($364|0),($365|0),666643,0)|0); + $506 = (___muldi3(($96|0),0,($64|0),0)|0); $507 = tempRet0; - $508 = (_i64Add(($506|0),($507|0),($2|0),0)|0); + $508 = (___muldi3(($90|0),0,($68|0),($69|0))|0); $509 = tempRet0; - $510 = (___muldi3(($364|0),($365|0),470296,0)|0); + $510 = (_i64Add(($506|0),($507|0),($508|0),($509|0))|0); $511 = tempRet0; - $512 = (___muldi3(($364|0),($365|0),654183,0)|0); + $512 = (_i64Add(($510|0),($511|0),($504|0),($505|0))|0); $513 = tempRet0; - $514 = (_i64Add(($464|0),($465|0),($512|0),($513|0))|0); + $514 = (_i64Add(($512|0),($513|0),($502|0),($503|0))|0); $515 = tempRet0; - $516 = (_i64Add(($514|0),($515|0),($488|0),($489|0))|0); + $516 = (_i64Add(($514|0),($515|0),($498|0),($499|0))|0); $517 = tempRet0; - $518 = (___muldi3(($364|0),($365|0),-997805,-1)|0); + $518 = (_i64Add(($516|0),($517|0),($500|0),($501|0))|0); $519 = tempRet0; - $520 = (_i64Add(($492|0),($493|0),($518|0),($519|0))|0); + $520 = (_i64Add(($518|0),($519|0),($496|0),($497|0))|0); $521 = tempRet0; - $522 = (___muldi3(($364|0),($365|0),136657,0)|0); + $522 = (_i64Add(($520|0),($521|0),($494|0),($495|0))|0); $523 = tempRet0; - $524 = (_i64Add(($496|0),($497|0),($522|0),($523|0))|0); + $524 = (_i64Add(($522|0),($523|0),($492|0),($493|0))|0); $525 = tempRet0; - $526 = (___muldi3(($364|0),($365|0),-683901,-1)|0); + $526 = (___muldi3(($134|0),($135|0),($30|0),0)|0); $527 = tempRet0; - $528 = (_i64Add(($500|0),($501|0),($526|0),($527|0))|0); + $528 = (___muldi3(($130|0),0,($36|0),0)|0); $529 = tempRet0; - $530 = (_i64Add(($508|0),($509|0),1048576,0)|0); + $530 = (___muldi3(($124|0),0,($42|0),0)|0); $531 = tempRet0; - $532 = (_bitshift64Ashr(($530|0),($531|0),21)|0); + $532 = (___muldi3(($118|0),0,($48|0),0)|0); $533 = tempRet0; - $534 = (_i64Add(($510|0),($511|0),($8|0),0)|0); + $534 = (___muldi3(($114|0),0,($52|0),0)|0); $535 = tempRet0; - $536 = (_i64Add(($534|0),($535|0),($486|0),($487|0))|0); + $536 = (___muldi3(($108|0),0,($58|0),0)|0); $537 = tempRet0; - $538 = (_i64Add(($536|0),($537|0),($532|0),($533|0))|0); + $538 = (___muldi3(($102|0),0,($64|0),0)|0); $539 = tempRet0; - $540 = (_bitshift64Shl(($532|0),($533|0),21)|0); + $540 = (___muldi3(($96|0),0,($68|0),($69|0))|0); $541 = tempRet0; - $542 = (_i64Subtract(($508|0),($509|0),($540|0),($541|0))|0); + $542 = (___muldi3(($134|0),($135|0),($36|0),0)|0); $543 = tempRet0; - $544 = (_i64Add(($516|0),($517|0),1048576,0)|0); + $544 = (___muldi3(($130|0),0,($42|0),0)|0); $545 = tempRet0; - $546 = (_bitshift64Ashr(($544|0),($545|0),21)|0); + $546 = (___muldi3(($124|0),0,($48|0),0)|0); $547 = tempRet0; - $548 = (_i64Add(($546|0),($547|0),($520|0),($521|0))|0); + $548 = (___muldi3(($118|0),0,($52|0),0)|0); $549 = tempRet0; - $550 = (_bitshift64Shl(($546|0),($547|0),21)|0); + $550 = (___muldi3(($114|0),0,($58|0),0)|0); $551 = tempRet0; - $552 = (_i64Add(($524|0),($525|0),1048576,0)|0); + $552 = (___muldi3(($108|0),0,($64|0),0)|0); $553 = tempRet0; - $554 = (_bitshift64Ashr(($552|0),($553|0),21)|0); + $554 = (___muldi3(($102|0),0,($68|0),($69|0))|0); $555 = tempRet0; - $556 = (_i64Add(($554|0),($555|0),($528|0),($529|0))|0); + $556 = (_i64Add(($552|0),($553|0),($554|0),($555|0))|0); $557 = tempRet0; - $558 = (_bitshift64Shl(($554|0),($555|0),21)|0); + $558 = (_i64Add(($556|0),($557|0),($548|0),($549|0))|0); $559 = tempRet0; - $560 = (_i64Add(($504|0),($505|0),1048576,0)|0); + $560 = (_i64Add(($558|0),($559|0),($550|0),($551|0))|0); $561 = tempRet0; - $562 = (_bitshift64Ashr(($560|0),($561|0),21)|0); + $562 = (_i64Add(($560|0),($561|0),($546|0),($547|0))|0); $563 = tempRet0; - $564 = (_i64Add(($562|0),($563|0),($484|0),($485|0))|0); + $564 = (_i64Add(($562|0),($563|0),($544|0),($545|0))|0); $565 = tempRet0; - $566 = (_bitshift64Shl(($562|0),($563|0),21)|0); + $566 = (_i64Add(($564|0),($565|0),($542|0),($543|0))|0); $567 = tempRet0; - $568 = (_i64Subtract(($504|0),($505|0),($566|0),($567|0))|0); + $568 = (___muldi3(($134|0),($135|0),($42|0),0)|0); $569 = tempRet0; - $570 = (_i64Add(($460|0),($461|0),1048576,0)|0); + $570 = (___muldi3(($130|0),0,($48|0),0)|0); $571 = tempRet0; - $572 = (_bitshift64Ashr(($570|0),($571|0),21)|0); + $572 = (___muldi3(($124|0),0,($52|0),0)|0); $573 = tempRet0; - $574 = (_i64Add(($572|0),($573|0),($436|0),($437|0))|0); + $574 = (___muldi3(($118|0),0,($58|0),0)|0); $575 = tempRet0; - $576 = (_bitshift64Shl(($572|0),($573|0),21)|0); + $576 = (___muldi3(($114|0),0,($64|0),0)|0); $577 = tempRet0; - $578 = (_i64Subtract(($460|0),($461|0),($576|0),($577|0))|0); + $578 = (___muldi3(($108|0),0,($68|0),($69|0))|0); $579 = tempRet0; - $580 = (_i64Add(($412|0),($413|0),1048576,0)|0); + $580 = (___muldi3(($134|0),($135|0),($48|0),0)|0); $581 = tempRet0; - $582 = (_bitshift64Ashr(($580|0),($581|0),21)|0); + $582 = (___muldi3(($130|0),0,($52|0),0)|0); $583 = tempRet0; - $584 = (_i64Add(($582|0),($583|0),($368|0),($369|0))|0); + $584 = (___muldi3(($124|0),0,($58|0),0)|0); $585 = tempRet0; - $586 = (_bitshift64Shl(($582|0),($583|0),21)|0); + $586 = (___muldi3(($118|0),0,($64|0),0)|0); $587 = tempRet0; - $588 = (_i64Subtract(($412|0),($413|0),($586|0),($587|0))|0); + $588 = (___muldi3(($114|0),0,($68|0),($69|0))|0); $589 = tempRet0; - $590 = (_i64Add(($538|0),($539|0),1048576,0)|0); + $590 = (_i64Add(($588|0),($589|0),($586|0),($587|0))|0); $591 = tempRet0; - $592 = (_bitshift64Ashr(($590|0),($591|0),21)|0); + $592 = (_i64Add(($590|0),($591|0),($584|0),($585|0))|0); $593 = tempRet0; - $594 = (_bitshift64Shl(($592|0),($593|0),21)|0); + $594 = (_i64Add(($592|0),($593|0),($582|0),($583|0))|0); $595 = tempRet0; - $596 = (_i64Add(($548|0),($549|0),1048576,0)|0); + $596 = (_i64Add(($594|0),($595|0),($580|0),($581|0))|0); $597 = tempRet0; - $598 = (_bitshift64Ashr(($596|0),($597|0),21)|0); + $598 = (___muldi3(($134|0),($135|0),($52|0),0)|0); $599 = tempRet0; - $600 = (_bitshift64Shl(($598|0),($599|0),21)|0); + $600 = (___muldi3(($130|0),0,($58|0),0)|0); $601 = tempRet0; - $602 = (_i64Subtract(($548|0),($549|0),($600|0),($601|0))|0); + $602 = (___muldi3(($124|0),0,($64|0),0)|0); $603 = tempRet0; - $604 = (_i64Add(($556|0),($557|0),1048576,0)|0); + $604 = (___muldi3(($118|0),0,($68|0),($69|0))|0); $605 = tempRet0; - $606 = (_bitshift64Ashr(($604|0),($605|0),21)|0); + $606 = (___muldi3(($134|0),($135|0),($58|0),0)|0); $607 = tempRet0; - $608 = (_i64Add(($568|0),($569|0),($606|0),($607|0))|0); + $608 = (___muldi3(($130|0),0,($64|0),0)|0); $609 = tempRet0; - $610 = (_bitshift64Shl(($606|0),($607|0),21)|0); + $610 = (___muldi3(($124|0),0,($68|0),($69|0))|0); $611 = tempRet0; - $612 = (_i64Subtract(($556|0),($557|0),($610|0),($611|0))|0); + $612 = (_i64Add(($608|0),($609|0),($610|0),($611|0))|0); $613 = tempRet0; - $614 = (_i64Add(($564|0),($565|0),1048576,0)|0); + $614 = (_i64Add(($612|0),($613|0),($606|0),($607|0))|0); $615 = tempRet0; - $616 = (_bitshift64Ashr(($614|0),($615|0),21)|0); + $616 = (___muldi3(($134|0),($135|0),($64|0),0)|0); $617 = tempRet0; - $618 = (_i64Add(($578|0),($579|0),($616|0),($617|0))|0); + $618 = (___muldi3(($130|0),0,($68|0),($69|0))|0); $619 = tempRet0; - $620 = (_bitshift64Shl(($616|0),($617|0),21)|0); + $620 = (_i64Add(($616|0),($617|0),($618|0),($619|0))|0); $621 = tempRet0; - $622 = (_i64Subtract(($564|0),($565|0),($620|0),($621|0))|0); + $622 = (___muldi3(($134|0),($135|0),($68|0),($69|0))|0); $623 = tempRet0; - $624 = (_i64Add(($574|0),($575|0),1048576,0)|0); + $624 = (_i64Add(($204|0),($205|0),1048576,0)|0); $625 = tempRet0; - $626 = (_bitshift64Ashr(($624|0),($625|0),21)|0); + $626 = (_bitshift64Lshr(($624|0),($625|0),21)|0); $627 = tempRet0; - $628 = (_i64Add(($588|0),($589|0),($626|0),($627|0))|0); + $628 = (_i64Add(($206|0),($207|0),($208|0),($209|0))|0); $629 = tempRet0; - $630 = (_bitshift64Shl(($626|0),($627|0),21)|0); + $630 = (_i64Add(($628|0),($629|0),($144|0),0)|0); $631 = tempRet0; - $632 = (_i64Subtract(($574|0),($575|0),($630|0),($631|0))|0); + $632 = (_i64Add(($630|0),($631|0),($626|0),($627|0))|0); $633 = tempRet0; - $634 = (_i64Add(($584|0),($585|0),1048576,0)|0); + $634 = (_bitshift64Shl(($626|0),($627|0),21)|0); $635 = tempRet0; - $636 = (_bitshift64Ashr(($634|0),($635|0),21)|0); + $636 = (_i64Subtract(($204|0),($205|0),($634|0),($635|0))|0); $637 = tempRet0; - $638 = (_bitshift64Shl(($636|0),($637|0),21)|0); + $638 = (_i64Add(($220|0),($221|0),1048576,0)|0); $639 = tempRet0; - $640 = (_i64Subtract(($584|0),($585|0),($638|0),($639|0))|0); + $640 = (_bitshift64Lshr(($638|0),($639|0),21)|0); $641 = tempRet0; - $642 = (___muldi3(($636|0),($637|0),666643,0)|0); + $642 = (_i64Add(($226|0),($227|0),($228|0),($229|0))|0); $643 = tempRet0; - $644 = (_i64Add(($542|0),($543|0),($642|0),($643|0))|0); + $644 = (_i64Add(($642|0),($643|0),($224|0),($225|0))|0); $645 = tempRet0; - $646 = (___muldi3(($636|0),($637|0),470296,0)|0); + $646 = (_i64Add(($644|0),($645|0),($222|0),($223|0))|0); $647 = tempRet0; - $648 = (___muldi3(($636|0),($637|0),654183,0)|0); + $648 = (_i64Add(($646|0),($647|0),($156|0),0)|0); $649 = tempRet0; - $650 = (___muldi3(($636|0),($637|0),-997805,-1)|0); + $650 = (_i64Add(($648|0),($649|0),($640|0),($641|0))|0); $651 = tempRet0; - $652 = (_i64Add(($602|0),($603|0),($650|0),($651|0))|0); + $652 = (_bitshift64Shl(($640|0),($641|0),21)|0); $653 = tempRet0; - $654 = (___muldi3(($636|0),($637|0),136657,0)|0); + $654 = (_i64Add(($248|0),($249|0),1048576,0)|0); $655 = tempRet0; - $656 = (___muldi3(($636|0),($637|0),-683901,-1)|0); + $656 = (_bitshift64Ashr(($654|0),($655|0),21)|0); $657 = tempRet0; - $658 = (_i64Add(($612|0),($613|0),($656|0),($657|0))|0); + $658 = (_i64Add(($258|0),($259|0),($260|0),($261|0))|0); $659 = tempRet0; - $660 = (_bitshift64Ashr(($644|0),($645|0),21)|0); + $660 = (_i64Add(($658|0),($659|0),($256|0),($257|0))|0); $661 = tempRet0; - $662 = (_i64Add(($646|0),($647|0),($538|0),($539|0))|0); + $662 = (_i64Add(($660|0),($661|0),($254|0),($255|0))|0); $663 = tempRet0; - $664 = (_i64Subtract(($662|0),($663|0),($594|0),($595|0))|0); + $664 = (_i64Add(($662|0),($663|0),($252|0),($253|0))|0); $665 = tempRet0; - $666 = (_i64Add(($664|0),($665|0),($660|0),($661|0))|0); + $666 = (_i64Add(($664|0),($665|0),($250|0),($251|0))|0); $667 = tempRet0; - $668 = (_bitshift64Shl(($660|0),($661|0),21)|0); + $668 = (_i64Add(($666|0),($667|0),($168|0),0)|0); $669 = tempRet0; - $670 = (_i64Subtract(($644|0),($645|0),($668|0),($669|0))|0); + $670 = (_i64Add(($668|0),($669|0),($656|0),($657|0))|0); $671 = tempRet0; - $672 = (_bitshift64Ashr(($666|0),($667|0),21)|0); + $672 = (_bitshift64Shl(($656|0),($657|0),21)|0); $673 = tempRet0; - $674 = (_i64Add(($648|0),($649|0),($516|0),($517|0))|0); + $674 = (_i64Add(($288|0),($289|0),1048576,0)|0); $675 = tempRet0; - $676 = (_i64Subtract(($674|0),($675|0),($550|0),($551|0))|0); + $676 = (_bitshift64Ashr(($674|0),($675|0),21)|0); $677 = tempRet0; - $678 = (_i64Add(($676|0),($677|0),($592|0),($593|0))|0); + $678 = (_i64Add(($302|0),($303|0),($304|0),($305|0))|0); $679 = tempRet0; - $680 = (_i64Add(($678|0),($679|0),($672|0),($673|0))|0); + $680 = (_i64Add(($678|0),($679|0),($300|0),($301|0))|0); $681 = tempRet0; - $682 = (_bitshift64Shl(($672|0),($673|0),21)|0); + $682 = (_i64Add(($680|0),($681|0),($298|0),($299|0))|0); $683 = tempRet0; - $684 = (_i64Subtract(($666|0),($667|0),($682|0),($683|0))|0); + $684 = (_i64Add(($682|0),($683|0),($296|0),($297|0))|0); $685 = tempRet0; - $686 = (_bitshift64Ashr(($680|0),($681|0),21)|0); + $686 = (_i64Add(($684|0),($685|0),($294|0),($295|0))|0); $687 = tempRet0; - $688 = (_i64Add(($686|0),($687|0),($652|0),($653|0))|0); + $688 = (_i64Add(($686|0),($687|0),($292|0),($293|0))|0); $689 = tempRet0; - $690 = (_bitshift64Shl(($686|0),($687|0),21)|0); + $690 = (_i64Add(($688|0),($689|0),($290|0),($291|0))|0); $691 = tempRet0; - $692 = (_i64Subtract(($680|0),($681|0),($690|0),($691|0))|0); + $692 = (_i64Add(($690|0),($691|0),($180|0),0)|0); $693 = tempRet0; - $694 = (_bitshift64Ashr(($688|0),($689|0),21)|0); + $694 = (_i64Add(($692|0),($693|0),($676|0),($677|0))|0); $695 = tempRet0; - $696 = (_i64Add(($654|0),($655|0),($524|0),($525|0))|0); + $696 = (_bitshift64Shl(($676|0),($677|0),21)|0); $697 = tempRet0; - $698 = (_i64Subtract(($696|0),($697|0),($558|0),($559|0))|0); + $698 = (_i64Add(($340|0),($341|0),1048576,0)|0); $699 = tempRet0; - $700 = (_i64Add(($698|0),($699|0),($598|0),($599|0))|0); + $700 = (_bitshift64Ashr(($698|0),($699|0),21)|0); $701 = tempRet0; - $702 = (_i64Add(($700|0),($701|0),($694|0),($695|0))|0); + $702 = (_i64Add(($358|0),($359|0),($360|0),($361|0))|0); $703 = tempRet0; - $704 = (_bitshift64Shl(($694|0),($695|0),21)|0); + $704 = (_i64Add(($702|0),($703|0),($356|0),($357|0))|0); $705 = tempRet0; - $706 = (_i64Subtract(($688|0),($689|0),($704|0),($705|0))|0); + $706 = (_i64Add(($704|0),($705|0),($354|0),($355|0))|0); $707 = tempRet0; - $708 = (_bitshift64Ashr(($702|0),($703|0),21)|0); + $708 = (_i64Add(($706|0),($707|0),($352|0),($353|0))|0); $709 = tempRet0; - $710 = (_i64Add(($708|0),($709|0),($658|0),($659|0))|0); + $710 = (_i64Add(($708|0),($709|0),($350|0),($351|0))|0); $711 = tempRet0; - $712 = (_bitshift64Shl(($708|0),($709|0),21)|0); + $712 = (_i64Add(($710|0),($711|0),($348|0),($349|0))|0); $713 = tempRet0; - $714 = (_i64Subtract(($702|0),($703|0),($712|0),($713|0))|0); + $714 = (_i64Add(($712|0),($713|0),($344|0),($345|0))|0); $715 = tempRet0; - $716 = (_bitshift64Ashr(($710|0),($711|0),21)|0); + $716 = (_i64Add(($714|0),($715|0),($346|0),($347|0))|0); $717 = tempRet0; - $718 = (_i64Add(($608|0),($609|0),($716|0),($717|0))|0); + $718 = (_i64Add(($716|0),($717|0),($342|0),($343|0))|0); $719 = tempRet0; - $720 = (_bitshift64Shl(($716|0),($717|0),21)|0); + $720 = (_i64Add(($718|0),($719|0),($190|0),0)|0); $721 = tempRet0; - $722 = (_i64Subtract(($710|0),($711|0),($720|0),($721|0))|0); + $722 = (_i64Add(($720|0),($721|0),($700|0),($701|0))|0); $723 = tempRet0; - $724 = (_bitshift64Ashr(($718|0),($719|0),21)|0); + $724 = (_bitshift64Shl(($700|0),($701|0),21)|0); $725 = tempRet0; - $726 = (_i64Add(($724|0),($725|0),($622|0),($623|0))|0); + $726 = (_i64Add(($404|0),($405|0),1048576,0)|0); $727 = tempRet0; - $728 = (_bitshift64Shl(($724|0),($725|0),21)|0); + $728 = (_bitshift64Ashr(($726|0),($727|0),21)|0); $729 = tempRet0; - $730 = (_i64Subtract(($718|0),($719|0),($728|0),($729|0))|0); + $730 = (_i64Add(($426|0),($427|0),($428|0),($429|0))|0); $731 = tempRet0; - $732 = (_bitshift64Ashr(($726|0),($727|0),21)|0); + $732 = (_i64Add(($730|0),($731|0),($424|0),($425|0))|0); $733 = tempRet0; - $734 = (_i64Add(($618|0),($619|0),($732|0),($733|0))|0); + $734 = (_i64Add(($732|0),($733|0),($422|0),($423|0))|0); $735 = tempRet0; - $736 = (_bitshift64Shl(($732|0),($733|0),21)|0); + $736 = (_i64Add(($734|0),($735|0),($420|0),($421|0))|0); $737 = tempRet0; - $738 = (_i64Subtract(($726|0),($727|0),($736|0),($737|0))|0); + $738 = (_i64Add(($736|0),($737|0),($418|0),($419|0))|0); $739 = tempRet0; - $740 = (_bitshift64Ashr(($734|0),($735|0),21)|0); + $740 = (_i64Add(($738|0),($739|0),($416|0),($417|0))|0); $741 = tempRet0; - $742 = (_i64Add(($740|0),($741|0),($632|0),($633|0))|0); + $742 = (_i64Add(($740|0),($741|0),($412|0),($413|0))|0); $743 = tempRet0; - $744 = (_bitshift64Shl(($740|0),($741|0),21)|0); + $744 = (_i64Add(($742|0),($743|0),($414|0),($415|0))|0); $745 = tempRet0; - $746 = (_i64Subtract(($734|0),($735|0),($744|0),($745|0))|0); + $746 = (_i64Add(($744|0),($745|0),($410|0),($411|0))|0); $747 = tempRet0; - $748 = (_bitshift64Ashr(($742|0),($743|0),21)|0); + $748 = (_i64Add(($746|0),($747|0),($406|0),($407|0))|0); $749 = tempRet0; - $750 = (_i64Add(($628|0),($629|0),($748|0),($749|0))|0); + $750 = (_i64Add(($748|0),($749|0),($408|0),($409|0))|0); $751 = tempRet0; - $752 = (_bitshift64Shl(($748|0),($749|0),21)|0); + $752 = (_i64Add(($750|0),($751|0),($200|0),($201|0))|0); $753 = tempRet0; - $754 = (_i64Subtract(($742|0),($743|0),($752|0),($753|0))|0); + $754 = (_i64Add(($752|0),($753|0),($728|0),($729|0))|0); $755 = tempRet0; - $756 = (_bitshift64Ashr(($750|0),($751|0),21)|0); + $756 = (_bitshift64Shl(($728|0),($729|0),21)|0); $757 = tempRet0; - $758 = (_i64Add(($756|0),($757|0),($640|0),($641|0))|0); + $758 = (_i64Add(($470|0),($471|0),1048576,0)|0); $759 = tempRet0; - $760 = (_bitshift64Shl(($756|0),($757|0),21)|0); + $760 = (_bitshift64Ashr(($758|0),($759|0),21)|0); $761 = tempRet0; - $762 = (_i64Subtract(($750|0),($751|0),($760|0),($761|0))|0); + $762 = (_i64Add(($488|0),($489|0),($490|0),($491|0))|0); $763 = tempRet0; - $764 = (_bitshift64Ashr(($758|0),($759|0),21)|0); + $764 = (_i64Add(($762|0),($763|0),($486|0),($487|0))|0); $765 = tempRet0; - $766 = (_bitshift64Shl(($764|0),($765|0),21)|0); + $766 = (_i64Add(($764|0),($765|0),($484|0),($485|0))|0); $767 = tempRet0; - $768 = (_i64Subtract(($758|0),($759|0),($766|0),($767|0))|0); + $768 = (_i64Add(($766|0),($767|0),($482|0),($483|0))|0); $769 = tempRet0; - $770 = (___muldi3(($764|0),($765|0),666643,0)|0); + $770 = (_i64Add(($768|0),($769|0),($478|0),($479|0))|0); $771 = tempRet0; - $772 = (_i64Add(($770|0),($771|0),($670|0),($671|0))|0); + $772 = (_i64Add(($770|0),($771|0),($480|0),($481|0))|0); $773 = tempRet0; - $774 = (___muldi3(($764|0),($765|0),470296,0)|0); + $774 = (_i64Add(($772|0),($773|0),($476|0),($477|0))|0); $775 = tempRet0; - $776 = (_i64Add(($684|0),($685|0),($774|0),($775|0))|0); + $776 = (_i64Add(($774|0),($775|0),($474|0),($475|0))|0); $777 = tempRet0; - $778 = (___muldi3(($764|0),($765|0),654183,0)|0); + $778 = (_i64Add(($776|0),($777|0),($472|0),($473|0))|0); $779 = tempRet0; - $780 = (_i64Add(($692|0),($693|0),($778|0),($779|0))|0); + $780 = (_i64Add(($778|0),($779|0),($760|0),($761|0))|0); $781 = tempRet0; - $782 = (___muldi3(($764|0),($765|0),-997805,-1)|0); + $782 = (_bitshift64Shl(($760|0),($761|0),21)|0); $783 = tempRet0; - $784 = (_i64Add(($706|0),($707|0),($782|0),($783|0))|0); + $784 = (_i64Add(($524|0),($525|0),1048576,0)|0); $785 = tempRet0; - $786 = (___muldi3(($764|0),($765|0),136657,0)|0); + $786 = (_bitshift64Ashr(($784|0),($785|0),21)|0); $787 = tempRet0; - $788 = (_i64Add(($714|0),($715|0),($786|0),($787|0))|0); + $788 = (_i64Add(($538|0),($539|0),($540|0),($541|0))|0); $789 = tempRet0; - $790 = (___muldi3(($764|0),($765|0),-683901,-1)|0); + $790 = (_i64Add(($788|0),($789|0),($536|0),($537|0))|0); $791 = tempRet0; - $792 = (_i64Add(($722|0),($723|0),($790|0),($791|0))|0); + $792 = (_i64Add(($790|0),($791|0),($532|0),($533|0))|0); $793 = tempRet0; - $794 = (_bitshift64Ashr(($772|0),($773|0),21)|0); + $794 = (_i64Add(($792|0),($793|0),($534|0),($535|0))|0); $795 = tempRet0; - $796 = (_i64Add(($776|0),($777|0),($794|0),($795|0))|0); + $796 = (_i64Add(($794|0),($795|0),($530|0),($531|0))|0); $797 = tempRet0; - $798 = (_bitshift64Shl(($794|0),($795|0),21)|0); + $798 = (_i64Add(($796|0),($797|0),($528|0),($529|0))|0); $799 = tempRet0; - $800 = (_i64Subtract(($772|0),($773|0),($798|0),($799|0))|0); + $800 = (_i64Add(($798|0),($799|0),($526|0),($527|0))|0); $801 = tempRet0; - $802 = (_bitshift64Ashr(($796|0),($797|0),21)|0); + $802 = (_i64Add(($800|0),($801|0),($786|0),($787|0))|0); $803 = tempRet0; - $804 = (_i64Add(($780|0),($781|0),($802|0),($803|0))|0); + $804 = (_bitshift64Shl(($786|0),($787|0),21)|0); $805 = tempRet0; - $806 = (_bitshift64Shl(($802|0),($803|0),21)|0); + $806 = (_i64Add(($566|0),($567|0),1048576,0)|0); $807 = tempRet0; - $808 = (_i64Subtract(($796|0),($797|0),($806|0),($807|0))|0); + $808 = (_bitshift64Ashr(($806|0),($807|0),21)|0); $809 = tempRet0; - $810 = (_bitshift64Ashr(($804|0),($805|0),21)|0); + $810 = (_i64Add(($574|0),($575|0),($578|0),($579|0))|0); $811 = tempRet0; - $812 = (_i64Add(($810|0),($811|0),($784|0),($785|0))|0); + $812 = (_i64Add(($810|0),($811|0),($576|0),($577|0))|0); $813 = tempRet0; - $814 = (_bitshift64Shl(($810|0),($811|0),21)|0); + $814 = (_i64Add(($812|0),($813|0),($572|0),($573|0))|0); $815 = tempRet0; - $816 = (_i64Subtract(($804|0),($805|0),($814|0),($815|0))|0); + $816 = (_i64Add(($814|0),($815|0),($570|0),($571|0))|0); $817 = tempRet0; - $818 = (_bitshift64Ashr(($812|0),($813|0),21)|0); + $818 = (_i64Add(($816|0),($817|0),($568|0),($569|0))|0); $819 = tempRet0; - $820 = (_i64Add(($788|0),($789|0),($818|0),($819|0))|0); + $820 = (_i64Add(($818|0),($819|0),($808|0),($809|0))|0); $821 = tempRet0; - $822 = (_bitshift64Shl(($818|0),($819|0),21)|0); + $822 = (_bitshift64Shl(($808|0),($809|0),21)|0); $823 = tempRet0; - $824 = (_i64Subtract(($812|0),($813|0),($822|0),($823|0))|0); + $824 = (_i64Add(($596|0),($597|0),1048576,0)|0); $825 = tempRet0; - $826 = (_bitshift64Ashr(($820|0),($821|0),21)|0); + $826 = (_bitshift64Ashr(($824|0),($825|0),21)|0); $827 = tempRet0; - $828 = (_i64Add(($826|0),($827|0),($792|0),($793|0))|0); + $828 = (_i64Add(($602|0),($603|0),($604|0),($605|0))|0); $829 = tempRet0; - $830 = (_bitshift64Shl(($826|0),($827|0),21)|0); + $830 = (_i64Add(($828|0),($829|0),($600|0),($601|0))|0); $831 = tempRet0; - $832 = (_i64Subtract(($820|0),($821|0),($830|0),($831|0))|0); + $832 = (_i64Add(($830|0),($831|0),($598|0),($599|0))|0); $833 = tempRet0; - $834 = (_bitshift64Ashr(($828|0),($829|0),21)|0); + $834 = (_i64Add(($832|0),($833|0),($826|0),($827|0))|0); $835 = tempRet0; - $836 = (_i64Add(($834|0),($835|0),($730|0),($731|0))|0); + $836 = (_bitshift64Shl(($826|0),($827|0),21)|0); $837 = tempRet0; - $838 = (_bitshift64Shl(($834|0),($835|0),21)|0); + $838 = (_i64Subtract(($596|0),($597|0),($836|0),($837|0))|0); $839 = tempRet0; - $840 = (_i64Subtract(($828|0),($829|0),($838|0),($839|0))|0); + $840 = (_i64Add(($614|0),($615|0),1048576,0)|0); $841 = tempRet0; - $842 = (_bitshift64Ashr(($836|0),($837|0),21)|0); + $842 = (_bitshift64Lshr(($840|0),($841|0),21)|0); $843 = tempRet0; - $844 = (_i64Add(($842|0),($843|0),($738|0),($739|0))|0); + $844 = (_i64Add(($620|0),($621|0),($842|0),($843|0))|0); $845 = tempRet0; $846 = (_bitshift64Shl(($842|0),($843|0),21)|0); $847 = tempRet0; - $848 = (_i64Subtract(($836|0),($837|0),($846|0),($847|0))|0); + $848 = (_i64Subtract(($614|0),($615|0),($846|0),($847|0))|0); $849 = tempRet0; - $850 = (_bitshift64Ashr(($844|0),($845|0),21)|0); + $850 = (_i64Add(($622|0),($623|0),1048576,0)|0); $851 = tempRet0; - $852 = (_i64Add(($850|0),($851|0),($746|0),($747|0))|0); + $852 = (_bitshift64Lshr(($850|0),($851|0),21)|0); $853 = tempRet0; - $854 = (_bitshift64Shl(($850|0),($851|0),21)|0); + $854 = (_bitshift64Shl(($852|0),($853|0),21)|0); $855 = tempRet0; - $856 = (_i64Subtract(($844|0),($845|0),($854|0),($855|0))|0); + $856 = (_i64Subtract(($622|0),($623|0),($854|0),($855|0))|0); $857 = tempRet0; - $858 = (_bitshift64Ashr(($852|0),($853|0),21)|0); + $858 = (_i64Add(($632|0),($633|0),1048576,0)|0); $859 = tempRet0; - $860 = (_i64Add(($858|0),($859|0),($754|0),($755|0))|0); + $860 = (_bitshift64Lshr(($858|0),($859|0),21)|0); $861 = tempRet0; - $862 = (_bitshift64Shl(($858|0),($859|0),21)|0); + $862 = (_bitshift64Shl(($860|0),($861|0),21)|0); $863 = tempRet0; - $864 = (_i64Subtract(($852|0),($853|0),($862|0),($863|0))|0); + $864 = (_i64Subtract(($632|0),($633|0),($862|0),($863|0))|0); $865 = tempRet0; - $866 = (_bitshift64Ashr(($860|0),($861|0),21)|0); + $866 = (_i64Add(($650|0),($651|0),1048576,0)|0); $867 = tempRet0; - $868 = (_i64Add(($866|0),($867|0),($762|0),($763|0))|0); + $868 = (_bitshift64Ashr(($866|0),($867|0),21)|0); $869 = tempRet0; - $870 = (_bitshift64Shl(($866|0),($867|0),21)|0); + $870 = (_bitshift64Shl(($868|0),($869|0),21)|0); $871 = tempRet0; - $872 = (_i64Subtract(($860|0),($861|0),($870|0),($871|0))|0); + $872 = (_i64Subtract(($650|0),($651|0),($870|0),($871|0))|0); $873 = tempRet0; - $874 = (_bitshift64Ashr(($868|0),($869|0),21)|0); + $874 = (_i64Add(($670|0),($671|0),1048576,0)|0); $875 = tempRet0; - $876 = (_i64Add(($874|0),($875|0),($768|0),($769|0))|0); + $876 = (_bitshift64Ashr(($874|0),($875|0),21)|0); $877 = tempRet0; - $878 = (_bitshift64Shl(($874|0),($875|0),21)|0); + $878 = (_bitshift64Shl(($876|0),($877|0),21)|0); $879 = tempRet0; - $880 = (_i64Subtract(($868|0),($869|0),($878|0),($879|0))|0); + $880 = (_i64Subtract(($670|0),($671|0),($878|0),($879|0))|0); $881 = tempRet0; - $882 = $800&255; - HEAP8[$s>>0] = $882; - $883 = (_bitshift64Lshr(($800|0),($801|0),8)|0); - $884 = tempRet0; - $885 = $883&255; - $886 = ((($s)) + 1|0); - HEAP8[$886>>0] = $885; - $887 = (_bitshift64Lshr(($800|0),($801|0),16)|0); - $888 = tempRet0; - $889 = (_bitshift64Shl(($808|0),($809|0),5)|0); - $890 = tempRet0; - $891 = $889 | $887; - $890 | $888; - $892 = $891&255; - HEAP8[$3>>0] = $892; - $893 = (_bitshift64Lshr(($808|0),($809|0),3)|0); - $894 = tempRet0; - $895 = $893&255; - $896 = ((($s)) + 3|0); - HEAP8[$896>>0] = $895; - $897 = (_bitshift64Lshr(($808|0),($809|0),11)|0); - $898 = tempRet0; - $899 = $897&255; - $900 = ((($s)) + 4|0); - HEAP8[$900>>0] = $899; - $901 = (_bitshift64Lshr(($808|0),($809|0),19)|0); - $902 = tempRet0; - $903 = (_bitshift64Shl(($816|0),($817|0),2)|0); - $904 = tempRet0; - $905 = $903 | $901; - $904 | $902; - $906 = $905&255; - HEAP8[$9>>0] = $906; - $907 = (_bitshift64Lshr(($816|0),($817|0),6)|0); - $908 = tempRet0; - $909 = $907&255; - $910 = ((($s)) + 6|0); - HEAP8[$910>>0] = $909; - $911 = (_bitshift64Lshr(($816|0),($817|0),14)|0); - $912 = tempRet0; - $913 = (_bitshift64Shl(($824|0),($825|0),7)|0); - $914 = tempRet0; - $915 = $913 | $911; - $914 | $912; - $916 = $915&255; - HEAP8[$15>>0] = $916; - $917 = (_bitshift64Lshr(($824|0),($825|0),1)|0); - $918 = tempRet0; - $919 = $917&255; - $920 = ((($s)) + 8|0); - HEAP8[$920>>0] = $919; - $921 = (_bitshift64Lshr(($824|0),($825|0),9)|0); - $922 = tempRet0; - $923 = $921&255; - $924 = ((($s)) + 9|0); - HEAP8[$924>>0] = $923; - $925 = (_bitshift64Lshr(($824|0),($825|0),17)|0); - $926 = tempRet0; - $927 = (_bitshift64Shl(($832|0),($833|0),4)|0); - $928 = tempRet0; - $929 = $927 | $925; - $928 | $926; - $930 = $929&255; - HEAP8[$21>>0] = $930; - $931 = (_bitshift64Lshr(($832|0),($833|0),4)|0); - $932 = tempRet0; - $933 = $931&255; - $934 = ((($s)) + 11|0); - HEAP8[$934>>0] = $933; - $935 = (_bitshift64Lshr(($832|0),($833|0),12)|0); - $936 = tempRet0; - $937 = $935&255; - $938 = ((($s)) + 12|0); - HEAP8[$938>>0] = $937; - $939 = (_bitshift64Lshr(($832|0),($833|0),20)|0); - $940 = tempRet0; - $941 = (_bitshift64Shl(($840|0),($841|0),1)|0); - $942 = tempRet0; - $943 = $941 | $939; - $942 | $940; - $944 = $943&255; - HEAP8[$27>>0] = $944; - $945 = (_bitshift64Lshr(($840|0),($841|0),7)|0); - $946 = tempRet0; - $947 = $945&255; - $948 = ((($s)) + 14|0); - HEAP8[$948>>0] = $947; - $949 = (_bitshift64Lshr(($840|0),($841|0),15)|0); - $950 = tempRet0; - $951 = (_bitshift64Shl(($848|0),($849|0),6)|0); - $952 = tempRet0; - $953 = $951 | $949; - $952 | $950; - $954 = $953&255; - HEAP8[$33>>0] = $954; - $955 = (_bitshift64Lshr(($848|0),($849|0),2)|0); - $956 = tempRet0; - $957 = $955&255; - $958 = ((($s)) + 16|0); - HEAP8[$958>>0] = $957; - $959 = (_bitshift64Lshr(($848|0),($849|0),10)|0); - $960 = tempRet0; - $961 = $959&255; - $962 = ((($s)) + 17|0); - HEAP8[$962>>0] = $961; - $963 = (_bitshift64Lshr(($848|0),($849|0),18)|0); - $964 = tempRet0; - $965 = (_bitshift64Shl(($856|0),($857|0),3)|0); - $966 = tempRet0; - $967 = $965 | $963; - $966 | $964; - $968 = $967&255; - HEAP8[$39>>0] = $968; - $969 = (_bitshift64Lshr(($856|0),($857|0),5)|0); - $970 = tempRet0; - $971 = $969&255; - $972 = ((($s)) + 19|0); - HEAP8[$972>>0] = $971; - $973 = (_bitshift64Lshr(($856|0),($857|0),13)|0); - $974 = tempRet0; - $975 = $973&255; - $976 = ((($s)) + 20|0); - HEAP8[$976>>0] = $975; - $977 = $864&255; - HEAP8[$45>>0] = $977; - $978 = (_bitshift64Lshr(($864|0),($865|0),8)|0); + $882 = (_i64Add(($694|0),($695|0),1048576,0)|0); + $883 = tempRet0; + $884 = (_bitshift64Ashr(($882|0),($883|0),21)|0); + $885 = tempRet0; + $886 = (_bitshift64Shl(($884|0),($885|0),21)|0); + $887 = tempRet0; + $888 = (_i64Add(($722|0),($723|0),1048576,0)|0); + $889 = tempRet0; + $890 = (_bitshift64Ashr(($888|0),($889|0),21)|0); + $891 = tempRet0; + $892 = (_bitshift64Shl(($890|0),($891|0),21)|0); + $893 = tempRet0; + $894 = (_i64Add(($754|0),($755|0),1048576,0)|0); + $895 = tempRet0; + $896 = (_bitshift64Ashr(($894|0),($895|0),21)|0); + $897 = tempRet0; + $898 = (_bitshift64Shl(($896|0),($897|0),21)|0); + $899 = tempRet0; + $900 = (_i64Add(($780|0),($781|0),1048576,0)|0); + $901 = tempRet0; + $902 = (_bitshift64Ashr(($900|0),($901|0),21)|0); + $903 = tempRet0; + $904 = (_bitshift64Shl(($902|0),($903|0),21)|0); + $905 = tempRet0; + $906 = (_i64Add(($802|0),($803|0),1048576,0)|0); + $907 = tempRet0; + $908 = (_bitshift64Ashr(($906|0),($907|0),21)|0); + $909 = tempRet0; + $910 = (_bitshift64Shl(($908|0),($909|0),21)|0); + $911 = tempRet0; + $912 = (_i64Add(($820|0),($821|0),1048576,0)|0); + $913 = tempRet0; + $914 = (_bitshift64Ashr(($912|0),($913|0),21)|0); + $915 = tempRet0; + $916 = (_i64Add(($914|0),($915|0),($838|0),($839|0))|0); + $917 = tempRet0; + $918 = (_bitshift64Shl(($914|0),($915|0),21)|0); + $919 = tempRet0; + $920 = (_i64Subtract(($820|0),($821|0),($918|0),($919|0))|0); + $921 = tempRet0; + $922 = (_i64Add(($834|0),($835|0),1048576,0)|0); + $923 = tempRet0; + $924 = (_bitshift64Ashr(($922|0),($923|0),21)|0); + $925 = tempRet0; + $926 = (_i64Add(($924|0),($925|0),($848|0),($849|0))|0); + $927 = tempRet0; + $928 = (_bitshift64Shl(($924|0),($925|0),21)|0); + $929 = tempRet0; + $930 = (_i64Subtract(($834|0),($835|0),($928|0),($929|0))|0); + $931 = tempRet0; + $932 = (_i64Add(($844|0),($845|0),1048576,0)|0); + $933 = tempRet0; + $934 = (_bitshift64Lshr(($932|0),($933|0),21)|0); + $935 = tempRet0; + $936 = (_i64Add(($934|0),($935|0),($856|0),($857|0))|0); + $937 = tempRet0; + $938 = (_bitshift64Shl(($934|0),($935|0),21)|0); + $939 = tempRet0; + $940 = (_i64Subtract(($844|0),($845|0),($938|0),($939|0))|0); + $941 = tempRet0; + $942 = (___muldi3(($852|0),($853|0),666643,0)|0); + $943 = tempRet0; + $944 = (___muldi3(($852|0),($853|0),470296,0)|0); + $945 = tempRet0; + $946 = (___muldi3(($852|0),($853|0),654183,0)|0); + $947 = tempRet0; + $948 = (___muldi3(($852|0),($853|0),-997805,-1)|0); + $949 = tempRet0; + $950 = (___muldi3(($852|0),($853|0),136657,0)|0); + $951 = tempRet0; + $952 = (___muldi3(($852|0),($853|0),-683901,-1)|0); + $953 = tempRet0; + $954 = (_i64Add(($566|0),($567|0),($952|0),($953|0))|0); + $955 = tempRet0; + $956 = (_i64Subtract(($954|0),($955|0),($822|0),($823|0))|0); + $957 = tempRet0; + $958 = (_i64Add(($956|0),($957|0),($908|0),($909|0))|0); + $959 = tempRet0; + $960 = (___muldi3(($936|0),($937|0),666643,0)|0); + $961 = tempRet0; + $962 = (___muldi3(($936|0),($937|0),470296,0)|0); + $963 = tempRet0; + $964 = (___muldi3(($936|0),($937|0),654183,0)|0); + $965 = tempRet0; + $966 = (___muldi3(($936|0),($937|0),-997805,-1)|0); + $967 = tempRet0; + $968 = (___muldi3(($936|0),($937|0),136657,0)|0); + $969 = tempRet0; + $970 = (___muldi3(($936|0),($937|0),-683901,-1)|0); + $971 = tempRet0; + $972 = (___muldi3(($940|0),($941|0),666643,0)|0); + $973 = tempRet0; + $974 = (___muldi3(($940|0),($941|0),470296,0)|0); + $975 = tempRet0; + $976 = (___muldi3(($940|0),($941|0),654183,0)|0); + $977 = tempRet0; + $978 = (___muldi3(($940|0),($941|0),-997805,-1)|0); $979 = tempRet0; - $980 = $978&255; - $981 = ((($s)) + 22|0); - HEAP8[$981>>0] = $980; - $982 = (_bitshift64Lshr(($864|0),($865|0),16)|0); + $980 = (___muldi3(($940|0),($941|0),136657,0)|0); + $981 = tempRet0; + $982 = (___muldi3(($940|0),($941|0),-683901,-1)|0); $983 = tempRet0; - $984 = (_bitshift64Shl(($872|0),($873|0),5)|0); + $984 = (_i64Add(($524|0),($525|0),($948|0),($949|0))|0); $985 = tempRet0; - $986 = $984 | $982; - $985 | $983; - $987 = $986&255; - HEAP8[$49>>0] = $987; - $988 = (_bitshift64Lshr(($872|0),($873|0),3)|0); + $986 = (_i64Add(($984|0),($985|0),($968|0),($969|0))|0); + $987 = tempRet0; + $988 = (_i64Add(($986|0),($987|0),($982|0),($983|0))|0); $989 = tempRet0; - $990 = $988&255; - $991 = ((($s)) + 24|0); - HEAP8[$991>>0] = $990; - $992 = (_bitshift64Lshr(($872|0),($873|0),11)|0); + $990 = (_i64Subtract(($988|0),($989|0),($804|0),($805|0))|0); + $991 = tempRet0; + $992 = (_i64Add(($990|0),($991|0),($902|0),($903|0))|0); $993 = tempRet0; - $994 = $992&255; - $995 = ((($s)) + 25|0); - HEAP8[$995>>0] = $994; - $996 = (_bitshift64Lshr(($872|0),($873|0),19)|0); + $994 = (___muldi3(($926|0),($927|0),666643,0)|0); + $995 = tempRet0; + $996 = (___muldi3(($926|0),($927|0),470296,0)|0); $997 = tempRet0; - $998 = (_bitshift64Shl(($880|0),($881|0),2)|0); + $998 = (___muldi3(($926|0),($927|0),654183,0)|0); $999 = tempRet0; - $1000 = $998 | $996; - $999 | $997; - $1001 = $1000&255; - HEAP8[$55>>0] = $1001; - $1002 = (_bitshift64Lshr(($880|0),($881|0),6)|0); + $1000 = (___muldi3(($926|0),($927|0),-997805,-1)|0); + $1001 = tempRet0; + $1002 = (___muldi3(($926|0),($927|0),136657,0)|0); $1003 = tempRet0; - $1004 = $1002&255; - $1005 = ((($s)) + 27|0); - HEAP8[$1005>>0] = $1004; - $1006 = (_bitshift64Lshr(($880|0),($881|0),14)|0); + $1004 = (___muldi3(($926|0),($927|0),-683901,-1)|0); + $1005 = tempRet0; + $1006 = (___muldi3(($930|0),($931|0),666643,0)|0); $1007 = tempRet0; - $1008 = (_bitshift64Shl(($876|0),($877|0),7)|0); + $1008 = (___muldi3(($930|0),($931|0),470296,0)|0); $1009 = tempRet0; - $1010 = $1006 | $1008; - $1007 | $1009; - $1011 = $1010&255; - HEAP8[$61>>0] = $1011; - $1012 = (_bitshift64Lshr(($876|0),($877|0),1)|0); + $1010 = (___muldi3(($930|0),($931|0),654183,0)|0); + $1011 = tempRet0; + $1012 = (___muldi3(($930|0),($931|0),-997805,-1)|0); $1013 = tempRet0; - $1014 = $1012&255; - $1015 = ((($s)) + 29|0); - HEAP8[$1015>>0] = $1014; - $1016 = (_bitshift64Lshr(($876|0),($877|0),9)|0); + $1014 = (___muldi3(($930|0),($931|0),136657,0)|0); + $1015 = tempRet0; + $1016 = (___muldi3(($930|0),($931|0),-683901,-1)|0); $1017 = tempRet0; - $1018 = $1016&255; - $1019 = ((($s)) + 30|0); - HEAP8[$1019>>0] = $1018; - $1020 = (_bitshift64Lshr(($876|0),($877|0),17)|0); + $1018 = (_i64Add(($964|0),($965|0),($944|0),($945|0))|0); + $1019 = tempRet0; + $1020 = (_i64Add(($1018|0),($1019|0),($470|0),($471|0))|0); $1021 = tempRet0; - $1022 = $1020&255; - HEAP8[$67>>0] = $1022; + $1022 = (_i64Add(($1020|0),($1021|0),($978|0),($979|0))|0); + $1023 = tempRet0; + $1024 = (_i64Add(($1022|0),($1023|0),($1002|0),($1003|0))|0); + $1025 = tempRet0; + $1026 = (_i64Add(($1024|0),($1025|0),($1016|0),($1017|0))|0); + $1027 = tempRet0; + $1028 = (_i64Subtract(($1026|0),($1027|0),($782|0),($783|0))|0); + $1029 = tempRet0; + $1030 = (_i64Add(($1028|0),($1029|0),($896|0),($897|0))|0); + $1031 = tempRet0; + $1032 = (___muldi3(($916|0),($917|0),666643,0)|0); + $1033 = tempRet0; + $1034 = (_i64Add(($288|0),($289|0),($1032|0),($1033|0))|0); + $1035 = tempRet0; + $1036 = (_i64Add(($1034|0),($1035|0),($876|0),($877|0))|0); + $1037 = tempRet0; + $1038 = (_i64Subtract(($1036|0),($1037|0),($696|0),($697|0))|0); + $1039 = tempRet0; + $1040 = (___muldi3(($916|0),($917|0),470296,0)|0); + $1041 = tempRet0; + $1042 = (___muldi3(($916|0),($917|0),654183,0)|0); + $1043 = tempRet0; + $1044 = (_i64Add(($1008|0),($1009|0),($994|0),($995|0))|0); + $1045 = tempRet0; + $1046 = (_i64Add(($1044|0),($1045|0),($1042|0),($1043|0))|0); + $1047 = tempRet0; + $1048 = (_i64Add(($1046|0),($1047|0),($340|0),($341|0))|0); + $1049 = tempRet0; + $1050 = (_i64Add(($1048|0),($1049|0),($884|0),($885|0))|0); + $1051 = tempRet0; + $1052 = (_i64Subtract(($1050|0),($1051|0),($724|0),($725|0))|0); + $1053 = tempRet0; + $1054 = (___muldi3(($916|0),($917|0),-997805,-1)|0); + $1055 = tempRet0; + $1056 = (___muldi3(($916|0),($917|0),136657,0)|0); + $1057 = tempRet0; + $1058 = (_i64Add(($974|0),($975|0),($960|0),($961|0))|0); + $1059 = tempRet0; + $1060 = (_i64Add(($1058|0),($1059|0),($998|0),($999|0))|0); + $1061 = tempRet0; + $1062 = (_i64Add(($1060|0),($1061|0),($1012|0),($1013|0))|0); + $1063 = tempRet0; + $1064 = (_i64Add(($1062|0),($1063|0),($1056|0),($1057|0))|0); + $1065 = tempRet0; + $1066 = (_i64Add(($1064|0),($1065|0),($404|0),($405|0))|0); + $1067 = tempRet0; + $1068 = (_i64Add(($1066|0),($1067|0),($890|0),($891|0))|0); + $1069 = tempRet0; + $1070 = (_i64Subtract(($1068|0),($1069|0),($756|0),($757|0))|0); + $1071 = tempRet0; + $1072 = (___muldi3(($916|0),($917|0),-683901,-1)|0); + $1073 = tempRet0; + $1074 = (_i64Add(($1038|0),($1039|0),1048576,0)|0); + $1075 = tempRet0; + $1076 = (_bitshift64Ashr(($1074|0),($1075|0),21)|0); + $1077 = tempRet0; + $1078 = (_i64Add(($1040|0),($1041|0),($1006|0),($1007|0))|0); + $1079 = tempRet0; + $1080 = (_i64Add(($1078|0),($1079|0),($694|0),($695|0))|0); + $1081 = tempRet0; + $1082 = (_i64Subtract(($1080|0),($1081|0),($886|0),($887|0))|0); + $1083 = tempRet0; + $1084 = (_i64Add(($1082|0),($1083|0),($1076|0),($1077|0))|0); + $1085 = tempRet0; + $1086 = (_bitshift64Shl(($1076|0),($1077|0),21)|0); + $1087 = tempRet0; + $1088 = (_i64Add(($1052|0),($1053|0),1048576,0)|0); + $1089 = tempRet0; + $1090 = (_bitshift64Ashr(($1088|0),($1089|0),21)|0); + $1091 = tempRet0; + $1092 = (_i64Add(($996|0),($997|0),($972|0),($973|0))|0); + $1093 = tempRet0; + $1094 = (_i64Add(($1092|0),($1093|0),($1010|0),($1011|0))|0); + $1095 = tempRet0; + $1096 = (_i64Add(($1094|0),($1095|0),($1054|0),($1055|0))|0); + $1097 = tempRet0; + $1098 = (_i64Add(($1096|0),($1097|0),($722|0),($723|0))|0); + $1099 = tempRet0; + $1100 = (_i64Subtract(($1098|0),($1099|0),($892|0),($893|0))|0); + $1101 = tempRet0; + $1102 = (_i64Add(($1100|0),($1101|0),($1090|0),($1091|0))|0); + $1103 = tempRet0; + $1104 = (_bitshift64Shl(($1090|0),($1091|0),21)|0); + $1105 = tempRet0; + $1106 = (_i64Add(($1070|0),($1071|0),1048576,0)|0); + $1107 = tempRet0; + $1108 = (_bitshift64Ashr(($1106|0),($1107|0),21)|0); + $1109 = tempRet0; + $1110 = (_i64Add(($962|0),($963|0),($942|0),($943|0))|0); + $1111 = tempRet0; + $1112 = (_i64Add(($1110|0),($1111|0),($976|0),($977|0))|0); + $1113 = tempRet0; + $1114 = (_i64Add(($1112|0),($1113|0),($1000|0),($1001|0))|0); + $1115 = tempRet0; + $1116 = (_i64Add(($1114|0),($1115|0),($1014|0),($1015|0))|0); + $1117 = tempRet0; + $1118 = (_i64Add(($1116|0),($1117|0),($1072|0),($1073|0))|0); + $1119 = tempRet0; + $1120 = (_i64Add(($1118|0),($1119|0),($754|0),($755|0))|0); + $1121 = tempRet0; + $1122 = (_i64Subtract(($1120|0),($1121|0),($898|0),($899|0))|0); + $1123 = tempRet0; + $1124 = (_i64Add(($1122|0),($1123|0),($1108|0),($1109|0))|0); + $1125 = tempRet0; + $1126 = (_bitshift64Shl(($1108|0),($1109|0),21)|0); + $1127 = tempRet0; + $1128 = (_i64Add(($1030|0),($1031|0),1048576,0)|0); + $1129 = tempRet0; + $1130 = (_bitshift64Ashr(($1128|0),($1129|0),21)|0); + $1131 = tempRet0; + $1132 = (_i64Add(($966|0),($967|0),($946|0),($947|0))|0); + $1133 = tempRet0; + $1134 = (_i64Add(($1132|0),($1133|0),($980|0),($981|0))|0); + $1135 = tempRet0; + $1136 = (_i64Add(($1134|0),($1135|0),($1004|0),($1005|0))|0); + $1137 = tempRet0; + $1138 = (_i64Add(($1136|0),($1137|0),($780|0),($781|0))|0); + $1139 = tempRet0; + $1140 = (_i64Subtract(($1138|0),($1139|0),($904|0),($905|0))|0); + $1141 = tempRet0; + $1142 = (_i64Add(($1140|0),($1141|0),($1130|0),($1131|0))|0); + $1143 = tempRet0; + $1144 = (_bitshift64Shl(($1130|0),($1131|0),21)|0); + $1145 = tempRet0; + $1146 = (_i64Subtract(($1030|0),($1031|0),($1144|0),($1145|0))|0); + $1147 = tempRet0; + $1148 = (_i64Add(($992|0),($993|0),1048576,0)|0); + $1149 = tempRet0; + $1150 = (_bitshift64Ashr(($1148|0),($1149|0),21)|0); + $1151 = tempRet0; + $1152 = (_i64Add(($970|0),($971|0),($950|0),($951|0))|0); + $1153 = tempRet0; + $1154 = (_i64Add(($1152|0),($1153|0),($802|0),($803|0))|0); + $1155 = tempRet0; + $1156 = (_i64Subtract(($1154|0),($1155|0),($910|0),($911|0))|0); + $1157 = tempRet0; + $1158 = (_i64Add(($1156|0),($1157|0),($1150|0),($1151|0))|0); + $1159 = tempRet0; + $1160 = (_bitshift64Shl(($1150|0),($1151|0),21)|0); + $1161 = tempRet0; + $1162 = (_i64Subtract(($992|0),($993|0),($1160|0),($1161|0))|0); + $1163 = tempRet0; + $1164 = (_i64Add(($958|0),($959|0),1048576,0)|0); + $1165 = tempRet0; + $1166 = (_bitshift64Ashr(($1164|0),($1165|0),21)|0); + $1167 = tempRet0; + $1168 = (_i64Add(($1166|0),($1167|0),($920|0),($921|0))|0); + $1169 = tempRet0; + $1170 = (_bitshift64Shl(($1166|0),($1167|0),21)|0); + $1171 = tempRet0; + $1172 = (_i64Subtract(($958|0),($959|0),($1170|0),($1171|0))|0); + $1173 = tempRet0; + $1174 = (_i64Add(($1084|0),($1085|0),1048576,0)|0); + $1175 = tempRet0; + $1176 = (_bitshift64Ashr(($1174|0),($1175|0),21)|0); + $1177 = tempRet0; + $1178 = (_bitshift64Shl(($1176|0),($1177|0),21)|0); + $1179 = tempRet0; + $1180 = (_i64Add(($1102|0),($1103|0),1048576,0)|0); + $1181 = tempRet0; + $1182 = (_bitshift64Ashr(($1180|0),($1181|0),21)|0); + $1183 = tempRet0; + $1184 = (_bitshift64Shl(($1182|0),($1183|0),21)|0); + $1185 = tempRet0; + $1186 = (_i64Add(($1124|0),($1125|0),1048576,0)|0); + $1187 = tempRet0; + $1188 = (_bitshift64Ashr(($1186|0),($1187|0),21)|0); + $1189 = tempRet0; + $1190 = (_i64Add(($1188|0),($1189|0),($1146|0),($1147|0))|0); + $1191 = tempRet0; + $1192 = (_bitshift64Shl(($1188|0),($1189|0),21)|0); + $1193 = tempRet0; + $1194 = (_i64Subtract(($1124|0),($1125|0),($1192|0),($1193|0))|0); + $1195 = tempRet0; + $1196 = (_i64Add(($1142|0),($1143|0),1048576,0)|0); + $1197 = tempRet0; + $1198 = (_bitshift64Ashr(($1196|0),($1197|0),21)|0); + $1199 = tempRet0; + $1200 = (_i64Add(($1198|0),($1199|0),($1162|0),($1163|0))|0); + $1201 = tempRet0; + $1202 = (_bitshift64Shl(($1198|0),($1199|0),21)|0); + $1203 = tempRet0; + $1204 = (_i64Subtract(($1142|0),($1143|0),($1202|0),($1203|0))|0); + $1205 = tempRet0; + $1206 = (_i64Add(($1158|0),($1159|0),1048576,0)|0); + $1207 = tempRet0; + $1208 = (_bitshift64Ashr(($1206|0),($1207|0),21)|0); + $1209 = tempRet0; + $1210 = (_i64Add(($1208|0),($1209|0),($1172|0),($1173|0))|0); + $1211 = tempRet0; + $1212 = (_bitshift64Shl(($1208|0),($1209|0),21)|0); + $1213 = tempRet0; + $1214 = (_i64Subtract(($1158|0),($1159|0),($1212|0),($1213|0))|0); + $1215 = tempRet0; + $1216 = (___muldi3(($1168|0),($1169|0),666643,0)|0); + $1217 = tempRet0; + $1218 = (_i64Add(($880|0),($881|0),($1216|0),($1217|0))|0); + $1219 = tempRet0; + $1220 = (___muldi3(($1168|0),($1169|0),470296,0)|0); + $1221 = tempRet0; + $1222 = (___muldi3(($1168|0),($1169|0),654183,0)|0); + $1223 = tempRet0; + $1224 = (___muldi3(($1168|0),($1169|0),-997805,-1)|0); + $1225 = tempRet0; + $1226 = (___muldi3(($1168|0),($1169|0),136657,0)|0); + $1227 = tempRet0; + $1228 = (___muldi3(($1168|0),($1169|0),-683901,-1)|0); + $1229 = tempRet0; + $1230 = (_i64Add(($1070|0),($1071|0),($1228|0),($1229|0))|0); + $1231 = tempRet0; + $1232 = (_i64Add(($1230|0),($1231|0),($1182|0),($1183|0))|0); + $1233 = tempRet0; + $1234 = (_i64Subtract(($1232|0),($1233|0),($1126|0),($1127|0))|0); + $1235 = tempRet0; + $1236 = (___muldi3(($1210|0),($1211|0),666643,0)|0); + $1237 = tempRet0; + $1238 = (___muldi3(($1210|0),($1211|0),470296,0)|0); + $1239 = tempRet0; + $1240 = (_i64Add(($1218|0),($1219|0),($1238|0),($1239|0))|0); + $1241 = tempRet0; + $1242 = (___muldi3(($1210|0),($1211|0),654183,0)|0); + $1243 = tempRet0; + $1244 = (___muldi3(($1210|0),($1211|0),-997805,-1)|0); + $1245 = tempRet0; + $1246 = (___muldi3(($1210|0),($1211|0),136657,0)|0); + $1247 = tempRet0; + $1248 = (___muldi3(($1210|0),($1211|0),-683901,-1)|0); + $1249 = tempRet0; + $1250 = (___muldi3(($1214|0),($1215|0),666643,0)|0); + $1251 = tempRet0; + $1252 = (_i64Add(($872|0),($873|0),($1250|0),($1251|0))|0); + $1253 = tempRet0; + $1254 = (___muldi3(($1214|0),($1215|0),470296,0)|0); + $1255 = tempRet0; + $1256 = (___muldi3(($1214|0),($1215|0),654183,0)|0); + $1257 = tempRet0; + $1258 = (_i64Add(($1240|0),($1241|0),($1256|0),($1257|0))|0); + $1259 = tempRet0; + $1260 = (___muldi3(($1214|0),($1215|0),-997805,-1)|0); + $1261 = tempRet0; + $1262 = (___muldi3(($1214|0),($1215|0),136657,0)|0); + $1263 = tempRet0; + $1264 = (___muldi3(($1214|0),($1215|0),-683901,-1)|0); + $1265 = tempRet0; + $1266 = (_i64Add(($1052|0),($1053|0),($1224|0),($1225|0))|0); + $1267 = tempRet0; + $1268 = (_i64Add(($1266|0),($1267|0),($1176|0),($1177|0))|0); + $1269 = tempRet0; + $1270 = (_i64Add(($1268|0),($1269|0),($1246|0),($1247|0))|0); + $1271 = tempRet0; + $1272 = (_i64Add(($1270|0),($1271|0),($1264|0),($1265|0))|0); + $1273 = tempRet0; + $1274 = (_i64Subtract(($1272|0),($1273|0),($1104|0),($1105|0))|0); + $1275 = tempRet0; + $1276 = (___muldi3(($1200|0),($1201|0),666643,0)|0); + $1277 = tempRet0; + $1278 = (___muldi3(($1200|0),($1201|0),470296,0)|0); + $1279 = tempRet0; + $1280 = (_i64Add(($1252|0),($1253|0),($1278|0),($1279|0))|0); + $1281 = tempRet0; + $1282 = (___muldi3(($1200|0),($1201|0),654183,0)|0); + $1283 = tempRet0; + $1284 = (___muldi3(($1200|0),($1201|0),-997805,-1)|0); + $1285 = tempRet0; + $1286 = (_i64Add(($1258|0),($1259|0),($1284|0),($1285|0))|0); + $1287 = tempRet0; + $1288 = (___muldi3(($1200|0),($1201|0),136657,0)|0); + $1289 = tempRet0; + $1290 = (___muldi3(($1200|0),($1201|0),-683901,-1)|0); + $1291 = tempRet0; + $1292 = (___muldi3(($1204|0),($1205|0),666643,0)|0); + $1293 = tempRet0; + $1294 = (___muldi3(($1204|0),($1205|0),470296,0)|0); + $1295 = tempRet0; + $1296 = (___muldi3(($1204|0),($1205|0),654183,0)|0); + $1297 = tempRet0; + $1298 = (___muldi3(($1204|0),($1205|0),-997805,-1)|0); + $1299 = tempRet0; + $1300 = (___muldi3(($1204|0),($1205|0),136657,0)|0); + $1301 = tempRet0; + $1302 = (___muldi3(($1204|0),($1205|0),-683901,-1)|0); + $1303 = tempRet0; + $1304 = (_i64Add(($1038|0),($1039|0),($1220|0),($1221|0))|0); + $1305 = tempRet0; + $1306 = (_i64Subtract(($1304|0),($1305|0),($1086|0),($1087|0))|0); + $1307 = tempRet0; + $1308 = (_i64Add(($1306|0),($1307|0),($1242|0),($1243|0))|0); + $1309 = tempRet0; + $1310 = (_i64Add(($1308|0),($1309|0),($1260|0),($1261|0))|0); + $1311 = tempRet0; + $1312 = (_i64Add(($1310|0),($1311|0),($1288|0),($1289|0))|0); + $1313 = tempRet0; + $1314 = (_i64Add(($1312|0),($1313|0),($1302|0),($1303|0))|0); + $1315 = tempRet0; + $1316 = (___muldi3(($1190|0),($1191|0),666643,0)|0); + $1317 = tempRet0; + $1318 = (_i64Add(($1316|0),($1317|0),($636|0),($637|0))|0); + $1319 = tempRet0; + $1320 = (___muldi3(($1190|0),($1191|0),470296,0)|0); + $1321 = tempRet0; + $1322 = (___muldi3(($1190|0),($1191|0),654183,0)|0); + $1323 = tempRet0; + $1324 = (_i64Add(($860|0),($861|0),($220|0),($221|0))|0); + $1325 = tempRet0; + $1326 = (_i64Subtract(($1324|0),($1325|0),($652|0),($653|0))|0); + $1327 = tempRet0; + $1328 = (_i64Add(($1326|0),($1327|0),($1276|0),($1277|0))|0); + $1329 = tempRet0; + $1330 = (_i64Add(($1328|0),($1329|0),($1322|0),($1323|0))|0); + $1331 = tempRet0; + $1332 = (_i64Add(($1330|0),($1331|0),($1294|0),($1295|0))|0); + $1333 = tempRet0; + $1334 = (___muldi3(($1190|0),($1191|0),-997805,-1)|0); + $1335 = tempRet0; + $1336 = (___muldi3(($1190|0),($1191|0),136657,0)|0); + $1337 = tempRet0; + $1338 = (_i64Add(($868|0),($869|0),($248|0),($249|0))|0); + $1339 = tempRet0; + $1340 = (_i64Subtract(($1338|0),($1339|0),($672|0),($673|0))|0); + $1341 = tempRet0; + $1342 = (_i64Add(($1340|0),($1341|0),($1236|0),($1237|0))|0); + $1343 = tempRet0; + $1344 = (_i64Add(($1342|0),($1343|0),($1254|0),($1255|0))|0); + $1345 = tempRet0; + $1346 = (_i64Add(($1344|0),($1345|0),($1282|0),($1283|0))|0); + $1347 = tempRet0; + $1348 = (_i64Add(($1346|0),($1347|0),($1336|0),($1337|0))|0); + $1349 = tempRet0; + $1350 = (_i64Add(($1348|0),($1349|0),($1298|0),($1299|0))|0); + $1351 = tempRet0; + $1352 = (___muldi3(($1190|0),($1191|0),-683901,-1)|0); + $1353 = tempRet0; + $1354 = (_i64Add(($1318|0),($1319|0),1048576,0)|0); + $1355 = tempRet0; + $1356 = (_bitshift64Ashr(($1354|0),($1355|0),21)|0); + $1357 = tempRet0; + $1358 = (_i64Add(($864|0),($865|0),($1320|0),($1321|0))|0); + $1359 = tempRet0; + $1360 = (_i64Add(($1358|0),($1359|0),($1292|0),($1293|0))|0); + $1361 = tempRet0; + $1362 = (_i64Add(($1360|0),($1361|0),($1356|0),($1357|0))|0); + $1363 = tempRet0; + $1364 = (_bitshift64Shl(($1356|0),($1357|0),21)|0); + $1365 = tempRet0; + $1366 = (_i64Subtract(($1318|0),($1319|0),($1364|0),($1365|0))|0); + $1367 = tempRet0; + $1368 = (_i64Add(($1332|0),($1333|0),1048576,0)|0); + $1369 = tempRet0; + $1370 = (_bitshift64Ashr(($1368|0),($1369|0),21)|0); + $1371 = tempRet0; + $1372 = (_i64Add(($1280|0),($1281|0),($1334|0),($1335|0))|0); + $1373 = tempRet0; + $1374 = (_i64Add(($1372|0),($1373|0),($1296|0),($1297|0))|0); + $1375 = tempRet0; + $1376 = (_i64Add(($1374|0),($1375|0),($1370|0),($1371|0))|0); + $1377 = tempRet0; + $1378 = (_bitshift64Shl(($1370|0),($1371|0),21)|0); + $1379 = tempRet0; + $1380 = (_i64Add(($1350|0),($1351|0),1048576,0)|0); + $1381 = tempRet0; + $1382 = (_bitshift64Ashr(($1380|0),($1381|0),21)|0); + $1383 = tempRet0; + $1384 = (_i64Add(($1286|0),($1287|0),($1352|0),($1353|0))|0); + $1385 = tempRet0; + $1386 = (_i64Add(($1384|0),($1385|0),($1300|0),($1301|0))|0); + $1387 = tempRet0; + $1388 = (_i64Add(($1386|0),($1387|0),($1382|0),($1383|0))|0); + $1389 = tempRet0; + $1390 = (_bitshift64Shl(($1382|0),($1383|0),21)|0); + $1391 = tempRet0; + $1392 = (_i64Add(($1314|0),($1315|0),1048576,0)|0); + $1393 = tempRet0; + $1394 = (_bitshift64Ashr(($1392|0),($1393|0),21)|0); + $1395 = tempRet0; + $1396 = (_i64Add(($1084|0),($1085|0),($1222|0),($1223|0))|0); + $1397 = tempRet0; + $1398 = (_i64Add(($1396|0),($1397|0),($1244|0),($1245|0))|0); + $1399 = tempRet0; + $1400 = (_i64Subtract(($1398|0),($1399|0),($1178|0),($1179|0))|0); + $1401 = tempRet0; + $1402 = (_i64Add(($1400|0),($1401|0),($1262|0),($1263|0))|0); + $1403 = tempRet0; + $1404 = (_i64Add(($1402|0),($1403|0),($1290|0),($1291|0))|0); + $1405 = tempRet0; + $1406 = (_i64Add(($1404|0),($1405|0),($1394|0),($1395|0))|0); + $1407 = tempRet0; + $1408 = (_bitshift64Shl(($1394|0),($1395|0),21)|0); + $1409 = tempRet0; + $1410 = (_i64Subtract(($1314|0),($1315|0),($1408|0),($1409|0))|0); + $1411 = tempRet0; + $1412 = (_i64Add(($1274|0),($1275|0),1048576,0)|0); + $1413 = tempRet0; + $1414 = (_bitshift64Ashr(($1412|0),($1413|0),21)|0); + $1415 = tempRet0; + $1416 = (_i64Add(($1248|0),($1249|0),($1226|0),($1227|0))|0); + $1417 = tempRet0; + $1418 = (_i64Add(($1416|0),($1417|0),($1102|0),($1103|0))|0); + $1419 = tempRet0; + $1420 = (_i64Subtract(($1418|0),($1419|0),($1184|0),($1185|0))|0); + $1421 = tempRet0; + $1422 = (_i64Add(($1420|0),($1421|0),($1414|0),($1415|0))|0); + $1423 = tempRet0; + $1424 = (_bitshift64Shl(($1414|0),($1415|0),21)|0); + $1425 = tempRet0; + $1426 = (_i64Subtract(($1274|0),($1275|0),($1424|0),($1425|0))|0); + $1427 = tempRet0; + $1428 = (_i64Add(($1234|0),($1235|0),1048576,0)|0); + $1429 = tempRet0; + $1430 = (_bitshift64Ashr(($1428|0),($1429|0),21)|0); + $1431 = tempRet0; + $1432 = (_i64Add(($1194|0),($1195|0),($1430|0),($1431|0))|0); + $1433 = tempRet0; + $1434 = (_bitshift64Shl(($1430|0),($1431|0),21)|0); + $1435 = tempRet0; + $1436 = (_i64Add(($1362|0),($1363|0),1048576,0)|0); + $1437 = tempRet0; + $1438 = (_bitshift64Ashr(($1436|0),($1437|0),21)|0); + $1439 = tempRet0; + $1440 = (_bitshift64Shl(($1438|0),($1439|0),21)|0); + $1441 = tempRet0; + $1442 = (_i64Add(($1376|0),($1377|0),1048576,0)|0); + $1443 = tempRet0; + $1444 = (_bitshift64Ashr(($1442|0),($1443|0),21)|0); + $1445 = tempRet0; + $1446 = (_bitshift64Shl(($1444|0),($1445|0),21)|0); + $1447 = tempRet0; + $1448 = (_i64Add(($1388|0),($1389|0),1048576,0)|0); + $1449 = tempRet0; + $1450 = (_bitshift64Ashr(($1448|0),($1449|0),21)|0); + $1451 = tempRet0; + $1452 = (_i64Add(($1410|0),($1411|0),($1450|0),($1451|0))|0); + $1453 = tempRet0; + $1454 = (_bitshift64Shl(($1450|0),($1451|0),21)|0); + $1455 = tempRet0; + $1456 = (_i64Add(($1406|0),($1407|0),1048576,0)|0); + $1457 = tempRet0; + $1458 = (_bitshift64Ashr(($1456|0),($1457|0),21)|0); + $1459 = tempRet0; + $1460 = (_i64Add(($1426|0),($1427|0),($1458|0),($1459|0))|0); + $1461 = tempRet0; + $1462 = (_bitshift64Shl(($1458|0),($1459|0),21)|0); + $1463 = tempRet0; + $1464 = (_i64Subtract(($1406|0),($1407|0),($1462|0),($1463|0))|0); + $1465 = tempRet0; + $1466 = (_i64Add(($1422|0),($1423|0),1048576,0)|0); + $1467 = tempRet0; + $1468 = (_bitshift64Ashr(($1466|0),($1467|0),21)|0); + $1469 = tempRet0; + $1470 = (_bitshift64Shl(($1468|0),($1469|0),21)|0); + $1471 = tempRet0; + $1472 = (_i64Subtract(($1422|0),($1423|0),($1470|0),($1471|0))|0); + $1473 = tempRet0; + $1474 = (_i64Add(($1432|0),($1433|0),1048576,0)|0); + $1475 = tempRet0; + $1476 = (_bitshift64Ashr(($1474|0),($1475|0),21)|0); + $1477 = tempRet0; + $1478 = (_bitshift64Shl(($1476|0),($1477|0),21)|0); + $1479 = tempRet0; + $1480 = (_i64Subtract(($1432|0),($1433|0),($1478|0),($1479|0))|0); + $1481 = tempRet0; + $1482 = (___muldi3(($1476|0),($1477|0),666643,0)|0); + $1483 = tempRet0; + $1484 = (_i64Add(($1366|0),($1367|0),($1482|0),($1483|0))|0); + $1485 = tempRet0; + $1486 = (___muldi3(($1476|0),($1477|0),470296,0)|0); + $1487 = tempRet0; + $1488 = (___muldi3(($1476|0),($1477|0),654183,0)|0); + $1489 = tempRet0; + $1490 = (___muldi3(($1476|0),($1477|0),-997805,-1)|0); + $1491 = tempRet0; + $1492 = (___muldi3(($1476|0),($1477|0),136657,0)|0); + $1493 = tempRet0; + $1494 = (___muldi3(($1476|0),($1477|0),-683901,-1)|0); + $1495 = tempRet0; + $1496 = (_bitshift64Ashr(($1484|0),($1485|0),21)|0); + $1497 = tempRet0; + $1498 = (_i64Add(($1486|0),($1487|0),($1362|0),($1363|0))|0); + $1499 = tempRet0; + $1500 = (_i64Subtract(($1498|0),($1499|0),($1440|0),($1441|0))|0); + $1501 = tempRet0; + $1502 = (_i64Add(($1500|0),($1501|0),($1496|0),($1497|0))|0); + $1503 = tempRet0; + $1504 = (_bitshift64Shl(($1496|0),($1497|0),21)|0); + $1505 = tempRet0; + $1506 = (_i64Subtract(($1484|0),($1485|0),($1504|0),($1505|0))|0); + $1507 = tempRet0; + $1508 = (_bitshift64Ashr(($1502|0),($1503|0),21)|0); + $1509 = tempRet0; + $1510 = (_i64Add(($1488|0),($1489|0),($1332|0),($1333|0))|0); + $1511 = tempRet0; + $1512 = (_i64Subtract(($1510|0),($1511|0),($1378|0),($1379|0))|0); + $1513 = tempRet0; + $1514 = (_i64Add(($1512|0),($1513|0),($1438|0),($1439|0))|0); + $1515 = tempRet0; + $1516 = (_i64Add(($1514|0),($1515|0),($1508|0),($1509|0))|0); + $1517 = tempRet0; + $1518 = (_bitshift64Shl(($1508|0),($1509|0),21)|0); + $1519 = tempRet0; + $1520 = (_i64Subtract(($1502|0),($1503|0),($1518|0),($1519|0))|0); + $1521 = tempRet0; + $1522 = (_bitshift64Ashr(($1516|0),($1517|0),21)|0); + $1523 = tempRet0; + $1524 = (_i64Add(($1376|0),($1377|0),($1490|0),($1491|0))|0); + $1525 = tempRet0; + $1526 = (_i64Subtract(($1524|0),($1525|0),($1446|0),($1447|0))|0); + $1527 = tempRet0; + $1528 = (_i64Add(($1526|0),($1527|0),($1522|0),($1523|0))|0); + $1529 = tempRet0; + $1530 = (_bitshift64Shl(($1522|0),($1523|0),21)|0); + $1531 = tempRet0; + $1532 = (_i64Subtract(($1516|0),($1517|0),($1530|0),($1531|0))|0); + $1533 = tempRet0; + $1534 = (_bitshift64Ashr(($1528|0),($1529|0),21)|0); + $1535 = tempRet0; + $1536 = (_i64Add(($1492|0),($1493|0),($1350|0),($1351|0))|0); + $1537 = tempRet0; + $1538 = (_i64Subtract(($1536|0),($1537|0),($1390|0),($1391|0))|0); + $1539 = tempRet0; + $1540 = (_i64Add(($1538|0),($1539|0),($1444|0),($1445|0))|0); + $1541 = tempRet0; + $1542 = (_i64Add(($1540|0),($1541|0),($1534|0),($1535|0))|0); + $1543 = tempRet0; + $1544 = (_bitshift64Shl(($1534|0),($1535|0),21)|0); + $1545 = tempRet0; + $1546 = (_i64Subtract(($1528|0),($1529|0),($1544|0),($1545|0))|0); + $1547 = tempRet0; + $1548 = (_bitshift64Ashr(($1542|0),($1543|0),21)|0); + $1549 = tempRet0; + $1550 = (_i64Add(($1388|0),($1389|0),($1494|0),($1495|0))|0); + $1551 = tempRet0; + $1552 = (_i64Subtract(($1550|0),($1551|0),($1454|0),($1455|0))|0); + $1553 = tempRet0; + $1554 = (_i64Add(($1552|0),($1553|0),($1548|0),($1549|0))|0); + $1555 = tempRet0; + $1556 = (_bitshift64Shl(($1548|0),($1549|0),21)|0); + $1557 = tempRet0; + $1558 = (_i64Subtract(($1542|0),($1543|0),($1556|0),($1557|0))|0); + $1559 = tempRet0; + $1560 = (_bitshift64Ashr(($1554|0),($1555|0),21)|0); + $1561 = tempRet0; + $1562 = (_i64Add(($1452|0),($1453|0),($1560|0),($1561|0))|0); + $1563 = tempRet0; + $1564 = (_bitshift64Shl(($1560|0),($1561|0),21)|0); + $1565 = tempRet0; + $1566 = (_i64Subtract(($1554|0),($1555|0),($1564|0),($1565|0))|0); + $1567 = tempRet0; + $1568 = (_bitshift64Ashr(($1562|0),($1563|0),21)|0); + $1569 = tempRet0; + $1570 = (_i64Add(($1568|0),($1569|0),($1464|0),($1465|0))|0); + $1571 = tempRet0; + $1572 = (_bitshift64Shl(($1568|0),($1569|0),21)|0); + $1573 = tempRet0; + $1574 = (_i64Subtract(($1562|0),($1563|0),($1572|0),($1573|0))|0); + $1575 = tempRet0; + $1576 = (_bitshift64Ashr(($1570|0),($1571|0),21)|0); + $1577 = tempRet0; + $1578 = (_i64Add(($1460|0),($1461|0),($1576|0),($1577|0))|0); + $1579 = tempRet0; + $1580 = (_bitshift64Shl(($1576|0),($1577|0),21)|0); + $1581 = tempRet0; + $1582 = (_i64Subtract(($1570|0),($1571|0),($1580|0),($1581|0))|0); + $1583 = tempRet0; + $1584 = (_bitshift64Ashr(($1578|0),($1579|0),21)|0); + $1585 = tempRet0; + $1586 = (_i64Add(($1584|0),($1585|0),($1472|0),($1473|0))|0); + $1587 = tempRet0; + $1588 = (_bitshift64Shl(($1584|0),($1585|0),21)|0); + $1589 = tempRet0; + $1590 = (_i64Subtract(($1578|0),($1579|0),($1588|0),($1589|0))|0); + $1591 = tempRet0; + $1592 = (_bitshift64Ashr(($1586|0),($1587|0),21)|0); + $1593 = tempRet0; + $1594 = (_i64Add(($1468|0),($1469|0),($1234|0),($1235|0))|0); + $1595 = tempRet0; + $1596 = (_i64Subtract(($1594|0),($1595|0),($1434|0),($1435|0))|0); + $1597 = tempRet0; + $1598 = (_i64Add(($1596|0),($1597|0),($1592|0),($1593|0))|0); + $1599 = tempRet0; + $1600 = (_bitshift64Shl(($1592|0),($1593|0),21)|0); + $1601 = tempRet0; + $1602 = (_i64Subtract(($1586|0),($1587|0),($1600|0),($1601|0))|0); + $1603 = tempRet0; + $1604 = (_bitshift64Ashr(($1598|0),($1599|0),21)|0); + $1605 = tempRet0; + $1606 = (_i64Add(($1604|0),($1605|0),($1480|0),($1481|0))|0); + $1607 = tempRet0; + $1608 = (_bitshift64Shl(($1604|0),($1605|0),21)|0); + $1609 = tempRet0; + $1610 = (_i64Subtract(($1598|0),($1599|0),($1608|0),($1609|0))|0); + $1611 = tempRet0; + $1612 = (_bitshift64Ashr(($1606|0),($1607|0),21)|0); + $1613 = tempRet0; + $1614 = (_bitshift64Shl(($1612|0),($1613|0),21)|0); + $1615 = tempRet0; + $1616 = (_i64Subtract(($1606|0),($1607|0),($1614|0),($1615|0))|0); + $1617 = tempRet0; + $1618 = (___muldi3(($1612|0),($1613|0),666643,0)|0); + $1619 = tempRet0; + $1620 = (_i64Add(($1618|0),($1619|0),($1506|0),($1507|0))|0); + $1621 = tempRet0; + $1622 = (___muldi3(($1612|0),($1613|0),470296,0)|0); + $1623 = tempRet0; + $1624 = (_i64Add(($1520|0),($1521|0),($1622|0),($1623|0))|0); + $1625 = tempRet0; + $1626 = (___muldi3(($1612|0),($1613|0),654183,0)|0); + $1627 = tempRet0; + $1628 = (_i64Add(($1532|0),($1533|0),($1626|0),($1627|0))|0); + $1629 = tempRet0; + $1630 = (___muldi3(($1612|0),($1613|0),-997805,-1)|0); + $1631 = tempRet0; + $1632 = (_i64Add(($1546|0),($1547|0),($1630|0),($1631|0))|0); + $1633 = tempRet0; + $1634 = (___muldi3(($1612|0),($1613|0),136657,0)|0); + $1635 = tempRet0; + $1636 = (_i64Add(($1558|0),($1559|0),($1634|0),($1635|0))|0); + $1637 = tempRet0; + $1638 = (___muldi3(($1612|0),($1613|0),-683901,-1)|0); + $1639 = tempRet0; + $1640 = (_i64Add(($1566|0),($1567|0),($1638|0),($1639|0))|0); + $1641 = tempRet0; + $1642 = (_bitshift64Ashr(($1620|0),($1621|0),21)|0); + $1643 = tempRet0; + $1644 = (_i64Add(($1624|0),($1625|0),($1642|0),($1643|0))|0); + $1645 = tempRet0; + $1646 = (_bitshift64Shl(($1642|0),($1643|0),21)|0); + $1647 = tempRet0; + $1648 = (_i64Subtract(($1620|0),($1621|0),($1646|0),($1647|0))|0); + $1649 = tempRet0; + $1650 = (_bitshift64Ashr(($1644|0),($1645|0),21)|0); + $1651 = tempRet0; + $1652 = (_i64Add(($1628|0),($1629|0),($1650|0),($1651|0))|0); + $1653 = tempRet0; + $1654 = (_bitshift64Shl(($1650|0),($1651|0),21)|0); + $1655 = tempRet0; + $1656 = (_i64Subtract(($1644|0),($1645|0),($1654|0),($1655|0))|0); + $1657 = tempRet0; + $1658 = (_bitshift64Ashr(($1652|0),($1653|0),21)|0); + $1659 = tempRet0; + $1660 = (_i64Add(($1632|0),($1633|0),($1658|0),($1659|0))|0); + $1661 = tempRet0; + $1662 = (_bitshift64Shl(($1658|0),($1659|0),21)|0); + $1663 = tempRet0; + $1664 = (_i64Subtract(($1652|0),($1653|0),($1662|0),($1663|0))|0); + $1665 = tempRet0; + $1666 = (_bitshift64Ashr(($1660|0),($1661|0),21)|0); + $1667 = tempRet0; + $1668 = (_i64Add(($1636|0),($1637|0),($1666|0),($1667|0))|0); + $1669 = tempRet0; + $1670 = (_bitshift64Shl(($1666|0),($1667|0),21)|0); + $1671 = tempRet0; + $1672 = (_i64Subtract(($1660|0),($1661|0),($1670|0),($1671|0))|0); + $1673 = tempRet0; + $1674 = (_bitshift64Ashr(($1668|0),($1669|0),21)|0); + $1675 = tempRet0; + $1676 = (_i64Add(($1640|0),($1641|0),($1674|0),($1675|0))|0); + $1677 = tempRet0; + $1678 = (_bitshift64Shl(($1674|0),($1675|0),21)|0); + $1679 = tempRet0; + $1680 = (_i64Subtract(($1668|0),($1669|0),($1678|0),($1679|0))|0); + $1681 = tempRet0; + $1682 = (_bitshift64Ashr(($1676|0),($1677|0),21)|0); + $1683 = tempRet0; + $1684 = (_i64Add(($1682|0),($1683|0),($1574|0),($1575|0))|0); + $1685 = tempRet0; + $1686 = (_bitshift64Shl(($1682|0),($1683|0),21)|0); + $1687 = tempRet0; + $1688 = (_i64Subtract(($1676|0),($1677|0),($1686|0),($1687|0))|0); + $1689 = tempRet0; + $1690 = (_bitshift64Ashr(($1684|0),($1685|0),21)|0); + $1691 = tempRet0; + $1692 = (_i64Add(($1690|0),($1691|0),($1582|0),($1583|0))|0); + $1693 = tempRet0; + $1694 = (_bitshift64Shl(($1690|0),($1691|0),21)|0); + $1695 = tempRet0; + $1696 = (_i64Subtract(($1684|0),($1685|0),($1694|0),($1695|0))|0); + $1697 = tempRet0; + $1698 = (_bitshift64Ashr(($1692|0),($1693|0),21)|0); + $1699 = tempRet0; + $1700 = (_i64Add(($1698|0),($1699|0),($1590|0),($1591|0))|0); + $1701 = tempRet0; + $1702 = (_bitshift64Shl(($1698|0),($1699|0),21)|0); + $1703 = tempRet0; + $1704 = (_i64Subtract(($1692|0),($1693|0),($1702|0),($1703|0))|0); + $1705 = tempRet0; + $1706 = (_bitshift64Ashr(($1700|0),($1701|0),21)|0); + $1707 = tempRet0; + $1708 = (_i64Add(($1706|0),($1707|0),($1602|0),($1603|0))|0); + $1709 = tempRet0; + $1710 = (_bitshift64Shl(($1706|0),($1707|0),21)|0); + $1711 = tempRet0; + $1712 = (_i64Subtract(($1700|0),($1701|0),($1710|0),($1711|0))|0); + $1713 = tempRet0; + $1714 = (_bitshift64Ashr(($1708|0),($1709|0),21)|0); + $1715 = tempRet0; + $1716 = (_i64Add(($1714|0),($1715|0),($1610|0),($1611|0))|0); + $1717 = tempRet0; + $1718 = (_bitshift64Shl(($1714|0),($1715|0),21)|0); + $1719 = tempRet0; + $1720 = (_i64Subtract(($1708|0),($1709|0),($1718|0),($1719|0))|0); + $1721 = tempRet0; + $1722 = (_bitshift64Ashr(($1716|0),($1717|0),21)|0); + $1723 = tempRet0; + $1724 = (_i64Add(($1722|0),($1723|0),($1616|0),($1617|0))|0); + $1725 = tempRet0; + $1726 = (_bitshift64Shl(($1722|0),($1723|0),21)|0); + $1727 = tempRet0; + $1728 = (_i64Subtract(($1716|0),($1717|0),($1726|0),($1727|0))|0); + $1729 = tempRet0; + $1730 = $1648&255; + HEAP8[$0>>0] = $1730; + $1731 = (_bitshift64Lshr(($1648|0),($1649|0),8)|0); + $1732 = tempRet0; + $1733 = $1731&255; + $1734 = ((($0)) + 1|0); + HEAP8[$1734>>0] = $1733; + $1735 = (_bitshift64Lshr(($1648|0),($1649|0),16)|0); + $1736 = tempRet0; + $1737 = (_bitshift64Shl(($1656|0),($1657|0),5)|0); + $1738 = tempRet0; + $1739 = $1737 | $1735; + $1738 | $1736; + $1740 = $1739&255; + $1741 = ((($0)) + 2|0); + HEAP8[$1741>>0] = $1740; + $1742 = (_bitshift64Lshr(($1656|0),($1657|0),3)|0); + $1743 = tempRet0; + $1744 = $1742&255; + $1745 = ((($0)) + 3|0); + HEAP8[$1745>>0] = $1744; + $1746 = (_bitshift64Lshr(($1656|0),($1657|0),11)|0); + $1747 = tempRet0; + $1748 = $1746&255; + $1749 = ((($0)) + 4|0); + HEAP8[$1749>>0] = $1748; + $1750 = (_bitshift64Lshr(($1656|0),($1657|0),19)|0); + $1751 = tempRet0; + $1752 = (_bitshift64Shl(($1664|0),($1665|0),2)|0); + $1753 = tempRet0; + $1754 = $1752 | $1750; + $1753 | $1751; + $1755 = $1754&255; + $1756 = ((($0)) + 5|0); + HEAP8[$1756>>0] = $1755; + $1757 = (_bitshift64Lshr(($1664|0),($1665|0),6)|0); + $1758 = tempRet0; + $1759 = $1757&255; + $1760 = ((($0)) + 6|0); + HEAP8[$1760>>0] = $1759; + $1761 = (_bitshift64Lshr(($1664|0),($1665|0),14)|0); + $1762 = tempRet0; + $1763 = (_bitshift64Shl(($1672|0),($1673|0),7)|0); + $1764 = tempRet0; + $1765 = $1763 | $1761; + $1764 | $1762; + $1766 = $1765&255; + $1767 = ((($0)) + 7|0); + HEAP8[$1767>>0] = $1766; + $1768 = (_bitshift64Lshr(($1672|0),($1673|0),1)|0); + $1769 = tempRet0; + $1770 = $1768&255; + $1771 = ((($0)) + 8|0); + HEAP8[$1771>>0] = $1770; + $1772 = (_bitshift64Lshr(($1672|0),($1673|0),9)|0); + $1773 = tempRet0; + $1774 = $1772&255; + $1775 = ((($0)) + 9|0); + HEAP8[$1775>>0] = $1774; + $1776 = (_bitshift64Lshr(($1672|0),($1673|0),17)|0); + $1777 = tempRet0; + $1778 = (_bitshift64Shl(($1680|0),($1681|0),4)|0); + $1779 = tempRet0; + $1780 = $1778 | $1776; + $1779 | $1777; + $1781 = $1780&255; + $1782 = ((($0)) + 10|0); + HEAP8[$1782>>0] = $1781; + $1783 = (_bitshift64Lshr(($1680|0),($1681|0),4)|0); + $1784 = tempRet0; + $1785 = $1783&255; + $1786 = ((($0)) + 11|0); + HEAP8[$1786>>0] = $1785; + $1787 = (_bitshift64Lshr(($1680|0),($1681|0),12)|0); + $1788 = tempRet0; + $1789 = $1787&255; + $1790 = ((($0)) + 12|0); + HEAP8[$1790>>0] = $1789; + $1791 = (_bitshift64Lshr(($1680|0),($1681|0),20)|0); + $1792 = tempRet0; + $1793 = (_bitshift64Shl(($1688|0),($1689|0),1)|0); + $1794 = tempRet0; + $1795 = $1793 | $1791; + $1794 | $1792; + $1796 = $1795&255; + $1797 = ((($0)) + 13|0); + HEAP8[$1797>>0] = $1796; + $1798 = (_bitshift64Lshr(($1688|0),($1689|0),7)|0); + $1799 = tempRet0; + $1800 = $1798&255; + $1801 = ((($0)) + 14|0); + HEAP8[$1801>>0] = $1800; + $1802 = (_bitshift64Lshr(($1688|0),($1689|0),15)|0); + $1803 = tempRet0; + $1804 = (_bitshift64Shl(($1696|0),($1697|0),6)|0); + $1805 = tempRet0; + $1806 = $1804 | $1802; + $1805 | $1803; + $1807 = $1806&255; + $1808 = ((($0)) + 15|0); + HEAP8[$1808>>0] = $1807; + $1809 = (_bitshift64Lshr(($1696|0),($1697|0),2)|0); + $1810 = tempRet0; + $1811 = $1809&255; + $1812 = ((($0)) + 16|0); + HEAP8[$1812>>0] = $1811; + $1813 = (_bitshift64Lshr(($1696|0),($1697|0),10)|0); + $1814 = tempRet0; + $1815 = $1813&255; + $1816 = ((($0)) + 17|0); + HEAP8[$1816>>0] = $1815; + $1817 = (_bitshift64Lshr(($1696|0),($1697|0),18)|0); + $1818 = tempRet0; + $1819 = (_bitshift64Shl(($1704|0),($1705|0),3)|0); + $1820 = tempRet0; + $1821 = $1819 | $1817; + $1820 | $1818; + $1822 = $1821&255; + $1823 = ((($0)) + 18|0); + HEAP8[$1823>>0] = $1822; + $1824 = (_bitshift64Lshr(($1704|0),($1705|0),5)|0); + $1825 = tempRet0; + $1826 = $1824&255; + $1827 = ((($0)) + 19|0); + HEAP8[$1827>>0] = $1826; + $1828 = (_bitshift64Lshr(($1704|0),($1705|0),13)|0); + $1829 = tempRet0; + $1830 = $1828&255; + $1831 = ((($0)) + 20|0); + HEAP8[$1831>>0] = $1830; + $1832 = $1712&255; + $1833 = ((($0)) + 21|0); + HEAP8[$1833>>0] = $1832; + $1834 = (_bitshift64Lshr(($1712|0),($1713|0),8)|0); + $1835 = tempRet0; + $1836 = $1834&255; + $1837 = ((($0)) + 22|0); + HEAP8[$1837>>0] = $1836; + $1838 = (_bitshift64Lshr(($1712|0),($1713|0),16)|0); + $1839 = tempRet0; + $1840 = (_bitshift64Shl(($1720|0),($1721|0),5)|0); + $1841 = tempRet0; + $1842 = $1840 | $1838; + $1841 | $1839; + $1843 = $1842&255; + $1844 = ((($0)) + 23|0); + HEAP8[$1844>>0] = $1843; + $1845 = (_bitshift64Lshr(($1720|0),($1721|0),3)|0); + $1846 = tempRet0; + $1847 = $1845&255; + $1848 = ((($0)) + 24|0); + HEAP8[$1848>>0] = $1847; + $1849 = (_bitshift64Lshr(($1720|0),($1721|0),11)|0); + $1850 = tempRet0; + $1851 = $1849&255; + $1852 = ((($0)) + 25|0); + HEAP8[$1852>>0] = $1851; + $1853 = (_bitshift64Lshr(($1720|0),($1721|0),19)|0); + $1854 = tempRet0; + $1855 = (_bitshift64Shl(($1728|0),($1729|0),2)|0); + $1856 = tempRet0; + $1857 = $1855 | $1853; + $1856 | $1854; + $1858 = $1857&255; + $1859 = ((($0)) + 26|0); + HEAP8[$1859>>0] = $1858; + $1860 = (_bitshift64Lshr(($1728|0),($1729|0),6)|0); + $1861 = tempRet0; + $1862 = $1860&255; + $1863 = ((($0)) + 27|0); + HEAP8[$1863>>0] = $1862; + $1864 = (_bitshift64Lshr(($1728|0),($1729|0),14)|0); + $1865 = tempRet0; + $1866 = (_bitshift64Shl(($1724|0),($1725|0),7)|0); + $1867 = tempRet0; + $1868 = $1864 | $1866; + $1865 | $1867; + $1869 = $1868&255; + $1870 = ((($0)) + 28|0); + HEAP8[$1870>>0] = $1869; + $1871 = (_bitshift64Lshr(($1724|0),($1725|0),1)|0); + $1872 = tempRet0; + $1873 = $1871&255; + $1874 = ((($0)) + 29|0); + HEAP8[$1874>>0] = $1873; + $1875 = (_bitshift64Lshr(($1724|0),($1725|0),9)|0); + $1876 = tempRet0; + $1877 = $1875&255; + $1878 = ((($0)) + 30|0); + HEAP8[$1878>>0] = $1877; + $1879 = (_bitshift64Lshr(($1724|0),($1725|0),17)|0); + $1880 = tempRet0; + $1881 = $1879&255; + $1882 = ((($0)) + 31|0); + HEAP8[$1882>>0] = $1881; + return; +} +function _load_3_47($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = ((($0)) + 1|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = (_bitshift64Shl(($5|0),0,8)|0); + $7 = tempRet0; + $8 = $6 | $2; + $9 = ((($0)) + 2|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = (_bitshift64Shl(($11|0),0,16)|0); + $13 = tempRet0; + $14 = $8 | $12; + $15 = $7 | $13; + tempRet0 = ($15); + return ($14|0); +} +function _load_4_48($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; + var $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = ((($0)) + 1|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = (_bitshift64Shl(($5|0),0,8)|0); + $7 = tempRet0; + $8 = $6 | $2; + $9 = ((($0)) + 2|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = (_bitshift64Shl(($11|0),0,16)|0); + $13 = tempRet0; + $14 = $8 | $12; + $15 = $7 | $13; + $16 = ((($0)) + 3|0); + $17 = HEAP8[$16>>0]|0; + $18 = $17&255; + $19 = (_bitshift64Shl(($18|0),0,24)|0); + $20 = tempRet0; + $21 = $14 | $19; + $22 = $15 | $20; + tempRet0 = ($22); + return ($21|0); +} +function _crypto_sign_ed25519_ref10_sc_reduce($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0, $1015 = 0; + var $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0; + var $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0; + var $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0; + var $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0; + var $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0; + var $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0; + var $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0; + var $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0; + var $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0; + var $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0; + var $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0; + var $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0; + var $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0; + var $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0; + var $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0; + var $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0; + var $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0; + var $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0; + var $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0; + var $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0; + var $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0; + var $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0; + var $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0; + var $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0; + var $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0; + var $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0; + var $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0; + var $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0; + var $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0; + var $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0; + var $636 = 0, $637 = 0, $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0; + var $654 = 0, $655 = 0, $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0; + var $672 = 0, $673 = 0, $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0; + var $690 = 0, $691 = 0, $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0; + var $708 = 0, $709 = 0, $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0; + var $726 = 0, $727 = 0, $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0; + var $744 = 0, $745 = 0, $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0; + var $762 = 0, $763 = 0, $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0; + var $780 = 0, $781 = 0, $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0; + var $799 = 0, $8 = 0, $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0; + var $816 = 0, $817 = 0, $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0; + var $834 = 0, $835 = 0, $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0; + var $852 = 0, $853 = 0, $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0; + var $870 = 0, $871 = 0, $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0; + var $889 = 0, $89 = 0, $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0; + var $906 = 0, $907 = 0, $908 = 0, $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0; + var $924 = 0, $925 = 0, $926 = 0, $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0; + var $942 = 0, $943 = 0, $944 = 0, $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0; + var $960 = 0, $961 = 0, $962 = 0, $963 = 0, $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0; + var $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0; + var $997 = 0, $998 = 0, $999 = 0, label = 0, sp = 0; + sp = STACKTOP; + $1 = (_load_3_51($0)|0); + $2 = tempRet0; + $3 = $1 & 2097151; + $4 = ((($0)) + 2|0); + $5 = (_load_4_52($4)|0); + $6 = tempRet0; + $7 = (_bitshift64Lshr(($5|0),($6|0),5)|0); + $8 = tempRet0; + $9 = $7 & 2097151; + $10 = ((($0)) + 5|0); + $11 = (_load_3_51($10)|0); + $12 = tempRet0; + $13 = (_bitshift64Lshr(($11|0),($12|0),2)|0); + $14 = tempRet0; + $15 = $13 & 2097151; + $16 = ((($0)) + 7|0); + $17 = (_load_4_52($16)|0); + $18 = tempRet0; + $19 = (_bitshift64Lshr(($17|0),($18|0),7)|0); + $20 = tempRet0; + $21 = $19 & 2097151; + $22 = ((($0)) + 10|0); + $23 = (_load_4_52($22)|0); + $24 = tempRet0; + $25 = (_bitshift64Lshr(($23|0),($24|0),4)|0); + $26 = tempRet0; + $27 = $25 & 2097151; + $28 = ((($0)) + 13|0); + $29 = (_load_3_51($28)|0); + $30 = tempRet0; + $31 = (_bitshift64Lshr(($29|0),($30|0),1)|0); + $32 = tempRet0; + $33 = $31 & 2097151; + $34 = ((($0)) + 15|0); + $35 = (_load_4_52($34)|0); + $36 = tempRet0; + $37 = (_bitshift64Lshr(($35|0),($36|0),6)|0); + $38 = tempRet0; + $39 = $37 & 2097151; + $40 = ((($0)) + 18|0); + $41 = (_load_3_51($40)|0); + $42 = tempRet0; + $43 = (_bitshift64Lshr(($41|0),($42|0),3)|0); + $44 = tempRet0; + $45 = $43 & 2097151; + $46 = ((($0)) + 21|0); + $47 = (_load_3_51($46)|0); + $48 = tempRet0; + $49 = $47 & 2097151; + $50 = ((($0)) + 23|0); + $51 = (_load_4_52($50)|0); + $52 = tempRet0; + $53 = (_bitshift64Lshr(($51|0),($52|0),5)|0); + $54 = tempRet0; + $55 = $53 & 2097151; + $56 = ((($0)) + 26|0); + $57 = (_load_3_51($56)|0); + $58 = tempRet0; + $59 = (_bitshift64Lshr(($57|0),($58|0),2)|0); + $60 = tempRet0; + $61 = $59 & 2097151; + $62 = ((($0)) + 28|0); + $63 = (_load_4_52($62)|0); + $64 = tempRet0; + $65 = (_bitshift64Lshr(($63|0),($64|0),7)|0); + $66 = tempRet0; + $67 = $65 & 2097151; + $68 = ((($0)) + 31|0); + $69 = (_load_4_52($68)|0); + $70 = tempRet0; + $71 = (_bitshift64Lshr(($69|0),($70|0),4)|0); + $72 = tempRet0; + $73 = $71 & 2097151; + $74 = ((($0)) + 34|0); + $75 = (_load_3_51($74)|0); + $76 = tempRet0; + $77 = (_bitshift64Lshr(($75|0),($76|0),1)|0); + $78 = tempRet0; + $79 = $77 & 2097151; + $80 = ((($0)) + 36|0); + $81 = (_load_4_52($80)|0); + $82 = tempRet0; + $83 = (_bitshift64Lshr(($81|0),($82|0),6)|0); + $84 = tempRet0; + $85 = $83 & 2097151; + $86 = ((($0)) + 39|0); + $87 = (_load_3_51($86)|0); + $88 = tempRet0; + $89 = (_bitshift64Lshr(($87|0),($88|0),3)|0); + $90 = tempRet0; + $91 = $89 & 2097151; + $92 = ((($0)) + 42|0); + $93 = (_load_3_51($92)|0); + $94 = tempRet0; + $95 = $93 & 2097151; + $96 = ((($0)) + 44|0); + $97 = (_load_4_52($96)|0); + $98 = tempRet0; + $99 = (_bitshift64Lshr(($97|0),($98|0),5)|0); + $100 = tempRet0; + $101 = $99 & 2097151; + $102 = ((($0)) + 47|0); + $103 = (_load_3_51($102)|0); + $104 = tempRet0; + $105 = (_bitshift64Lshr(($103|0),($104|0),2)|0); + $106 = tempRet0; + $107 = $105 & 2097151; + $108 = ((($0)) + 49|0); + $109 = (_load_4_52($108)|0); + $110 = tempRet0; + $111 = (_bitshift64Lshr(($109|0),($110|0),7)|0); + $112 = tempRet0; + $113 = $111 & 2097151; + $114 = ((($0)) + 52|0); + $115 = (_load_4_52($114)|0); + $116 = tempRet0; + $117 = (_bitshift64Lshr(($115|0),($116|0),4)|0); + $118 = tempRet0; + $119 = $117 & 2097151; + $120 = ((($0)) + 55|0); + $121 = (_load_3_51($120)|0); + $122 = tempRet0; + $123 = (_bitshift64Lshr(($121|0),($122|0),1)|0); + $124 = tempRet0; + $125 = $123 & 2097151; + $126 = ((($0)) + 57|0); + $127 = (_load_4_52($126)|0); + $128 = tempRet0; + $129 = (_bitshift64Lshr(($127|0),($128|0),6)|0); + $130 = tempRet0; + $131 = $129 & 2097151; + $132 = ((($0)) + 60|0); + $133 = (_load_4_52($132)|0); + $134 = tempRet0; + $135 = (_bitshift64Lshr(($133|0),($134|0),3)|0); + $136 = tempRet0; + $137 = (___muldi3(($135|0),($136|0),666643,0)|0); + $138 = tempRet0; + $139 = (___muldi3(($135|0),($136|0),470296,0)|0); + $140 = tempRet0; + $141 = (___muldi3(($135|0),($136|0),654183,0)|0); + $142 = tempRet0; + $143 = (___muldi3(($135|0),($136|0),-997805,-1)|0); + $144 = tempRet0; + $145 = (___muldi3(($135|0),($136|0),136657,0)|0); + $146 = tempRet0; + $147 = (_i64Add(($145|0),($146|0),($91|0),0)|0); + $148 = tempRet0; + $149 = (___muldi3(($135|0),($136|0),-683901,-1)|0); + $150 = tempRet0; + $151 = (_i64Add(($149|0),($150|0),($95|0),0)|0); + $152 = tempRet0; + $153 = (___muldi3(($131|0),0,666643,0)|0); + $154 = tempRet0; + $155 = (___muldi3(($131|0),0,470296,0)|0); + $156 = tempRet0; + $157 = (___muldi3(($131|0),0,654183,0)|0); + $158 = tempRet0; + $159 = (___muldi3(($131|0),0,-997805,-1)|0); + $160 = tempRet0; + $161 = (___muldi3(($131|0),0,136657,0)|0); + $162 = tempRet0; + $163 = (___muldi3(($131|0),0,-683901,-1)|0); + $164 = tempRet0; + $165 = (_i64Add(($147|0),($148|0),($163|0),($164|0))|0); + $166 = tempRet0; + $167 = (___muldi3(($125|0),0,666643,0)|0); + $168 = tempRet0; + $169 = (___muldi3(($125|0),0,470296,0)|0); + $170 = tempRet0; + $171 = (___muldi3(($125|0),0,654183,0)|0); + $172 = tempRet0; + $173 = (___muldi3(($125|0),0,-997805,-1)|0); + $174 = tempRet0; + $175 = (___muldi3(($125|0),0,136657,0)|0); + $176 = tempRet0; + $177 = (___muldi3(($125|0),0,-683901,-1)|0); + $178 = tempRet0; + $179 = (_i64Add(($177|0),($178|0),($85|0),0)|0); + $180 = tempRet0; + $181 = (_i64Add(($179|0),($180|0),($143|0),($144|0))|0); + $182 = tempRet0; + $183 = (_i64Add(($181|0),($182|0),($161|0),($162|0))|0); + $184 = tempRet0; + $185 = (___muldi3(($119|0),0,666643,0)|0); + $186 = tempRet0; + $187 = (___muldi3(($119|0),0,470296,0)|0); + $188 = tempRet0; + $189 = (___muldi3(($119|0),0,654183,0)|0); + $190 = tempRet0; + $191 = (___muldi3(($119|0),0,-997805,-1)|0); + $192 = tempRet0; + $193 = (___muldi3(($119|0),0,136657,0)|0); + $194 = tempRet0; + $195 = (___muldi3(($119|0),0,-683901,-1)|0); + $196 = tempRet0; + $197 = (___muldi3(($113|0),0,666643,0)|0); + $198 = tempRet0; + $199 = (___muldi3(($113|0),0,470296,0)|0); + $200 = tempRet0; + $201 = (___muldi3(($113|0),0,654183,0)|0); + $202 = tempRet0; + $203 = (___muldi3(($113|0),0,-997805,-1)|0); + $204 = tempRet0; + $205 = (___muldi3(($113|0),0,136657,0)|0); + $206 = tempRet0; + $207 = (___muldi3(($113|0),0,-683901,-1)|0); + $208 = tempRet0; + $209 = (_i64Add(($207|0),($208|0),($73|0),0)|0); + $210 = tempRet0; + $211 = (_i64Add(($209|0),($210|0),($193|0),($194|0))|0); + $212 = tempRet0; + $213 = (_i64Add(($211|0),($212|0),($173|0),($174|0))|0); + $214 = tempRet0; + $215 = (_i64Add(($213|0),($214|0),($139|0),($140|0))|0); + $216 = tempRet0; + $217 = (_i64Add(($215|0),($216|0),($157|0),($158|0))|0); + $218 = tempRet0; + $219 = (___muldi3(($107|0),0,666643,0)|0); + $220 = tempRet0; + $221 = (_i64Add(($219|0),($220|0),($39|0),0)|0); + $222 = tempRet0; + $223 = (___muldi3(($107|0),0,470296,0)|0); + $224 = tempRet0; + $225 = (___muldi3(($107|0),0,654183,0)|0); + $226 = tempRet0; + $227 = (_i64Add(($225|0),($226|0),($49|0),0)|0); + $228 = tempRet0; + $229 = (_i64Add(($227|0),($228|0),($199|0),($200|0))|0); + $230 = tempRet0; + $231 = (_i64Add(($229|0),($230|0),($185|0),($186|0))|0); + $232 = tempRet0; + $233 = (___muldi3(($107|0),0,-997805,-1)|0); + $234 = tempRet0; + $235 = (___muldi3(($107|0),0,136657,0)|0); + $236 = tempRet0; + $237 = (_i64Add(($235|0),($236|0),($61|0),0)|0); + $238 = tempRet0; + $239 = (_i64Add(($237|0),($238|0),($203|0),($204|0))|0); + $240 = tempRet0; + $241 = (_i64Add(($239|0),($240|0),($189|0),($190|0))|0); + $242 = tempRet0; + $243 = (_i64Add(($241|0),($242|0),($169|0),($170|0))|0); + $244 = tempRet0; + $245 = (_i64Add(($243|0),($244|0),($153|0),($154|0))|0); + $246 = tempRet0; + $247 = (___muldi3(($107|0),0,-683901,-1)|0); + $248 = tempRet0; + $249 = (_i64Add(($221|0),($222|0),1048576,0)|0); + $250 = tempRet0; + $251 = (_bitshift64Lshr(($249|0),($250|0),21)|0); + $252 = tempRet0; + $253 = (_i64Add(($223|0),($224|0),($45|0),0)|0); + $254 = tempRet0; + $255 = (_i64Add(($253|0),($254|0),($197|0),($198|0))|0); + $256 = tempRet0; + $257 = (_i64Add(($255|0),($256|0),($251|0),($252|0))|0); + $258 = tempRet0; + $259 = (_bitshift64Shl(($251|0),($252|0),21)|0); + $260 = tempRet0; + $261 = (_i64Subtract(($221|0),($222|0),($259|0),($260|0))|0); + $262 = tempRet0; + $263 = (_i64Add(($231|0),($232|0),1048576,0)|0); + $264 = tempRet0; + $265 = (_bitshift64Lshr(($263|0),($264|0),21)|0); + $266 = tempRet0; + $267 = (_i64Add(($233|0),($234|0),($55|0),0)|0); + $268 = tempRet0; + $269 = (_i64Add(($267|0),($268|0),($201|0),($202|0))|0); + $270 = tempRet0; + $271 = (_i64Add(($269|0),($270|0),($187|0),($188|0))|0); + $272 = tempRet0; + $273 = (_i64Add(($271|0),($272|0),($167|0),($168|0))|0); + $274 = tempRet0; + $275 = (_i64Add(($273|0),($274|0),($265|0),($266|0))|0); + $276 = tempRet0; + $277 = (_bitshift64Shl(($265|0),($266|0),21)|0); + $278 = tempRet0; + $279 = (_i64Add(($245|0),($246|0),1048576,0)|0); + $280 = tempRet0; + $281 = (_bitshift64Ashr(($279|0),($280|0),21)|0); + $282 = tempRet0; + $283 = (_i64Add(($247|0),($248|0),($67|0),0)|0); + $284 = tempRet0; + $285 = (_i64Add(($283|0),($284|0),($205|0),($206|0))|0); + $286 = tempRet0; + $287 = (_i64Add(($285|0),($286|0),($191|0),($192|0))|0); + $288 = tempRet0; + $289 = (_i64Add(($287|0),($288|0),($171|0),($172|0))|0); + $290 = tempRet0; + $291 = (_i64Add(($289|0),($290|0),($137|0),($138|0))|0); + $292 = tempRet0; + $293 = (_i64Add(($291|0),($292|0),($155|0),($156|0))|0); + $294 = tempRet0; + $295 = (_i64Add(($293|0),($294|0),($281|0),($282|0))|0); + $296 = tempRet0; + $297 = (_bitshift64Shl(($281|0),($282|0),21)|0); + $298 = tempRet0; + $299 = (_i64Add(($217|0),($218|0),1048576,0)|0); + $300 = tempRet0; + $301 = (_bitshift64Ashr(($299|0),($300|0),21)|0); + $302 = tempRet0; + $303 = (_i64Add(($195|0),($196|0),($79|0),0)|0); + $304 = tempRet0; + $305 = (_i64Add(($303|0),($304|0),($175|0),($176|0))|0); + $306 = tempRet0; + $307 = (_i64Add(($305|0),($306|0),($141|0),($142|0))|0); + $308 = tempRet0; + $309 = (_i64Add(($307|0),($308|0),($159|0),($160|0))|0); + $310 = tempRet0; + $311 = (_i64Add(($309|0),($310|0),($301|0),($302|0))|0); + $312 = tempRet0; + $313 = (_bitshift64Shl(($301|0),($302|0),21)|0); + $314 = tempRet0; + $315 = (_i64Subtract(($217|0),($218|0),($313|0),($314|0))|0); + $316 = tempRet0; + $317 = (_i64Add(($183|0),($184|0),1048576,0)|0); + $318 = tempRet0; + $319 = (_bitshift64Ashr(($317|0),($318|0),21)|0); + $320 = tempRet0; + $321 = (_i64Add(($165|0),($166|0),($319|0),($320|0))|0); + $322 = tempRet0; + $323 = (_bitshift64Shl(($319|0),($320|0),21)|0); + $324 = tempRet0; + $325 = (_i64Subtract(($183|0),($184|0),($323|0),($324|0))|0); + $326 = tempRet0; + $327 = (_i64Add(($151|0),($152|0),1048576,0)|0); + $328 = tempRet0; + $329 = (_bitshift64Ashr(($327|0),($328|0),21)|0); + $330 = tempRet0; + $331 = (_i64Add(($329|0),($330|0),($101|0),0)|0); + $332 = tempRet0; + $333 = (_bitshift64Shl(($329|0),($330|0),21)|0); + $334 = tempRet0; + $335 = (_i64Subtract(($151|0),($152|0),($333|0),($334|0))|0); + $336 = tempRet0; + $337 = (_i64Add(($257|0),($258|0),1048576,0)|0); + $338 = tempRet0; + $339 = (_bitshift64Lshr(($337|0),($338|0),21)|0); + $340 = tempRet0; + $341 = (_bitshift64Shl(($339|0),($340|0),21)|0); + $342 = tempRet0; + $343 = (_i64Subtract(($257|0),($258|0),($341|0),($342|0))|0); + $344 = tempRet0; + $345 = (_i64Add(($275|0),($276|0),1048576,0)|0); + $346 = tempRet0; + $347 = (_bitshift64Ashr(($345|0),($346|0),21)|0); + $348 = tempRet0; + $349 = (_bitshift64Shl(($347|0),($348|0),21)|0); + $350 = tempRet0; + $351 = (_i64Add(($295|0),($296|0),1048576,0)|0); + $352 = tempRet0; + $353 = (_bitshift64Ashr(($351|0),($352|0),21)|0); + $354 = tempRet0; + $355 = (_i64Add(($353|0),($354|0),($315|0),($316|0))|0); + $356 = tempRet0; + $357 = (_bitshift64Shl(($353|0),($354|0),21)|0); + $358 = tempRet0; + $359 = (_i64Subtract(($295|0),($296|0),($357|0),($358|0))|0); + $360 = tempRet0; + $361 = (_i64Add(($311|0),($312|0),1048576,0)|0); + $362 = tempRet0; + $363 = (_bitshift64Ashr(($361|0),($362|0),21)|0); + $364 = tempRet0; + $365 = (_i64Add(($363|0),($364|0),($325|0),($326|0))|0); + $366 = tempRet0; + $367 = (_bitshift64Shl(($363|0),($364|0),21)|0); + $368 = tempRet0; + $369 = (_i64Subtract(($311|0),($312|0),($367|0),($368|0))|0); + $370 = tempRet0; + $371 = (_i64Add(($321|0),($322|0),1048576,0)|0); + $372 = tempRet0; + $373 = (_bitshift64Ashr(($371|0),($372|0),21)|0); + $374 = tempRet0; + $375 = (_i64Add(($373|0),($374|0),($335|0),($336|0))|0); + $376 = tempRet0; + $377 = (_bitshift64Shl(($373|0),($374|0),21)|0); + $378 = tempRet0; + $379 = (_i64Subtract(($321|0),($322|0),($377|0),($378|0))|0); + $380 = tempRet0; + $381 = (___muldi3(($331|0),($332|0),666643,0)|0); + $382 = tempRet0; + $383 = (_i64Add(($381|0),($382|0),($33|0),0)|0); + $384 = tempRet0; + $385 = (___muldi3(($331|0),($332|0),470296,0)|0); + $386 = tempRet0; + $387 = (_i64Add(($261|0),($262|0),($385|0),($386|0))|0); + $388 = tempRet0; + $389 = (___muldi3(($331|0),($332|0),654183,0)|0); + $390 = tempRet0; + $391 = (_i64Add(($343|0),($344|0),($389|0),($390|0))|0); + $392 = tempRet0; + $393 = (___muldi3(($331|0),($332|0),-997805,-1)|0); + $394 = tempRet0; + $395 = (___muldi3(($331|0),($332|0),136657,0)|0); + $396 = tempRet0; + $397 = (___muldi3(($331|0),($332|0),-683901,-1)|0); + $398 = tempRet0; + $399 = (_i64Add(($397|0),($398|0),($245|0),($246|0))|0); + $400 = tempRet0; + $401 = (_i64Add(($399|0),($400|0),($347|0),($348|0))|0); + $402 = tempRet0; + $403 = (_i64Subtract(($401|0),($402|0),($297|0),($298|0))|0); + $404 = tempRet0; + $405 = (___muldi3(($375|0),($376|0),666643,0)|0); + $406 = tempRet0; + $407 = (_i64Add(($405|0),($406|0),($27|0),0)|0); + $408 = tempRet0; + $409 = (___muldi3(($375|0),($376|0),470296,0)|0); + $410 = tempRet0; + $411 = (_i64Add(($383|0),($384|0),($409|0),($410|0))|0); + $412 = tempRet0; + $413 = (___muldi3(($375|0),($376|0),654183,0)|0); + $414 = tempRet0; + $415 = (_i64Add(($387|0),($388|0),($413|0),($414|0))|0); + $416 = tempRet0; + $417 = (___muldi3(($375|0),($376|0),-997805,-1)|0); + $418 = tempRet0; + $419 = (_i64Add(($391|0),($392|0),($417|0),($418|0))|0); + $420 = tempRet0; + $421 = (___muldi3(($375|0),($376|0),136657,0)|0); + $422 = tempRet0; + $423 = (___muldi3(($375|0),($376|0),-683901,-1)|0); + $424 = tempRet0; + $425 = (___muldi3(($379|0),($380|0),666643,0)|0); + $426 = tempRet0; + $427 = (_i64Add(($425|0),($426|0),($21|0),0)|0); + $428 = tempRet0; + $429 = (___muldi3(($379|0),($380|0),470296,0)|0); + $430 = tempRet0; + $431 = (_i64Add(($407|0),($408|0),($429|0),($430|0))|0); + $432 = tempRet0; + $433 = (___muldi3(($379|0),($380|0),654183,0)|0); + $434 = tempRet0; + $435 = (_i64Add(($411|0),($412|0),($433|0),($434|0))|0); + $436 = tempRet0; + $437 = (___muldi3(($379|0),($380|0),-997805,-1)|0); + $438 = tempRet0; + $439 = (_i64Add(($415|0),($416|0),($437|0),($438|0))|0); + $440 = tempRet0; + $441 = (___muldi3(($379|0),($380|0),136657,0)|0); + $442 = tempRet0; + $443 = (_i64Add(($419|0),($420|0),($441|0),($442|0))|0); + $444 = tempRet0; + $445 = (___muldi3(($379|0),($380|0),-683901,-1)|0); + $446 = tempRet0; + $447 = (_i64Add(($339|0),($340|0),($231|0),($232|0))|0); + $448 = tempRet0; + $449 = (_i64Subtract(($447|0),($448|0),($277|0),($278|0))|0); + $450 = tempRet0; + $451 = (_i64Add(($449|0),($450|0),($393|0),($394|0))|0); + $452 = tempRet0; + $453 = (_i64Add(($451|0),($452|0),($421|0),($422|0))|0); + $454 = tempRet0; + $455 = (_i64Add(($453|0),($454|0),($445|0),($446|0))|0); + $456 = tempRet0; + $457 = (___muldi3(($365|0),($366|0),666643,0)|0); + $458 = tempRet0; + $459 = (_i64Add(($457|0),($458|0),($15|0),0)|0); + $460 = tempRet0; + $461 = (___muldi3(($365|0),($366|0),470296,0)|0); + $462 = tempRet0; + $463 = (_i64Add(($427|0),($428|0),($461|0),($462|0))|0); + $464 = tempRet0; + $465 = (___muldi3(($365|0),($366|0),654183,0)|0); + $466 = tempRet0; + $467 = (_i64Add(($431|0),($432|0),($465|0),($466|0))|0); + $468 = tempRet0; + $469 = (___muldi3(($365|0),($366|0),-997805,-1)|0); + $470 = tempRet0; + $471 = (_i64Add(($435|0),($436|0),($469|0),($470|0))|0); + $472 = tempRet0; + $473 = (___muldi3(($365|0),($366|0),136657,0)|0); + $474 = tempRet0; + $475 = (_i64Add(($439|0),($440|0),($473|0),($474|0))|0); + $476 = tempRet0; + $477 = (___muldi3(($365|0),($366|0),-683901,-1)|0); + $478 = tempRet0; + $479 = (_i64Add(($443|0),($444|0),($477|0),($478|0))|0); + $480 = tempRet0; + $481 = (___muldi3(($369|0),($370|0),666643,0)|0); + $482 = tempRet0; + $483 = (___muldi3(($369|0),($370|0),470296,0)|0); + $484 = tempRet0; + $485 = (___muldi3(($369|0),($370|0),654183,0)|0); + $486 = tempRet0; + $487 = (___muldi3(($369|0),($370|0),-997805,-1)|0); + $488 = tempRet0; + $489 = (___muldi3(($369|0),($370|0),136657,0)|0); + $490 = tempRet0; + $491 = (___muldi3(($369|0),($370|0),-683901,-1)|0); + $492 = tempRet0; + $493 = (_i64Add(($475|0),($476|0),($491|0),($492|0))|0); + $494 = tempRet0; + $495 = (___muldi3(($355|0),($356|0),666643,0)|0); + $496 = tempRet0; + $497 = (_i64Add(($495|0),($496|0),($3|0),0)|0); + $498 = tempRet0; + $499 = (___muldi3(($355|0),($356|0),470296,0)|0); + $500 = tempRet0; + $501 = (___muldi3(($355|0),($356|0),654183,0)|0); + $502 = tempRet0; + $503 = (_i64Add(($459|0),($460|0),($501|0),($502|0))|0); + $504 = tempRet0; + $505 = (_i64Add(($503|0),($504|0),($483|0),($484|0))|0); + $506 = tempRet0; + $507 = (___muldi3(($355|0),($356|0),-997805,-1)|0); + $508 = tempRet0; + $509 = (___muldi3(($355|0),($356|0),136657,0)|0); + $510 = tempRet0; + $511 = (_i64Add(($467|0),($468|0),($509|0),($510|0))|0); + $512 = tempRet0; + $513 = (_i64Add(($511|0),($512|0),($487|0),($488|0))|0); + $514 = tempRet0; + $515 = (___muldi3(($355|0),($356|0),-683901,-1)|0); + $516 = tempRet0; + $517 = (_i64Add(($497|0),($498|0),1048576,0)|0); + $518 = tempRet0; + $519 = (_bitshift64Ashr(($517|0),($518|0),21)|0); + $520 = tempRet0; + $521 = (_i64Add(($499|0),($500|0),($9|0),0)|0); + $522 = tempRet0; + $523 = (_i64Add(($521|0),($522|0),($481|0),($482|0))|0); + $524 = tempRet0; + $525 = (_i64Add(($523|0),($524|0),($519|0),($520|0))|0); + $526 = tempRet0; + $527 = (_bitshift64Shl(($519|0),($520|0),21)|0); + $528 = tempRet0; + $529 = (_i64Subtract(($497|0),($498|0),($527|0),($528|0))|0); + $530 = tempRet0; + $531 = (_i64Add(($505|0),($506|0),1048576,0)|0); + $532 = tempRet0; + $533 = (_bitshift64Ashr(($531|0),($532|0),21)|0); + $534 = tempRet0; + $535 = (_i64Add(($463|0),($464|0),($507|0),($508|0))|0); + $536 = tempRet0; + $537 = (_i64Add(($535|0),($536|0),($485|0),($486|0))|0); + $538 = tempRet0; + $539 = (_i64Add(($537|0),($538|0),($533|0),($534|0))|0); + $540 = tempRet0; + $541 = (_bitshift64Shl(($533|0),($534|0),21)|0); + $542 = tempRet0; + $543 = (_i64Add(($513|0),($514|0),1048576,0)|0); + $544 = tempRet0; + $545 = (_bitshift64Ashr(($543|0),($544|0),21)|0); + $546 = tempRet0; + $547 = (_i64Add(($471|0),($472|0),($515|0),($516|0))|0); + $548 = tempRet0; + $549 = (_i64Add(($547|0),($548|0),($489|0),($490|0))|0); + $550 = tempRet0; + $551 = (_i64Add(($549|0),($550|0),($545|0),($546|0))|0); + $552 = tempRet0; + $553 = (_bitshift64Shl(($545|0),($546|0),21)|0); + $554 = tempRet0; + $555 = (_i64Add(($493|0),($494|0),1048576,0)|0); + $556 = tempRet0; + $557 = (_bitshift64Ashr(($555|0),($556|0),21)|0); + $558 = tempRet0; + $559 = (_i64Add(($479|0),($480|0),($557|0),($558|0))|0); + $560 = tempRet0; + $561 = (_bitshift64Shl(($557|0),($558|0),21)|0); + $562 = tempRet0; + $563 = (_i64Subtract(($493|0),($494|0),($561|0),($562|0))|0); + $564 = tempRet0; + $565 = (_i64Add(($455|0),($456|0),1048576,0)|0); + $566 = tempRet0; + $567 = (_bitshift64Ashr(($565|0),($566|0),21)|0); + $568 = tempRet0; + $569 = (_i64Add(($395|0),($396|0),($275|0),($276|0))|0); + $570 = tempRet0; + $571 = (_i64Subtract(($569|0),($570|0),($349|0),($350|0))|0); + $572 = tempRet0; + $573 = (_i64Add(($571|0),($572|0),($423|0),($424|0))|0); + $574 = tempRet0; + $575 = (_i64Add(($573|0),($574|0),($567|0),($568|0))|0); + $576 = tempRet0; + $577 = (_bitshift64Shl(($567|0),($568|0),21)|0); + $578 = tempRet0; + $579 = (_i64Subtract(($455|0),($456|0),($577|0),($578|0))|0); + $580 = tempRet0; + $581 = (_i64Add(($403|0),($404|0),1048576,0)|0); + $582 = tempRet0; + $583 = (_bitshift64Ashr(($581|0),($582|0),21)|0); + $584 = tempRet0; + $585 = (_i64Add(($583|0),($584|0),($359|0),($360|0))|0); + $586 = tempRet0; + $587 = (_bitshift64Shl(($583|0),($584|0),21)|0); + $588 = tempRet0; + $589 = (_i64Subtract(($403|0),($404|0),($587|0),($588|0))|0); + $590 = tempRet0; + $591 = (_i64Add(($525|0),($526|0),1048576,0)|0); + $592 = tempRet0; + $593 = (_bitshift64Ashr(($591|0),($592|0),21)|0); + $594 = tempRet0; + $595 = (_bitshift64Shl(($593|0),($594|0),21)|0); + $596 = tempRet0; + $597 = (_i64Add(($539|0),($540|0),1048576,0)|0); + $598 = tempRet0; + $599 = (_bitshift64Ashr(($597|0),($598|0),21)|0); + $600 = tempRet0; + $601 = (_bitshift64Shl(($599|0),($600|0),21)|0); + $602 = tempRet0; + $603 = (_i64Add(($551|0),($552|0),1048576,0)|0); + $604 = tempRet0; + $605 = (_bitshift64Ashr(($603|0),($604|0),21)|0); + $606 = tempRet0; + $607 = (_i64Add(($563|0),($564|0),($605|0),($606|0))|0); + $608 = tempRet0; + $609 = (_bitshift64Shl(($605|0),($606|0),21)|0); + $610 = tempRet0; + $611 = (_i64Add(($559|0),($560|0),1048576,0)|0); + $612 = tempRet0; + $613 = (_bitshift64Ashr(($611|0),($612|0),21)|0); + $614 = tempRet0; + $615 = (_i64Add(($579|0),($580|0),($613|0),($614|0))|0); + $616 = tempRet0; + $617 = (_bitshift64Shl(($613|0),($614|0),21)|0); + $618 = tempRet0; + $619 = (_i64Subtract(($559|0),($560|0),($617|0),($618|0))|0); + $620 = tempRet0; + $621 = (_i64Add(($575|0),($576|0),1048576,0)|0); + $622 = tempRet0; + $623 = (_bitshift64Ashr(($621|0),($622|0),21)|0); + $624 = tempRet0; + $625 = (_i64Add(($589|0),($590|0),($623|0),($624|0))|0); + $626 = tempRet0; + $627 = (_bitshift64Shl(($623|0),($624|0),21)|0); + $628 = tempRet0; + $629 = (_i64Subtract(($575|0),($576|0),($627|0),($628|0))|0); + $630 = tempRet0; + $631 = (_i64Add(($585|0),($586|0),1048576,0)|0); + $632 = tempRet0; + $633 = (_bitshift64Ashr(($631|0),($632|0),21)|0); + $634 = tempRet0; + $635 = (_bitshift64Shl(($633|0),($634|0),21)|0); + $636 = tempRet0; + $637 = (_i64Subtract(($585|0),($586|0),($635|0),($636|0))|0); + $638 = tempRet0; + $639 = (___muldi3(($633|0),($634|0),666643,0)|0); + $640 = tempRet0; + $641 = (_i64Add(($529|0),($530|0),($639|0),($640|0))|0); + $642 = tempRet0; + $643 = (___muldi3(($633|0),($634|0),470296,0)|0); + $644 = tempRet0; + $645 = (___muldi3(($633|0),($634|0),654183,0)|0); + $646 = tempRet0; + $647 = (___muldi3(($633|0),($634|0),-997805,-1)|0); + $648 = tempRet0; + $649 = (___muldi3(($633|0),($634|0),136657,0)|0); + $650 = tempRet0; + $651 = (___muldi3(($633|0),($634|0),-683901,-1)|0); + $652 = tempRet0; + $653 = (_bitshift64Ashr(($641|0),($642|0),21)|0); + $654 = tempRet0; + $655 = (_i64Add(($643|0),($644|0),($525|0),($526|0))|0); + $656 = tempRet0; + $657 = (_i64Subtract(($655|0),($656|0),($595|0),($596|0))|0); + $658 = tempRet0; + $659 = (_i64Add(($657|0),($658|0),($653|0),($654|0))|0); + $660 = tempRet0; + $661 = (_bitshift64Shl(($653|0),($654|0),21)|0); + $662 = tempRet0; + $663 = (_i64Subtract(($641|0),($642|0),($661|0),($662|0))|0); + $664 = tempRet0; + $665 = (_bitshift64Ashr(($659|0),($660|0),21)|0); + $666 = tempRet0; + $667 = (_i64Add(($645|0),($646|0),($505|0),($506|0))|0); + $668 = tempRet0; + $669 = (_i64Subtract(($667|0),($668|0),($541|0),($542|0))|0); + $670 = tempRet0; + $671 = (_i64Add(($669|0),($670|0),($593|0),($594|0))|0); + $672 = tempRet0; + $673 = (_i64Add(($671|0),($672|0),($665|0),($666|0))|0); + $674 = tempRet0; + $675 = (_bitshift64Shl(($665|0),($666|0),21)|0); + $676 = tempRet0; + $677 = (_i64Subtract(($659|0),($660|0),($675|0),($676|0))|0); + $678 = tempRet0; + $679 = (_bitshift64Ashr(($673|0),($674|0),21)|0); + $680 = tempRet0; + $681 = (_i64Add(($539|0),($540|0),($647|0),($648|0))|0); + $682 = tempRet0; + $683 = (_i64Subtract(($681|0),($682|0),($601|0),($602|0))|0); + $684 = tempRet0; + $685 = (_i64Add(($683|0),($684|0),($679|0),($680|0))|0); + $686 = tempRet0; + $687 = (_bitshift64Shl(($679|0),($680|0),21)|0); + $688 = tempRet0; + $689 = (_i64Subtract(($673|0),($674|0),($687|0),($688|0))|0); + $690 = tempRet0; + $691 = (_bitshift64Ashr(($685|0),($686|0),21)|0); + $692 = tempRet0; + $693 = (_i64Add(($649|0),($650|0),($513|0),($514|0))|0); + $694 = tempRet0; + $695 = (_i64Subtract(($693|0),($694|0),($553|0),($554|0))|0); + $696 = tempRet0; + $697 = (_i64Add(($695|0),($696|0),($599|0),($600|0))|0); + $698 = tempRet0; + $699 = (_i64Add(($697|0),($698|0),($691|0),($692|0))|0); + $700 = tempRet0; + $701 = (_bitshift64Shl(($691|0),($692|0),21)|0); + $702 = tempRet0; + $703 = (_i64Subtract(($685|0),($686|0),($701|0),($702|0))|0); + $704 = tempRet0; + $705 = (_bitshift64Ashr(($699|0),($700|0),21)|0); + $706 = tempRet0; + $707 = (_i64Add(($551|0),($552|0),($651|0),($652|0))|0); + $708 = tempRet0; + $709 = (_i64Subtract(($707|0),($708|0),($609|0),($610|0))|0); + $710 = tempRet0; + $711 = (_i64Add(($709|0),($710|0),($705|0),($706|0))|0); + $712 = tempRet0; + $713 = (_bitshift64Shl(($705|0),($706|0),21)|0); + $714 = tempRet0; + $715 = (_i64Subtract(($699|0),($700|0),($713|0),($714|0))|0); + $716 = tempRet0; + $717 = (_bitshift64Ashr(($711|0),($712|0),21)|0); + $718 = tempRet0; + $719 = (_i64Add(($607|0),($608|0),($717|0),($718|0))|0); + $720 = tempRet0; + $721 = (_bitshift64Shl(($717|0),($718|0),21)|0); + $722 = tempRet0; + $723 = (_i64Subtract(($711|0),($712|0),($721|0),($722|0))|0); + $724 = tempRet0; + $725 = (_bitshift64Ashr(($719|0),($720|0),21)|0); + $726 = tempRet0; + $727 = (_i64Add(($725|0),($726|0),($619|0),($620|0))|0); + $728 = tempRet0; + $729 = (_bitshift64Shl(($725|0),($726|0),21)|0); + $730 = tempRet0; + $731 = (_i64Subtract(($719|0),($720|0),($729|0),($730|0))|0); + $732 = tempRet0; + $733 = (_bitshift64Ashr(($727|0),($728|0),21)|0); + $734 = tempRet0; + $735 = (_i64Add(($615|0),($616|0),($733|0),($734|0))|0); + $736 = tempRet0; + $737 = (_bitshift64Shl(($733|0),($734|0),21)|0); + $738 = tempRet0; + $739 = (_i64Subtract(($727|0),($728|0),($737|0),($738|0))|0); + $740 = tempRet0; + $741 = (_bitshift64Ashr(($735|0),($736|0),21)|0); + $742 = tempRet0; + $743 = (_i64Add(($741|0),($742|0),($629|0),($630|0))|0); + $744 = tempRet0; + $745 = (_bitshift64Shl(($741|0),($742|0),21)|0); + $746 = tempRet0; + $747 = (_i64Subtract(($735|0),($736|0),($745|0),($746|0))|0); + $748 = tempRet0; + $749 = (_bitshift64Ashr(($743|0),($744|0),21)|0); + $750 = tempRet0; + $751 = (_i64Add(($625|0),($626|0),($749|0),($750|0))|0); + $752 = tempRet0; + $753 = (_bitshift64Shl(($749|0),($750|0),21)|0); + $754 = tempRet0; + $755 = (_i64Subtract(($743|0),($744|0),($753|0),($754|0))|0); + $756 = tempRet0; + $757 = (_bitshift64Ashr(($751|0),($752|0),21)|0); + $758 = tempRet0; + $759 = (_i64Add(($757|0),($758|0),($637|0),($638|0))|0); + $760 = tempRet0; + $761 = (_bitshift64Shl(($757|0),($758|0),21)|0); + $762 = tempRet0; + $763 = (_i64Subtract(($751|0),($752|0),($761|0),($762|0))|0); + $764 = tempRet0; + $765 = (_bitshift64Ashr(($759|0),($760|0),21)|0); + $766 = tempRet0; + $767 = (_bitshift64Shl(($765|0),($766|0),21)|0); + $768 = tempRet0; + $769 = (_i64Subtract(($759|0),($760|0),($767|0),($768|0))|0); + $770 = tempRet0; + $771 = (___muldi3(($765|0),($766|0),666643,0)|0); + $772 = tempRet0; + $773 = (_i64Add(($771|0),($772|0),($663|0),($664|0))|0); + $774 = tempRet0; + $775 = (___muldi3(($765|0),($766|0),470296,0)|0); + $776 = tempRet0; + $777 = (_i64Add(($677|0),($678|0),($775|0),($776|0))|0); + $778 = tempRet0; + $779 = (___muldi3(($765|0),($766|0),654183,0)|0); + $780 = tempRet0; + $781 = (_i64Add(($689|0),($690|0),($779|0),($780|0))|0); + $782 = tempRet0; + $783 = (___muldi3(($765|0),($766|0),-997805,-1)|0); + $784 = tempRet0; + $785 = (_i64Add(($703|0),($704|0),($783|0),($784|0))|0); + $786 = tempRet0; + $787 = (___muldi3(($765|0),($766|0),136657,0)|0); + $788 = tempRet0; + $789 = (_i64Add(($715|0),($716|0),($787|0),($788|0))|0); + $790 = tempRet0; + $791 = (___muldi3(($765|0),($766|0),-683901,-1)|0); + $792 = tempRet0; + $793 = (_i64Add(($723|0),($724|0),($791|0),($792|0))|0); + $794 = tempRet0; + $795 = (_bitshift64Ashr(($773|0),($774|0),21)|0); + $796 = tempRet0; + $797 = (_i64Add(($777|0),($778|0),($795|0),($796|0))|0); + $798 = tempRet0; + $799 = (_bitshift64Shl(($795|0),($796|0),21)|0); + $800 = tempRet0; + $801 = (_i64Subtract(($773|0),($774|0),($799|0),($800|0))|0); + $802 = tempRet0; + $803 = (_bitshift64Ashr(($797|0),($798|0),21)|0); + $804 = tempRet0; + $805 = (_i64Add(($781|0),($782|0),($803|0),($804|0))|0); + $806 = tempRet0; + $807 = (_bitshift64Shl(($803|0),($804|0),21)|0); + $808 = tempRet0; + $809 = (_i64Subtract(($797|0),($798|0),($807|0),($808|0))|0); + $810 = tempRet0; + $811 = (_bitshift64Ashr(($805|0),($806|0),21)|0); + $812 = tempRet0; + $813 = (_i64Add(($785|0),($786|0),($811|0),($812|0))|0); + $814 = tempRet0; + $815 = (_bitshift64Shl(($811|0),($812|0),21)|0); + $816 = tempRet0; + $817 = (_i64Subtract(($805|0),($806|0),($815|0),($816|0))|0); + $818 = tempRet0; + $819 = (_bitshift64Ashr(($813|0),($814|0),21)|0); + $820 = tempRet0; + $821 = (_i64Add(($789|0),($790|0),($819|0),($820|0))|0); + $822 = tempRet0; + $823 = (_bitshift64Shl(($819|0),($820|0),21)|0); + $824 = tempRet0; + $825 = (_i64Subtract(($813|0),($814|0),($823|0),($824|0))|0); + $826 = tempRet0; + $827 = (_bitshift64Ashr(($821|0),($822|0),21)|0); + $828 = tempRet0; + $829 = (_i64Add(($793|0),($794|0),($827|0),($828|0))|0); + $830 = tempRet0; + $831 = (_bitshift64Shl(($827|0),($828|0),21)|0); + $832 = tempRet0; + $833 = (_i64Subtract(($821|0),($822|0),($831|0),($832|0))|0); + $834 = tempRet0; + $835 = (_bitshift64Ashr(($829|0),($830|0),21)|0); + $836 = tempRet0; + $837 = (_i64Add(($835|0),($836|0),($731|0),($732|0))|0); + $838 = tempRet0; + $839 = (_bitshift64Shl(($835|0),($836|0),21)|0); + $840 = tempRet0; + $841 = (_i64Subtract(($829|0),($830|0),($839|0),($840|0))|0); + $842 = tempRet0; + $843 = (_bitshift64Ashr(($837|0),($838|0),21)|0); + $844 = tempRet0; + $845 = (_i64Add(($843|0),($844|0),($739|0),($740|0))|0); + $846 = tempRet0; + $847 = (_bitshift64Shl(($843|0),($844|0),21)|0); + $848 = tempRet0; + $849 = (_i64Subtract(($837|0),($838|0),($847|0),($848|0))|0); + $850 = tempRet0; + $851 = (_bitshift64Ashr(($845|0),($846|0),21)|0); + $852 = tempRet0; + $853 = (_i64Add(($851|0),($852|0),($747|0),($748|0))|0); + $854 = tempRet0; + $855 = (_bitshift64Shl(($851|0),($852|0),21)|0); + $856 = tempRet0; + $857 = (_i64Subtract(($845|0),($846|0),($855|0),($856|0))|0); + $858 = tempRet0; + $859 = (_bitshift64Ashr(($853|0),($854|0),21)|0); + $860 = tempRet0; + $861 = (_i64Add(($859|0),($860|0),($755|0),($756|0))|0); + $862 = tempRet0; + $863 = (_bitshift64Shl(($859|0),($860|0),21)|0); + $864 = tempRet0; + $865 = (_i64Subtract(($853|0),($854|0),($863|0),($864|0))|0); + $866 = tempRet0; + $867 = (_bitshift64Ashr(($861|0),($862|0),21)|0); + $868 = tempRet0; + $869 = (_i64Add(($867|0),($868|0),($763|0),($764|0))|0); + $870 = tempRet0; + $871 = (_bitshift64Shl(($867|0),($868|0),21)|0); + $872 = tempRet0; + $873 = (_i64Subtract(($861|0),($862|0),($871|0),($872|0))|0); + $874 = tempRet0; + $875 = (_bitshift64Ashr(($869|0),($870|0),21)|0); + $876 = tempRet0; + $877 = (_i64Add(($875|0),($876|0),($769|0),($770|0))|0); + $878 = tempRet0; + $879 = (_bitshift64Shl(($875|0),($876|0),21)|0); + $880 = tempRet0; + $881 = (_i64Subtract(($869|0),($870|0),($879|0),($880|0))|0); + $882 = tempRet0; + $883 = $801&255; + HEAP8[$0>>0] = $883; + $884 = (_bitshift64Lshr(($801|0),($802|0),8)|0); + $885 = tempRet0; + $886 = $884&255; + $887 = ((($0)) + 1|0); + HEAP8[$887>>0] = $886; + $888 = (_bitshift64Lshr(($801|0),($802|0),16)|0); + $889 = tempRet0; + $890 = (_bitshift64Shl(($809|0),($810|0),5)|0); + $891 = tempRet0; + $892 = $890 | $888; + $891 | $889; + $893 = $892&255; + HEAP8[$4>>0] = $893; + $894 = (_bitshift64Lshr(($809|0),($810|0),3)|0); + $895 = tempRet0; + $896 = $894&255; + $897 = ((($0)) + 3|0); + HEAP8[$897>>0] = $896; + $898 = (_bitshift64Lshr(($809|0),($810|0),11)|0); + $899 = tempRet0; + $900 = $898&255; + $901 = ((($0)) + 4|0); + HEAP8[$901>>0] = $900; + $902 = (_bitshift64Lshr(($809|0),($810|0),19)|0); + $903 = tempRet0; + $904 = (_bitshift64Shl(($817|0),($818|0),2)|0); + $905 = tempRet0; + $906 = $904 | $902; + $905 | $903; + $907 = $906&255; + HEAP8[$10>>0] = $907; + $908 = (_bitshift64Lshr(($817|0),($818|0),6)|0); + $909 = tempRet0; + $910 = $908&255; + $911 = ((($0)) + 6|0); + HEAP8[$911>>0] = $910; + $912 = (_bitshift64Lshr(($817|0),($818|0),14)|0); + $913 = tempRet0; + $914 = (_bitshift64Shl(($825|0),($826|0),7)|0); + $915 = tempRet0; + $916 = $914 | $912; + $915 | $913; + $917 = $916&255; + HEAP8[$16>>0] = $917; + $918 = (_bitshift64Lshr(($825|0),($826|0),1)|0); + $919 = tempRet0; + $920 = $918&255; + $921 = ((($0)) + 8|0); + HEAP8[$921>>0] = $920; + $922 = (_bitshift64Lshr(($825|0),($826|0),9)|0); + $923 = tempRet0; + $924 = $922&255; + $925 = ((($0)) + 9|0); + HEAP8[$925>>0] = $924; + $926 = (_bitshift64Lshr(($825|0),($826|0),17)|0); + $927 = tempRet0; + $928 = (_bitshift64Shl(($833|0),($834|0),4)|0); + $929 = tempRet0; + $930 = $928 | $926; + $929 | $927; + $931 = $930&255; + HEAP8[$22>>0] = $931; + $932 = (_bitshift64Lshr(($833|0),($834|0),4)|0); + $933 = tempRet0; + $934 = $932&255; + $935 = ((($0)) + 11|0); + HEAP8[$935>>0] = $934; + $936 = (_bitshift64Lshr(($833|0),($834|0),12)|0); + $937 = tempRet0; + $938 = $936&255; + $939 = ((($0)) + 12|0); + HEAP8[$939>>0] = $938; + $940 = (_bitshift64Lshr(($833|0),($834|0),20)|0); + $941 = tempRet0; + $942 = (_bitshift64Shl(($841|0),($842|0),1)|0); + $943 = tempRet0; + $944 = $942 | $940; + $943 | $941; + $945 = $944&255; + HEAP8[$28>>0] = $945; + $946 = (_bitshift64Lshr(($841|0),($842|0),7)|0); + $947 = tempRet0; + $948 = $946&255; + $949 = ((($0)) + 14|0); + HEAP8[$949>>0] = $948; + $950 = (_bitshift64Lshr(($841|0),($842|0),15)|0); + $951 = tempRet0; + $952 = (_bitshift64Shl(($849|0),($850|0),6)|0); + $953 = tempRet0; + $954 = $952 | $950; + $953 | $951; + $955 = $954&255; + HEAP8[$34>>0] = $955; + $956 = (_bitshift64Lshr(($849|0),($850|0),2)|0); + $957 = tempRet0; + $958 = $956&255; + $959 = ((($0)) + 16|0); + HEAP8[$959>>0] = $958; + $960 = (_bitshift64Lshr(($849|0),($850|0),10)|0); + $961 = tempRet0; + $962 = $960&255; + $963 = ((($0)) + 17|0); + HEAP8[$963>>0] = $962; + $964 = (_bitshift64Lshr(($849|0),($850|0),18)|0); + $965 = tempRet0; + $966 = (_bitshift64Shl(($857|0),($858|0),3)|0); + $967 = tempRet0; + $968 = $966 | $964; + $967 | $965; + $969 = $968&255; + HEAP8[$40>>0] = $969; + $970 = (_bitshift64Lshr(($857|0),($858|0),5)|0); + $971 = tempRet0; + $972 = $970&255; + $973 = ((($0)) + 19|0); + HEAP8[$973>>0] = $972; + $974 = (_bitshift64Lshr(($857|0),($858|0),13)|0); + $975 = tempRet0; + $976 = $974&255; + $977 = ((($0)) + 20|0); + HEAP8[$977>>0] = $976; + $978 = $865&255; + HEAP8[$46>>0] = $978; + $979 = (_bitshift64Lshr(($865|0),($866|0),8)|0); + $980 = tempRet0; + $981 = $979&255; + $982 = ((($0)) + 22|0); + HEAP8[$982>>0] = $981; + $983 = (_bitshift64Lshr(($865|0),($866|0),16)|0); + $984 = tempRet0; + $985 = (_bitshift64Shl(($873|0),($874|0),5)|0); + $986 = tempRet0; + $987 = $985 | $983; + $986 | $984; + $988 = $987&255; + HEAP8[$50>>0] = $988; + $989 = (_bitshift64Lshr(($873|0),($874|0),3)|0); + $990 = tempRet0; + $991 = $989&255; + $992 = ((($0)) + 24|0); + HEAP8[$992>>0] = $991; + $993 = (_bitshift64Lshr(($873|0),($874|0),11)|0); + $994 = tempRet0; + $995 = $993&255; + $996 = ((($0)) + 25|0); + HEAP8[$996>>0] = $995; + $997 = (_bitshift64Lshr(($873|0),($874|0),19)|0); + $998 = tempRet0; + $999 = (_bitshift64Shl(($881|0),($882|0),2)|0); + $1000 = tempRet0; + $1001 = $999 | $997; + $1000 | $998; + $1002 = $1001&255; + HEAP8[$56>>0] = $1002; + $1003 = (_bitshift64Lshr(($881|0),($882|0),6)|0); + $1004 = tempRet0; + $1005 = $1003&255; + $1006 = ((($0)) + 27|0); + HEAP8[$1006>>0] = $1005; + $1007 = (_bitshift64Lshr(($881|0),($882|0),14)|0); + $1008 = tempRet0; + $1009 = (_bitshift64Shl(($877|0),($878|0),7)|0); + $1010 = tempRet0; + $1011 = $1007 | $1009; + $1008 | $1010; + $1012 = $1011&255; + HEAP8[$62>>0] = $1012; + $1013 = (_bitshift64Lshr(($877|0),($878|0),1)|0); + $1014 = tempRet0; + $1015 = $1013&255; + $1016 = ((($0)) + 29|0); + HEAP8[$1016>>0] = $1015; + $1017 = (_bitshift64Lshr(($877|0),($878|0),9)|0); + $1018 = tempRet0; + $1019 = $1017&255; + $1020 = ((($0)) + 30|0); + HEAP8[$1020>>0] = $1019; + $1021 = (_bitshift64Lshr(($877|0),($878|0),17)|0); + $1022 = tempRet0; + $1023 = $1021&255; + HEAP8[$68>>0] = $1023; return; } -function _load_351($in) { - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; +function _load_3_51($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP8[$in>>0]|0; - $1 = $0&255; - $2 = ((($in)) + 1|0); - $3 = HEAP8[$2>>0]|0; - $4 = $3&255; - $5 = (_bitshift64Shl(($4|0),0,8)|0); - $6 = tempRet0; - $7 = $5 | $1; - $8 = ((($in)) + 2|0); - $9 = HEAP8[$8>>0]|0; - $10 = $9&255; - $11 = (_bitshift64Shl(($10|0),0,16)|0); - $12 = tempRet0; - $13 = $7 | $11; - $14 = $6 | $12; - tempRet0 = ($14); - return ($13|0); + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = ((($0)) + 1|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = (_bitshift64Shl(($5|0),0,8)|0); + $7 = tempRet0; + $8 = $6 | $2; + $9 = ((($0)) + 2|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = (_bitshift64Shl(($11|0),0,16)|0); + $13 = tempRet0; + $14 = $8 | $12; + $15 = $7 | $13; + tempRet0 = ($15); + return ($14|0); } -function _load_452($in) { - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; +function _load_4_52($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; var $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP8[$in>>0]|0; - $1 = $0&255; - $2 = ((($in)) + 1|0); - $3 = HEAP8[$2>>0]|0; - $4 = $3&255; - $5 = (_bitshift64Shl(($4|0),0,8)|0); - $6 = tempRet0; - $7 = $5 | $1; - $8 = ((($in)) + 2|0); - $9 = HEAP8[$8>>0]|0; - $10 = $9&255; - $11 = (_bitshift64Shl(($10|0),0,16)|0); - $12 = tempRet0; - $13 = $7 | $11; - $14 = $6 | $12; - $15 = ((($in)) + 3|0); - $16 = HEAP8[$15>>0]|0; - $17 = $16&255; - $18 = (_bitshift64Shl(($17|0),0,24)|0); - $19 = tempRet0; - $20 = $13 | $18; + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = ((($0)) + 1|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = (_bitshift64Shl(($5|0),0,8)|0); + $7 = tempRet0; + $8 = $6 | $2; + $9 = ((($0)) + 2|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = (_bitshift64Shl(($11|0),0,16)|0); + $13 = tempRet0; + $14 = $8 | $12; + $15 = $7 | $13; + $16 = ((($0)) + 3|0); + $17 = HEAP8[$16>>0]|0; + $18 = $17&255; + $19 = (_bitshift64Shl(($18|0),0,24)|0); + $20 = tempRet0; $21 = $14 | $19; - tempRet0 = ($21); - return ($20|0); + $22 = $15 | $20; + tempRet0 = ($22); + return ($21|0); } -function _sph_sha512_init($cc) { - $cc = $cc|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; +function _sph_sha512_init($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; sp = STACKTOP; - $0 = ((($cc)) + 128|0); - dest=$0; src=8; stop=dest+64|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - $1 = ((($cc)) + 192|0); - $2 = $1; + $1 = ((($0)) + 128|0); + dest=$1; src=8; stop=dest+64|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + $2 = ((($0)) + 192|0); $3 = $2; - HEAP32[$3>>2] = 0; - $4 = (($2) + 4)|0; - $5 = $4; - HEAP32[$5>>2] = 0; + $4 = $3; + HEAP32[$4>>2] = 0; + $5 = (($3) + 4)|0; + $6 = $5; + HEAP32[$6>>2] = 0; return; } -function _sph_sha384($cc,$data,$len) { - $cc = $cc|0; - $data = $data|0; - $len = $len|0; - var $$01$ = 0, $$012 = 0, $$03 = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0; - var $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $current$04 = 0, $current$1 = 0, label = 0, sp = 0; +function _sph_sha384($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $$02631 = 0, $$02730 = 0, $$028$ = 0, $$02829 = 0, $$1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0; + var $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = ((($cc)) + 192|0); - $1 = ($len|0)==(0); - if ($1) { + $3 = ((($0)) + 192|0); + $4 = ($2|0)==(0); + if ($4) { return; } - $2 = $0; - $3 = $2; - $4 = HEAP32[$3>>2]|0; - $5 = (($2) + 4)|0; + $5 = $3; $6 = $5; $7 = HEAP32[$6>>2]|0; - $8 = $4 & 127; - $9 = ((($cc)) + 128|0); - $$012 = $len;$$03 = $data;$current$04 = $8; + $8 = (($5) + 4)|0; + $9 = $8; + $10 = HEAP32[$9>>2]|0; + $11 = $7 & 127; + $12 = ((($0)) + 128|0); + $$02631 = $11;$$02730 = $1;$$02829 = $2; while(1) { - $10 = (128 - ($current$04))|0; - $11 = ($10>>>0)>($$012>>>0); - $$01$ = $11 ? $$012 : $10; - $12 = (($cc) + ($current$04)|0); - _memcpy(($12|0),($$03|0),($$01$|0))|0; - $13 = (($$03) + ($$01$)|0); - $14 = (($$01$) + ($current$04))|0; - $15 = (($$012) - ($$01$))|0; - $16 = ($14|0)==(128); - if ($16) { - _sha3_round($cc,$9); - $current$1 = 0; + $13 = (128 - ($$02631))|0; + $14 = ($13>>>0)>($$02829>>>0); + $$028$ = $14 ? $$02829 : $13; + $15 = (($0) + ($$02631)|0); + _memcpy(($15|0),($$02730|0),($$028$|0))|0; + $16 = (($$02730) + ($$028$)|0); + $17 = (($$028$) + ($$02631))|0; + $18 = (($$02829) - ($$028$))|0; + $19 = ($17|0)==(128); + if ($19) { + _sha3_round($0,$12); + $$1 = 0; } else { - $current$1 = $14; + $$1 = $17; } - $17 = $0; - $18 = $17; - $19 = HEAP32[$18>>2]|0; - $20 = (($17) + 4)|0; + $20 = $3; $21 = $20; $22 = HEAP32[$21>>2]|0; - $23 = (_i64Add(($19|0),($22|0),($$01$|0),0)|0); - $24 = tempRet0; - $25 = $0; - $26 = $25; - HEAP32[$26>>2] = $23; - $27 = (($25) + 4)|0; - $28 = $27; - HEAP32[$28>>2] = $24; - $29 = ($$012|0)==($$01$|0); - if ($29) { + $23 = (($20) + 4)|0; + $24 = $23; + $25 = HEAP32[$24>>2]|0; + $26 = (_i64Add(($22|0),($25|0),($$028$|0),0)|0); + $27 = tempRet0; + $28 = $3; + $29 = $28; + HEAP32[$29>>2] = $26; + $30 = (($28) + 4)|0; + $31 = $30; + HEAP32[$31>>2] = $27; + $32 = ($18|0)==(0); + if ($32) { break; } else { - $$012 = $15;$$03 = $13;$current$04 = $current$1; + $$02631 = $$1;$$02730 = $16;$$02829 = $18; } } return; } -function _sph_sha512_close($cc,$dst) { - $cc = $cc|0; - $dst = $dst|0; - var label = 0, sp = 0; - sp = STACKTOP; - _sha384_close($cc,$dst,8); - _sph_sha512_init($cc); - return; -} -function _sha3_round($data,$r) { - $data = $data|0; - $r = $r|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; - var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; - var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; - var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; - var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; - var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; - var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; - var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; - var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; - var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; - var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; - var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; - var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0; - var $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0; - var $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0; - var $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0; - var $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0; - var $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0; - var $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0; - var $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0; - var $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0; - var $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0; - var $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0; - var $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0; - var $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0; - var $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0; - var $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0; - var $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0; - var $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0; - var $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0; - var $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0; - var $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0; - var $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0; - var $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0; - var $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0; - var $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0; - var $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0; - var $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0; - var $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0; - var $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0; - var $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0; - var $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0; - var $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0; - var $963 = 0, $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $98 = 0, $99 = 0, $W = 0, $exitcond = 0, $exitcond19 = 0, $i$011 = 0, $i$110 = 0, $i$29 = 0, label = 0, sp = 0; +function _sha3_round($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$0344 = 0, $$1343 = 0, $$2342 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0; + var $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0; + var $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0; + var $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0; + var $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0; + var $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0; + var $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0; + var $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0; + var $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0; + var $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0; + var $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0; + var $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0; + var $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0; + var $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0; + var $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0; + var $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0; + var $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0; + var $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0; + var $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0; + var $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0; + var $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0; + var $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0; + var $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0; + var $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0; + var $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0; + var $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0; + var $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0; + var $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0; + var $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0; + var $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0; + var $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0; + var $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0; + var $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0; + var $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0; + var $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0; + var $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0; + var $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0; + var $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0; + var $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0; + var $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0; + var $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0; + var $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0; + var $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0; + var $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0; + var $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0; + var $908 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $exitcond = 0, $exitcond352 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 640|0; - $W = sp; - $i$011 = 0; + $2 = sp; + $$0344 = 0; while(1) { - $0 = $i$011 << 3; - $1 = (($data) + ($0)|0); - $2 = (_sph_dec64be_aligned($1)|0); - $3 = tempRet0; - $4 = (($W) + ($i$011<<3)|0); - $5 = $4; - $6 = $5; - HEAP32[$6>>2] = $2; - $7 = (($5) + 4)|0; + $3 = $$0344 << 3; + $4 = (($0) + ($3)|0); + $5 = (_sph_dec64be_aligned($4)|0); + $6 = tempRet0; + $7 = (($2) + ($$0344<<3)|0); $8 = $7; - HEAP32[$8>>2] = $3; - $9 = (($i$011) + 1)|0; - $exitcond19 = ($9|0)==(16); - if ($exitcond19) { - $i$110 = 16; + $9 = $8; + HEAP32[$9>>2] = $5; + $10 = (($8) + 4)|0; + $11 = $10; + HEAP32[$11>>2] = $6; + $12 = (($$0344) + 1)|0; + $exitcond352 = ($12|0)==(16); + if ($exitcond352) { + $$1343 = 16; break; } else { - $i$011 = $9; + $$0344 = $12; } } while(1) { - $10 = (($i$110) + -2)|0; - $11 = (($W) + ($10<<3)|0); - $12 = $11; - $13 = $12; - $14 = HEAP32[$13>>2]|0; - $15 = (($12) + 4)|0; + $13 = (($$1343) + -2)|0; + $14 = (($2) + ($13<<3)|0); + $15 = $14; $16 = $15; $17 = HEAP32[$16>>2]|0; - $18 = (_bitshift64Shl(($14|0),($17|0),45)|0); - $19 = tempRet0; - $20 = (_bitshift64Lshr(($14|0),($17|0),19)|0); - $21 = tempRet0; - $22 = $18 | $20; - $23 = $19 | $21; - $24 = (_bitshift64Shl(($14|0),($17|0),3)|0); - $25 = tempRet0; - $26 = (_bitshift64Lshr(($14|0),($17|0),61)|0); - $27 = tempRet0; - $28 = $24 | $26; - $29 = $25 | $27; - $30 = (_bitshift64Lshr(($14|0),($17|0),6)|0); - $31 = tempRet0; - $32 = $28 ^ $30; - $33 = $29 ^ $31; - $34 = $32 ^ $22; - $35 = $33 ^ $23; - $36 = (($i$110) + -7)|0; - $37 = (($W) + ($36<<3)|0); - $38 = $37; - $39 = $38; - $40 = HEAP32[$39>>2]|0; - $41 = (($38) + 4)|0; + $18 = (($15) + 4)|0; + $19 = $18; + $20 = HEAP32[$19>>2]|0; + $21 = (_bitshift64Shl(($17|0),($20|0),45)|0); + $22 = tempRet0; + $23 = (_bitshift64Lshr(($17|0),($20|0),19)|0); + $24 = tempRet0; + $25 = $21 | $23; + $26 = $22 | $24; + $27 = (_bitshift64Shl(($17|0),($20|0),3)|0); + $28 = tempRet0; + $29 = (_bitshift64Lshr(($17|0),($20|0),61)|0); + $30 = tempRet0; + $31 = $27 | $29; + $32 = $28 | $30; + $33 = (_bitshift64Lshr(($17|0),($20|0),6)|0); + $34 = tempRet0; + $35 = $31 ^ $33; + $36 = $32 ^ $34; + $37 = $35 ^ $25; + $38 = $36 ^ $26; + $39 = (($$1343) + -7)|0; + $40 = (($2) + ($39<<3)|0); + $41 = $40; $42 = $41; $43 = HEAP32[$42>>2]|0; - $44 = (($i$110) + -15)|0; - $45 = (($W) + ($44<<3)|0); - $46 = $45; - $47 = $46; - $48 = HEAP32[$47>>2]|0; - $49 = (($46) + 4)|0; + $44 = (($41) + 4)|0; + $45 = $44; + $46 = HEAP32[$45>>2]|0; + $47 = (($$1343) + -15)|0; + $48 = (($2) + ($47<<3)|0); + $49 = $48; $50 = $49; $51 = HEAP32[$50>>2]|0; - $52 = (_bitshift64Shl(($48|0),($51|0),63)|0); - $53 = tempRet0; - $54 = (_bitshift64Lshr(($48|0),($51|0),1)|0); - $55 = tempRet0; - $56 = $52 | $54; - $57 = $53 | $55; - $58 = (_bitshift64Shl(($48|0),($51|0),56)|0); - $59 = tempRet0; - $60 = (_bitshift64Lshr(($48|0),($51|0),8)|0); - $61 = tempRet0; - $62 = $58 | $60; - $63 = $59 | $61; - $64 = (_bitshift64Lshr(($48|0),($51|0),7)|0); - $65 = tempRet0; - $66 = $62 ^ $64; - $67 = $63 ^ $65; - $68 = $66 ^ $56; - $69 = $67 ^ $57; - $70 = (($i$110) + -16)|0; - $71 = (($W) + ($70<<3)|0); - $72 = $71; - $73 = $72; - $74 = HEAP32[$73>>2]|0; - $75 = (($72) + 4)|0; + $52 = (($49) + 4)|0; + $53 = $52; + $54 = HEAP32[$53>>2]|0; + $55 = (_bitshift64Shl(($51|0),($54|0),63)|0); + $56 = tempRet0; + $57 = (_bitshift64Lshr(($51|0),($54|0),1)|0); + $58 = tempRet0; + $59 = $55 | $57; + $60 = $56 | $58; + $61 = (_bitshift64Shl(($51|0),($54|0),56)|0); + $62 = tempRet0; + $63 = (_bitshift64Lshr(($51|0),($54|0),8)|0); + $64 = tempRet0; + $65 = $61 | $63; + $66 = $62 | $64; + $67 = (_bitshift64Lshr(($51|0),($54|0),7)|0); + $68 = tempRet0; + $69 = $65 ^ $67; + $70 = $66 ^ $68; + $71 = $69 ^ $59; + $72 = $70 ^ $60; + $73 = (($$1343) + -16)|0; + $74 = (($2) + ($73<<3)|0); + $75 = $74; $76 = $75; $77 = HEAP32[$76>>2]|0; - $78 = (_i64Add(($74|0),($77|0),($40|0),($43|0))|0); - $79 = tempRet0; - $80 = (_i64Add(($78|0),($79|0),($34|0),($35|0))|0); - $81 = tempRet0; - $82 = (_i64Add(($80|0),($81|0),($68|0),($69|0))|0); - $83 = tempRet0; - $84 = (($W) + ($i$110<<3)|0); - $85 = $84; - $86 = $85; - HEAP32[$86>>2] = $82; - $87 = (($85) + 4)|0; + $78 = (($75) + 4)|0; + $79 = $78; + $80 = HEAP32[$79>>2]|0; + $81 = (_i64Add(($77|0),($80|0),($43|0),($46|0))|0); + $82 = tempRet0; + $83 = (_i64Add(($81|0),($82|0),($37|0),($38|0))|0); + $84 = tempRet0; + $85 = (_i64Add(($83|0),($84|0),($71|0),($72|0))|0); + $86 = tempRet0; + $87 = (($2) + ($$1343<<3)|0); $88 = $87; - HEAP32[$88>>2] = $83; - $89 = (($i$110) + 1)|0; - $exitcond = ($89|0)==(80); + $89 = $88; + HEAP32[$89>>2] = $85; + $90 = (($88) + 4)|0; + $91 = $90; + HEAP32[$91>>2] = $86; + $92 = (($$1343) + 1)|0; + $exitcond = ($92|0)==(80); if ($exitcond) { break; } else { - $i$110 = $89; + $$1343 = $92; } } - $90 = $r; - $91 = $90; - $92 = HEAP32[$91>>2]|0; - $93 = (($90) + 4)|0; + $93 = $1; $94 = $93; $95 = HEAP32[$94>>2]|0; - $96 = ((($r)) + 8|0); + $96 = (($93) + 4)|0; $97 = $96; - $98 = $97; - $99 = HEAP32[$98>>2]|0; - $100 = (($97) + 4)|0; + $98 = HEAP32[$97>>2]|0; + $99 = ((($1)) + 8|0); + $100 = $99; $101 = $100; $102 = HEAP32[$101>>2]|0; - $103 = ((($r)) + 16|0); + $103 = (($100) + 4)|0; $104 = $103; - $105 = $104; - $106 = HEAP32[$105>>2]|0; - $107 = (($104) + 4)|0; + $105 = HEAP32[$104>>2]|0; + $106 = ((($1)) + 16|0); + $107 = $106; $108 = $107; $109 = HEAP32[$108>>2]|0; - $110 = ((($r)) + 24|0); + $110 = (($107) + 4)|0; $111 = $110; - $112 = $111; - $113 = HEAP32[$112>>2]|0; - $114 = (($111) + 4)|0; + $112 = HEAP32[$111>>2]|0; + $113 = ((($1)) + 24|0); + $114 = $113; $115 = $114; $116 = HEAP32[$115>>2]|0; - $117 = ((($r)) + 32|0); + $117 = (($114) + 4)|0; $118 = $117; - $119 = $118; - $120 = HEAP32[$119>>2]|0; - $121 = (($118) + 4)|0; + $119 = HEAP32[$118>>2]|0; + $120 = ((($1)) + 32|0); + $121 = $120; $122 = $121; $123 = HEAP32[$122>>2]|0; - $124 = ((($r)) + 40|0); + $124 = (($121) + 4)|0; $125 = $124; - $126 = $125; - $127 = HEAP32[$126>>2]|0; - $128 = (($125) + 4)|0; + $126 = HEAP32[$125>>2]|0; + $127 = ((($1)) + 40|0); + $128 = $127; $129 = $128; $130 = HEAP32[$129>>2]|0; - $131 = ((($r)) + 48|0); + $131 = (($128) + 4)|0; $132 = $131; - $133 = $132; - $134 = HEAP32[$133>>2]|0; - $135 = (($132) + 4)|0; + $133 = HEAP32[$132>>2]|0; + $134 = ((($1)) + 48|0); + $135 = $134; $136 = $135; $137 = HEAP32[$136>>2]|0; - $138 = ((($r)) + 56|0); + $138 = (($135) + 4)|0; $139 = $138; - $140 = $139; - $141 = HEAP32[$140>>2]|0; - $142 = (($139) + 4)|0; + $140 = HEAP32[$139>>2]|0; + $141 = ((($1)) + 56|0); + $142 = $141; $143 = $142; $144 = HEAP32[$143>>2]|0; - $145 = $120;$146 = $123;$170 = $127;$171 = $134;$173 = $130;$174 = $137;$193 = $141;$194 = $144;$203 = $92;$204 = $95;$228 = $99;$230 = $102;$234 = $106;$236 = $109;$241 = $113;$242 = $116;$i$29 = 0; + $145 = (($142) + 4)|0; + $146 = $145; + $147 = HEAP32[$146>>2]|0; + $$2342 = 0;$148 = $123;$149 = $126;$173 = $130;$174 = $137;$176 = $133;$177 = $140;$196 = $144;$197 = $147;$206 = $95;$207 = $98;$231 = $102;$233 = $105;$237 = $109;$239 = $112;$244 = $116;$245 = $119; while(1) { - $147 = (_bitshift64Shl(($145|0),($146|0),50)|0); - $148 = tempRet0; - $149 = (_bitshift64Lshr(($145|0),($146|0),14)|0); - $150 = tempRet0; - $151 = $147 | $149; - $152 = $148 | $150; - $153 = (_bitshift64Shl(($145|0),($146|0),46)|0); - $154 = tempRet0; - $155 = (_bitshift64Lshr(($145|0),($146|0),18)|0); - $156 = tempRet0; - $157 = $153 | $155; - $158 = $154 | $156; - $159 = $151 ^ $157; - $160 = $152 ^ $158; - $161 = (_bitshift64Shl(($145|0),($146|0),23)|0); - $162 = tempRet0; - $163 = (_bitshift64Lshr(($145|0),($146|0),41)|0); - $164 = tempRet0; - $165 = $161 | $163; - $166 = $162 | $164; - $167 = $159 ^ $165; - $168 = $160 ^ $166; - $169 = $170 ^ $171; + $150 = (_bitshift64Shl(($148|0),($149|0),50)|0); + $151 = tempRet0; + $152 = (_bitshift64Lshr(($148|0),($149|0),14)|0); + $153 = tempRet0; + $154 = $150 | $152; + $155 = $151 | $153; + $156 = (_bitshift64Shl(($148|0),($149|0),46)|0); + $157 = tempRet0; + $158 = (_bitshift64Lshr(($148|0),($149|0),18)|0); + $159 = tempRet0; + $160 = $156 | $158; + $161 = $157 | $159; + $162 = $154 ^ $160; + $163 = $155 ^ $161; + $164 = (_bitshift64Shl(($148|0),($149|0),23)|0); + $165 = tempRet0; + $166 = (_bitshift64Lshr(($148|0),($149|0),41)|0); + $167 = tempRet0; + $168 = $164 | $166; + $169 = $165 | $167; + $170 = $162 ^ $168; + $171 = $163 ^ $169; $172 = $173 ^ $174; - $175 = $169 & $145; - $176 = $172 & $146; - $177 = $175 ^ $171; - $178 = $176 ^ $174; - $179 = (72 + ($i$29<<3)|0); - $180 = $179; - $181 = $180; - $182 = HEAP32[$181>>2]|0; - $183 = (($180) + 4)|0; + $175 = $176 ^ $177; + $178 = $172 & $148; + $179 = $175 & $149; + $180 = $178 ^ $174; + $181 = $179 ^ $177; + $182 = (72 + ($$2342<<3)|0); + $183 = $182; $184 = $183; $185 = HEAP32[$184>>2]|0; - $186 = (($W) + ($i$29<<3)|0); + $186 = (($183) + 4)|0; $187 = $186; - $188 = $187; - $189 = HEAP32[$188>>2]|0; - $190 = (($187) + 4)|0; + $188 = HEAP32[$187>>2]|0; + $189 = (($2) + ($$2342<<3)|0); + $190 = $189; $191 = $190; $192 = HEAP32[$191>>2]|0; - $195 = (_i64Add(($177|0),($178|0),($193|0),($194|0))|0); - $196 = tempRet0; - $197 = (_i64Add(($195|0),($196|0),($167|0),($168|0))|0); - $198 = tempRet0; - $199 = (_i64Add(($197|0),($198|0),($182|0),($185|0))|0); - $200 = tempRet0; - $201 = (_i64Add(($199|0),($200|0),($189|0),($192|0))|0); - $202 = tempRet0; - $205 = (_bitshift64Shl(($203|0),($204|0),36)|0); - $206 = tempRet0; - $207 = (_bitshift64Lshr(($203|0),($204|0),28)|0); - $208 = tempRet0; - $209 = $205 | $207; - $210 = $206 | $208; - $211 = (_bitshift64Shl(($203|0),($204|0),30)|0); - $212 = tempRet0; - $213 = (_bitshift64Lshr(($203|0),($204|0),34)|0); - $214 = tempRet0; - $215 = $211 | $213; - $216 = $212 | $214; - $217 = $209 ^ $215; - $218 = $210 ^ $216; - $219 = (_bitshift64Shl(($203|0),($204|0),25)|0); - $220 = tempRet0; - $221 = (_bitshift64Lshr(($203|0),($204|0),39)|0); - $222 = tempRet0; - $223 = $219 | $221; - $224 = $220 | $222; - $225 = $217 ^ $223; - $226 = $218 ^ $224; - $227 = $203 & $228; - $229 = $204 & $230; - $231 = $203 | $228; - $232 = $204 | $230; - $233 = $231 & $234; - $235 = $232 & $236; - $237 = $233 | $227; - $238 = $235 | $229; - $239 = (_i64Add(($225|0),($226|0),($237|0),($238|0))|0); - $240 = tempRet0; - $243 = (_i64Add(($201|0),($202|0),($241|0),($242|0))|0); - $244 = tempRet0; - $245 = (_i64Add(($239|0),($240|0),($201|0),($202|0))|0); - $246 = tempRet0; - $247 = (_bitshift64Shl(($243|0),($244|0),50)|0); - $248 = tempRet0; - $249 = (_bitshift64Lshr(($243|0),($244|0),14)|0); - $250 = tempRet0; - $251 = $247 | $249; - $252 = $248 | $250; - $253 = (_bitshift64Shl(($243|0),($244|0),46)|0); - $254 = tempRet0; - $255 = (_bitshift64Lshr(($243|0),($244|0),18)|0); - $256 = tempRet0; - $257 = $253 | $255; - $258 = $254 | $256; - $259 = $251 ^ $257; - $260 = $252 ^ $258; - $261 = (_bitshift64Shl(($243|0),($244|0),23)|0); - $262 = tempRet0; - $263 = (_bitshift64Lshr(($243|0),($244|0),41)|0); - $264 = tempRet0; - $265 = $261 | $263; - $266 = $262 | $264; - $267 = $259 ^ $265; - $268 = $260 ^ $266; - $269 = $145 ^ $170; - $270 = $146 ^ $173; - $271 = $243 & $269; - $272 = $244 & $270; - $273 = $271 ^ $170; - $274 = $272 ^ $173; - $275 = $i$29 | 1; - $276 = (72 + ($275<<3)|0); - $277 = $276; - $278 = $277; - $279 = HEAP32[$278>>2]|0; - $280 = (($277) + 4)|0; + $193 = (($190) + 4)|0; + $194 = $193; + $195 = HEAP32[$194>>2]|0; + $198 = (_i64Add(($180|0),($181|0),($196|0),($197|0))|0); + $199 = tempRet0; + $200 = (_i64Add(($198|0),($199|0),($170|0),($171|0))|0); + $201 = tempRet0; + $202 = (_i64Add(($200|0),($201|0),($185|0),($188|0))|0); + $203 = tempRet0; + $204 = (_i64Add(($202|0),($203|0),($192|0),($195|0))|0); + $205 = tempRet0; + $208 = (_bitshift64Shl(($206|0),($207|0),36)|0); + $209 = tempRet0; + $210 = (_bitshift64Lshr(($206|0),($207|0),28)|0); + $211 = tempRet0; + $212 = $208 | $210; + $213 = $209 | $211; + $214 = (_bitshift64Shl(($206|0),($207|0),30)|0); + $215 = tempRet0; + $216 = (_bitshift64Lshr(($206|0),($207|0),34)|0); + $217 = tempRet0; + $218 = $214 | $216; + $219 = $215 | $217; + $220 = $212 ^ $218; + $221 = $213 ^ $219; + $222 = (_bitshift64Shl(($206|0),($207|0),25)|0); + $223 = tempRet0; + $224 = (_bitshift64Lshr(($206|0),($207|0),39)|0); + $225 = tempRet0; + $226 = $222 | $224; + $227 = $223 | $225; + $228 = $220 ^ $226; + $229 = $221 ^ $227; + $230 = $206 & $231; + $232 = $207 & $233; + $234 = $206 | $231; + $235 = $207 | $233; + $236 = $234 & $237; + $238 = $235 & $239; + $240 = $236 | $230; + $241 = $238 | $232; + $242 = (_i64Add(($228|0),($229|0),($240|0),($241|0))|0); + $243 = tempRet0; + $246 = (_i64Add(($204|0),($205|0),($244|0),($245|0))|0); + $247 = tempRet0; + $248 = (_i64Add(($242|0),($243|0),($204|0),($205|0))|0); + $249 = tempRet0; + $250 = (_bitshift64Shl(($246|0),($247|0),50)|0); + $251 = tempRet0; + $252 = (_bitshift64Lshr(($246|0),($247|0),14)|0); + $253 = tempRet0; + $254 = $250 | $252; + $255 = $251 | $253; + $256 = (_bitshift64Shl(($246|0),($247|0),46)|0); + $257 = tempRet0; + $258 = (_bitshift64Lshr(($246|0),($247|0),18)|0); + $259 = tempRet0; + $260 = $256 | $258; + $261 = $257 | $259; + $262 = $254 ^ $260; + $263 = $255 ^ $261; + $264 = (_bitshift64Shl(($246|0),($247|0),23)|0); + $265 = tempRet0; + $266 = (_bitshift64Lshr(($246|0),($247|0),41)|0); + $267 = tempRet0; + $268 = $264 | $266; + $269 = $265 | $267; + $270 = $262 ^ $268; + $271 = $263 ^ $269; + $272 = $148 ^ $173; + $273 = $149 ^ $176; + $274 = $246 & $272; + $275 = $247 & $273; + $276 = $274 ^ $173; + $277 = $275 ^ $176; + $278 = $$2342 | 1; + $279 = (72 + ($278<<3)|0); + $280 = $279; $281 = $280; $282 = HEAP32[$281>>2]|0; - $283 = (($W) + ($275<<3)|0); + $283 = (($280) + 4)|0; $284 = $283; - $285 = $284; - $286 = HEAP32[$285>>2]|0; - $287 = (($284) + 4)|0; + $285 = HEAP32[$284>>2]|0; + $286 = (($2) + ($278<<3)|0); + $287 = $286; $288 = $287; $289 = HEAP32[$288>>2]|0; - $290 = (_i64Add(($279|0),($282|0),($171|0),($174|0))|0); - $291 = tempRet0; - $292 = (_i64Add(($290|0),($291|0),($286|0),($289|0))|0); - $293 = tempRet0; - $294 = (_i64Add(($292|0),($293|0),($273|0),($274|0))|0); - $295 = tempRet0; - $296 = (_i64Add(($294|0),($295|0),($267|0),($268|0))|0); - $297 = tempRet0; - $298 = (_bitshift64Shl(($245|0),($246|0),36)|0); - $299 = tempRet0; - $300 = (_bitshift64Lshr(($245|0),($246|0),28)|0); - $301 = tempRet0; - $302 = $298 | $300; - $303 = $299 | $301; - $304 = (_bitshift64Shl(($245|0),($246|0),30)|0); - $305 = tempRet0; - $306 = (_bitshift64Lshr(($245|0),($246|0),34)|0); - $307 = tempRet0; - $308 = $304 | $306; - $309 = $305 | $307; - $310 = $302 ^ $308; - $311 = $303 ^ $309; - $312 = (_bitshift64Shl(($245|0),($246|0),25)|0); - $313 = tempRet0; - $314 = (_bitshift64Lshr(($245|0),($246|0),39)|0); - $315 = tempRet0; - $316 = $312 | $314; - $317 = $313 | $315; - $318 = $310 ^ $316; - $319 = $311 ^ $317; - $320 = $245 & $203; - $321 = $246 & $204; - $322 = $245 | $203; - $323 = $246 | $204; - $324 = $322 & $228; - $325 = $323 & $230; - $326 = $324 | $320; - $327 = $325 | $321; - $328 = (_i64Add(($318|0),($319|0),($326|0),($327|0))|0); - $329 = tempRet0; - $330 = (_i64Add(($296|0),($297|0),($234|0),($236|0))|0); - $331 = tempRet0; - $332 = (_i64Add(($328|0),($329|0),($296|0),($297|0))|0); - $333 = tempRet0; - $334 = (_bitshift64Shl(($330|0),($331|0),50)|0); - $335 = tempRet0; - $336 = (_bitshift64Lshr(($330|0),($331|0),14)|0); - $337 = tempRet0; - $338 = $334 | $336; - $339 = $335 | $337; - $340 = (_bitshift64Shl(($330|0),($331|0),46)|0); - $341 = tempRet0; - $342 = (_bitshift64Lshr(($330|0),($331|0),18)|0); - $343 = tempRet0; - $344 = $340 | $342; - $345 = $341 | $343; - $346 = $338 ^ $344; - $347 = $339 ^ $345; - $348 = (_bitshift64Shl(($330|0),($331|0),23)|0); - $349 = tempRet0; - $350 = (_bitshift64Lshr(($330|0),($331|0),41)|0); - $351 = tempRet0; - $352 = $348 | $350; - $353 = $349 | $351; - $354 = $346 ^ $352; - $355 = $347 ^ $353; - $356 = $243 ^ $145; - $357 = $244 ^ $146; - $358 = $330 & $356; - $359 = $331 & $357; - $360 = $358 ^ $145; - $361 = $359 ^ $146; - $362 = $i$29 | 2; - $363 = (72 + ($362<<3)|0); - $364 = $363; - $365 = $364; - $366 = HEAP32[$365>>2]|0; - $367 = (($364) + 4)|0; + $290 = (($287) + 4)|0; + $291 = $290; + $292 = HEAP32[$291>>2]|0; + $293 = (_i64Add(($282|0),($285|0),($174|0),($177|0))|0); + $294 = tempRet0; + $295 = (_i64Add(($293|0),($294|0),($289|0),($292|0))|0); + $296 = tempRet0; + $297 = (_i64Add(($295|0),($296|0),($276|0),($277|0))|0); + $298 = tempRet0; + $299 = (_i64Add(($297|0),($298|0),($270|0),($271|0))|0); + $300 = tempRet0; + $301 = (_bitshift64Shl(($248|0),($249|0),36)|0); + $302 = tempRet0; + $303 = (_bitshift64Lshr(($248|0),($249|0),28)|0); + $304 = tempRet0; + $305 = $301 | $303; + $306 = $302 | $304; + $307 = (_bitshift64Shl(($248|0),($249|0),30)|0); + $308 = tempRet0; + $309 = (_bitshift64Lshr(($248|0),($249|0),34)|0); + $310 = tempRet0; + $311 = $307 | $309; + $312 = $308 | $310; + $313 = $305 ^ $311; + $314 = $306 ^ $312; + $315 = (_bitshift64Shl(($248|0),($249|0),25)|0); + $316 = tempRet0; + $317 = (_bitshift64Lshr(($248|0),($249|0),39)|0); + $318 = tempRet0; + $319 = $315 | $317; + $320 = $316 | $318; + $321 = $313 ^ $319; + $322 = $314 ^ $320; + $323 = $248 & $206; + $324 = $249 & $207; + $325 = $248 | $206; + $326 = $249 | $207; + $327 = $325 & $231; + $328 = $326 & $233; + $329 = $327 | $323; + $330 = $328 | $324; + $331 = (_i64Add(($321|0),($322|0),($329|0),($330|0))|0); + $332 = tempRet0; + $333 = (_i64Add(($299|0),($300|0),($237|0),($239|0))|0); + $334 = tempRet0; + $335 = (_i64Add(($331|0),($332|0),($299|0),($300|0))|0); + $336 = tempRet0; + $337 = (_bitshift64Shl(($333|0),($334|0),50)|0); + $338 = tempRet0; + $339 = (_bitshift64Lshr(($333|0),($334|0),14)|0); + $340 = tempRet0; + $341 = $337 | $339; + $342 = $338 | $340; + $343 = (_bitshift64Shl(($333|0),($334|0),46)|0); + $344 = tempRet0; + $345 = (_bitshift64Lshr(($333|0),($334|0),18)|0); + $346 = tempRet0; + $347 = $343 | $345; + $348 = $344 | $346; + $349 = $341 ^ $347; + $350 = $342 ^ $348; + $351 = (_bitshift64Shl(($333|0),($334|0),23)|0); + $352 = tempRet0; + $353 = (_bitshift64Lshr(($333|0),($334|0),41)|0); + $354 = tempRet0; + $355 = $351 | $353; + $356 = $352 | $354; + $357 = $349 ^ $355; + $358 = $350 ^ $356; + $359 = $246 ^ $148; + $360 = $247 ^ $149; + $361 = $333 & $359; + $362 = $334 & $360; + $363 = $361 ^ $148; + $364 = $362 ^ $149; + $365 = $$2342 | 2; + $366 = (72 + ($365<<3)|0); + $367 = $366; $368 = $367; $369 = HEAP32[$368>>2]|0; - $370 = (($W) + ($362<<3)|0); + $370 = (($367) + 4)|0; $371 = $370; - $372 = $371; - $373 = HEAP32[$372>>2]|0; - $374 = (($371) + 4)|0; + $372 = HEAP32[$371>>2]|0; + $373 = (($2) + ($365<<3)|0); + $374 = $373; $375 = $374; $376 = HEAP32[$375>>2]|0; - $377 = (_i64Add(($366|0),($369|0),($170|0),($173|0))|0); - $378 = tempRet0; - $379 = (_i64Add(($377|0),($378|0),($373|0),($376|0))|0); - $380 = tempRet0; - $381 = (_i64Add(($379|0),($380|0),($360|0),($361|0))|0); - $382 = tempRet0; - $383 = (_i64Add(($381|0),($382|0),($354|0),($355|0))|0); - $384 = tempRet0; - $385 = (_bitshift64Shl(($332|0),($333|0),36)|0); - $386 = tempRet0; - $387 = (_bitshift64Lshr(($332|0),($333|0),28)|0); - $388 = tempRet0; - $389 = $385 | $387; - $390 = $386 | $388; - $391 = (_bitshift64Shl(($332|0),($333|0),30)|0); - $392 = tempRet0; - $393 = (_bitshift64Lshr(($332|0),($333|0),34)|0); - $394 = tempRet0; - $395 = $391 | $393; - $396 = $392 | $394; - $397 = $389 ^ $395; - $398 = $390 ^ $396; - $399 = (_bitshift64Shl(($332|0),($333|0),25)|0); - $400 = tempRet0; - $401 = (_bitshift64Lshr(($332|0),($333|0),39)|0); - $402 = tempRet0; - $403 = $399 | $401; - $404 = $400 | $402; - $405 = $397 ^ $403; - $406 = $398 ^ $404; - $407 = $332 & $245; - $408 = $333 & $246; - $409 = $332 | $245; - $410 = $333 | $246; - $411 = $409 & $203; - $412 = $410 & $204; - $413 = $411 | $407; - $414 = $412 | $408; - $415 = (_i64Add(($405|0),($406|0),($413|0),($414|0))|0); - $416 = tempRet0; - $417 = (_i64Add(($383|0),($384|0),($228|0),($230|0))|0); - $418 = tempRet0; - $419 = (_i64Add(($415|0),($416|0),($383|0),($384|0))|0); - $420 = tempRet0; - $421 = (_bitshift64Shl(($417|0),($418|0),50)|0); - $422 = tempRet0; - $423 = (_bitshift64Lshr(($417|0),($418|0),14)|0); - $424 = tempRet0; - $425 = $421 | $423; - $426 = $422 | $424; - $427 = (_bitshift64Shl(($417|0),($418|0),46)|0); - $428 = tempRet0; - $429 = (_bitshift64Lshr(($417|0),($418|0),18)|0); - $430 = tempRet0; - $431 = $427 | $429; - $432 = $428 | $430; - $433 = $425 ^ $431; - $434 = $426 ^ $432; - $435 = (_bitshift64Shl(($417|0),($418|0),23)|0); - $436 = tempRet0; - $437 = (_bitshift64Lshr(($417|0),($418|0),41)|0); - $438 = tempRet0; - $439 = $435 | $437; - $440 = $436 | $438; - $441 = $433 ^ $439; - $442 = $434 ^ $440; - $443 = $330 ^ $243; - $444 = $331 ^ $244; - $445 = $417 & $443; - $446 = $418 & $444; - $447 = $445 ^ $243; - $448 = $446 ^ $244; - $449 = $i$29 | 3; - $450 = (72 + ($449<<3)|0); - $451 = $450; - $452 = $451; - $453 = HEAP32[$452>>2]|0; - $454 = (($451) + 4)|0; + $377 = (($374) + 4)|0; + $378 = $377; + $379 = HEAP32[$378>>2]|0; + $380 = (_i64Add(($369|0),($372|0),($173|0),($176|0))|0); + $381 = tempRet0; + $382 = (_i64Add(($380|0),($381|0),($376|0),($379|0))|0); + $383 = tempRet0; + $384 = (_i64Add(($382|0),($383|0),($363|0),($364|0))|0); + $385 = tempRet0; + $386 = (_i64Add(($384|0),($385|0),($357|0),($358|0))|0); + $387 = tempRet0; + $388 = (_bitshift64Shl(($335|0),($336|0),36)|0); + $389 = tempRet0; + $390 = (_bitshift64Lshr(($335|0),($336|0),28)|0); + $391 = tempRet0; + $392 = $388 | $390; + $393 = $389 | $391; + $394 = (_bitshift64Shl(($335|0),($336|0),30)|0); + $395 = tempRet0; + $396 = (_bitshift64Lshr(($335|0),($336|0),34)|0); + $397 = tempRet0; + $398 = $394 | $396; + $399 = $395 | $397; + $400 = $392 ^ $398; + $401 = $393 ^ $399; + $402 = (_bitshift64Shl(($335|0),($336|0),25)|0); + $403 = tempRet0; + $404 = (_bitshift64Lshr(($335|0),($336|0),39)|0); + $405 = tempRet0; + $406 = $402 | $404; + $407 = $403 | $405; + $408 = $400 ^ $406; + $409 = $401 ^ $407; + $410 = $335 & $248; + $411 = $336 & $249; + $412 = $335 | $248; + $413 = $336 | $249; + $414 = $412 & $206; + $415 = $413 & $207; + $416 = $414 | $410; + $417 = $415 | $411; + $418 = (_i64Add(($408|0),($409|0),($416|0),($417|0))|0); + $419 = tempRet0; + $420 = (_i64Add(($386|0),($387|0),($231|0),($233|0))|0); + $421 = tempRet0; + $422 = (_i64Add(($418|0),($419|0),($386|0),($387|0))|0); + $423 = tempRet0; + $424 = (_bitshift64Shl(($420|0),($421|0),50)|0); + $425 = tempRet0; + $426 = (_bitshift64Lshr(($420|0),($421|0),14)|0); + $427 = tempRet0; + $428 = $424 | $426; + $429 = $425 | $427; + $430 = (_bitshift64Shl(($420|0),($421|0),46)|0); + $431 = tempRet0; + $432 = (_bitshift64Lshr(($420|0),($421|0),18)|0); + $433 = tempRet0; + $434 = $430 | $432; + $435 = $431 | $433; + $436 = $428 ^ $434; + $437 = $429 ^ $435; + $438 = (_bitshift64Shl(($420|0),($421|0),23)|0); + $439 = tempRet0; + $440 = (_bitshift64Lshr(($420|0),($421|0),41)|0); + $441 = tempRet0; + $442 = $438 | $440; + $443 = $439 | $441; + $444 = $436 ^ $442; + $445 = $437 ^ $443; + $446 = $333 ^ $246; + $447 = $334 ^ $247; + $448 = $420 & $446; + $449 = $421 & $447; + $450 = $448 ^ $246; + $451 = $449 ^ $247; + $452 = $$2342 | 3; + $453 = (72 + ($452<<3)|0); + $454 = $453; $455 = $454; $456 = HEAP32[$455>>2]|0; - $457 = (($W) + ($449<<3)|0); + $457 = (($454) + 4)|0; $458 = $457; - $459 = $458; - $460 = HEAP32[$459>>2]|0; - $461 = (($458) + 4)|0; + $459 = HEAP32[$458>>2]|0; + $460 = (($2) + ($452<<3)|0); + $461 = $460; $462 = $461; $463 = HEAP32[$462>>2]|0; - $464 = (_i64Add(($453|0),($456|0),($145|0),($146|0))|0); - $465 = tempRet0; - $466 = (_i64Add(($464|0),($465|0),($460|0),($463|0))|0); - $467 = tempRet0; - $468 = (_i64Add(($466|0),($467|0),($447|0),($448|0))|0); - $469 = tempRet0; - $470 = (_i64Add(($468|0),($469|0),($441|0),($442|0))|0); - $471 = tempRet0; - $472 = (_bitshift64Shl(($419|0),($420|0),36)|0); - $473 = tempRet0; - $474 = (_bitshift64Lshr(($419|0),($420|0),28)|0); - $475 = tempRet0; - $476 = $472 | $474; - $477 = $473 | $475; - $478 = (_bitshift64Shl(($419|0),($420|0),30)|0); - $479 = tempRet0; - $480 = (_bitshift64Lshr(($419|0),($420|0),34)|0); - $481 = tempRet0; - $482 = $478 | $480; - $483 = $479 | $481; - $484 = $476 ^ $482; - $485 = $477 ^ $483; - $486 = (_bitshift64Shl(($419|0),($420|0),25)|0); - $487 = tempRet0; - $488 = (_bitshift64Lshr(($419|0),($420|0),39)|0); - $489 = tempRet0; - $490 = $486 | $488; - $491 = $487 | $489; - $492 = $484 ^ $490; - $493 = $485 ^ $491; - $494 = $419 & $332; - $495 = $420 & $333; - $496 = $419 | $332; - $497 = $420 | $333; - $498 = $496 & $245; - $499 = $497 & $246; - $500 = $498 | $494; - $501 = $499 | $495; - $502 = (_i64Add(($492|0),($493|0),($500|0),($501|0))|0); - $503 = tempRet0; - $504 = (_i64Add(($470|0),($471|0),($203|0),($204|0))|0); - $505 = tempRet0; - $506 = (_i64Add(($502|0),($503|0),($470|0),($471|0))|0); - $507 = tempRet0; - $508 = (_bitshift64Shl(($504|0),($505|0),50)|0); - $509 = tempRet0; - $510 = (_bitshift64Lshr(($504|0),($505|0),14)|0); - $511 = tempRet0; - $512 = $508 | $510; - $513 = $509 | $511; - $514 = (_bitshift64Shl(($504|0),($505|0),46)|0); - $515 = tempRet0; - $516 = (_bitshift64Lshr(($504|0),($505|0),18)|0); - $517 = tempRet0; - $518 = $514 | $516; - $519 = $515 | $517; - $520 = $512 ^ $518; - $521 = $513 ^ $519; - $522 = (_bitshift64Shl(($504|0),($505|0),23)|0); - $523 = tempRet0; - $524 = (_bitshift64Lshr(($504|0),($505|0),41)|0); - $525 = tempRet0; - $526 = $522 | $524; - $527 = $523 | $525; - $528 = $520 ^ $526; - $529 = $521 ^ $527; - $530 = $417 ^ $330; - $531 = $418 ^ $331; - $532 = $504 & $530; - $533 = $505 & $531; - $534 = $532 ^ $330; - $535 = $533 ^ $331; - $536 = $i$29 | 4; - $537 = (72 + ($536<<3)|0); - $538 = $537; - $539 = $538; - $540 = HEAP32[$539>>2]|0; - $541 = (($538) + 4)|0; + $464 = (($461) + 4)|0; + $465 = $464; + $466 = HEAP32[$465>>2]|0; + $467 = (_i64Add(($456|0),($459|0),($148|0),($149|0))|0); + $468 = tempRet0; + $469 = (_i64Add(($467|0),($468|0),($463|0),($466|0))|0); + $470 = tempRet0; + $471 = (_i64Add(($469|0),($470|0),($450|0),($451|0))|0); + $472 = tempRet0; + $473 = (_i64Add(($471|0),($472|0),($444|0),($445|0))|0); + $474 = tempRet0; + $475 = (_bitshift64Shl(($422|0),($423|0),36)|0); + $476 = tempRet0; + $477 = (_bitshift64Lshr(($422|0),($423|0),28)|0); + $478 = tempRet0; + $479 = $475 | $477; + $480 = $476 | $478; + $481 = (_bitshift64Shl(($422|0),($423|0),30)|0); + $482 = tempRet0; + $483 = (_bitshift64Lshr(($422|0),($423|0),34)|0); + $484 = tempRet0; + $485 = $481 | $483; + $486 = $482 | $484; + $487 = $479 ^ $485; + $488 = $480 ^ $486; + $489 = (_bitshift64Shl(($422|0),($423|0),25)|0); + $490 = tempRet0; + $491 = (_bitshift64Lshr(($422|0),($423|0),39)|0); + $492 = tempRet0; + $493 = $489 | $491; + $494 = $490 | $492; + $495 = $487 ^ $493; + $496 = $488 ^ $494; + $497 = $422 & $335; + $498 = $423 & $336; + $499 = $422 | $335; + $500 = $423 | $336; + $501 = $499 & $248; + $502 = $500 & $249; + $503 = $501 | $497; + $504 = $502 | $498; + $505 = (_i64Add(($495|0),($496|0),($503|0),($504|0))|0); + $506 = tempRet0; + $507 = (_i64Add(($473|0),($474|0),($206|0),($207|0))|0); + $508 = tempRet0; + $509 = (_i64Add(($505|0),($506|0),($473|0),($474|0))|0); + $510 = tempRet0; + $511 = (_bitshift64Shl(($507|0),($508|0),50)|0); + $512 = tempRet0; + $513 = (_bitshift64Lshr(($507|0),($508|0),14)|0); + $514 = tempRet0; + $515 = $511 | $513; + $516 = $512 | $514; + $517 = (_bitshift64Shl(($507|0),($508|0),46)|0); + $518 = tempRet0; + $519 = (_bitshift64Lshr(($507|0),($508|0),18)|0); + $520 = tempRet0; + $521 = $517 | $519; + $522 = $518 | $520; + $523 = $515 ^ $521; + $524 = $516 ^ $522; + $525 = (_bitshift64Shl(($507|0),($508|0),23)|0); + $526 = tempRet0; + $527 = (_bitshift64Lshr(($507|0),($508|0),41)|0); + $528 = tempRet0; + $529 = $525 | $527; + $530 = $526 | $528; + $531 = $523 ^ $529; + $532 = $524 ^ $530; + $533 = $420 ^ $333; + $534 = $421 ^ $334; + $535 = $507 & $533; + $536 = $508 & $534; + $537 = $535 ^ $333; + $538 = $536 ^ $334; + $539 = $$2342 | 4; + $540 = (72 + ($539<<3)|0); + $541 = $540; $542 = $541; $543 = HEAP32[$542>>2]|0; - $544 = (($W) + ($536<<3)|0); + $544 = (($541) + 4)|0; $545 = $544; - $546 = $545; - $547 = HEAP32[$546>>2]|0; - $548 = (($545) + 4)|0; + $546 = HEAP32[$545>>2]|0; + $547 = (($2) + ($539<<3)|0); + $548 = $547; $549 = $548; $550 = HEAP32[$549>>2]|0; - $551 = (_i64Add(($540|0),($543|0),($243|0),($244|0))|0); - $552 = tempRet0; - $553 = (_i64Add(($551|0),($552|0),($547|0),($550|0))|0); - $554 = tempRet0; - $555 = (_i64Add(($553|0),($554|0),($534|0),($535|0))|0); - $556 = tempRet0; - $557 = (_i64Add(($555|0),($556|0),($528|0),($529|0))|0); - $558 = tempRet0; - $559 = (_bitshift64Shl(($506|0),($507|0),36)|0); - $560 = tempRet0; - $561 = (_bitshift64Lshr(($506|0),($507|0),28)|0); - $562 = tempRet0; - $563 = $559 | $561; - $564 = $560 | $562; - $565 = (_bitshift64Shl(($506|0),($507|0),30)|0); - $566 = tempRet0; - $567 = (_bitshift64Lshr(($506|0),($507|0),34)|0); - $568 = tempRet0; - $569 = $565 | $567; - $570 = $566 | $568; - $571 = $563 ^ $569; - $572 = $564 ^ $570; - $573 = (_bitshift64Shl(($506|0),($507|0),25)|0); - $574 = tempRet0; - $575 = (_bitshift64Lshr(($506|0),($507|0),39)|0); - $576 = tempRet0; - $577 = $573 | $575; - $578 = $574 | $576; - $579 = $571 ^ $577; - $580 = $572 ^ $578; - $581 = $506 & $419; - $582 = $507 & $420; - $583 = $506 | $419; - $584 = $507 | $420; - $585 = $583 & $332; - $586 = $584 & $333; - $587 = $585 | $581; - $588 = $586 | $582; - $589 = (_i64Add(($579|0),($580|0),($587|0),($588|0))|0); - $590 = tempRet0; - $591 = (_i64Add(($557|0),($558|0),($245|0),($246|0))|0); - $592 = tempRet0; - $593 = (_i64Add(($589|0),($590|0),($557|0),($558|0))|0); - $594 = tempRet0; - $595 = (_bitshift64Shl(($591|0),($592|0),50)|0); - $596 = tempRet0; - $597 = (_bitshift64Lshr(($591|0),($592|0),14)|0); - $598 = tempRet0; - $599 = $595 | $597; - $600 = $596 | $598; - $601 = (_bitshift64Shl(($591|0),($592|0),46)|0); - $602 = tempRet0; - $603 = (_bitshift64Lshr(($591|0),($592|0),18)|0); - $604 = tempRet0; - $605 = $601 | $603; - $606 = $602 | $604; - $607 = $599 ^ $605; - $608 = $600 ^ $606; - $609 = (_bitshift64Shl(($591|0),($592|0),23)|0); - $610 = tempRet0; - $611 = (_bitshift64Lshr(($591|0),($592|0),41)|0); - $612 = tempRet0; - $613 = $609 | $611; - $614 = $610 | $612; - $615 = $607 ^ $613; - $616 = $608 ^ $614; - $617 = $504 ^ $417; - $618 = $505 ^ $418; - $619 = $591 & $617; - $620 = $592 & $618; - $621 = $619 ^ $417; - $622 = $620 ^ $418; - $623 = $i$29 | 5; - $624 = (72 + ($623<<3)|0); - $625 = $624; - $626 = $625; - $627 = HEAP32[$626>>2]|0; - $628 = (($625) + 4)|0; + $551 = (($548) + 4)|0; + $552 = $551; + $553 = HEAP32[$552>>2]|0; + $554 = (_i64Add(($543|0),($546|0),($246|0),($247|0))|0); + $555 = tempRet0; + $556 = (_i64Add(($554|0),($555|0),($550|0),($553|0))|0); + $557 = tempRet0; + $558 = (_i64Add(($556|0),($557|0),($537|0),($538|0))|0); + $559 = tempRet0; + $560 = (_i64Add(($558|0),($559|0),($531|0),($532|0))|0); + $561 = tempRet0; + $562 = (_bitshift64Shl(($509|0),($510|0),36)|0); + $563 = tempRet0; + $564 = (_bitshift64Lshr(($509|0),($510|0),28)|0); + $565 = tempRet0; + $566 = $562 | $564; + $567 = $563 | $565; + $568 = (_bitshift64Shl(($509|0),($510|0),30)|0); + $569 = tempRet0; + $570 = (_bitshift64Lshr(($509|0),($510|0),34)|0); + $571 = tempRet0; + $572 = $568 | $570; + $573 = $569 | $571; + $574 = $566 ^ $572; + $575 = $567 ^ $573; + $576 = (_bitshift64Shl(($509|0),($510|0),25)|0); + $577 = tempRet0; + $578 = (_bitshift64Lshr(($509|0),($510|0),39)|0); + $579 = tempRet0; + $580 = $576 | $578; + $581 = $577 | $579; + $582 = $574 ^ $580; + $583 = $575 ^ $581; + $584 = $509 & $422; + $585 = $510 & $423; + $586 = $509 | $422; + $587 = $510 | $423; + $588 = $586 & $335; + $589 = $587 & $336; + $590 = $588 | $584; + $591 = $589 | $585; + $592 = (_i64Add(($582|0),($583|0),($590|0),($591|0))|0); + $593 = tempRet0; + $594 = (_i64Add(($560|0),($561|0),($248|0),($249|0))|0); + $595 = tempRet0; + $596 = (_i64Add(($592|0),($593|0),($560|0),($561|0))|0); + $597 = tempRet0; + $598 = (_bitshift64Shl(($594|0),($595|0),50)|0); + $599 = tempRet0; + $600 = (_bitshift64Lshr(($594|0),($595|0),14)|0); + $601 = tempRet0; + $602 = $598 | $600; + $603 = $599 | $601; + $604 = (_bitshift64Shl(($594|0),($595|0),46)|0); + $605 = tempRet0; + $606 = (_bitshift64Lshr(($594|0),($595|0),18)|0); + $607 = tempRet0; + $608 = $604 | $606; + $609 = $605 | $607; + $610 = $602 ^ $608; + $611 = $603 ^ $609; + $612 = (_bitshift64Shl(($594|0),($595|0),23)|0); + $613 = tempRet0; + $614 = (_bitshift64Lshr(($594|0),($595|0),41)|0); + $615 = tempRet0; + $616 = $612 | $614; + $617 = $613 | $615; + $618 = $610 ^ $616; + $619 = $611 ^ $617; + $620 = $507 ^ $420; + $621 = $508 ^ $421; + $622 = $594 & $620; + $623 = $595 & $621; + $624 = $622 ^ $420; + $625 = $623 ^ $421; + $626 = $$2342 | 5; + $627 = (72 + ($626<<3)|0); + $628 = $627; $629 = $628; $630 = HEAP32[$629>>2]|0; - $631 = (($W) + ($623<<3)|0); + $631 = (($628) + 4)|0; $632 = $631; - $633 = $632; - $634 = HEAP32[$633>>2]|0; - $635 = (($632) + 4)|0; + $633 = HEAP32[$632>>2]|0; + $634 = (($2) + ($626<<3)|0); + $635 = $634; $636 = $635; $637 = HEAP32[$636>>2]|0; - $638 = (_i64Add(($634|0),($637|0),($627|0),($630|0))|0); - $639 = tempRet0; - $640 = (_i64Add(($638|0),($639|0),($330|0),($331|0))|0); - $641 = tempRet0; - $642 = (_i64Add(($640|0),($641|0),($621|0),($622|0))|0); - $643 = tempRet0; - $644 = (_i64Add(($642|0),($643|0),($615|0),($616|0))|0); - $645 = tempRet0; - $646 = (_bitshift64Shl(($593|0),($594|0),36)|0); - $647 = tempRet0; - $648 = (_bitshift64Lshr(($593|0),($594|0),28)|0); - $649 = tempRet0; - $650 = $646 | $648; - $651 = $647 | $649; - $652 = (_bitshift64Shl(($593|0),($594|0),30)|0); - $653 = tempRet0; - $654 = (_bitshift64Lshr(($593|0),($594|0),34)|0); - $655 = tempRet0; - $656 = $652 | $654; - $657 = $653 | $655; - $658 = $650 ^ $656; - $659 = $651 ^ $657; - $660 = (_bitshift64Shl(($593|0),($594|0),25)|0); - $661 = tempRet0; - $662 = (_bitshift64Lshr(($593|0),($594|0),39)|0); - $663 = tempRet0; - $664 = $660 | $662; - $665 = $661 | $663; - $666 = $658 ^ $664; - $667 = $659 ^ $665; - $668 = $593 & $506; - $669 = $594 & $507; - $670 = $593 | $506; - $671 = $594 | $507; - $672 = $670 & $419; - $673 = $671 & $420; - $674 = $672 | $668; - $675 = $673 | $669; - $676 = (_i64Add(($666|0),($667|0),($674|0),($675|0))|0); - $677 = tempRet0; - $678 = (_i64Add(($644|0),($645|0),($332|0),($333|0))|0); - $679 = tempRet0; - $680 = (_i64Add(($676|0),($677|0),($644|0),($645|0))|0); - $681 = tempRet0; - $682 = (_bitshift64Shl(($678|0),($679|0),50)|0); - $683 = tempRet0; - $684 = (_bitshift64Lshr(($678|0),($679|0),14)|0); - $685 = tempRet0; - $686 = $682 | $684; - $687 = $683 | $685; - $688 = (_bitshift64Shl(($678|0),($679|0),46)|0); - $689 = tempRet0; - $690 = (_bitshift64Lshr(($678|0),($679|0),18)|0); - $691 = tempRet0; - $692 = $688 | $690; - $693 = $689 | $691; - $694 = $686 ^ $692; - $695 = $687 ^ $693; - $696 = (_bitshift64Shl(($678|0),($679|0),23)|0); - $697 = tempRet0; - $698 = (_bitshift64Lshr(($678|0),($679|0),41)|0); - $699 = tempRet0; - $700 = $696 | $698; - $701 = $697 | $699; - $702 = $694 ^ $700; - $703 = $695 ^ $701; - $704 = $591 ^ $504; - $705 = $592 ^ $505; - $706 = $678 & $704; - $707 = $679 & $705; - $708 = $706 ^ $504; - $709 = $707 ^ $505; - $710 = $i$29 | 6; - $711 = (72 + ($710<<3)|0); - $712 = $711; - $713 = $712; - $714 = HEAP32[$713>>2]|0; - $715 = (($712) + 4)|0; + $638 = (($635) + 4)|0; + $639 = $638; + $640 = HEAP32[$639>>2]|0; + $641 = (_i64Add(($637|0),($640|0),($630|0),($633|0))|0); + $642 = tempRet0; + $643 = (_i64Add(($641|0),($642|0),($333|0),($334|0))|0); + $644 = tempRet0; + $645 = (_i64Add(($643|0),($644|0),($624|0),($625|0))|0); + $646 = tempRet0; + $647 = (_i64Add(($645|0),($646|0),($618|0),($619|0))|0); + $648 = tempRet0; + $649 = (_bitshift64Shl(($596|0),($597|0),36)|0); + $650 = tempRet0; + $651 = (_bitshift64Lshr(($596|0),($597|0),28)|0); + $652 = tempRet0; + $653 = $649 | $651; + $654 = $650 | $652; + $655 = (_bitshift64Shl(($596|0),($597|0),30)|0); + $656 = tempRet0; + $657 = (_bitshift64Lshr(($596|0),($597|0),34)|0); + $658 = tempRet0; + $659 = $655 | $657; + $660 = $656 | $658; + $661 = $653 ^ $659; + $662 = $654 ^ $660; + $663 = (_bitshift64Shl(($596|0),($597|0),25)|0); + $664 = tempRet0; + $665 = (_bitshift64Lshr(($596|0),($597|0),39)|0); + $666 = tempRet0; + $667 = $663 | $665; + $668 = $664 | $666; + $669 = $661 ^ $667; + $670 = $662 ^ $668; + $671 = $596 & $509; + $672 = $597 & $510; + $673 = $596 | $509; + $674 = $597 | $510; + $675 = $673 & $422; + $676 = $674 & $423; + $677 = $675 | $671; + $678 = $676 | $672; + $679 = (_i64Add(($669|0),($670|0),($677|0),($678|0))|0); + $680 = tempRet0; + $681 = (_i64Add(($647|0),($648|0),($335|0),($336|0))|0); + $682 = tempRet0; + $683 = (_i64Add(($679|0),($680|0),($647|0),($648|0))|0); + $684 = tempRet0; + $685 = (_bitshift64Shl(($681|0),($682|0),50)|0); + $686 = tempRet0; + $687 = (_bitshift64Lshr(($681|0),($682|0),14)|0); + $688 = tempRet0; + $689 = $685 | $687; + $690 = $686 | $688; + $691 = (_bitshift64Shl(($681|0),($682|0),46)|0); + $692 = tempRet0; + $693 = (_bitshift64Lshr(($681|0),($682|0),18)|0); + $694 = tempRet0; + $695 = $691 | $693; + $696 = $692 | $694; + $697 = $689 ^ $695; + $698 = $690 ^ $696; + $699 = (_bitshift64Shl(($681|0),($682|0),23)|0); + $700 = tempRet0; + $701 = (_bitshift64Lshr(($681|0),($682|0),41)|0); + $702 = tempRet0; + $703 = $699 | $701; + $704 = $700 | $702; + $705 = $697 ^ $703; + $706 = $698 ^ $704; + $707 = $594 ^ $507; + $708 = $595 ^ $508; + $709 = $681 & $707; + $710 = $682 & $708; + $711 = $709 ^ $507; + $712 = $710 ^ $508; + $713 = $$2342 | 6; + $714 = (72 + ($713<<3)|0); + $715 = $714; $716 = $715; $717 = HEAP32[$716>>2]|0; - $718 = (($W) + ($710<<3)|0); + $718 = (($715) + 4)|0; $719 = $718; - $720 = $719; - $721 = HEAP32[$720>>2]|0; - $722 = (($719) + 4)|0; + $720 = HEAP32[$719>>2]|0; + $721 = (($2) + ($713<<3)|0); + $722 = $721; $723 = $722; $724 = HEAP32[$723>>2]|0; - $725 = (_i64Add(($721|0),($724|0),($714|0),($717|0))|0); - $726 = tempRet0; - $727 = (_i64Add(($725|0),($726|0),($417|0),($418|0))|0); - $728 = tempRet0; - $729 = (_i64Add(($727|0),($728|0),($708|0),($709|0))|0); - $730 = tempRet0; - $731 = (_i64Add(($729|0),($730|0),($702|0),($703|0))|0); - $732 = tempRet0; - $733 = (_bitshift64Shl(($680|0),($681|0),36)|0); - $734 = tempRet0; - $735 = (_bitshift64Lshr(($680|0),($681|0),28)|0); - $736 = tempRet0; - $737 = $733 | $735; - $738 = $734 | $736; - $739 = (_bitshift64Shl(($680|0),($681|0),30)|0); - $740 = tempRet0; - $741 = (_bitshift64Lshr(($680|0),($681|0),34)|0); - $742 = tempRet0; - $743 = $739 | $741; - $744 = $740 | $742; - $745 = $737 ^ $743; - $746 = $738 ^ $744; - $747 = (_bitshift64Shl(($680|0),($681|0),25)|0); - $748 = tempRet0; - $749 = (_bitshift64Lshr(($680|0),($681|0),39)|0); - $750 = tempRet0; - $751 = $747 | $749; - $752 = $748 | $750; - $753 = $745 ^ $751; - $754 = $746 ^ $752; - $755 = $680 & $593; - $756 = $681 & $594; - $757 = $680 | $593; - $758 = $681 | $594; - $759 = $757 & $506; - $760 = $758 & $507; - $761 = $759 | $755; - $762 = $760 | $756; - $763 = (_i64Add(($753|0),($754|0),($761|0),($762|0))|0); - $764 = tempRet0; - $765 = (_i64Add(($731|0),($732|0),($419|0),($420|0))|0); - $766 = tempRet0; - $767 = (_i64Add(($763|0),($764|0),($731|0),($732|0))|0); - $768 = tempRet0; - $769 = (_bitshift64Shl(($765|0),($766|0),50)|0); - $770 = tempRet0; - $771 = (_bitshift64Lshr(($765|0),($766|0),14)|0); - $772 = tempRet0; - $773 = $769 | $771; - $774 = $770 | $772; - $775 = (_bitshift64Shl(($765|0),($766|0),46)|0); - $776 = tempRet0; - $777 = (_bitshift64Lshr(($765|0),($766|0),18)|0); - $778 = tempRet0; - $779 = $775 | $777; - $780 = $776 | $778; - $781 = $773 ^ $779; - $782 = $774 ^ $780; - $783 = (_bitshift64Shl(($765|0),($766|0),23)|0); - $784 = tempRet0; - $785 = (_bitshift64Lshr(($765|0),($766|0),41)|0); - $786 = tempRet0; - $787 = $783 | $785; - $788 = $784 | $786; - $789 = $781 ^ $787; - $790 = $782 ^ $788; - $791 = $678 ^ $591; - $792 = $679 ^ $592; - $793 = $765 & $791; - $794 = $766 & $792; - $795 = $793 ^ $591; - $796 = $794 ^ $592; - $797 = $i$29 | 7; - $798 = (72 + ($797<<3)|0); - $799 = $798; - $800 = $799; - $801 = HEAP32[$800>>2]|0; - $802 = (($799) + 4)|0; + $725 = (($722) + 4)|0; + $726 = $725; + $727 = HEAP32[$726>>2]|0; + $728 = (_i64Add(($724|0),($727|0),($717|0),($720|0))|0); + $729 = tempRet0; + $730 = (_i64Add(($728|0),($729|0),($420|0),($421|0))|0); + $731 = tempRet0; + $732 = (_i64Add(($730|0),($731|0),($711|0),($712|0))|0); + $733 = tempRet0; + $734 = (_i64Add(($732|0),($733|0),($705|0),($706|0))|0); + $735 = tempRet0; + $736 = (_bitshift64Shl(($683|0),($684|0),36)|0); + $737 = tempRet0; + $738 = (_bitshift64Lshr(($683|0),($684|0),28)|0); + $739 = tempRet0; + $740 = $736 | $738; + $741 = $737 | $739; + $742 = (_bitshift64Shl(($683|0),($684|0),30)|0); + $743 = tempRet0; + $744 = (_bitshift64Lshr(($683|0),($684|0),34)|0); + $745 = tempRet0; + $746 = $742 | $744; + $747 = $743 | $745; + $748 = $740 ^ $746; + $749 = $741 ^ $747; + $750 = (_bitshift64Shl(($683|0),($684|0),25)|0); + $751 = tempRet0; + $752 = (_bitshift64Lshr(($683|0),($684|0),39)|0); + $753 = tempRet0; + $754 = $750 | $752; + $755 = $751 | $753; + $756 = $748 ^ $754; + $757 = $749 ^ $755; + $758 = $683 & $596; + $759 = $684 & $597; + $760 = $683 | $596; + $761 = $684 | $597; + $762 = $760 & $509; + $763 = $761 & $510; + $764 = $762 | $758; + $765 = $763 | $759; + $766 = (_i64Add(($756|0),($757|0),($764|0),($765|0))|0); + $767 = tempRet0; + $768 = (_i64Add(($734|0),($735|0),($422|0),($423|0))|0); + $769 = tempRet0; + $770 = (_i64Add(($766|0),($767|0),($734|0),($735|0))|0); + $771 = tempRet0; + $772 = (_bitshift64Shl(($768|0),($769|0),50)|0); + $773 = tempRet0; + $774 = (_bitshift64Lshr(($768|0),($769|0),14)|0); + $775 = tempRet0; + $776 = $772 | $774; + $777 = $773 | $775; + $778 = (_bitshift64Shl(($768|0),($769|0),46)|0); + $779 = tempRet0; + $780 = (_bitshift64Lshr(($768|0),($769|0),18)|0); + $781 = tempRet0; + $782 = $778 | $780; + $783 = $779 | $781; + $784 = $776 ^ $782; + $785 = $777 ^ $783; + $786 = (_bitshift64Shl(($768|0),($769|0),23)|0); + $787 = tempRet0; + $788 = (_bitshift64Lshr(($768|0),($769|0),41)|0); + $789 = tempRet0; + $790 = $786 | $788; + $791 = $787 | $789; + $792 = $784 ^ $790; + $793 = $785 ^ $791; + $794 = $681 ^ $594; + $795 = $682 ^ $595; + $796 = $768 & $794; + $797 = $769 & $795; + $798 = $796 ^ $594; + $799 = $797 ^ $595; + $800 = $$2342 | 7; + $801 = (72 + ($800<<3)|0); + $802 = $801; $803 = $802; $804 = HEAP32[$803>>2]|0; - $805 = (($W) + ($797<<3)|0); + $805 = (($802) + 4)|0; $806 = $805; - $807 = $806; - $808 = HEAP32[$807>>2]|0; - $809 = (($806) + 4)|0; + $807 = HEAP32[$806>>2]|0; + $808 = (($2) + ($800<<3)|0); + $809 = $808; $810 = $809; $811 = HEAP32[$810>>2]|0; - $812 = (_i64Add(($808|0),($811|0),($801|0),($804|0))|0); - $813 = tempRet0; - $814 = (_i64Add(($812|0),($813|0),($504|0),($505|0))|0); - $815 = tempRet0; - $816 = (_i64Add(($814|0),($815|0),($795|0),($796|0))|0); - $817 = tempRet0; - $818 = (_i64Add(($816|0),($817|0),($789|0),($790|0))|0); - $819 = tempRet0; - $820 = (_bitshift64Shl(($767|0),($768|0),36)|0); - $821 = tempRet0; - $822 = (_bitshift64Lshr(($767|0),($768|0),28)|0); - $823 = tempRet0; - $824 = $820 | $822; - $825 = $821 | $823; - $826 = (_bitshift64Shl(($767|0),($768|0),30)|0); - $827 = tempRet0; - $828 = (_bitshift64Lshr(($767|0),($768|0),34)|0); - $829 = tempRet0; - $830 = $826 | $828; - $831 = $827 | $829; - $832 = $824 ^ $830; - $833 = $825 ^ $831; - $834 = (_bitshift64Shl(($767|0),($768|0),25)|0); - $835 = tempRet0; - $836 = (_bitshift64Lshr(($767|0),($768|0),39)|0); - $837 = tempRet0; - $838 = $834 | $836; - $839 = $835 | $837; - $840 = $832 ^ $838; - $841 = $833 ^ $839; - $842 = $767 & $680; - $843 = $768 & $681; - $844 = $767 | $680; - $845 = $768 | $681; - $846 = $844 & $593; - $847 = $845 & $594; - $848 = $846 | $842; - $849 = $847 | $843; - $850 = (_i64Add(($840|0),($841|0),($848|0),($849|0))|0); - $851 = tempRet0; - $852 = (_i64Add(($818|0),($819|0),($506|0),($507|0))|0); - $853 = tempRet0; - $854 = (_i64Add(($850|0),($851|0),($818|0),($819|0))|0); - $855 = tempRet0; - $856 = (($i$29) + 8)|0; - $857 = ($856|0)<(80); - if ($857) { - $145 = $852;$146 = $853;$170 = $765;$171 = $678;$173 = $766;$174 = $679;$193 = $591;$194 = $592;$203 = $854;$204 = $855;$228 = $767;$230 = $768;$234 = $680;$236 = $681;$241 = $593;$242 = $594;$i$29 = $856; + $812 = (($809) + 4)|0; + $813 = $812; + $814 = HEAP32[$813>>2]|0; + $815 = (_i64Add(($811|0),($814|0),($804|0),($807|0))|0); + $816 = tempRet0; + $817 = (_i64Add(($815|0),($816|0),($507|0),($508|0))|0); + $818 = tempRet0; + $819 = (_i64Add(($817|0),($818|0),($798|0),($799|0))|0); + $820 = tempRet0; + $821 = (_i64Add(($819|0),($820|0),($792|0),($793|0))|0); + $822 = tempRet0; + $823 = (_bitshift64Shl(($770|0),($771|0),36)|0); + $824 = tempRet0; + $825 = (_bitshift64Lshr(($770|0),($771|0),28)|0); + $826 = tempRet0; + $827 = $823 | $825; + $828 = $824 | $826; + $829 = (_bitshift64Shl(($770|0),($771|0),30)|0); + $830 = tempRet0; + $831 = (_bitshift64Lshr(($770|0),($771|0),34)|0); + $832 = tempRet0; + $833 = $829 | $831; + $834 = $830 | $832; + $835 = $827 ^ $833; + $836 = $828 ^ $834; + $837 = (_bitshift64Shl(($770|0),($771|0),25)|0); + $838 = tempRet0; + $839 = (_bitshift64Lshr(($770|0),($771|0),39)|0); + $840 = tempRet0; + $841 = $837 | $839; + $842 = $838 | $840; + $843 = $835 ^ $841; + $844 = $836 ^ $842; + $845 = $770 & $683; + $846 = $771 & $684; + $847 = $770 | $683; + $848 = $771 | $684; + $849 = $847 & $596; + $850 = $848 & $597; + $851 = $849 | $845; + $852 = $850 | $846; + $853 = (_i64Add(($843|0),($844|0),($851|0),($852|0))|0); + $854 = tempRet0; + $855 = (_i64Add(($821|0),($822|0),($509|0),($510|0))|0); + $856 = tempRet0; + $857 = (_i64Add(($853|0),($854|0),($821|0),($822|0))|0); + $858 = tempRet0; + $859 = (($$2342) + 8)|0; + $860 = ($859|0)<(80); + if ($860) { + $$2342 = $859;$148 = $855;$149 = $856;$173 = $768;$174 = $681;$176 = $769;$177 = $682;$196 = $594;$197 = $595;$206 = $857;$207 = $858;$231 = $770;$233 = $771;$237 = $683;$239 = $684;$244 = $596;$245 = $597; } else { - $864 = $854;$865 = $855;$878 = $767;$879 = $768;$892 = $680;$893 = $681;$906 = $593;$907 = $594;$920 = $852;$921 = $853;$934 = $765;$935 = $766;$948 = $678;$949 = $679;$962 = $591;$963 = $592; break; } } - $858 = $r; - $859 = $858; - $860 = HEAP32[$859>>2]|0; - $861 = (($858) + 4)|0; - $862 = $861; - $863 = HEAP32[$862>>2]|0; - $866 = (_i64Add(($860|0),($863|0),($864|0),($865|0))|0); - $867 = tempRet0; - $868 = $r; - $869 = $868; - HEAP32[$869>>2] = $866; - $870 = (($868) + 4)|0; - $871 = $870; - HEAP32[$871>>2] = $867; - $872 = $96; - $873 = $872; - $874 = HEAP32[$873>>2]|0; - $875 = (($872) + 4)|0; + $861 = (_i64Add(($857|0),($858|0),($95|0),($98|0))|0); + $862 = tempRet0; + $863 = $1; + $864 = $863; + HEAP32[$864>>2] = $861; + $865 = (($863) + 4)|0; + $866 = $865; + HEAP32[$866>>2] = $862; + $867 = (_i64Add(($770|0),($771|0),($102|0),($105|0))|0); + $868 = tempRet0; + $869 = $99; + $870 = $869; + HEAP32[$870>>2] = $867; + $871 = (($869) + 4)|0; + $872 = $871; + HEAP32[$872>>2] = $868; + $873 = (_i64Add(($683|0),($684|0),($109|0),($112|0))|0); + $874 = tempRet0; + $875 = $106; $876 = $875; - $877 = HEAP32[$876>>2]|0; - $880 = (_i64Add(($874|0),($877|0),($878|0),($879|0))|0); - $881 = tempRet0; - $882 = $96; - $883 = $882; - HEAP32[$883>>2] = $880; - $884 = (($882) + 4)|0; - $885 = $884; - HEAP32[$885>>2] = $881; - $886 = $103; - $887 = $886; - $888 = HEAP32[$887>>2]|0; - $889 = (($886) + 4)|0; + HEAP32[$876>>2] = $873; + $877 = (($875) + 4)|0; + $878 = $877; + HEAP32[$878>>2] = $874; + $879 = (_i64Add(($596|0),($597|0),($116|0),($119|0))|0); + $880 = tempRet0; + $881 = $113; + $882 = $881; + HEAP32[$882>>2] = $879; + $883 = (($881) + 4)|0; + $884 = $883; + HEAP32[$884>>2] = $880; + $885 = (_i64Add(($855|0),($856|0),($123|0),($126|0))|0); + $886 = tempRet0; + $887 = $120; + $888 = $887; + HEAP32[$888>>2] = $885; + $889 = (($887) + 4)|0; $890 = $889; - $891 = HEAP32[$890>>2]|0; - $894 = (_i64Add(($888|0),($891|0),($892|0),($893|0))|0); - $895 = tempRet0; - $896 = $103; - $897 = $896; - HEAP32[$897>>2] = $894; - $898 = (($896) + 4)|0; - $899 = $898; - HEAP32[$899>>2] = $895; - $900 = $110; - $901 = $900; - $902 = HEAP32[$901>>2]|0; - $903 = (($900) + 4)|0; - $904 = $903; - $905 = HEAP32[$904>>2]|0; - $908 = (_i64Add(($902|0),($905|0),($906|0),($907|0))|0); - $909 = tempRet0; - $910 = $110; - $911 = $910; - HEAP32[$911>>2] = $908; - $912 = (($910) + 4)|0; - $913 = $912; - HEAP32[$913>>2] = $909; - $914 = $117; - $915 = $914; - $916 = HEAP32[$915>>2]|0; - $917 = (($914) + 4)|0; - $918 = $917; - $919 = HEAP32[$918>>2]|0; - $922 = (_i64Add(($916|0),($919|0),($920|0),($921|0))|0); - $923 = tempRet0; - $924 = $117; - $925 = $924; - HEAP32[$925>>2] = $922; - $926 = (($924) + 4)|0; - $927 = $926; - HEAP32[$927>>2] = $923; - $928 = $124; - $929 = $928; - $930 = HEAP32[$929>>2]|0; - $931 = (($928) + 4)|0; - $932 = $931; - $933 = HEAP32[$932>>2]|0; - $936 = (_i64Add(($930|0),($933|0),($934|0),($935|0))|0); - $937 = tempRet0; - $938 = $124; - $939 = $938; - HEAP32[$939>>2] = $936; - $940 = (($938) + 4)|0; - $941 = $940; - HEAP32[$941>>2] = $937; - $942 = $131; - $943 = $942; - $944 = HEAP32[$943>>2]|0; - $945 = (($942) + 4)|0; - $946 = $945; - $947 = HEAP32[$946>>2]|0; - $950 = (_i64Add(($944|0),($947|0),($948|0),($949|0))|0); - $951 = tempRet0; - $952 = $131; - $953 = $952; - HEAP32[$953>>2] = $950; - $954 = (($952) + 4)|0; - $955 = $954; - HEAP32[$955>>2] = $951; - $956 = $138; - $957 = $956; - $958 = HEAP32[$957>>2]|0; - $959 = (($956) + 4)|0; - $960 = $959; - $961 = HEAP32[$960>>2]|0; - $964 = (_i64Add(($958|0),($961|0),($962|0),($963|0))|0); - $965 = tempRet0; - $966 = $138; - $967 = $966; - HEAP32[$967>>2] = $964; - $968 = (($966) + 4)|0; - $969 = $968; - HEAP32[$969>>2] = $965; + HEAP32[$890>>2] = $886; + $891 = (_i64Add(($768|0),($769|0),($130|0),($133|0))|0); + $892 = tempRet0; + $893 = $127; + $894 = $893; + HEAP32[$894>>2] = $891; + $895 = (($893) + 4)|0; + $896 = $895; + HEAP32[$896>>2] = $892; + $897 = (_i64Add(($681|0),($682|0),($137|0),($140|0))|0); + $898 = tempRet0; + $899 = $134; + $900 = $899; + HEAP32[$900>>2] = $897; + $901 = (($899) + 4)|0; + $902 = $901; + HEAP32[$902>>2] = $898; + $903 = (_i64Add(($594|0),($595|0),($144|0),($147|0))|0); + $904 = tempRet0; + $905 = $141; + $906 = $905; + HEAP32[$906>>2] = $903; + $907 = (($905) + 4)|0; + $908 = $907; + HEAP32[$908>>2] = $904; STACKTOP = sp;return; } -function _sha384_close($cc,$dst,$rnum) { - $cc = $cc|0; - $dst = $dst|0; - $rnum = $rnum|0; +function _sph_dec64be_aligned($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0; + var $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0; + var $46 = 0, $47 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = (_bitshift64Shl(($2|0),0,56)|0); + $4 = tempRet0; + $5 = ((($0)) + 1|0); + $6 = HEAP8[$5>>0]|0; + $7 = $6&255; + $8 = (_bitshift64Shl(($7|0),0,48)|0); + $9 = tempRet0; + $10 = $8 | $3; + $11 = $9 | $4; + $12 = ((($0)) + 2|0); + $13 = HEAP8[$12>>0]|0; + $14 = $13&255; + $15 = (_bitshift64Shl(($14|0),0,40)|0); + $16 = tempRet0; + $17 = $10 | $15; + $18 = $11 | $16; + $19 = ((($0)) + 3|0); + $20 = HEAP8[$19>>0]|0; + $21 = $20&255; + $22 = $18 | $21; + $23 = ((($0)) + 4|0); + $24 = HEAP8[$23>>0]|0; + $25 = $24&255; + $26 = (_bitshift64Shl(($25|0),0,24)|0); + $27 = tempRet0; + $28 = $17 | $26; + $29 = $22 | $27; + $30 = ((($0)) + 5|0); + $31 = HEAP8[$30>>0]|0; + $32 = $31&255; + $33 = (_bitshift64Shl(($32|0),0,16)|0); + $34 = tempRet0; + $35 = $28 | $33; + $36 = $29 | $34; + $37 = ((($0)) + 6|0); + $38 = HEAP8[$37>>0]|0; + $39 = $38&255; + $40 = (_bitshift64Shl(($39|0),0,8)|0); + $41 = tempRet0; + $42 = $35 | $40; + $43 = $36 | $41; + $44 = ((($0)) + 7|0); + $45 = HEAP8[$44>>0]|0; + $46 = $45&255; + $47 = $42 | $46; + tempRet0 = ($43); + return ($47|0); +} +function _sha384_close($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; var label = 0, sp = 0; sp = STACKTOP; - _sha384_addbits_and_close($cc,0,0,$dst,$rnum); + _sha384_addbits_and_close($0,0,0,$1,$2); return; } -function _sha384_addbits_and_close($cc,$ub,$n,$dst,$rnum) { - $cc = $cc|0; - $ub = $ub|0; - $n = $n|0; - $dst = $dst|0; - $rnum = $rnum|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; - var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $exitcond = 0, $u$01 = 0, dest = 0, label = 0, sp = 0, stop = 0; +function _sha384_addbits_and_close($0,$1,$2,$3,$4) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + $4 = $4|0; + var $$035 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0; + var $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $exitcond = 0, dest = 0, label = 0, sp = 0, stop = 0; sp = STACKTOP; - $0 = ((($cc)) + 192|0); - $1 = $0; - $2 = $1; - $3 = HEAP32[$2>>2]|0; - $4 = (($1) + 4)|0; - $5 = $4; - $6 = HEAP32[$5>>2]|0; - $7 = $3 & 127; - $8 = 128 >>> $n; - $9 = (0 - ($8))|0; - $10 = $9 & $ub; - $11 = $10 | $8; - $12 = $11&255; - $13 = (($7) + 1)|0; - $14 = (($cc) + ($7)|0); - HEAP8[$14>>0] = $12; - $15 = ($13>>>0)>(112); - $16 = (($cc) + ($13)|0); - if ($15) { - $17 = $7 ^ 127; - _memset(($16|0),0,($17|0))|0; - $18 = ((($cc)) + 128|0); - _sha3_round($cc,$18); - dest=$cc; stop=dest+112|0; do { HEAP8[dest>>0]=0|0; dest=dest+1|0; } while ((dest|0) < (stop|0)); + $5 = ((($0)) + 192|0); + $6 = $5; + $7 = $6; + $8 = HEAP32[$7>>2]|0; + $9 = (($6) + 4)|0; + $10 = $9; + $11 = HEAP32[$10>>2]|0; + $12 = $8 & 127; + $13 = 128 >>> $2; + $14 = (0 - ($13))|0; + $15 = $14 & $1; + $16 = $15 | $13; + $17 = $16&255; + $18 = (($12) + 1)|0; + $19 = (($0) + ($12)|0); + HEAP8[$19>>0] = $17; + $20 = ($18>>>0)>(112); + $21 = (($0) + ($18)|0); + if ($20) { + $22 = $12 ^ 127; + _memset(($21|0),0,($22|0))|0; + $23 = ((($0)) + 128|0); + _sha3_round($0,$23); + dest=$0; stop=dest+112|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); } else { - $19 = (111 - ($7))|0; - _memset(($16|0),0,($19|0))|0; + $24 = (111 - ($12))|0; + _memset(($21|0),0,($24|0))|0; } - $20 = ((($cc)) + 112|0); - $21 = $0; - $22 = $21; - $23 = HEAP32[$22>>2]|0; - $24 = (($21) + 4)|0; - $25 = $24; - $26 = HEAP32[$25>>2]|0; - $27 = (_bitshift64Lshr(($23|0),($26|0),61)|0); - $28 = tempRet0; - _sph_enc64be_aligned($20,$27,$28); - $29 = ((($cc)) + 120|0); - $30 = $0; - $31 = $30; - $32 = HEAP32[$31>>2]|0; - $33 = (($30) + 4)|0; - $34 = $33; - $35 = HEAP32[$34>>2]|0; - $36 = (_bitshift64Shl(($32|0),($35|0),3)|0); - $37 = tempRet0; - $38 = (_i64Add(($36|0),($37|0),($n|0),0)|0); - $39 = tempRet0; - _sph_enc64be_aligned($29,$38,$39); - $40 = ((($cc)) + 128|0); - _sha3_round($cc,$40); - $41 = ($rnum|0)==(0); - if ($41) { + $25 = ((($0)) + 112|0); + $26 = $5; + $27 = $26; + $28 = HEAP32[$27>>2]|0; + $29 = (($26) + 4)|0; + $30 = $29; + $31 = HEAP32[$30>>2]|0; + $32 = (_bitshift64Lshr(($28|0),($31|0),61)|0); + $33 = tempRet0; + _sph_enc64be_aligned($25,$32,$33); + $34 = ((($0)) + 120|0); + $35 = $5; + $36 = $35; + $37 = HEAP32[$36>>2]|0; + $38 = (($35) + 4)|0; + $39 = $38; + $40 = HEAP32[$39>>2]|0; + $41 = (_bitshift64Shl(($37|0),($40|0),3)|0); + $42 = tempRet0; + $43 = (_i64Add(($41|0),($42|0),($2|0),0)|0); + $44 = tempRet0; + _sph_enc64be_aligned($34,$43,$44); + $45 = ((($0)) + 128|0); + _sha3_round($0,$45); + $46 = ($4|0)==(0); + if ($46) { return; } else { - $u$01 = 0; + $$035 = 0; } while(1) { - $42 = $u$01 << 3; - $43 = (($dst) + ($42)|0); - $44 = (($40) + ($u$01<<3)|0); - $45 = $44; - $46 = $45; - $47 = HEAP32[$46>>2]|0; - $48 = (($45) + 4)|0; - $49 = $48; - $50 = HEAP32[$49>>2]|0; - _sph_enc64be($43,$47,$50); - $51 = (($u$01) + 1)|0; - $exitcond = ($51|0)==($rnum|0); + $47 = $$035 << 3; + $48 = (($3) + ($47)|0); + $49 = (($45) + ($$035<<3)|0); + $50 = $49; + $51 = $50; + $52 = HEAP32[$51>>2]|0; + $53 = (($50) + 4)|0; + $54 = $53; + $55 = HEAP32[$54>>2]|0; + _sph_enc64be($48,$52,$55); + $56 = (($$035) + 1)|0; + $exitcond = ($56|0)==($4|0); if ($exitcond) { break; } else { - $u$01 = $51; + $$035 = $56; } } return; } -function _sph_enc64be_aligned($dst,$0,$1) { - $dst = $dst|0; +function _sph_enc64be_aligned($0,$1,$2) { $0 = $0|0; $1 = $1|0; - var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0; var $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $2 = (_bitshift64Lshr(($0|0),($1|0),56)|0); - $3 = tempRet0; - $4 = $2&255; - HEAP8[$dst>>0] = $4; - $5 = (_bitshift64Lshr(($0|0),($1|0),48)|0); - $6 = tempRet0; - $7 = $5&255; - $8 = ((($dst)) + 1|0); - HEAP8[$8>>0] = $7; - $9 = (_bitshift64Lshr(($0|0),($1|0),40)|0); - $10 = tempRet0; - $11 = $9&255; - $12 = ((($dst)) + 2|0); - HEAP8[$12>>0] = $11; - $13 = $1&255; - $14 = ((($dst)) + 3|0); - HEAP8[$14>>0] = $13; - $15 = (_bitshift64Lshr(($0|0),($1|0),24)|0); - $16 = tempRet0; - $17 = $15&255; - $18 = ((($dst)) + 4|0); - HEAP8[$18>>0] = $17; - $19 = (_bitshift64Lshr(($0|0),($1|0),16)|0); - $20 = tempRet0; - $21 = $19&255; - $22 = ((($dst)) + 5|0); - HEAP8[$22>>0] = $21; - $23 = (_bitshift64Lshr(($0|0),($1|0),8)|0); - $24 = tempRet0; - $25 = $23&255; - $26 = ((($dst)) + 6|0); - HEAP8[$26>>0] = $25; - $27 = $0&255; - $28 = ((($dst)) + 7|0); - HEAP8[$28>>0] = $27; + $3 = (_bitshift64Lshr(($1|0),($2|0),56)|0); + $4 = tempRet0; + $5 = $3&255; + HEAP8[$0>>0] = $5; + $6 = (_bitshift64Lshr(($1|0),($2|0),48)|0); + $7 = tempRet0; + $8 = $6&255; + $9 = ((($0)) + 1|0); + HEAP8[$9>>0] = $8; + $10 = (_bitshift64Lshr(($1|0),($2|0),40)|0); + $11 = tempRet0; + $12 = $10&255; + $13 = ((($0)) + 2|0); + HEAP8[$13>>0] = $12; + $14 = $2&255; + $15 = ((($0)) + 3|0); + HEAP8[$15>>0] = $14; + $16 = (_bitshift64Lshr(($1|0),($2|0),24)|0); + $17 = tempRet0; + $18 = $16&255; + $19 = ((($0)) + 4|0); + HEAP8[$19>>0] = $18; + $20 = (_bitshift64Lshr(($1|0),($2|0),16)|0); + $21 = tempRet0; + $22 = $20&255; + $23 = ((($0)) + 5|0); + HEAP8[$23>>0] = $22; + $24 = (_bitshift64Lshr(($1|0),($2|0),8)|0); + $25 = tempRet0; + $26 = $24&255; + $27 = ((($0)) + 6|0); + HEAP8[$27>>0] = $26; + $28 = $1&255; + $29 = ((($0)) + 7|0); + HEAP8[$29>>0] = $28; return; } -function _sph_enc64be($dst,$0,$1) { - $dst = $dst|0; +function _sph_enc64be($0,$1,$2) { $0 = $0|0; $1 = $1|0; - var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0; var $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $2 = (_bitshift64Lshr(($0|0),($1|0),56)|0); - $3 = tempRet0; - $4 = $2&255; - HEAP8[$dst>>0] = $4; - $5 = (_bitshift64Lshr(($0|0),($1|0),48)|0); - $6 = tempRet0; - $7 = $5&255; - $8 = ((($dst)) + 1|0); - HEAP8[$8>>0] = $7; - $9 = (_bitshift64Lshr(($0|0),($1|0),40)|0); - $10 = tempRet0; - $11 = $9&255; - $12 = ((($dst)) + 2|0); - HEAP8[$12>>0] = $11; - $13 = $1&255; - $14 = ((($dst)) + 3|0); - HEAP8[$14>>0] = $13; - $15 = (_bitshift64Lshr(($0|0),($1|0),24)|0); - $16 = tempRet0; - $17 = $15&255; - $18 = ((($dst)) + 4|0); - HEAP8[$18>>0] = $17; - $19 = (_bitshift64Lshr(($0|0),($1|0),16)|0); - $20 = tempRet0; - $21 = $19&255; - $22 = ((($dst)) + 5|0); - HEAP8[$22>>0] = $21; - $23 = (_bitshift64Lshr(($0|0),($1|0),8)|0); - $24 = tempRet0; - $25 = $23&255; - $26 = ((($dst)) + 6|0); - HEAP8[$26>>0] = $25; - $27 = $0&255; - $28 = ((($dst)) + 7|0); - HEAP8[$28>>0] = $27; + $3 = (_bitshift64Lshr(($1|0),($2|0),56)|0); + $4 = tempRet0; + $5 = $3&255; + HEAP8[$0>>0] = $5; + $6 = (_bitshift64Lshr(($1|0),($2|0),48)|0); + $7 = tempRet0; + $8 = $6&255; + $9 = ((($0)) + 1|0); + HEAP8[$9>>0] = $8; + $10 = (_bitshift64Lshr(($1|0),($2|0),40)|0); + $11 = tempRet0; + $12 = $10&255; + $13 = ((($0)) + 2|0); + HEAP8[$13>>0] = $12; + $14 = $2&255; + $15 = ((($0)) + 3|0); + HEAP8[$15>>0] = $14; + $16 = (_bitshift64Lshr(($1|0),($2|0),24)|0); + $17 = tempRet0; + $18 = $16&255; + $19 = ((($0)) + 4|0); + HEAP8[$19>>0] = $18; + $20 = (_bitshift64Lshr(($1|0),($2|0),16)|0); + $21 = tempRet0; + $22 = $20&255; + $23 = ((($0)) + 5|0); + HEAP8[$23>>0] = $22; + $24 = (_bitshift64Lshr(($1|0),($2|0),8)|0); + $25 = tempRet0; + $26 = $24&255; + $27 = ((($0)) + 6|0); + HEAP8[$27>>0] = $26; + $28 = $1&255; + $29 = ((($0)) + 7|0); + HEAP8[$29>>0] = $28; return; } -function _sph_dec64be_aligned($src) { - $src = $src|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; - var $45 = 0, $46 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; +function _sph_sha512_close($0,$1) { + $0 = $0|0; + $1 = $1|0; + var label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP8[$src>>0]|0; - $1 = $0&255; - $2 = (_bitshift64Shl(($1|0),0,56)|0); - $3 = tempRet0; - $4 = ((($src)) + 1|0); - $5 = HEAP8[$4>>0]|0; - $6 = $5&255; - $7 = (_bitshift64Shl(($6|0),0,48)|0); - $8 = tempRet0; - $9 = $7 | $2; - $10 = $8 | $3; - $11 = ((($src)) + 2|0); - $12 = HEAP8[$11>>0]|0; - $13 = $12&255; - $14 = (_bitshift64Shl(($13|0),0,40)|0); - $15 = tempRet0; - $16 = $9 | $14; - $17 = $10 | $15; - $18 = ((($src)) + 3|0); - $19 = HEAP8[$18>>0]|0; - $20 = $19&255; - $21 = $17 | $20; - $22 = ((($src)) + 4|0); - $23 = HEAP8[$22>>0]|0; - $24 = $23&255; - $25 = (_bitshift64Shl(($24|0),0,24)|0); - $26 = tempRet0; - $27 = $16 | $25; - $28 = $21 | $26; - $29 = ((($src)) + 5|0); - $30 = HEAP8[$29>>0]|0; - $31 = $30&255; - $32 = (_bitshift64Shl(($31|0),0,16)|0); - $33 = tempRet0; - $34 = $27 | $32; - $35 = $28 | $33; - $36 = ((($src)) + 6|0); - $37 = HEAP8[$36>>0]|0; - $38 = $37&255; - $39 = (_bitshift64Shl(($38|0),0,8)|0); - $40 = tempRet0; - $41 = $34 | $39; - $42 = $35 | $40; - $43 = ((($src)) + 7|0); - $44 = HEAP8[$43>>0]|0; - $45 = $44&255; - $46 = $41 | $45; - tempRet0 = ($42); - return ($46|0); + _sha384_close($0,$1,8); + _sph_sha512_init($0); + return; } -function ___errno_location() { - var $$0 = 0, $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; +function _emscripten_get_global_libc() { + var label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP32[32512>>2]|0; - $1 = ($0|0)==(0|0); - if ($1) { - $$0 = 32560; + return (32888|0); +} +function ___stdio_close($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $vararg_buffer = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 16|0; + $vararg_buffer = sp; + $1 = ((($0)) + 60|0); + $2 = HEAP32[$1>>2]|0; + $3 = (_dummy_570($2)|0); + HEAP32[$vararg_buffer>>2] = $3; + $4 = (___syscall6(6,($vararg_buffer|0))|0); + $5 = (___syscall_ret($4)|0); + STACKTOP = sp;return ($5|0); +} +function ___stdio_write($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $$0 = 0, $$04756 = 0, $$04855 = 0, $$04954 = 0, $$051 = 0, $$1 = 0, $$150 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0; + var $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0; + var $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $vararg_buffer = 0, $vararg_buffer3 = 0, $vararg_ptr1 = 0, $vararg_ptr2 = 0, $vararg_ptr6 = 0; + var $vararg_ptr7 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 48|0; + $vararg_buffer3 = sp + 16|0; + $vararg_buffer = sp; + $3 = sp + 32|0; + $4 = ((($0)) + 28|0); + $5 = HEAP32[$4>>2]|0; + HEAP32[$3>>2] = $5; + $6 = ((($3)) + 4|0); + $7 = ((($0)) + 20|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($8) - ($5))|0; + HEAP32[$6>>2] = $9; + $10 = ((($3)) + 8|0); + HEAP32[$10>>2] = $1; + $11 = ((($3)) + 12|0); + HEAP32[$11>>2] = $2; + $12 = (($9) + ($2))|0; + $13 = ((($0)) + 60|0); + $14 = HEAP32[$13>>2]|0; + $15 = $3; + HEAP32[$vararg_buffer>>2] = $14; + $vararg_ptr1 = ((($vararg_buffer)) + 4|0); + HEAP32[$vararg_ptr1>>2] = $15; + $vararg_ptr2 = ((($vararg_buffer)) + 8|0); + HEAP32[$vararg_ptr2>>2] = 2; + $16 = (___syscall146(146,($vararg_buffer|0))|0); + $17 = (___syscall_ret($16)|0); + $18 = ($12|0)==($17|0); + L1: do { + if ($18) { + label = 3; + } else { + $$04756 = 2;$$04855 = $12;$$04954 = $3;$26 = $17; + while(1) { + $25 = ($26|0)<(0); + if ($25) { + break; + } + $34 = (($$04855) - ($26))|0; + $35 = ((($$04954)) + 4|0); + $36 = HEAP32[$35>>2]|0; + $37 = ($26>>>0)>($36>>>0); + $38 = ((($$04954)) + 8|0); + $$150 = $37 ? $38 : $$04954; + $39 = $37 << 31 >> 31; + $$1 = (($39) + ($$04756))|0; + $40 = $37 ? $36 : 0; + $$0 = (($26) - ($40))|0; + $41 = HEAP32[$$150>>2]|0; + $42 = (($41) + ($$0)|0); + HEAP32[$$150>>2] = $42; + $43 = ((($$150)) + 4|0); + $44 = HEAP32[$43>>2]|0; + $45 = (($44) - ($$0))|0; + HEAP32[$43>>2] = $45; + $46 = HEAP32[$13>>2]|0; + $47 = $$150; + HEAP32[$vararg_buffer3>>2] = $46; + $vararg_ptr6 = ((($vararg_buffer3)) + 4|0); + HEAP32[$vararg_ptr6>>2] = $47; + $vararg_ptr7 = ((($vararg_buffer3)) + 8|0); + HEAP32[$vararg_ptr7>>2] = $$1; + $48 = (___syscall146(146,($vararg_buffer3|0))|0); + $49 = (___syscall_ret($48)|0); + $50 = ($34|0)==($49|0); + if ($50) { + label = 3; + break L1; + } else { + $$04756 = $$1;$$04855 = $34;$$04954 = $$150;$26 = $49; + } + } + $27 = ((($0)) + 16|0); + HEAP32[$27>>2] = 0; + HEAP32[$4>>2] = 0; + HEAP32[$7>>2] = 0; + $28 = HEAP32[$0>>2]|0; + $29 = $28 | 32; + HEAP32[$0>>2] = $29; + $30 = ($$04756|0)==(2); + if ($30) { + $$051 = 0; + } else { + $31 = ((($$04954)) + 4|0); + $32 = HEAP32[$31>>2]|0; + $33 = (($2) - ($32))|0; + $$051 = $33; + } + } + } while(0); + if ((label|0) == 3) { + $19 = ((($0)) + 44|0); + $20 = HEAP32[$19>>2]|0; + $21 = ((($0)) + 48|0); + $22 = HEAP32[$21>>2]|0; + $23 = (($20) + ($22)|0); + $24 = ((($0)) + 16|0); + HEAP32[$24>>2] = $23; + HEAP32[$4>>2] = $20; + HEAP32[$7>>2] = $20; + $$051 = $2; + } + STACKTOP = sp;return ($$051|0); +} +function ___stdio_seek($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $$pre = 0, $10 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $vararg_buffer = 0, $vararg_ptr1 = 0, $vararg_ptr2 = 0, $vararg_ptr3 = 0, $vararg_ptr4 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 32|0; + $vararg_buffer = sp; + $3 = sp + 20|0; + $4 = ((($0)) + 60|0); + $5 = HEAP32[$4>>2]|0; + $6 = $3; + HEAP32[$vararg_buffer>>2] = $5; + $vararg_ptr1 = ((($vararg_buffer)) + 4|0); + HEAP32[$vararg_ptr1>>2] = 0; + $vararg_ptr2 = ((($vararg_buffer)) + 8|0); + HEAP32[$vararg_ptr2>>2] = $1; + $vararg_ptr3 = ((($vararg_buffer)) + 12|0); + HEAP32[$vararg_ptr3>>2] = $6; + $vararg_ptr4 = ((($vararg_buffer)) + 16|0); + HEAP32[$vararg_ptr4>>2] = $2; + $7 = (___syscall140(140,($vararg_buffer|0))|0); + $8 = (___syscall_ret($7)|0); + $9 = ($8|0)<(0); + if ($9) { + HEAP32[$3>>2] = -1; + $10 = -1; } else { - $2 = (_pthread_self()|0); - $3 = ((($2)) + 60|0); - $4 = HEAP32[$3>>2]|0; - $$0 = $4; + $$pre = HEAP32[$3>>2]|0; + $10 = $$pre; } - return ($$0|0); + STACKTOP = sp;return ($10|0); } -function ___syscall_ret($r) { - $r = $r|0; - var $$0 = 0, $0 = 0, $1 = 0, $2 = 0, label = 0, sp = 0; +function ___syscall_ret($0) { + $0 = $0|0; + var $$0 = 0, $1 = 0, $2 = 0, $3 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = ($r>>>0)>(4294963200); - if ($0) { - $1 = (0 - ($r))|0; - $2 = (___errno_location()|0); - HEAP32[$2>>2] = $1; + $1 = ($0>>>0)>(4294963200); + if ($1) { + $2 = (0 - ($0))|0; + $3 = (___errno_location()|0); + HEAP32[$3>>2] = $2; $$0 = -1; } else { - $$0 = $r; + $$0 = $0; } return ($$0|0); } -function ___lockfile($f) { - $f = $f|0; +function ___errno_location() { + var $0 = 0, $1 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (___pthread_self_103()|0); + $1 = ((($0)) + 64|0); + return ($1|0); +} +function ___pthread_self_103() { + var $0 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (_pthread_self()|0); + return ($0|0); +} +function _pthread_self() { + var label = 0, sp = 0; + sp = STACKTOP; + return (32512|0); +} +function _dummy_570($0) { + $0 = $0|0; + var label = 0, sp = 0; + sp = STACKTOP; + return ($0|0); +} +function ___stdout_write($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $vararg_buffer = 0, $vararg_ptr1 = 0, $vararg_ptr2 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 32|0; + $vararg_buffer = sp; + $3 = sp + 16|0; + $4 = ((($0)) + 36|0); + HEAP32[$4>>2] = 3; + $5 = HEAP32[$0>>2]|0; + $6 = $5 & 64; + $7 = ($6|0)==(0); + if ($7) { + $8 = ((($0)) + 60|0); + $9 = HEAP32[$8>>2]|0; + $10 = $3; + HEAP32[$vararg_buffer>>2] = $9; + $vararg_ptr1 = ((($vararg_buffer)) + 4|0); + HEAP32[$vararg_ptr1>>2] = 21523; + $vararg_ptr2 = ((($vararg_buffer)) + 8|0); + HEAP32[$vararg_ptr2>>2] = $10; + $11 = (___syscall54(54,($vararg_buffer|0))|0); + $12 = ($11|0)==(0); + if (!($12)) { + $13 = ((($0)) + 75|0); + HEAP8[$13>>0] = -1; + } + } + $14 = (___stdio_write($0,$1,$2)|0); + STACKTOP = sp;return ($14|0); +} +function ___lockfile($0) { + $0 = $0|0; var label = 0, sp = 0; sp = STACKTOP; return 0; } -function ___unlockfile($f) { - $f = $f|0; +function ___unlockfile($0) { + $0 = $0|0; var label = 0, sp = 0; sp = STACKTOP; return; } -function ___stdio_close($f) { - $f = $f|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $vararg_buffer = 0, label = 0, sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 16|0; - $vararg_buffer = sp; - $0 = ((($f)) + 60|0); - $1 = HEAP32[$0>>2]|0; - HEAP32[$vararg_buffer>>2] = $1; - $2 = (___syscall6(6,($vararg_buffer|0))|0); - $3 = (___syscall_ret($2)|0); - STACKTOP = sp;return ($3|0); -} -function ___stdio_seek($f,$off,$whence) { - $f = $f|0; - $off = $off|0; - $whence = $whence|0; - var $$pre = 0, $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $ret = 0, $vararg_buffer = 0, $vararg_ptr1 = 0, $vararg_ptr2 = 0, $vararg_ptr3 = 0, $vararg_ptr4 = 0, label = 0, sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 32|0; - $vararg_buffer = sp; - $ret = sp + 20|0; - $0 = ((($f)) + 60|0); - $1 = HEAP32[$0>>2]|0; - HEAP32[$vararg_buffer>>2] = $1; - $vararg_ptr1 = ((($vararg_buffer)) + 4|0); - HEAP32[$vararg_ptr1>>2] = 0; - $vararg_ptr2 = ((($vararg_buffer)) + 8|0); - HEAP32[$vararg_ptr2>>2] = $off; - $vararg_ptr3 = ((($vararg_buffer)) + 12|0); - HEAP32[$vararg_ptr3>>2] = $ret; - $vararg_ptr4 = ((($vararg_buffer)) + 16|0); - HEAP32[$vararg_ptr4>>2] = $whence; - $2 = (___syscall140(140,($vararg_buffer|0))|0); - $3 = (___syscall_ret($2)|0); - $4 = ($3|0)<(0); - if ($4) { - HEAP32[$ret>>2] = -1; - $5 = -1; - } else { - $$pre = HEAP32[$ret>>2]|0; - $5 = $$pre; - } - STACKTOP = sp;return ($5|0); -} -function ___stdio_write($f,$buf,$len) { - $f = $f|0; - $buf = $buf|0; - $len = $len|0; - var $$0 = 0, $$phi$trans$insert = 0, $$pre = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0; - var $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0; - var $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $cnt$0 = 0, $cnt$1 = 0, $iov$0 = 0, $iov$0$lcssa11 = 0, $iov$1 = 0, $iovcnt$0 = 0; - var $iovcnt$0$lcssa12 = 0, $iovcnt$1 = 0, $iovs = 0, $rem$0 = 0, $vararg_buffer = 0, $vararg_buffer3 = 0, $vararg_ptr1 = 0, $vararg_ptr2 = 0, $vararg_ptr6 = 0, $vararg_ptr7 = 0, label = 0, sp = 0; +function ___ofl_lock() { + var label = 0, sp = 0; sp = STACKTOP; - STACKTOP = STACKTOP + 48|0; - $vararg_buffer3 = sp + 16|0; - $vararg_buffer = sp; - $iovs = sp + 32|0; - $0 = ((($f)) + 28|0); - $1 = HEAP32[$0>>2]|0; - HEAP32[$iovs>>2] = $1; - $2 = ((($iovs)) + 4|0); - $3 = ((($f)) + 20|0); - $4 = HEAP32[$3>>2]|0; - $5 = $4; - $6 = (($5) - ($1))|0; - HEAP32[$2>>2] = $6; - $7 = ((($iovs)) + 8|0); - HEAP32[$7>>2] = $buf; - $8 = ((($iovs)) + 12|0); - HEAP32[$8>>2] = $len; - $9 = (($6) + ($len))|0; - $10 = ((($f)) + 60|0); - $11 = ((($f)) + 44|0); - $iov$0 = $iovs;$iovcnt$0 = 2;$rem$0 = $9; - while(1) { - $12 = HEAP32[32512>>2]|0; - $13 = ($12|0)==(0|0); - if ($13) { - $17 = HEAP32[$10>>2]|0; - HEAP32[$vararg_buffer3>>2] = $17; - $vararg_ptr6 = ((($vararg_buffer3)) + 4|0); - HEAP32[$vararg_ptr6>>2] = $iov$0; - $vararg_ptr7 = ((($vararg_buffer3)) + 8|0); - HEAP32[$vararg_ptr7>>2] = $iovcnt$0; - $18 = (___syscall146(146,($vararg_buffer3|0))|0); - $19 = (___syscall_ret($18)|0); - $cnt$0 = $19; - } else { - _pthread_cleanup_push((1|0),($f|0)); - $14 = HEAP32[$10>>2]|0; - HEAP32[$vararg_buffer>>2] = $14; - $vararg_ptr1 = ((($vararg_buffer)) + 4|0); - HEAP32[$vararg_ptr1>>2] = $iov$0; - $vararg_ptr2 = ((($vararg_buffer)) + 8|0); - HEAP32[$vararg_ptr2>>2] = $iovcnt$0; - $15 = (___syscall146(146,($vararg_buffer|0))|0); - $16 = (___syscall_ret($15)|0); - _pthread_cleanup_pop(0); - $cnt$0 = $16; - } - $20 = ($rem$0|0)==($cnt$0|0); - if ($20) { - label = 6; - break; - } - $27 = ($cnt$0|0)<(0); - if ($27) { - $iov$0$lcssa11 = $iov$0;$iovcnt$0$lcssa12 = $iovcnt$0; - label = 8; - break; - } - $35 = (($rem$0) - ($cnt$0))|0; - $36 = ((($iov$0)) + 4|0); - $37 = HEAP32[$36>>2]|0; - $38 = ($cnt$0>>>0)>($37>>>0); - if ($38) { - $39 = HEAP32[$11>>2]|0; - HEAP32[$0>>2] = $39; - HEAP32[$3>>2] = $39; - $40 = (($cnt$0) - ($37))|0; - $41 = ((($iov$0)) + 8|0); - $42 = (($iovcnt$0) + -1)|0; - $$phi$trans$insert = ((($iov$0)) + 12|0); - $$pre = HEAP32[$$phi$trans$insert>>2]|0; - $50 = $$pre;$cnt$1 = $40;$iov$1 = $41;$iovcnt$1 = $42; - } else { - $43 = ($iovcnt$0|0)==(2); - if ($43) { - $44 = HEAP32[$0>>2]|0; - $45 = (($44) + ($cnt$0)|0); - HEAP32[$0>>2] = $45; - $50 = $37;$cnt$1 = $cnt$0;$iov$1 = $iov$0;$iovcnt$1 = 2; - } else { - $50 = $37;$cnt$1 = $cnt$0;$iov$1 = $iov$0;$iovcnt$1 = $iovcnt$0; - } - } - $46 = HEAP32[$iov$1>>2]|0; - $47 = (($46) + ($cnt$1)|0); - HEAP32[$iov$1>>2] = $47; - $48 = ((($iov$1)) + 4|0); - $49 = (($50) - ($cnt$1))|0; - HEAP32[$48>>2] = $49; - $iov$0 = $iov$1;$iovcnt$0 = $iovcnt$1;$rem$0 = $35; - } - if ((label|0) == 6) { - $21 = HEAP32[$11>>2]|0; - $22 = ((($f)) + 48|0); - $23 = HEAP32[$22>>2]|0; - $24 = (($21) + ($23)|0); - $25 = ((($f)) + 16|0); - HEAP32[$25>>2] = $24; - $26 = $21; - HEAP32[$0>>2] = $26; - HEAP32[$3>>2] = $26; - $$0 = $len; - } - else if ((label|0) == 8) { - $28 = ((($f)) + 16|0); - HEAP32[$28>>2] = 0; - HEAP32[$0>>2] = 0; - HEAP32[$3>>2] = 0; - $29 = HEAP32[$f>>2]|0; - $30 = $29 | 32; - HEAP32[$f>>2] = $30; - $31 = ($iovcnt$0$lcssa12|0)==(2); - if ($31) { - $$0 = 0; - } else { - $32 = ((($iov$0$lcssa11)) + 4|0); - $33 = HEAP32[$32>>2]|0; - $34 = (($len) - ($33))|0; - $$0 = $34; - } - } - STACKTOP = sp;return ($$0|0); + ___lock((32952|0)); + return (32960|0); } -function ___stdout_write($f,$buf,$len) { - $f = $f|0; - $buf = $buf|0; - $len = $len|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $tio = 0, $vararg_buffer = 0, $vararg_ptr1 = 0, $vararg_ptr2 = 0, label = 0, sp = 0; +function ___ofl_unlock() { + var label = 0, sp = 0; sp = STACKTOP; - STACKTOP = STACKTOP + 80|0; - $vararg_buffer = sp; - $tio = sp + 12|0; - $0 = ((($f)) + 36|0); - HEAP32[$0>>2] = 3; - $1 = HEAP32[$f>>2]|0; - $2 = $1 & 64; - $3 = ($2|0)==(0); - if ($3) { - $4 = ((($f)) + 60|0); - $5 = HEAP32[$4>>2]|0; - HEAP32[$vararg_buffer>>2] = $5; - $vararg_ptr1 = ((($vararg_buffer)) + 4|0); - HEAP32[$vararg_ptr1>>2] = 21505; - $vararg_ptr2 = ((($vararg_buffer)) + 8|0); - HEAP32[$vararg_ptr2>>2] = $tio; - $6 = (___syscall54(54,($vararg_buffer|0))|0); - $7 = ($6|0)==(0); - if (!($7)) { - $8 = ((($f)) + 75|0); - HEAP8[$8>>0] = -1; - } - } - $9 = (___stdio_write($f,$buf,$len)|0); - STACKTOP = sp;return ($9|0); + ___unlock((32952|0)); + return; } -function _fflush($f) { - $f = $f|0; - var $$0 = 0, $$01 = 0, $$012 = 0, $$014 = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0; - var $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $phitmp = 0, $r$0$lcssa = 0, $r$03 = 0, $r$1 = 0, label = 0, sp = 0; +function _fflush($0) { + $0 = $0|0; + var $$0 = 0, $$023 = 0, $$02325 = 0, $$02327 = 0, $$024$lcssa = 0, $$02426 = 0, $$1 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0; + var $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $phitmp = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = ($f|0)==(0|0); + $1 = ($0|0)==(0|0); do { - if ($0) { - $7 = HEAP32[32556>>2]|0; - $8 = ($7|0)==(0|0); - if ($8) { - $27 = 0; + if ($1) { + $8 = HEAP32[8220]|0; + $9 = ($8|0)==(0|0); + if ($9) { + $29 = 0; } else { - $9 = HEAP32[32556>>2]|0; - $10 = (_fflush($9)|0); - $27 = $10; + $10 = HEAP32[8220]|0; + $11 = (_fflush($10)|0); + $29 = $11; } - ___lock(((32540)|0)); - $$012 = HEAP32[(32536)>>2]|0; - $11 = ($$012|0)==(0|0); - if ($11) { - $r$0$lcssa = $27; + $12 = (___ofl_lock()|0); + $$02325 = HEAP32[$12>>2]|0; + $13 = ($$02325|0)==(0|0); + if ($13) { + $$024$lcssa = $29; } else { - $$014 = $$012;$r$03 = $27; + $$02327 = $$02325;$$02426 = $29; while(1) { - $12 = ((($$014)) + 76|0); - $13 = HEAP32[$12>>2]|0; - $14 = ($13|0)>(-1); - if ($14) { - $15 = (___lockfile($$014)|0); - $24 = $15; + $14 = ((($$02327)) + 76|0); + $15 = HEAP32[$14>>2]|0; + $16 = ($15|0)>(-1); + if ($16) { + $17 = (___lockfile($$02327)|0); + $26 = $17; } else { - $24 = 0; + $26 = 0; } - $16 = ((($$014)) + 20|0); - $17 = HEAP32[$16>>2]|0; - $18 = ((($$014)) + 28|0); + $18 = ((($$02327)) + 20|0); $19 = HEAP32[$18>>2]|0; - $20 = ($17>>>0)>($19>>>0); - if ($20) { - $21 = (___fflush_unlocked($$014)|0); - $22 = $21 | $r$03; - $r$1 = $22; + $20 = ((($$02327)) + 28|0); + $21 = HEAP32[$20>>2]|0; + $22 = ($19>>>0)>($21>>>0); + if ($22) { + $23 = (___fflush_unlocked($$02327)|0); + $24 = $23 | $$02426; + $$1 = $24; } else { - $r$1 = $r$03; + $$1 = $$02426; } - $23 = ($24|0)==(0); - if (!($23)) { - ___unlockfile($$014); + $25 = ($26|0)==(0); + if (!($25)) { + ___unlockfile($$02327); } - $25 = ((($$014)) + 56|0); - $$01 = HEAP32[$25>>2]|0; - $26 = ($$01|0)==(0|0); - if ($26) { - $r$0$lcssa = $r$1; + $27 = ((($$02327)) + 56|0); + $$023 = HEAP32[$27>>2]|0; + $28 = ($$023|0)==(0|0); + if ($28) { + $$024$lcssa = $$1; break; } else { - $$014 = $$01;$r$03 = $r$1; + $$02327 = $$023;$$02426 = $$1; } } } - ___unlock(((32540)|0)); - $$0 = $r$0$lcssa; + ___ofl_unlock(); + $$0 = $$024$lcssa; } else { - $1 = ((($f)) + 76|0); - $2 = HEAP32[$1>>2]|0; - $3 = ($2|0)>(-1); - if (!($3)) { - $4 = (___fflush_unlocked($f)|0); - $$0 = $4; + $2 = ((($0)) + 76|0); + $3 = HEAP32[$2>>2]|0; + $4 = ($3|0)>(-1); + if (!($4)) { + $5 = (___fflush_unlocked($0)|0); + $$0 = $5; break; } - $5 = (___lockfile($f)|0); - $phitmp = ($5|0)==(0); - $6 = (___fflush_unlocked($f)|0); + $6 = (___lockfile($0)|0); + $phitmp = ($6|0)==(0); + $7 = (___fflush_unlocked($0)|0); if ($phitmp) { - $$0 = $6; + $$0 = $7; } else { - ___unlockfile($f); - $$0 = $6; + ___unlockfile($0); + $$0 = $7; } } } while(0); return ($$0|0); } -function _cleanup392($p) { - $p = $p|0; - var $0 = 0, $1 = 0, $2 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = ((($p)) + 68|0); - $1 = HEAP32[$0>>2]|0; - $2 = ($1|0)==(0); - if ($2) { - ___unlockfile($p); - } - return; -} -function ___fflush_unlocked($f) { - $f = $f|0; - var $$0 = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0; +function ___fflush_unlocked($0) { + $0 = $0|0; + var $$0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0; var $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = ((($f)) + 20|0); - $1 = HEAP32[$0>>2]|0; - $2 = ((($f)) + 28|0); - $3 = HEAP32[$2>>2]|0; - $4 = ($1>>>0)>($3>>>0); - if ($4) { - $5 = ((($f)) + 36|0); - $6 = HEAP32[$5>>2]|0; - (FUNCTION_TABLE_iiii[$6 & 3]($f,0,0)|0); - $7 = HEAP32[$0>>2]|0; - $8 = ($7|0)==(0|0); - if ($8) { + $1 = ((($0)) + 20|0); + $2 = HEAP32[$1>>2]|0; + $3 = ((($0)) + 28|0); + $4 = HEAP32[$3>>2]|0; + $5 = ($2>>>0)>($4>>>0); + if ($5) { + $6 = ((($0)) + 36|0); + $7 = HEAP32[$6>>2]|0; + (FUNCTION_TABLE_iiii[$7 & 3]($0,0,0)|0); + $8 = HEAP32[$1>>2]|0; + $9 = ($8|0)==(0|0); + if ($9) { $$0 = -1; } else { label = 3; @@ -20641,140 +17053,135 @@ function ___fflush_unlocked($f) { label = 3; } if ((label|0) == 3) { - $9 = ((($f)) + 4|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 8|0); - $12 = HEAP32[$11>>2]|0; - $13 = ($10>>>0)<($12>>>0); - if ($13) { - $14 = ((($f)) + 40|0); - $15 = HEAP32[$14>>2]|0; - $16 = $10; - $17 = $12; - $18 = (($16) - ($17))|0; - (FUNCTION_TABLE_iiii[$15 & 3]($f,$18,1)|0); + $10 = ((($0)) + 4|0); + $11 = HEAP32[$10>>2]|0; + $12 = ((($0)) + 8|0); + $13 = HEAP32[$12>>2]|0; + $14 = ($11>>>0)<($13>>>0); + if ($14) { + $15 = $11; + $16 = $13; + $17 = (($15) - ($16))|0; + $18 = ((($0)) + 40|0); + $19 = HEAP32[$18>>2]|0; + (FUNCTION_TABLE_iiii[$19 & 3]($0,$17,1)|0); } - $19 = ((($f)) + 16|0); - HEAP32[$19>>2] = 0; - HEAP32[$2>>2] = 0; - HEAP32[$0>>2] = 0; - HEAP32[$11>>2] = 0; - HEAP32[$9>>2] = 0; + $20 = ((($0)) + 16|0); + HEAP32[$20>>2] = 0; + HEAP32[$3>>2] = 0; + HEAP32[$1>>2] = 0; + HEAP32[$12>>2] = 0; + HEAP32[$10>>2] = 0; $$0 = 0; } return ($$0|0); } -function _malloc($bytes) { - $bytes = $bytes|0; - var $$3$i = 0, $$lcssa = 0, $$lcssa211 = 0, $$lcssa215 = 0, $$lcssa216 = 0, $$lcssa217 = 0, $$lcssa219 = 0, $$lcssa222 = 0, $$lcssa224 = 0, $$lcssa226 = 0, $$lcssa228 = 0, $$lcssa230 = 0, $$lcssa232 = 0, $$pre = 0, $$pre$i = 0, $$pre$i$i = 0, $$pre$i22$i = 0, $$pre$i25 = 0, $$pre$phi$i$iZ2D = 0, $$pre$phi$i23$iZ2D = 0; - var $$pre$phi$i26Z2D = 0, $$pre$phi$iZ2D = 0, $$pre$phi58$i$iZ2D = 0, $$pre$phiZ2D = 0, $$pre105 = 0, $$pre106 = 0, $$pre14$i$i = 0, $$pre43$i = 0, $$pre56$i$i = 0, $$pre57$i$i = 0, $$pre8$i = 0, $$rsize$0$i = 0, $$rsize$3$i = 0, $$sum = 0, $$sum$i$i = 0, $$sum$i$i$i = 0, $$sum$i13$i = 0, $$sum$i14$i = 0, $$sum$i17$i = 0, $$sum$i19$i = 0; - var $$sum$i2334 = 0, $$sum$i32 = 0, $$sum$i35 = 0, $$sum1 = 0, $$sum1$i = 0, $$sum1$i$i = 0, $$sum1$i15$i = 0, $$sum1$i20$i = 0, $$sum1$i24 = 0, $$sum10 = 0, $$sum10$i = 0, $$sum10$i$i = 0, $$sum11$i = 0, $$sum11$i$i = 0, $$sum1112 = 0, $$sum112$i = 0, $$sum113$i = 0, $$sum114$i = 0, $$sum115$i = 0, $$sum116$i = 0; - var $$sum117$i = 0, $$sum118$i = 0, $$sum119$i = 0, $$sum12$i = 0, $$sum12$i$i = 0, $$sum120$i = 0, $$sum121$i = 0, $$sum122$i = 0, $$sum123$i = 0, $$sum124$i = 0, $$sum125$i = 0, $$sum13$i = 0, $$sum13$i$i = 0, $$sum14$i$i = 0, $$sum15$i = 0, $$sum15$i$i = 0, $$sum16$i = 0, $$sum16$i$i = 0, $$sum17$i = 0, $$sum17$i$i = 0; - var $$sum18$i = 0, $$sum1819$i$i = 0, $$sum2 = 0, $$sum2$i = 0, $$sum2$i$i = 0, $$sum2$i$i$i = 0, $$sum2$i16$i = 0, $$sum2$i18$i = 0, $$sum2$i21$i = 0, $$sum20$i$i = 0, $$sum21$i$i = 0, $$sum22$i$i = 0, $$sum23$i$i = 0, $$sum24$i$i = 0, $$sum25$i$i = 0, $$sum27$i$i = 0, $$sum28$i$i = 0, $$sum29$i$i = 0, $$sum3$i = 0, $$sum3$i27 = 0; - var $$sum30$i$i = 0, $$sum3132$i$i = 0, $$sum34$i$i = 0, $$sum3536$i$i = 0, $$sum3738$i$i = 0, $$sum39$i$i = 0, $$sum4 = 0, $$sum4$i = 0, $$sum4$i$i = 0, $$sum4$i28 = 0, $$sum40$i$i = 0, $$sum41$i$i = 0, $$sum42$i$i = 0, $$sum5$i = 0, $$sum5$i$i = 0, $$sum56 = 0, $$sum6$i = 0, $$sum67$i$i = 0, $$sum7$i = 0, $$sum8$i = 0; - var $$sum9 = 0, $$sum9$i = 0, $$sum9$i$i = 0, $$tsize$1$i = 0, $$v$0$i = 0, $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0; - var $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0, $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0; - var $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0, $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0; - var $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0, $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0; - var $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0, $107 = 0, $1070 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0; - var $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0; - var $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0; - var $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0; - var $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0; - var $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0; - var $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0; - var $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0; - var $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0; - var $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0; - var $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0; - var $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0; - var $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0; - var $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0; - var $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0; - var $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0; - var $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0; - var $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0; - var $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0; - var $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0; - var $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0; - var $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0; - var $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0; - var $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0; - var $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0; - var $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0; - var $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0; - var $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0; - var $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0; - var $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0; - var $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0; - var $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0; - var $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0; - var $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0; - var $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0; - var $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0; - var $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0; - var $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0; - var $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0; - var $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0; - var $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0; - var $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0; - var $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0; - var $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0; - var $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0, $91 = 0, $910 = 0, $911 = 0; - var $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0, $928 = 0, $929 = 0, $93 = 0; - var $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0, $946 = 0, $947 = 0, $948 = 0; - var $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0, $964 = 0, $965 = 0, $966 = 0; - var $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0; - var $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, $F$0$i$i = 0, $F1$0$i = 0, $F4$0 = 0, $F4$0$i$i = 0; - var $F5$0$i = 0, $I1$0$i$i = 0, $I7$0$i = 0, $I7$0$i$i = 0, $K12$029$i = 0, $K2$07$i$i = 0, $K8$051$i$i = 0, $R$0$i = 0, $R$0$i$i = 0, $R$0$i$i$lcssa = 0, $R$0$i$lcssa = 0, $R$0$i18 = 0, $R$0$i18$lcssa = 0, $R$1$i = 0, $R$1$i$i = 0, $R$1$i20 = 0, $RP$0$i = 0, $RP$0$i$i = 0, $RP$0$i$i$lcssa = 0, $RP$0$i$lcssa = 0; - var $RP$0$i17 = 0, $RP$0$i17$lcssa = 0, $T$0$lcssa$i = 0, $T$0$lcssa$i$i = 0, $T$0$lcssa$i25$i = 0, $T$028$i = 0, $T$028$i$lcssa = 0, $T$050$i$i = 0, $T$050$i$i$lcssa = 0, $T$06$i$i = 0, $T$06$i$i$lcssa = 0, $br$0$ph$i = 0, $cond$i = 0, $cond$i$i = 0, $cond$i21 = 0, $exitcond$i$i = 0, $i$02$i$i = 0, $idx$0$i = 0, $mem$0 = 0, $nb$0 = 0; - var $not$$i = 0, $not$$i$i = 0, $not$$i26$i = 0, $oldfirst$0$i$i = 0, $or$cond$i = 0, $or$cond$i30 = 0, $or$cond1$i = 0, $or$cond19$i = 0, $or$cond2$i = 0, $or$cond3$i = 0, $or$cond5$i = 0, $or$cond57$i = 0, $or$cond6$i = 0, $or$cond8$i = 0, $or$cond9$i = 0, $qsize$0$i$i = 0, $rsize$0$i = 0, $rsize$0$i$lcssa = 0, $rsize$0$i15 = 0, $rsize$1$i = 0; - var $rsize$2$i = 0, $rsize$3$lcssa$i = 0, $rsize$331$i = 0, $rst$0$i = 0, $rst$1$i = 0, $sizebits$0$i = 0, $sp$0$i$i = 0, $sp$0$i$i$i = 0, $sp$084$i = 0, $sp$084$i$lcssa = 0, $sp$183$i = 0, $sp$183$i$lcssa = 0, $ssize$0$$i = 0, $ssize$0$i = 0, $ssize$1$ph$i = 0, $ssize$2$i = 0, $t$0$i = 0, $t$0$i14 = 0, $t$1$i = 0, $t$2$ph$i = 0; - var $t$2$v$3$i = 0, $t$230$i = 0, $tbase$255$i = 0, $tsize$0$ph$i = 0, $tsize$0323944$i = 0, $tsize$1$i = 0, $tsize$254$i = 0, $v$0$i = 0, $v$0$i$lcssa = 0, $v$0$i16 = 0, $v$1$i = 0, $v$2$i = 0, $v$3$lcssa$i = 0, $v$3$ph$i = 0, $v$332$i = 0, label = 0, sp = 0; +function _malloc($0) { + $0 = $0|0; + var $$$0192$i = 0, $$$0193$i = 0, $$$4236$i = 0, $$$4351$i = 0, $$$i = 0, $$0 = 0, $$0$i$i = 0, $$0$i$i$i = 0, $$0$i18$i = 0, $$01$i$i = 0, $$0189$i = 0, $$0192$lcssa$i = 0, $$01928$i = 0, $$0193$lcssa$i = 0, $$01937$i = 0, $$0197 = 0, $$0199 = 0, $$0206$i$i = 0, $$0207$i$i = 0, $$0211$i$i = 0; + var $$0212$i$i = 0, $$024371$i = 0, $$0287$i$i = 0, $$0288$i$i = 0, $$0289$i$i = 0, $$0295$i$i = 0, $$0296$i$i = 0, $$0342$i = 0, $$0344$i = 0, $$0345$i = 0, $$0347$i = 0, $$0353$i = 0, $$0358$i = 0, $$0359$$i = 0, $$0359$i = 0, $$0361$i = 0, $$0362$i = 0, $$0368$i = 0, $$1196$i = 0, $$1198$i = 0; + var $$124470$i = 0, $$1291$i$i = 0, $$1293$i$i = 0, $$1343$i = 0, $$1348$i = 0, $$1363$i = 0, $$1370$i = 0, $$1374$i = 0, $$2234253237$i = 0, $$2247$ph$i = 0, $$2253$ph$i = 0, $$2355$i = 0, $$3$i = 0, $$3$i$i = 0, $$3$i201 = 0, $$3350$i = 0, $$3372$i = 0, $$4$lcssa$i = 0, $$4$ph$i = 0, $$415$i = 0; + var $$4236$i = 0, $$4351$lcssa$i = 0, $$435114$i = 0, $$4357$$4$i = 0, $$4357$ph$i = 0, $$435713$i = 0, $$723948$i = 0, $$749$i = 0, $$pre = 0, $$pre$i = 0, $$pre$i$i = 0, $$pre$i19$i = 0, $$pre$i210 = 0, $$pre$i212 = 0, $$pre$phi$i$iZ2D = 0, $$pre$phi$i20$iZ2D = 0, $$pre$phi$i211Z2D = 0, $$pre$phi$iZ2D = 0, $$pre$phi11$i$iZ2D = 0, $$pre$phiZ2D = 0; + var $$pre10$i$i = 0, $$sink1$i = 0, $$sink1$i$i = 0, $$sink16$i = 0, $$sink2$i = 0, $$sink2$i204 = 0, $$sink3$i = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0; + var $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0, $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0; + var $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0, $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0; + var $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0, $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0; + var $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0; + var $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0; + var $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0; + var $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0; + var $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0; + var $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0; + var $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0; + var $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0; + var $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0; + var $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0; + var $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0; + var $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0; + var $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0; + var $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0; + var $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0; + var $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0; + var $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0; + var $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0; + var $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0; + var $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0; + var $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0; + var $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0; + var $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0; + var $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0; + var $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0; + var $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0; + var $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0; + var $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0; + var $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0; + var $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0; + var $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0; + var $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0; + var $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0; + var $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0; + var $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0; + var $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0; + var $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0; + var $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0; + var $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0; + var $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0; + var $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0; + var $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0; + var $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0; + var $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0; + var $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0; + var $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0; + var $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0; + var $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0, $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0; + var $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0; + var $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, $cond$i = 0, $cond$i$i = 0, $cond$i208 = 0, $exitcond$i$i = 0, $not$$i = 0, $not$$i$i = 0, $not$$i17$i = 0, $not$$i209 = 0, $not$$i216 = 0, $not$1$i = 0, $not$1$i203 = 0, $not$5$i = 0, $not$7$i$i = 0, $not$8$i = 0, $not$9$i = 0; + var $or$cond$i = 0, $or$cond$i214 = 0, $or$cond1$i = 0, $or$cond10$i = 0, $or$cond11$i = 0, $or$cond11$not$i = 0, $or$cond12$i = 0, $or$cond2$i = 0, $or$cond2$i215 = 0, $or$cond5$i = 0, $or$cond50$i = 0, $or$cond51$i = 0, $or$cond7$i = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = ($bytes>>>0)<(245); + STACKTOP = STACKTOP + 16|0; + $1 = sp; + $2 = ($0>>>0)<(245); do { - if ($0) { - $1 = ($bytes>>>0)<(11); - $2 = (($bytes) + 11)|0; - $3 = $2 & -8; - $4 = $1 ? 16 : $3; - $5 = $4 >>> 3; - $6 = HEAP32[32676>>2]|0; - $7 = $6 >>> $5; - $8 = $7 & 3; - $9 = ($8|0)==(0); - if (!($9)) { - $10 = $7 & 1; - $11 = $10 ^ 1; - $12 = (($11) + ($5))|0; - $13 = $12 << 1; - $14 = (32716 + ($13<<2)|0); - $$sum10 = (($13) + 2)|0; - $15 = (32716 + ($$sum10<<2)|0); - $16 = HEAP32[$15>>2]|0; + if ($2) { + $3 = ($0>>>0)<(11); + $4 = (($0) + 11)|0; + $5 = $4 & -8; + $6 = $3 ? 16 : $5; + $7 = $6 >>> 3; + $8 = HEAP32[8241]|0; + $9 = $8 >>> $7; + $10 = $9 & 3; + $11 = ($10|0)==(0); + if (!($11)) { + $12 = $9 & 1; + $13 = $12 ^ 1; + $14 = (($13) + ($7))|0; + $15 = $14 << 1; + $16 = (33004 + ($15<<2)|0); $17 = ((($16)) + 8|0); $18 = HEAP32[$17>>2]|0; - $19 = ($14|0)==($18|0); + $19 = ((($18)) + 8|0); + $20 = HEAP32[$19>>2]|0; + $21 = ($16|0)==($20|0); do { - if ($19) { - $20 = 1 << $12; - $21 = $20 ^ -1; - $22 = $6 & $21; - HEAP32[32676>>2] = $22; + if ($21) { + $22 = 1 << $14; + $23 = $22 ^ -1; + $24 = $8 & $23; + HEAP32[8241] = $24; } else { - $23 = HEAP32[(32692)>>2]|0; - $24 = ($18>>>0)<($23>>>0); - if ($24) { + $25 = HEAP32[(32980)>>2]|0; + $26 = ($20>>>0)<($25>>>0); + if ($26) { _abort(); // unreachable; } - $25 = ((($18)) + 12|0); - $26 = HEAP32[$25>>2]|0; - $27 = ($26|0)==($16|0); - if ($27) { - HEAP32[$25>>2] = $14; - HEAP32[$15>>2] = $18; + $27 = ((($20)) + 12|0); + $28 = HEAP32[$27>>2]|0; + $29 = ($28|0)==($18|0); + if ($29) { + HEAP32[$27>>2] = $16; + HEAP32[$17>>2] = $20; break; } else { _abort(); @@ -20782,81 +17189,79 @@ function _malloc($bytes) { } } } while(0); - $28 = $12 << 3; - $29 = $28 | 3; - $30 = ((($16)) + 4|0); - HEAP32[$30>>2] = $29; - $$sum1112 = $28 | 4; - $31 = (($16) + ($$sum1112)|0); - $32 = HEAP32[$31>>2]|0; - $33 = $32 | 1; - HEAP32[$31>>2] = $33; - $mem$0 = $17; - return ($mem$0|0); + $30 = $14 << 3; + $31 = $30 | 3; + $32 = ((($18)) + 4|0); + HEAP32[$32>>2] = $31; + $33 = (($18) + ($30)|0); + $34 = ((($33)) + 4|0); + $35 = HEAP32[$34>>2]|0; + $36 = $35 | 1; + HEAP32[$34>>2] = $36; + $$0 = $19; + STACKTOP = sp;return ($$0|0); } - $34 = HEAP32[(32684)>>2]|0; - $35 = ($4>>>0)>($34>>>0); - if ($35) { - $36 = ($7|0)==(0); - if (!($36)) { - $37 = $7 << $5; - $38 = 2 << $5; - $39 = (0 - ($38))|0; - $40 = $38 | $39; - $41 = $37 & $40; + $37 = HEAP32[(32972)>>2]|0; + $38 = ($6>>>0)>($37>>>0); + if ($38) { + $39 = ($9|0)==(0); + if (!($39)) { + $40 = $9 << $7; + $41 = 2 << $7; $42 = (0 - ($41))|0; - $43 = $41 & $42; - $44 = (($43) + -1)|0; - $45 = $44 >>> 12; - $46 = $45 & 16; - $47 = $44 >>> $46; - $48 = $47 >>> 5; - $49 = $48 & 8; - $50 = $49 | $46; - $51 = $47 >>> $49; - $52 = $51 >>> 2; - $53 = $52 & 4; - $54 = $50 | $53; - $55 = $51 >>> $53; - $56 = $55 >>> 1; - $57 = $56 & 2; - $58 = $54 | $57; - $59 = $55 >>> $57; - $60 = $59 >>> 1; - $61 = $60 & 1; - $62 = $58 | $61; - $63 = $59 >>> $61; - $64 = (($62) + ($63))|0; - $65 = $64 << 1; - $66 = (32716 + ($65<<2)|0); - $$sum4 = (($65) + 2)|0; - $67 = (32716 + ($$sum4<<2)|0); - $68 = HEAP32[$67>>2]|0; - $69 = ((($68)) + 8|0); - $70 = HEAP32[$69>>2]|0; - $71 = ($66|0)==($70|0); + $43 = $41 | $42; + $44 = $40 & $43; + $45 = (0 - ($44))|0; + $46 = $44 & $45; + $47 = (($46) + -1)|0; + $48 = $47 >>> 12; + $49 = $48 & 16; + $50 = $47 >>> $49; + $51 = $50 >>> 5; + $52 = $51 & 8; + $53 = $52 | $49; + $54 = $50 >>> $52; + $55 = $54 >>> 2; + $56 = $55 & 4; + $57 = $53 | $56; + $58 = $54 >>> $56; + $59 = $58 >>> 1; + $60 = $59 & 2; + $61 = $57 | $60; + $62 = $58 >>> $60; + $63 = $62 >>> 1; + $64 = $63 & 1; + $65 = $61 | $64; + $66 = $62 >>> $64; + $67 = (($65) + ($66))|0; + $68 = $67 << 1; + $69 = (33004 + ($68<<2)|0); + $70 = ((($69)) + 8|0); + $71 = HEAP32[$70>>2]|0; + $72 = ((($71)) + 8|0); + $73 = HEAP32[$72>>2]|0; + $74 = ($69|0)==($73|0); do { - if ($71) { - $72 = 1 << $64; - $73 = $72 ^ -1; - $74 = $6 & $73; - HEAP32[32676>>2] = $74; - $89 = $34; + if ($74) { + $75 = 1 << $67; + $76 = $75 ^ -1; + $77 = $8 & $76; + HEAP32[8241] = $77; + $98 = $77; } else { - $75 = HEAP32[(32692)>>2]|0; - $76 = ($70>>>0)<($75>>>0); - if ($76) { + $78 = HEAP32[(32980)>>2]|0; + $79 = ($73>>>0)<($78>>>0); + if ($79) { _abort(); // unreachable; } - $77 = ((($70)) + 12|0); - $78 = HEAP32[$77>>2]|0; - $79 = ($78|0)==($68|0); - if ($79) { - HEAP32[$77>>2] = $66; - HEAP32[$67>>2] = $70; - $$pre = HEAP32[(32684)>>2]|0; - $89 = $$pre; + $80 = ((($73)) + 12|0); + $81 = HEAP32[$80>>2]|0; + $82 = ($81|0)==($71|0); + if ($82) { + HEAP32[$80>>2] = $69; + HEAP32[$70>>2] = $73; + $98 = $8; break; } else { _abort(); @@ -20864,205 +17269,207 @@ function _malloc($bytes) { } } } while(0); - $80 = $64 << 3; - $81 = (($80) - ($4))|0; - $82 = $4 | 3; - $83 = ((($68)) + 4|0); - HEAP32[$83>>2] = $82; - $84 = (($68) + ($4)|0); - $85 = $81 | 1; - $$sum56 = $4 | 4; - $86 = (($68) + ($$sum56)|0); + $83 = $67 << 3; + $84 = (($83) - ($6))|0; + $85 = $6 | 3; + $86 = ((($71)) + 4|0); HEAP32[$86>>2] = $85; - $87 = (($68) + ($80)|0); - HEAP32[$87>>2] = $81; - $88 = ($89|0)==(0); - if (!($88)) { - $90 = HEAP32[(32696)>>2]|0; - $91 = $89 >>> 3; - $92 = $91 << 1; - $93 = (32716 + ($92<<2)|0); - $94 = HEAP32[32676>>2]|0; - $95 = 1 << $91; - $96 = $94 & $95; - $97 = ($96|0)==(0); - if ($97) { - $98 = $94 | $95; - HEAP32[32676>>2] = $98; - $$pre105 = (($92) + 2)|0; - $$pre106 = (32716 + ($$pre105<<2)|0); - $$pre$phiZ2D = $$pre106;$F4$0 = $93; + $87 = (($71) + ($6)|0); + $88 = $84 | 1; + $89 = ((($87)) + 4|0); + HEAP32[$89>>2] = $88; + $90 = (($87) + ($84)|0); + HEAP32[$90>>2] = $84; + $91 = ($37|0)==(0); + if (!($91)) { + $92 = HEAP32[(32984)>>2]|0; + $93 = $37 >>> 3; + $94 = $93 << 1; + $95 = (33004 + ($94<<2)|0); + $96 = 1 << $93; + $97 = $98 & $96; + $99 = ($97|0)==(0); + if ($99) { + $100 = $98 | $96; + HEAP32[8241] = $100; + $$pre = ((($95)) + 8|0); + $$0199 = $95;$$pre$phiZ2D = $$pre; } else { - $$sum9 = (($92) + 2)|0; - $99 = (32716 + ($$sum9<<2)|0); - $100 = HEAP32[$99>>2]|0; - $101 = HEAP32[(32692)>>2]|0; - $102 = ($100>>>0)<($101>>>0); - if ($102) { + $101 = ((($95)) + 8|0); + $102 = HEAP32[$101>>2]|0; + $103 = HEAP32[(32980)>>2]|0; + $104 = ($102>>>0)<($103>>>0); + if ($104) { _abort(); // unreachable; } else { - $$pre$phiZ2D = $99;$F4$0 = $100; + $$0199 = $102;$$pre$phiZ2D = $101; } } - HEAP32[$$pre$phiZ2D>>2] = $90; - $103 = ((($F4$0)) + 12|0); - HEAP32[$103>>2] = $90; - $104 = ((($90)) + 8|0); - HEAP32[$104>>2] = $F4$0; - $105 = ((($90)) + 12|0); - HEAP32[$105>>2] = $93; + HEAP32[$$pre$phiZ2D>>2] = $92; + $105 = ((($$0199)) + 12|0); + HEAP32[$105>>2] = $92; + $106 = ((($92)) + 8|0); + HEAP32[$106>>2] = $$0199; + $107 = ((($92)) + 12|0); + HEAP32[$107>>2] = $95; } - HEAP32[(32684)>>2] = $81; - HEAP32[(32696)>>2] = $84; - $mem$0 = $69; - return ($mem$0|0); + HEAP32[(32972)>>2] = $84; + HEAP32[(32984)>>2] = $87; + $$0 = $72; + STACKTOP = sp;return ($$0|0); } - $106 = HEAP32[(32680)>>2]|0; - $107 = ($106|0)==(0); - if ($107) { - $nb$0 = $4; + $108 = HEAP32[(32968)>>2]|0; + $109 = ($108|0)==(0); + if ($109) { + $$0197 = $6; } else { - $108 = (0 - ($106))|0; - $109 = $106 & $108; - $110 = (($109) + -1)|0; - $111 = $110 >>> 12; - $112 = $111 & 16; - $113 = $110 >>> $112; - $114 = $113 >>> 5; - $115 = $114 & 8; - $116 = $115 | $112; - $117 = $113 >>> $115; - $118 = $117 >>> 2; - $119 = $118 & 4; - $120 = $116 | $119; - $121 = $117 >>> $119; - $122 = $121 >>> 1; - $123 = $122 & 2; - $124 = $120 | $123; - $125 = $121 >>> $123; - $126 = $125 >>> 1; - $127 = $126 & 1; - $128 = $124 | $127; - $129 = $125 >>> $127; - $130 = (($128) + ($129))|0; - $131 = (32980 + ($130<<2)|0); - $132 = HEAP32[$131>>2]|0; - $133 = ((($132)) + 4|0); + $110 = (0 - ($108))|0; + $111 = $108 & $110; + $112 = (($111) + -1)|0; + $113 = $112 >>> 12; + $114 = $113 & 16; + $115 = $112 >>> $114; + $116 = $115 >>> 5; + $117 = $116 & 8; + $118 = $117 | $114; + $119 = $115 >>> $117; + $120 = $119 >>> 2; + $121 = $120 & 4; + $122 = $118 | $121; + $123 = $119 >>> $121; + $124 = $123 >>> 1; + $125 = $124 & 2; + $126 = $122 | $125; + $127 = $123 >>> $125; + $128 = $127 >>> 1; + $129 = $128 & 1; + $130 = $126 | $129; + $131 = $127 >>> $129; + $132 = (($130) + ($131))|0; + $133 = (33268 + ($132<<2)|0); $134 = HEAP32[$133>>2]|0; - $135 = $134 & -8; - $136 = (($135) - ($4))|0; - $rsize$0$i = $136;$t$0$i = $132;$v$0$i = $132; - while(1) { - $137 = ((($t$0$i)) + 16|0); - $138 = HEAP32[$137>>2]|0; - $139 = ($138|0)==(0|0); - if ($139) { - $140 = ((($t$0$i)) + 20|0); - $141 = HEAP32[$140>>2]|0; - $142 = ($141|0)==(0|0); - if ($142) { - $rsize$0$i$lcssa = $rsize$0$i;$v$0$i$lcssa = $v$0$i; + $135 = ((($134)) + 4|0); + $136 = HEAP32[$135>>2]|0; + $137 = $136 & -8; + $138 = (($137) - ($6))|0; + $139 = ((($134)) + 16|0); + $140 = HEAP32[$139>>2]|0; + $not$5$i = ($140|0)==(0|0); + $$sink16$i = $not$5$i&1; + $141 = (((($134)) + 16|0) + ($$sink16$i<<2)|0); + $142 = HEAP32[$141>>2]|0; + $143 = ($142|0)==(0|0); + if ($143) { + $$0192$lcssa$i = $134;$$0193$lcssa$i = $138; + } else { + $$01928$i = $134;$$01937$i = $138;$145 = $142; + while(1) { + $144 = ((($145)) + 4|0); + $146 = HEAP32[$144>>2]|0; + $147 = $146 & -8; + $148 = (($147) - ($6))|0; + $149 = ($148>>>0)<($$01937$i>>>0); + $$$0193$i = $149 ? $148 : $$01937$i; + $$$0192$i = $149 ? $145 : $$01928$i; + $150 = ((($145)) + 16|0); + $151 = HEAP32[$150>>2]|0; + $not$$i = ($151|0)==(0|0); + $$sink1$i = $not$$i&1; + $152 = (((($145)) + 16|0) + ($$sink1$i<<2)|0); + $153 = HEAP32[$152>>2]|0; + $154 = ($153|0)==(0|0); + if ($154) { + $$0192$lcssa$i = $$$0192$i;$$0193$lcssa$i = $$$0193$i; break; } else { - $144 = $141; + $$01928$i = $$$0192$i;$$01937$i = $$$0193$i;$145 = $153; } - } else { - $144 = $138; } - $143 = ((($144)) + 4|0); - $145 = HEAP32[$143>>2]|0; - $146 = $145 & -8; - $147 = (($146) - ($4))|0; - $148 = ($147>>>0)<($rsize$0$i>>>0); - $$rsize$0$i = $148 ? $147 : $rsize$0$i; - $$v$0$i = $148 ? $144 : $v$0$i; - $rsize$0$i = $$rsize$0$i;$t$0$i = $144;$v$0$i = $$v$0$i; } - $149 = HEAP32[(32692)>>2]|0; - $150 = ($v$0$i$lcssa>>>0)<($149>>>0); - if ($150) { + $155 = HEAP32[(32980)>>2]|0; + $156 = ($$0192$lcssa$i>>>0)<($155>>>0); + if ($156) { _abort(); // unreachable; } - $151 = (($v$0$i$lcssa) + ($4)|0); - $152 = ($v$0$i$lcssa>>>0)<($151>>>0); - if (!($152)) { + $157 = (($$0192$lcssa$i) + ($6)|0); + $158 = ($$0192$lcssa$i>>>0)<($157>>>0); + if (!($158)) { _abort(); // unreachable; } - $153 = ((($v$0$i$lcssa)) + 24|0); - $154 = HEAP32[$153>>2]|0; - $155 = ((($v$0$i$lcssa)) + 12|0); - $156 = HEAP32[$155>>2]|0; - $157 = ($156|0)==($v$0$i$lcssa|0); + $159 = ((($$0192$lcssa$i)) + 24|0); + $160 = HEAP32[$159>>2]|0; + $161 = ((($$0192$lcssa$i)) + 12|0); + $162 = HEAP32[$161>>2]|0; + $163 = ($162|0)==($$0192$lcssa$i|0); do { - if ($157) { - $167 = ((($v$0$i$lcssa)) + 20|0); - $168 = HEAP32[$167>>2]|0; - $169 = ($168|0)==(0|0); - if ($169) { - $170 = ((($v$0$i$lcssa)) + 16|0); - $171 = HEAP32[$170>>2]|0; - $172 = ($171|0)==(0|0); - if ($172) { - $R$1$i = 0; + if ($163) { + $173 = ((($$0192$lcssa$i)) + 20|0); + $174 = HEAP32[$173>>2]|0; + $175 = ($174|0)==(0|0); + if ($175) { + $176 = ((($$0192$lcssa$i)) + 16|0); + $177 = HEAP32[$176>>2]|0; + $178 = ($177|0)==(0|0); + if ($178) { + $$3$i = 0; break; } else { - $R$0$i = $171;$RP$0$i = $170; + $$1196$i = $177;$$1198$i = $176; } } else { - $R$0$i = $168;$RP$0$i = $167; + $$1196$i = $174;$$1198$i = $173; } while(1) { - $173 = ((($R$0$i)) + 20|0); - $174 = HEAP32[$173>>2]|0; - $175 = ($174|0)==(0|0); - if (!($175)) { - $R$0$i = $174;$RP$0$i = $173; + $179 = ((($$1196$i)) + 20|0); + $180 = HEAP32[$179>>2]|0; + $181 = ($180|0)==(0|0); + if (!($181)) { + $$1196$i = $180;$$1198$i = $179; continue; } - $176 = ((($R$0$i)) + 16|0); - $177 = HEAP32[$176>>2]|0; - $178 = ($177|0)==(0|0); - if ($178) { - $R$0$i$lcssa = $R$0$i;$RP$0$i$lcssa = $RP$0$i; + $182 = ((($$1196$i)) + 16|0); + $183 = HEAP32[$182>>2]|0; + $184 = ($183|0)==(0|0); + if ($184) { break; } else { - $R$0$i = $177;$RP$0$i = $176; + $$1196$i = $183;$$1198$i = $182; } } - $179 = ($RP$0$i$lcssa>>>0)<($149>>>0); - if ($179) { + $185 = ($$1198$i>>>0)<($155>>>0); + if ($185) { _abort(); // unreachable; } else { - HEAP32[$RP$0$i$lcssa>>2] = 0; - $R$1$i = $R$0$i$lcssa; + HEAP32[$$1198$i>>2] = 0; + $$3$i = $$1196$i; break; } } else { - $158 = ((($v$0$i$lcssa)) + 8|0); - $159 = HEAP32[$158>>2]|0; - $160 = ($159>>>0)<($149>>>0); - if ($160) { + $164 = ((($$0192$lcssa$i)) + 8|0); + $165 = HEAP32[$164>>2]|0; + $166 = ($165>>>0)<($155>>>0); + if ($166) { _abort(); // unreachable; } - $161 = ((($159)) + 12|0); - $162 = HEAP32[$161>>2]|0; - $163 = ($162|0)==($v$0$i$lcssa|0); - if (!($163)) { + $167 = ((($165)) + 12|0); + $168 = HEAP32[$167>>2]|0; + $169 = ($168|0)==($$0192$lcssa$i|0); + if (!($169)) { _abort(); // unreachable; } - $164 = ((($156)) + 8|0); - $165 = HEAP32[$164>>2]|0; - $166 = ($165|0)==($v$0$i$lcssa|0); - if ($166) { - HEAP32[$161>>2] = $156; - HEAP32[$164>>2] = $159; - $R$1$i = $156; + $170 = ((($162)) + 8|0); + $171 = HEAP32[$170>>2]|0; + $172 = ($171|0)==($$0192$lcssa$i|0); + if ($172) { + HEAP32[$167>>2] = $162; + HEAP32[$170>>2] = $165; + $$3$i = $162; break; } else { _abort(); @@ -21070,434 +17477,426 @@ function _malloc($bytes) { } } } while(0); - $180 = ($154|0)==(0|0); - do { - if (!($180)) { - $181 = ((($v$0$i$lcssa)) + 28|0); - $182 = HEAP32[$181>>2]|0; - $183 = (32980 + ($182<<2)|0); - $184 = HEAP32[$183>>2]|0; - $185 = ($v$0$i$lcssa|0)==($184|0); - if ($185) { - HEAP32[$183>>2] = $R$1$i; - $cond$i = ($R$1$i|0)==(0|0); - if ($cond$i) { - $186 = 1 << $182; - $187 = $186 ^ -1; - $188 = HEAP32[(32680)>>2]|0; - $189 = $188 & $187; - HEAP32[(32680)>>2] = $189; - break; - } - } else { - $190 = HEAP32[(32692)>>2]|0; - $191 = ($154>>>0)<($190>>>0); + $186 = ($160|0)==(0|0); + L73: do { + if (!($186)) { + $187 = ((($$0192$lcssa$i)) + 28|0); + $188 = HEAP32[$187>>2]|0; + $189 = (33268 + ($188<<2)|0); + $190 = HEAP32[$189>>2]|0; + $191 = ($$0192$lcssa$i|0)==($190|0); + do { if ($191) { - _abort(); - // unreachable; - } - $192 = ((($154)) + 16|0); - $193 = HEAP32[$192>>2]|0; - $194 = ($193|0)==($v$0$i$lcssa|0); - if ($194) { - HEAP32[$192>>2] = $R$1$i; + HEAP32[$189>>2] = $$3$i; + $cond$i = ($$3$i|0)==(0|0); + if ($cond$i) { + $192 = 1 << $188; + $193 = $192 ^ -1; + $194 = $108 & $193; + HEAP32[(32968)>>2] = $194; + break L73; + } } else { - $195 = ((($154)) + 20|0); - HEAP32[$195>>2] = $R$1$i; - } - $196 = ($R$1$i|0)==(0|0); - if ($196) { - break; + $195 = HEAP32[(32980)>>2]|0; + $196 = ($160>>>0)<($195>>>0); + if ($196) { + _abort(); + // unreachable; + } else { + $197 = ((($160)) + 16|0); + $198 = HEAP32[$197>>2]|0; + $not$1$i = ($198|0)!=($$0192$lcssa$i|0); + $$sink2$i = $not$1$i&1; + $199 = (((($160)) + 16|0) + ($$sink2$i<<2)|0); + HEAP32[$199>>2] = $$3$i; + $200 = ($$3$i|0)==(0|0); + if ($200) { + break L73; + } else { + break; + } + } } - } - $197 = HEAP32[(32692)>>2]|0; - $198 = ($R$1$i>>>0)<($197>>>0); - if ($198) { + } while(0); + $201 = HEAP32[(32980)>>2]|0; + $202 = ($$3$i>>>0)<($201>>>0); + if ($202) { _abort(); // unreachable; } - $199 = ((($R$1$i)) + 24|0); - HEAP32[$199>>2] = $154; - $200 = ((($v$0$i$lcssa)) + 16|0); - $201 = HEAP32[$200>>2]|0; - $202 = ($201|0)==(0|0); + $203 = ((($$3$i)) + 24|0); + HEAP32[$203>>2] = $160; + $204 = ((($$0192$lcssa$i)) + 16|0); + $205 = HEAP32[$204>>2]|0; + $206 = ($205|0)==(0|0); do { - if (!($202)) { - $203 = ($201>>>0)<($197>>>0); - if ($203) { + if (!($206)) { + $207 = ($205>>>0)<($201>>>0); + if ($207) { _abort(); // unreachable; } else { - $204 = ((($R$1$i)) + 16|0); - HEAP32[$204>>2] = $201; - $205 = ((($201)) + 24|0); - HEAP32[$205>>2] = $R$1$i; + $208 = ((($$3$i)) + 16|0); + HEAP32[$208>>2] = $205; + $209 = ((($205)) + 24|0); + HEAP32[$209>>2] = $$3$i; break; } } } while(0); - $206 = ((($v$0$i$lcssa)) + 20|0); - $207 = HEAP32[$206>>2]|0; - $208 = ($207|0)==(0|0); - if (!($208)) { - $209 = HEAP32[(32692)>>2]|0; - $210 = ($207>>>0)<($209>>>0); - if ($210) { + $210 = ((($$0192$lcssa$i)) + 20|0); + $211 = HEAP32[$210>>2]|0; + $212 = ($211|0)==(0|0); + if (!($212)) { + $213 = HEAP32[(32980)>>2]|0; + $214 = ($211>>>0)<($213>>>0); + if ($214) { _abort(); // unreachable; } else { - $211 = ((($R$1$i)) + 20|0); - HEAP32[$211>>2] = $207; - $212 = ((($207)) + 24|0); - HEAP32[$212>>2] = $R$1$i; + $215 = ((($$3$i)) + 20|0); + HEAP32[$215>>2] = $211; + $216 = ((($211)) + 24|0); + HEAP32[$216>>2] = $$3$i; break; } } } } while(0); - $213 = ($rsize$0$i$lcssa>>>0)<(16); - if ($213) { - $214 = (($rsize$0$i$lcssa) + ($4))|0; - $215 = $214 | 3; - $216 = ((($v$0$i$lcssa)) + 4|0); - HEAP32[$216>>2] = $215; - $$sum4$i = (($214) + 4)|0; - $217 = (($v$0$i$lcssa) + ($$sum4$i)|0); - $218 = HEAP32[$217>>2]|0; - $219 = $218 | 1; - HEAP32[$217>>2] = $219; + $217 = ($$0193$lcssa$i>>>0)<(16); + if ($217) { + $218 = (($$0193$lcssa$i) + ($6))|0; + $219 = $218 | 3; + $220 = ((($$0192$lcssa$i)) + 4|0); + HEAP32[$220>>2] = $219; + $221 = (($$0192$lcssa$i) + ($218)|0); + $222 = ((($221)) + 4|0); + $223 = HEAP32[$222>>2]|0; + $224 = $223 | 1; + HEAP32[$222>>2] = $224; } else { - $220 = $4 | 3; - $221 = ((($v$0$i$lcssa)) + 4|0); - HEAP32[$221>>2] = $220; - $222 = $rsize$0$i$lcssa | 1; - $$sum$i35 = $4 | 4; - $223 = (($v$0$i$lcssa) + ($$sum$i35)|0); - HEAP32[$223>>2] = $222; - $$sum1$i = (($rsize$0$i$lcssa) + ($4))|0; - $224 = (($v$0$i$lcssa) + ($$sum1$i)|0); - HEAP32[$224>>2] = $rsize$0$i$lcssa; - $225 = HEAP32[(32684)>>2]|0; - $226 = ($225|0)==(0); - if (!($226)) { - $227 = HEAP32[(32696)>>2]|0; - $228 = $225 >>> 3; - $229 = $228 << 1; - $230 = (32716 + ($229<<2)|0); - $231 = HEAP32[32676>>2]|0; - $232 = 1 << $228; - $233 = $231 & $232; - $234 = ($233|0)==(0); - if ($234) { - $235 = $231 | $232; - HEAP32[32676>>2] = $235; - $$pre$i = (($229) + 2)|0; - $$pre8$i = (32716 + ($$pre$i<<2)|0); - $$pre$phi$iZ2D = $$pre8$i;$F1$0$i = $230; + $225 = $6 | 3; + $226 = ((($$0192$lcssa$i)) + 4|0); + HEAP32[$226>>2] = $225; + $227 = $$0193$lcssa$i | 1; + $228 = ((($157)) + 4|0); + HEAP32[$228>>2] = $227; + $229 = (($157) + ($$0193$lcssa$i)|0); + HEAP32[$229>>2] = $$0193$lcssa$i; + $230 = ($37|0)==(0); + if (!($230)) { + $231 = HEAP32[(32984)>>2]|0; + $232 = $37 >>> 3; + $233 = $232 << 1; + $234 = (33004 + ($233<<2)|0); + $235 = 1 << $232; + $236 = $8 & $235; + $237 = ($236|0)==(0); + if ($237) { + $238 = $8 | $235; + HEAP32[8241] = $238; + $$pre$i = ((($234)) + 8|0); + $$0189$i = $234;$$pre$phi$iZ2D = $$pre$i; } else { - $$sum3$i = (($229) + 2)|0; - $236 = (32716 + ($$sum3$i<<2)|0); - $237 = HEAP32[$236>>2]|0; - $238 = HEAP32[(32692)>>2]|0; - $239 = ($237>>>0)<($238>>>0); - if ($239) { + $239 = ((($234)) + 8|0); + $240 = HEAP32[$239>>2]|0; + $241 = HEAP32[(32980)>>2]|0; + $242 = ($240>>>0)<($241>>>0); + if ($242) { _abort(); // unreachable; } else { - $$pre$phi$iZ2D = $236;$F1$0$i = $237; + $$0189$i = $240;$$pre$phi$iZ2D = $239; } } - HEAP32[$$pre$phi$iZ2D>>2] = $227; - $240 = ((($F1$0$i)) + 12|0); - HEAP32[$240>>2] = $227; - $241 = ((($227)) + 8|0); - HEAP32[$241>>2] = $F1$0$i; - $242 = ((($227)) + 12|0); - HEAP32[$242>>2] = $230; + HEAP32[$$pre$phi$iZ2D>>2] = $231; + $243 = ((($$0189$i)) + 12|0); + HEAP32[$243>>2] = $231; + $244 = ((($231)) + 8|0); + HEAP32[$244>>2] = $$0189$i; + $245 = ((($231)) + 12|0); + HEAP32[$245>>2] = $234; } - HEAP32[(32684)>>2] = $rsize$0$i$lcssa; - HEAP32[(32696)>>2] = $151; + HEAP32[(32972)>>2] = $$0193$lcssa$i; + HEAP32[(32984)>>2] = $157; } - $243 = ((($v$0$i$lcssa)) + 8|0); - $mem$0 = $243; - return ($mem$0|0); + $246 = ((($$0192$lcssa$i)) + 8|0); + $$0 = $246; + STACKTOP = sp;return ($$0|0); } } else { - $nb$0 = $4; + $$0197 = $6; } } else { - $244 = ($bytes>>>0)>(4294967231); - if ($244) { - $nb$0 = -1; + $247 = ($0>>>0)>(4294967231); + if ($247) { + $$0197 = -1; } else { - $245 = (($bytes) + 11)|0; - $246 = $245 & -8; - $247 = HEAP32[(32680)>>2]|0; - $248 = ($247|0)==(0); - if ($248) { - $nb$0 = $246; + $248 = (($0) + 11)|0; + $249 = $248 & -8; + $250 = HEAP32[(32968)>>2]|0; + $251 = ($250|0)==(0); + if ($251) { + $$0197 = $249; } else { - $249 = (0 - ($246))|0; - $250 = $245 >>> 8; - $251 = ($250|0)==(0); - if ($251) { - $idx$0$i = 0; + $252 = (0 - ($249))|0; + $253 = $248 >>> 8; + $254 = ($253|0)==(0); + if ($254) { + $$0358$i = 0; } else { - $252 = ($246>>>0)>(16777215); - if ($252) { - $idx$0$i = 31; + $255 = ($249>>>0)>(16777215); + if ($255) { + $$0358$i = 31; } else { - $253 = (($250) + 1048320)|0; - $254 = $253 >>> 16; - $255 = $254 & 8; - $256 = $250 << $255; - $257 = (($256) + 520192)|0; - $258 = $257 >>> 16; - $259 = $258 & 4; - $260 = $259 | $255; - $261 = $256 << $259; - $262 = (($261) + 245760)|0; - $263 = $262 >>> 16; - $264 = $263 & 2; - $265 = $260 | $264; - $266 = (14 - ($265))|0; - $267 = $261 << $264; - $268 = $267 >>> 15; - $269 = (($266) + ($268))|0; - $270 = $269 << 1; - $271 = (($269) + 7)|0; - $272 = $246 >>> $271; - $273 = $272 & 1; - $274 = $273 | $270; - $idx$0$i = $274; + $256 = (($253) + 1048320)|0; + $257 = $256 >>> 16; + $258 = $257 & 8; + $259 = $253 << $258; + $260 = (($259) + 520192)|0; + $261 = $260 >>> 16; + $262 = $261 & 4; + $263 = $262 | $258; + $264 = $259 << $262; + $265 = (($264) + 245760)|0; + $266 = $265 >>> 16; + $267 = $266 & 2; + $268 = $263 | $267; + $269 = (14 - ($268))|0; + $270 = $264 << $267; + $271 = $270 >>> 15; + $272 = (($269) + ($271))|0; + $273 = $272 << 1; + $274 = (($272) + 7)|0; + $275 = $249 >>> $274; + $276 = $275 & 1; + $277 = $276 | $273; + $$0358$i = $277; } } - $275 = (32980 + ($idx$0$i<<2)|0); - $276 = HEAP32[$275>>2]|0; - $277 = ($276|0)==(0|0); - L123: do { - if ($277) { - $rsize$2$i = $249;$t$1$i = 0;$v$2$i = 0; - label = 86; + $278 = (33268 + ($$0358$i<<2)|0); + $279 = HEAP32[$278>>2]|0; + $280 = ($279|0)==(0|0); + L117: do { + if ($280) { + $$2355$i = 0;$$3$i201 = 0;$$3350$i = $252; + label = 81; } else { - $278 = ($idx$0$i|0)==(31); - $279 = $idx$0$i >>> 1; - $280 = (25 - ($279))|0; - $281 = $278 ? 0 : $280; - $282 = $246 << $281; - $rsize$0$i15 = $249;$rst$0$i = 0;$sizebits$0$i = $282;$t$0$i14 = $276;$v$0$i16 = 0; + $281 = ($$0358$i|0)==(31); + $282 = $$0358$i >>> 1; + $283 = (25 - ($282))|0; + $284 = $281 ? 0 : $283; + $285 = $249 << $284; + $$0342$i = 0;$$0347$i = $252;$$0353$i = $279;$$0359$i = $285;$$0362$i = 0; while(1) { - $283 = ((($t$0$i14)) + 4|0); - $284 = HEAP32[$283>>2]|0; - $285 = $284 & -8; - $286 = (($285) - ($246))|0; - $287 = ($286>>>0)<($rsize$0$i15>>>0); - if ($287) { - $288 = ($285|0)==($246|0); - if ($288) { - $rsize$331$i = $286;$t$230$i = $t$0$i14;$v$332$i = $t$0$i14; - label = 90; - break L123; + $286 = ((($$0353$i)) + 4|0); + $287 = HEAP32[$286>>2]|0; + $288 = $287 & -8; + $289 = (($288) - ($249))|0; + $290 = ($289>>>0)<($$0347$i>>>0); + if ($290) { + $291 = ($289|0)==(0); + if ($291) { + $$415$i = $$0353$i;$$435114$i = 0;$$435713$i = $$0353$i; + label = 85; + break L117; } else { - $rsize$1$i = $286;$v$1$i = $t$0$i14; + $$1343$i = $$0353$i;$$1348$i = $289; } } else { - $rsize$1$i = $rsize$0$i15;$v$1$i = $v$0$i16; + $$1343$i = $$0342$i;$$1348$i = $$0347$i; } - $289 = ((($t$0$i14)) + 20|0); - $290 = HEAP32[$289>>2]|0; - $291 = $sizebits$0$i >>> 31; - $292 = (((($t$0$i14)) + 16|0) + ($291<<2)|0); + $292 = ((($$0353$i)) + 20|0); $293 = HEAP32[$292>>2]|0; - $294 = ($290|0)==(0|0); - $295 = ($290|0)==($293|0); - $or$cond19$i = $294 | $295; - $rst$1$i = $or$cond19$i ? $rst$0$i : $290; - $296 = ($293|0)==(0|0); - $297 = $sizebits$0$i << 1; - if ($296) { - $rsize$2$i = $rsize$1$i;$t$1$i = $rst$1$i;$v$2$i = $v$1$i; - label = 86; + $294 = $$0359$i >>> 31; + $295 = (((($$0353$i)) + 16|0) + ($294<<2)|0); + $296 = HEAP32[$295>>2]|0; + $297 = ($293|0)==(0|0); + $298 = ($293|0)==($296|0); + $or$cond2$i = $297 | $298; + $$1363$i = $or$cond2$i ? $$0362$i : $293; + $299 = ($296|0)==(0|0); + $not$8$i = $299 ^ 1; + $300 = $not$8$i&1; + $$0359$$i = $$0359$i << $300; + if ($299) { + $$2355$i = $$1363$i;$$3$i201 = $$1343$i;$$3350$i = $$1348$i; + label = 81; break; } else { - $rsize$0$i15 = $rsize$1$i;$rst$0$i = $rst$1$i;$sizebits$0$i = $297;$t$0$i14 = $293;$v$0$i16 = $v$1$i; + $$0342$i = $$1343$i;$$0347$i = $$1348$i;$$0353$i = $296;$$0359$i = $$0359$$i;$$0362$i = $$1363$i; } } } } while(0); - if ((label|0) == 86) { - $298 = ($t$1$i|0)==(0|0); - $299 = ($v$2$i|0)==(0|0); - $or$cond$i = $298 & $299; + if ((label|0) == 81) { + $301 = ($$2355$i|0)==(0|0); + $302 = ($$3$i201|0)==(0|0); + $or$cond$i = $301 & $302; if ($or$cond$i) { - $300 = 2 << $idx$0$i; - $301 = (0 - ($300))|0; - $302 = $300 | $301; - $303 = $247 & $302; - $304 = ($303|0)==(0); - if ($304) { - $nb$0 = $246; + $303 = 2 << $$0358$i; + $304 = (0 - ($303))|0; + $305 = $303 | $304; + $306 = $250 & $305; + $307 = ($306|0)==(0); + if ($307) { + $$0197 = $249; break; } - $305 = (0 - ($303))|0; - $306 = $303 & $305; - $307 = (($306) + -1)|0; - $308 = $307 >>> 12; - $309 = $308 & 16; - $310 = $307 >>> $309; - $311 = $310 >>> 5; - $312 = $311 & 8; - $313 = $312 | $309; - $314 = $310 >>> $312; - $315 = $314 >>> 2; - $316 = $315 & 4; - $317 = $313 | $316; - $318 = $314 >>> $316; - $319 = $318 >>> 1; - $320 = $319 & 2; - $321 = $317 | $320; - $322 = $318 >>> $320; - $323 = $322 >>> 1; - $324 = $323 & 1; - $325 = $321 | $324; - $326 = $322 >>> $324; - $327 = (($325) + ($326))|0; - $328 = (32980 + ($327<<2)|0); - $329 = HEAP32[$328>>2]|0; - $t$2$ph$i = $329;$v$3$ph$i = 0; + $308 = (0 - ($306))|0; + $309 = $306 & $308; + $310 = (($309) + -1)|0; + $311 = $310 >>> 12; + $312 = $311 & 16; + $313 = $310 >>> $312; + $314 = $313 >>> 5; + $315 = $314 & 8; + $316 = $315 | $312; + $317 = $313 >>> $315; + $318 = $317 >>> 2; + $319 = $318 & 4; + $320 = $316 | $319; + $321 = $317 >>> $319; + $322 = $321 >>> 1; + $323 = $322 & 2; + $324 = $320 | $323; + $325 = $321 >>> $323; + $326 = $325 >>> 1; + $327 = $326 & 1; + $328 = $324 | $327; + $329 = $325 >>> $327; + $330 = (($328) + ($329))|0; + $331 = (33268 + ($330<<2)|0); + $332 = HEAP32[$331>>2]|0; + $$4$ph$i = 0;$$4357$ph$i = $332; } else { - $t$2$ph$i = $t$1$i;$v$3$ph$i = $v$2$i; + $$4$ph$i = $$3$i201;$$4357$ph$i = $$2355$i; } - $330 = ($t$2$ph$i|0)==(0|0); - if ($330) { - $rsize$3$lcssa$i = $rsize$2$i;$v$3$lcssa$i = $v$3$ph$i; + $333 = ($$4357$ph$i|0)==(0|0); + if ($333) { + $$4$lcssa$i = $$4$ph$i;$$4351$lcssa$i = $$3350$i; } else { - $rsize$331$i = $rsize$2$i;$t$230$i = $t$2$ph$i;$v$332$i = $v$3$ph$i; - label = 90; + $$415$i = $$4$ph$i;$$435114$i = $$3350$i;$$435713$i = $$4357$ph$i; + label = 85; } } - if ((label|0) == 90) { + if ((label|0) == 85) { while(1) { label = 0; - $331 = ((($t$230$i)) + 4|0); - $332 = HEAP32[$331>>2]|0; - $333 = $332 & -8; - $334 = (($333) - ($246))|0; - $335 = ($334>>>0)<($rsize$331$i>>>0); - $$rsize$3$i = $335 ? $334 : $rsize$331$i; - $t$2$v$3$i = $335 ? $t$230$i : $v$332$i; - $336 = ((($t$230$i)) + 16|0); - $337 = HEAP32[$336>>2]|0; - $338 = ($337|0)==(0|0); - if (!($338)) { - $rsize$331$i = $$rsize$3$i;$t$230$i = $337;$v$332$i = $t$2$v$3$i; - label = 90; - continue; - } - $339 = ((($t$230$i)) + 20|0); + $334 = ((($$435713$i)) + 4|0); + $335 = HEAP32[$334>>2]|0; + $336 = $335 & -8; + $337 = (($336) - ($249))|0; + $338 = ($337>>>0)<($$435114$i>>>0); + $$$4351$i = $338 ? $337 : $$435114$i; + $$4357$$4$i = $338 ? $$435713$i : $$415$i; + $339 = ((($$435713$i)) + 16|0); $340 = HEAP32[$339>>2]|0; - $341 = ($340|0)==(0|0); - if ($341) { - $rsize$3$lcssa$i = $$rsize$3$i;$v$3$lcssa$i = $t$2$v$3$i; + $not$1$i203 = ($340|0)==(0|0); + $$sink2$i204 = $not$1$i203&1; + $341 = (((($$435713$i)) + 16|0) + ($$sink2$i204<<2)|0); + $342 = HEAP32[$341>>2]|0; + $343 = ($342|0)==(0|0); + if ($343) { + $$4$lcssa$i = $$4357$$4$i;$$4351$lcssa$i = $$$4351$i; break; } else { - $rsize$331$i = $$rsize$3$i;$t$230$i = $340;$v$332$i = $t$2$v$3$i; - label = 90; + $$415$i = $$4357$$4$i;$$435114$i = $$$4351$i;$$435713$i = $342; + label = 85; } } } - $342 = ($v$3$lcssa$i|0)==(0|0); - if ($342) { - $nb$0 = $246; + $344 = ($$4$lcssa$i|0)==(0|0); + if ($344) { + $$0197 = $249; } else { - $343 = HEAP32[(32684)>>2]|0; - $344 = (($343) - ($246))|0; - $345 = ($rsize$3$lcssa$i>>>0)<($344>>>0); - if ($345) { - $346 = HEAP32[(32692)>>2]|0; - $347 = ($v$3$lcssa$i>>>0)<($346>>>0); - if ($347) { + $345 = HEAP32[(32972)>>2]|0; + $346 = (($345) - ($249))|0; + $347 = ($$4351$lcssa$i>>>0)<($346>>>0); + if ($347) { + $348 = HEAP32[(32980)>>2]|0; + $349 = ($$4$lcssa$i>>>0)<($348>>>0); + if ($349) { _abort(); // unreachable; } - $348 = (($v$3$lcssa$i) + ($246)|0); - $349 = ($v$3$lcssa$i>>>0)<($348>>>0); - if (!($349)) { + $350 = (($$4$lcssa$i) + ($249)|0); + $351 = ($$4$lcssa$i>>>0)<($350>>>0); + if (!($351)) { _abort(); // unreachable; } - $350 = ((($v$3$lcssa$i)) + 24|0); - $351 = HEAP32[$350>>2]|0; - $352 = ((($v$3$lcssa$i)) + 12|0); + $352 = ((($$4$lcssa$i)) + 24|0); $353 = HEAP32[$352>>2]|0; - $354 = ($353|0)==($v$3$lcssa$i|0); + $354 = ((($$4$lcssa$i)) + 12|0); + $355 = HEAP32[$354>>2]|0; + $356 = ($355|0)==($$4$lcssa$i|0); do { - if ($354) { - $364 = ((($v$3$lcssa$i)) + 20|0); - $365 = HEAP32[$364>>2]|0; - $366 = ($365|0)==(0|0); - if ($366) { - $367 = ((($v$3$lcssa$i)) + 16|0); - $368 = HEAP32[$367>>2]|0; - $369 = ($368|0)==(0|0); - if ($369) { - $R$1$i20 = 0; + if ($356) { + $366 = ((($$4$lcssa$i)) + 20|0); + $367 = HEAP32[$366>>2]|0; + $368 = ($367|0)==(0|0); + if ($368) { + $369 = ((($$4$lcssa$i)) + 16|0); + $370 = HEAP32[$369>>2]|0; + $371 = ($370|0)==(0|0); + if ($371) { + $$3372$i = 0; break; } else { - $R$0$i18 = $368;$RP$0$i17 = $367; + $$1370$i = $370;$$1374$i = $369; } } else { - $R$0$i18 = $365;$RP$0$i17 = $364; + $$1370$i = $367;$$1374$i = $366; } while(1) { - $370 = ((($R$0$i18)) + 20|0); - $371 = HEAP32[$370>>2]|0; - $372 = ($371|0)==(0|0); - if (!($372)) { - $R$0$i18 = $371;$RP$0$i17 = $370; + $372 = ((($$1370$i)) + 20|0); + $373 = HEAP32[$372>>2]|0; + $374 = ($373|0)==(0|0); + if (!($374)) { + $$1370$i = $373;$$1374$i = $372; continue; } - $373 = ((($R$0$i18)) + 16|0); - $374 = HEAP32[$373>>2]|0; - $375 = ($374|0)==(0|0); - if ($375) { - $R$0$i18$lcssa = $R$0$i18;$RP$0$i17$lcssa = $RP$0$i17; + $375 = ((($$1370$i)) + 16|0); + $376 = HEAP32[$375>>2]|0; + $377 = ($376|0)==(0|0); + if ($377) { break; } else { - $R$0$i18 = $374;$RP$0$i17 = $373; + $$1370$i = $376;$$1374$i = $375; } } - $376 = ($RP$0$i17$lcssa>>>0)<($346>>>0); - if ($376) { + $378 = ($$1374$i>>>0)<($348>>>0); + if ($378) { _abort(); // unreachable; } else { - HEAP32[$RP$0$i17$lcssa>>2] = 0; - $R$1$i20 = $R$0$i18$lcssa; + HEAP32[$$1374$i>>2] = 0; + $$3372$i = $$1370$i; break; } } else { - $355 = ((($v$3$lcssa$i)) + 8|0); - $356 = HEAP32[$355>>2]|0; - $357 = ($356>>>0)<($346>>>0); - if ($357) { + $357 = ((($$4$lcssa$i)) + 8|0); + $358 = HEAP32[$357>>2]|0; + $359 = ($358>>>0)<($348>>>0); + if ($359) { _abort(); // unreachable; } - $358 = ((($356)) + 12|0); - $359 = HEAP32[$358>>2]|0; - $360 = ($359|0)==($v$3$lcssa$i|0); - if (!($360)) { + $360 = ((($358)) + 12|0); + $361 = HEAP32[$360>>2]|0; + $362 = ($361|0)==($$4$lcssa$i|0); + if (!($362)) { _abort(); // unreachable; } - $361 = ((($353)) + 8|0); - $362 = HEAP32[$361>>2]|0; - $363 = ($362|0)==($v$3$lcssa$i|0); - if ($363) { - HEAP32[$358>>2] = $353; - HEAP32[$361>>2] = $356; - $R$1$i20 = $353; + $363 = ((($355)) + 8|0); + $364 = HEAP32[$363>>2]|0; + $365 = ($364|0)==($$4$lcssa$i|0); + if ($365) { + HEAP32[$360>>2] = $355; + HEAP32[$363>>2] = $358; + $$3372$i = $355; break; } else { _abort(); @@ -21505,55 +17904,60 @@ function _malloc($bytes) { } } } while(0); - $377 = ($351|0)==(0|0); - do { - if (!($377)) { - $378 = ((($v$3$lcssa$i)) + 28|0); - $379 = HEAP32[$378>>2]|0; - $380 = (32980 + ($379<<2)|0); + $379 = ($353|0)==(0|0); + L164: do { + if ($379) { + $470 = $250; + } else { + $380 = ((($$4$lcssa$i)) + 28|0); $381 = HEAP32[$380>>2]|0; - $382 = ($v$3$lcssa$i|0)==($381|0); - if ($382) { - HEAP32[$380>>2] = $R$1$i20; - $cond$i21 = ($R$1$i20|0)==(0|0); - if ($cond$i21) { - $383 = 1 << $379; - $384 = $383 ^ -1; - $385 = HEAP32[(32680)>>2]|0; - $386 = $385 & $384; - HEAP32[(32680)>>2] = $386; - break; - } - } else { - $387 = HEAP32[(32692)>>2]|0; - $388 = ($351>>>0)<($387>>>0); - if ($388) { - _abort(); - // unreachable; - } - $389 = ((($351)) + 16|0); - $390 = HEAP32[$389>>2]|0; - $391 = ($390|0)==($v$3$lcssa$i|0); - if ($391) { - HEAP32[$389>>2] = $R$1$i20; + $382 = (33268 + ($381<<2)|0); + $383 = HEAP32[$382>>2]|0; + $384 = ($$4$lcssa$i|0)==($383|0); + do { + if ($384) { + HEAP32[$382>>2] = $$3372$i; + $cond$i208 = ($$3372$i|0)==(0|0); + if ($cond$i208) { + $385 = 1 << $381; + $386 = $385 ^ -1; + $387 = $250 & $386; + HEAP32[(32968)>>2] = $387; + $470 = $387; + break L164; + } } else { - $392 = ((($351)) + 20|0); - HEAP32[$392>>2] = $R$1$i20; - } - $393 = ($R$1$i20|0)==(0|0); - if ($393) { - break; + $388 = HEAP32[(32980)>>2]|0; + $389 = ($353>>>0)<($388>>>0); + if ($389) { + _abort(); + // unreachable; + } else { + $390 = ((($353)) + 16|0); + $391 = HEAP32[$390>>2]|0; + $not$$i209 = ($391|0)!=($$4$lcssa$i|0); + $$sink3$i = $not$$i209&1; + $392 = (((($353)) + 16|0) + ($$sink3$i<<2)|0); + HEAP32[$392>>2] = $$3372$i; + $393 = ($$3372$i|0)==(0|0); + if ($393) { + $470 = $250; + break L164; + } else { + break; + } + } } - } - $394 = HEAP32[(32692)>>2]|0; - $395 = ($R$1$i20>>>0)<($394>>>0); + } while(0); + $394 = HEAP32[(32980)>>2]|0; + $395 = ($$3372$i>>>0)<($394>>>0); if ($395) { _abort(); // unreachable; } - $396 = ((($R$1$i20)) + 24|0); - HEAP32[$396>>2] = $351; - $397 = ((($v$3$lcssa$i)) + 16|0); + $396 = ((($$3372$i)) + 24|0); + HEAP32[$396>>2] = $353; + $397 = ((($$4$lcssa$i)) + 16|0); $398 = HEAP32[$397>>2]|0; $399 = ($398|0)==(0|0); do { @@ -21563,930 +17967,862 @@ function _malloc($bytes) { _abort(); // unreachable; } else { - $401 = ((($R$1$i20)) + 16|0); + $401 = ((($$3372$i)) + 16|0); HEAP32[$401>>2] = $398; $402 = ((($398)) + 24|0); - HEAP32[$402>>2] = $R$1$i20; + HEAP32[$402>>2] = $$3372$i; break; } } } while(0); - $403 = ((($v$3$lcssa$i)) + 20|0); + $403 = ((($$4$lcssa$i)) + 20|0); $404 = HEAP32[$403>>2]|0; $405 = ($404|0)==(0|0); - if (!($405)) { - $406 = HEAP32[(32692)>>2]|0; + if ($405) { + $470 = $250; + } else { + $406 = HEAP32[(32980)>>2]|0; $407 = ($404>>>0)<($406>>>0); if ($407) { _abort(); // unreachable; } else { - $408 = ((($R$1$i20)) + 20|0); + $408 = ((($$3372$i)) + 20|0); HEAP32[$408>>2] = $404; $409 = ((($404)) + 24|0); - HEAP32[$409>>2] = $R$1$i20; + HEAP32[$409>>2] = $$3372$i; + $470 = $250; break; } } } } while(0); - $410 = ($rsize$3$lcssa$i>>>0)<(16); - L199: do { + $410 = ($$4351$lcssa$i>>>0)<(16); + do { if ($410) { - $411 = (($rsize$3$lcssa$i) + ($246))|0; + $411 = (($$4351$lcssa$i) + ($249))|0; $412 = $411 | 3; - $413 = ((($v$3$lcssa$i)) + 4|0); + $413 = ((($$4$lcssa$i)) + 4|0); HEAP32[$413>>2] = $412; - $$sum18$i = (($411) + 4)|0; - $414 = (($v$3$lcssa$i) + ($$sum18$i)|0); - $415 = HEAP32[$414>>2]|0; - $416 = $415 | 1; - HEAP32[$414>>2] = $416; + $414 = (($$4$lcssa$i) + ($411)|0); + $415 = ((($414)) + 4|0); + $416 = HEAP32[$415>>2]|0; + $417 = $416 | 1; + HEAP32[$415>>2] = $417; } else { - $417 = $246 | 3; - $418 = ((($v$3$lcssa$i)) + 4|0); - HEAP32[$418>>2] = $417; - $419 = $rsize$3$lcssa$i | 1; - $$sum$i2334 = $246 | 4; - $420 = (($v$3$lcssa$i) + ($$sum$i2334)|0); - HEAP32[$420>>2] = $419; - $$sum1$i24 = (($rsize$3$lcssa$i) + ($246))|0; - $421 = (($v$3$lcssa$i) + ($$sum1$i24)|0); - HEAP32[$421>>2] = $rsize$3$lcssa$i; - $422 = $rsize$3$lcssa$i >>> 3; - $423 = ($rsize$3$lcssa$i>>>0)<(256); - if ($423) { - $424 = $422 << 1; - $425 = (32716 + ($424<<2)|0); - $426 = HEAP32[32676>>2]|0; - $427 = 1 << $422; - $428 = $426 & $427; - $429 = ($428|0)==(0); - if ($429) { - $430 = $426 | $427; - HEAP32[32676>>2] = $430; - $$pre$i25 = (($424) + 2)|0; - $$pre43$i = (32716 + ($$pre$i25<<2)|0); - $$pre$phi$i26Z2D = $$pre43$i;$F5$0$i = $425; + $418 = $249 | 3; + $419 = ((($$4$lcssa$i)) + 4|0); + HEAP32[$419>>2] = $418; + $420 = $$4351$lcssa$i | 1; + $421 = ((($350)) + 4|0); + HEAP32[$421>>2] = $420; + $422 = (($350) + ($$4351$lcssa$i)|0); + HEAP32[$422>>2] = $$4351$lcssa$i; + $423 = $$4351$lcssa$i >>> 3; + $424 = ($$4351$lcssa$i>>>0)<(256); + if ($424) { + $425 = $423 << 1; + $426 = (33004 + ($425<<2)|0); + $427 = HEAP32[8241]|0; + $428 = 1 << $423; + $429 = $427 & $428; + $430 = ($429|0)==(0); + if ($430) { + $431 = $427 | $428; + HEAP32[8241] = $431; + $$pre$i210 = ((($426)) + 8|0); + $$0368$i = $426;$$pre$phi$i211Z2D = $$pre$i210; } else { - $$sum17$i = (($424) + 2)|0; - $431 = (32716 + ($$sum17$i<<2)|0); - $432 = HEAP32[$431>>2]|0; - $433 = HEAP32[(32692)>>2]|0; - $434 = ($432>>>0)<($433>>>0); - if ($434) { + $432 = ((($426)) + 8|0); + $433 = HEAP32[$432>>2]|0; + $434 = HEAP32[(32980)>>2]|0; + $435 = ($433>>>0)<($434>>>0); + if ($435) { _abort(); // unreachable; } else { - $$pre$phi$i26Z2D = $431;$F5$0$i = $432; + $$0368$i = $433;$$pre$phi$i211Z2D = $432; } } - HEAP32[$$pre$phi$i26Z2D>>2] = $348; - $435 = ((($F5$0$i)) + 12|0); - HEAP32[$435>>2] = $348; - $$sum15$i = (($246) + 8)|0; - $436 = (($v$3$lcssa$i) + ($$sum15$i)|0); - HEAP32[$436>>2] = $F5$0$i; - $$sum16$i = (($246) + 12)|0; - $437 = (($v$3$lcssa$i) + ($$sum16$i)|0); - HEAP32[$437>>2] = $425; + HEAP32[$$pre$phi$i211Z2D>>2] = $350; + $436 = ((($$0368$i)) + 12|0); + HEAP32[$436>>2] = $350; + $437 = ((($350)) + 8|0); + HEAP32[$437>>2] = $$0368$i; + $438 = ((($350)) + 12|0); + HEAP32[$438>>2] = $426; break; } - $438 = $rsize$3$lcssa$i >>> 8; - $439 = ($438|0)==(0); - if ($439) { - $I7$0$i = 0; + $439 = $$4351$lcssa$i >>> 8; + $440 = ($439|0)==(0); + if ($440) { + $$0361$i = 0; } else { - $440 = ($rsize$3$lcssa$i>>>0)>(16777215); - if ($440) { - $I7$0$i = 31; + $441 = ($$4351$lcssa$i>>>0)>(16777215); + if ($441) { + $$0361$i = 31; } else { - $441 = (($438) + 1048320)|0; - $442 = $441 >>> 16; - $443 = $442 & 8; - $444 = $438 << $443; - $445 = (($444) + 520192)|0; - $446 = $445 >>> 16; - $447 = $446 & 4; - $448 = $447 | $443; - $449 = $444 << $447; - $450 = (($449) + 245760)|0; - $451 = $450 >>> 16; - $452 = $451 & 2; - $453 = $448 | $452; - $454 = (14 - ($453))|0; - $455 = $449 << $452; - $456 = $455 >>> 15; - $457 = (($454) + ($456))|0; - $458 = $457 << 1; - $459 = (($457) + 7)|0; - $460 = $rsize$3$lcssa$i >>> $459; - $461 = $460 & 1; - $462 = $461 | $458; - $I7$0$i = $462; + $442 = (($439) + 1048320)|0; + $443 = $442 >>> 16; + $444 = $443 & 8; + $445 = $439 << $444; + $446 = (($445) + 520192)|0; + $447 = $446 >>> 16; + $448 = $447 & 4; + $449 = $448 | $444; + $450 = $445 << $448; + $451 = (($450) + 245760)|0; + $452 = $451 >>> 16; + $453 = $452 & 2; + $454 = $449 | $453; + $455 = (14 - ($454))|0; + $456 = $450 << $453; + $457 = $456 >>> 15; + $458 = (($455) + ($457))|0; + $459 = $458 << 1; + $460 = (($458) + 7)|0; + $461 = $$4351$lcssa$i >>> $460; + $462 = $461 & 1; + $463 = $462 | $459; + $$0361$i = $463; } } - $463 = (32980 + ($I7$0$i<<2)|0); - $$sum2$i = (($246) + 28)|0; - $464 = (($v$3$lcssa$i) + ($$sum2$i)|0); - HEAP32[$464>>2] = $I7$0$i; - $$sum3$i27 = (($246) + 16)|0; - $465 = (($v$3$lcssa$i) + ($$sum3$i27)|0); - $$sum4$i28 = (($246) + 20)|0; - $466 = (($v$3$lcssa$i) + ($$sum4$i28)|0); + $464 = (33268 + ($$0361$i<<2)|0); + $465 = ((($350)) + 28|0); + HEAP32[$465>>2] = $$0361$i; + $466 = ((($350)) + 16|0); + $467 = ((($466)) + 4|0); + HEAP32[$467>>2] = 0; HEAP32[$466>>2] = 0; - HEAP32[$465>>2] = 0; - $467 = HEAP32[(32680)>>2]|0; - $468 = 1 << $I7$0$i; - $469 = $467 & $468; - $470 = ($469|0)==(0); - if ($470) { - $471 = $467 | $468; - HEAP32[(32680)>>2] = $471; - HEAP32[$463>>2] = $348; - $$sum5$i = (($246) + 24)|0; - $472 = (($v$3$lcssa$i) + ($$sum5$i)|0); - HEAP32[$472>>2] = $463; - $$sum6$i = (($246) + 12)|0; - $473 = (($v$3$lcssa$i) + ($$sum6$i)|0); - HEAP32[$473>>2] = $348; - $$sum7$i = (($246) + 8)|0; - $474 = (($v$3$lcssa$i) + ($$sum7$i)|0); - HEAP32[$474>>2] = $348; + $468 = 1 << $$0361$i; + $469 = $470 & $468; + $471 = ($469|0)==(0); + if ($471) { + $472 = $470 | $468; + HEAP32[(32968)>>2] = $472; + HEAP32[$464>>2] = $350; + $473 = ((($350)) + 24|0); + HEAP32[$473>>2] = $464; + $474 = ((($350)) + 12|0); + HEAP32[$474>>2] = $350; + $475 = ((($350)) + 8|0); + HEAP32[$475>>2] = $350; break; } - $475 = HEAP32[$463>>2]|0; - $476 = ((($475)) + 4|0); - $477 = HEAP32[$476>>2]|0; - $478 = $477 & -8; - $479 = ($478|0)==($rsize$3$lcssa$i|0); - L217: do { - if ($479) { - $T$0$lcssa$i = $475; + $476 = HEAP32[$464>>2]|0; + $477 = ($$0361$i|0)==(31); + $478 = $$0361$i >>> 1; + $479 = (25 - ($478))|0; + $480 = $477 ? 0 : $479; + $481 = $$4351$lcssa$i << $480; + $$0344$i = $481;$$0345$i = $476; + while(1) { + $482 = ((($$0345$i)) + 4|0); + $483 = HEAP32[$482>>2]|0; + $484 = $483 & -8; + $485 = ($484|0)==($$4351$lcssa$i|0); + if ($485) { + label = 139; + break; + } + $486 = $$0344$i >>> 31; + $487 = (((($$0345$i)) + 16|0) + ($486<<2)|0); + $488 = $$0344$i << 1; + $489 = HEAP32[$487>>2]|0; + $490 = ($489|0)==(0|0); + if ($490) { + label = 136; + break; } else { - $480 = ($I7$0$i|0)==(31); - $481 = $I7$0$i >>> 1; - $482 = (25 - ($481))|0; - $483 = $480 ? 0 : $482; - $484 = $rsize$3$lcssa$i << $483; - $K12$029$i = $484;$T$028$i = $475; - while(1) { - $491 = $K12$029$i >>> 31; - $492 = (((($T$028$i)) + 16|0) + ($491<<2)|0); - $487 = HEAP32[$492>>2]|0; - $493 = ($487|0)==(0|0); - if ($493) { - $$lcssa232 = $492;$T$028$i$lcssa = $T$028$i; - break; - } - $485 = $K12$029$i << 1; - $486 = ((($487)) + 4|0); - $488 = HEAP32[$486>>2]|0; - $489 = $488 & -8; - $490 = ($489|0)==($rsize$3$lcssa$i|0); - if ($490) { - $T$0$lcssa$i = $487; - break L217; - } else { - $K12$029$i = $485;$T$028$i = $487; - } - } - $494 = HEAP32[(32692)>>2]|0; - $495 = ($$lcssa232>>>0)<($494>>>0); - if ($495) { - _abort(); - // unreachable; - } else { - HEAP32[$$lcssa232>>2] = $348; - $$sum11$i = (($246) + 24)|0; - $496 = (($v$3$lcssa$i) + ($$sum11$i)|0); - HEAP32[$496>>2] = $T$028$i$lcssa; - $$sum12$i = (($246) + 12)|0; - $497 = (($v$3$lcssa$i) + ($$sum12$i)|0); - HEAP32[$497>>2] = $348; - $$sum13$i = (($246) + 8)|0; - $498 = (($v$3$lcssa$i) + ($$sum13$i)|0); - HEAP32[$498>>2] = $348; - break L199; - } + $$0344$i = $488;$$0345$i = $489; + } + } + if ((label|0) == 136) { + $491 = HEAP32[(32980)>>2]|0; + $492 = ($487>>>0)<($491>>>0); + if ($492) { + _abort(); + // unreachable; + } else { + HEAP32[$487>>2] = $350; + $493 = ((($350)) + 24|0); + HEAP32[$493>>2] = $$0345$i; + $494 = ((($350)) + 12|0); + HEAP32[$494>>2] = $350; + $495 = ((($350)) + 8|0); + HEAP32[$495>>2] = $350; + break; + } + } + else if ((label|0) == 139) { + $496 = ((($$0345$i)) + 8|0); + $497 = HEAP32[$496>>2]|0; + $498 = HEAP32[(32980)>>2]|0; + $499 = ($497>>>0)>=($498>>>0); + $not$9$i = ($$0345$i>>>0)>=($498>>>0); + $500 = $499 & $not$9$i; + if ($500) { + $501 = ((($497)) + 12|0); + HEAP32[$501>>2] = $350; + HEAP32[$496>>2] = $350; + $502 = ((($350)) + 8|0); + HEAP32[$502>>2] = $497; + $503 = ((($350)) + 12|0); + HEAP32[$503>>2] = $$0345$i; + $504 = ((($350)) + 24|0); + HEAP32[$504>>2] = 0; + break; + } else { + _abort(); + // unreachable; } - } while(0); - $499 = ((($T$0$lcssa$i)) + 8|0); - $500 = HEAP32[$499>>2]|0; - $501 = HEAP32[(32692)>>2]|0; - $502 = ($500>>>0)>=($501>>>0); - $not$$i = ($T$0$lcssa$i>>>0)>=($501>>>0); - $503 = $502 & $not$$i; - if ($503) { - $504 = ((($500)) + 12|0); - HEAP32[$504>>2] = $348; - HEAP32[$499>>2] = $348; - $$sum8$i = (($246) + 8)|0; - $505 = (($v$3$lcssa$i) + ($$sum8$i)|0); - HEAP32[$505>>2] = $500; - $$sum9$i = (($246) + 12)|0; - $506 = (($v$3$lcssa$i) + ($$sum9$i)|0); - HEAP32[$506>>2] = $T$0$lcssa$i; - $$sum10$i = (($246) + 24)|0; - $507 = (($v$3$lcssa$i) + ($$sum10$i)|0); - HEAP32[$507>>2] = 0; - break; - } else { - _abort(); - // unreachable; } } } while(0); - $508 = ((($v$3$lcssa$i)) + 8|0); - $mem$0 = $508; - return ($mem$0|0); + $505 = ((($$4$lcssa$i)) + 8|0); + $$0 = $505; + STACKTOP = sp;return ($$0|0); } else { - $nb$0 = $246; + $$0197 = $249; } } } } } } while(0); - $509 = HEAP32[(32684)>>2]|0; - $510 = ($509>>>0)<($nb$0>>>0); - if (!($510)) { - $511 = (($509) - ($nb$0))|0; - $512 = HEAP32[(32696)>>2]|0; - $513 = ($511>>>0)>(15); - if ($513) { - $514 = (($512) + ($nb$0)|0); - HEAP32[(32696)>>2] = $514; - HEAP32[(32684)>>2] = $511; - $515 = $511 | 1; - $$sum2 = (($nb$0) + 4)|0; - $516 = (($512) + ($$sum2)|0); + $506 = HEAP32[(32972)>>2]|0; + $507 = ($506>>>0)<($$0197>>>0); + if (!($507)) { + $508 = (($506) - ($$0197))|0; + $509 = HEAP32[(32984)>>2]|0; + $510 = ($508>>>0)>(15); + if ($510) { + $511 = (($509) + ($$0197)|0); + HEAP32[(32984)>>2] = $511; + HEAP32[(32972)>>2] = $508; + $512 = $508 | 1; + $513 = ((($511)) + 4|0); + HEAP32[$513>>2] = $512; + $514 = (($511) + ($508)|0); + HEAP32[$514>>2] = $508; + $515 = $$0197 | 3; + $516 = ((($509)) + 4|0); HEAP32[$516>>2] = $515; - $517 = (($512) + ($509)|0); - HEAP32[$517>>2] = $511; - $518 = $nb$0 | 3; - $519 = ((($512)) + 4|0); - HEAP32[$519>>2] = $518; } else { - HEAP32[(32684)>>2] = 0; - HEAP32[(32696)>>2] = 0; - $520 = $509 | 3; - $521 = ((($512)) + 4|0); - HEAP32[$521>>2] = $520; - $$sum1 = (($509) + 4)|0; - $522 = (($512) + ($$sum1)|0); - $523 = HEAP32[$522>>2]|0; - $524 = $523 | 1; - HEAP32[$522>>2] = $524; + HEAP32[(32972)>>2] = 0; + HEAP32[(32984)>>2] = 0; + $517 = $506 | 3; + $518 = ((($509)) + 4|0); + HEAP32[$518>>2] = $517; + $519 = (($509) + ($506)|0); + $520 = ((($519)) + 4|0); + $521 = HEAP32[$520>>2]|0; + $522 = $521 | 1; + HEAP32[$520>>2] = $522; } - $525 = ((($512)) + 8|0); - $mem$0 = $525; - return ($mem$0|0); + $523 = ((($509)) + 8|0); + $$0 = $523; + STACKTOP = sp;return ($$0|0); } - $526 = HEAP32[(32688)>>2]|0; - $527 = ($526>>>0)>($nb$0>>>0); - if ($527) { - $528 = (($526) - ($nb$0))|0; - HEAP32[(32688)>>2] = $528; - $529 = HEAP32[(32700)>>2]|0; - $530 = (($529) + ($nb$0)|0); - HEAP32[(32700)>>2] = $530; - $531 = $528 | 1; - $$sum = (($nb$0) + 4)|0; - $532 = (($529) + ($$sum)|0); + $524 = HEAP32[(32976)>>2]|0; + $525 = ($524>>>0)>($$0197>>>0); + if ($525) { + $526 = (($524) - ($$0197))|0; + HEAP32[(32976)>>2] = $526; + $527 = HEAP32[(32988)>>2]|0; + $528 = (($527) + ($$0197)|0); + HEAP32[(32988)>>2] = $528; + $529 = $526 | 1; + $530 = ((($528)) + 4|0); + HEAP32[$530>>2] = $529; + $531 = $$0197 | 3; + $532 = ((($527)) + 4|0); HEAP32[$532>>2] = $531; - $533 = $nb$0 | 3; - $534 = ((($529)) + 4|0); - HEAP32[$534>>2] = $533; - $535 = ((($529)) + 8|0); - $mem$0 = $535; - return ($mem$0|0); + $533 = ((($527)) + 8|0); + $$0 = $533; + STACKTOP = sp;return ($$0|0); } - $536 = HEAP32[33148>>2]|0; - $537 = ($536|0)==(0); - do { - if ($537) { - $538 = (_sysconf(30)|0); - $539 = (($538) + -1)|0; - $540 = $539 & $538; - $541 = ($540|0)==(0); - if ($541) { - HEAP32[(33156)>>2] = $538; - HEAP32[(33152)>>2] = $538; - HEAP32[(33160)>>2] = -1; - HEAP32[(33164)>>2] = -1; - HEAP32[(33168)>>2] = 0; - HEAP32[(33120)>>2] = 0; - $542 = (_time((0|0))|0); - $543 = $542 & -16; - $544 = $543 ^ 1431655768; - HEAP32[33148>>2] = $544; - break; - } else { - _abort(); - // unreachable; - } - } - } while(0); - $545 = (($nb$0) + 48)|0; - $546 = HEAP32[(33156)>>2]|0; - $547 = (($nb$0) + 47)|0; - $548 = (($546) + ($547))|0; - $549 = (0 - ($546))|0; - $550 = $548 & $549; - $551 = ($550>>>0)>($nb$0>>>0); - if (!($551)) { - $mem$0 = 0; - return ($mem$0|0); + $534 = HEAP32[8359]|0; + $535 = ($534|0)==(0); + if ($535) { + HEAP32[(33444)>>2] = 4096; + HEAP32[(33440)>>2] = 4096; + HEAP32[(33448)>>2] = -1; + HEAP32[(33452)>>2] = -1; + HEAP32[(33456)>>2] = 0; + HEAP32[(33408)>>2] = 0; + $536 = $1; + $537 = $536 & -16; + $538 = $537 ^ 1431655768; + HEAP32[$1>>2] = $538; + HEAP32[8359] = $538; + $542 = 4096; + } else { + $$pre$i212 = HEAP32[(33444)>>2]|0; + $542 = $$pre$i212; + } + $539 = (($$0197) + 48)|0; + $540 = (($$0197) + 47)|0; + $541 = (($542) + ($540))|0; + $543 = (0 - ($542))|0; + $544 = $541 & $543; + $545 = ($544>>>0)>($$0197>>>0); + if (!($545)) { + $$0 = 0; + STACKTOP = sp;return ($$0|0); } - $552 = HEAP32[(33116)>>2]|0; - $553 = ($552|0)==(0); - if (!($553)) { - $554 = HEAP32[(33108)>>2]|0; - $555 = (($554) + ($550))|0; - $556 = ($555>>>0)<=($554>>>0); - $557 = ($555>>>0)>($552>>>0); - $or$cond1$i = $556 | $557; + $546 = HEAP32[(33404)>>2]|0; + $547 = ($546|0)==(0); + if (!($547)) { + $548 = HEAP32[(33396)>>2]|0; + $549 = (($548) + ($544))|0; + $550 = ($549>>>0)<=($548>>>0); + $551 = ($549>>>0)>($546>>>0); + $or$cond1$i = $550 | $551; if ($or$cond1$i) { - $mem$0 = 0; - return ($mem$0|0); + $$0 = 0; + STACKTOP = sp;return ($$0|0); } } - $558 = HEAP32[(33120)>>2]|0; - $559 = $558 & 4; - $560 = ($559|0)==(0); - L258: do { - if ($560) { - $561 = HEAP32[(32700)>>2]|0; - $562 = ($561|0)==(0|0); - L260: do { - if ($562) { - label = 174; + $552 = HEAP32[(33408)>>2]|0; + $553 = $552 & 4; + $554 = ($553|0)==(0); + L244: do { + if ($554) { + $555 = HEAP32[(32988)>>2]|0; + $556 = ($555|0)==(0|0); + L246: do { + if ($556) { + label = 163; } else { - $sp$0$i$i = (33124); + $$0$i$i = (33412); while(1) { - $563 = HEAP32[$sp$0$i$i>>2]|0; - $564 = ($563>>>0)>($561>>>0); - if (!($564)) { - $565 = ((($sp$0$i$i)) + 4|0); - $566 = HEAP32[$565>>2]|0; - $567 = (($563) + ($566)|0); - $568 = ($567>>>0)>($561>>>0); - if ($568) { - $$lcssa228 = $sp$0$i$i;$$lcssa230 = $565; + $557 = HEAP32[$$0$i$i>>2]|0; + $558 = ($557>>>0)>($555>>>0); + if (!($558)) { + $559 = ((($$0$i$i)) + 4|0); + $560 = HEAP32[$559>>2]|0; + $561 = (($557) + ($560)|0); + $562 = ($561>>>0)>($555>>>0); + if ($562) { break; } } - $569 = ((($sp$0$i$i)) + 8|0); - $570 = HEAP32[$569>>2]|0; - $571 = ($570|0)==(0|0); - if ($571) { - label = 174; - break L260; + $563 = ((($$0$i$i)) + 8|0); + $564 = HEAP32[$563>>2]|0; + $565 = ($564|0)==(0|0); + if ($565) { + label = 163; + break L246; } else { - $sp$0$i$i = $570; + $$0$i$i = $564; } } - $594 = HEAP32[(32688)>>2]|0; - $595 = (($548) - ($594))|0; - $596 = $595 & $549; - $597 = ($596>>>0)<(2147483647); - if ($597) { - $598 = (_sbrk(($596|0))|0); - $599 = HEAP32[$$lcssa228>>2]|0; - $600 = HEAP32[$$lcssa230>>2]|0; - $601 = (($599) + ($600)|0); - $602 = ($598|0)==($601|0); - $$3$i = $602 ? $596 : 0; - if ($602) { - $603 = ($598|0)==((-1)|0); - if ($603) { - $tsize$0323944$i = $$3$i; + $588 = (($541) - ($524))|0; + $589 = $588 & $543; + $590 = ($589>>>0)<(2147483647); + if ($590) { + $591 = (_sbrk(($589|0))|0); + $592 = HEAP32[$$0$i$i>>2]|0; + $593 = HEAP32[$559>>2]|0; + $594 = (($592) + ($593)|0); + $595 = ($591|0)==($594|0); + if ($595) { + $596 = ($591|0)==((-1)|0); + if ($596) { + $$2234253237$i = $589; } else { - $tbase$255$i = $598;$tsize$254$i = $$3$i; - label = 194; - break L258; + $$723948$i = $589;$$749$i = $591; + label = 180; + break L244; } } else { - $br$0$ph$i = $598;$ssize$1$ph$i = $596;$tsize$0$ph$i = $$3$i; - label = 184; + $$2247$ph$i = $591;$$2253$ph$i = $589; + label = 171; } } else { - $tsize$0323944$i = 0; + $$2234253237$i = 0; } } } while(0); do { - if ((label|0) == 174) { - $572 = (_sbrk(0)|0); - $573 = ($572|0)==((-1)|0); - if ($573) { - $tsize$0323944$i = 0; + if ((label|0) == 163) { + $566 = (_sbrk(0)|0); + $567 = ($566|0)==((-1)|0); + if ($567) { + $$2234253237$i = 0; } else { - $574 = $572; - $575 = HEAP32[(33152)>>2]|0; - $576 = (($575) + -1)|0; - $577 = $576 & $574; - $578 = ($577|0)==(0); - if ($578) { - $ssize$0$i = $550; - } else { - $579 = (($576) + ($574))|0; - $580 = (0 - ($575))|0; - $581 = $579 & $580; - $582 = (($550) - ($574))|0; - $583 = (($582) + ($581))|0; - $ssize$0$i = $583; - } - $584 = HEAP32[(33108)>>2]|0; - $585 = (($584) + ($ssize$0$i))|0; - $586 = ($ssize$0$i>>>0)>($nb$0>>>0); - $587 = ($ssize$0$i>>>0)<(2147483647); - $or$cond$i30 = $586 & $587; - if ($or$cond$i30) { - $588 = HEAP32[(33116)>>2]|0; - $589 = ($588|0)==(0); - if (!($589)) { - $590 = ($585>>>0)<=($584>>>0); - $591 = ($585>>>0)>($588>>>0); - $or$cond2$i = $590 | $591; - if ($or$cond2$i) { - $tsize$0323944$i = 0; + $568 = $566; + $569 = HEAP32[(33440)>>2]|0; + $570 = (($569) + -1)|0; + $571 = $570 & $568; + $572 = ($571|0)==(0); + $573 = (($570) + ($568))|0; + $574 = (0 - ($569))|0; + $575 = $573 & $574; + $576 = (($575) - ($568))|0; + $577 = $572 ? 0 : $576; + $$$i = (($577) + ($544))|0; + $578 = HEAP32[(33396)>>2]|0; + $579 = (($$$i) + ($578))|0; + $580 = ($$$i>>>0)>($$0197>>>0); + $581 = ($$$i>>>0)<(2147483647); + $or$cond$i214 = $580 & $581; + if ($or$cond$i214) { + $582 = HEAP32[(33404)>>2]|0; + $583 = ($582|0)==(0); + if (!($583)) { + $584 = ($579>>>0)<=($578>>>0); + $585 = ($579>>>0)>($582>>>0); + $or$cond2$i215 = $584 | $585; + if ($or$cond2$i215) { + $$2234253237$i = 0; break; } } - $592 = (_sbrk(($ssize$0$i|0))|0); - $593 = ($592|0)==($572|0); - $ssize$0$$i = $593 ? $ssize$0$i : 0; - if ($593) { - $tbase$255$i = $572;$tsize$254$i = $ssize$0$$i; - label = 194; - break L258; + $586 = (_sbrk(($$$i|0))|0); + $587 = ($586|0)==($566|0); + if ($587) { + $$723948$i = $$$i;$$749$i = $566; + label = 180; + break L244; } else { - $br$0$ph$i = $592;$ssize$1$ph$i = $ssize$0$i;$tsize$0$ph$i = $ssize$0$$i; - label = 184; + $$2247$ph$i = $586;$$2253$ph$i = $$$i; + label = 171; } } else { - $tsize$0323944$i = 0; + $$2234253237$i = 0; } } } } while(0); - L280: do { - if ((label|0) == 184) { - $604 = (0 - ($ssize$1$ph$i))|0; - $605 = ($br$0$ph$i|0)!=((-1)|0); - $606 = ($ssize$1$ph$i>>>0)<(2147483647); - $or$cond5$i = $606 & $605; - $607 = ($545>>>0)>($ssize$1$ph$i>>>0); - $or$cond6$i = $607 & $or$cond5$i; - do { - if ($or$cond6$i) { - $608 = HEAP32[(33156)>>2]|0; - $609 = (($547) - ($ssize$1$ph$i))|0; - $610 = (($609) + ($608))|0; - $611 = (0 - ($608))|0; - $612 = $610 & $611; - $613 = ($612>>>0)<(2147483647); - if ($613) { - $614 = (_sbrk(($612|0))|0); - $615 = ($614|0)==((-1)|0); - if ($615) { - (_sbrk(($604|0))|0); - $tsize$0323944$i = $tsize$0$ph$i; - break L280; - } else { - $616 = (($612) + ($ssize$1$ph$i))|0; - $ssize$2$i = $616; - break; - } - } else { - $ssize$2$i = $ssize$1$ph$i; - } + do { + if ((label|0) == 171) { + $597 = (0 - ($$2253$ph$i))|0; + $598 = ($$2247$ph$i|0)!=((-1)|0); + $599 = ($$2253$ph$i>>>0)<(2147483647); + $or$cond7$i = $599 & $598; + $600 = ($539>>>0)>($$2253$ph$i>>>0); + $or$cond10$i = $600 & $or$cond7$i; + if (!($or$cond10$i)) { + $610 = ($$2247$ph$i|0)==((-1)|0); + if ($610) { + $$2234253237$i = 0; + break; } else { - $ssize$2$i = $ssize$1$ph$i; + $$723948$i = $$2253$ph$i;$$749$i = $$2247$ph$i; + label = 180; + break L244; } - } while(0); - $617 = ($br$0$ph$i|0)==((-1)|0); - if ($617) { - $tsize$0323944$i = $tsize$0$ph$i; + } + $601 = HEAP32[(33444)>>2]|0; + $602 = (($540) - ($$2253$ph$i))|0; + $603 = (($602) + ($601))|0; + $604 = (0 - ($601))|0; + $605 = $603 & $604; + $606 = ($605>>>0)<(2147483647); + if (!($606)) { + $$723948$i = $$2253$ph$i;$$749$i = $$2247$ph$i; + label = 180; + break L244; + } + $607 = (_sbrk(($605|0))|0); + $608 = ($607|0)==((-1)|0); + if ($608) { + (_sbrk(($597|0))|0); + $$2234253237$i = 0; + break; } else { - $tbase$255$i = $br$0$ph$i;$tsize$254$i = $ssize$2$i; - label = 194; - break L258; + $609 = (($605) + ($$2253$ph$i))|0; + $$723948$i = $609;$$749$i = $$2247$ph$i; + label = 180; + break L244; } } } while(0); - $618 = HEAP32[(33120)>>2]|0; - $619 = $618 | 4; - HEAP32[(33120)>>2] = $619; - $tsize$1$i = $tsize$0323944$i; - label = 191; + $611 = HEAP32[(33408)>>2]|0; + $612 = $611 | 4; + HEAP32[(33408)>>2] = $612; + $$4236$i = $$2234253237$i; + label = 178; } else { - $tsize$1$i = 0; - label = 191; + $$4236$i = 0; + label = 178; } } while(0); - if ((label|0) == 191) { - $620 = ($550>>>0)<(2147483647); - if ($620) { - $621 = (_sbrk(($550|0))|0); - $622 = (_sbrk(0)|0); - $623 = ($621|0)!=((-1)|0); - $624 = ($622|0)!=((-1)|0); - $or$cond3$i = $623 & $624; - $625 = ($621>>>0)<($622>>>0); - $or$cond8$i = $625 & $or$cond3$i; - if ($or$cond8$i) { - $626 = $622; - $627 = $621; - $628 = (($626) - ($627))|0; - $629 = (($nb$0) + 40)|0; - $630 = ($628>>>0)>($629>>>0); - $$tsize$1$i = $630 ? $628 : $tsize$1$i; - if ($630) { - $tbase$255$i = $621;$tsize$254$i = $$tsize$1$i; - label = 194; - } + if ((label|0) == 178) { + $613 = ($544>>>0)<(2147483647); + if ($613) { + $614 = (_sbrk(($544|0))|0); + $615 = (_sbrk(0)|0); + $616 = ($614|0)!=((-1)|0); + $617 = ($615|0)!=((-1)|0); + $or$cond5$i = $616 & $617; + $618 = ($614>>>0)<($615>>>0); + $or$cond11$i = $618 & $or$cond5$i; + $619 = $615; + $620 = $614; + $621 = (($619) - ($620))|0; + $622 = (($$0197) + 40)|0; + $623 = ($621>>>0)>($622>>>0); + $$$4236$i = $623 ? $621 : $$4236$i; + $or$cond11$not$i = $or$cond11$i ^ 1; + $624 = ($614|0)==((-1)|0); + $not$$i216 = $623 ^ 1; + $625 = $624 | $not$$i216; + $or$cond50$i = $625 | $or$cond11$not$i; + if (!($or$cond50$i)) { + $$723948$i = $$$4236$i;$$749$i = $614; + label = 180; } } } - if ((label|0) == 194) { - $631 = HEAP32[(33108)>>2]|0; - $632 = (($631) + ($tsize$254$i))|0; - HEAP32[(33108)>>2] = $632; - $633 = HEAP32[(33112)>>2]|0; - $634 = ($632>>>0)>($633>>>0); - if ($634) { - HEAP32[(33112)>>2] = $632; + if ((label|0) == 180) { + $626 = HEAP32[(33396)>>2]|0; + $627 = (($626) + ($$723948$i))|0; + HEAP32[(33396)>>2] = $627; + $628 = HEAP32[(33400)>>2]|0; + $629 = ($627>>>0)>($628>>>0); + if ($629) { + HEAP32[(33400)>>2] = $627; } - $635 = HEAP32[(32700)>>2]|0; - $636 = ($635|0)==(0|0); - L299: do { - if ($636) { - $637 = HEAP32[(32692)>>2]|0; - $638 = ($637|0)==(0|0); - $639 = ($tbase$255$i>>>0)<($637>>>0); - $or$cond9$i = $638 | $639; - if ($or$cond9$i) { - HEAP32[(32692)>>2] = $tbase$255$i; + $630 = HEAP32[(32988)>>2]|0; + $631 = ($630|0)==(0|0); + do { + if ($631) { + $632 = HEAP32[(32980)>>2]|0; + $633 = ($632|0)==(0|0); + $634 = ($$749$i>>>0)<($632>>>0); + $or$cond12$i = $633 | $634; + if ($or$cond12$i) { + HEAP32[(32980)>>2] = $$749$i; } - HEAP32[(33124)>>2] = $tbase$255$i; - HEAP32[(33128)>>2] = $tsize$254$i; - HEAP32[(33136)>>2] = 0; - $640 = HEAP32[33148>>2]|0; - HEAP32[(32712)>>2] = $640; - HEAP32[(32708)>>2] = -1; - $i$02$i$i = 0; + HEAP32[(33412)>>2] = $$749$i; + HEAP32[(33416)>>2] = $$723948$i; + HEAP32[(33424)>>2] = 0; + $635 = HEAP32[8359]|0; + HEAP32[(33000)>>2] = $635; + HEAP32[(32996)>>2] = -1; + $$01$i$i = 0; while(1) { - $641 = $i$02$i$i << 1; - $642 = (32716 + ($641<<2)|0); - $$sum$i$i = (($641) + 3)|0; - $643 = (32716 + ($$sum$i$i<<2)|0); - HEAP32[$643>>2] = $642; - $$sum1$i$i = (($641) + 2)|0; - $644 = (32716 + ($$sum1$i$i<<2)|0); - HEAP32[$644>>2] = $642; - $645 = (($i$02$i$i) + 1)|0; - $exitcond$i$i = ($645|0)==(32); + $636 = $$01$i$i << 1; + $637 = (33004 + ($636<<2)|0); + $638 = ((($637)) + 12|0); + HEAP32[$638>>2] = $637; + $639 = ((($637)) + 8|0); + HEAP32[$639>>2] = $637; + $640 = (($$01$i$i) + 1)|0; + $exitcond$i$i = ($640|0)==(32); if ($exitcond$i$i) { break; } else { - $i$02$i$i = $645; + $$01$i$i = $640; } } - $646 = (($tsize$254$i) + -40)|0; - $647 = ((($tbase$255$i)) + 8|0); - $648 = $647; - $649 = $648 & 7; - $650 = ($649|0)==(0); - $651 = (0 - ($648))|0; - $652 = $651 & 7; - $653 = $650 ? 0 : $652; - $654 = (($tbase$255$i) + ($653)|0); - $655 = (($646) - ($653))|0; - HEAP32[(32700)>>2] = $654; - HEAP32[(32688)>>2] = $655; - $656 = $655 | 1; - $$sum$i13$i = (($653) + 4)|0; - $657 = (($tbase$255$i) + ($$sum$i13$i)|0); - HEAP32[$657>>2] = $656; - $$sum2$i$i = (($tsize$254$i) + -36)|0; - $658 = (($tbase$255$i) + ($$sum2$i$i)|0); - HEAP32[$658>>2] = 40; - $659 = HEAP32[(33164)>>2]|0; - HEAP32[(32704)>>2] = $659; + $641 = (($$723948$i) + -40)|0; + $642 = ((($$749$i)) + 8|0); + $643 = $642; + $644 = $643 & 7; + $645 = ($644|0)==(0); + $646 = (0 - ($643))|0; + $647 = $646 & 7; + $648 = $645 ? 0 : $647; + $649 = (($$749$i) + ($648)|0); + $650 = (($641) - ($648))|0; + HEAP32[(32988)>>2] = $649; + HEAP32[(32976)>>2] = $650; + $651 = $650 | 1; + $652 = ((($649)) + 4|0); + HEAP32[$652>>2] = $651; + $653 = (($649) + ($650)|0); + $654 = ((($653)) + 4|0); + HEAP32[$654>>2] = 40; + $655 = HEAP32[(33452)>>2]|0; + HEAP32[(32992)>>2] = $655; } else { - $sp$084$i = (33124); + $$024371$i = (33412); while(1) { - $660 = HEAP32[$sp$084$i>>2]|0; - $661 = ((($sp$084$i)) + 4|0); - $662 = HEAP32[$661>>2]|0; - $663 = (($660) + ($662)|0); - $664 = ($tbase$255$i|0)==($663|0); - if ($664) { - $$lcssa222 = $660;$$lcssa224 = $661;$$lcssa226 = $662;$sp$084$i$lcssa = $sp$084$i; - label = 204; + $656 = HEAP32[$$024371$i>>2]|0; + $657 = ((($$024371$i)) + 4|0); + $658 = HEAP32[$657>>2]|0; + $659 = (($656) + ($658)|0); + $660 = ($$749$i|0)==($659|0); + if ($660) { + label = 190; break; } - $665 = ((($sp$084$i)) + 8|0); - $666 = HEAP32[$665>>2]|0; - $667 = ($666|0)==(0|0); - if ($667) { + $661 = ((($$024371$i)) + 8|0); + $662 = HEAP32[$661>>2]|0; + $663 = ($662|0)==(0|0); + if ($663) { break; } else { - $sp$084$i = $666; + $$024371$i = $662; } } - if ((label|0) == 204) { - $668 = ((($sp$084$i$lcssa)) + 12|0); - $669 = HEAP32[$668>>2]|0; - $670 = $669 & 8; - $671 = ($670|0)==(0); - if ($671) { - $672 = ($635>>>0)>=($$lcssa222>>>0); - $673 = ($635>>>0)<($tbase$255$i>>>0); - $or$cond57$i = $673 & $672; - if ($or$cond57$i) { - $674 = (($$lcssa226) + ($tsize$254$i))|0; - HEAP32[$$lcssa224>>2] = $674; - $675 = HEAP32[(32688)>>2]|0; - $676 = (($675) + ($tsize$254$i))|0; - $677 = ((($635)) + 8|0); - $678 = $677; - $679 = $678 & 7; - $680 = ($679|0)==(0); - $681 = (0 - ($678))|0; - $682 = $681 & 7; - $683 = $680 ? 0 : $682; - $684 = (($635) + ($683)|0); - $685 = (($676) - ($683))|0; - HEAP32[(32700)>>2] = $684; - HEAP32[(32688)>>2] = $685; - $686 = $685 | 1; - $$sum$i17$i = (($683) + 4)|0; - $687 = (($635) + ($$sum$i17$i)|0); - HEAP32[$687>>2] = $686; - $$sum2$i18$i = (($676) + 4)|0; - $688 = (($635) + ($$sum2$i18$i)|0); - HEAP32[$688>>2] = 40; - $689 = HEAP32[(33164)>>2]|0; - HEAP32[(32704)>>2] = $689; + if ((label|0) == 190) { + $664 = ((($$024371$i)) + 12|0); + $665 = HEAP32[$664>>2]|0; + $666 = $665 & 8; + $667 = ($666|0)==(0); + if ($667) { + $668 = ($630>>>0)>=($656>>>0); + $669 = ($630>>>0)<($$749$i>>>0); + $or$cond51$i = $669 & $668; + if ($or$cond51$i) { + $670 = (($658) + ($$723948$i))|0; + HEAP32[$657>>2] = $670; + $671 = HEAP32[(32976)>>2]|0; + $672 = ((($630)) + 8|0); + $673 = $672; + $674 = $673 & 7; + $675 = ($674|0)==(0); + $676 = (0 - ($673))|0; + $677 = $676 & 7; + $678 = $675 ? 0 : $677; + $679 = (($630) + ($678)|0); + $680 = (($$723948$i) - ($678))|0; + $681 = (($671) + ($680))|0; + HEAP32[(32988)>>2] = $679; + HEAP32[(32976)>>2] = $681; + $682 = $681 | 1; + $683 = ((($679)) + 4|0); + HEAP32[$683>>2] = $682; + $684 = (($679) + ($681)|0); + $685 = ((($684)) + 4|0); + HEAP32[$685>>2] = 40; + $686 = HEAP32[(33452)>>2]|0; + HEAP32[(32992)>>2] = $686; break; } } } - $690 = HEAP32[(32692)>>2]|0; - $691 = ($tbase$255$i>>>0)<($690>>>0); - if ($691) { - HEAP32[(32692)>>2] = $tbase$255$i; - $755 = $tbase$255$i; + $687 = HEAP32[(32980)>>2]|0; + $688 = ($$749$i>>>0)<($687>>>0); + if ($688) { + HEAP32[(32980)>>2] = $$749$i; + $752 = $$749$i; } else { - $755 = $690; + $752 = $687; } - $692 = (($tbase$255$i) + ($tsize$254$i)|0); - $sp$183$i = (33124); + $689 = (($$749$i) + ($$723948$i)|0); + $$124470$i = (33412); while(1) { - $693 = HEAP32[$sp$183$i>>2]|0; - $694 = ($693|0)==($692|0); - if ($694) { - $$lcssa219 = $sp$183$i;$sp$183$i$lcssa = $sp$183$i; - label = 212; + $690 = HEAP32[$$124470$i>>2]|0; + $691 = ($690|0)==($689|0); + if ($691) { + label = 198; break; } - $695 = ((($sp$183$i)) + 8|0); - $696 = HEAP32[$695>>2]|0; - $697 = ($696|0)==(0|0); - if ($697) { - $sp$0$i$i$i = (33124); + $692 = ((($$124470$i)) + 8|0); + $693 = HEAP32[$692>>2]|0; + $694 = ($693|0)==(0|0); + if ($694) { break; } else { - $sp$183$i = $696; + $$124470$i = $693; } } - if ((label|0) == 212) { - $698 = ((($sp$183$i$lcssa)) + 12|0); - $699 = HEAP32[$698>>2]|0; - $700 = $699 & 8; - $701 = ($700|0)==(0); - if ($701) { - HEAP32[$$lcssa219>>2] = $tbase$255$i; - $702 = ((($sp$183$i$lcssa)) + 4|0); - $703 = HEAP32[$702>>2]|0; - $704 = (($703) + ($tsize$254$i))|0; - HEAP32[$702>>2] = $704; - $705 = ((($tbase$255$i)) + 8|0); - $706 = $705; + if ((label|0) == 198) { + $695 = ((($$124470$i)) + 12|0); + $696 = HEAP32[$695>>2]|0; + $697 = $696 & 8; + $698 = ($697|0)==(0); + if ($698) { + HEAP32[$$124470$i>>2] = $$749$i; + $699 = ((($$124470$i)) + 4|0); + $700 = HEAP32[$699>>2]|0; + $701 = (($700) + ($$723948$i))|0; + HEAP32[$699>>2] = $701; + $702 = ((($$749$i)) + 8|0); + $703 = $702; + $704 = $703 & 7; + $705 = ($704|0)==(0); + $706 = (0 - ($703))|0; $707 = $706 & 7; - $708 = ($707|0)==(0); - $709 = (0 - ($706))|0; - $710 = $709 & 7; - $711 = $708 ? 0 : $710; - $712 = (($tbase$255$i) + ($711)|0); - $$sum112$i = (($tsize$254$i) + 8)|0; - $713 = (($tbase$255$i) + ($$sum112$i)|0); - $714 = $713; + $708 = $705 ? 0 : $707; + $709 = (($$749$i) + ($708)|0); + $710 = ((($689)) + 8|0); + $711 = $710; + $712 = $711 & 7; + $713 = ($712|0)==(0); + $714 = (0 - ($711))|0; $715 = $714 & 7; - $716 = ($715|0)==(0); - $717 = (0 - ($714))|0; - $718 = $717 & 7; - $719 = $716 ? 0 : $718; - $$sum113$i = (($719) + ($tsize$254$i))|0; - $720 = (($tbase$255$i) + ($$sum113$i)|0); - $721 = $720; - $722 = $712; - $723 = (($721) - ($722))|0; - $$sum$i19$i = (($711) + ($nb$0))|0; - $724 = (($tbase$255$i) + ($$sum$i19$i)|0); - $725 = (($723) - ($nb$0))|0; - $726 = $nb$0 | 3; - $$sum1$i20$i = (($711) + 4)|0; - $727 = (($tbase$255$i) + ($$sum1$i20$i)|0); - HEAP32[$727>>2] = $726; - $728 = ($720|0)==($635|0); - L324: do { - if ($728) { - $729 = HEAP32[(32688)>>2]|0; - $730 = (($729) + ($725))|0; - HEAP32[(32688)>>2] = $730; - HEAP32[(32700)>>2] = $724; - $731 = $730 | 1; - $$sum42$i$i = (($$sum$i19$i) + 4)|0; - $732 = (($tbase$255$i) + ($$sum42$i$i)|0); - HEAP32[$732>>2] = $731; + $716 = $713 ? 0 : $715; + $717 = (($689) + ($716)|0); + $718 = $717; + $719 = $709; + $720 = (($718) - ($719))|0; + $721 = (($709) + ($$0197)|0); + $722 = (($720) - ($$0197))|0; + $723 = $$0197 | 3; + $724 = ((($709)) + 4|0); + HEAP32[$724>>2] = $723; + $725 = ($717|0)==($630|0); + do { + if ($725) { + $726 = HEAP32[(32976)>>2]|0; + $727 = (($726) + ($722))|0; + HEAP32[(32976)>>2] = $727; + HEAP32[(32988)>>2] = $721; + $728 = $727 | 1; + $729 = ((($721)) + 4|0); + HEAP32[$729>>2] = $728; } else { - $733 = HEAP32[(32696)>>2]|0; - $734 = ($720|0)==($733|0); - if ($734) { - $735 = HEAP32[(32684)>>2]|0; - $736 = (($735) + ($725))|0; - HEAP32[(32684)>>2] = $736; - HEAP32[(32696)>>2] = $724; - $737 = $736 | 1; - $$sum40$i$i = (($$sum$i19$i) + 4)|0; - $738 = (($tbase$255$i) + ($$sum40$i$i)|0); - HEAP32[$738>>2] = $737; - $$sum41$i$i = (($736) + ($$sum$i19$i))|0; - $739 = (($tbase$255$i) + ($$sum41$i$i)|0); - HEAP32[$739>>2] = $736; + $730 = HEAP32[(32984)>>2]|0; + $731 = ($717|0)==($730|0); + if ($731) { + $732 = HEAP32[(32972)>>2]|0; + $733 = (($732) + ($722))|0; + HEAP32[(32972)>>2] = $733; + HEAP32[(32984)>>2] = $721; + $734 = $733 | 1; + $735 = ((($721)) + 4|0); + HEAP32[$735>>2] = $734; + $736 = (($721) + ($733)|0); + HEAP32[$736>>2] = $733; break; } - $$sum2$i21$i = (($tsize$254$i) + 4)|0; - $$sum114$i = (($$sum2$i21$i) + ($719))|0; - $740 = (($tbase$255$i) + ($$sum114$i)|0); - $741 = HEAP32[$740>>2]|0; - $742 = $741 & 3; - $743 = ($742|0)==(1); - if ($743) { - $744 = $741 & -8; - $745 = $741 >>> 3; - $746 = ($741>>>0)<(256); - L332: do { - if ($746) { - $$sum3738$i$i = $719 | 8; - $$sum124$i = (($$sum3738$i$i) + ($tsize$254$i))|0; - $747 = (($tbase$255$i) + ($$sum124$i)|0); - $748 = HEAP32[$747>>2]|0; - $$sum39$i$i = (($tsize$254$i) + 12)|0; - $$sum125$i = (($$sum39$i$i) + ($719))|0; - $749 = (($tbase$255$i) + ($$sum125$i)|0); - $750 = HEAP32[$749>>2]|0; - $751 = $745 << 1; - $752 = (32716 + ($751<<2)|0); - $753 = ($748|0)==($752|0); + $737 = ((($717)) + 4|0); + $738 = HEAP32[$737>>2]|0; + $739 = $738 & 3; + $740 = ($739|0)==(1); + if ($740) { + $741 = $738 & -8; + $742 = $738 >>> 3; + $743 = ($738>>>0)<(256); + L314: do { + if ($743) { + $744 = ((($717)) + 8|0); + $745 = HEAP32[$744>>2]|0; + $746 = ((($717)) + 12|0); + $747 = HEAP32[$746>>2]|0; + $748 = $742 << 1; + $749 = (33004 + ($748<<2)|0); + $750 = ($745|0)==($749|0); do { - if (!($753)) { - $754 = ($748>>>0)<($755>>>0); - if ($754) { + if (!($750)) { + $751 = ($745>>>0)<($752>>>0); + if ($751) { _abort(); // unreachable; } - $756 = ((($748)) + 12|0); - $757 = HEAP32[$756>>2]|0; - $758 = ($757|0)==($720|0); - if ($758) { + $753 = ((($745)) + 12|0); + $754 = HEAP32[$753>>2]|0; + $755 = ($754|0)==($717|0); + if ($755) { break; } _abort(); // unreachable; } } while(0); - $759 = ($750|0)==($748|0); - if ($759) { - $760 = 1 << $745; - $761 = $760 ^ -1; - $762 = HEAP32[32676>>2]|0; - $763 = $762 & $761; - HEAP32[32676>>2] = $763; + $756 = ($747|0)==($745|0); + if ($756) { + $757 = 1 << $742; + $758 = $757 ^ -1; + $759 = HEAP32[8241]|0; + $760 = $759 & $758; + HEAP32[8241] = $760; break; } - $764 = ($750|0)==($752|0); + $761 = ($747|0)==($749|0); do { - if ($764) { - $$pre57$i$i = ((($750)) + 8|0); - $$pre$phi58$i$iZ2D = $$pre57$i$i; + if ($761) { + $$pre10$i$i = ((($747)) + 8|0); + $$pre$phi11$i$iZ2D = $$pre10$i$i; } else { - $765 = ($750>>>0)<($755>>>0); - if ($765) { + $762 = ($747>>>0)<($752>>>0); + if ($762) { _abort(); // unreachable; } - $766 = ((($750)) + 8|0); - $767 = HEAP32[$766>>2]|0; - $768 = ($767|0)==($720|0); - if ($768) { - $$pre$phi58$i$iZ2D = $766; + $763 = ((($747)) + 8|0); + $764 = HEAP32[$763>>2]|0; + $765 = ($764|0)==($717|0); + if ($765) { + $$pre$phi11$i$iZ2D = $763; break; } _abort(); // unreachable; } } while(0); - $769 = ((($748)) + 12|0); - HEAP32[$769>>2] = $750; - HEAP32[$$pre$phi58$i$iZ2D>>2] = $748; + $766 = ((($745)) + 12|0); + HEAP32[$766>>2] = $747; + HEAP32[$$pre$phi11$i$iZ2D>>2] = $745; } else { - $$sum34$i$i = $719 | 24; - $$sum115$i = (($$sum34$i$i) + ($tsize$254$i))|0; - $770 = (($tbase$255$i) + ($$sum115$i)|0); - $771 = HEAP32[$770>>2]|0; - $$sum5$i$i = (($tsize$254$i) + 12)|0; - $$sum116$i = (($$sum5$i$i) + ($719))|0; - $772 = (($tbase$255$i) + ($$sum116$i)|0); - $773 = HEAP32[$772>>2]|0; - $774 = ($773|0)==($720|0); + $767 = ((($717)) + 24|0); + $768 = HEAP32[$767>>2]|0; + $769 = ((($717)) + 12|0); + $770 = HEAP32[$769>>2]|0; + $771 = ($770|0)==($717|0); do { - if ($774) { - $$sum67$i$i = $719 | 16; - $$sum122$i = (($$sum2$i21$i) + ($$sum67$i$i))|0; - $784 = (($tbase$255$i) + ($$sum122$i)|0); - $785 = HEAP32[$784>>2]|0; - $786 = ($785|0)==(0|0); - if ($786) { - $$sum123$i = (($$sum67$i$i) + ($tsize$254$i))|0; - $787 = (($tbase$255$i) + ($$sum123$i)|0); - $788 = HEAP32[$787>>2]|0; - $789 = ($788|0)==(0|0); - if ($789) { - $R$1$i$i = 0; + if ($771) { + $781 = ((($717)) + 16|0); + $782 = ((($781)) + 4|0); + $783 = HEAP32[$782>>2]|0; + $784 = ($783|0)==(0|0); + if ($784) { + $785 = HEAP32[$781>>2]|0; + $786 = ($785|0)==(0|0); + if ($786) { + $$3$i$i = 0; break; } else { - $R$0$i$i = $788;$RP$0$i$i = $787; + $$1291$i$i = $785;$$1293$i$i = $781; } } else { - $R$0$i$i = $785;$RP$0$i$i = $784; + $$1291$i$i = $783;$$1293$i$i = $782; } while(1) { - $790 = ((($R$0$i$i)) + 20|0); - $791 = HEAP32[$790>>2]|0; - $792 = ($791|0)==(0|0); - if (!($792)) { - $R$0$i$i = $791;$RP$0$i$i = $790; + $787 = ((($$1291$i$i)) + 20|0); + $788 = HEAP32[$787>>2]|0; + $789 = ($788|0)==(0|0); + if (!($789)) { + $$1291$i$i = $788;$$1293$i$i = $787; continue; } - $793 = ((($R$0$i$i)) + 16|0); - $794 = HEAP32[$793>>2]|0; - $795 = ($794|0)==(0|0); - if ($795) { - $R$0$i$i$lcssa = $R$0$i$i;$RP$0$i$i$lcssa = $RP$0$i$i; + $790 = ((($$1291$i$i)) + 16|0); + $791 = HEAP32[$790>>2]|0; + $792 = ($791|0)==(0|0); + if ($792) { break; } else { - $R$0$i$i = $794;$RP$0$i$i = $793; + $$1291$i$i = $791;$$1293$i$i = $790; } } - $796 = ($RP$0$i$i$lcssa>>>0)<($755>>>0); - if ($796) { + $793 = ($$1293$i$i>>>0)<($752>>>0); + if ($793) { _abort(); // unreachable; } else { - HEAP32[$RP$0$i$i$lcssa>>2] = 0; - $R$1$i$i = $R$0$i$i$lcssa; + HEAP32[$$1293$i$i>>2] = 0; + $$3$i$i = $$1291$i$i; break; } } else { - $$sum3536$i$i = $719 | 8; - $$sum117$i = (($$sum3536$i$i) + ($tsize$254$i))|0; - $775 = (($tbase$255$i) + ($$sum117$i)|0); - $776 = HEAP32[$775>>2]|0; - $777 = ($776>>>0)<($755>>>0); - if ($777) { + $772 = ((($717)) + 8|0); + $773 = HEAP32[$772>>2]|0; + $774 = ($773>>>0)<($752>>>0); + if ($774) { _abort(); // unreachable; } - $778 = ((($776)) + 12|0); - $779 = HEAP32[$778>>2]|0; - $780 = ($779|0)==($720|0); - if (!($780)) { + $775 = ((($773)) + 12|0); + $776 = HEAP32[$775>>2]|0; + $777 = ($776|0)==($717|0); + if (!($777)) { _abort(); // unreachable; } - $781 = ((($773)) + 8|0); - $782 = HEAP32[$781>>2]|0; - $783 = ($782|0)==($720|0); - if ($783) { + $778 = ((($770)) + 8|0); + $779 = HEAP32[$778>>2]|0; + $780 = ($779|0)==($717|0); + if ($780) { + HEAP32[$775>>2] = $770; HEAP32[$778>>2] = $773; - HEAP32[$781>>2] = $776; - $R$1$i$i = $773; + $$3$i$i = $770; break; } else { _abort(); @@ -22494,823 +18830,761 @@ function _malloc($bytes) { } } } while(0); - $797 = ($771|0)==(0|0); - if ($797) { + $794 = ($768|0)==(0|0); + if ($794) { break; } - $$sum30$i$i = (($tsize$254$i) + 28)|0; - $$sum118$i = (($$sum30$i$i) + ($719))|0; - $798 = (($tbase$255$i) + ($$sum118$i)|0); - $799 = HEAP32[$798>>2]|0; - $800 = (32980 + ($799<<2)|0); - $801 = HEAP32[$800>>2]|0; - $802 = ($720|0)==($801|0); + $795 = ((($717)) + 28|0); + $796 = HEAP32[$795>>2]|0; + $797 = (33268 + ($796<<2)|0); + $798 = HEAP32[$797>>2]|0; + $799 = ($717|0)==($798|0); do { - if ($802) { - HEAP32[$800>>2] = $R$1$i$i; - $cond$i$i = ($R$1$i$i|0)==(0|0); + if ($799) { + HEAP32[$797>>2] = $$3$i$i; + $cond$i$i = ($$3$i$i|0)==(0|0); if (!($cond$i$i)) { break; } - $803 = 1 << $799; - $804 = $803 ^ -1; - $805 = HEAP32[(32680)>>2]|0; - $806 = $805 & $804; - HEAP32[(32680)>>2] = $806; - break L332; + $800 = 1 << $796; + $801 = $800 ^ -1; + $802 = HEAP32[(32968)>>2]|0; + $803 = $802 & $801; + HEAP32[(32968)>>2] = $803; + break L314; } else { - $807 = HEAP32[(32692)>>2]|0; - $808 = ($771>>>0)<($807>>>0); - if ($808) { + $804 = HEAP32[(32980)>>2]|0; + $805 = ($768>>>0)<($804>>>0); + if ($805) { _abort(); // unreachable; - } - $809 = ((($771)) + 16|0); - $810 = HEAP32[$809>>2]|0; - $811 = ($810|0)==($720|0); - if ($811) { - HEAP32[$809>>2] = $R$1$i$i; } else { - $812 = ((($771)) + 20|0); - HEAP32[$812>>2] = $R$1$i$i; - } - $813 = ($R$1$i$i|0)==(0|0); - if ($813) { - break L332; + $806 = ((($768)) + 16|0); + $807 = HEAP32[$806>>2]|0; + $not$$i17$i = ($807|0)!=($717|0); + $$sink1$i$i = $not$$i17$i&1; + $808 = (((($768)) + 16|0) + ($$sink1$i$i<<2)|0); + HEAP32[$808>>2] = $$3$i$i; + $809 = ($$3$i$i|0)==(0|0); + if ($809) { + break L314; + } else { + break; + } } } } while(0); - $814 = HEAP32[(32692)>>2]|0; - $815 = ($R$1$i$i>>>0)<($814>>>0); - if ($815) { + $810 = HEAP32[(32980)>>2]|0; + $811 = ($$3$i$i>>>0)<($810>>>0); + if ($811) { _abort(); // unreachable; } - $816 = ((($R$1$i$i)) + 24|0); - HEAP32[$816>>2] = $771; - $$sum3132$i$i = $719 | 16; - $$sum119$i = (($$sum3132$i$i) + ($tsize$254$i))|0; - $817 = (($tbase$255$i) + ($$sum119$i)|0); - $818 = HEAP32[$817>>2]|0; - $819 = ($818|0)==(0|0); + $812 = ((($$3$i$i)) + 24|0); + HEAP32[$812>>2] = $768; + $813 = ((($717)) + 16|0); + $814 = HEAP32[$813>>2]|0; + $815 = ($814|0)==(0|0); do { - if (!($819)) { - $820 = ($818>>>0)<($814>>>0); - if ($820) { + if (!($815)) { + $816 = ($814>>>0)<($810>>>0); + if ($816) { _abort(); // unreachable; } else { - $821 = ((($R$1$i$i)) + 16|0); - HEAP32[$821>>2] = $818; - $822 = ((($818)) + 24|0); - HEAP32[$822>>2] = $R$1$i$i; + $817 = ((($$3$i$i)) + 16|0); + HEAP32[$817>>2] = $814; + $818 = ((($814)) + 24|0); + HEAP32[$818>>2] = $$3$i$i; break; } } } while(0); - $$sum120$i = (($$sum2$i21$i) + ($$sum3132$i$i))|0; - $823 = (($tbase$255$i) + ($$sum120$i)|0); - $824 = HEAP32[$823>>2]|0; - $825 = ($824|0)==(0|0); - if ($825) { + $819 = ((($813)) + 4|0); + $820 = HEAP32[$819>>2]|0; + $821 = ($820|0)==(0|0); + if ($821) { break; } - $826 = HEAP32[(32692)>>2]|0; - $827 = ($824>>>0)<($826>>>0); - if ($827) { + $822 = HEAP32[(32980)>>2]|0; + $823 = ($820>>>0)<($822>>>0); + if ($823) { _abort(); // unreachable; } else { - $828 = ((($R$1$i$i)) + 20|0); - HEAP32[$828>>2] = $824; - $829 = ((($824)) + 24|0); - HEAP32[$829>>2] = $R$1$i$i; + $824 = ((($$3$i$i)) + 20|0); + HEAP32[$824>>2] = $820; + $825 = ((($820)) + 24|0); + HEAP32[$825>>2] = $$3$i$i; break; } } } while(0); - $$sum9$i$i = $744 | $719; - $$sum121$i = (($$sum9$i$i) + ($tsize$254$i))|0; - $830 = (($tbase$255$i) + ($$sum121$i)|0); - $831 = (($744) + ($725))|0; - $oldfirst$0$i$i = $830;$qsize$0$i$i = $831; + $826 = (($717) + ($741)|0); + $827 = (($741) + ($722))|0; + $$0$i18$i = $826;$$0287$i$i = $827; } else { - $oldfirst$0$i$i = $720;$qsize$0$i$i = $725; + $$0$i18$i = $717;$$0287$i$i = $722; } - $832 = ((($oldfirst$0$i$i)) + 4|0); - $833 = HEAP32[$832>>2]|0; - $834 = $833 & -2; - HEAP32[$832>>2] = $834; - $835 = $qsize$0$i$i | 1; - $$sum10$i$i = (($$sum$i19$i) + 4)|0; - $836 = (($tbase$255$i) + ($$sum10$i$i)|0); - HEAP32[$836>>2] = $835; - $$sum11$i$i = (($qsize$0$i$i) + ($$sum$i19$i))|0; - $837 = (($tbase$255$i) + ($$sum11$i$i)|0); - HEAP32[$837>>2] = $qsize$0$i$i; - $838 = $qsize$0$i$i >>> 3; - $839 = ($qsize$0$i$i>>>0)<(256); - if ($839) { - $840 = $838 << 1; - $841 = (32716 + ($840<<2)|0); - $842 = HEAP32[32676>>2]|0; - $843 = 1 << $838; - $844 = $842 & $843; - $845 = ($844|0)==(0); + $828 = ((($$0$i18$i)) + 4|0); + $829 = HEAP32[$828>>2]|0; + $830 = $829 & -2; + HEAP32[$828>>2] = $830; + $831 = $$0287$i$i | 1; + $832 = ((($721)) + 4|0); + HEAP32[$832>>2] = $831; + $833 = (($721) + ($$0287$i$i)|0); + HEAP32[$833>>2] = $$0287$i$i; + $834 = $$0287$i$i >>> 3; + $835 = ($$0287$i$i>>>0)<(256); + if ($835) { + $836 = $834 << 1; + $837 = (33004 + ($836<<2)|0); + $838 = HEAP32[8241]|0; + $839 = 1 << $834; + $840 = $838 & $839; + $841 = ($840|0)==(0); do { - if ($845) { - $846 = $842 | $843; - HEAP32[32676>>2] = $846; - $$pre$i22$i = (($840) + 2)|0; - $$pre56$i$i = (32716 + ($$pre$i22$i<<2)|0); - $$pre$phi$i23$iZ2D = $$pre56$i$i;$F4$0$i$i = $841; + if ($841) { + $842 = $838 | $839; + HEAP32[8241] = $842; + $$pre$i19$i = ((($837)) + 8|0); + $$0295$i$i = $837;$$pre$phi$i20$iZ2D = $$pre$i19$i; } else { - $$sum29$i$i = (($840) + 2)|0; - $847 = (32716 + ($$sum29$i$i<<2)|0); - $848 = HEAP32[$847>>2]|0; - $849 = HEAP32[(32692)>>2]|0; - $850 = ($848>>>0)<($849>>>0); - if (!($850)) { - $$pre$phi$i23$iZ2D = $847;$F4$0$i$i = $848; + $843 = ((($837)) + 8|0); + $844 = HEAP32[$843>>2]|0; + $845 = HEAP32[(32980)>>2]|0; + $846 = ($844>>>0)<($845>>>0); + if (!($846)) { + $$0295$i$i = $844;$$pre$phi$i20$iZ2D = $843; break; } _abort(); // unreachable; } } while(0); - HEAP32[$$pre$phi$i23$iZ2D>>2] = $724; - $851 = ((($F4$0$i$i)) + 12|0); - HEAP32[$851>>2] = $724; - $$sum27$i$i = (($$sum$i19$i) + 8)|0; - $852 = (($tbase$255$i) + ($$sum27$i$i)|0); - HEAP32[$852>>2] = $F4$0$i$i; - $$sum28$i$i = (($$sum$i19$i) + 12)|0; - $853 = (($tbase$255$i) + ($$sum28$i$i)|0); - HEAP32[$853>>2] = $841; + HEAP32[$$pre$phi$i20$iZ2D>>2] = $721; + $847 = ((($$0295$i$i)) + 12|0); + HEAP32[$847>>2] = $721; + $848 = ((($721)) + 8|0); + HEAP32[$848>>2] = $$0295$i$i; + $849 = ((($721)) + 12|0); + HEAP32[$849>>2] = $837; break; } - $854 = $qsize$0$i$i >>> 8; - $855 = ($854|0)==(0); + $850 = $$0287$i$i >>> 8; + $851 = ($850|0)==(0); do { - if ($855) { - $I7$0$i$i = 0; + if ($851) { + $$0296$i$i = 0; } else { - $856 = ($qsize$0$i$i>>>0)>(16777215); - if ($856) { - $I7$0$i$i = 31; + $852 = ($$0287$i$i>>>0)>(16777215); + if ($852) { + $$0296$i$i = 31; break; } - $857 = (($854) + 1048320)|0; + $853 = (($850) + 1048320)|0; + $854 = $853 >>> 16; + $855 = $854 & 8; + $856 = $850 << $855; + $857 = (($856) + 520192)|0; $858 = $857 >>> 16; - $859 = $858 & 8; - $860 = $854 << $859; - $861 = (($860) + 520192)|0; - $862 = $861 >>> 16; - $863 = $862 & 4; - $864 = $863 | $859; - $865 = $860 << $863; - $866 = (($865) + 245760)|0; - $867 = $866 >>> 16; - $868 = $867 & 2; - $869 = $864 | $868; - $870 = (14 - ($869))|0; - $871 = $865 << $868; - $872 = $871 >>> 15; - $873 = (($870) + ($872))|0; - $874 = $873 << 1; - $875 = (($873) + 7)|0; - $876 = $qsize$0$i$i >>> $875; - $877 = $876 & 1; - $878 = $877 | $874; - $I7$0$i$i = $878; + $859 = $858 & 4; + $860 = $859 | $855; + $861 = $856 << $859; + $862 = (($861) + 245760)|0; + $863 = $862 >>> 16; + $864 = $863 & 2; + $865 = $860 | $864; + $866 = (14 - ($865))|0; + $867 = $861 << $864; + $868 = $867 >>> 15; + $869 = (($866) + ($868))|0; + $870 = $869 << 1; + $871 = (($869) + 7)|0; + $872 = $$0287$i$i >>> $871; + $873 = $872 & 1; + $874 = $873 | $870; + $$0296$i$i = $874; } } while(0); - $879 = (32980 + ($I7$0$i$i<<2)|0); - $$sum12$i$i = (($$sum$i19$i) + 28)|0; - $880 = (($tbase$255$i) + ($$sum12$i$i)|0); - HEAP32[$880>>2] = $I7$0$i$i; - $$sum13$i$i = (($$sum$i19$i) + 16)|0; - $881 = (($tbase$255$i) + ($$sum13$i$i)|0); - $$sum14$i$i = (($$sum$i19$i) + 20)|0; - $882 = (($tbase$255$i) + ($$sum14$i$i)|0); - HEAP32[$882>>2] = 0; - HEAP32[$881>>2] = 0; - $883 = HEAP32[(32680)>>2]|0; - $884 = 1 << $I7$0$i$i; - $885 = $883 & $884; - $886 = ($885|0)==(0); - if ($886) { - $887 = $883 | $884; - HEAP32[(32680)>>2] = $887; - HEAP32[$879>>2] = $724; - $$sum15$i$i = (($$sum$i19$i) + 24)|0; - $888 = (($tbase$255$i) + ($$sum15$i$i)|0); - HEAP32[$888>>2] = $879; - $$sum16$i$i = (($$sum$i19$i) + 12)|0; - $889 = (($tbase$255$i) + ($$sum16$i$i)|0); - HEAP32[$889>>2] = $724; - $$sum17$i$i = (($$sum$i19$i) + 8)|0; - $890 = (($tbase$255$i) + ($$sum17$i$i)|0); - HEAP32[$890>>2] = $724; + $875 = (33268 + ($$0296$i$i<<2)|0); + $876 = ((($721)) + 28|0); + HEAP32[$876>>2] = $$0296$i$i; + $877 = ((($721)) + 16|0); + $878 = ((($877)) + 4|0); + HEAP32[$878>>2] = 0; + HEAP32[$877>>2] = 0; + $879 = HEAP32[(32968)>>2]|0; + $880 = 1 << $$0296$i$i; + $881 = $879 & $880; + $882 = ($881|0)==(0); + if ($882) { + $883 = $879 | $880; + HEAP32[(32968)>>2] = $883; + HEAP32[$875>>2] = $721; + $884 = ((($721)) + 24|0); + HEAP32[$884>>2] = $875; + $885 = ((($721)) + 12|0); + HEAP32[$885>>2] = $721; + $886 = ((($721)) + 8|0); + HEAP32[$886>>2] = $721; break; } - $891 = HEAP32[$879>>2]|0; - $892 = ((($891)) + 4|0); - $893 = HEAP32[$892>>2]|0; - $894 = $893 & -8; - $895 = ($894|0)==($qsize$0$i$i|0); - L418: do { - if ($895) { - $T$0$lcssa$i25$i = $891; + $887 = HEAP32[$875>>2]|0; + $888 = ($$0296$i$i|0)==(31); + $889 = $$0296$i$i >>> 1; + $890 = (25 - ($889))|0; + $891 = $888 ? 0 : $890; + $892 = $$0287$i$i << $891; + $$0288$i$i = $892;$$0289$i$i = $887; + while(1) { + $893 = ((($$0289$i$i)) + 4|0); + $894 = HEAP32[$893>>2]|0; + $895 = $894 & -8; + $896 = ($895|0)==($$0287$i$i|0); + if ($896) { + label = 265; + break; + } + $897 = $$0288$i$i >>> 31; + $898 = (((($$0289$i$i)) + 16|0) + ($897<<2)|0); + $899 = $$0288$i$i << 1; + $900 = HEAP32[$898>>2]|0; + $901 = ($900|0)==(0|0); + if ($901) { + label = 262; + break; + } else { + $$0288$i$i = $899;$$0289$i$i = $900; + } + } + if ((label|0) == 262) { + $902 = HEAP32[(32980)>>2]|0; + $903 = ($898>>>0)<($902>>>0); + if ($903) { + _abort(); + // unreachable; } else { - $896 = ($I7$0$i$i|0)==(31); - $897 = $I7$0$i$i >>> 1; - $898 = (25 - ($897))|0; - $899 = $896 ? 0 : $898; - $900 = $qsize$0$i$i << $899; - $K8$051$i$i = $900;$T$050$i$i = $891; - while(1) { - $907 = $K8$051$i$i >>> 31; - $908 = (((($T$050$i$i)) + 16|0) + ($907<<2)|0); - $903 = HEAP32[$908>>2]|0; - $909 = ($903|0)==(0|0); - if ($909) { - $$lcssa = $908;$T$050$i$i$lcssa = $T$050$i$i; - break; - } - $901 = $K8$051$i$i << 1; - $902 = ((($903)) + 4|0); - $904 = HEAP32[$902>>2]|0; - $905 = $904 & -8; - $906 = ($905|0)==($qsize$0$i$i|0); - if ($906) { - $T$0$lcssa$i25$i = $903; - break L418; - } else { - $K8$051$i$i = $901;$T$050$i$i = $903; - } - } - $910 = HEAP32[(32692)>>2]|0; - $911 = ($$lcssa>>>0)<($910>>>0); - if ($911) { - _abort(); - // unreachable; - } else { - HEAP32[$$lcssa>>2] = $724; - $$sum23$i$i = (($$sum$i19$i) + 24)|0; - $912 = (($tbase$255$i) + ($$sum23$i$i)|0); - HEAP32[$912>>2] = $T$050$i$i$lcssa; - $$sum24$i$i = (($$sum$i19$i) + 12)|0; - $913 = (($tbase$255$i) + ($$sum24$i$i)|0); - HEAP32[$913>>2] = $724; - $$sum25$i$i = (($$sum$i19$i) + 8)|0; - $914 = (($tbase$255$i) + ($$sum25$i$i)|0); - HEAP32[$914>>2] = $724; - break L324; - } + HEAP32[$898>>2] = $721; + $904 = ((($721)) + 24|0); + HEAP32[$904>>2] = $$0289$i$i; + $905 = ((($721)) + 12|0); + HEAP32[$905>>2] = $721; + $906 = ((($721)) + 8|0); + HEAP32[$906>>2] = $721; + break; + } + } + else if ((label|0) == 265) { + $907 = ((($$0289$i$i)) + 8|0); + $908 = HEAP32[$907>>2]|0; + $909 = HEAP32[(32980)>>2]|0; + $910 = ($908>>>0)>=($909>>>0); + $not$7$i$i = ($$0289$i$i>>>0)>=($909>>>0); + $911 = $910 & $not$7$i$i; + if ($911) { + $912 = ((($908)) + 12|0); + HEAP32[$912>>2] = $721; + HEAP32[$907>>2] = $721; + $913 = ((($721)) + 8|0); + HEAP32[$913>>2] = $908; + $914 = ((($721)) + 12|0); + HEAP32[$914>>2] = $$0289$i$i; + $915 = ((($721)) + 24|0); + HEAP32[$915>>2] = 0; + break; + } else { + _abort(); + // unreachable; } - } while(0); - $915 = ((($T$0$lcssa$i25$i)) + 8|0); - $916 = HEAP32[$915>>2]|0; - $917 = HEAP32[(32692)>>2]|0; - $918 = ($916>>>0)>=($917>>>0); - $not$$i26$i = ($T$0$lcssa$i25$i>>>0)>=($917>>>0); - $919 = $918 & $not$$i26$i; - if ($919) { - $920 = ((($916)) + 12|0); - HEAP32[$920>>2] = $724; - HEAP32[$915>>2] = $724; - $$sum20$i$i = (($$sum$i19$i) + 8)|0; - $921 = (($tbase$255$i) + ($$sum20$i$i)|0); - HEAP32[$921>>2] = $916; - $$sum21$i$i = (($$sum$i19$i) + 12)|0; - $922 = (($tbase$255$i) + ($$sum21$i$i)|0); - HEAP32[$922>>2] = $T$0$lcssa$i25$i; - $$sum22$i$i = (($$sum$i19$i) + 24)|0; - $923 = (($tbase$255$i) + ($$sum22$i$i)|0); - HEAP32[$923>>2] = 0; - break; - } else { - _abort(); - // unreachable; } } } while(0); - $$sum1819$i$i = $711 | 8; - $924 = (($tbase$255$i) + ($$sum1819$i$i)|0); - $mem$0 = $924; - return ($mem$0|0); - } else { - $sp$0$i$i$i = (33124); + $1047 = ((($709)) + 8|0); + $$0 = $1047; + STACKTOP = sp;return ($$0|0); } } + $$0$i$i$i = (33412); while(1) { - $925 = HEAP32[$sp$0$i$i$i>>2]|0; - $926 = ($925>>>0)>($635>>>0); - if (!($926)) { - $927 = ((($sp$0$i$i$i)) + 4|0); - $928 = HEAP32[$927>>2]|0; - $929 = (($925) + ($928)|0); - $930 = ($929>>>0)>($635>>>0); - if ($930) { - $$lcssa215 = $925;$$lcssa216 = $928;$$lcssa217 = $929; + $916 = HEAP32[$$0$i$i$i>>2]|0; + $917 = ($916>>>0)>($630>>>0); + if (!($917)) { + $918 = ((($$0$i$i$i)) + 4|0); + $919 = HEAP32[$918>>2]|0; + $920 = (($916) + ($919)|0); + $921 = ($920>>>0)>($630>>>0); + if ($921) { break; } } - $931 = ((($sp$0$i$i$i)) + 8|0); - $932 = HEAP32[$931>>2]|0; - $sp$0$i$i$i = $932; + $922 = ((($$0$i$i$i)) + 8|0); + $923 = HEAP32[$922>>2]|0; + $$0$i$i$i = $923; } - $$sum$i14$i = (($$lcssa216) + -47)|0; - $$sum1$i15$i = (($$lcssa216) + -39)|0; - $933 = (($$lcssa215) + ($$sum1$i15$i)|0); - $934 = $933; - $935 = $934 & 7; - $936 = ($935|0)==(0); - $937 = (0 - ($934))|0; - $938 = $937 & 7; - $939 = $936 ? 0 : $938; - $$sum2$i16$i = (($$sum$i14$i) + ($939))|0; - $940 = (($$lcssa215) + ($$sum2$i16$i)|0); - $941 = ((($635)) + 16|0); - $942 = ($940>>>0)<($941>>>0); - $943 = $942 ? $635 : $940; - $944 = ((($943)) + 8|0); - $945 = (($tsize$254$i) + -40)|0; - $946 = ((($tbase$255$i)) + 8|0); - $947 = $946; - $948 = $947 & 7; - $949 = ($948|0)==(0); - $950 = (0 - ($947))|0; - $951 = $950 & 7; - $952 = $949 ? 0 : $951; - $953 = (($tbase$255$i) + ($952)|0); - $954 = (($945) - ($952))|0; - HEAP32[(32700)>>2] = $953; - HEAP32[(32688)>>2] = $954; - $955 = $954 | 1; - $$sum$i$i$i = (($952) + 4)|0; - $956 = (($tbase$255$i) + ($$sum$i$i$i)|0); - HEAP32[$956>>2] = $955; - $$sum2$i$i$i = (($tsize$254$i) + -36)|0; - $957 = (($tbase$255$i) + ($$sum2$i$i$i)|0); - HEAP32[$957>>2] = 40; - $958 = HEAP32[(33164)>>2]|0; - HEAP32[(32704)>>2] = $958; - $959 = ((($943)) + 4|0); - HEAP32[$959>>2] = 27; - ;HEAP32[$944>>2]=HEAP32[(33124)>>2]|0;HEAP32[$944+4>>2]=HEAP32[(33124)+4>>2]|0;HEAP32[$944+8>>2]=HEAP32[(33124)+8>>2]|0;HEAP32[$944+12>>2]=HEAP32[(33124)+12>>2]|0; - HEAP32[(33124)>>2] = $tbase$255$i; - HEAP32[(33128)>>2] = $tsize$254$i; - HEAP32[(33136)>>2] = 0; - HEAP32[(33132)>>2] = $944; - $960 = ((($943)) + 28|0); - HEAP32[$960>>2] = 7; - $961 = ((($943)) + 32|0); - $962 = ($961>>>0)<($$lcssa217>>>0); - if ($962) { - $964 = $960; - while(1) { - $963 = ((($964)) + 4|0); - HEAP32[$963>>2] = 7; - $965 = ((($964)) + 8|0); - $966 = ($965>>>0)<($$lcssa217>>>0); - if ($966) { - $964 = $963; - } else { - break; - } + $924 = ((($920)) + -47|0); + $925 = ((($924)) + 8|0); + $926 = $925; + $927 = $926 & 7; + $928 = ($927|0)==(0); + $929 = (0 - ($926))|0; + $930 = $929 & 7; + $931 = $928 ? 0 : $930; + $932 = (($924) + ($931)|0); + $933 = ((($630)) + 16|0); + $934 = ($932>>>0)<($933>>>0); + $935 = $934 ? $630 : $932; + $936 = ((($935)) + 8|0); + $937 = ((($935)) + 24|0); + $938 = (($$723948$i) + -40)|0; + $939 = ((($$749$i)) + 8|0); + $940 = $939; + $941 = $940 & 7; + $942 = ($941|0)==(0); + $943 = (0 - ($940))|0; + $944 = $943 & 7; + $945 = $942 ? 0 : $944; + $946 = (($$749$i) + ($945)|0); + $947 = (($938) - ($945))|0; + HEAP32[(32988)>>2] = $946; + HEAP32[(32976)>>2] = $947; + $948 = $947 | 1; + $949 = ((($946)) + 4|0); + HEAP32[$949>>2] = $948; + $950 = (($946) + ($947)|0); + $951 = ((($950)) + 4|0); + HEAP32[$951>>2] = 40; + $952 = HEAP32[(33452)>>2]|0; + HEAP32[(32992)>>2] = $952; + $953 = ((($935)) + 4|0); + HEAP32[$953>>2] = 27; + ;HEAP32[$936>>2]=HEAP32[(33412)>>2]|0;HEAP32[$936+4>>2]=HEAP32[(33412)+4>>2]|0;HEAP32[$936+8>>2]=HEAP32[(33412)+8>>2]|0;HEAP32[$936+12>>2]=HEAP32[(33412)+12>>2]|0; + HEAP32[(33412)>>2] = $$749$i; + HEAP32[(33416)>>2] = $$723948$i; + HEAP32[(33424)>>2] = 0; + HEAP32[(33420)>>2] = $936; + $955 = $937; + while(1) { + $954 = ((($955)) + 4|0); + HEAP32[$954>>2] = 7; + $956 = ((($955)) + 8|0); + $957 = ($956>>>0)<($920>>>0); + if ($957) { + $955 = $954; + } else { + break; } } - $967 = ($943|0)==($635|0); - if (!($967)) { - $968 = $943; - $969 = $635; - $970 = (($968) - ($969))|0; - $971 = HEAP32[$959>>2]|0; - $972 = $971 & -2; - HEAP32[$959>>2] = $972; - $973 = $970 | 1; - $974 = ((($635)) + 4|0); - HEAP32[$974>>2] = $973; - HEAP32[$943>>2] = $970; - $975 = $970 >>> 3; - $976 = ($970>>>0)<(256); - if ($976) { - $977 = $975 << 1; - $978 = (32716 + ($977<<2)|0); - $979 = HEAP32[32676>>2]|0; - $980 = 1 << $975; - $981 = $979 & $980; - $982 = ($981|0)==(0); - if ($982) { - $983 = $979 | $980; - HEAP32[32676>>2] = $983; - $$pre$i$i = (($977) + 2)|0; - $$pre14$i$i = (32716 + ($$pre$i$i<<2)|0); - $$pre$phi$i$iZ2D = $$pre14$i$i;$F$0$i$i = $978; + $958 = ($935|0)==($630|0); + if (!($958)) { + $959 = $935; + $960 = $630; + $961 = (($959) - ($960))|0; + $962 = HEAP32[$953>>2]|0; + $963 = $962 & -2; + HEAP32[$953>>2] = $963; + $964 = $961 | 1; + $965 = ((($630)) + 4|0); + HEAP32[$965>>2] = $964; + HEAP32[$935>>2] = $961; + $966 = $961 >>> 3; + $967 = ($961>>>0)<(256); + if ($967) { + $968 = $966 << 1; + $969 = (33004 + ($968<<2)|0); + $970 = HEAP32[8241]|0; + $971 = 1 << $966; + $972 = $970 & $971; + $973 = ($972|0)==(0); + if ($973) { + $974 = $970 | $971; + HEAP32[8241] = $974; + $$pre$i$i = ((($969)) + 8|0); + $$0211$i$i = $969;$$pre$phi$i$iZ2D = $$pre$i$i; } else { - $$sum4$i$i = (($977) + 2)|0; - $984 = (32716 + ($$sum4$i$i<<2)|0); - $985 = HEAP32[$984>>2]|0; - $986 = HEAP32[(32692)>>2]|0; - $987 = ($985>>>0)<($986>>>0); - if ($987) { + $975 = ((($969)) + 8|0); + $976 = HEAP32[$975>>2]|0; + $977 = HEAP32[(32980)>>2]|0; + $978 = ($976>>>0)<($977>>>0); + if ($978) { _abort(); // unreachable; } else { - $$pre$phi$i$iZ2D = $984;$F$0$i$i = $985; + $$0211$i$i = $976;$$pre$phi$i$iZ2D = $975; } } - HEAP32[$$pre$phi$i$iZ2D>>2] = $635; - $988 = ((($F$0$i$i)) + 12|0); - HEAP32[$988>>2] = $635; - $989 = ((($635)) + 8|0); - HEAP32[$989>>2] = $F$0$i$i; - $990 = ((($635)) + 12|0); - HEAP32[$990>>2] = $978; + HEAP32[$$pre$phi$i$iZ2D>>2] = $630; + $979 = ((($$0211$i$i)) + 12|0); + HEAP32[$979>>2] = $630; + $980 = ((($630)) + 8|0); + HEAP32[$980>>2] = $$0211$i$i; + $981 = ((($630)) + 12|0); + HEAP32[$981>>2] = $969; break; } - $991 = $970 >>> 8; - $992 = ($991|0)==(0); - if ($992) { - $I1$0$i$i = 0; + $982 = $961 >>> 8; + $983 = ($982|0)==(0); + if ($983) { + $$0212$i$i = 0; } else { - $993 = ($970>>>0)>(16777215); - if ($993) { - $I1$0$i$i = 31; + $984 = ($961>>>0)>(16777215); + if ($984) { + $$0212$i$i = 31; } else { - $994 = (($991) + 1048320)|0; + $985 = (($982) + 1048320)|0; + $986 = $985 >>> 16; + $987 = $986 & 8; + $988 = $982 << $987; + $989 = (($988) + 520192)|0; + $990 = $989 >>> 16; + $991 = $990 & 4; + $992 = $991 | $987; + $993 = $988 << $991; + $994 = (($993) + 245760)|0; $995 = $994 >>> 16; - $996 = $995 & 8; - $997 = $991 << $996; - $998 = (($997) + 520192)|0; - $999 = $998 >>> 16; - $1000 = $999 & 4; - $1001 = $1000 | $996; - $1002 = $997 << $1000; - $1003 = (($1002) + 245760)|0; - $1004 = $1003 >>> 16; - $1005 = $1004 & 2; - $1006 = $1001 | $1005; - $1007 = (14 - ($1006))|0; - $1008 = $1002 << $1005; - $1009 = $1008 >>> 15; - $1010 = (($1007) + ($1009))|0; - $1011 = $1010 << 1; - $1012 = (($1010) + 7)|0; - $1013 = $970 >>> $1012; - $1014 = $1013 & 1; - $1015 = $1014 | $1011; - $I1$0$i$i = $1015; + $996 = $995 & 2; + $997 = $992 | $996; + $998 = (14 - ($997))|0; + $999 = $993 << $996; + $1000 = $999 >>> 15; + $1001 = (($998) + ($1000))|0; + $1002 = $1001 << 1; + $1003 = (($1001) + 7)|0; + $1004 = $961 >>> $1003; + $1005 = $1004 & 1; + $1006 = $1005 | $1002; + $$0212$i$i = $1006; } } - $1016 = (32980 + ($I1$0$i$i<<2)|0); - $1017 = ((($635)) + 28|0); - HEAP32[$1017>>2] = $I1$0$i$i; - $1018 = ((($635)) + 20|0); - HEAP32[$1018>>2] = 0; - HEAP32[$941>>2] = 0; - $1019 = HEAP32[(32680)>>2]|0; - $1020 = 1 << $I1$0$i$i; - $1021 = $1019 & $1020; - $1022 = ($1021|0)==(0); - if ($1022) { - $1023 = $1019 | $1020; - HEAP32[(32680)>>2] = $1023; - HEAP32[$1016>>2] = $635; - $1024 = ((($635)) + 24|0); - HEAP32[$1024>>2] = $1016; - $1025 = ((($635)) + 12|0); - HEAP32[$1025>>2] = $635; - $1026 = ((($635)) + 8|0); - HEAP32[$1026>>2] = $635; + $1007 = (33268 + ($$0212$i$i<<2)|0); + $1008 = ((($630)) + 28|0); + HEAP32[$1008>>2] = $$0212$i$i; + $1009 = ((($630)) + 20|0); + HEAP32[$1009>>2] = 0; + HEAP32[$933>>2] = 0; + $1010 = HEAP32[(32968)>>2]|0; + $1011 = 1 << $$0212$i$i; + $1012 = $1010 & $1011; + $1013 = ($1012|0)==(0); + if ($1013) { + $1014 = $1010 | $1011; + HEAP32[(32968)>>2] = $1014; + HEAP32[$1007>>2] = $630; + $1015 = ((($630)) + 24|0); + HEAP32[$1015>>2] = $1007; + $1016 = ((($630)) + 12|0); + HEAP32[$1016>>2] = $630; + $1017 = ((($630)) + 8|0); + HEAP32[$1017>>2] = $630; break; } - $1027 = HEAP32[$1016>>2]|0; - $1028 = ((($1027)) + 4|0); - $1029 = HEAP32[$1028>>2]|0; - $1030 = $1029 & -8; - $1031 = ($1030|0)==($970|0); - L459: do { - if ($1031) { - $T$0$lcssa$i$i = $1027; + $1018 = HEAP32[$1007>>2]|0; + $1019 = ($$0212$i$i|0)==(31); + $1020 = $$0212$i$i >>> 1; + $1021 = (25 - ($1020))|0; + $1022 = $1019 ? 0 : $1021; + $1023 = $961 << $1022; + $$0206$i$i = $1023;$$0207$i$i = $1018; + while(1) { + $1024 = ((($$0207$i$i)) + 4|0); + $1025 = HEAP32[$1024>>2]|0; + $1026 = $1025 & -8; + $1027 = ($1026|0)==($961|0); + if ($1027) { + label = 292; + break; + } + $1028 = $$0206$i$i >>> 31; + $1029 = (((($$0207$i$i)) + 16|0) + ($1028<<2)|0); + $1030 = $$0206$i$i << 1; + $1031 = HEAP32[$1029>>2]|0; + $1032 = ($1031|0)==(0|0); + if ($1032) { + label = 289; + break; } else { - $1032 = ($I1$0$i$i|0)==(31); - $1033 = $I1$0$i$i >>> 1; - $1034 = (25 - ($1033))|0; - $1035 = $1032 ? 0 : $1034; - $1036 = $970 << $1035; - $K2$07$i$i = $1036;$T$06$i$i = $1027; - while(1) { - $1043 = $K2$07$i$i >>> 31; - $1044 = (((($T$06$i$i)) + 16|0) + ($1043<<2)|0); - $1039 = HEAP32[$1044>>2]|0; - $1045 = ($1039|0)==(0|0); - if ($1045) { - $$lcssa211 = $1044;$T$06$i$i$lcssa = $T$06$i$i; - break; - } - $1037 = $K2$07$i$i << 1; - $1038 = ((($1039)) + 4|0); - $1040 = HEAP32[$1038>>2]|0; - $1041 = $1040 & -8; - $1042 = ($1041|0)==($970|0); - if ($1042) { - $T$0$lcssa$i$i = $1039; - break L459; - } else { - $K2$07$i$i = $1037;$T$06$i$i = $1039; - } - } - $1046 = HEAP32[(32692)>>2]|0; - $1047 = ($$lcssa211>>>0)<($1046>>>0); - if ($1047) { - _abort(); - // unreachable; - } else { - HEAP32[$$lcssa211>>2] = $635; - $1048 = ((($635)) + 24|0); - HEAP32[$1048>>2] = $T$06$i$i$lcssa; - $1049 = ((($635)) + 12|0); - HEAP32[$1049>>2] = $635; - $1050 = ((($635)) + 8|0); - HEAP32[$1050>>2] = $635; - break L299; - } + $$0206$i$i = $1030;$$0207$i$i = $1031; + } + } + if ((label|0) == 289) { + $1033 = HEAP32[(32980)>>2]|0; + $1034 = ($1029>>>0)<($1033>>>0); + if ($1034) { + _abort(); + // unreachable; + } else { + HEAP32[$1029>>2] = $630; + $1035 = ((($630)) + 24|0); + HEAP32[$1035>>2] = $$0207$i$i; + $1036 = ((($630)) + 12|0); + HEAP32[$1036>>2] = $630; + $1037 = ((($630)) + 8|0); + HEAP32[$1037>>2] = $630; + break; + } + } + else if ((label|0) == 292) { + $1038 = ((($$0207$i$i)) + 8|0); + $1039 = HEAP32[$1038>>2]|0; + $1040 = HEAP32[(32980)>>2]|0; + $1041 = ($1039>>>0)>=($1040>>>0); + $not$$i$i = ($$0207$i$i>>>0)>=($1040>>>0); + $1042 = $1041 & $not$$i$i; + if ($1042) { + $1043 = ((($1039)) + 12|0); + HEAP32[$1043>>2] = $630; + HEAP32[$1038>>2] = $630; + $1044 = ((($630)) + 8|0); + HEAP32[$1044>>2] = $1039; + $1045 = ((($630)) + 12|0); + HEAP32[$1045>>2] = $$0207$i$i; + $1046 = ((($630)) + 24|0); + HEAP32[$1046>>2] = 0; + break; + } else { + _abort(); + // unreachable; } - } while(0); - $1051 = ((($T$0$lcssa$i$i)) + 8|0); - $1052 = HEAP32[$1051>>2]|0; - $1053 = HEAP32[(32692)>>2]|0; - $1054 = ($1052>>>0)>=($1053>>>0); - $not$$i$i = ($T$0$lcssa$i$i>>>0)>=($1053>>>0); - $1055 = $1054 & $not$$i$i; - if ($1055) { - $1056 = ((($1052)) + 12|0); - HEAP32[$1056>>2] = $635; - HEAP32[$1051>>2] = $635; - $1057 = ((($635)) + 8|0); - HEAP32[$1057>>2] = $1052; - $1058 = ((($635)) + 12|0); - HEAP32[$1058>>2] = $T$0$lcssa$i$i; - $1059 = ((($635)) + 24|0); - HEAP32[$1059>>2] = 0; - break; - } else { - _abort(); - // unreachable; } } } } while(0); - $1060 = HEAP32[(32688)>>2]|0; - $1061 = ($1060>>>0)>($nb$0>>>0); - if ($1061) { - $1062 = (($1060) - ($nb$0))|0; - HEAP32[(32688)>>2] = $1062; - $1063 = HEAP32[(32700)>>2]|0; - $1064 = (($1063) + ($nb$0)|0); - HEAP32[(32700)>>2] = $1064; - $1065 = $1062 | 1; - $$sum$i32 = (($nb$0) + 4)|0; - $1066 = (($1063) + ($$sum$i32)|0); - HEAP32[$1066>>2] = $1065; - $1067 = $nb$0 | 3; - $1068 = ((($1063)) + 4|0); - HEAP32[$1068>>2] = $1067; - $1069 = ((($1063)) + 8|0); - $mem$0 = $1069; - return ($mem$0|0); + $1048 = HEAP32[(32976)>>2]|0; + $1049 = ($1048>>>0)>($$0197>>>0); + if ($1049) { + $1050 = (($1048) - ($$0197))|0; + HEAP32[(32976)>>2] = $1050; + $1051 = HEAP32[(32988)>>2]|0; + $1052 = (($1051) + ($$0197)|0); + HEAP32[(32988)>>2] = $1052; + $1053 = $1050 | 1; + $1054 = ((($1052)) + 4|0); + HEAP32[$1054>>2] = $1053; + $1055 = $$0197 | 3; + $1056 = ((($1051)) + 4|0); + HEAP32[$1056>>2] = $1055; + $1057 = ((($1051)) + 8|0); + $$0 = $1057; + STACKTOP = sp;return ($$0|0); } } - $1070 = (___errno_location()|0); - HEAP32[$1070>>2] = 12; - $mem$0 = 0; - return ($mem$0|0); + $1058 = (___errno_location()|0); + HEAP32[$1058>>2] = 12; + $$0 = 0; + STACKTOP = sp;return ($$0|0); } -function _free($mem) { - $mem = $mem|0; - var $$lcssa = 0, $$pre = 0, $$pre$phi59Z2D = 0, $$pre$phi61Z2D = 0, $$pre$phiZ2D = 0, $$pre57 = 0, $$pre58 = 0, $$pre60 = 0, $$sum = 0, $$sum11 = 0, $$sum12 = 0, $$sum13 = 0, $$sum14 = 0, $$sum1718 = 0, $$sum19 = 0, $$sum2 = 0, $$sum20 = 0, $$sum22 = 0, $$sum23 = 0, $$sum24 = 0; - var $$sum25 = 0, $$sum26 = 0, $$sum27 = 0, $$sum28 = 0, $$sum29 = 0, $$sum3 = 0, $$sum30 = 0, $$sum31 = 0, $$sum5 = 0, $$sum67 = 0, $$sum8 = 0, $$sum9 = 0, $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0; - var $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0; - var $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0; - var $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0; - var $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0; - var $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0; - var $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0; - var $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0; - var $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0; - var $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0; - var $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0; - var $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0; - var $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0; - var $321 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0; - var $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0; - var $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0; - var $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $F16$0 = 0, $I18$0 = 0, $K19$052 = 0, $R$0 = 0, $R$0$lcssa = 0, $R$1 = 0; - var $R7$0 = 0, $R7$0$lcssa = 0, $R7$1 = 0, $RP$0 = 0, $RP$0$lcssa = 0, $RP9$0 = 0, $RP9$0$lcssa = 0, $T$0$lcssa = 0, $T$051 = 0, $T$051$lcssa = 0, $cond = 0, $cond47 = 0, $not$ = 0, $p$0 = 0, $psize$0 = 0, $psize$1 = 0, $sp$0$i = 0, $sp$0$in$i = 0, label = 0, sp = 0; +function _free($0) { + $0 = $0|0; + var $$0212$i = 0, $$0212$in$i = 0, $$0383 = 0, $$0384 = 0, $$0396 = 0, $$0403 = 0, $$1 = 0, $$1382 = 0, $$1387 = 0, $$1390 = 0, $$1398 = 0, $$1402 = 0, $$2 = 0, $$3 = 0, $$3400 = 0, $$pre = 0, $$pre$phi443Z2D = 0, $$pre$phi445Z2D = 0, $$pre$phiZ2D = 0, $$pre442 = 0; + var $$pre444 = 0, $$sink3 = 0, $$sink5 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0; + var $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0; + var $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0; + var $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0; + var $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0; + var $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0; + var $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0; + var $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0; + var $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0; + var $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0; + var $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0; + var $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0; + var $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0; + var $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0; + var $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0; + var $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0; + var $99 = 0, $cond421 = 0, $cond422 = 0, $not$ = 0, $not$405 = 0, $not$437 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = ($mem|0)==(0|0); - if ($0) { + $1 = ($0|0)==(0|0); + if ($1) { return; } - $1 = ((($mem)) + -8|0); - $2 = HEAP32[(32692)>>2]|0; - $3 = ($1>>>0)<($2>>>0); - if ($3) { + $2 = ((($0)) + -8|0); + $3 = HEAP32[(32980)>>2]|0; + $4 = ($2>>>0)<($3>>>0); + if ($4) { _abort(); // unreachable; } - $4 = ((($mem)) + -4|0); - $5 = HEAP32[$4>>2]|0; - $6 = $5 & 3; - $7 = ($6|0)==(1); - if ($7) { + $5 = ((($0)) + -4|0); + $6 = HEAP32[$5>>2]|0; + $7 = $6 & 3; + $8 = ($7|0)==(1); + if ($8) { _abort(); // unreachable; } - $8 = $5 & -8; - $$sum = (($8) + -8)|0; - $9 = (($mem) + ($$sum)|0); - $10 = $5 & 1; - $11 = ($10|0)==(0); - do { - if ($11) { - $12 = HEAP32[$1>>2]|0; - $13 = ($6|0)==(0); - if ($13) { + $9 = $6 & -8; + $10 = (($2) + ($9)|0); + $11 = $6 & 1; + $12 = ($11|0)==(0); + L10: do { + if ($12) { + $13 = HEAP32[$2>>2]|0; + $14 = ($7|0)==(0); + if ($14) { return; } - $$sum2 = (-8 - ($12))|0; - $14 = (($mem) + ($$sum2)|0); - $15 = (($12) + ($8))|0; - $16 = ($14>>>0)<($2>>>0); - if ($16) { + $15 = (0 - ($13))|0; + $16 = (($2) + ($15)|0); + $17 = (($13) + ($9))|0; + $18 = ($16>>>0)<($3>>>0); + if ($18) { _abort(); // unreachable; } - $17 = HEAP32[(32696)>>2]|0; - $18 = ($14|0)==($17|0); - if ($18) { - $$sum3 = (($8) + -4)|0; - $103 = (($mem) + ($$sum3)|0); - $104 = HEAP32[$103>>2]|0; - $105 = $104 & 3; - $106 = ($105|0)==(3); - if (!($106)) { - $p$0 = $14;$psize$0 = $15; + $19 = HEAP32[(32984)>>2]|0; + $20 = ($16|0)==($19|0); + if ($20) { + $104 = ((($10)) + 4|0); + $105 = HEAP32[$104>>2]|0; + $106 = $105 & 3; + $107 = ($106|0)==(3); + if (!($107)) { + $$1 = $16;$$1382 = $17;$113 = $16; break; } - HEAP32[(32684)>>2] = $15; - $107 = $104 & -2; - HEAP32[$103>>2] = $107; - $108 = $15 | 1; - $$sum20 = (($$sum2) + 4)|0; - $109 = (($mem) + ($$sum20)|0); - HEAP32[$109>>2] = $108; - HEAP32[$9>>2] = $15; + $108 = (($16) + ($17)|0); + $109 = ((($16)) + 4|0); + $110 = $17 | 1; + $111 = $105 & -2; + HEAP32[(32972)>>2] = $17; + HEAP32[$104>>2] = $111; + HEAP32[$109>>2] = $110; + HEAP32[$108>>2] = $17; return; } - $19 = $12 >>> 3; - $20 = ($12>>>0)<(256); - if ($20) { - $$sum30 = (($$sum2) + 8)|0; - $21 = (($mem) + ($$sum30)|0); - $22 = HEAP32[$21>>2]|0; - $$sum31 = (($$sum2) + 12)|0; - $23 = (($mem) + ($$sum31)|0); + $21 = $13 >>> 3; + $22 = ($13>>>0)<(256); + if ($22) { + $23 = ((($16)) + 8|0); $24 = HEAP32[$23>>2]|0; - $25 = $19 << 1; - $26 = (32716 + ($25<<2)|0); - $27 = ($22|0)==($26|0); - if (!($27)) { - $28 = ($22>>>0)<($2>>>0); - if ($28) { + $25 = ((($16)) + 12|0); + $26 = HEAP32[$25>>2]|0; + $27 = $21 << 1; + $28 = (33004 + ($27<<2)|0); + $29 = ($24|0)==($28|0); + if (!($29)) { + $30 = ($24>>>0)<($3>>>0); + if ($30) { _abort(); // unreachable; } - $29 = ((($22)) + 12|0); - $30 = HEAP32[$29>>2]|0; - $31 = ($30|0)==($14|0); - if (!($31)) { + $31 = ((($24)) + 12|0); + $32 = HEAP32[$31>>2]|0; + $33 = ($32|0)==($16|0); + if (!($33)) { _abort(); // unreachable; } } - $32 = ($24|0)==($22|0); - if ($32) { - $33 = 1 << $19; - $34 = $33 ^ -1; - $35 = HEAP32[32676>>2]|0; - $36 = $35 & $34; - HEAP32[32676>>2] = $36; - $p$0 = $14;$psize$0 = $15; + $34 = ($26|0)==($24|0); + if ($34) { + $35 = 1 << $21; + $36 = $35 ^ -1; + $37 = HEAP32[8241]|0; + $38 = $37 & $36; + HEAP32[8241] = $38; + $$1 = $16;$$1382 = $17;$113 = $16; break; } - $37 = ($24|0)==($26|0); - if ($37) { - $$pre60 = ((($24)) + 8|0); - $$pre$phi61Z2D = $$pre60; + $39 = ($26|0)==($28|0); + if ($39) { + $$pre444 = ((($26)) + 8|0); + $$pre$phi445Z2D = $$pre444; } else { - $38 = ($24>>>0)<($2>>>0); - if ($38) { + $40 = ($26>>>0)<($3>>>0); + if ($40) { _abort(); // unreachable; } - $39 = ((($24)) + 8|0); - $40 = HEAP32[$39>>2]|0; - $41 = ($40|0)==($14|0); - if ($41) { - $$pre$phi61Z2D = $39; + $41 = ((($26)) + 8|0); + $42 = HEAP32[$41>>2]|0; + $43 = ($42|0)==($16|0); + if ($43) { + $$pre$phi445Z2D = $41; } else { _abort(); // unreachable; } } - $42 = ((($22)) + 12|0); - HEAP32[$42>>2] = $24; - HEAP32[$$pre$phi61Z2D>>2] = $22; - $p$0 = $14;$psize$0 = $15; + $44 = ((($24)) + 12|0); + HEAP32[$44>>2] = $26; + HEAP32[$$pre$phi445Z2D>>2] = $24; + $$1 = $16;$$1382 = $17;$113 = $16; break; } - $$sum22 = (($$sum2) + 24)|0; - $43 = (($mem) + ($$sum22)|0); - $44 = HEAP32[$43>>2]|0; - $$sum23 = (($$sum2) + 12)|0; - $45 = (($mem) + ($$sum23)|0); + $45 = ((($16)) + 24|0); $46 = HEAP32[$45>>2]|0; - $47 = ($46|0)==($14|0); + $47 = ((($16)) + 12|0); + $48 = HEAP32[$47>>2]|0; + $49 = ($48|0)==($16|0); do { - if ($47) { - $$sum25 = (($$sum2) + 20)|0; - $57 = (($mem) + ($$sum25)|0); - $58 = HEAP32[$57>>2]|0; - $59 = ($58|0)==(0|0); - if ($59) { - $$sum24 = (($$sum2) + 16)|0; - $60 = (($mem) + ($$sum24)|0); - $61 = HEAP32[$60>>2]|0; - $62 = ($61|0)==(0|0); - if ($62) { - $R$1 = 0; + if ($49) { + $59 = ((($16)) + 16|0); + $60 = ((($59)) + 4|0); + $61 = HEAP32[$60>>2]|0; + $62 = ($61|0)==(0|0); + if ($62) { + $63 = HEAP32[$59>>2]|0; + $64 = ($63|0)==(0|0); + if ($64) { + $$3 = 0; break; } else { - $R$0 = $61;$RP$0 = $60; + $$1387 = $63;$$1390 = $59; } } else { - $R$0 = $58;$RP$0 = $57; + $$1387 = $61;$$1390 = $60; } while(1) { - $63 = ((($R$0)) + 20|0); - $64 = HEAP32[$63>>2]|0; - $65 = ($64|0)==(0|0); - if (!($65)) { - $R$0 = $64;$RP$0 = $63; + $65 = ((($$1387)) + 20|0); + $66 = HEAP32[$65>>2]|0; + $67 = ($66|0)==(0|0); + if (!($67)) { + $$1387 = $66;$$1390 = $65; continue; } - $66 = ((($R$0)) + 16|0); - $67 = HEAP32[$66>>2]|0; - $68 = ($67|0)==(0|0); - if ($68) { - $R$0$lcssa = $R$0;$RP$0$lcssa = $RP$0; + $68 = ((($$1387)) + 16|0); + $69 = HEAP32[$68>>2]|0; + $70 = ($69|0)==(0|0); + if ($70) { break; } else { - $R$0 = $67;$RP$0 = $66; + $$1387 = $69;$$1390 = $68; } } - $69 = ($RP$0$lcssa>>>0)<($2>>>0); - if ($69) { + $71 = ($$1390>>>0)<($3>>>0); + if ($71) { _abort(); // unreachable; } else { - HEAP32[$RP$0$lcssa>>2] = 0; - $R$1 = $R$0$lcssa; + HEAP32[$$1390>>2] = 0; + $$3 = $$1387; break; } } else { - $$sum29 = (($$sum2) + 8)|0; - $48 = (($mem) + ($$sum29)|0); - $49 = HEAP32[$48>>2]|0; - $50 = ($49>>>0)<($2>>>0); - if ($50) { + $50 = ((($16)) + 8|0); + $51 = HEAP32[$50>>2]|0; + $52 = ($51>>>0)<($3>>>0); + if ($52) { _abort(); // unreachable; } - $51 = ((($49)) + 12|0); - $52 = HEAP32[$51>>2]|0; - $53 = ($52|0)==($14|0); - if (!($53)) { + $53 = ((($51)) + 12|0); + $54 = HEAP32[$53>>2]|0; + $55 = ($54|0)==($16|0); + if (!($55)) { _abort(); // unreachable; } - $54 = ((($46)) + 8|0); - $55 = HEAP32[$54>>2]|0; - $56 = ($55|0)==($14|0); - if ($56) { - HEAP32[$51>>2] = $46; - HEAP32[$54>>2] = $49; - $R$1 = $46; + $56 = ((($48)) + 8|0); + $57 = HEAP32[$56>>2]|0; + $58 = ($57|0)==($16|0); + if ($58) { + HEAP32[$53>>2] = $48; + HEAP32[$56>>2] = $51; + $$3 = $48; break; } else { _abort(); @@ -23318,294 +19592,285 @@ function _free($mem) { } } } while(0); - $70 = ($44|0)==(0|0); - if ($70) { - $p$0 = $14;$psize$0 = $15; + $72 = ($46|0)==(0|0); + if ($72) { + $$1 = $16;$$1382 = $17;$113 = $16; } else { - $$sum26 = (($$sum2) + 28)|0; - $71 = (($mem) + ($$sum26)|0); - $72 = HEAP32[$71>>2]|0; - $73 = (32980 + ($72<<2)|0); + $73 = ((($16)) + 28|0); $74 = HEAP32[$73>>2]|0; - $75 = ($14|0)==($74|0); - if ($75) { - HEAP32[$73>>2] = $R$1; - $cond = ($R$1|0)==(0|0); - if ($cond) { - $76 = 1 << $72; - $77 = $76 ^ -1; - $78 = HEAP32[(32680)>>2]|0; - $79 = $78 & $77; - HEAP32[(32680)>>2] = $79; - $p$0 = $14;$psize$0 = $15; - break; - } - } else { - $80 = HEAP32[(32692)>>2]|0; - $81 = ($44>>>0)<($80>>>0); - if ($81) { - _abort(); - // unreachable; - } - $82 = ((($44)) + 16|0); - $83 = HEAP32[$82>>2]|0; - $84 = ($83|0)==($14|0); - if ($84) { - HEAP32[$82>>2] = $R$1; + $75 = (33268 + ($74<<2)|0); + $76 = HEAP32[$75>>2]|0; + $77 = ($16|0)==($76|0); + do { + if ($77) { + HEAP32[$75>>2] = $$3; + $cond421 = ($$3|0)==(0|0); + if ($cond421) { + $78 = 1 << $74; + $79 = $78 ^ -1; + $80 = HEAP32[(32968)>>2]|0; + $81 = $80 & $79; + HEAP32[(32968)>>2] = $81; + $$1 = $16;$$1382 = $17;$113 = $16; + break L10; + } } else { - $85 = ((($44)) + 20|0); - HEAP32[$85>>2] = $R$1; - } - $86 = ($R$1|0)==(0|0); - if ($86) { - $p$0 = $14;$psize$0 = $15; - break; + $82 = HEAP32[(32980)>>2]|0; + $83 = ($46>>>0)<($82>>>0); + if ($83) { + _abort(); + // unreachable; + } else { + $84 = ((($46)) + 16|0); + $85 = HEAP32[$84>>2]|0; + $not$405 = ($85|0)!=($16|0); + $$sink3 = $not$405&1; + $86 = (((($46)) + 16|0) + ($$sink3<<2)|0); + HEAP32[$86>>2] = $$3; + $87 = ($$3|0)==(0|0); + if ($87) { + $$1 = $16;$$1382 = $17;$113 = $16; + break L10; + } else { + break; + } + } } - } - $87 = HEAP32[(32692)>>2]|0; - $88 = ($R$1>>>0)<($87>>>0); - if ($88) { + } while(0); + $88 = HEAP32[(32980)>>2]|0; + $89 = ($$3>>>0)<($88>>>0); + if ($89) { _abort(); // unreachable; } - $89 = ((($R$1)) + 24|0); - HEAP32[$89>>2] = $44; - $$sum27 = (($$sum2) + 16)|0; - $90 = (($mem) + ($$sum27)|0); - $91 = HEAP32[$90>>2]|0; - $92 = ($91|0)==(0|0); + $90 = ((($$3)) + 24|0); + HEAP32[$90>>2] = $46; + $91 = ((($16)) + 16|0); + $92 = HEAP32[$91>>2]|0; + $93 = ($92|0)==(0|0); do { - if (!($92)) { - $93 = ($91>>>0)<($87>>>0); - if ($93) { + if (!($93)) { + $94 = ($92>>>0)<($88>>>0); + if ($94) { _abort(); // unreachable; } else { - $94 = ((($R$1)) + 16|0); - HEAP32[$94>>2] = $91; - $95 = ((($91)) + 24|0); - HEAP32[$95>>2] = $R$1; + $95 = ((($$3)) + 16|0); + HEAP32[$95>>2] = $92; + $96 = ((($92)) + 24|0); + HEAP32[$96>>2] = $$3; break; } } } while(0); - $$sum28 = (($$sum2) + 20)|0; - $96 = (($mem) + ($$sum28)|0); - $97 = HEAP32[$96>>2]|0; - $98 = ($97|0)==(0|0); - if ($98) { - $p$0 = $14;$psize$0 = $15; + $97 = ((($91)) + 4|0); + $98 = HEAP32[$97>>2]|0; + $99 = ($98|0)==(0|0); + if ($99) { + $$1 = $16;$$1382 = $17;$113 = $16; } else { - $99 = HEAP32[(32692)>>2]|0; - $100 = ($97>>>0)<($99>>>0); - if ($100) { + $100 = HEAP32[(32980)>>2]|0; + $101 = ($98>>>0)<($100>>>0); + if ($101) { _abort(); // unreachable; } else { - $101 = ((($R$1)) + 20|0); - HEAP32[$101>>2] = $97; - $102 = ((($97)) + 24|0); - HEAP32[$102>>2] = $R$1; - $p$0 = $14;$psize$0 = $15; + $102 = ((($$3)) + 20|0); + HEAP32[$102>>2] = $98; + $103 = ((($98)) + 24|0); + HEAP32[$103>>2] = $$3; + $$1 = $16;$$1382 = $17;$113 = $16; break; } } } } else { - $p$0 = $1;$psize$0 = $8; + $$1 = $2;$$1382 = $9;$113 = $2; } } while(0); - $110 = ($p$0>>>0)<($9>>>0); - if (!($110)) { + $112 = ($113>>>0)<($10>>>0); + if (!($112)) { _abort(); // unreachable; } - $$sum19 = (($8) + -4)|0; - $111 = (($mem) + ($$sum19)|0); - $112 = HEAP32[$111>>2]|0; - $113 = $112 & 1; - $114 = ($113|0)==(0); - if ($114) { + $114 = ((($10)) + 4|0); + $115 = HEAP32[$114>>2]|0; + $116 = $115 & 1; + $117 = ($116|0)==(0); + if ($117) { _abort(); // unreachable; } - $115 = $112 & 2; - $116 = ($115|0)==(0); - if ($116) { - $117 = HEAP32[(32700)>>2]|0; - $118 = ($9|0)==($117|0); - if ($118) { - $119 = HEAP32[(32688)>>2]|0; - $120 = (($119) + ($psize$0))|0; - HEAP32[(32688)>>2] = $120; - HEAP32[(32700)>>2] = $p$0; - $121 = $120 | 1; - $122 = ((($p$0)) + 4|0); - HEAP32[$122>>2] = $121; - $123 = HEAP32[(32696)>>2]|0; - $124 = ($p$0|0)==($123|0); - if (!($124)) { + $118 = $115 & 2; + $119 = ($118|0)==(0); + if ($119) { + $120 = HEAP32[(32988)>>2]|0; + $121 = ($10|0)==($120|0); + $122 = HEAP32[(32984)>>2]|0; + if ($121) { + $123 = HEAP32[(32976)>>2]|0; + $124 = (($123) + ($$1382))|0; + HEAP32[(32976)>>2] = $124; + HEAP32[(32988)>>2] = $$1; + $125 = $124 | 1; + $126 = ((($$1)) + 4|0); + HEAP32[$126>>2] = $125; + $127 = ($$1|0)==($122|0); + if (!($127)) { return; } - HEAP32[(32696)>>2] = 0; - HEAP32[(32684)>>2] = 0; + HEAP32[(32984)>>2] = 0; + HEAP32[(32972)>>2] = 0; return; } - $125 = HEAP32[(32696)>>2]|0; - $126 = ($9|0)==($125|0); - if ($126) { - $127 = HEAP32[(32684)>>2]|0; - $128 = (($127) + ($psize$0))|0; - HEAP32[(32684)>>2] = $128; - HEAP32[(32696)>>2] = $p$0; - $129 = $128 | 1; - $130 = ((($p$0)) + 4|0); - HEAP32[$130>>2] = $129; - $131 = (($p$0) + ($128)|0); - HEAP32[$131>>2] = $128; + $128 = ($10|0)==($122|0); + if ($128) { + $129 = HEAP32[(32972)>>2]|0; + $130 = (($129) + ($$1382))|0; + HEAP32[(32972)>>2] = $130; + HEAP32[(32984)>>2] = $113; + $131 = $130 | 1; + $132 = ((($$1)) + 4|0); + HEAP32[$132>>2] = $131; + $133 = (($113) + ($130)|0); + HEAP32[$133>>2] = $130; return; } - $132 = $112 & -8; - $133 = (($132) + ($psize$0))|0; - $134 = $112 >>> 3; - $135 = ($112>>>0)<(256); - do { - if ($135) { - $136 = (($mem) + ($8)|0); - $137 = HEAP32[$136>>2]|0; - $$sum1718 = $8 | 4; - $138 = (($mem) + ($$sum1718)|0); + $134 = $115 & -8; + $135 = (($134) + ($$1382))|0; + $136 = $115 >>> 3; + $137 = ($115>>>0)<(256); + L108: do { + if ($137) { + $138 = ((($10)) + 8|0); $139 = HEAP32[$138>>2]|0; - $140 = $134 << 1; - $141 = (32716 + ($140<<2)|0); - $142 = ($137|0)==($141|0); - if (!($142)) { - $143 = HEAP32[(32692)>>2]|0; - $144 = ($137>>>0)<($143>>>0); - if ($144) { + $140 = ((($10)) + 12|0); + $141 = HEAP32[$140>>2]|0; + $142 = $136 << 1; + $143 = (33004 + ($142<<2)|0); + $144 = ($139|0)==($143|0); + if (!($144)) { + $145 = HEAP32[(32980)>>2]|0; + $146 = ($139>>>0)<($145>>>0); + if ($146) { _abort(); // unreachable; } - $145 = ((($137)) + 12|0); - $146 = HEAP32[$145>>2]|0; - $147 = ($146|0)==($9|0); - if (!($147)) { + $147 = ((($139)) + 12|0); + $148 = HEAP32[$147>>2]|0; + $149 = ($148|0)==($10|0); + if (!($149)) { _abort(); // unreachable; } } - $148 = ($139|0)==($137|0); - if ($148) { - $149 = 1 << $134; - $150 = $149 ^ -1; - $151 = HEAP32[32676>>2]|0; - $152 = $151 & $150; - HEAP32[32676>>2] = $152; + $150 = ($141|0)==($139|0); + if ($150) { + $151 = 1 << $136; + $152 = $151 ^ -1; + $153 = HEAP32[8241]|0; + $154 = $153 & $152; + HEAP32[8241] = $154; break; } - $153 = ($139|0)==($141|0); - if ($153) { - $$pre58 = ((($139)) + 8|0); - $$pre$phi59Z2D = $$pre58; + $155 = ($141|0)==($143|0); + if ($155) { + $$pre442 = ((($141)) + 8|0); + $$pre$phi443Z2D = $$pre442; } else { - $154 = HEAP32[(32692)>>2]|0; - $155 = ($139>>>0)<($154>>>0); - if ($155) { + $156 = HEAP32[(32980)>>2]|0; + $157 = ($141>>>0)<($156>>>0); + if ($157) { _abort(); // unreachable; } - $156 = ((($139)) + 8|0); - $157 = HEAP32[$156>>2]|0; - $158 = ($157|0)==($9|0); - if ($158) { - $$pre$phi59Z2D = $156; + $158 = ((($141)) + 8|0); + $159 = HEAP32[$158>>2]|0; + $160 = ($159|0)==($10|0); + if ($160) { + $$pre$phi443Z2D = $158; } else { _abort(); // unreachable; } } - $159 = ((($137)) + 12|0); - HEAP32[$159>>2] = $139; - HEAP32[$$pre$phi59Z2D>>2] = $137; + $161 = ((($139)) + 12|0); + HEAP32[$161>>2] = $141; + HEAP32[$$pre$phi443Z2D>>2] = $139; } else { - $$sum5 = (($8) + 16)|0; - $160 = (($mem) + ($$sum5)|0); - $161 = HEAP32[$160>>2]|0; - $$sum67 = $8 | 4; - $162 = (($mem) + ($$sum67)|0); + $162 = ((($10)) + 24|0); $163 = HEAP32[$162>>2]|0; - $164 = ($163|0)==($9|0); + $164 = ((($10)) + 12|0); + $165 = HEAP32[$164>>2]|0; + $166 = ($165|0)==($10|0); do { - if ($164) { - $$sum9 = (($8) + 12)|0; - $175 = (($mem) + ($$sum9)|0); - $176 = HEAP32[$175>>2]|0; - $177 = ($176|0)==(0|0); - if ($177) { - $$sum8 = (($8) + 8)|0; - $178 = (($mem) + ($$sum8)|0); - $179 = HEAP32[$178>>2]|0; - $180 = ($179|0)==(0|0); - if ($180) { - $R7$1 = 0; + if ($166) { + $177 = ((($10)) + 16|0); + $178 = ((($177)) + 4|0); + $179 = HEAP32[$178>>2]|0; + $180 = ($179|0)==(0|0); + if ($180) { + $181 = HEAP32[$177>>2]|0; + $182 = ($181|0)==(0|0); + if ($182) { + $$3400 = 0; break; } else { - $R7$0 = $179;$RP9$0 = $178; + $$1398 = $181;$$1402 = $177; } } else { - $R7$0 = $176;$RP9$0 = $175; + $$1398 = $179;$$1402 = $178; } while(1) { - $181 = ((($R7$0)) + 20|0); - $182 = HEAP32[$181>>2]|0; - $183 = ($182|0)==(0|0); - if (!($183)) { - $R7$0 = $182;$RP9$0 = $181; + $183 = ((($$1398)) + 20|0); + $184 = HEAP32[$183>>2]|0; + $185 = ($184|0)==(0|0); + if (!($185)) { + $$1398 = $184;$$1402 = $183; continue; } - $184 = ((($R7$0)) + 16|0); - $185 = HEAP32[$184>>2]|0; - $186 = ($185|0)==(0|0); - if ($186) { - $R7$0$lcssa = $R7$0;$RP9$0$lcssa = $RP9$0; + $186 = ((($$1398)) + 16|0); + $187 = HEAP32[$186>>2]|0; + $188 = ($187|0)==(0|0); + if ($188) { break; } else { - $R7$0 = $185;$RP9$0 = $184; + $$1398 = $187;$$1402 = $186; } } - $187 = HEAP32[(32692)>>2]|0; - $188 = ($RP9$0$lcssa>>>0)<($187>>>0); - if ($188) { + $189 = HEAP32[(32980)>>2]|0; + $190 = ($$1402>>>0)<($189>>>0); + if ($190) { _abort(); // unreachable; } else { - HEAP32[$RP9$0$lcssa>>2] = 0; - $R7$1 = $R7$0$lcssa; + HEAP32[$$1402>>2] = 0; + $$3400 = $$1398; break; } } else { - $165 = (($mem) + ($8)|0); - $166 = HEAP32[$165>>2]|0; - $167 = HEAP32[(32692)>>2]|0; - $168 = ($166>>>0)<($167>>>0); - if ($168) { + $167 = ((($10)) + 8|0); + $168 = HEAP32[$167>>2]|0; + $169 = HEAP32[(32980)>>2]|0; + $170 = ($168>>>0)<($169>>>0); + if ($170) { _abort(); // unreachable; } - $169 = ((($166)) + 12|0); - $170 = HEAP32[$169>>2]|0; - $171 = ($170|0)==($9|0); - if (!($171)) { + $171 = ((($168)) + 12|0); + $172 = HEAP32[$171>>2]|0; + $173 = ($172|0)==($10|0); + if (!($173)) { _abort(); // unreachable; } - $172 = ((($163)) + 8|0); - $173 = HEAP32[$172>>2]|0; - $174 = ($173|0)==($9|0); - if ($174) { - HEAP32[$169>>2] = $163; - HEAP32[$172>>2] = $166; - $R7$1 = $163; + $174 = ((($165)) + 8|0); + $175 = HEAP32[$174>>2]|0; + $176 = ($175|0)==($10|0); + if ($176) { + HEAP32[$171>>2] = $165; + HEAP32[$174>>2] = $168; + $$3400 = $165; break; } else { _abort(); @@ -23613,307 +19878,298 @@ function _free($mem) { } } } while(0); - $189 = ($161|0)==(0|0); - if (!($189)) { - $$sum12 = (($8) + 20)|0; - $190 = (($mem) + ($$sum12)|0); - $191 = HEAP32[$190>>2]|0; - $192 = (32980 + ($191<<2)|0); + $191 = ($163|0)==(0|0); + if (!($191)) { + $192 = ((($10)) + 28|0); $193 = HEAP32[$192>>2]|0; - $194 = ($9|0)==($193|0); - if ($194) { - HEAP32[$192>>2] = $R7$1; - $cond47 = ($R7$1|0)==(0|0); - if ($cond47) { - $195 = 1 << $191; - $196 = $195 ^ -1; - $197 = HEAP32[(32680)>>2]|0; - $198 = $197 & $196; - HEAP32[(32680)>>2] = $198; - break; - } - } else { - $199 = HEAP32[(32692)>>2]|0; - $200 = ($161>>>0)<($199>>>0); - if ($200) { - _abort(); - // unreachable; - } - $201 = ((($161)) + 16|0); - $202 = HEAP32[$201>>2]|0; - $203 = ($202|0)==($9|0); - if ($203) { - HEAP32[$201>>2] = $R7$1; + $194 = (33268 + ($193<<2)|0); + $195 = HEAP32[$194>>2]|0; + $196 = ($10|0)==($195|0); + do { + if ($196) { + HEAP32[$194>>2] = $$3400; + $cond422 = ($$3400|0)==(0|0); + if ($cond422) { + $197 = 1 << $193; + $198 = $197 ^ -1; + $199 = HEAP32[(32968)>>2]|0; + $200 = $199 & $198; + HEAP32[(32968)>>2] = $200; + break L108; + } } else { - $204 = ((($161)) + 20|0); - HEAP32[$204>>2] = $R7$1; - } - $205 = ($R7$1|0)==(0|0); - if ($205) { - break; + $201 = HEAP32[(32980)>>2]|0; + $202 = ($163>>>0)<($201>>>0); + if ($202) { + _abort(); + // unreachable; + } else { + $203 = ((($163)) + 16|0); + $204 = HEAP32[$203>>2]|0; + $not$ = ($204|0)!=($10|0); + $$sink5 = $not$&1; + $205 = (((($163)) + 16|0) + ($$sink5<<2)|0); + HEAP32[$205>>2] = $$3400; + $206 = ($$3400|0)==(0|0); + if ($206) { + break L108; + } else { + break; + } + } } - } - $206 = HEAP32[(32692)>>2]|0; - $207 = ($R7$1>>>0)<($206>>>0); - if ($207) { + } while(0); + $207 = HEAP32[(32980)>>2]|0; + $208 = ($$3400>>>0)<($207>>>0); + if ($208) { _abort(); // unreachable; } - $208 = ((($R7$1)) + 24|0); - HEAP32[$208>>2] = $161; - $$sum13 = (($8) + 8)|0; - $209 = (($mem) + ($$sum13)|0); - $210 = HEAP32[$209>>2]|0; - $211 = ($210|0)==(0|0); + $209 = ((($$3400)) + 24|0); + HEAP32[$209>>2] = $163; + $210 = ((($10)) + 16|0); + $211 = HEAP32[$210>>2]|0; + $212 = ($211|0)==(0|0); do { - if (!($211)) { - $212 = ($210>>>0)<($206>>>0); - if ($212) { + if (!($212)) { + $213 = ($211>>>0)<($207>>>0); + if ($213) { _abort(); // unreachable; } else { - $213 = ((($R7$1)) + 16|0); - HEAP32[$213>>2] = $210; - $214 = ((($210)) + 24|0); - HEAP32[$214>>2] = $R7$1; + $214 = ((($$3400)) + 16|0); + HEAP32[$214>>2] = $211; + $215 = ((($211)) + 24|0); + HEAP32[$215>>2] = $$3400; break; } } } while(0); - $$sum14 = (($8) + 12)|0; - $215 = (($mem) + ($$sum14)|0); - $216 = HEAP32[$215>>2]|0; - $217 = ($216|0)==(0|0); - if (!($217)) { - $218 = HEAP32[(32692)>>2]|0; - $219 = ($216>>>0)<($218>>>0); - if ($219) { + $216 = ((($210)) + 4|0); + $217 = HEAP32[$216>>2]|0; + $218 = ($217|0)==(0|0); + if (!($218)) { + $219 = HEAP32[(32980)>>2]|0; + $220 = ($217>>>0)<($219>>>0); + if ($220) { _abort(); // unreachable; } else { - $220 = ((($R7$1)) + 20|0); - HEAP32[$220>>2] = $216; - $221 = ((($216)) + 24|0); - HEAP32[$221>>2] = $R7$1; + $221 = ((($$3400)) + 20|0); + HEAP32[$221>>2] = $217; + $222 = ((($217)) + 24|0); + HEAP32[$222>>2] = $$3400; break; } } } } } while(0); - $222 = $133 | 1; - $223 = ((($p$0)) + 4|0); - HEAP32[$223>>2] = $222; - $224 = (($p$0) + ($133)|0); - HEAP32[$224>>2] = $133; - $225 = HEAP32[(32696)>>2]|0; - $226 = ($p$0|0)==($225|0); - if ($226) { - HEAP32[(32684)>>2] = $133; + $223 = $135 | 1; + $224 = ((($$1)) + 4|0); + HEAP32[$224>>2] = $223; + $225 = (($113) + ($135)|0); + HEAP32[$225>>2] = $135; + $226 = HEAP32[(32984)>>2]|0; + $227 = ($$1|0)==($226|0); + if ($227) { + HEAP32[(32972)>>2] = $135; return; } else { - $psize$1 = $133; + $$2 = $135; } } else { - $227 = $112 & -2; - HEAP32[$111>>2] = $227; - $228 = $psize$0 | 1; - $229 = ((($p$0)) + 4|0); - HEAP32[$229>>2] = $228; - $230 = (($p$0) + ($psize$0)|0); - HEAP32[$230>>2] = $psize$0; - $psize$1 = $psize$0; + $228 = $115 & -2; + HEAP32[$114>>2] = $228; + $229 = $$1382 | 1; + $230 = ((($$1)) + 4|0); + HEAP32[$230>>2] = $229; + $231 = (($113) + ($$1382)|0); + HEAP32[$231>>2] = $$1382; + $$2 = $$1382; } - $231 = $psize$1 >>> 3; - $232 = ($psize$1>>>0)<(256); - if ($232) { - $233 = $231 << 1; - $234 = (32716 + ($233<<2)|0); - $235 = HEAP32[32676>>2]|0; - $236 = 1 << $231; - $237 = $235 & $236; - $238 = ($237|0)==(0); - if ($238) { - $239 = $235 | $236; - HEAP32[32676>>2] = $239; - $$pre = (($233) + 2)|0; - $$pre57 = (32716 + ($$pre<<2)|0); - $$pre$phiZ2D = $$pre57;$F16$0 = $234; + $232 = $$2 >>> 3; + $233 = ($$2>>>0)<(256); + if ($233) { + $234 = $232 << 1; + $235 = (33004 + ($234<<2)|0); + $236 = HEAP32[8241]|0; + $237 = 1 << $232; + $238 = $236 & $237; + $239 = ($238|0)==(0); + if ($239) { + $240 = $236 | $237; + HEAP32[8241] = $240; + $$pre = ((($235)) + 8|0); + $$0403 = $235;$$pre$phiZ2D = $$pre; } else { - $$sum11 = (($233) + 2)|0; - $240 = (32716 + ($$sum11<<2)|0); - $241 = HEAP32[$240>>2]|0; - $242 = HEAP32[(32692)>>2]|0; - $243 = ($241>>>0)<($242>>>0); - if ($243) { + $241 = ((($235)) + 8|0); + $242 = HEAP32[$241>>2]|0; + $243 = HEAP32[(32980)>>2]|0; + $244 = ($242>>>0)<($243>>>0); + if ($244) { _abort(); // unreachable; } else { - $$pre$phiZ2D = $240;$F16$0 = $241; + $$0403 = $242;$$pre$phiZ2D = $241; } } - HEAP32[$$pre$phiZ2D>>2] = $p$0; - $244 = ((($F16$0)) + 12|0); - HEAP32[$244>>2] = $p$0; - $245 = ((($p$0)) + 8|0); - HEAP32[$245>>2] = $F16$0; - $246 = ((($p$0)) + 12|0); - HEAP32[$246>>2] = $234; + HEAP32[$$pre$phiZ2D>>2] = $$1; + $245 = ((($$0403)) + 12|0); + HEAP32[$245>>2] = $$1; + $246 = ((($$1)) + 8|0); + HEAP32[$246>>2] = $$0403; + $247 = ((($$1)) + 12|0); + HEAP32[$247>>2] = $235; return; } - $247 = $psize$1 >>> 8; - $248 = ($247|0)==(0); - if ($248) { - $I18$0 = 0; + $248 = $$2 >>> 8; + $249 = ($248|0)==(0); + if ($249) { + $$0396 = 0; } else { - $249 = ($psize$1>>>0)>(16777215); - if ($249) { - $I18$0 = 31; + $250 = ($$2>>>0)>(16777215); + if ($250) { + $$0396 = 31; } else { - $250 = (($247) + 1048320)|0; - $251 = $250 >>> 16; - $252 = $251 & 8; - $253 = $247 << $252; - $254 = (($253) + 520192)|0; - $255 = $254 >>> 16; - $256 = $255 & 4; - $257 = $256 | $252; - $258 = $253 << $256; - $259 = (($258) + 245760)|0; - $260 = $259 >>> 16; - $261 = $260 & 2; - $262 = $257 | $261; - $263 = (14 - ($262))|0; - $264 = $258 << $261; - $265 = $264 >>> 15; - $266 = (($263) + ($265))|0; - $267 = $266 << 1; - $268 = (($266) + 7)|0; - $269 = $psize$1 >>> $268; - $270 = $269 & 1; - $271 = $270 | $267; - $I18$0 = $271; + $251 = (($248) + 1048320)|0; + $252 = $251 >>> 16; + $253 = $252 & 8; + $254 = $248 << $253; + $255 = (($254) + 520192)|0; + $256 = $255 >>> 16; + $257 = $256 & 4; + $258 = $257 | $253; + $259 = $254 << $257; + $260 = (($259) + 245760)|0; + $261 = $260 >>> 16; + $262 = $261 & 2; + $263 = $258 | $262; + $264 = (14 - ($263))|0; + $265 = $259 << $262; + $266 = $265 >>> 15; + $267 = (($264) + ($266))|0; + $268 = $267 << 1; + $269 = (($267) + 7)|0; + $270 = $$2 >>> $269; + $271 = $270 & 1; + $272 = $271 | $268; + $$0396 = $272; } } - $272 = (32980 + ($I18$0<<2)|0); - $273 = ((($p$0)) + 28|0); - HEAP32[$273>>2] = $I18$0; - $274 = ((($p$0)) + 16|0); - $275 = ((($p$0)) + 20|0); + $273 = (33268 + ($$0396<<2)|0); + $274 = ((($$1)) + 28|0); + HEAP32[$274>>2] = $$0396; + $275 = ((($$1)) + 16|0); + $276 = ((($$1)) + 20|0); + HEAP32[$276>>2] = 0; HEAP32[$275>>2] = 0; - HEAP32[$274>>2] = 0; - $276 = HEAP32[(32680)>>2]|0; - $277 = 1 << $I18$0; - $278 = $276 & $277; - $279 = ($278|0)==(0); - L199: do { - if ($279) { - $280 = $276 | $277; - HEAP32[(32680)>>2] = $280; - HEAP32[$272>>2] = $p$0; - $281 = ((($p$0)) + 24|0); - HEAP32[$281>>2] = $272; - $282 = ((($p$0)) + 12|0); - HEAP32[$282>>2] = $p$0; - $283 = ((($p$0)) + 8|0); - HEAP32[$283>>2] = $p$0; + $277 = HEAP32[(32968)>>2]|0; + $278 = 1 << $$0396; + $279 = $277 & $278; + $280 = ($279|0)==(0); + do { + if ($280) { + $281 = $277 | $278; + HEAP32[(32968)>>2] = $281; + HEAP32[$273>>2] = $$1; + $282 = ((($$1)) + 24|0); + HEAP32[$282>>2] = $273; + $283 = ((($$1)) + 12|0); + HEAP32[$283>>2] = $$1; + $284 = ((($$1)) + 8|0); + HEAP32[$284>>2] = $$1; } else { - $284 = HEAP32[$272>>2]|0; - $285 = ((($284)) + 4|0); - $286 = HEAP32[$285>>2]|0; - $287 = $286 & -8; - $288 = ($287|0)==($psize$1|0); - L202: do { - if ($288) { - $T$0$lcssa = $284; + $285 = HEAP32[$273>>2]|0; + $286 = ($$0396|0)==(31); + $287 = $$0396 >>> 1; + $288 = (25 - ($287))|0; + $289 = $286 ? 0 : $288; + $290 = $$2 << $289; + $$0383 = $290;$$0384 = $285; + while(1) { + $291 = ((($$0384)) + 4|0); + $292 = HEAP32[$291>>2]|0; + $293 = $292 & -8; + $294 = ($293|0)==($$2|0); + if ($294) { + label = 124; + break; + } + $295 = $$0383 >>> 31; + $296 = (((($$0384)) + 16|0) + ($295<<2)|0); + $297 = $$0383 << 1; + $298 = HEAP32[$296>>2]|0; + $299 = ($298|0)==(0|0); + if ($299) { + label = 121; + break; } else { - $289 = ($I18$0|0)==(31); - $290 = $I18$0 >>> 1; - $291 = (25 - ($290))|0; - $292 = $289 ? 0 : $291; - $293 = $psize$1 << $292; - $K19$052 = $293;$T$051 = $284; - while(1) { - $300 = $K19$052 >>> 31; - $301 = (((($T$051)) + 16|0) + ($300<<2)|0); - $296 = HEAP32[$301>>2]|0; - $302 = ($296|0)==(0|0); - if ($302) { - $$lcssa = $301;$T$051$lcssa = $T$051; - break; - } - $294 = $K19$052 << 1; - $295 = ((($296)) + 4|0); - $297 = HEAP32[$295>>2]|0; - $298 = $297 & -8; - $299 = ($298|0)==($psize$1|0); - if ($299) { - $T$0$lcssa = $296; - break L202; - } else { - $K19$052 = $294;$T$051 = $296; - } - } - $303 = HEAP32[(32692)>>2]|0; - $304 = ($$lcssa>>>0)<($303>>>0); - if ($304) { - _abort(); - // unreachable; - } else { - HEAP32[$$lcssa>>2] = $p$0; - $305 = ((($p$0)) + 24|0); - HEAP32[$305>>2] = $T$051$lcssa; - $306 = ((($p$0)) + 12|0); - HEAP32[$306>>2] = $p$0; - $307 = ((($p$0)) + 8|0); - HEAP32[$307>>2] = $p$0; - break L199; - } + $$0383 = $297;$$0384 = $298; + } + } + if ((label|0) == 121) { + $300 = HEAP32[(32980)>>2]|0; + $301 = ($296>>>0)<($300>>>0); + if ($301) { + _abort(); + // unreachable; + } else { + HEAP32[$296>>2] = $$1; + $302 = ((($$1)) + 24|0); + HEAP32[$302>>2] = $$0384; + $303 = ((($$1)) + 12|0); + HEAP32[$303>>2] = $$1; + $304 = ((($$1)) + 8|0); + HEAP32[$304>>2] = $$1; + break; + } + } + else if ((label|0) == 124) { + $305 = ((($$0384)) + 8|0); + $306 = HEAP32[$305>>2]|0; + $307 = HEAP32[(32980)>>2]|0; + $308 = ($306>>>0)>=($307>>>0); + $not$437 = ($$0384>>>0)>=($307>>>0); + $309 = $308 & $not$437; + if ($309) { + $310 = ((($306)) + 12|0); + HEAP32[$310>>2] = $$1; + HEAP32[$305>>2] = $$1; + $311 = ((($$1)) + 8|0); + HEAP32[$311>>2] = $306; + $312 = ((($$1)) + 12|0); + HEAP32[$312>>2] = $$0384; + $313 = ((($$1)) + 24|0); + HEAP32[$313>>2] = 0; + break; + } else { + _abort(); + // unreachable; } - } while(0); - $308 = ((($T$0$lcssa)) + 8|0); - $309 = HEAP32[$308>>2]|0; - $310 = HEAP32[(32692)>>2]|0; - $311 = ($309>>>0)>=($310>>>0); - $not$ = ($T$0$lcssa>>>0)>=($310>>>0); - $312 = $311 & $not$; - if ($312) { - $313 = ((($309)) + 12|0); - HEAP32[$313>>2] = $p$0; - HEAP32[$308>>2] = $p$0; - $314 = ((($p$0)) + 8|0); - HEAP32[$314>>2] = $309; - $315 = ((($p$0)) + 12|0); - HEAP32[$315>>2] = $T$0$lcssa; - $316 = ((($p$0)) + 24|0); - HEAP32[$316>>2] = 0; - break; - } else { - _abort(); - // unreachable; } } } while(0); - $317 = HEAP32[(32708)>>2]|0; - $318 = (($317) + -1)|0; - HEAP32[(32708)>>2] = $318; - $319 = ($318|0)==(0); - if ($319) { - $sp$0$in$i = (33132); + $314 = HEAP32[(32996)>>2]|0; + $315 = (($314) + -1)|0; + HEAP32[(32996)>>2] = $315; + $316 = ($315|0)==(0); + if ($316) { + $$0212$in$i = (33420); } else { return; } while(1) { - $sp$0$i = HEAP32[$sp$0$in$i>>2]|0; - $320 = ($sp$0$i|0)==(0|0); - $321 = ((($sp$0$i)) + 8|0); - if ($320) { + $$0212$i = HEAP32[$$0212$in$i>>2]|0; + $317 = ($$0212$i|0)==(0|0); + $318 = ((($$0212$i)) + 8|0); + if ($317) { break; } else { - $sp$0$in$i = $321; + $$0212$in$i = $318; } } - HEAP32[(32708)>>2] = -1; + HEAP32[(32996)>>2] = -1; return; } function runPostSets() { @@ -23951,31 +20207,51 @@ function _i64Add(a, b, c, d) { } function _memset(ptr, value, num) { ptr = ptr|0; value = value|0; num = num|0; - var stop = 0, value4 = 0, stop4 = 0, unaligned = 0; - stop = (ptr + num)|0; - if ((num|0) >= 20) { - // This is unaligned, but quite large, so work hard to get to aligned settings - value = value & 0xff; - unaligned = ptr & 3; + var end = 0, aligned_end = 0, block_aligned_end = 0, value4 = 0; + end = (ptr + num)|0; + + value = value & 0xff; + if ((num|0) >= 67 /* 64 bytes for an unrolled loop + 3 bytes for unaligned head*/) { + while ((ptr&3) != 0) { + HEAP8[((ptr)>>0)]=value; + ptr = (ptr+1)|0; + } + + aligned_end = (end & -4)|0; + block_aligned_end = (aligned_end - 64)|0; value4 = value | (value << 8) | (value << 16) | (value << 24); - stop4 = stop & ~3; - if (unaligned) { - unaligned = (ptr + 4 - unaligned)|0; - while ((ptr|0) < (unaligned|0)) { // no need to check for stop, since we have large num - HEAP8[((ptr)>>0)]=value; - ptr = (ptr+1)|0; - } + + while((ptr|0) <= (block_aligned_end|0)) { + HEAP32[((ptr)>>2)]=value4; + HEAP32[(((ptr)+(4))>>2)]=value4; + HEAP32[(((ptr)+(8))>>2)]=value4; + HEAP32[(((ptr)+(12))>>2)]=value4; + HEAP32[(((ptr)+(16))>>2)]=value4; + HEAP32[(((ptr)+(20))>>2)]=value4; + HEAP32[(((ptr)+(24))>>2)]=value4; + HEAP32[(((ptr)+(28))>>2)]=value4; + HEAP32[(((ptr)+(32))>>2)]=value4; + HEAP32[(((ptr)+(36))>>2)]=value4; + HEAP32[(((ptr)+(40))>>2)]=value4; + HEAP32[(((ptr)+(44))>>2)]=value4; + HEAP32[(((ptr)+(48))>>2)]=value4; + HEAP32[(((ptr)+(52))>>2)]=value4; + HEAP32[(((ptr)+(56))>>2)]=value4; + HEAP32[(((ptr)+(60))>>2)]=value4; + ptr = (ptr + 64)|0; } - while ((ptr|0) < (stop4|0)) { + + while ((ptr|0) < (aligned_end|0) ) { HEAP32[((ptr)>>2)]=value4; ptr = (ptr+4)|0; } } - while ((ptr|0) < (stop|0)) { + // The remaining bytes. + while ((ptr|0) < (end|0)) { HEAP8[((ptr)>>0)]=value; ptr = (ptr+1)|0; } - return (ptr-num)|0; + return (end-num)|0; } function _bitshift64Lshr(low, high, bits) { low = low|0; high = high|0; bits = bits|0; @@ -23999,12 +20275,77 @@ function _bitshift64Shl(low, high, bits) { tempRet0 = low << (bits - 32); return 0; } +function ___muldsi3($a, $b) { + $a = $a | 0; + $b = $b | 0; + var $1 = 0, $2 = 0, $3 = 0, $6 = 0, $8 = 0, $11 = 0, $12 = 0; + $1 = $a & 65535; + $2 = $b & 65535; + $3 = Math_imul($2, $1) | 0; + $6 = $a >>> 16; + $8 = ($3 >>> 16) + (Math_imul($2, $6) | 0) | 0; + $11 = $b >>> 16; + $12 = Math_imul($11, $1) | 0; + return (tempRet0 = (($8 >>> 16) + (Math_imul($11, $6) | 0) | 0) + ((($8 & 65535) + $12 | 0) >>> 16) | 0, 0 | ($8 + $12 << 16 | $3 & 65535)) | 0; +} +function ___muldi3($a$0, $a$1, $b$0, $b$1) { + $a$0 = $a$0 | 0; + $a$1 = $a$1 | 0; + $b$0 = $b$0 | 0; + $b$1 = $b$1 | 0; + var $x_sroa_0_0_extract_trunc = 0, $y_sroa_0_0_extract_trunc = 0, $1$0 = 0, $1$1 = 0, $2 = 0; + $x_sroa_0_0_extract_trunc = $a$0; + $y_sroa_0_0_extract_trunc = $b$0; + $1$0 = ___muldsi3($x_sroa_0_0_extract_trunc, $y_sroa_0_0_extract_trunc) | 0; + $1$1 = tempRet0; + $2 = Math_imul($a$1, $y_sroa_0_0_extract_trunc) | 0; + return (tempRet0 = ((Math_imul($b$1, $x_sroa_0_0_extract_trunc) | 0) + $2 | 0) + $1$1 | $1$1 & 0, 0 | $1$0 & -1) | 0; +} +function _sbrk(increment) { + increment = increment|0; + var oldDynamicTop = 0; + var oldDynamicTopOnChange = 0; + var newDynamicTop = 0; + var totalMemory = 0; + increment = ((increment + 15) & -16)|0; + oldDynamicTop = HEAP32[DYNAMICTOP_PTR>>2]|0; + newDynamicTop = oldDynamicTop + increment | 0; + + if (((increment|0) > 0 & (newDynamicTop|0) < (oldDynamicTop|0)) // Detect and fail if we would wrap around signed 32-bit int. + | (newDynamicTop|0) < 0) { // Also underflow, sbrk() should be able to be used to subtract. + abortOnCannotGrowMemory()|0; + ___setErrNo(12); + return -1; + } + + HEAP32[DYNAMICTOP_PTR>>2] = newDynamicTop; + totalMemory = getTotalMemory()|0; + if ((newDynamicTop|0) > (totalMemory|0)) { + if ((enlargeMemory()|0) == 0) { + HEAP32[DYNAMICTOP_PTR>>2] = oldDynamicTop; + ___setErrNo(12); + return -1; + } + } + return oldDynamicTop|0; +} function _memcpy(dest, src, num) { dest = dest|0; src = src|0; num = num|0; var ret = 0; - if ((num|0) >= 4096) return _emscripten_memcpy_big(dest|0, src|0, num|0)|0; + var aligned_dest_end = 0; + var block_aligned_dest_end = 0; + var dest_end = 0; + // Test against a benchmarked cutoff limit for when HEAPU8.set() becomes faster to use. + if ((num|0) >= + 8192 + ) { + return _emscripten_memcpy_big(dest|0, src|0, num|0)|0; + } + ret = dest|0; + dest_end = (dest + num)|0; if ((dest&3) == (src&3)) { + // The initial unaligned < 4-byte front. while (dest & 3) { if ((num|0) == 0) return ret|0; HEAP8[((dest)>>0)]=((HEAP8[((src)>>0)])|0); @@ -24012,18 +20353,50 @@ function _memcpy(dest, src, num) { src = (src+1)|0; num = (num-1)|0; } - while ((num|0) >= 4) { + aligned_dest_end = (dest_end & -4)|0; + block_aligned_dest_end = (aligned_dest_end - 64)|0; + while ((dest|0) <= (block_aligned_dest_end|0) ) { + HEAP32[((dest)>>2)]=((HEAP32[((src)>>2)])|0); + HEAP32[(((dest)+(4))>>2)]=((HEAP32[(((src)+(4))>>2)])|0); + HEAP32[(((dest)+(8))>>2)]=((HEAP32[(((src)+(8))>>2)])|0); + HEAP32[(((dest)+(12))>>2)]=((HEAP32[(((src)+(12))>>2)])|0); + HEAP32[(((dest)+(16))>>2)]=((HEAP32[(((src)+(16))>>2)])|0); + HEAP32[(((dest)+(20))>>2)]=((HEAP32[(((src)+(20))>>2)])|0); + HEAP32[(((dest)+(24))>>2)]=((HEAP32[(((src)+(24))>>2)])|0); + HEAP32[(((dest)+(28))>>2)]=((HEAP32[(((src)+(28))>>2)])|0); + HEAP32[(((dest)+(32))>>2)]=((HEAP32[(((src)+(32))>>2)])|0); + HEAP32[(((dest)+(36))>>2)]=((HEAP32[(((src)+(36))>>2)])|0); + HEAP32[(((dest)+(40))>>2)]=((HEAP32[(((src)+(40))>>2)])|0); + HEAP32[(((dest)+(44))>>2)]=((HEAP32[(((src)+(44))>>2)])|0); + HEAP32[(((dest)+(48))>>2)]=((HEAP32[(((src)+(48))>>2)])|0); + HEAP32[(((dest)+(52))>>2)]=((HEAP32[(((src)+(52))>>2)])|0); + HEAP32[(((dest)+(56))>>2)]=((HEAP32[(((src)+(56))>>2)])|0); + HEAP32[(((dest)+(60))>>2)]=((HEAP32[(((src)+(60))>>2)])|0); + dest = (dest+64)|0; + src = (src+64)|0; + } + while ((dest|0) < (aligned_dest_end|0) ) { HEAP32[((dest)>>2)]=((HEAP32[((src)>>2)])|0); dest = (dest+4)|0; src = (src+4)|0; - num = (num-4)|0; + } + } else { + // In the unaligned copy case, unroll a bit as well. + aligned_dest_end = (dest_end - 4)|0; + while ((dest|0) < (aligned_dest_end|0) ) { + HEAP8[((dest)>>0)]=((HEAP8[((src)>>0)])|0); + HEAP8[(((dest)+(1))>>0)]=((HEAP8[(((src)+(1))>>0)])|0); + HEAP8[(((dest)+(2))>>0)]=((HEAP8[(((src)+(2))>>0)])|0); + HEAP8[(((dest)+(3))>>0)]=((HEAP8[(((src)+(3))>>0)])|0); + dest = (dest+4)|0; + src = (src+4)|0; } } - while ((num|0) > 0) { + // The remaining unaligned < 4 byte tail. + while ((dest|0) < (dest_end|0)) { HEAP8[((dest)>>0)]=((HEAP8[((src)>>0)])|0); dest = (dest+1)|0; src = (src+1)|0; - num = (num-1)|0; } return ret|0; } @@ -24047,318 +20420,6 @@ function _memmove(dest, src, num) { } return dest | 0; } -function _llvm_cttz_i32(x) { - x = x|0; - var ret = 0; - ret = ((HEAP8[(((cttz_i8)+(x & 0xff))>>0)])|0); - if ((ret|0) < 8) return ret|0; - ret = ((HEAP8[(((cttz_i8)+((x >> 8)&0xff))>>0)])|0); - if ((ret|0) < 8) return (ret + 8)|0; - ret = ((HEAP8[(((cttz_i8)+((x >> 16)&0xff))>>0)])|0); - if ((ret|0) < 8) return (ret + 16)|0; - return (((HEAP8[(((cttz_i8)+(x >>> 24))>>0)])|0) + 24)|0; - } - -// ======== compiled code from system/lib/compiler-rt , see readme therein -function ___muldsi3($a, $b) { - $a = $a | 0; - $b = $b | 0; - var $1 = 0, $2 = 0, $3 = 0, $6 = 0, $8 = 0, $11 = 0, $12 = 0; - $1 = $a & 65535; - $2 = $b & 65535; - $3 = Math_imul($2, $1) | 0; - $6 = $a >>> 16; - $8 = ($3 >>> 16) + (Math_imul($2, $6) | 0) | 0; - $11 = $b >>> 16; - $12 = Math_imul($11, $1) | 0; - return (tempRet0 = (($8 >>> 16) + (Math_imul($11, $6) | 0) | 0) + ((($8 & 65535) + $12 | 0) >>> 16) | 0, 0 | ($8 + $12 << 16 | $3 & 65535)) | 0; -} -function ___divdi3($a$0, $a$1, $b$0, $b$1) { - $a$0 = $a$0 | 0; - $a$1 = $a$1 | 0; - $b$0 = $b$0 | 0; - $b$1 = $b$1 | 0; - var $1$0 = 0, $1$1 = 0, $2$0 = 0, $2$1 = 0, $4$0 = 0, $4$1 = 0, $6$0 = 0, $7$0 = 0, $7$1 = 0, $8$0 = 0, $10$0 = 0; - $1$0 = $a$1 >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; - $1$1 = (($a$1 | 0) < 0 ? -1 : 0) >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; - $2$0 = $b$1 >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; - $2$1 = (($b$1 | 0) < 0 ? -1 : 0) >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; - $4$0 = _i64Subtract($1$0 ^ $a$0, $1$1 ^ $a$1, $1$0, $1$1) | 0; - $4$1 = tempRet0; - $6$0 = _i64Subtract($2$0 ^ $b$0, $2$1 ^ $b$1, $2$0, $2$1) | 0; - $7$0 = $2$0 ^ $1$0; - $7$1 = $2$1 ^ $1$1; - $8$0 = ___udivmoddi4($4$0, $4$1, $6$0, tempRet0, 0) | 0; - $10$0 = _i64Subtract($8$0 ^ $7$0, tempRet0 ^ $7$1, $7$0, $7$1) | 0; - return $10$0 | 0; -} -function ___remdi3($a$0, $a$1, $b$0, $b$1) { - $a$0 = $a$0 | 0; - $a$1 = $a$1 | 0; - $b$0 = $b$0 | 0; - $b$1 = $b$1 | 0; - var $rem = 0, $1$0 = 0, $1$1 = 0, $2$0 = 0, $2$1 = 0, $4$0 = 0, $4$1 = 0, $6$0 = 0, $10$0 = 0, $10$1 = 0, __stackBase__ = 0; - __stackBase__ = STACKTOP; - STACKTOP = STACKTOP + 16 | 0; - $rem = __stackBase__ | 0; - $1$0 = $a$1 >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; - $1$1 = (($a$1 | 0) < 0 ? -1 : 0) >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; - $2$0 = $b$1 >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; - $2$1 = (($b$1 | 0) < 0 ? -1 : 0) >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; - $4$0 = _i64Subtract($1$0 ^ $a$0, $1$1 ^ $a$1, $1$0, $1$1) | 0; - $4$1 = tempRet0; - $6$0 = _i64Subtract($2$0 ^ $b$0, $2$1 ^ $b$1, $2$0, $2$1) | 0; - ___udivmoddi4($4$0, $4$1, $6$0, tempRet0, $rem) | 0; - $10$0 = _i64Subtract(HEAP32[$rem >> 2] ^ $1$0, HEAP32[$rem + 4 >> 2] ^ $1$1, $1$0, $1$1) | 0; - $10$1 = tempRet0; - STACKTOP = __stackBase__; - return (tempRet0 = $10$1, $10$0) | 0; -} -function ___muldi3($a$0, $a$1, $b$0, $b$1) { - $a$0 = $a$0 | 0; - $a$1 = $a$1 | 0; - $b$0 = $b$0 | 0; - $b$1 = $b$1 | 0; - var $x_sroa_0_0_extract_trunc = 0, $y_sroa_0_0_extract_trunc = 0, $1$0 = 0, $1$1 = 0, $2 = 0; - $x_sroa_0_0_extract_trunc = $a$0; - $y_sroa_0_0_extract_trunc = $b$0; - $1$0 = ___muldsi3($x_sroa_0_0_extract_trunc, $y_sroa_0_0_extract_trunc) | 0; - $1$1 = tempRet0; - $2 = Math_imul($a$1, $y_sroa_0_0_extract_trunc) | 0; - return (tempRet0 = ((Math_imul($b$1, $x_sroa_0_0_extract_trunc) | 0) + $2 | 0) + $1$1 | $1$1 & 0, 0 | $1$0 & -1) | 0; -} -function ___udivdi3($a$0, $a$1, $b$0, $b$1) { - $a$0 = $a$0 | 0; - $a$1 = $a$1 | 0; - $b$0 = $b$0 | 0; - $b$1 = $b$1 | 0; - var $1$0 = 0; - $1$0 = ___udivmoddi4($a$0, $a$1, $b$0, $b$1, 0) | 0; - return $1$0 | 0; -} -function ___uremdi3($a$0, $a$1, $b$0, $b$1) { - $a$0 = $a$0 | 0; - $a$1 = $a$1 | 0; - $b$0 = $b$0 | 0; - $b$1 = $b$1 | 0; - var $rem = 0, __stackBase__ = 0; - __stackBase__ = STACKTOP; - STACKTOP = STACKTOP + 16 | 0; - $rem = __stackBase__ | 0; - ___udivmoddi4($a$0, $a$1, $b$0, $b$1, $rem) | 0; - STACKTOP = __stackBase__; - return (tempRet0 = HEAP32[$rem + 4 >> 2] | 0, HEAP32[$rem >> 2] | 0) | 0; -} -function ___udivmoddi4($a$0, $a$1, $b$0, $b$1, $rem) { - $a$0 = $a$0 | 0; - $a$1 = $a$1 | 0; - $b$0 = $b$0 | 0; - $b$1 = $b$1 | 0; - $rem = $rem | 0; - var $n_sroa_0_0_extract_trunc = 0, $n_sroa_1_4_extract_shift$0 = 0, $n_sroa_1_4_extract_trunc = 0, $d_sroa_0_0_extract_trunc = 0, $d_sroa_1_4_extract_shift$0 = 0, $d_sroa_1_4_extract_trunc = 0, $4 = 0, $17 = 0, $37 = 0, $49 = 0, $51 = 0, $57 = 0, $58 = 0, $66 = 0, $78 = 0, $86 = 0, $88 = 0, $89 = 0, $91 = 0, $92 = 0, $95 = 0, $105 = 0, $117 = 0, $119 = 0, $125 = 0, $126 = 0, $130 = 0, $q_sroa_1_1_ph = 0, $q_sroa_0_1_ph = 0, $r_sroa_1_1_ph = 0, $r_sroa_0_1_ph = 0, $sr_1_ph = 0, $d_sroa_0_0_insert_insert99$0 = 0, $d_sroa_0_0_insert_insert99$1 = 0, $137$0 = 0, $137$1 = 0, $carry_0203 = 0, $sr_1202 = 0, $r_sroa_0_1201 = 0, $r_sroa_1_1200 = 0, $q_sroa_0_1199 = 0, $q_sroa_1_1198 = 0, $147 = 0, $149 = 0, $r_sroa_0_0_insert_insert42$0 = 0, $r_sroa_0_0_insert_insert42$1 = 0, $150$1 = 0, $151$0 = 0, $152 = 0, $154$0 = 0, $r_sroa_0_0_extract_trunc = 0, $r_sroa_1_4_extract_trunc = 0, $155 = 0, $carry_0_lcssa$0 = 0, $carry_0_lcssa$1 = 0, $r_sroa_0_1_lcssa = 0, $r_sroa_1_1_lcssa = 0, $q_sroa_0_1_lcssa = 0, $q_sroa_1_1_lcssa = 0, $q_sroa_0_0_insert_ext75$0 = 0, $q_sroa_0_0_insert_ext75$1 = 0, $q_sroa_0_0_insert_insert77$1 = 0, $_0$0 = 0, $_0$1 = 0; - $n_sroa_0_0_extract_trunc = $a$0; - $n_sroa_1_4_extract_shift$0 = $a$1; - $n_sroa_1_4_extract_trunc = $n_sroa_1_4_extract_shift$0; - $d_sroa_0_0_extract_trunc = $b$0; - $d_sroa_1_4_extract_shift$0 = $b$1; - $d_sroa_1_4_extract_trunc = $d_sroa_1_4_extract_shift$0; - if (($n_sroa_1_4_extract_trunc | 0) == 0) { - $4 = ($rem | 0) != 0; - if (($d_sroa_1_4_extract_trunc | 0) == 0) { - if ($4) { - HEAP32[$rem >> 2] = ($n_sroa_0_0_extract_trunc >>> 0) % ($d_sroa_0_0_extract_trunc >>> 0); - HEAP32[$rem + 4 >> 2] = 0; - } - $_0$1 = 0; - $_0$0 = ($n_sroa_0_0_extract_trunc >>> 0) / ($d_sroa_0_0_extract_trunc >>> 0) >>> 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } else { - if (!$4) { - $_0$1 = 0; - $_0$0 = 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - HEAP32[$rem >> 2] = $a$0 & -1; - HEAP32[$rem + 4 >> 2] = $a$1 & 0; - $_0$1 = 0; - $_0$0 = 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - } - $17 = ($d_sroa_1_4_extract_trunc | 0) == 0; - do { - if (($d_sroa_0_0_extract_trunc | 0) == 0) { - if ($17) { - if (($rem | 0) != 0) { - HEAP32[$rem >> 2] = ($n_sroa_1_4_extract_trunc >>> 0) % ($d_sroa_0_0_extract_trunc >>> 0); - HEAP32[$rem + 4 >> 2] = 0; - } - $_0$1 = 0; - $_0$0 = ($n_sroa_1_4_extract_trunc >>> 0) / ($d_sroa_0_0_extract_trunc >>> 0) >>> 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - if (($n_sroa_0_0_extract_trunc | 0) == 0) { - if (($rem | 0) != 0) { - HEAP32[$rem >> 2] = 0; - HEAP32[$rem + 4 >> 2] = ($n_sroa_1_4_extract_trunc >>> 0) % ($d_sroa_1_4_extract_trunc >>> 0); - } - $_0$1 = 0; - $_0$0 = ($n_sroa_1_4_extract_trunc >>> 0) / ($d_sroa_1_4_extract_trunc >>> 0) >>> 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - $37 = $d_sroa_1_4_extract_trunc - 1 | 0; - if (($37 & $d_sroa_1_4_extract_trunc | 0) == 0) { - if (($rem | 0) != 0) { - HEAP32[$rem >> 2] = 0 | $a$0 & -1; - HEAP32[$rem + 4 >> 2] = $37 & $n_sroa_1_4_extract_trunc | $a$1 & 0; - } - $_0$1 = 0; - $_0$0 = $n_sroa_1_4_extract_trunc >>> ((_llvm_cttz_i32($d_sroa_1_4_extract_trunc | 0) | 0) >>> 0); - return (tempRet0 = $_0$1, $_0$0) | 0; - } - $49 = Math_clz32($d_sroa_1_4_extract_trunc | 0) | 0; - $51 = $49 - (Math_clz32($n_sroa_1_4_extract_trunc | 0) | 0) | 0; - if ($51 >>> 0 <= 30) { - $57 = $51 + 1 | 0; - $58 = 31 - $51 | 0; - $sr_1_ph = $57; - $r_sroa_0_1_ph = $n_sroa_1_4_extract_trunc << $58 | $n_sroa_0_0_extract_trunc >>> ($57 >>> 0); - $r_sroa_1_1_ph = $n_sroa_1_4_extract_trunc >>> ($57 >>> 0); - $q_sroa_0_1_ph = 0; - $q_sroa_1_1_ph = $n_sroa_0_0_extract_trunc << $58; - break; - } - if (($rem | 0) == 0) { - $_0$1 = 0; - $_0$0 = 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - HEAP32[$rem >> 2] = 0 | $a$0 & -1; - HEAP32[$rem + 4 >> 2] = $n_sroa_1_4_extract_shift$0 | $a$1 & 0; - $_0$1 = 0; - $_0$0 = 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } else { - if (!$17) { - $117 = Math_clz32($d_sroa_1_4_extract_trunc | 0) | 0; - $119 = $117 - (Math_clz32($n_sroa_1_4_extract_trunc | 0) | 0) | 0; - if ($119 >>> 0 <= 31) { - $125 = $119 + 1 | 0; - $126 = 31 - $119 | 0; - $130 = $119 - 31 >> 31; - $sr_1_ph = $125; - $r_sroa_0_1_ph = $n_sroa_0_0_extract_trunc >>> ($125 >>> 0) & $130 | $n_sroa_1_4_extract_trunc << $126; - $r_sroa_1_1_ph = $n_sroa_1_4_extract_trunc >>> ($125 >>> 0) & $130; - $q_sroa_0_1_ph = 0; - $q_sroa_1_1_ph = $n_sroa_0_0_extract_trunc << $126; - break; - } - if (($rem | 0) == 0) { - $_0$1 = 0; - $_0$0 = 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - HEAP32[$rem >> 2] = 0 | $a$0 & -1; - HEAP32[$rem + 4 >> 2] = $n_sroa_1_4_extract_shift$0 | $a$1 & 0; - $_0$1 = 0; - $_0$0 = 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - $66 = $d_sroa_0_0_extract_trunc - 1 | 0; - if (($66 & $d_sroa_0_0_extract_trunc | 0) != 0) { - $86 = (Math_clz32($d_sroa_0_0_extract_trunc | 0) | 0) + 33 | 0; - $88 = $86 - (Math_clz32($n_sroa_1_4_extract_trunc | 0) | 0) | 0; - $89 = 64 - $88 | 0; - $91 = 32 - $88 | 0; - $92 = $91 >> 31; - $95 = $88 - 32 | 0; - $105 = $95 >> 31; - $sr_1_ph = $88; - $r_sroa_0_1_ph = $91 - 1 >> 31 & $n_sroa_1_4_extract_trunc >>> ($95 >>> 0) | ($n_sroa_1_4_extract_trunc << $91 | $n_sroa_0_0_extract_trunc >>> ($88 >>> 0)) & $105; - $r_sroa_1_1_ph = $105 & $n_sroa_1_4_extract_trunc >>> ($88 >>> 0); - $q_sroa_0_1_ph = $n_sroa_0_0_extract_trunc << $89 & $92; - $q_sroa_1_1_ph = ($n_sroa_1_4_extract_trunc << $89 | $n_sroa_0_0_extract_trunc >>> ($95 >>> 0)) & $92 | $n_sroa_0_0_extract_trunc << $91 & $88 - 33 >> 31; - break; - } - if (($rem | 0) != 0) { - HEAP32[$rem >> 2] = $66 & $n_sroa_0_0_extract_trunc; - HEAP32[$rem + 4 >> 2] = 0; - } - if (($d_sroa_0_0_extract_trunc | 0) == 1) { - $_0$1 = $n_sroa_1_4_extract_shift$0 | $a$1 & 0; - $_0$0 = 0 | $a$0 & -1; - return (tempRet0 = $_0$1, $_0$0) | 0; - } else { - $78 = _llvm_cttz_i32($d_sroa_0_0_extract_trunc | 0) | 0; - $_0$1 = 0 | $n_sroa_1_4_extract_trunc >>> ($78 >>> 0); - $_0$0 = $n_sroa_1_4_extract_trunc << 32 - $78 | $n_sroa_0_0_extract_trunc >>> ($78 >>> 0) | 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - } - } while (0); - if (($sr_1_ph | 0) == 0) { - $q_sroa_1_1_lcssa = $q_sroa_1_1_ph; - $q_sroa_0_1_lcssa = $q_sroa_0_1_ph; - $r_sroa_1_1_lcssa = $r_sroa_1_1_ph; - $r_sroa_0_1_lcssa = $r_sroa_0_1_ph; - $carry_0_lcssa$1 = 0; - $carry_0_lcssa$0 = 0; - } else { - $d_sroa_0_0_insert_insert99$0 = 0 | $b$0 & -1; - $d_sroa_0_0_insert_insert99$1 = $d_sroa_1_4_extract_shift$0 | $b$1 & 0; - $137$0 = _i64Add($d_sroa_0_0_insert_insert99$0 | 0, $d_sroa_0_0_insert_insert99$1 | 0, -1, -1) | 0; - $137$1 = tempRet0; - $q_sroa_1_1198 = $q_sroa_1_1_ph; - $q_sroa_0_1199 = $q_sroa_0_1_ph; - $r_sroa_1_1200 = $r_sroa_1_1_ph; - $r_sroa_0_1201 = $r_sroa_0_1_ph; - $sr_1202 = $sr_1_ph; - $carry_0203 = 0; - while (1) { - $147 = $q_sroa_0_1199 >>> 31 | $q_sroa_1_1198 << 1; - $149 = $carry_0203 | $q_sroa_0_1199 << 1; - $r_sroa_0_0_insert_insert42$0 = 0 | ($r_sroa_0_1201 << 1 | $q_sroa_1_1198 >>> 31); - $r_sroa_0_0_insert_insert42$1 = $r_sroa_0_1201 >>> 31 | $r_sroa_1_1200 << 1 | 0; - _i64Subtract($137$0, $137$1, $r_sroa_0_0_insert_insert42$0, $r_sroa_0_0_insert_insert42$1) | 0; - $150$1 = tempRet0; - $151$0 = $150$1 >> 31 | (($150$1 | 0) < 0 ? -1 : 0) << 1; - $152 = $151$0 & 1; - $154$0 = _i64Subtract($r_sroa_0_0_insert_insert42$0, $r_sroa_0_0_insert_insert42$1, $151$0 & $d_sroa_0_0_insert_insert99$0, ((($150$1 | 0) < 0 ? -1 : 0) >> 31 | (($150$1 | 0) < 0 ? -1 : 0) << 1) & $d_sroa_0_0_insert_insert99$1) | 0; - $r_sroa_0_0_extract_trunc = $154$0; - $r_sroa_1_4_extract_trunc = tempRet0; - $155 = $sr_1202 - 1 | 0; - if (($155 | 0) == 0) { - break; - } else { - $q_sroa_1_1198 = $147; - $q_sroa_0_1199 = $149; - $r_sroa_1_1200 = $r_sroa_1_4_extract_trunc; - $r_sroa_0_1201 = $r_sroa_0_0_extract_trunc; - $sr_1202 = $155; - $carry_0203 = $152; - } - } - $q_sroa_1_1_lcssa = $147; - $q_sroa_0_1_lcssa = $149; - $r_sroa_1_1_lcssa = $r_sroa_1_4_extract_trunc; - $r_sroa_0_1_lcssa = $r_sroa_0_0_extract_trunc; - $carry_0_lcssa$1 = 0; - $carry_0_lcssa$0 = $152; - } - $q_sroa_0_0_insert_ext75$0 = $q_sroa_0_1_lcssa; - $q_sroa_0_0_insert_ext75$1 = 0; - $q_sroa_0_0_insert_insert77$1 = $q_sroa_1_1_lcssa | $q_sroa_0_0_insert_ext75$1; - if (($rem | 0) != 0) { - HEAP32[$rem >> 2] = 0 | $r_sroa_0_1_lcssa; - HEAP32[$rem + 4 >> 2] = $r_sroa_1_1_lcssa | 0; - } - $_0$1 = (0 | $q_sroa_0_0_insert_ext75$0) >>> 31 | $q_sroa_0_0_insert_insert77$1 << 1 | ($q_sroa_0_0_insert_ext75$1 << 1 | $q_sroa_0_0_insert_ext75$0 >>> 31) & 0 | $carry_0_lcssa$1; - $_0$0 = ($q_sroa_0_0_insert_ext75$0 << 1 | 0 >>> 31) & -2 | $carry_0_lcssa$0; - return (tempRet0 = $_0$1, $_0$0) | 0; -} -// ======================================================================= - - function dynCall_ii(index,a1) { @@ -24374,68 +20435,75 @@ function dynCall_iiii(index,a1,a2,a3) { return FUNCTION_TABLE_iiii[index&3](a1|0,a2|0,a3|0)|0; } - -function dynCall_vi(index,a1) { - index = index|0; - a1=a1|0; - FUNCTION_TABLE_vi[index&1](a1|0); -} - function b0(p0) { p0 = p0|0; abort(0);return 0; } function b1(p0,p1,p2) { p0 = p0|0;p1 = p1|0;p2 = p2|0; abort(1);return 0; } -function b2(p0) { - p0 = p0|0; abort(2); -} // EMSCRIPTEN_END_FUNCS var FUNCTION_TABLE_ii = [b0,___stdio_close]; var FUNCTION_TABLE_iiii = [b1,___stdout_write,___stdio_seek,___stdio_write]; -var FUNCTION_TABLE_vi = [b2,_cleanup392]; - return { _curve25519_verify: _curve25519_verify, _crypto_sign_ed25519_ref10_ge_scalarmult_base: _crypto_sign_ed25519_ref10_ge_scalarmult_base, _curve25519_sign: _curve25519_sign, _fflush: _fflush, _i64Add: _i64Add, _memmove: _memmove, _bitshift64Ashr: _bitshift64Ashr, _sph_sha512_init: _sph_sha512_init, _curve25519_donna: _curve25519_donna, _memset: _memset, _malloc: _malloc, _memcpy: _memcpy, _bitshift64Lshr: _bitshift64Lshr, _free: _free, _i64Subtract: _i64Subtract, ___errno_location: ___errno_location, _bitshift64Shl: _bitshift64Shl, runPostSets: runPostSets, stackAlloc: stackAlloc, stackSave: stackSave, stackRestore: stackRestore, establishStackSpace: establishStackSpace, setThrew: setThrew, setTempRet0: setTempRet0, getTempRet0: getTempRet0, dynCall_ii: dynCall_ii, dynCall_iiii: dynCall_iiii, dynCall_vi: dynCall_vi }; + return { stackSave: stackSave, _curve25519_sign: _curve25519_sign, getTempRet0: getTempRet0, _bitshift64Lshr: _bitshift64Lshr, _i64Subtract: _i64Subtract, _bitshift64Shl: _bitshift64Shl, _curve25519_verify: _curve25519_verify, _fflush: _fflush, _bitshift64Ashr: _bitshift64Ashr, _memset: _memset, _sbrk: _sbrk, _memcpy: _memcpy, stackAlloc: stackAlloc, ___muldi3: ___muldi3, _crypto_sign_ed25519_ref10_ge_scalarmult_base: _crypto_sign_ed25519_ref10_ge_scalarmult_base, _curve25519_donna: _curve25519_donna, setTempRet0: setTempRet0, _i64Add: _i64Add, _emscripten_get_global_libc: _emscripten_get_global_libc, ___errno_location: ___errno_location, ___muldsi3: ___muldsi3, _free: _free, runPostSets: runPostSets, setThrew: setThrew, establishStackSpace: establishStackSpace, _memmove: _memmove, _sph_sha512_init: _sph_sha512_init, stackRestore: stackRestore, _malloc: _malloc, stackAlloc: stackAlloc, stackSave: stackSave, stackRestore: stackRestore, establishStackSpace: establishStackSpace, setThrew: setThrew, setTempRet0: setTempRet0, getTempRet0: getTempRet0, dynCall_ii: dynCall_ii, dynCall_iiii: dynCall_iiii }; }) // EMSCRIPTEN_END_ASM (Module.asmGlobalArg, Module.asmLibraryArg, buffer); -var _curve25519_verify = Module["_curve25519_verify"] = asm["_curve25519_verify"]; -var _crypto_sign_ed25519_ref10_ge_scalarmult_base = Module["_crypto_sign_ed25519_ref10_ge_scalarmult_base"] = asm["_crypto_sign_ed25519_ref10_ge_scalarmult_base"]; + +var stackSave = Module["stackSave"] = asm["stackSave"]; var _curve25519_sign = Module["_curve25519_sign"] = asm["_curve25519_sign"]; +var getTempRet0 = Module["getTempRet0"] = asm["getTempRet0"]; +var _bitshift64Lshr = Module["_bitshift64Lshr"] = asm["_bitshift64Lshr"]; +var _i64Subtract = Module["_i64Subtract"] = asm["_i64Subtract"]; +var _bitshift64Shl = Module["_bitshift64Shl"] = asm["_bitshift64Shl"]; +var _curve25519_verify = Module["_curve25519_verify"] = asm["_curve25519_verify"]; var _fflush = Module["_fflush"] = asm["_fflush"]; -var runPostSets = Module["runPostSets"] = asm["runPostSets"]; -var _i64Add = Module["_i64Add"] = asm["_i64Add"]; -var _memmove = Module["_memmove"] = asm["_memmove"]; var _bitshift64Ashr = Module["_bitshift64Ashr"] = asm["_bitshift64Ashr"]; -var _sph_sha512_init = Module["_sph_sha512_init"] = asm["_sph_sha512_init"]; -var _curve25519_donna = Module["_curve25519_donna"] = asm["_curve25519_donna"]; var _memset = Module["_memset"] = asm["_memset"]; -var _malloc = Module["_malloc"] = asm["_malloc"]; +var _sbrk = Module["_sbrk"] = asm["_sbrk"]; var _memcpy = Module["_memcpy"] = asm["_memcpy"]; -var _bitshift64Lshr = Module["_bitshift64Lshr"] = asm["_bitshift64Lshr"]; -var _free = Module["_free"] = asm["_free"]; -var _i64Subtract = Module["_i64Subtract"] = asm["_i64Subtract"]; +var stackAlloc = Module["stackAlloc"] = asm["stackAlloc"]; +var ___muldi3 = Module["___muldi3"] = asm["___muldi3"]; +var _crypto_sign_ed25519_ref10_ge_scalarmult_base = Module["_crypto_sign_ed25519_ref10_ge_scalarmult_base"] = asm["_crypto_sign_ed25519_ref10_ge_scalarmult_base"]; +var _curve25519_donna = Module["_curve25519_donna"] = asm["_curve25519_donna"]; +var setTempRet0 = Module["setTempRet0"] = asm["setTempRet0"]; +var _i64Add = Module["_i64Add"] = asm["_i64Add"]; +var _emscripten_get_global_libc = Module["_emscripten_get_global_libc"] = asm["_emscripten_get_global_libc"]; var ___errno_location = Module["___errno_location"] = asm["___errno_location"]; -var _bitshift64Shl = Module["_bitshift64Shl"] = asm["_bitshift64Shl"]; +var ___muldsi3 = Module["___muldsi3"] = asm["___muldsi3"]; +var _free = Module["_free"] = asm["_free"]; +var runPostSets = Module["runPostSets"] = asm["runPostSets"]; +var setThrew = Module["setThrew"] = asm["setThrew"]; +var establishStackSpace = Module["establishStackSpace"] = asm["establishStackSpace"]; +var _memmove = Module["_memmove"] = asm["_memmove"]; +var _sph_sha512_init = Module["_sph_sha512_init"] = asm["_sph_sha512_init"]; +var stackRestore = Module["stackRestore"] = asm["stackRestore"]; +var _malloc = Module["_malloc"] = asm["_malloc"]; var dynCall_ii = Module["dynCall_ii"] = asm["dynCall_ii"]; var dynCall_iiii = Module["dynCall_iiii"] = asm["dynCall_iiii"]; -var dynCall_vi = Module["dynCall_vi"] = asm["dynCall_vi"]; ; +Runtime.stackAlloc = Module['stackAlloc']; +Runtime.stackSave = Module['stackSave']; +Runtime.stackRestore = Module['stackRestore']; +Runtime.establishStackSpace = Module['establishStackSpace']; +Runtime.setTempRet0 = Module['setTempRet0']; +Runtime.getTempRet0 = Module['getTempRet0']; + -Runtime.stackAlloc = asm['stackAlloc']; -Runtime.stackSave = asm['stackSave']; -Runtime.stackRestore = asm['stackRestore']; -Runtime.establishStackSpace = asm['establishStackSpace']; +// === Auto-generated postamble setup entry stuff === -Runtime.setTempRet0 = asm['setTempRet0']; -Runtime.getTempRet0 = asm['getTempRet0']; +Module['asm'] = asm; -// === Auto-generated postamble setup entry stuff === + +/** + * @constructor + * @extends {Error} + */ function ExitStatus(status) { this.name = "ExitStatus"; this.message = "Program terminated with exit(" + status + ")"; @@ -24455,8 +20523,6 @@ dependenciesFulfilled = function runCaller() { } Module['callMain'] = Module.callMain = function callMain(args) { - assert(runDependencies == 0, 'cannot call main when async dependencies remain! (listen on __ATMAIN__)'); - assert(__ATPRERUN__.length == 0, 'cannot call main when preRun functions remain to be called'); args = args || []; @@ -24496,8 +20562,12 @@ Module['callMain'] = Module.callMain = function callMain(args) { Module['noExitRuntime'] = true; return; } else { - if (e && typeof e === 'object' && e.stack) Module.printErr('exception thrown: ' + [e, e.stack]); - throw e; + var toLog = e; + if (e && typeof e === 'object' && e.stack) { + toLog = [e, e.stack]; + } + Module.printErr('exception thrown: ' + toLog); + Module['quit'](1, e); } } finally { calledMain = true; @@ -24507,6 +20577,7 @@ Module['callMain'] = Module.callMain = function callMain(args) { +/** @type {function(Array=)} */ function run(args) { args = args || Module['arguments']; @@ -24516,6 +20587,7 @@ function run(args) { return; } + preRun(); if (runDependencies > 0) return; // a preRun added a dependency, run will be called later @@ -24525,7 +20597,7 @@ function run(args) { if (Module['calledRun']) return; // run may have just been called while the async setStatus time below was happening Module['calledRun'] = true; - if (ABORT) return; + if (ABORT) return; ensureInitRuntime(); @@ -24571,31 +20643,19 @@ function exit(status, implicit) { } if (ENVIRONMENT_IS_NODE) { - // Work around a node.js bug where stdout buffer is not flushed at process exit: - // Instead of process.exit() directly, wait for stdout flush event. - // See https://github.com/joyent/node/issues/1669 and https://github.com/kripken/emscripten/issues/2582 - // Workaround is based on https://github.com/RReverser/acorn/commit/50ab143cecc9ed71a2d66f78b4aec3bb2e9844f6 - process['stdout']['once']('drain', function () { - process['exit'](status); - }); - console.log(' '); // Make sure to print something to force the drain event to occur, in case the stdout buffer was empty. - // Work around another node bug where sometimes 'drain' is never fired - make another effort - // to emit the exit status, after a significant delay (if node hasn't fired drain by then, give up) - setTimeout(function() { - process['exit'](status); - }, 500); - } else - if (ENVIRONMENT_IS_SHELL && typeof quit === 'function') { - quit(status); + process['exit'](status); } - // if we reach here, we must throw an exception to halt the current execution - throw new ExitStatus(status); + Module['quit'](status, new ExitStatus(status)); } Module['exit'] = Module.exit = exit; var abortDecorators = []; function abort(what) { + if (Module['onAbort']) { + Module['onAbort'](what); + } + if (what !== undefined) { Module.print(what); Module.printErr(what); @@ -24643,7 +20703,6 @@ run(); - // {{MODULE_ADDITIONS}} diff --git a/build/test_lib.js b/build/test_lib.js index 74c827b..03ad41d 100644 --- a/build/test_lib.js +++ b/build/test_lib.js @@ -189,7 +189,7 @@ global.mocha = mocha; module.exports = global; }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"./lib/mocha":14,"_process":67,"browser-stdout":41}],2:[function(require,module,exports){ +},{"./lib/mocha":14,"_process":81,"browser-stdout":41}],2:[function(require,module,exports){ 'use strict'; function noop () {} @@ -647,7 +647,7 @@ Context.prototype.inspect = function () { }, 2); }; -},{"json3":54}],7:[function(require,module,exports){ +},{"json3":68}],7:[function(require,module,exports){ 'use strict'; /** @@ -1412,9 +1412,17 @@ Mocha.prototype.reporter = function (reporter, reporterOptions) { try { _reporter = require(reporter); } catch (err) { - err.message.indexOf('Cannot find module') !== -1 - ? console.warn('"' + reporter + '" reporter not found') - : console.warn('"' + reporter + '" reporter blew up with error:\n' + err.stack); + if (err.message.indexOf('Cannot find module') !== -1) { + // Try to load reporters from a path (absolute or relative) + try { + _reporter = require(path.resolve(process.cwd(), reporter)); + } catch (_err) { + err.message.indexOf('Cannot find module') !== -1 ? console.warn('"' + reporter + '" reporter not found') + : console.warn('"' + reporter + '" reporter blew up with error:\n' + err.stack); + } + } else { + console.warn('"' + reporter + '" reporter blew up with error:\n' + err.stack); + } } } if (!_reporter && reporter === 'teamcity') { @@ -1735,6 +1743,24 @@ Mocha.prototype.delay = function delay () { return this; }; +/** + * Tests marked only fail the suite + * @returns {Mocha} + */ +Mocha.prototype.forbidOnly = function () { + this.options.forbidOnly = true; + return this; +}; + +/** + * Pending tests and tests marked skip fail the suite + * @returns {Mocha} + */ +Mocha.prototype.forbidPending = function () { + this.options.forbidPending = true; + return this; +}; + /** * Run tests and invoke `fn()` when complete. * @@ -1756,6 +1782,8 @@ Mocha.prototype.run = function (fn) { runner.hasOnly = options.hasOnly; runner.asyncOnly = options.asyncOnly; runner.allowUncaught = options.allowUncaught; + runner.forbidOnly = options.forbidOnly; + runner.forbidPending = options.forbidPending; if (options.grep) { runner.grep(options.grep, options.invert); } @@ -1782,7 +1810,7 @@ Mocha.prototype.run = function (fn) { }; }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},"/lib") -},{"./context":6,"./hook":7,"./interfaces":11,"./reporters":21,"./runnable":33,"./runner":34,"./suite":35,"./test":36,"./utils":38,"_process":67,"escape-string-regexp":47,"growl":49,"path":42}],15:[function(require,module,exports){ +},{"./context":6,"./hook":7,"./interfaces":11,"./reporters":21,"./runnable":33,"./runner":34,"./suite":35,"./test":36,"./utils":38,"_process":81,"escape-string-regexp":61,"growl":63,"path":42}],15:[function(require,module,exports){ 'use strict'; /** @@ -2427,7 +2455,7 @@ function sameType (a, b) { } }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"../ms":15,"../utils":38,"_process":67,"diff":46,"supports-color":42,"tty":5}],18:[function(require,module,exports){ +},{"../ms":15,"../utils":38,"_process":81,"diff":55,"supports-color":42,"tty":5}],18:[function(require,module,exports){ 'use strict'; /** @@ -2565,7 +2593,7 @@ function Dot (runner) { inherits(Dot, Base); }).call(this,require('_process')) -},{"../utils":38,"./base":17,"_process":67}],20:[function(require,module,exports){ +},{"../utils":38,"./base":17,"_process":81}],20:[function(require,module,exports){ (function (global){ 'use strict'; @@ -2610,6 +2638,8 @@ var statsTemplate = '
    ' + '
  • duration: 0s
  • ' + '
'; +var playIcon = '‣'; + /** * Initialize a new `HTML` reporter. * @@ -2705,7 +2735,7 @@ function HTML (runner) { runner.on('pass', function (test) { var url = self.testURL(test); var markup = '
  • %e%ems ' + - '

  • '; + '' + playIcon + ''; var el = fragment(markup, test.speed, test.title, test.duration, url); self.addCodeToggle(el, test.body); appendToStack(el); @@ -2713,7 +2743,7 @@ function HTML (runner) { }); runner.on('fail', function (test) { - var el = fragment('
  • %e

  • ', + var el = fragment('
  • %e ' + playIcon + '

  • ', test.title, self.testURL(test)); var stackString; // Note: Includes leading newline var message = test.err.toString(); @@ -2915,7 +2945,7 @@ function on (el, event, fn) { } }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"../browser/progress":4,"../utils":38,"./base":17,"escape-string-regexp":47}],21:[function(require,module,exports){ +},{"../browser/progress":4,"../utils":38,"./base":17,"escape-string-regexp":61}],21:[function(require,module,exports){ 'use strict'; // Alias exports to a their normalized format Mocha#reporter to prevent a need @@ -3003,7 +3033,7 @@ function clean (test) { } }).call(this,require('_process')) -},{"./base":17,"_process":67,"json3":54}],23:[function(require,module,exports){ +},{"./base":17,"_process":81,"json3":68}],23:[function(require,module,exports){ (function (process){ 'use strict'; @@ -3099,7 +3129,7 @@ function errorJSON (err) { } }).call(this,require('_process')) -},{"./base":17,"_process":67}],24:[function(require,module,exports){ +},{"./base":17,"_process":81}],24:[function(require,module,exports){ (function (process){ 'use strict'; @@ -3197,7 +3227,7 @@ function Landing (runner) { inherits(Landing, Base); }).call(this,require('_process')) -},{"../utils":38,"./base":17,"_process":67}],25:[function(require,module,exports){ +},{"../utils":38,"./base":17,"_process":81}],25:[function(require,module,exports){ (function (process){ 'use strict'; @@ -3264,7 +3294,7 @@ function List (runner) { inherits(List, Base); }).call(this,require('_process')) -},{"../utils":38,"./base":17,"_process":67}],26:[function(require,module,exports){ +},{"../utils":38,"./base":17,"_process":81}],26:[function(require,module,exports){ (function (process){ 'use strict'; @@ -3367,7 +3397,7 @@ function Markdown (runner) { } }).call(this,require('_process')) -},{"../utils":38,"./base":17,"_process":67}],27:[function(require,module,exports){ +},{"../utils":38,"./base":17,"_process":81}],27:[function(require,module,exports){ (function (process){ 'use strict'; @@ -3409,7 +3439,7 @@ function Min (runner) { inherits(Min, Base); }).call(this,require('_process')) -},{"../utils":38,"./base":17,"_process":67}],28:[function(require,module,exports){ +},{"../utils":38,"./base":17,"_process":81}],28:[function(require,module,exports){ (function (process){ 'use strict'; @@ -3676,7 +3706,7 @@ function write (string) { } }).call(this,require('_process')) -},{"../utils":38,"./base":17,"_process":67}],29:[function(require,module,exports){ +},{"../utils":38,"./base":17,"_process":81}],29:[function(require,module,exports){ (function (process){ 'use strict'; @@ -3771,7 +3801,7 @@ function Progress (runner, options) { inherits(Progress, Base); }).call(this,require('_process')) -},{"../utils":38,"./base":17,"_process":67}],30:[function(require,module,exports){ +},{"../utils":38,"./base":17,"_process":81}],30:[function(require,module,exports){ 'use strict'; /** @@ -4098,7 +4128,7 @@ function tag (name, attrs, close, content) { } }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"../utils":38,"./base":17,"_process":67,"fs":42,"mkdirp":64,"path":42}],33:[function(require,module,exports){ +},{"../utils":38,"./base":17,"_process":81,"fs":42,"mkdirp":78,"path":42}],33:[function(require,module,exports){ (function (global){ 'use strict'; @@ -4426,8 +4456,11 @@ Runnable.prototype.run = function (fn) { } if (this.allowUncaught) { - callFn(this.fn); - done(); + if (this.isPending()) { + done(); + } else { + callFn(this.fn); + } return; } @@ -4488,7 +4521,7 @@ Runnable.prototype.run = function (fn) { }; }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"./ms":15,"./pending":16,"./utils":38,"debug":2,"events":3,"json3":54,"lodash.create":60}],34:[function(require,module,exports){ +},{"./ms":15,"./pending":16,"./utils":38,"debug":2,"events":3,"json3":68,"lodash.create":69}],34:[function(require,module,exports){ (function (process,global){ 'use strict'; @@ -4924,15 +4957,14 @@ Runner.prototype.runTest = function (fn) { if (this.asyncOnly) { test.asyncOnly = true; } - + test.on('error', function (err) { + self.fail(test, err); + }); if (this.allowUncaught) { test.allowUncaught = true; return test.run(fn); } try { - test.on('error', function (err) { - self.fail(test, err); - }); test.run(fn); } catch (err) { fn(err); @@ -5173,9 +5205,9 @@ Runner.prototype.runSuite = function (suite, fn) { */ Runner.prototype.uncaught = function (err) { if (err) { - debug('uncaught exception %s', err !== function () { + debug('uncaught exception %s', err === (function () { return this; - }.call(err) ? err : (err.message || err)); + }.call(err)) ? (err.message || err) : err); } else { debug('uncaught undefined exception'); err = undefinedError(); @@ -5313,6 +5345,12 @@ Runner.prototype.run = function (fn) { // callback this.on('end', function () { + if (self.forbidOnly && self.hasOnly) { + self.failures += self.stats.tests; + } + if (self.forbidPending) { + self.failures += self.stats.pending; + } debug('end'); process.removeListener('uncaughtException', uncaught); fn(self.failures); @@ -5455,7 +5493,7 @@ function extraGlobals () { } }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"./pending":16,"./runnable":33,"./utils":38,"_process":67,"debug":2,"events":3}],35:[function(require,module,exports){ +},{"./pending":16,"./runnable":33,"./utils":38,"_process":81,"debug":2,"events":3}],35:[function(require,module,exports){ 'use strict'; /** @@ -5913,7 +5951,7 @@ Test.prototype.clone = function () { return test; }; -},{"./runnable":33,"./utils":38,"lodash.create":60}],37:[function(require,module,exports){ +},{"./runnable":33,"./utils":38,"lodash.create":69}],37:[function(require,module,exports){ 'use strict'; /** @@ -6278,7 +6316,9 @@ exports.parseQuery = function (qs) { var key = pair.slice(0, i); var val = pair.slice(++i); - obj[key] = decodeURIComponent(val); + // Due to how the URLSearchParams API treats spaces + obj[key] = decodeURIComponent(val.replace(/\+/g, '%20')); + return obj; }, {}); }; @@ -6372,7 +6412,7 @@ var type = exports.type = function type (value) { return 'buffer'; } return Object.prototype.toString.call(value) - .replace(/^\[.+\s(.+?)\]$/, '$1') + .replace(/^\[.+\s(.+?)]$/, '$1') .toLowerCase(); }; @@ -6697,7 +6737,9 @@ exports.stackTraceFilter = function () { if (is.node) { cwd = process.cwd() + slash; } else { - cwd = (typeof location === 'undefined' ? window.location : location).href.replace(/\/[^\/]*$/, '/'); + cwd = (typeof location === 'undefined' + ? window.location + : location).href.replace(/\/[^/]*$/, '/'); slash = '/'; } @@ -6759,7 +6801,7 @@ exports.isPromise = function isPromise (value) { exports.noop = function () {}; }).call(this,require('_process'),require("buffer").Buffer) -},{"./to-iso-string":37,"_process":67,"buffer":44,"debug":2,"fs":42,"glob":42,"json3":54,"path":42,"util":84}],39:[function(require,module,exports){ +},{"./to-iso-string":37,"_process":81,"buffer":43,"debug":2,"fs":42,"glob":42,"json3":68,"path":42,"util":101}],39:[function(require,module,exports){ 'use strict' exports.byteLength = byteLength @@ -6795,22 +6837,22 @@ function placeHoldersCount (b64) { function byteLength (b64) { // base64 is 4/3 + up to two characters of the original data - return b64.length * 3 / 4 - placeHoldersCount(b64) + return (b64.length * 3 / 4) - placeHoldersCount(b64) } function toByteArray (b64) { - var i, j, l, tmp, placeHolders, arr + var i, l, tmp, placeHolders, arr var len = b64.length placeHolders = placeHoldersCount(b64) - arr = new Arr(len * 3 / 4 - placeHolders) + arr = new Arr((len * 3 / 4) - placeHolders) // if there are placeholders, only get up to the last complete 4 chars l = placeHolders > 0 ? len - 4 : len var L = 0 - for (i = 0, j = 0; i < l; i += 4, j += 3) { + for (i = 0; i < l; i += 4) { tmp = (revLookup[b64.charCodeAt(i)] << 18) | (revLookup[b64.charCodeAt(i + 1)] << 12) | (revLookup[b64.charCodeAt(i + 2)] << 6) | revLookup[b64.charCodeAt(i + 3)] arr[L++] = (tmp >> 16) & 0xFF arr[L++] = (tmp >> 8) & 0xFF @@ -6906,122 +6948,10 @@ BrowserStdout.prototype._write = function(chunks, encoding, cb) { } }).call(this,require('_process')) -},{"_process":67,"stream":79,"util":84}],42:[function(require,module,exports){ +},{"_process":81,"stream":95,"util":101}],42:[function(require,module,exports){ arguments[4][40][0].apply(exports,arguments) },{"dup":40}],43:[function(require,module,exports){ (function (global){ -'use strict'; - -var buffer = require('buffer'); -var Buffer = buffer.Buffer; -var SlowBuffer = buffer.SlowBuffer; -var MAX_LEN = buffer.kMaxLength || 2147483647; -exports.alloc = function alloc(size, fill, encoding) { - if (typeof Buffer.alloc === 'function') { - return Buffer.alloc(size, fill, encoding); - } - if (typeof encoding === 'number') { - throw new TypeError('encoding must not be number'); - } - if (typeof size !== 'number') { - throw new TypeError('size must be a number'); - } - if (size > MAX_LEN) { - throw new RangeError('size is too large'); - } - var enc = encoding; - var _fill = fill; - if (_fill === undefined) { - enc = undefined; - _fill = 0; - } - var buf = new Buffer(size); - if (typeof _fill === 'string') { - var fillBuf = new Buffer(_fill, enc); - var flen = fillBuf.length; - var i = -1; - while (++i < size) { - buf[i] = fillBuf[i % flen]; - } - } else { - buf.fill(_fill); - } - return buf; -} -exports.allocUnsafe = function allocUnsafe(size) { - if (typeof Buffer.allocUnsafe === 'function') { - return Buffer.allocUnsafe(size); - } - if (typeof size !== 'number') { - throw new TypeError('size must be a number'); - } - if (size > MAX_LEN) { - throw new RangeError('size is too large'); - } - return new Buffer(size); -} -exports.from = function from(value, encodingOrOffset, length) { - if (typeof Buffer.from === 'function' && (!global.Uint8Array || Uint8Array.from !== Buffer.from)) { - return Buffer.from(value, encodingOrOffset, length); - } - if (typeof value === 'number') { - throw new TypeError('"value" argument must not be a number'); - } - if (typeof value === 'string') { - return new Buffer(value, encodingOrOffset); - } - if (typeof ArrayBuffer !== 'undefined' && value instanceof ArrayBuffer) { - var offset = encodingOrOffset; - if (arguments.length === 1) { - return new Buffer(value); - } - if (typeof offset === 'undefined') { - offset = 0; - } - var len = length; - if (typeof len === 'undefined') { - len = value.byteLength - offset; - } - if (offset >= value.byteLength) { - throw new RangeError('\'offset\' is out of bounds'); - } - if (len > value.byteLength - offset) { - throw new RangeError('\'length\' is out of bounds'); - } - return new Buffer(value.slice(offset, offset + len)); - } - if (Buffer.isBuffer(value)) { - var out = new Buffer(value.length); - value.copy(out, 0, 0, value.length); - return out; - } - if (value) { - if (Array.isArray(value) || (typeof ArrayBuffer !== 'undefined' && value.buffer instanceof ArrayBuffer) || 'length' in value) { - return new Buffer(value); - } - if (value.type === 'Buffer' && Array.isArray(value.data)) { - return new Buffer(value.data); - } - } - - throw new TypeError('First argument must be a string, Buffer, ' + 'ArrayBuffer, Array, or array-like object.'); -} -exports.allocUnsafeSlow = function allocUnsafeSlow(size) { - if (typeof Buffer.allocUnsafeSlow === 'function') { - return Buffer.allocUnsafeSlow(size); - } - if (typeof size !== 'number') { - throw new TypeError('size must be a number'); - } - if (size >= MAX_LEN) { - throw new RangeError('size is too large'); - } - return new SlowBuffer(size); -} - -}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"buffer":44}],44:[function(require,module,exports){ -(function (global){ /*! * The buffer module from node.js, for the browser. * @@ -8813,7 +8743,7 @@ function isnan (val) { } }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"base64-js":39,"ieee754":50,"isarray":53}],45:[function(require,module,exports){ +},{"base64-js":39,"ieee754":64,"isarray":67}],44:[function(require,module,exports){ (function (Buffer){ // Copyright Joyent, Inc. and other Node contributors. // @@ -8924,628 +8854,1258 @@ function objectToString(o) { } }).call(this,{"isBuffer":require("../../is-buffer/index.js")}) -},{"../../is-buffer/index.js":52}],46:[function(require,module,exports){ -/* See LICENSE file for terms of use */ +},{"../../is-buffer/index.js":66}],45:[function(require,module,exports){ +/*istanbul ignore start*/"use strict"; + +exports.__esModule = true; +exports. /*istanbul ignore end*/convertChangesToDMP = convertChangesToDMP; +// See: http://code.google.com/p/google-diff-match-patch/wiki/API +function convertChangesToDMP(changes) { + var ret = [], + change = /*istanbul ignore start*/void 0 /*istanbul ignore end*/, + operation = /*istanbul ignore start*/void 0 /*istanbul ignore end*/; + for (var i = 0; i < changes.length; i++) { + change = changes[i]; + if (change.added) { + operation = 1; + } else if (change.removed) { + operation = -1; + } else { + operation = 0; + } -/* - * Text diff implementation. - * - * This library supports the following APIS: - * JsDiff.diffChars: Character by character diff - * JsDiff.diffWords: Word (as defined by \b regex) diff which ignores whitespace - * JsDiff.diffLines: Line based diff - * - * JsDiff.diffCss: Diff targeted at CSS content - * - * These methods are based on the implementation proposed in - * "An O(ND) Difference Algorithm and its Variations" (Myers, 1986). - * http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.4.6927 - */ -(function(global, undefined) { - var objectPrototypeToString = Object.prototype.toString; + ret.push([operation, change.value]); + } + return ret; +} - /*istanbul ignore next*/ - function map(arr, mapper, that) { - if (Array.prototype.map) { - return Array.prototype.map.call(arr, mapper, that); - } - var other = new Array(arr.length); +},{}],46:[function(require,module,exports){ +/*istanbul ignore start*/'use strict'; - for (var i = 0, n = arr.length; i < n; i++) { - other[i] = mapper.call(that, arr[i], i, arr); +exports.__esModule = true; +exports. /*istanbul ignore end*/convertChangesToXML = convertChangesToXML; +function convertChangesToXML(changes) { + var ret = []; + for (var i = 0; i < changes.length; i++) { + var change = changes[i]; + if (change.added) { + ret.push(''); + } else if (change.removed) { + ret.push(''); } - return other; - } - function clonePath(path) { - return { newPos: path.newPos, components: path.components.slice(0) }; - } - function removeEmpty(array) { - var ret = []; - for (var i = 0; i < array.length; i++) { - if (array[i]) { - ret.push(array[i]); - } + + ret.push(escapeHTML(change.value)); + + if (change.added) { + ret.push(''); + } else if (change.removed) { + ret.push(''); } - return ret; } - function escapeHTML(s) { - var n = s; - n = n.replace(/&/g, '&'); - n = n.replace(//g, '>'); - n = n.replace(/"/g, '"'); + return ret.join(''); +} - return n; - } +function escapeHTML(s) { + var n = s; + n = n.replace(/&/g, '&'); + n = n.replace(//g, '>'); + n = n.replace(/"/g, '"'); - // This function handles the presence of circular references by bailing out when encountering an - // object that is already on the "stack" of items being processed. - function canonicalize(obj, stack, replacementStack) { - stack = stack || []; - replacementStack = replacementStack || []; + return n; +} - var i; - for (i = 0; i < stack.length; i += 1) { - if (stack[i] === obj) { - return replacementStack[i]; - } - } +},{}],47:[function(require,module,exports){ +/*istanbul ignore start*/'use strict'; - var canonicalizedObj; +exports.__esModule = true; +exports.arrayDiff = undefined; +exports. /*istanbul ignore end*/diffArrays = diffArrays; - if ('[object Array]' === objectPrototypeToString.call(obj)) { - stack.push(obj); - canonicalizedObj = new Array(obj.length); - replacementStack.push(canonicalizedObj); - for (i = 0; i < obj.length; i += 1) { - canonicalizedObj[i] = canonicalize(obj[i], stack, replacementStack); - } - stack.pop(); - replacementStack.pop(); - } else if (typeof obj === 'object' && obj !== null) { - stack.push(obj); - canonicalizedObj = {}; - replacementStack.push(canonicalizedObj); - var sortedKeys = [], - key; - for (key in obj) { - sortedKeys.push(key); - } - sortedKeys.sort(); - for (i = 0; i < sortedKeys.length; i += 1) { - key = sortedKeys[i]; - canonicalizedObj[key] = canonicalize(obj[key], stack, replacementStack); - } - stack.pop(); - replacementStack.pop(); - } else { - canonicalizedObj = obj; - } - return canonicalizedObj; - } +var /*istanbul ignore start*/_base = require('./base') /*istanbul ignore end*/; - function buildValues(components, newString, oldString, useLongestToken) { - var componentPos = 0, - componentLen = components.length, - newPos = 0, - oldPos = 0; - - for (; componentPos < componentLen; componentPos++) { - var component = components[componentPos]; - if (!component.removed) { - if (!component.added && useLongestToken) { - var value = newString.slice(newPos, newPos + component.count); - value = map(value, function(value, i) { - var oldValue = oldString[oldPos + i]; - return oldValue.length > value.length ? oldValue : value; - }); +/*istanbul ignore start*/ +var _base2 = _interopRequireDefault(_base); - component.value = value.join(''); - } else { - component.value = newString.slice(newPos, newPos + component.count).join(''); - } - newPos += component.count; +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } - // Common case - if (!component.added) { - oldPos += component.count; - } - } else { - component.value = oldString.slice(oldPos, oldPos + component.count).join(''); - oldPos += component.count; +/*istanbul ignore end*/var arrayDiff = /*istanbul ignore start*/exports. /*istanbul ignore end*/arrayDiff = new /*istanbul ignore start*/_base2['default']() /*istanbul ignore end*/; +arrayDiff.tokenize = arrayDiff.join = function (value) { + return value.slice(); +}; - // Reverse add and remove so removes are output first to match common convention - // The diffing algorithm is tied to add then remove output and this is the simplest - // route to get the desired output with minimal overhead. - if (componentPos && components[componentPos - 1].added) { - var tmp = components[componentPos - 1]; - components[componentPos - 1] = components[componentPos]; - components[componentPos] = tmp; - } - } +function diffArrays(oldArr, newArr, callback) { + return arrayDiff.diff(oldArr, newArr, callback); +} + + +},{"./base":48}],48:[function(require,module,exports){ +/*istanbul ignore start*/'use strict'; + +exports.__esModule = true; +exports['default'] = /*istanbul ignore end*/Diff; +function Diff() {} + +Diff.prototype = { /*istanbul ignore start*/ + /*istanbul ignore end*/diff: function diff(oldString, newString) { + /*istanbul ignore start*/var /*istanbul ignore end*/options = arguments.length <= 2 || arguments[2] === undefined ? {} : arguments[2]; + + var callback = options.callback; + if (typeof options === 'function') { + callback = options; + options = {}; } + this.options = options; - return components; - } + var self = this; - function Diff(ignoreWhitespace) { - this.ignoreWhitespace = ignoreWhitespace; - } - Diff.prototype = { - diff: function(oldString, newString, callback) { - var self = this; + function done(value) { + if (callback) { + setTimeout(function () { + callback(undefined, value); + }, 0); + return true; + } else { + return value; + } + } - function done(value) { - if (callback) { - setTimeout(function() { callback(undefined, value); }, 0); - return true; - } else { - return value; + // Allow subclasses to massage the input prior to running + oldString = this.castInput(oldString); + newString = this.castInput(newString); + + oldString = this.removeEmpty(this.tokenize(oldString)); + newString = this.removeEmpty(this.tokenize(newString)); + + var newLen = newString.length, + oldLen = oldString.length; + var editLength = 1; + var maxEditLength = newLen + oldLen; + var bestPath = [{ newPos: -1, components: [] }]; + + // Seed editLength = 0, i.e. the content starts with the same values + var oldPos = this.extractCommon(bestPath[0], newString, oldString, 0); + if (bestPath[0].newPos + 1 >= newLen && oldPos + 1 >= oldLen) { + // Identity per the equality and tokenizer + return done([{ value: this.join(newString), count: newString.length }]); + } + + // Main worker method. checks all permutations of a given edit length for acceptance. + function execEditLength() { + for (var diagonalPath = -1 * editLength; diagonalPath <= editLength; diagonalPath += 2) { + var basePath = /*istanbul ignore start*/void 0 /*istanbul ignore end*/; + var addPath = bestPath[diagonalPath - 1], + removePath = bestPath[diagonalPath + 1], + _oldPos = (removePath ? removePath.newPos : 0) - diagonalPath; + if (addPath) { + // No one else is going to attempt to use this value, clear it + bestPath[diagonalPath - 1] = undefined; } - } - // Handle the identity case (this is due to unrolling editLength == 0 - if (newString === oldString) { - return done([{ value: newString }]); - } - if (!newString) { - return done([{ value: oldString, removed: true }]); - } - if (!oldString) { - return done([{ value: newString, added: true }]); - } + var canAdd = addPath && addPath.newPos + 1 < newLen, + canRemove = removePath && 0 <= _oldPos && _oldPos < oldLen; + if (!canAdd && !canRemove) { + // If this path is a terminal then prune + bestPath[diagonalPath] = undefined; + continue; + } - newString = this.tokenize(newString); - oldString = this.tokenize(oldString); + // Select the diagonal that we want to branch from. We select the prior + // path whose position in the new string is the farthest from the origin + // and does not pass the bounds of the diff graph + if (!canAdd || canRemove && addPath.newPos < removePath.newPos) { + basePath = clonePath(removePath); + self.pushComponent(basePath.components, undefined, true); + } else { + basePath = addPath; // No need to clone, we've pulled it from the list + basePath.newPos++; + self.pushComponent(basePath.components, true, undefined); + } - var newLen = newString.length, oldLen = oldString.length; - var editLength = 1; - var maxEditLength = newLen + oldLen; - var bestPath = [{ newPos: -1, components: [] }]; + _oldPos = self.extractCommon(basePath, newString, oldString, diagonalPath); - // Seed editLength = 0, i.e. the content starts with the same values - var oldPos = this.extractCommon(bestPath[0], newString, oldString, 0); - if (bestPath[0].newPos + 1 >= newLen && oldPos + 1 >= oldLen) { - // Identity per the equality and tokenizer - return done([{value: newString.join('')}]); + // If we have hit the end of both strings, then we are done + if (basePath.newPos + 1 >= newLen && _oldPos + 1 >= oldLen) { + return done(buildValues(self, basePath.components, newString, oldString, self.useLongestToken)); + } else { + // Otherwise track this path as a potential candidate and continue. + bestPath[diagonalPath] = basePath; + } } - // Main worker method. checks all permutations of a given edit length for acceptance. - function execEditLength() { - for (var diagonalPath = -1 * editLength; diagonalPath <= editLength; diagonalPath += 2) { - var basePath; - var addPath = bestPath[diagonalPath - 1], - removePath = bestPath[diagonalPath + 1], - oldPos = (removePath ? removePath.newPos : 0) - diagonalPath; - if (addPath) { - // No one else is going to attempt to use this value, clear it - bestPath[diagonalPath - 1] = undefined; - } - - var canAdd = addPath && addPath.newPos + 1 < newLen, - canRemove = removePath && 0 <= oldPos && oldPos < oldLen; - if (!canAdd && !canRemove) { - // If this path is a terminal then prune - bestPath[diagonalPath] = undefined; - continue; - } + editLength++; + } - // Select the diagonal that we want to branch from. We select the prior - // path whose position in the new string is the farthest from the origin - // and does not pass the bounds of the diff graph - if (!canAdd || (canRemove && addPath.newPos < removePath.newPos)) { - basePath = clonePath(removePath); - self.pushComponent(basePath.components, undefined, true); - } else { - basePath = addPath; // No need to clone, we've pulled it from the list - basePath.newPos++; - self.pushComponent(basePath.components, true, undefined); + // Performs the length of edit iteration. Is a bit fugly as this has to support the + // sync and async mode which is never fun. Loops over execEditLength until a value + // is produced. + if (callback) { + (function exec() { + setTimeout(function () { + // This should not happen, but we want to be safe. + /* istanbul ignore next */ + if (editLength > maxEditLength) { + return callback(); } - oldPos = self.extractCommon(basePath, newString, oldString, diagonalPath); - - // If we have hit the end of both strings, then we are done - if (basePath.newPos + 1 >= newLen && oldPos + 1 >= oldLen) { - return done(buildValues(basePath.components, newString, oldString, self.useLongestToken)); - } else { - // Otherwise track this path as a potential candidate and continue. - bestPath[diagonalPath] = basePath; + if (!execEditLength()) { + exec(); } + }, 0); + })(); + } else { + while (editLength <= maxEditLength) { + var ret = execEditLength(); + if (ret) { + return ret; } + } + } + }, + /*istanbul ignore start*/ /*istanbul ignore end*/pushComponent: function pushComponent(components, added, removed) { + var last = components[components.length - 1]; + if (last && last.added === added && last.removed === removed) { + // We need to clone here as the component clone operation is just + // as shallow array clone + components[components.length - 1] = { count: last.count + 1, added: added, removed: removed }; + } else { + components.push({ count: 1, added: added, removed: removed }); + } + }, + /*istanbul ignore start*/ /*istanbul ignore end*/extractCommon: function extractCommon(basePath, newString, oldString, diagonalPath) { + var newLen = newString.length, + oldLen = oldString.length, + newPos = basePath.newPos, + oldPos = newPos - diagonalPath, + commonCount = 0; + while (newPos + 1 < newLen && oldPos + 1 < oldLen && this.equals(newString[newPos + 1], oldString[oldPos + 1])) { + newPos++; + oldPos++; + commonCount++; + } + + if (commonCount) { + basePath.components.push({ count: commonCount }); + } - editLength++; + basePath.newPos = newPos; + return oldPos; + }, + /*istanbul ignore start*/ /*istanbul ignore end*/equals: function equals(left, right) { + return left === right; + }, + /*istanbul ignore start*/ /*istanbul ignore end*/removeEmpty: function removeEmpty(array) { + var ret = []; + for (var i = 0; i < array.length; i++) { + if (array[i]) { + ret.push(array[i]); } + } + return ret; + }, + /*istanbul ignore start*/ /*istanbul ignore end*/castInput: function castInput(value) { + return value; + }, + /*istanbul ignore start*/ /*istanbul ignore end*/tokenize: function tokenize(value) { + return value.split(''); + }, + /*istanbul ignore start*/ /*istanbul ignore end*/join: function join(chars) { + return chars.join(''); + } +}; - // Performs the length of edit iteration. Is a bit fugly as this has to support the - // sync and async mode which is never fun. Loops over execEditLength until a value - // is produced. - if (callback) { - (function exec() { - setTimeout(function() { - // This should not happen, but we want to be safe. - /*istanbul ignore next */ - if (editLength > maxEditLength) { - return callback(); - } +function buildValues(diff, components, newString, oldString, useLongestToken) { + var componentPos = 0, + componentLen = components.length, + newPos = 0, + oldPos = 0; - if (!execEditLength()) { - exec(); - } - }, 0); - }()); + for (; componentPos < componentLen; componentPos++) { + var component = components[componentPos]; + if (!component.removed) { + if (!component.added && useLongestToken) { + var value = newString.slice(newPos, newPos + component.count); + value = value.map(function (value, i) { + var oldValue = oldString[oldPos + i]; + return oldValue.length > value.length ? oldValue : value; + }); + + component.value = diff.join(value); } else { - while (editLength <= maxEditLength) { - var ret = execEditLength(); - if (ret) { - return ret; - } - } + component.value = diff.join(newString.slice(newPos, newPos + component.count)); } - }, + newPos += component.count; - pushComponent: function(components, added, removed) { - var last = components[components.length - 1]; - if (last && last.added === added && last.removed === removed) { - // We need to clone here as the component clone operation is just - // as shallow array clone - components[components.length - 1] = {count: last.count + 1, added: added, removed: removed }; - } else { - components.push({count: 1, added: added, removed: removed }); + // Common case + if (!component.added) { + oldPos += component.count; } - }, - extractCommon: function(basePath, newString, oldString, diagonalPath) { - var newLen = newString.length, - oldLen = oldString.length, - newPos = basePath.newPos, - oldPos = newPos - diagonalPath, - - commonCount = 0; - while (newPos + 1 < newLen && oldPos + 1 < oldLen && this.equals(newString[newPos + 1], oldString[oldPos + 1])) { - newPos++; - oldPos++; - commonCount++; + } else { + component.value = diff.join(oldString.slice(oldPos, oldPos + component.count)); + oldPos += component.count; + + // Reverse add and remove so removes are output first to match common convention + // The diffing algorithm is tied to add then remove output and this is the simplest + // route to get the desired output with minimal overhead. + if (componentPos && components[componentPos - 1].added) { + var tmp = components[componentPos - 1]; + components[componentPos - 1] = components[componentPos]; + components[componentPos] = tmp; } + } + } - if (commonCount) { - basePath.components.push({count: commonCount}); - } + // Special case handle for when one terminal is ignored. For this case we merge the + // terminal into the prior string and drop the change. + var lastComponent = components[componentLen - 1]; + if (componentLen > 1 && (lastComponent.added || lastComponent.removed) && diff.equals('', lastComponent.value)) { + components[componentLen - 2].value += lastComponent.value; + components.pop(); + } - basePath.newPos = newPos; - return oldPos; - }, + return components; +} - equals: function(left, right) { - var reWhitespace = /\S/; - return left === right || (this.ignoreWhitespace && !reWhitespace.test(left) && !reWhitespace.test(right)); - }, - tokenize: function(value) { - return value.split(''); - } - }; +function clonePath(path) { + return { newPos: path.newPos, components: path.components.slice(0) }; +} - var CharDiff = new Diff(); - var WordDiff = new Diff(true); - var WordWithSpaceDiff = new Diff(); - WordDiff.tokenize = WordWithSpaceDiff.tokenize = function(value) { - return removeEmpty(value.split(/(\s+|\b)/)); - }; +},{}],49:[function(require,module,exports){ +/*istanbul ignore start*/'use strict'; - var CssDiff = new Diff(true); - CssDiff.tokenize = function(value) { - return removeEmpty(value.split(/([{}:;,]|\s+)/)); - }; +exports.__esModule = true; +exports.characterDiff = undefined; +exports. /*istanbul ignore end*/diffChars = diffChars; - var LineDiff = new Diff(); +var /*istanbul ignore start*/_base = require('./base') /*istanbul ignore end*/; - var TrimmedLineDiff = new Diff(); - TrimmedLineDiff.ignoreTrim = true; +/*istanbul ignore start*/ +var _base2 = _interopRequireDefault(_base); - LineDiff.tokenize = TrimmedLineDiff.tokenize = function(value) { - var retLines = [], - lines = value.split(/^/m); - for (var i = 0; i < lines.length; i++) { - var line = lines[i], - lastLine = lines[i - 1], - lastLineLastChar = lastLine && lastLine[lastLine.length - 1]; +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } - // Merge lines that may contain windows new lines - if (line === '\n' && lastLineLastChar === '\r') { - retLines[retLines.length - 1] = retLines[retLines.length - 1].slice(0, -1) + '\r\n'; - } else { - if (this.ignoreTrim) { - line = line.trim(); - // add a newline unless this is the last line. - if (i < lines.length - 1) { - line += '\n'; - } - } - retLines.push(line); - } - } +/*istanbul ignore end*/var characterDiff = /*istanbul ignore start*/exports. /*istanbul ignore end*/characterDiff = new /*istanbul ignore start*/_base2['default']() /*istanbul ignore end*/; +function diffChars(oldStr, newStr, callback) { + return characterDiff.diff(oldStr, newStr, callback); +} - return retLines; - }; - var PatchDiff = new Diff(); - PatchDiff.tokenize = function(value) { - var ret = [], - linesAndNewlines = value.split(/(\n|\r\n)/); +},{"./base":48}],50:[function(require,module,exports){ +/*istanbul ignore start*/'use strict'; - // Ignore the final empty token that occurs if the string ends with a new line - if (!linesAndNewlines[linesAndNewlines.length - 1]) { - linesAndNewlines.pop(); - } +exports.__esModule = true; +exports.cssDiff = undefined; +exports. /*istanbul ignore end*/diffCss = diffCss; - // Merge the content and line separators into single tokens - for (var i = 0; i < linesAndNewlines.length; i++) { - var line = linesAndNewlines[i]; +var /*istanbul ignore start*/_base = require('./base') /*istanbul ignore end*/; - if (i % 2) { - ret[ret.length - 1] += line; - } else { - ret.push(line); - } - } - return ret; - }; +/*istanbul ignore start*/ +var _base2 = _interopRequireDefault(_base); - var SentenceDiff = new Diff(); - SentenceDiff.tokenize = function(value) { - return removeEmpty(value.split(/(\S.+?[.!?])(?=\s+|$)/)); - }; +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } - var JsonDiff = new Diff(); - // Discriminate between two lines of pretty-printed, serialized JSON where one of them has a - // dangling comma and the other doesn't. Turns out including the dangling comma yields the nicest output: - JsonDiff.useLongestToken = true; - JsonDiff.tokenize = LineDiff.tokenize; - JsonDiff.equals = function(left, right) { - return LineDiff.equals(left.replace(/,([\r\n])/g, '$1'), right.replace(/,([\r\n])/g, '$1')); - }; +/*istanbul ignore end*/var cssDiff = /*istanbul ignore start*/exports. /*istanbul ignore end*/cssDiff = new /*istanbul ignore start*/_base2['default']() /*istanbul ignore end*/; +cssDiff.tokenize = function (value) { + return value.split(/([{}:;,]|\s+)/); +}; - var JsDiff = { - Diff: Diff, +function diffCss(oldStr, newStr, callback) { + return cssDiff.diff(oldStr, newStr, callback); +} - diffChars: function(oldStr, newStr, callback) { return CharDiff.diff(oldStr, newStr, callback); }, - diffWords: function(oldStr, newStr, callback) { return WordDiff.diff(oldStr, newStr, callback); }, - diffWordsWithSpace: function(oldStr, newStr, callback) { return WordWithSpaceDiff.diff(oldStr, newStr, callback); }, - diffLines: function(oldStr, newStr, callback) { return LineDiff.diff(oldStr, newStr, callback); }, - diffTrimmedLines: function(oldStr, newStr, callback) { return TrimmedLineDiff.diff(oldStr, newStr, callback); }, - diffSentences: function(oldStr, newStr, callback) { return SentenceDiff.diff(oldStr, newStr, callback); }, +},{"./base":48}],51:[function(require,module,exports){ +/*istanbul ignore start*/'use strict'; - diffCss: function(oldStr, newStr, callback) { return CssDiff.diff(oldStr, newStr, callback); }, - diffJson: function(oldObj, newObj, callback) { - return JsonDiff.diff( - typeof oldObj === 'string' ? oldObj : JSON.stringify(canonicalize(oldObj), undefined, ' '), - typeof newObj === 'string' ? newObj : JSON.stringify(canonicalize(newObj), undefined, ' '), - callback - ); - }, +exports.__esModule = true; +exports.jsonDiff = undefined; - createTwoFilesPatch: function(oldFileName, newFileName, oldStr, newStr, oldHeader, newHeader) { - var ret = []; +var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol ? "symbol" : typeof obj; }; - if (oldFileName == newFileName) { - ret.push('Index: ' + oldFileName); - } - ret.push('==================================================================='); - ret.push('--- ' + oldFileName + (typeof oldHeader === 'undefined' ? '' : '\t' + oldHeader)); - ret.push('+++ ' + newFileName + (typeof newHeader === 'undefined' ? '' : '\t' + newHeader)); +exports. /*istanbul ignore end*/diffJson = diffJson; +/*istanbul ignore start*/exports. /*istanbul ignore end*/canonicalize = canonicalize; - var diff = PatchDiff.diff(oldStr, newStr); - diff.push({value: '', lines: []}); // Append an empty value to make cleanup easier +var /*istanbul ignore start*/_base = require('./base') /*istanbul ignore end*/; - // Formats a given set of lines for printing as context lines in a patch - function contextLines(lines) { - return map(lines, function(entry) { return ' ' + entry; }); - } +/*istanbul ignore start*/ +var _base2 = _interopRequireDefault(_base); - // Outputs the no newline at end of file warning if needed - function eofNL(curRange, i, current) { - var last = diff[diff.length - 2], - isLast = i === diff.length - 2, - isLastOfType = i === diff.length - 3 && current.added !== last.added; +/*istanbul ignore end*/ +var /*istanbul ignore start*/_line = require('./line') /*istanbul ignore end*/; - // Figure out if this is the last line for the given file and missing NL - if (!(/\n$/.test(current.value)) && (isLast || isLastOfType)) { - curRange.push('\\ No newline at end of file'); - } - } +/*istanbul ignore start*/ +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } - var oldRangeStart = 0, newRangeStart = 0, curRange = [], - oldLine = 1, newLine = 1; - for (var i = 0; i < diff.length; i++) { - var current = diff[i], - lines = current.lines || current.value.replace(/\n$/, '').split('\n'); - current.lines = lines; - - if (current.added || current.removed) { - // If we have previous context, start with that - if (!oldRangeStart) { - var prev = diff[i - 1]; - oldRangeStart = oldLine; - newRangeStart = newLine; - - if (prev) { - curRange = contextLines(prev.lines.slice(-4)); - oldRangeStart -= curRange.length; - newRangeStart -= curRange.length; - } - } +/*istanbul ignore end*/ - // Output our changes - curRange.push.apply(curRange, map(lines, function(entry) { - return (current.added ? '+' : '-') + entry; - })); - eofNL(curRange, i, current); +var objectPrototypeToString = Object.prototype.toString; - // Track the updated file position - if (current.added) { - newLine += lines.length; - } else { - oldLine += lines.length; - } - } else { - // Identical context lines. Track line changes - if (oldRangeStart) { - // Close out any changes that have been output (or join overlapping) - if (lines.length <= 8 && i < diff.length - 2) { - // Overlapping - curRange.push.apply(curRange, contextLines(lines)); - } else { - // end the range and output - var contextSize = Math.min(lines.length, 4); - ret.push( - '@@ -' + oldRangeStart + ',' + (oldLine - oldRangeStart + contextSize) - + ' +' + newRangeStart + ',' + (newLine - newRangeStart + contextSize) - + ' @@'); - ret.push.apply(ret, curRange); - ret.push.apply(ret, contextLines(lines.slice(0, contextSize))); - if (lines.length <= 4) { - eofNL(ret, i, current); - } +var jsonDiff = /*istanbul ignore start*/exports. /*istanbul ignore end*/jsonDiff = new /*istanbul ignore start*/_base2['default']() /*istanbul ignore end*/; +// Discriminate between two lines of pretty-printed, serialized JSON where one of them has a +// dangling comma and the other doesn't. Turns out including the dangling comma yields the nicest output: +jsonDiff.useLongestToken = true; - oldRangeStart = 0; - newRangeStart = 0; - curRange = []; - } - } - oldLine += lines.length; - newLine += lines.length; - } - } +jsonDiff.tokenize = /*istanbul ignore start*/_line.lineDiff. /*istanbul ignore end*/tokenize; +jsonDiff.castInput = function (value) { + /*istanbul ignore start*/var /*istanbul ignore end*/undefinedReplacement = this.options.undefinedReplacement; - return ret.join('\n') + '\n'; - }, - createPatch: function(fileName, oldStr, newStr, oldHeader, newHeader) { - return JsDiff.createTwoFilesPatch(fileName, fileName, oldStr, newStr, oldHeader, newHeader); - }, + return typeof value === 'string' ? value : JSON.stringify(canonicalize(value), function (k, v) { + if (typeof v === 'undefined') { + return undefinedReplacement; + } - applyPatch: function(oldStr, uniDiff) { - var diffstr = uniDiff.split('\n'), - hunks = [], - i = 0, - remEOFNL = false, - addEOFNL = false; + return v; + }, ' '); +}; +jsonDiff.equals = function (left, right) { + return (/*istanbul ignore start*/_base2['default']. /*istanbul ignore end*/prototype.equals(left.replace(/,([\r\n])/g, '$1'), right.replace(/,([\r\n])/g, '$1')) + ); +}; - // Skip to the first change hunk - while (i < diffstr.length && !(/^@@/.test(diffstr[i]))) { - i++; - } +function diffJson(oldObj, newObj, options) { + return jsonDiff.diff(oldObj, newObj, options); +} - // Parse the unified diff - for (; i < diffstr.length; i++) { - if (diffstr[i][0] === '@') { - var chnukHeader = diffstr[i].split(/@@ -(\d+),(\d+) \+(\d+),(\d+) @@/); - hunks.unshift({ - start: chnukHeader[3], - oldlength: +chnukHeader[2], - removed: [], - newlength: chnukHeader[4], - added: [] - }); - } else if (diffstr[i][0] === '+') { - hunks[0].added.push(diffstr[i].substr(1)); - } else if (diffstr[i][0] === '-') { - hunks[0].removed.push(diffstr[i].substr(1)); - } else if (diffstr[i][0] === ' ') { - hunks[0].added.push(diffstr[i].substr(1)); - hunks[0].removed.push(diffstr[i].substr(1)); - } else if (diffstr[i][0] === '\\') { - if (diffstr[i - 1][0] === '+') { - remEOFNL = true; - } else if (diffstr[i - 1][0] === '-') { - addEOFNL = true; - } - } - } +// This function handles the presence of circular references by bailing out when encountering an +// object that is already on the "stack" of items being processed. +function canonicalize(obj, stack, replacementStack) { + stack = stack || []; + replacementStack = replacementStack || []; - // Apply the diff to the input - var lines = oldStr.split('\n'); - for (i = hunks.length - 1; i >= 0; i--) { - var hunk = hunks[i]; - // Sanity check the input string. Bail if we don't match. - for (var j = 0; j < hunk.oldlength; j++) { - if (lines[hunk.start - 1 + j] !== hunk.removed[j]) { - return false; - } - } - Array.prototype.splice.apply(lines, [hunk.start - 1, hunk.oldlength].concat(hunk.added)); + var i = /*istanbul ignore start*/void 0 /*istanbul ignore end*/; + + for (i = 0; i < stack.length; i += 1) { + if (stack[i] === obj) { + return replacementStack[i]; + } + } + + var canonicalizedObj = /*istanbul ignore start*/void 0 /*istanbul ignore end*/; + + if ('[object Array]' === objectPrototypeToString.call(obj)) { + stack.push(obj); + canonicalizedObj = new Array(obj.length); + replacementStack.push(canonicalizedObj); + for (i = 0; i < obj.length; i += 1) { + canonicalizedObj[i] = canonicalize(obj[i], stack, replacementStack); + } + stack.pop(); + replacementStack.pop(); + return canonicalizedObj; + } + + if (obj && obj.toJSON) { + obj = obj.toJSON(); + } + + if ( /*istanbul ignore start*/(typeof /*istanbul ignore end*/obj === 'undefined' ? 'undefined' : _typeof(obj)) === 'object' && obj !== null) { + stack.push(obj); + canonicalizedObj = {}; + replacementStack.push(canonicalizedObj); + var sortedKeys = [], + key = /*istanbul ignore start*/void 0 /*istanbul ignore end*/; + for (key in obj) { + /* istanbul ignore else */ + if (obj.hasOwnProperty(key)) { + sortedKeys.push(key); + } + } + sortedKeys.sort(); + for (i = 0; i < sortedKeys.length; i += 1) { + key = sortedKeys[i]; + canonicalizedObj[key] = canonicalize(obj[key], stack, replacementStack); + } + stack.pop(); + replacementStack.pop(); + } else { + canonicalizedObj = obj; + } + return canonicalizedObj; +} + + +},{"./base":48,"./line":52}],52:[function(require,module,exports){ +/*istanbul ignore start*/'use strict'; + +exports.__esModule = true; +exports.lineDiff = undefined; +exports. /*istanbul ignore end*/diffLines = diffLines; +/*istanbul ignore start*/exports. /*istanbul ignore end*/diffTrimmedLines = diffTrimmedLines; + +var /*istanbul ignore start*/_base = require('./base') /*istanbul ignore end*/; + +/*istanbul ignore start*/ +var _base2 = _interopRequireDefault(_base); + +/*istanbul ignore end*/ +var /*istanbul ignore start*/_params = require('../util/params') /*istanbul ignore end*/; + +/*istanbul ignore start*/ +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + +/*istanbul ignore end*/var lineDiff = /*istanbul ignore start*/exports. /*istanbul ignore end*/lineDiff = new /*istanbul ignore start*/_base2['default']() /*istanbul ignore end*/; +lineDiff.tokenize = function (value) { + var retLines = [], + linesAndNewlines = value.split(/(\n|\r\n)/); + + // Ignore the final empty token that occurs if the string ends with a new line + if (!linesAndNewlines[linesAndNewlines.length - 1]) { + linesAndNewlines.pop(); + } + + // Merge the content and line separators into single tokens + for (var i = 0; i < linesAndNewlines.length; i++) { + var line = linesAndNewlines[i]; + + if (i % 2 && !this.options.newlineIsToken) { + retLines[retLines.length - 1] += line; + } else { + if (this.options.ignoreWhitespace) { + line = line.trim(); } + retLines.push(line); + } + } + + return retLines; +}; + +function diffLines(oldStr, newStr, callback) { + return lineDiff.diff(oldStr, newStr, callback); +} +function diffTrimmedLines(oldStr, newStr, callback) { + var options = /*istanbul ignore start*/(0, _params.generateOptions) /*istanbul ignore end*/(callback, { ignoreWhitespace: true }); + return lineDiff.diff(oldStr, newStr, options); +} + + +},{"../util/params":60,"./base":48}],53:[function(require,module,exports){ +/*istanbul ignore start*/'use strict'; + +exports.__esModule = true; +exports.sentenceDiff = undefined; +exports. /*istanbul ignore end*/diffSentences = diffSentences; + +var /*istanbul ignore start*/_base = require('./base') /*istanbul ignore end*/; + +/*istanbul ignore start*/ +var _base2 = _interopRequireDefault(_base); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + +/*istanbul ignore end*/var sentenceDiff = /*istanbul ignore start*/exports. /*istanbul ignore end*/sentenceDiff = new /*istanbul ignore start*/_base2['default']() /*istanbul ignore end*/; +sentenceDiff.tokenize = function (value) { + return value.split(/(\S.+?[.!?])(?=\s+|$)/); +}; + +function diffSentences(oldStr, newStr, callback) { + return sentenceDiff.diff(oldStr, newStr, callback); +} + + +},{"./base":48}],54:[function(require,module,exports){ +/*istanbul ignore start*/'use strict'; + +exports.__esModule = true; +exports.wordDiff = undefined; +exports. /*istanbul ignore end*/diffWords = diffWords; +/*istanbul ignore start*/exports. /*istanbul ignore end*/diffWordsWithSpace = diffWordsWithSpace; + +var /*istanbul ignore start*/_base = require('./base') /*istanbul ignore end*/; + +/*istanbul ignore start*/ +var _base2 = _interopRequireDefault(_base); + +/*istanbul ignore end*/ +var /*istanbul ignore start*/_params = require('../util/params') /*istanbul ignore end*/; + +/*istanbul ignore start*/ +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + +/*istanbul ignore end*/ + +// Based on https://en.wikipedia.org/wiki/Latin_script_in_Unicode +// +// Ranges and exceptions: +// Latin-1 Supplement, 0080–00FF +// - U+00D7 × Multiplication sign +// - U+00F7 ÷ Division sign +// Latin Extended-A, 0100–017F +// Latin Extended-B, 0180–024F +// IPA Extensions, 0250–02AF +// Spacing Modifier Letters, 02B0–02FF +// - U+02C7 ˇ ˇ Caron +// - U+02D8 ˘ ˘ Breve +// - U+02D9 ˙ ˙ Dot Above +// - U+02DA ˚ ˚ Ring Above +// - U+02DB ˛ ˛ Ogonek +// - U+02DC ˜ ˜ Small Tilde +// - U+02DD ˝ ˝ Double Acute Accent +// Latin Extended Additional, 1E00–1EFF +var extendedWordChars = /^[A-Za-z\xC0-\u02C6\u02C8-\u02D7\u02DE-\u02FF\u1E00-\u1EFF]+$/; + +var reWhitespace = /\S/; + +var wordDiff = /*istanbul ignore start*/exports. /*istanbul ignore end*/wordDiff = new /*istanbul ignore start*/_base2['default']() /*istanbul ignore end*/; +wordDiff.equals = function (left, right) { + return left === right || this.options.ignoreWhitespace && !reWhitespace.test(left) && !reWhitespace.test(right); +}; +wordDiff.tokenize = function (value) { + var tokens = value.split(/(\s+|\b)/); + + // Join the boundary splits that we do not consider to be boundaries. This is primarily the extended Latin character set. + for (var i = 0; i < tokens.length - 1; i++) { + // If we have an empty string in the next field and we have only word chars before and after, merge + if (!tokens[i + 1] && tokens[i + 2] && extendedWordChars.test(tokens[i]) && extendedWordChars.test(tokens[i + 2])) { + tokens[i] += tokens[i + 2]; + tokens.splice(i + 1, 2); + i--; + } + } + + return tokens; +}; + +function diffWords(oldStr, newStr, callback) { + var options = /*istanbul ignore start*/(0, _params.generateOptions) /*istanbul ignore end*/(callback, { ignoreWhitespace: true }); + return wordDiff.diff(oldStr, newStr, options); +} +function diffWordsWithSpace(oldStr, newStr, callback) { + return wordDiff.diff(oldStr, newStr, callback); +} + + +},{"../util/params":60,"./base":48}],55:[function(require,module,exports){ +/*istanbul ignore start*/'use strict'; + +exports.__esModule = true; +exports.canonicalize = exports.convertChangesToXML = exports.convertChangesToDMP = exports.parsePatch = exports.applyPatches = exports.applyPatch = exports.createPatch = exports.createTwoFilesPatch = exports.structuredPatch = exports.diffArrays = exports.diffJson = exports.diffCss = exports.diffSentences = exports.diffTrimmedLines = exports.diffLines = exports.diffWordsWithSpace = exports.diffWords = exports.diffChars = exports.Diff = undefined; +/*istanbul ignore end*/ +var /*istanbul ignore start*/_base = require('./diff/base') /*istanbul ignore end*/; + +/*istanbul ignore start*/ +var _base2 = _interopRequireDefault(_base); + +/*istanbul ignore end*/ +var /*istanbul ignore start*/_character = require('./diff/character') /*istanbul ignore end*/; + +var /*istanbul ignore start*/_word = require('./diff/word') /*istanbul ignore end*/; + +var /*istanbul ignore start*/_line = require('./diff/line') /*istanbul ignore end*/; + +var /*istanbul ignore start*/_sentence = require('./diff/sentence') /*istanbul ignore end*/; + +var /*istanbul ignore start*/_css = require('./diff/css') /*istanbul ignore end*/; + +var /*istanbul ignore start*/_json = require('./diff/json') /*istanbul ignore end*/; + +var /*istanbul ignore start*/_array = require('./diff/array') /*istanbul ignore end*/; + +var /*istanbul ignore start*/_apply = require('./patch/apply') /*istanbul ignore end*/; + +var /*istanbul ignore start*/_parse = require('./patch/parse') /*istanbul ignore end*/; + +var /*istanbul ignore start*/_create = require('./patch/create') /*istanbul ignore end*/; + +var /*istanbul ignore start*/_dmp = require('./convert/dmp') /*istanbul ignore end*/; + +var /*istanbul ignore start*/_xml = require('./convert/xml') /*istanbul ignore end*/; + +/*istanbul ignore start*/ +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + +exports. /*istanbul ignore end*/Diff = _base2['default']; +/*istanbul ignore start*/exports. /*istanbul ignore end*/diffChars = _character.diffChars; +/*istanbul ignore start*/exports. /*istanbul ignore end*/diffWords = _word.diffWords; +/*istanbul ignore start*/exports. /*istanbul ignore end*/diffWordsWithSpace = _word.diffWordsWithSpace; +/*istanbul ignore start*/exports. /*istanbul ignore end*/diffLines = _line.diffLines; +/*istanbul ignore start*/exports. /*istanbul ignore end*/diffTrimmedLines = _line.diffTrimmedLines; +/*istanbul ignore start*/exports. /*istanbul ignore end*/diffSentences = _sentence.diffSentences; +/*istanbul ignore start*/exports. /*istanbul ignore end*/diffCss = _css.diffCss; +/*istanbul ignore start*/exports. /*istanbul ignore end*/diffJson = _json.diffJson; +/*istanbul ignore start*/exports. /*istanbul ignore end*/diffArrays = _array.diffArrays; +/*istanbul ignore start*/exports. /*istanbul ignore end*/structuredPatch = _create.structuredPatch; +/*istanbul ignore start*/exports. /*istanbul ignore end*/createTwoFilesPatch = _create.createTwoFilesPatch; +/*istanbul ignore start*/exports. /*istanbul ignore end*/createPatch = _create.createPatch; +/*istanbul ignore start*/exports. /*istanbul ignore end*/applyPatch = _apply.applyPatch; +/*istanbul ignore start*/exports. /*istanbul ignore end*/applyPatches = _apply.applyPatches; +/*istanbul ignore start*/exports. /*istanbul ignore end*/parsePatch = _parse.parsePatch; +/*istanbul ignore start*/exports. /*istanbul ignore end*/convertChangesToDMP = _dmp.convertChangesToDMP; +/*istanbul ignore start*/exports. /*istanbul ignore end*/convertChangesToXML = _xml.convertChangesToXML; +/*istanbul ignore start*/exports. /*istanbul ignore end*/canonicalize = _json.canonicalize; /* See LICENSE file for terms of use */ + +/* + * Text diff implementation. + * + * This library supports the following APIS: + * JsDiff.diffChars: Character by character diff + * JsDiff.diffWords: Word (as defined by \b regex) diff which ignores whitespace + * JsDiff.diffLines: Line based diff + * + * JsDiff.diffCss: Diff targeted at CSS content + * + * These methods are based on the implementation proposed in + * "An O(ND) Difference Algorithm and its Variations" (Myers, 1986). + * http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.4.6927 + */ + + +},{"./convert/dmp":45,"./convert/xml":46,"./diff/array":47,"./diff/base":48,"./diff/character":49,"./diff/css":50,"./diff/json":51,"./diff/line":52,"./diff/sentence":53,"./diff/word":54,"./patch/apply":56,"./patch/create":57,"./patch/parse":58}],56:[function(require,module,exports){ +/*istanbul ignore start*/'use strict'; - // Handle EOFNL insertion/removal - if (remEOFNL) { - while (!lines[lines.length - 1]) { - lines.pop(); +exports.__esModule = true; +exports. /*istanbul ignore end*/applyPatch = applyPatch; +/*istanbul ignore start*/exports. /*istanbul ignore end*/applyPatches = applyPatches; + +var /*istanbul ignore start*/_parse = require('./parse') /*istanbul ignore end*/; + +var /*istanbul ignore start*/_distanceIterator = require('../util/distance-iterator') /*istanbul ignore end*/; + +/*istanbul ignore start*/ +var _distanceIterator2 = _interopRequireDefault(_distanceIterator); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + +/*istanbul ignore end*/function applyPatch(source, uniDiff) { + /*istanbul ignore start*/var /*istanbul ignore end*/options = arguments.length <= 2 || arguments[2] === undefined ? {} : arguments[2]; + + if (typeof uniDiff === 'string') { + uniDiff = /*istanbul ignore start*/(0, _parse.parsePatch) /*istanbul ignore end*/(uniDiff); + } + + if (Array.isArray(uniDiff)) { + if (uniDiff.length > 1) { + throw new Error('applyPatch only works with a single input.'); + } + + uniDiff = uniDiff[0]; + } + + // Apply the diff to the input + var lines = source.split(/\r\n|[\n\v\f\r\x85]/), + delimiters = source.match(/\r\n|[\n\v\f\r\x85]/g) || [], + hunks = uniDiff.hunks, + compareLine = options.compareLine || function (lineNumber, line, operation, patchContent) /*istanbul ignore start*/{ + return (/*istanbul ignore end*/line === patchContent + ); + }, + errorCount = 0, + fuzzFactor = options.fuzzFactor || 0, + minLine = 0, + offset = 0, + removeEOFNL = /*istanbul ignore start*/void 0 /*istanbul ignore end*/, + addEOFNL = /*istanbul ignore start*/void 0 /*istanbul ignore end*/; + + /** + * Checks if the hunk exactly fits on the provided location + */ + function hunkFits(hunk, toPos) { + for (var j = 0; j < hunk.lines.length; j++) { + var line = hunk.lines[j], + operation = line[0], + content = line.substr(1); + + if (operation === ' ' || operation === '-') { + // Context sanity check + if (!compareLine(toPos + 1, lines[toPos], operation, content)) { + errorCount++; + + if (errorCount > fuzzFactor) { + return false; + } } - } else if (addEOFNL) { - lines.push(''); + toPos++; } - return lines.join('\n'); - }, + } - convertChangesToXML: function(changes) { - var ret = []; - for (var i = 0; i < changes.length; i++) { - var change = changes[i]; - if (change.added) { - ret.push(''); - } else if (change.removed) { - ret.push(''); + return true; + } + + // Search best fit offsets for each hunk based on the previous ones + for (var i = 0; i < hunks.length; i++) { + var hunk = hunks[i], + maxLine = lines.length - hunk.oldLines, + localOffset = 0, + toPos = offset + hunk.oldStart - 1; + + var iterator = /*istanbul ignore start*/(0, _distanceIterator2['default']) /*istanbul ignore end*/(toPos, minLine, maxLine); + + for (; localOffset !== undefined; localOffset = iterator()) { + if (hunkFits(hunk, toPos + localOffset)) { + hunk.offset = offset += localOffset; + break; + } + } + + if (localOffset === undefined) { + return false; + } + + // Set lower text limit to end of the current hunk, so next ones don't try + // to fit over already patched text + minLine = hunk.offset + hunk.oldStart + hunk.oldLines; + } + + // Apply patch hunks + for (var _i = 0; _i < hunks.length; _i++) { + var _hunk = hunks[_i], + _toPos = _hunk.offset + _hunk.newStart - 1; + if (_hunk.newLines == 0) { + _toPos++; + } + + for (var j = 0; j < _hunk.lines.length; j++) { + var line = _hunk.lines[j], + operation = line[0], + content = line.substr(1), + delimiter = _hunk.linedelimiters[j]; + + if (operation === ' ') { + _toPos++; + } else if (operation === '-') { + lines.splice(_toPos, 1); + delimiters.splice(_toPos, 1); + /* istanbul ignore else */ + } else if (operation === '+') { + lines.splice(_toPos, 0, content); + delimiters.splice(_toPos, 0, delimiter); + _toPos++; + } else if (operation === '\\') { + var previousOperation = _hunk.lines[j - 1] ? _hunk.lines[j - 1][0] : null; + if (previousOperation === '+') { + removeEOFNL = true; + } else if (previousOperation === '-') { + addEOFNL = true; + } + } + } + } + + // Handle EOFNL insertion/removal + if (removeEOFNL) { + while (!lines[lines.length - 1]) { + lines.pop(); + delimiters.pop(); + } + } else if (addEOFNL) { + lines.push(''); + delimiters.push('\n'); + } + for (var _k = 0; _k < lines.length - 1; _k++) { + lines[_k] = lines[_k] + delimiters[_k]; + } + return lines.join(''); +} + +// Wrapper that supports multiple file patches via callbacks. +function applyPatches(uniDiff, options) { + if (typeof uniDiff === 'string') { + uniDiff = /*istanbul ignore start*/(0, _parse.parsePatch) /*istanbul ignore end*/(uniDiff); + } + + var currentIndex = 0; + function processIndex() { + var index = uniDiff[currentIndex++]; + if (!index) { + return options.complete(); + } + + options.loadFile(index, function (err, data) { + if (err) { + return options.complete(err); + } + + var updatedContent = applyPatch(data, index, options); + options.patched(index, updatedContent, function (err) { + if (err) { + return options.complete(err); } - ret.push(escapeHTML(change.value)); + processIndex(); + }); + }); + } + processIndex(); +} + + +},{"../util/distance-iterator":59,"./parse":58}],57:[function(require,module,exports){ +/*istanbul ignore start*/'use strict'; + +exports.__esModule = true; +exports. /*istanbul ignore end*/structuredPatch = structuredPatch; +/*istanbul ignore start*/exports. /*istanbul ignore end*/createTwoFilesPatch = createTwoFilesPatch; +/*istanbul ignore start*/exports. /*istanbul ignore end*/createPatch = createPatch; + +var /*istanbul ignore start*/_line = require('../diff/line') /*istanbul ignore end*/; - if (change.added) { - ret.push(''); - } else if (change.removed) { - ret.push(''); +/*istanbul ignore start*/ +function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } } + +/*istanbul ignore end*/function structuredPatch(oldFileName, newFileName, oldStr, newStr, oldHeader, newHeader, options) { + if (!options) { + options = {}; + } + if (typeof options.context === 'undefined') { + options.context = 4; + } + + var diff = /*istanbul ignore start*/(0, _line.diffLines) /*istanbul ignore end*/(oldStr, newStr, options); + diff.push({ value: '', lines: [] }); // Append an empty value to make cleanup easier + + function contextLines(lines) { + return lines.map(function (entry) { + return ' ' + entry; + }); + } + + var hunks = []; + var oldRangeStart = 0, + newRangeStart = 0, + curRange = [], + oldLine = 1, + newLine = 1; + /*istanbul ignore start*/ + var _loop = function _loop( /*istanbul ignore end*/i) { + var current = diff[i], + lines = current.lines || current.value.replace(/\n$/, '').split('\n'); + current.lines = lines; + + if (current.added || current.removed) { + /*istanbul ignore start*/ + var _curRange; + + /*istanbul ignore end*/ + // If we have previous context, start with that + if (!oldRangeStart) { + var prev = diff[i - 1]; + oldRangeStart = oldLine; + newRangeStart = newLine; + + if (prev) { + curRange = options.context > 0 ? contextLines(prev.lines.slice(-options.context)) : []; + oldRangeStart -= curRange.length; + newRangeStart -= curRange.length; } } - return ret.join(''); - }, - // See: http://code.google.com/p/google-diff-match-patch/wiki/API - convertChangesToDMP: function(changes) { - var ret = [], - change, - operation; - for (var i = 0; i < changes.length; i++) { - change = changes[i]; - if (change.added) { - operation = 1; - } else if (change.removed) { - operation = -1; + // Output our changes + /*istanbul ignore start*/(_curRange = /*istanbul ignore end*/curRange).push. /*istanbul ignore start*/apply /*istanbul ignore end*/( /*istanbul ignore start*/_curRange /*istanbul ignore end*/, /*istanbul ignore start*/_toConsumableArray( /*istanbul ignore end*/lines.map(function (entry) { + return (current.added ? '+' : '-') + entry; + }))); + + // Track the updated file position + if (current.added) { + newLine += lines.length; + } else { + oldLine += lines.length; + } + } else { + // Identical context lines. Track line changes + if (oldRangeStart) { + // Close out any changes that have been output (or join overlapping) + if (lines.length <= options.context * 2 && i < diff.length - 2) { + /*istanbul ignore start*/ + var _curRange2; + + /*istanbul ignore end*/ + // Overlapping + /*istanbul ignore start*/(_curRange2 = /*istanbul ignore end*/curRange).push. /*istanbul ignore start*/apply /*istanbul ignore end*/( /*istanbul ignore start*/_curRange2 /*istanbul ignore end*/, /*istanbul ignore start*/_toConsumableArray( /*istanbul ignore end*/contextLines(lines))); } else { - operation = 0; + /*istanbul ignore start*/ + var _curRange3; + + /*istanbul ignore end*/ + // end the range and output + var contextSize = Math.min(lines.length, options.context); + /*istanbul ignore start*/(_curRange3 = /*istanbul ignore end*/curRange).push. /*istanbul ignore start*/apply /*istanbul ignore end*/( /*istanbul ignore start*/_curRange3 /*istanbul ignore end*/, /*istanbul ignore start*/_toConsumableArray( /*istanbul ignore end*/contextLines(lines.slice(0, contextSize)))); + + var hunk = { + oldStart: oldRangeStart, + oldLines: oldLine - oldRangeStart + contextSize, + newStart: newRangeStart, + newLines: newLine - newRangeStart + contextSize, + lines: curRange + }; + if (i >= diff.length - 2 && lines.length <= options.context) { + // EOF is inside this hunk + var oldEOFNewline = /\n$/.test(oldStr); + var newEOFNewline = /\n$/.test(newStr); + if (lines.length == 0 && !oldEOFNewline) { + // special case: old has no eol and no trailing context; no-nl can end up before adds + curRange.splice(hunk.oldLines, 0, '\\ No newline at end of file'); + } else if (!oldEOFNewline || !newEOFNewline) { + curRange.push('\\ No newline at end of file'); + } + } + hunks.push(hunk); + + oldRangeStart = 0; + newRangeStart = 0; + curRange = []; } + } + oldLine += lines.length; + newLine += lines.length; + } + }; - ret.push([operation, change.value]); + for (var i = 0; i < diff.length; i++) { + /*istanbul ignore start*/ + _loop( /*istanbul ignore end*/i); + } + + return { + oldFileName: oldFileName, newFileName: newFileName, + oldHeader: oldHeader, newHeader: newHeader, + hunks: hunks + }; +} + +function createTwoFilesPatch(oldFileName, newFileName, oldStr, newStr, oldHeader, newHeader, options) { + var diff = structuredPatch(oldFileName, newFileName, oldStr, newStr, oldHeader, newHeader, options); + + var ret = []; + if (oldFileName == newFileName) { + ret.push('Index: ' + oldFileName); + } + ret.push('==================================================================='); + ret.push('--- ' + diff.oldFileName + (typeof diff.oldHeader === 'undefined' ? '' : '\t' + diff.oldHeader)); + ret.push('+++ ' + diff.newFileName + (typeof diff.newHeader === 'undefined' ? '' : '\t' + diff.newHeader)); + + for (var i = 0; i < diff.hunks.length; i++) { + var hunk = diff.hunks[i]; + ret.push('@@ -' + hunk.oldStart + ',' + hunk.oldLines + ' +' + hunk.newStart + ',' + hunk.newLines + ' @@'); + ret.push.apply(ret, hunk.lines); + } + + return ret.join('\n') + '\n'; +} + +function createPatch(fileName, oldStr, newStr, oldHeader, newHeader, options) { + return createTwoFilesPatch(fileName, fileName, oldStr, newStr, oldHeader, newHeader, options); +} + + +},{"../diff/line":52}],58:[function(require,module,exports){ +/*istanbul ignore start*/'use strict'; + +exports.__esModule = true; +exports. /*istanbul ignore end*/parsePatch = parsePatch; +function parsePatch(uniDiff) { + /*istanbul ignore start*/var /*istanbul ignore end*/options = arguments.length <= 1 || arguments[1] === undefined ? {} : arguments[1]; + + var diffstr = uniDiff.split(/\r\n|[\n\v\f\r\x85]/), + delimiters = uniDiff.match(/\r\n|[\n\v\f\r\x85]/g) || [], + list = [], + i = 0; + + function parseIndex() { + var index = {}; + list.push(index); + + // Parse diff metadata + while (i < diffstr.length) { + var line = diffstr[i]; + + // File header found, end parsing diff metadata + if (/^(\-\-\-|\+\+\+|@@)\s/.test(line)) { + break; + } + + // Diff index + var header = /^(?:Index:|diff(?: -r \w+)+)\s+(.+?)\s*$/.exec(line); + if (header) { + index.index = header[1]; } - return ret; - }, - canonicalize: canonicalize + i++; + } + + // Parse file headers if they are defined. Unified diff requires them, but + // there's no technical issues to have an isolated hunk without file header + parseFileHeader(index); + parseFileHeader(index); + + // Parse hunks + index.hunks = []; + + while (i < diffstr.length) { + var _line = diffstr[i]; + + if (/^(Index:|diff|\-\-\-|\+\+\+)\s/.test(_line)) { + break; + } else if (/^@@/.test(_line)) { + index.hunks.push(parseHunk()); + } else if (_line && options.strict) { + // Ignore unexpected content unless in strict mode + throw new Error('Unknown line ' + (i + 1) + ' ' + JSON.stringify(_line)); + } else { + i++; + } + } + } + + // Parses the --- and +++ headers, if none are found, no lines + // are consumed. + function parseFileHeader(index) { + var headerPattern = /^(---|\+\+\+)\s+([\S ]*)(?:\t(.*?)\s*)?$/; + var fileHeader = headerPattern.exec(diffstr[i]); + if (fileHeader) { + var keyPrefix = fileHeader[1] === '---' ? 'old' : 'new'; + index[keyPrefix + 'FileName'] = fileHeader[2]; + index[keyPrefix + 'Header'] = fileHeader[3]; + + i++; + } + } + + // Parses a hunk + // This assumes that we are at the start of a hunk. + function parseHunk() { + var chunkHeaderIndex = i, + chunkHeaderLine = diffstr[i++], + chunkHeader = chunkHeaderLine.split(/@@ -(\d+)(?:,(\d+))? \+(\d+)(?:,(\d+))? @@/); + + var hunk = { + oldStart: +chunkHeader[1], + oldLines: +chunkHeader[2] || 1, + newStart: +chunkHeader[3], + newLines: +chunkHeader[4] || 1, + lines: [], + linedelimiters: [] + }; + + var addCount = 0, + removeCount = 0; + for (; i < diffstr.length; i++) { + // Lines starting with '---' could be mistaken for the "remove line" operation + // But they could be the header for the next file. Therefore prune such cases out. + if (diffstr[i].indexOf('--- ') === 0 && i + 2 < diffstr.length && diffstr[i + 1].indexOf('+++ ') === 0 && diffstr[i + 2].indexOf('@@') === 0) { + break; + } + var operation = diffstr[i][0]; + + if (operation === '+' || operation === '-' || operation === ' ' || operation === '\\') { + hunk.lines.push(diffstr[i]); + hunk.linedelimiters.push(delimiters[i] || '\n'); + + if (operation === '+') { + addCount++; + } else if (operation === '-') { + removeCount++; + } else if (operation === ' ') { + addCount++; + removeCount++; + } + } else { + break; + } + } + + // Handle the empty block count case + if (!addCount && hunk.newLines === 1) { + hunk.newLines = 0; + } + if (!removeCount && hunk.oldLines === 1) { + hunk.oldLines = 0; + } + + // Perform optional sanity checking + if (options.strict) { + if (addCount !== hunk.newLines) { + throw new Error('Added line count did not match for hunk at line ' + (chunkHeaderIndex + 1)); + } + if (removeCount !== hunk.oldLines) { + throw new Error('Removed line count did not match for hunk at line ' + (chunkHeaderIndex + 1)); + } + } + + return hunk; + } + + while (i < diffstr.length) { + parseIndex(); + } + + return list; +} + + +},{}],59:[function(require,module,exports){ +/*istanbul ignore start*/"use strict"; + +exports.__esModule = true; + +exports["default"] = /*istanbul ignore end*/function (start, minLine, maxLine) { + var wantForward = true, + backwardExhausted = false, + forwardExhausted = false, + localOffset = 1; + + return function iterator() { + if (wantForward && !forwardExhausted) { + if (backwardExhausted) { + localOffset++; + } else { + wantForward = false; + } + + // Check if trying to fit beyond text length, and if not, check it fits + // after offset location (or desired location on first iteration) + if (start + localOffset <= maxLine) { + return localOffset; + } + + forwardExhausted = true; + } + + if (!backwardExhausted) { + if (!forwardExhausted) { + wantForward = true; + } + + // Check if trying to fit before text beginning, and if not, check it fits + // before offset location + if (minLine <= start - localOffset) { + return -localOffset++; + } + + backwardExhausted = true; + return iterator(); + } + + // We tried to fit hunk before text beginning and beyond text lenght, then + // hunk can't fit on the text. Return undefined }; +}; + - /*istanbul ignore next */ - /*global module */ - if (typeof module !== 'undefined' && module.exports) { - module.exports = JsDiff; - } else if (false) { - /*global define */ - define([], function() { return JsDiff; }); - } else if (typeof global.JsDiff === 'undefined') { - global.JsDiff = JsDiff; +},{}],60:[function(require,module,exports){ +/*istanbul ignore start*/'use strict'; + +exports.__esModule = true; +exports. /*istanbul ignore end*/generateOptions = generateOptions; +function generateOptions(options, defaults) { + if (typeof options === 'function') { + defaults.callback = options; + } else if (options) { + for (var name in options) { + /* istanbul ignore else */ + if (options.hasOwnProperty(name)) { + defaults[name] = options[name]; + } + } } -}(this)); + return defaults; +} -},{}],47:[function(require,module,exports){ + +},{}],61:[function(require,module,exports){ 'use strict'; var matchOperatorsRe = /[|\\{}()[\]^$+*?.]/g; @@ -9558,7 +10118,7 @@ module.exports = function (str) { return str.replace(matchOperatorsRe, '\\$&'); }; -},{}],48:[function(require,module,exports){ +},{}],62:[function(require,module,exports){ // Copyright Joyent, Inc. and other Node contributors. // // Permission is hereby granted, free of charge, to any person obtaining a @@ -9862,7 +10422,7 @@ function isUndefined(arg) { return arg === void 0; } -},{}],49:[function(require,module,exports){ +},{}],63:[function(require,module,exports){ (function (process){ // Growl - Copyright TJ Holowaychuk (MIT Licensed) @@ -10156,7 +10716,7 @@ function growl(msg, options, fn) { }; }).call(this,require('_process')) -},{"_process":67,"child_process":42,"fs":42,"os":65,"path":42}],50:[function(require,module,exports){ +},{"_process":81,"child_process":42,"fs":42,"os":79,"path":42}],64:[function(require,module,exports){ exports.read = function (buffer, offset, isLE, mLen, nBytes) { var e, m var eLen = nBytes * 8 - mLen - 1 @@ -10242,7 +10802,7 @@ exports.write = function (buffer, value, offset, isLE, mLen, nBytes) { buffer[offset + i - d] |= s * 128 } -},{}],51:[function(require,module,exports){ +},{}],65:[function(require,module,exports){ if (typeof Object.create === 'function') { // implementation from standard node.js 'util' module module.exports = function inherits(ctor, superCtor) { @@ -10267,7 +10827,7 @@ if (typeof Object.create === 'function') { } } -},{}],52:[function(require,module,exports){ +},{}],66:[function(require,module,exports){ /*! * Determine if an object is a Buffer * @@ -10290,14 +10850,14 @@ function isSlowBuffer (obj) { return typeof obj.readFloatLE === 'function' && typeof obj.slice === 'function' && isBuffer(obj.slice(0, 0)) } -},{}],53:[function(require,module,exports){ +},{}],67:[function(require,module,exports){ var toString = {}.toString; module.exports = Array.isArray || function (arr) { return toString.call(arr) == '[object Array]'; }; -},{}],54:[function(require,module,exports){ +},{}],68:[function(require,module,exports){ (function (global){ /*! JSON v3.3.2 | http://bestiejs.github.io/json3 | Copyright 2012-2014, Kit Cambridge | http://kit.mit-license.org */ ;(function () { @@ -11203,7 +11763,64 @@ module.exports = Array.isArray || function (arr) { }).call(this); }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{}],55:[function(require,module,exports){ +},{}],69:[function(require,module,exports){ +/** + * lodash 3.1.1 (Custom Build) + * Build: `lodash modern modularize exports="npm" -o ./` + * Copyright 2012-2015 The Dojo Foundation + * Based on Underscore.js 1.8.3 + * Copyright 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors + * Available under MIT license + */ +var baseAssign = require('lodash._baseassign'), + baseCreate = require('lodash._basecreate'), + isIterateeCall = require('lodash._isiterateecall'); + +/** + * Creates an object that inherits from the given `prototype` object. If a + * `properties` object is provided its own enumerable properties are assigned + * to the created object. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} prototype The object to inherit from. + * @param {Object} [properties] The properties to assign to the object. + * @param- {Object} [guard] Enables use as a callback for functions like `_.map`. + * @returns {Object} Returns the new object. + * @example + * + * function Shape() { + * this.x = 0; + * this.y = 0; + * } + * + * function Circle() { + * Shape.call(this); + * } + * + * Circle.prototype = _.create(Shape.prototype, { + * 'constructor': Circle + * }); + * + * var circle = new Circle; + * circle instanceof Circle; + * // => true + * + * circle instanceof Shape; + * // => true + */ +function create(prototype, properties, guard) { + var result = baseCreate(prototype); + if (guard && isIterateeCall(prototype, properties, guard)) { + properties = undefined; + } + return properties ? baseAssign(result, properties) : result; +} + +module.exports = create; + +},{"lodash._baseassign":70,"lodash._basecreate":76,"lodash._isiterateecall":77}],70:[function(require,module,exports){ /** * lodash 3.2.0 (Custom Build) * Build: `lodash modern modularize exports="npm" -o ./` @@ -11232,7 +11849,7 @@ function baseAssign(object, source) { module.exports = baseAssign; -},{"lodash._basecopy":56,"lodash.keys":63}],56:[function(require,module,exports){ +},{"lodash._basecopy":71,"lodash.keys":72}],71:[function(require,module,exports){ /** * lodash 3.0.1 (Custom Build) * Build: `lodash modern modularize exports="npm" -o ./` @@ -11266,147 +11883,126 @@ function baseCopy(source, props, object) { module.exports = baseCopy; -},{}],57:[function(require,module,exports){ -/** - * lodash 3.0.3 (Custom Build) - * Build: `lodash modern modularize exports="npm" -o ./` - * Copyright 2012-2015 The Dojo Foundation - * Based on Underscore.js 1.8.3 - * Copyright 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - * Available under MIT license - */ - -/** - * The base implementation of `_.create` without support for assigning - * properties to the created object. - * - * @private - * @param {Object} prototype The object to inherit from. - * @returns {Object} Returns the new object. - */ -var baseCreate = (function() { - function object() {} - return function(prototype) { - if (isObject(prototype)) { - object.prototype = prototype; - var result = new object; - object.prototype = undefined; - } - return result || {}; - }; -}()); - -/** - * Checks if `value` is the [language type](https://es5.github.io/#x8) of `Object`. - * (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`) - * - * @static - * @memberOf _ - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is an object, else `false`. - * @example - * - * _.isObject({}); - * // => true - * - * _.isObject([1, 2, 3]); - * // => true - * - * _.isObject(1); - * // => false - */ -function isObject(value) { - // Avoid a V8 JIT bug in Chrome 19-20. - // See https://code.google.com/p/v8/issues/detail?id=2291 for more details. - var type = typeof value; - return !!value && (type == 'object' || type == 'function'); -} - -module.exports = baseCreate; - -},{}],58:[function(require,module,exports){ +},{}],72:[function(require,module,exports){ /** - * lodash 3.9.1 (Custom Build) + * lodash 3.1.2 (Custom Build) * Build: `lodash modern modularize exports="npm" -o ./` * Copyright 2012-2015 The Dojo Foundation * Based on Underscore.js 1.8.3 * Copyright 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors * Available under MIT license */ +var getNative = require('lodash._getnative'), + isArguments = require('lodash.isarguments'), + isArray = require('lodash.isarray'); -/** `Object#toString` result references. */ -var funcTag = '[object Function]'; - -/** Used to detect host constructors (Safari > 5). */ -var reIsHostCtor = /^\[object .+?Constructor\]$/; - -/** - * Checks if `value` is object-like. - * - * @private - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is object-like, else `false`. - */ -function isObjectLike(value) { - return !!value && typeof value == 'object'; -} - -/** Used for native method references. */ -var objectProto = Object.prototype; +/** Used to detect unsigned integer values. */ +var reIsUint = /^\d+$/; -/** Used to resolve the decompiled source of functions. */ -var fnToString = Function.prototype.toString; +/** Used for native method references. */ +var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; +/* Native method references for those with the same name as other `lodash` methods. */ +var nativeKeys = getNative(Object, 'keys'); + /** - * Used to resolve the [`toStringTag`](http://ecma-international.org/ecma-262/6.0/#sec-object.prototype.tostring) - * of values. + * Used as the [maximum length](http://ecma-international.org/ecma-262/6.0/#sec-number.max_safe_integer) + * of an array-like value. */ -var objToString = objectProto.toString; +var MAX_SAFE_INTEGER = 9007199254740991; -/** Used to detect if a method is native. */ -var reIsNative = RegExp('^' + - fnToString.call(hasOwnProperty).replace(/[\\^$.*+?()[\]{}|]/g, '\\$&') - .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$' -); +/** + * The base implementation of `_.property` without support for deep paths. + * + * @private + * @param {string} key The key of the property to get. + * @returns {Function} Returns the new function. + */ +function baseProperty(key) { + return function(object) { + return object == null ? undefined : object[key]; + }; +} /** - * Gets the native function at `key` of `object`. + * Gets the "length" property value of `object`. + * + * **Note:** This function is used to avoid a [JIT bug](https://bugs.webkit.org/show_bug.cgi?id=142792) + * that affects Safari on at least iOS 8.1-8.3 ARM64. * * @private * @param {Object} object The object to query. - * @param {string} key The key of the method to get. - * @returns {*} Returns the function if it's native, else `undefined`. + * @returns {*} Returns the "length" value. */ -function getNative(object, key) { - var value = object == null ? undefined : object[key]; - return isNative(value) ? value : undefined; +var getLength = baseProperty('length'); + +/** + * Checks if `value` is array-like. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is array-like, else `false`. + */ +function isArrayLike(value) { + return value != null && isLength(getLength(value)); } /** - * Checks if `value` is classified as a `Function` object. + * Checks if `value` is a valid array-like index. * - * @static - * @memberOf _ - * @category Lang + * @private * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`. - * @example + * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index. + * @returns {boolean} Returns `true` if `value` is a valid index, else `false`. + */ +function isIndex(value, length) { + value = (typeof value == 'number' || reIsUint.test(value)) ? +value : -1; + length = length == null ? MAX_SAFE_INTEGER : length; + return value > -1 && value % 1 == 0 && value < length; +} + +/** + * Checks if `value` is a valid array-like length. * - * _.isFunction(_); - * // => true + * **Note:** This function is based on [`ToLength`](http://ecma-international.org/ecma-262/6.0/#sec-tolength). * - * _.isFunction(/abc/); - * // => false + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a valid length, else `false`. */ -function isFunction(value) { - // The use of `Object#toString` avoids issues with the `typeof` operator - // in older versions of Chrome and Safari which return 'function' for regexes - // and Safari 8 equivalents which return 'object' for typed array constructors. - return isObject(value) && objToString.call(value) == funcTag; +function isLength(value) { + return typeof value == 'number' && value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER; +} + +/** + * A fallback implementation of `Object.keys` which creates an array of the + * own enumerable property names of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + */ +function shimKeys(object) { + var props = keysIn(object), + propsLength = props.length, + length = propsLength && object.length; + + var allowIndexes = !!length && isLength(length) && + (isArray(object) || isArguments(object)); + + var index = -1, + result = []; + + while (++index < propsLength) { + var key = props[index]; + if ((allowIndexes && isIndex(key, length)) || hasOwnProperty.call(object, key)) { + result.push(key); + } + } + return result; } /** @@ -11437,36 +12033,97 @@ function isObject(value) { } /** - * Checks if `value` is a native function. + * Creates an array of the own enumerable property names of `object`. + * + * **Note:** Non-object values are coerced to objects. See the + * [ES spec](http://ecma-international.org/ecma-262/6.0/#sec-object.keys) + * for more details. * * @static * @memberOf _ - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a native function, else `false`. + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. * @example * - * _.isNative(Array.prototype.push); - * // => true + * function Foo() { + * this.a = 1; + * this.b = 2; + * } * - * _.isNative(_); - * // => false + * Foo.prototype.c = 3; + * + * _.keys(new Foo); + * // => ['a', 'b'] (iteration order is not guaranteed) + * + * _.keys('hi'); + * // => ['0', '1'] */ -function isNative(value) { - if (value == null) { - return false; +var keys = !nativeKeys ? shimKeys : function(object) { + var Ctor = object == null ? undefined : object.constructor; + if ((typeof Ctor == 'function' && Ctor.prototype === object) || + (typeof object != 'function' && isArrayLike(object))) { + return shimKeys(object); } - if (isFunction(value)) { - return reIsNative.test(fnToString.call(value)); + return isObject(object) ? nativeKeys(object) : []; +}; + +/** + * Creates an array of the own and inherited enumerable property names of `object`. + * + * **Note:** Non-object values are coerced to objects. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.keysIn(new Foo); + * // => ['a', 'b', 'c'] (iteration order is not guaranteed) + */ +function keysIn(object) { + if (object == null) { + return []; } - return isObjectLike(value) && reIsHostCtor.test(value); + if (!isObject(object)) { + object = Object(object); + } + var length = object.length; + length = (length && isLength(length) && + (isArray(object) || isArguments(object)) && length) || 0; + + var Ctor = object.constructor, + index = -1, + isProto = typeof Ctor == 'function' && Ctor.prototype === object, + result = Array(length), + skipIndexes = length > 0; + + while (++index < length) { + result[index] = (index + ''); + } + for (var key in object) { + if (!(skipIndexes && isIndex(key, length)) && + !(key == 'constructor' && (isProto || !hasOwnProperty.call(object, key)))) { + result.push(key); + } + } + return result; } -module.exports = getNative; +module.exports = keys; -},{}],59:[function(require,module,exports){ +},{"lodash._getnative":73,"lodash.isarguments":74,"lodash.isarray":75}],73:[function(require,module,exports){ /** - * lodash 3.0.9 (Custom Build) + * lodash 3.9.1 (Custom Build) * Build: `lodash modern modularize exports="npm" -o ./` * Copyright 2012-2015 The Dojo Foundation * Based on Underscore.js 1.8.3 @@ -11474,99 +12131,78 @@ module.exports = getNative; * Available under MIT license */ -/** Used to detect unsigned integer values. */ -var reIsUint = /^\d+$/; +/** `Object#toString` result references. */ +var funcTag = '[object Function]'; -/** - * Used as the [maximum length](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.max_safe_integer) - * of an array-like value. - */ -var MAX_SAFE_INTEGER = 9007199254740991; +/** Used to detect host constructors (Safari > 5). */ +var reIsHostCtor = /^\[object .+?Constructor\]$/; /** - * The base implementation of `_.property` without support for deep paths. + * Checks if `value` is object-like. * * @private - * @param {string} key The key of the property to get. - * @returns {Function} Returns the new function. + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is object-like, else `false`. */ -function baseProperty(key) { - return function(object) { - return object == null ? undefined : object[key]; - }; +function isObjectLike(value) { + return !!value && typeof value == 'object'; } -/** - * Gets the "length" property value of `object`. - * - * **Note:** This function is used to avoid a [JIT bug](https://bugs.webkit.org/show_bug.cgi?id=142792) - * that affects Safari on at least iOS 8.1-8.3 ARM64. - * - * @private - * @param {Object} object The object to query. - * @returns {*} Returns the "length" value. - */ -var getLength = baseProperty('length'); +/** Used for native method references. */ +var objectProto = Object.prototype; -/** - * Checks if `value` is array-like. - * - * @private - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is array-like, else `false`. - */ -function isArrayLike(value) { - return value != null && isLength(getLength(value)); -} +/** Used to resolve the decompiled source of functions. */ +var fnToString = Function.prototype.toString; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; /** - * Checks if `value` is a valid array-like index. - * - * @private - * @param {*} value The value to check. - * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index. - * @returns {boolean} Returns `true` if `value` is a valid index, else `false`. + * Used to resolve the [`toStringTag`](http://ecma-international.org/ecma-262/6.0/#sec-object.prototype.tostring) + * of values. */ -function isIndex(value, length) { - value = (typeof value == 'number' || reIsUint.test(value)) ? +value : -1; - length = length == null ? MAX_SAFE_INTEGER : length; - return value > -1 && value % 1 == 0 && value < length; -} +var objToString = objectProto.toString; + +/** Used to detect if a method is native. */ +var reIsNative = RegExp('^' + + fnToString.call(hasOwnProperty).replace(/[\\^$.*+?()[\]{}|]/g, '\\$&') + .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$' +); /** - * Checks if the provided arguments are from an iteratee call. + * Gets the native function at `key` of `object`. * * @private - * @param {*} value The potential iteratee value argument. - * @param {*} index The potential iteratee index or key argument. - * @param {*} object The potential iteratee object argument. - * @returns {boolean} Returns `true` if the arguments are from an iteratee call, else `false`. + * @param {Object} object The object to query. + * @param {string} key The key of the method to get. + * @returns {*} Returns the function if it's native, else `undefined`. */ -function isIterateeCall(value, index, object) { - if (!isObject(object)) { - return false; - } - var type = typeof index; - if (type == 'number' - ? (isArrayLike(object) && isIndex(index, object.length)) - : (type == 'string' && index in object)) { - var other = object[index]; - return value === value ? (value === other) : (other !== other); - } - return false; +function getNative(object, key) { + var value = object == null ? undefined : object[key]; + return isNative(value) ? value : undefined; } /** - * Checks if `value` is a valid array-like length. - * - * **Note:** This function is based on [`ToLength`](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-tolength). + * Checks if `value` is classified as a `Function` object. * - * @private + * @static + * @memberOf _ + * @category Lang * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a valid length, else `false`. + * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`. + * @example + * + * _.isFunction(_); + * // => true + * + * _.isFunction(/abc/); + * // => false */ -function isLength(value) { - return typeof value == 'number' && value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER; +function isFunction(value) { + // The use of `Object#toString` avoids issues with the `typeof` operator + // in older versions of Chrome and Safari which return 'function' for regexes + // and Safari 8 equivalents which return 'object' for typed array constructors. + return isObject(value) && objToString.call(value) == funcTag; } /** @@ -11596,66 +12232,35 @@ function isObject(value) { return !!value && (type == 'object' || type == 'function'); } -module.exports = isIterateeCall; - -},{}],60:[function(require,module,exports){ -/** - * lodash 3.1.1 (Custom Build) - * Build: `lodash modern modularize exports="npm" -o ./` - * Copyright 2012-2015 The Dojo Foundation - * Based on Underscore.js 1.8.3 - * Copyright 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - * Available under MIT license - */ -var baseAssign = require('lodash._baseassign'), - baseCreate = require('lodash._basecreate'), - isIterateeCall = require('lodash._isiterateecall'); - /** - * Creates an object that inherits from the given `prototype` object. If a - * `properties` object is provided its own enumerable properties are assigned - * to the created object. + * Checks if `value` is a native function. * * @static * @memberOf _ - * @category Object - * @param {Object} prototype The object to inherit from. - * @param {Object} [properties] The properties to assign to the object. - * @param- {Object} [guard] Enables use as a callback for functions like `_.map`. - * @returns {Object} Returns the new object. + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a native function, else `false`. * @example * - * function Shape() { - * this.x = 0; - * this.y = 0; - * } - * - * function Circle() { - * Shape.call(this); - * } - * - * Circle.prototype = _.create(Shape.prototype, { - * 'constructor': Circle - * }); - * - * var circle = new Circle; - * circle instanceof Circle; + * _.isNative(Array.prototype.push); * // => true * - * circle instanceof Shape; - * // => true + * _.isNative(_); + * // => false */ -function create(prototype, properties, guard) { - var result = baseCreate(prototype); - if (guard && isIterateeCall(prototype, properties, guard)) { - properties = undefined; +function isNative(value) { + if (value == null) { + return false; } - return properties ? baseAssign(result, properties) : result; + if (isFunction(value)) { + return reIsNative.test(fnToString.call(value)); + } + return isObjectLike(value) && reIsHostCtor.test(value); } -module.exports = create; +module.exports = getNative; -},{"lodash._baseassign":55,"lodash._basecreate":57,"lodash._isiterateecall":59}],61:[function(require,module,exports){ +},{}],74:[function(require,module,exports){ /** * lodash (Custom Build) * Build: `lodash modularize exports="npm" -o ./` @@ -11886,7 +12491,7 @@ function isObjectLike(value) { module.exports = isArguments; -},{}],62:[function(require,module,exports){ +},{}],75:[function(require,module,exports){ /** * lodash 3.0.4 (Custom Build) * Build: `lodash modern modularize exports="npm" -o ./` @@ -12068,33 +12673,80 @@ function isNative(value) { module.exports = isArray; -},{}],63:[function(require,module,exports){ +},{}],76:[function(require,module,exports){ /** - * lodash 3.1.2 (Custom Build) + * lodash 3.0.3 (Custom Build) * Build: `lodash modern modularize exports="npm" -o ./` * Copyright 2012-2015 The Dojo Foundation * Based on Underscore.js 1.8.3 * Copyright 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors * Available under MIT license */ -var getNative = require('lodash._getnative'), - isArguments = require('lodash.isarguments'), - isArray = require('lodash.isarray'); -/** Used to detect unsigned integer values. */ -var reIsUint = /^\d+$/; +/** + * The base implementation of `_.create` without support for assigning + * properties to the created object. + * + * @private + * @param {Object} prototype The object to inherit from. + * @returns {Object} Returns the new object. + */ +var baseCreate = (function() { + function object() {} + return function(prototype) { + if (isObject(prototype)) { + object.prototype = prototype; + var result = new object; + object.prototype = undefined; + } + return result || {}; + }; +}()); -/** Used for native method references. */ -var objectProto = Object.prototype; +/** + * Checks if `value` is the [language type](https://es5.github.io/#x8) of `Object`. + * (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`) + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an object, else `false`. + * @example + * + * _.isObject({}); + * // => true + * + * _.isObject([1, 2, 3]); + * // => true + * + * _.isObject(1); + * // => false + */ +function isObject(value) { + // Avoid a V8 JIT bug in Chrome 19-20. + // See https://code.google.com/p/v8/issues/detail?id=2291 for more details. + var type = typeof value; + return !!value && (type == 'object' || type == 'function'); +} -/** Used to check objects for own properties. */ -var hasOwnProperty = objectProto.hasOwnProperty; +module.exports = baseCreate; -/* Native method references for those with the same name as other `lodash` methods. */ -var nativeKeys = getNative(Object, 'keys'); +},{}],77:[function(require,module,exports){ +/** + * lodash 3.0.9 (Custom Build) + * Build: `lodash modern modularize exports="npm" -o ./` + * Copyright 2012-2015 The Dojo Foundation + * Based on Underscore.js 1.8.3 + * Copyright 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors + * Available under MIT license + */ + +/** Used to detect unsigned integer values. */ +var reIsUint = /^\d+$/; /** - * Used as the [maximum length](http://ecma-international.org/ecma-262/6.0/#sec-number.max_safe_integer) + * Used as the [maximum length](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.max_safe_integer) * of an array-like value. */ var MAX_SAFE_INTEGER = 9007199254740991; @@ -12150,44 +12802,39 @@ function isIndex(value, length) { } /** - * Checks if `value` is a valid array-like length. - * - * **Note:** This function is based on [`ToLength`](http://ecma-international.org/ecma-262/6.0/#sec-tolength). + * Checks if the provided arguments are from an iteratee call. * * @private - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a valid length, else `false`. + * @param {*} value The potential iteratee value argument. + * @param {*} index The potential iteratee index or key argument. + * @param {*} object The potential iteratee object argument. + * @returns {boolean} Returns `true` if the arguments are from an iteratee call, else `false`. */ -function isLength(value) { - return typeof value == 'number' && value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER; +function isIterateeCall(value, index, object) { + if (!isObject(object)) { + return false; + } + var type = typeof index; + if (type == 'number' + ? (isArrayLike(object) && isIndex(index, object.length)) + : (type == 'string' && index in object)) { + var other = object[index]; + return value === value ? (value === other) : (other !== other); + } + return false; } /** - * A fallback implementation of `Object.keys` which creates an array of the - * own enumerable property names of `object`. + * Checks if `value` is a valid array-like length. + * + * **Note:** This function is based on [`ToLength`](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-tolength). * * @private - * @param {Object} object The object to query. - * @returns {Array} Returns the array of property names. - */ -function shimKeys(object) { - var props = keysIn(object), - propsLength = props.length, - length = propsLength && object.length; - - var allowIndexes = !!length && isLength(length) && - (isArray(object) || isArguments(object)); - - var index = -1, - result = []; - - while (++index < propsLength) { - var key = props[index]; - if ((allowIndexes && isIndex(key, length)) || hasOwnProperty.call(object, key)) { - result.push(key); - } - } - return result; + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a valid length, else `false`. + */ +function isLength(value) { + return typeof value == 'number' && value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER; } /** @@ -12217,96 +12864,9 @@ function isObject(value) { return !!value && (type == 'object' || type == 'function'); } -/** - * Creates an array of the own enumerable property names of `object`. - * - * **Note:** Non-object values are coerced to objects. See the - * [ES spec](http://ecma-international.org/ecma-262/6.0/#sec-object.keys) - * for more details. - * - * @static - * @memberOf _ - * @category Object - * @param {Object} object The object to query. - * @returns {Array} Returns the array of property names. - * @example - * - * function Foo() { - * this.a = 1; - * this.b = 2; - * } - * - * Foo.prototype.c = 3; - * - * _.keys(new Foo); - * // => ['a', 'b'] (iteration order is not guaranteed) - * - * _.keys('hi'); - * // => ['0', '1'] - */ -var keys = !nativeKeys ? shimKeys : function(object) { - var Ctor = object == null ? undefined : object.constructor; - if ((typeof Ctor == 'function' && Ctor.prototype === object) || - (typeof object != 'function' && isArrayLike(object))) { - return shimKeys(object); - } - return isObject(object) ? nativeKeys(object) : []; -}; - -/** - * Creates an array of the own and inherited enumerable property names of `object`. - * - * **Note:** Non-object values are coerced to objects. - * - * @static - * @memberOf _ - * @category Object - * @param {Object} object The object to query. - * @returns {Array} Returns the array of property names. - * @example - * - * function Foo() { - * this.a = 1; - * this.b = 2; - * } - * - * Foo.prototype.c = 3; - * - * _.keysIn(new Foo); - * // => ['a', 'b', 'c'] (iteration order is not guaranteed) - */ -function keysIn(object) { - if (object == null) { - return []; - } - if (!isObject(object)) { - object = Object(object); - } - var length = object.length; - length = (length && isLength(length) && - (isArray(object) || isArguments(object)) && length) || 0; - - var Ctor = object.constructor, - index = -1, - isProto = typeof Ctor == 'function' && Ctor.prototype === object, - result = Array(length), - skipIndexes = length > 0; - - while (++index < length) { - result[index] = (index + ''); - } - for (var key in object) { - if (!(skipIndexes && isIndex(key, length)) && - !(key == 'constructor' && (isProto || !hasOwnProperty.call(object, key)))) { - result.push(key); - } - } - return result; -} - -module.exports = keys; +module.exports = isIterateeCall; -},{"lodash._getnative":58,"lodash.isarguments":61,"lodash.isarray":62}],64:[function(require,module,exports){ +},{}],78:[function(require,module,exports){ (function (process){ var path = require('path'); var fs = require('fs'); @@ -12408,7 +12968,7 @@ mkdirP.sync = function sync (p, opts, made) { }; }).call(this,require('_process')) -},{"_process":67,"fs":42,"path":42}],65:[function(require,module,exports){ +},{"_process":81,"fs":42,"path":42}],79:[function(require,module,exports){ exports.endianness = function () { return 'LE' }; exports.hostname = function () { @@ -12455,7 +13015,7 @@ exports.tmpdir = exports.tmpDir = function () { exports.EOL = '\n'; -},{}],66:[function(require,module,exports){ +},{}],80:[function(require,module,exports){ (function (process){ 'use strict'; @@ -12502,7 +13062,7 @@ function nextTick(fn, arg1, arg2, arg3) { } }).call(this,require('_process')) -},{"_process":67}],67:[function(require,module,exports){ +},{"_process":81}],81:[function(require,module,exports){ // shim for using process in browser var process = module.exports = {}; @@ -12673,6 +13233,10 @@ process.off = noop; process.removeListener = noop; process.removeAllListeners = noop; process.emit = noop; +process.prependListener = noop; +process.prependOnceListener = noop; + +process.listeners = function (name) { return [] } process.binding = function (name) { throw new Error('process.binding is not supported'); @@ -12684,10 +13248,10 @@ process.chdir = function (dir) { }; process.umask = function() { return 0; }; -},{}],68:[function(require,module,exports){ -module.exports = require("./lib/_stream_duplex.js") +},{}],82:[function(require,module,exports){ +module.exports = require('./lib/_stream_duplex.js'); -},{"./lib/_stream_duplex.js":69}],69:[function(require,module,exports){ +},{"./lib/_stream_duplex.js":83}],83:[function(require,module,exports){ // a duplex stream is just a stream that is both readable and writable. // Since JS doesn't have multiple prototypal inheritance, this class // prototypally inherits from Readable, and then parasitically from @@ -12763,7 +13327,7 @@ function forEach(xs, f) { f(xs[i], i); } } -},{"./_stream_readable":71,"./_stream_writable":73,"core-util-is":45,"inherits":51,"process-nextick-args":66}],70:[function(require,module,exports){ +},{"./_stream_readable":85,"./_stream_writable":87,"core-util-is":44,"inherits":65,"process-nextick-args":80}],84:[function(require,module,exports){ // a passthrough stream. // basically just the most minimal sort of Transform stream. // Every written chunk gets output as-is. @@ -12790,7 +13354,7 @@ function PassThrough(options) { PassThrough.prototype._transform = function (chunk, encoding, cb) { cb(null, chunk); }; -},{"./_stream_transform":72,"core-util-is":45,"inherits":51}],71:[function(require,module,exports){ +},{"./_stream_transform":86,"core-util-is":44,"inherits":65}],85:[function(require,module,exports){ (function (process){ 'use strict'; @@ -12804,6 +13368,10 @@ var processNextTick = require('process-nextick-args'); var isArray = require('isarray'); /**/ +/**/ +var Duplex; +/**/ + Readable.ReadableState = ReadableState; /**/ @@ -12815,19 +13383,11 @@ var EElistenerCount = function (emitter, type) { /**/ /**/ -var Stream; -(function () { - try { - Stream = require('st' + 'ream'); - } catch (_) {} finally { - if (!Stream) Stream = require('events').EventEmitter; - } -})(); +var Stream = require('./internal/streams/stream'); /**/ -var Buffer = require('buffer').Buffer; /**/ -var bufferShim = require('buffer-shims'); +var Buffer = require('safe-buffer').Buffer; /**/ /**/ @@ -12850,7 +13410,11 @@ var StringDecoder; util.inherits(Readable, Stream); +var kProxyEvents = ['error', 'close', 'destroy', 'pause', 'resume']; + function prependListener(emitter, event, fn) { + // Sadly this is not cacheable as some libraries bundle their own + // event emitter implementation with them. if (typeof emitter.prependListener === 'function') { return emitter.prependListener(event, fn); } else { @@ -12862,7 +13426,6 @@ function prependListener(emitter, event, fn) { } } -var Duplex; function ReadableState(options, stream) { Duplex = Duplex || require('./_stream_duplex'); @@ -12881,7 +13444,7 @@ function ReadableState(options, stream) { this.highWaterMark = hwm || hwm === 0 ? hwm : defaultHwm; // cast to ints. - this.highWaterMark = ~ ~this.highWaterMark; + this.highWaterMark = ~~this.highWaterMark; // A linked list is used to store data chunks instead of an array because the // linked list can remove elements from the beginning faster than @@ -12932,7 +13495,6 @@ function ReadableState(options, stream) { } } -var Duplex; function Readable(options) { Duplex = Duplex || require('./_stream_duplex'); @@ -12958,7 +13520,7 @@ Readable.prototype.push = function (chunk, encoding) { if (!state.objectMode && typeof chunk === 'string') { encoding = encoding || state.defaultEncoding; if (encoding !== state.encoding) { - chunk = bufferShim.from(chunk, encoding); + chunk = Buffer.from(chunk, encoding); encoding = ''; } } @@ -13255,7 +13817,7 @@ function maybeReadMore_(stream, state) { // for virtual (non-string, non-buffer) streams, "length" is somewhat // arbitrary, and perhaps not very meaningful. Readable.prototype._read = function (n) { - this.emit('error', new Error('not implemented')); + this.emit('error', new Error('_read() is not implemented')); }; Readable.prototype.pipe = function (dest, pipeOpts) { @@ -13278,7 +13840,7 @@ Readable.prototype.pipe = function (dest, pipeOpts) { var doEnd = (!pipeOpts || pipeOpts.end !== false) && dest !== process.stdout && dest !== process.stderr; - var endFn = doEnd ? onend : cleanup; + var endFn = doEnd ? onend : unpipe; if (state.endEmitted) processNextTick(endFn);else src.once('end', endFn); dest.on('unpipe', onunpipe); @@ -13311,7 +13873,7 @@ Readable.prototype.pipe = function (dest, pipeOpts) { dest.removeListener('error', onerror); dest.removeListener('unpipe', onunpipe); src.removeListener('end', onend); - src.removeListener('end', cleanup); + src.removeListener('end', unpipe); src.removeListener('data', ondata); cleanedUp = true; @@ -13433,16 +13995,16 @@ Readable.prototype.unpipe = function (dest) { state.pipesCount = 0; state.flowing = false; - for (var _i = 0; _i < len; _i++) { - dests[_i].emit('unpipe', this); + for (var i = 0; i < len; i++) { + dests[i].emit('unpipe', this); }return this; } // try to find the right one. - var i = indexOf(state.pipes, dest); - if (i === -1) return this; + var index = indexOf(state.pipes, dest); + if (index === -1) return this; - state.pipes.splice(i, 1); + state.pipes.splice(index, 1); state.pipesCount -= 1; if (state.pipesCount === 1) state.pipes = state.pipes[0]; @@ -13574,10 +14136,9 @@ Readable.prototype.wrap = function (stream) { } // proxy certain important events. - var events = ['error', 'close', 'destroy', 'pause', 'resume']; - forEach(events, function (ev) { - stream.on(ev, self.emit.bind(self, ev)); - }); + for (var n = 0; n < kProxyEvents.length; n++) { + stream.on(kProxyEvents[n], self.emit.bind(self, kProxyEvents[n])); + } // when we try to consume some more bytes, simply unpause the // underlying stream. @@ -13669,7 +14230,7 @@ function copyFromBufferString(n, list) { // This function is designed to be inlinable, so please take care when making // changes to the function body. function copyFromBuffer(n, list) { - var ret = bufferShim.allocUnsafe(n); + var ret = Buffer.allocUnsafe(n); var p = list.head; var c = 1; p.data.copy(ret); @@ -13730,7 +14291,7 @@ function indexOf(xs, x) { return -1; } }).call(this,require('_process')) -},{"./_stream_duplex":69,"./internal/streams/BufferList":74,"_process":67,"buffer":44,"buffer-shims":43,"core-util-is":45,"events":48,"inherits":51,"isarray":53,"process-nextick-args":66,"string_decoder/":80,"util":40}],72:[function(require,module,exports){ +},{"./_stream_duplex":83,"./internal/streams/BufferList":88,"./internal/streams/stream":89,"_process":81,"core-util-is":44,"events":62,"inherits":65,"isarray":67,"process-nextick-args":80,"safe-buffer":94,"string_decoder/":96,"util":40}],86:[function(require,module,exports){ // a transform stream is a readable/writable stream where you do // something with the data. Sometimes it's called a "filter", // but that's not a great name for it, since that implies a thing where @@ -13827,7 +14388,6 @@ function Transform(options) { this._transformState = new TransformState(this); - // when the writable side finishes, then flush out anything remaining. var stream = this; // start out asking for a readable event once data is transformed. @@ -13844,9 +14404,10 @@ function Transform(options) { if (typeof options.flush === 'function') this._flush = options.flush; } + // When the writable side finishes, then flush out anything remaining. this.once('prefinish', function () { - if (typeof this._flush === 'function') this._flush(function (er) { - done(stream, er); + if (typeof this._flush === 'function') this._flush(function (er, data) { + done(stream, er, data); });else done(stream); }); } @@ -13867,7 +14428,7 @@ Transform.prototype.push = function (chunk, encoding) { // an error, then that'll put the hurt on the whole operation. If you // never call cb(), then you'll never get another chunk. Transform.prototype._transform = function (chunk, encoding, cb) { - throw new Error('Not implemented'); + throw new Error('_transform() is not implemented'); }; Transform.prototype._write = function (chunk, encoding, cb) { @@ -13897,9 +14458,11 @@ Transform.prototype._read = function (n) { } }; -function done(stream, er) { +function done(stream, er, data) { if (er) return stream.emit('error', er); + if (data !== null && data !== undefined) stream.push(data); + // if there's nothing in the write buffer, then that means // that nothing more will ever be provided var ws = stream._writableState; @@ -13911,7 +14474,7 @@ function done(stream, er) { return stream.push(null); } -},{"./_stream_duplex":69,"core-util-is":45,"inherits":51}],73:[function(require,module,exports){ +},{"./_stream_duplex":83,"core-util-is":44,"inherits":65}],87:[function(require,module,exports){ (function (process){ // A bit simpler than readable streams. // Implement an async ._write(chunk, encoding, cb), and it'll handle all @@ -13929,6 +14492,10 @@ var processNextTick = require('process-nextick-args'); var asyncWrite = !process.browser && ['v0.10', 'v0.9.'].indexOf(process.version.slice(0, 5)) > -1 ? setImmediate : processNextTick; /**/ +/**/ +var Duplex; +/**/ + Writable.WritableState = WritableState; /**/ @@ -13943,19 +14510,11 @@ var internalUtil = { /**/ /**/ -var Stream; -(function () { - try { - Stream = require('st' + 'ream'); - } catch (_) {} finally { - if (!Stream) Stream = require('events').EventEmitter; - } -})(); +var Stream = require('./internal/streams/stream'); /**/ -var Buffer = require('buffer').Buffer; /**/ -var bufferShim = require('buffer-shims'); +var Buffer = require('safe-buffer').Buffer; /**/ util.inherits(Writable, Stream); @@ -13969,7 +14528,6 @@ function WriteReq(chunk, encoding, cb) { this.next = null; } -var Duplex; function WritableState(options, stream) { Duplex = Duplex || require('./_stream_duplex'); @@ -13989,8 +14547,9 @@ function WritableState(options, stream) { this.highWaterMark = hwm || hwm === 0 ? hwm : defaultHwm; // cast to ints. - this.highWaterMark = ~ ~this.highWaterMark; + this.highWaterMark = ~~this.highWaterMark; + // drain event flag. this.needDrain = false; // at the start of calling end() this.ending = false; @@ -14065,7 +14624,7 @@ function WritableState(options, stream) { this.corkedRequestsFree = new CorkedRequest(this); } -WritableState.prototype.getBuffer = function writableStateGetBuffer() { +WritableState.prototype.getBuffer = function getBuffer() { var current = this.bufferedRequest; var out = []; while (current) { @@ -14085,13 +14644,37 @@ WritableState.prototype.getBuffer = function writableStateGetBuffer() { } catch (_) {} })(); -var Duplex; +// Test _writableState for inheritance to account for Duplex streams, +// whose prototype chain only points to Readable. +var realHasInstance; +if (typeof Symbol === 'function' && Symbol.hasInstance && typeof Function.prototype[Symbol.hasInstance] === 'function') { + realHasInstance = Function.prototype[Symbol.hasInstance]; + Object.defineProperty(Writable, Symbol.hasInstance, { + value: function (object) { + if (realHasInstance.call(this, object)) return true; + + return object && object._writableState instanceof WritableState; + } + }); +} else { + realHasInstance = function (object) { + return object instanceof this; + }; +} + function Writable(options) { Duplex = Duplex || require('./_stream_duplex'); - // Writable ctor is applied to Duplexes, though they're not - // instanceof Writable, they're instanceof Readable. - if (!(this instanceof Writable) && !(this instanceof Duplex)) return new Writable(options); + // Writable ctor is applied to Duplexes, too. + // `realHasInstance` is necessary because using plain `instanceof` + // would return false, as no `_writableState` property is attached. + + // Trying to use the custom `instanceof` for Writable here will also break the + // Node.js LazyTransform implementation, which has a non-trivial getter for + // `_writableState` that would lead to infinite recursion. + if (!realHasInstance.call(Writable, this) && !(this instanceof Duplex)) { + return new Writable(options); + } this._writableState = new WritableState(options, this); @@ -14119,20 +14702,16 @@ function writeAfterEnd(stream, cb) { processNextTick(cb, er); } -// If we get something that is not a buffer, string, null, or undefined, -// and we're not in objectMode, then that's an error. -// Otherwise stream chunks are all considered to be of length=1, and the -// watermarks determine how many objects to keep in the buffer, rather than -// how many bytes or characters. +// Checks that a user-supplied chunk is valid, especially for the particular +// mode the stream is in. Currently this means that `null` is never accepted +// and undefined/non-string values are only allowed in object mode. function validChunk(stream, state, chunk, cb) { var valid = true; var er = false; - // Always throw error if a null is written - // if we are not in object mode then throw - // if it is not a buffer, string, or undefined. + if (chunk === null) { er = new TypeError('May not write null values to stream'); - } else if (!Buffer.isBuffer(chunk) && typeof chunk !== 'string' && chunk !== undefined && !state.objectMode) { + } else if (typeof chunk !== 'string' && chunk !== undefined && !state.objectMode) { er = new TypeError('Invalid non-string/buffer chunk'); } if (er) { @@ -14146,19 +14725,20 @@ function validChunk(stream, state, chunk, cb) { Writable.prototype.write = function (chunk, encoding, cb) { var state = this._writableState; var ret = false; + var isBuf = Buffer.isBuffer(chunk); if (typeof encoding === 'function') { cb = encoding; encoding = null; } - if (Buffer.isBuffer(chunk)) encoding = 'buffer';else if (!encoding) encoding = state.defaultEncoding; + if (isBuf) encoding = 'buffer';else if (!encoding) encoding = state.defaultEncoding; if (typeof cb !== 'function') cb = nop; - if (state.ended) writeAfterEnd(this, cb);else if (validChunk(this, state, chunk, cb)) { + if (state.ended) writeAfterEnd(this, cb);else if (isBuf || validChunk(this, state, chunk, cb)) { state.pendingcb++; - ret = writeOrBuffer(this, state, chunk, encoding, cb); + ret = writeOrBuffer(this, state, isBuf, chunk, encoding, cb); } return ret; @@ -14190,7 +14770,7 @@ Writable.prototype.setDefaultEncoding = function setDefaultEncoding(encoding) { function decodeChunk(state, chunk, encoding) { if (!state.objectMode && state.decodeStrings !== false && typeof chunk === 'string') { - chunk = bufferShim.from(chunk, encoding); + chunk = Buffer.from(chunk, encoding); } return chunk; } @@ -14198,10 +14778,11 @@ function decodeChunk(state, chunk, encoding) { // if we're already writing something, then just put this // in the queue, and wait our turn. Otherwise, call _write // If we return false, then we need a drain event, so set that flag. -function writeOrBuffer(stream, state, chunk, encoding, cb) { - chunk = decodeChunk(state, chunk, encoding); - - if (Buffer.isBuffer(chunk)) encoding = 'buffer'; +function writeOrBuffer(stream, state, isBuf, chunk, encoding, cb) { + if (!isBuf) { + chunk = decodeChunk(state, chunk, encoding); + if (Buffer.isBuffer(chunk)) encoding = 'buffer'; + } var len = state.objectMode ? 1 : chunk.length; state.length += len; @@ -14270,8 +14851,8 @@ function onwrite(stream, er) { asyncWrite(afterWrite, stream, state, finished, cb); /**/ } else { - afterWrite(stream, state, finished, cb); - } + afterWrite(stream, state, finished, cb); + } } } @@ -14351,7 +14932,7 @@ function clearBuffer(stream, state) { } Writable.prototype._write = function (chunk, encoding, cb) { - cb(new Error('not implemented')); + cb(new Error('_write() is not implemented')); }; Writable.prototype._writev = null; @@ -14422,7 +15003,6 @@ function CorkedRequest(state) { this.next = null; this.entry = null; - this.finish = function (err) { var entry = _this.entry; _this.entry = null; @@ -14440,12 +15020,12 @@ function CorkedRequest(state) { }; } }).call(this,require('_process')) -},{"./_stream_duplex":69,"_process":67,"buffer":44,"buffer-shims":43,"core-util-is":45,"events":48,"inherits":51,"process-nextick-args":66,"util-deprecate":81}],74:[function(require,module,exports){ +},{"./_stream_duplex":83,"./internal/streams/stream":89,"_process":81,"core-util-is":44,"inherits":65,"process-nextick-args":80,"safe-buffer":94,"util-deprecate":98}],88:[function(require,module,exports){ 'use strict'; -var Buffer = require('buffer').Buffer; /**/ -var bufferShim = require('buffer-shims'); + +var Buffer = require('safe-buffer').Buffer; /**/ module.exports = BufferList; @@ -14493,9 +15073,9 @@ BufferList.prototype.join = function (s) { }; BufferList.prototype.concat = function (n) { - if (this.length === 0) return bufferShim.alloc(0); + if (this.length === 0) return Buffer.alloc(0); if (this.length === 1) return this.head.data; - var ret = bufferShim.allocUnsafe(n >>> 0); + var ret = Buffer.allocUnsafe(n >>> 0); var p = this.head; var i = 0; while (p) { @@ -14505,36 +15085,31 @@ BufferList.prototype.concat = function (n) { } return ret; }; -},{"buffer":44,"buffer-shims":43}],75:[function(require,module,exports){ -module.exports = require("./lib/_stream_passthrough.js") +},{"safe-buffer":94}],89:[function(require,module,exports){ +module.exports = require('events').EventEmitter; -},{"./lib/_stream_passthrough.js":70}],76:[function(require,module,exports){ -(function (process){ -var Stream = (function (){ - try { - return require('st' + 'ream'); // hack to fix a circular dependency issue when used with browserify - } catch(_){} -}()); +},{"events":62}],90:[function(require,module,exports){ +module.exports = require('./readable').PassThrough + +},{"./readable":91}],91:[function(require,module,exports){ exports = module.exports = require('./lib/_stream_readable.js'); -exports.Stream = Stream || exports; +exports.Stream = exports; exports.Readable = exports; exports.Writable = require('./lib/_stream_writable.js'); exports.Duplex = require('./lib/_stream_duplex.js'); exports.Transform = require('./lib/_stream_transform.js'); exports.PassThrough = require('./lib/_stream_passthrough.js'); -if (!process.browser && process.env.READABLE_STREAM === 'disable' && Stream) { - module.exports = Stream; -} +},{"./lib/_stream_duplex.js":83,"./lib/_stream_passthrough.js":84,"./lib/_stream_readable.js":85,"./lib/_stream_transform.js":86,"./lib/_stream_writable.js":87}],92:[function(require,module,exports){ +module.exports = require('./readable').Transform -}).call(this,require('_process')) -},{"./lib/_stream_duplex.js":69,"./lib/_stream_passthrough.js":70,"./lib/_stream_readable.js":71,"./lib/_stream_transform.js":72,"./lib/_stream_writable.js":73,"_process":67}],77:[function(require,module,exports){ -module.exports = require("./lib/_stream_transform.js") +},{"./readable":91}],93:[function(require,module,exports){ +module.exports = require('./lib/_stream_writable.js'); -},{"./lib/_stream_transform.js":72}],78:[function(require,module,exports){ -module.exports = require("./lib/_stream_writable.js") +},{"./lib/_stream_writable.js":87}],94:[function(require,module,exports){ +module.exports = require('buffer') -},{"./lib/_stream_writable.js":73}],79:[function(require,module,exports){ +},{"buffer":43}],95:[function(require,module,exports){ // Copyright Joyent, Inc. and other Node contributors. // // Permission is hereby granted, free of charge, to any person obtaining a @@ -14663,230 +15238,344 @@ Stream.prototype.pipe = function(dest, options) { return dest; }; -},{"events":48,"inherits":51,"readable-stream/duplex.js":68,"readable-stream/passthrough.js":75,"readable-stream/readable.js":76,"readable-stream/transform.js":77,"readable-stream/writable.js":78}],80:[function(require,module,exports){ -// Copyright Joyent, Inc. and other Node contributors. -// -// Permission is hereby granted, free of charge, to any person obtaining a -// copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to permit -// persons to whom the Software is furnished to do so, subject to the -// following conditions: -// -// The above copyright notice and this permission notice shall be included -// in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -// USE OR OTHER DEALINGS IN THE SOFTWARE. - -var Buffer = require('buffer').Buffer; +},{"events":62,"inherits":65,"readable-stream/duplex.js":82,"readable-stream/passthrough.js":90,"readable-stream/readable.js":91,"readable-stream/transform.js":92,"readable-stream/writable.js":93}],96:[function(require,module,exports){ +'use strict'; -var isBufferEncoding = Buffer.isEncoding - || function(encoding) { - switch (encoding && encoding.toLowerCase()) { - case 'hex': case 'utf8': case 'utf-8': case 'ascii': case 'binary': case 'base64': case 'ucs2': case 'ucs-2': case 'utf16le': case 'utf-16le': case 'raw': return true; - default: return false; - } - } +var Buffer = require('safe-buffer').Buffer; +var isEncoding = Buffer.isEncoding || function (encoding) { + encoding = '' + encoding; + switch (encoding && encoding.toLowerCase()) { + case 'hex':case 'utf8':case 'utf-8':case 'ascii':case 'binary':case 'base64':case 'ucs2':case 'ucs-2':case 'utf16le':case 'utf-16le':case 'raw': + return true; + default: + return false; + } +}; -function assertEncoding(encoding) { - if (encoding && !isBufferEncoding(encoding)) { - throw new Error('Unknown encoding: ' + encoding); +function _normalizeEncoding(enc) { + if (!enc) return 'utf8'; + var retried; + while (true) { + switch (enc) { + case 'utf8': + case 'utf-8': + return 'utf8'; + case 'ucs2': + case 'ucs-2': + case 'utf16le': + case 'utf-16le': + return 'utf16le'; + case 'latin1': + case 'binary': + return 'latin1'; + case 'base64': + case 'ascii': + case 'hex': + return enc; + default: + if (retried) return; // undefined + enc = ('' + enc).toLowerCase(); + retried = true; + } } +}; + +// Do not cache `Buffer.isEncoding` when checking encoding names as some +// modules monkey-patch it to support additional encodings +function normalizeEncoding(enc) { + var nenc = _normalizeEncoding(enc); + if (typeof nenc !== 'string' && (Buffer.isEncoding === isEncoding || !isEncoding(enc))) throw new Error('Unknown encoding: ' + enc); + return nenc || enc; } // StringDecoder provides an interface for efficiently splitting a series of // buffers into a series of JS strings without breaking apart multi-byte -// characters. CESU-8 is handled as part of the UTF-8 encoding. -// -// @TODO Handling all encodings inside a single object makes it very difficult -// to reason about this code, so it should be split up in the future. -// @TODO There should be a utf8-strict encoding that rejects invalid UTF-8 code -// points as used by CESU-8. -var StringDecoder = exports.StringDecoder = function(encoding) { - this.encoding = (encoding || 'utf8').toLowerCase().replace(/[-_]/, ''); - assertEncoding(encoding); +// characters. +exports.StringDecoder = StringDecoder; +function StringDecoder(encoding) { + this.encoding = normalizeEncoding(encoding); + var nb; switch (this.encoding) { - case 'utf8': - // CESU-8 represents each of Surrogate Pair by 3-bytes - this.surrogateSize = 3; - break; - case 'ucs2': case 'utf16le': - // UTF-16 represents each of Surrogate Pair by 2-bytes - this.surrogateSize = 2; - this.detectIncompleteChar = utf16DetectIncompleteChar; + this.text = utf16Text; + this.end = utf16End; + nb = 4; + break; + case 'utf8': + this.fillLast = utf8FillLast; + nb = 4; break; case 'base64': - // Base-64 stores 3 bytes in 4 chars, and pads the remainder. - this.surrogateSize = 3; - this.detectIncompleteChar = base64DetectIncompleteChar; + this.text = base64Text; + this.end = base64End; + nb = 3; break; default: - this.write = passThroughWrite; + this.write = simpleWrite; + this.end = simpleEnd; return; } + this.lastNeed = 0; + this.lastTotal = 0; + this.lastChar = Buffer.allocUnsafe(nb); +} - // Enough space to store all bytes of a single character. UTF-8 needs 4 - // bytes, but CESU-8 may require up to 6 (3 bytes per surrogate). - this.charBuffer = new Buffer(6); - // Number of bytes received for the current incomplete multi-byte character. - this.charReceived = 0; - // Number of bytes expected for the current incomplete multi-byte character. - this.charLength = 0; +StringDecoder.prototype.write = function (buf) { + if (buf.length === 0) return ''; + var r; + var i; + if (this.lastNeed) { + r = this.fillLast(buf); + if (r === undefined) return ''; + i = this.lastNeed; + this.lastNeed = 0; + } else { + i = 0; + } + if (i < buf.length) return r ? r + this.text(buf, i) : this.text(buf, i); + return r || ''; }; +StringDecoder.prototype.end = utf8End; -// write decodes the given buffer and returns it as JS string that is -// guaranteed to not contain any partial multi-byte characters. Any partial -// character found at the end of the buffer is buffered up, and will be -// returned when calling write again with the remaining bytes. -// -// Note: Converting a Buffer containing an orphan surrogate to a String -// currently works, but converting a String to a Buffer (via `new Buffer`, or -// Buffer#write) will replace incomplete surrogates with the unicode -// replacement character. See https://codereview.chromium.org/121173009/ . -StringDecoder.prototype.write = function(buffer) { - var charStr = ''; - // if our last write ended with an incomplete multibyte character - while (this.charLength) { - // determine how many remaining bytes this buffer has to offer for this char - var available = (buffer.length >= this.charLength - this.charReceived) ? - this.charLength - this.charReceived : - buffer.length; - - // add the new bytes to the char buffer - buffer.copy(this.charBuffer, this.charReceived, 0, available); - this.charReceived += available; - - if (this.charReceived < this.charLength) { - // still not enough chars in this buffer? wait for more ... - return ''; - } - - // remove bytes belonging to the current character from the buffer - buffer = buffer.slice(available, buffer.length); - - // get the character that was split - charStr = this.charBuffer.slice(0, this.charLength).toString(this.encoding); - - // CESU-8: lead surrogate (D800-DBFF) is also the incomplete character - var charCode = charStr.charCodeAt(charStr.length - 1); - if (charCode >= 0xD800 && charCode <= 0xDBFF) { - this.charLength += this.surrogateSize; - charStr = ''; - continue; - } - this.charReceived = this.charLength = 0; +// Returns only complete characters in a Buffer +StringDecoder.prototype.text = utf8Text; - // if there are no more bytes in this buffer, just emit our char - if (buffer.length === 0) { - return charStr; - } - break; +// Attempts to complete a partial non-UTF-8 character using bytes from a Buffer +StringDecoder.prototype.fillLast = function (buf) { + if (this.lastNeed <= buf.length) { + buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, this.lastNeed); + return this.lastChar.toString(this.encoding, 0, this.lastTotal); } + buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, buf.length); + this.lastNeed -= buf.length; +}; - // determine and set charLength / charReceived - this.detectIncompleteChar(buffer); +// Checks the type of a UTF-8 byte, whether it's ASCII, a leading byte, or a +// continuation byte. +function utf8CheckByte(byte) { + if (byte <= 0x7F) return 0;else if (byte >> 5 === 0x06) return 2;else if (byte >> 4 === 0x0E) return 3;else if (byte >> 3 === 0x1E) return 4; + return -1; +} - var end = buffer.length; - if (this.charLength) { - // buffer the incomplete character bytes we got - buffer.copy(this.charBuffer, 0, buffer.length - this.charReceived, end); - end -= this.charReceived; +// Checks at most 3 bytes at the end of a Buffer in order to detect an +// incomplete multi-byte UTF-8 character. The total number of bytes (2, 3, or 4) +// needed to complete the UTF-8 character (if applicable) are returned. +function utf8CheckIncomplete(self, buf, i) { + var j = buf.length - 1; + if (j < i) return 0; + var nb = utf8CheckByte(buf[j]); + if (nb >= 0) { + if (nb > 0) self.lastNeed = nb - 1; + return nb; } + if (--j < i) return 0; + nb = utf8CheckByte(buf[j]); + if (nb >= 0) { + if (nb > 0) self.lastNeed = nb - 2; + return nb; + } + if (--j < i) return 0; + nb = utf8CheckByte(buf[j]); + if (nb >= 0) { + if (nb > 0) { + if (nb === 2) nb = 0;else self.lastNeed = nb - 3; + } + return nb; + } + return 0; +} - charStr += buffer.toString(this.encoding, 0, end); - - var end = charStr.length - 1; - var charCode = charStr.charCodeAt(end); - // CESU-8: lead surrogate (D800-DBFF) is also the incomplete character - if (charCode >= 0xD800 && charCode <= 0xDBFF) { - var size = this.surrogateSize; - this.charLength += size; - this.charReceived += size; - this.charBuffer.copy(this.charBuffer, size, 0, size); - buffer.copy(this.charBuffer, 0, 0, size); - return charStr.substring(0, end); +// Validates as many continuation bytes for a multi-byte UTF-8 character as +// needed or are available. If we see a non-continuation byte where we expect +// one, we "replace" the validated continuation bytes we've seen so far with +// UTF-8 replacement characters ('\ufffd'), to match v8's UTF-8 decoding +// behavior. The continuation byte check is included three times in the case +// where all of the continuation bytes for a character exist in the same buffer. +// It is also done this way as a slight performance increase instead of using a +// loop. +function utf8CheckExtraBytes(self, buf, p) { + if ((buf[0] & 0xC0) !== 0x80) { + self.lastNeed = 0; + return '\ufffd'.repeat(p); + } + if (self.lastNeed > 1 && buf.length > 1) { + if ((buf[1] & 0xC0) !== 0x80) { + self.lastNeed = 1; + return '\ufffd'.repeat(p + 1); + } + if (self.lastNeed > 2 && buf.length > 2) { + if ((buf[2] & 0xC0) !== 0x80) { + self.lastNeed = 2; + return '\ufffd'.repeat(p + 2); + } + } } +} - // or just emit the charStr - return charStr; -}; +// Attempts to complete a multi-byte UTF-8 character using bytes from a Buffer. +function utf8FillLast(buf) { + var p = this.lastTotal - this.lastNeed; + var r = utf8CheckExtraBytes(this, buf, p); + if (r !== undefined) return r; + if (this.lastNeed <= buf.length) { + buf.copy(this.lastChar, p, 0, this.lastNeed); + return this.lastChar.toString(this.encoding, 0, this.lastTotal); + } + buf.copy(this.lastChar, p, 0, buf.length); + this.lastNeed -= buf.length; +} + +// Returns all complete UTF-8 characters in a Buffer. If the Buffer ended on a +// partial character, the character's bytes are buffered until the required +// number of bytes are available. +function utf8Text(buf, i) { + var total = utf8CheckIncomplete(this, buf, i); + if (!this.lastNeed) return buf.toString('utf8', i); + this.lastTotal = total; + var end = buf.length - (total - this.lastNeed); + buf.copy(this.lastChar, 0, end); + return buf.toString('utf8', i, end); +} + +// For UTF-8, a replacement character for each buffered byte of a (partial) +// character needs to be added to the output. +function utf8End(buf) { + var r = buf && buf.length ? this.write(buf) : ''; + if (this.lastNeed) return r + '\ufffd'.repeat(this.lastTotal - this.lastNeed); + return r; +} + +// UTF-16LE typically needs two bytes per character, but even if we have an even +// number of bytes available, we need to check if we end on a leading/high +// surrogate. In that case, we need to wait for the next two bytes in order to +// decode the last character properly. +function utf16Text(buf, i) { + if ((buf.length - i) % 2 === 0) { + var r = buf.toString('utf16le', i); + if (r) { + var c = r.charCodeAt(r.length - 1); + if (c >= 0xD800 && c <= 0xDBFF) { + this.lastNeed = 2; + this.lastTotal = 4; + this.lastChar[0] = buf[buf.length - 2]; + this.lastChar[1] = buf[buf.length - 1]; + return r.slice(0, -1); + } + } + return r; + } + this.lastNeed = 1; + this.lastTotal = 2; + this.lastChar[0] = buf[buf.length - 1]; + return buf.toString('utf16le', i, buf.length - 1); +} -// detectIncompleteChar determines if there is an incomplete UTF-8 character at -// the end of the given buffer. If so, it sets this.charLength to the byte -// length that character, and sets this.charReceived to the number of bytes -// that are available for this character. -StringDecoder.prototype.detectIncompleteChar = function(buffer) { - // determine how many bytes we have to check at the end of this buffer - var i = (buffer.length >= 3) ? 3 : buffer.length; +// For UTF-16LE we do not explicitly append special replacement characters if we +// end on a partial character, we simply let v8 handle that. +function utf16End(buf) { + var r = buf && buf.length ? this.write(buf) : ''; + if (this.lastNeed) { + var end = this.lastTotal - this.lastNeed; + return r + this.lastChar.toString('utf16le', 0, end); + } + return r; +} - // Figure out if one of the last i bytes of our buffer announces an - // incomplete char. - for (; i > 0; i--) { - var c = buffer[buffer.length - i]; +function base64Text(buf, i) { + var n = (buf.length - i) % 3; + if (n === 0) return buf.toString('base64', i); + this.lastNeed = 3 - n; + this.lastTotal = 3; + if (n === 1) { + this.lastChar[0] = buf[buf.length - 1]; + } else { + this.lastChar[0] = buf[buf.length - 2]; + this.lastChar[1] = buf[buf.length - 1]; + } + return buf.toString('base64', i, buf.length - n); +} - // See http://en.wikipedia.org/wiki/UTF-8#Description +function base64End(buf) { + var r = buf && buf.length ? this.write(buf) : ''; + if (this.lastNeed) return r + this.lastChar.toString('base64', 0, 3 - this.lastNeed); + return r; +} - // 110XXXXX - if (i == 1 && c >> 5 == 0x06) { - this.charLength = 2; - break; - } +// Pass bytes on through for single-byte encodings (e.g. ascii, latin1, hex) +function simpleWrite(buf) { + return buf.toString(this.encoding); +} - // 1110XXXX - if (i <= 2 && c >> 4 == 0x0E) { - this.charLength = 3; - break; - } +function simpleEnd(buf) { + return buf && buf.length ? this.write(buf) : ''; +} +},{"safe-buffer":97}],97:[function(require,module,exports){ +/* eslint-disable node/no-deprecated-api */ +var buffer = require('buffer') +var Buffer = buffer.Buffer - // 11110XXX - if (i <= 3 && c >> 3 == 0x1E) { - this.charLength = 4; - break; - } +// alternative to using Object.keys for old browsers +function copyProps (src, dst) { + for (var key in src) { + dst[key] = src[key] } - this.charReceived = i; -}; +} +if (Buffer.from && Buffer.alloc && Buffer.allocUnsafe && Buffer.allocUnsafeSlow) { + module.exports = buffer +} else { + // Copy properties from require('buffer') + copyProps(buffer, exports) + exports.Buffer = SafeBuffer +} -StringDecoder.prototype.end = function(buffer) { - var res = ''; - if (buffer && buffer.length) - res = this.write(buffer); +function SafeBuffer (arg, encodingOrOffset, length) { + return Buffer(arg, encodingOrOffset, length) +} - if (this.charReceived) { - var cr = this.charReceived; - var buf = this.charBuffer; - var enc = this.encoding; - res += buf.slice(0, cr).toString(enc); - } +// Copy static methods from Buffer +copyProps(Buffer, SafeBuffer) - return res; -}; +SafeBuffer.from = function (arg, encodingOrOffset, length) { + if (typeof arg === 'number') { + throw new TypeError('Argument must not be a number') + } + return Buffer(arg, encodingOrOffset, length) +} -function passThroughWrite(buffer) { - return buffer.toString(this.encoding); +SafeBuffer.alloc = function (size, fill, encoding) { + if (typeof size !== 'number') { + throw new TypeError('Argument must be a number') + } + var buf = Buffer(size) + if (fill !== undefined) { + if (typeof encoding === 'string') { + buf.fill(fill, encoding) + } else { + buf.fill(fill) + } + } else { + buf.fill(0) + } + return buf } -function utf16DetectIncompleteChar(buffer) { - this.charReceived = buffer.length % 2; - this.charLength = this.charReceived ? 2 : 0; +SafeBuffer.allocUnsafe = function (size) { + if (typeof size !== 'number') { + throw new TypeError('Argument must be a number') + } + return Buffer(size) } -function base64DetectIncompleteChar(buffer) { - this.charReceived = buffer.length % 3; - this.charLength = this.charReceived ? 3 : 0; +SafeBuffer.allocUnsafeSlow = function (size) { + if (typeof size !== 'number') { + throw new TypeError('Argument must be a number') + } + return buffer.SlowBuffer(size) } -},{"buffer":44}],81:[function(require,module,exports){ +},{"buffer":43}],98:[function(require,module,exports){ (function (global){ /** @@ -14957,16 +15646,16 @@ function config (name) { } }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{}],82:[function(require,module,exports){ -arguments[4][51][0].apply(exports,arguments) -},{"dup":51}],83:[function(require,module,exports){ +},{}],99:[function(require,module,exports){ +arguments[4][65][0].apply(exports,arguments) +},{"dup":65}],100:[function(require,module,exports){ module.exports = function isBuffer(arg) { return arg && typeof arg === 'object' && typeof arg.copy === 'function' && typeof arg.fill === 'function' && typeof arg.readUInt8 === 'function'; } -},{}],84:[function(require,module,exports){ +},{}],101:[function(require,module,exports){ (function (process,global){ // Copyright Joyent, Inc. and other Node contributors. // @@ -15556,7 +16245,7 @@ function hasOwnProperty(obj, prop) { } }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"./support/isBuffer":83,"_process":67,"inherits":82}]},{},[1]); +},{"./support/isBuffer":100,"_process":81,"inherits":99}]},{},[1]); (function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.chai = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o= TOTAL_MEMORY) { var success = enlargeMemory(); if (!success) { DYNAMICTOP = ret; return 0; } }; return ret; }, + dynamicAlloc: function (size) { var ret = HEAP32[DYNAMICTOP_PTR>>2];var end = (((ret + size + 15)|0) & -16);HEAP32[DYNAMICTOP_PTR>>2] = end;if (end >= TOTAL_MEMORY) {var success = enlargeMemory();if (!success) {HEAP32[DYNAMICTOP_PTR>>2] = ret;return 0;}}return ret;}, alignMemory: function (size,quantum) { var ret = size = Math.ceil((size)/(quantum ? quantum : 16))*(quantum ? quantum : 16); return ret; }, makeBigInt: function (low,high,unsigned) { var ret = (unsigned ? ((+((low>>>0)))+((+((high>>>0)))*4294967296.0)) : ((+((low>>>0)))+((+((high|0)))*4294967296.0))); return ret; }, GLOBAL_BASE: 8, @@ -346,18 +411,10 @@ Module["Runtime"] = Runtime; // Runtime essentials //======================================== -var __THREW__ = 0; // Used in checking for thrown exceptions. - -var ABORT = false; // whether we are quitting the application. no code should run after this. set in exit() and abort() +var ABORT = 0; // whether we are quitting the application. no code should run after this. set in exit() and abort() var EXITSTATUS = 0; -var undef = 0; -// tempInt is used for 32-bit signed values or smaller. tempBigInt is used -// for 32-bit unsigned values or more than 32 bits. TODO: audit all uses of tempInt -var tempValue, tempInt, tempBigInt, tempInt2, tempBigInt2, tempPair, tempBigIntI, tempBigIntR, tempBigIntS, tempBigIntP, tempBigIntD, tempDouble, tempFloat; -var tempI64, tempI64b; -var tempRet0, tempRet1, tempRet2, tempRet3, tempRet4, tempRet5, tempRet6, tempRet7, tempRet8, tempRet9; - +/** @type {function(*, string=)} */ function assert(condition, text) { if (!condition) { abort('Assertion failed: ' + text); @@ -370,9 +427,7 @@ var globalScope = this; function getCFunc(ident) { var func = Module['_' + ident]; // closure exported function if (!func) { - try { - func = eval('_' + ident); // explicit lookup - } catch(e) {} + try { func = eval('_' + ident); } catch(e) {} } assert(func, 'Cannot call unknown function ' + ident + ' (perhaps LLVM optimizations or closure removed it?)'); return func; @@ -400,8 +455,9 @@ var cwrap, ccall; var ret = 0; if (str !== null && str !== undefined && str !== 0) { // null string // at most 4 bytes per UTF-8 code point, +1 for the trailing '\0' - ret = Runtime.stackAlloc((str.length << 2) + 1); - writeStringToMemory(str, ret); + var len = (str.length << 2) + 1; + ret = Runtime.stackAlloc(len); + stringToUTF8(str, ret, len); } return ret; } @@ -409,7 +465,7 @@ var cwrap, ccall; // For fast lookup of conversion functions var toC = {'string' : JSfuncs['stringToC'], 'array' : JSfuncs['arrayToC']}; - // C calling interface. + // C calling interface. ccall = function ccallFunc(ident, returnType, argTypes, args, opts) { var func = getCFunc(ident); var cArgs = []; @@ -439,22 +495,28 @@ var cwrap, ccall; return ret; } - var sourceRegex = /^function\s*\(([^)]*)\)\s*{\s*([^*]*?)[\s;]*(?:return\s*(.*?)[;\s]*)?}$/; + var sourceRegex = /^function\s*[a-zA-Z$_0-9]*\s*\(([^)]*)\)\s*{\s*([^*]*?)[\s;]*(?:return\s*(.*?)[;\s]*)?}$/; function parseJSFunc(jsfunc) { // Match the body and the return value of a javascript function source var parsed = jsfunc.toString().match(sourceRegex).slice(1); return {arguments : parsed[0], body : parsed[1], returnValue: parsed[2]} } - var JSsource = {}; - for (var fun in JSfuncs) { - if (JSfuncs.hasOwnProperty(fun)) { - // Elements of toCsource are arrays of three items: - // the code, and the return value - JSsource[fun] = parseJSFunc(JSfuncs[fun]); + + // sources of useful functions. we create this lazily as it can trigger a source decompression on this entire file + var JSsource = null; + function ensureJSsource() { + if (!JSsource) { + JSsource = {}; + for (var fun in JSfuncs) { + if (JSfuncs.hasOwnProperty(fun)) { + // Elements of toCsource are arrays of three items: + // the code, and the return value + JSsource[fun] = parseJSFunc(JSfuncs[fun]); + } + } } } - cwrap = function cwrap(ident, returnType, argTypes) { argTypes = argTypes || []; var cfunc = getCFunc(ident); @@ -472,6 +534,7 @@ var cwrap, ccall; if (!numericArgs) { // Generate the code needed to convert the arguments from javascript // values to pointers + ensureJSsource(); funcstr += 'var stack = ' + JSsource['stackSave'].body + ';'; for (var i = 0; i < nargs; i++) { var arg = argNames[i], type = argTypes[i]; @@ -479,7 +542,7 @@ var cwrap, ccall; var convertCode = JSsource[type + 'ToC']; // [code, return] funcstr += 'var ' + convertCode.arguments + ' = ' + arg + ';'; funcstr += convertCode.body + ';'; - funcstr += arg + '=' + convertCode.returnValue + ';'; + funcstr += arg + '=(' + convertCode.returnValue + ');'; } } @@ -494,6 +557,7 @@ var cwrap, ccall; } if (!numericArgs) { // If we had a stack, restore it + ensureJSsource(); funcstr += JSsource['stackRestore'].body.replace('()', '(stack)') + ';'; } funcstr += 'return ret})'; @@ -503,6 +567,7 @@ var cwrap, ccall; Module["ccall"] = ccall; Module["cwrap"] = cwrap; +/** @type {function(number, number, string, boolean=)} */ function setValue(ptr, value, type, noSafe) { type = type || 'i8'; if (type.charAt(type.length-1) === '*') type = 'i32'; // pointers are 32-bit @@ -519,7 +584,7 @@ function setValue(ptr, value, type, noSafe) { } Module["setValue"] = setValue; - +/** @type {function(number, string, boolean=)} */ function getValue(ptr, type, noSafe) { type = type || 'i8'; if (type.charAt(type.length-1) === '*') type = 'i32'; // pointers are 32-bit @@ -561,6 +626,7 @@ Module["ALLOC_NONE"] = ALLOC_NONE; // is initial data - if @slab is a number, then this does not matter at all and is // ignored. // @allocator: How to allocate memory, see ALLOC_* +/** @type {function((TypedArray|Array|number), string, number, number=)} */ function allocate(slab, types, allocator, ptr) { var zeroinit, size; if (typeof slab === 'number') { @@ -577,7 +643,7 @@ function allocate(slab, types, allocator, ptr) { if (allocator == ALLOC_NONE) { ret = ptr; } else { - ret = [_malloc, Runtime.stackAlloc, Runtime.staticAlloc, Runtime.dynamicAlloc][allocator === undefined ? ALLOC_STATIC : allocator](Math.max(size, singleType ? 1 : types.length)); + ret = [typeof _malloc === 'function' ? _malloc : Runtime.staticAlloc, Runtime.stackAlloc, Runtime.staticAlloc, Runtime.dynamicAlloc][allocator === undefined ? ALLOC_STATIC : allocator](Math.max(size, singleType ? 1 : types.length)); } if (zeroinit) { @@ -596,7 +662,7 @@ function allocate(slab, types, allocator, ptr) { if (singleType === 'i8') { if (slab.subarray || slab.slice) { - HEAPU8.set(slab, ret); + HEAPU8.set(/** @type {!Uint8Array} */ (slab), ret); } else { HEAPU8.set(new Uint8Array(slab), ret); } @@ -636,12 +702,13 @@ Module["allocate"] = allocate; // Allocate memory during any stage of startup - static memory early on, dynamic memory later, malloc when ready function getMemory(size) { if (!staticSealed) return Runtime.staticAlloc(size); - if ((typeof _sbrk !== 'undefined' && !_sbrk.called) || !runtimeInitialized) return Runtime.dynamicAlloc(size); + if (!runtimeInitialized) return Runtime.dynamicAlloc(size); return _malloc(size); } Module["getMemory"] = getMemory; -function Pointer_stringify(ptr, /* optional */ length) { +/** @type {function(number, number=)} */ +function Pointer_stringify(ptr, length) { if (length === 0 || !ptr) return ''; // TODO: use TextDecoder // Find the length, and check for UTF while doing so @@ -698,39 +765,49 @@ Module["stringToAscii"] = stringToAscii; // Given a pointer 'ptr' to a null-terminated UTF8-encoded string in the given array that contains uint8 values, returns // a copy of that string as a Javascript String object. +var UTF8Decoder = typeof TextDecoder !== 'undefined' ? new TextDecoder('utf8') : undefined; function UTF8ArrayToString(u8Array, idx) { - var u0, u1, u2, u3, u4, u5; + var endPtr = idx; + // TextDecoder needs to know the byte length in advance, it doesn't stop on null terminator by itself. + // Also, use the length info to avoid running tiny strings through TextDecoder, since .subarray() allocates garbage. + while (u8Array[endPtr]) ++endPtr; - var str = ''; - while (1) { - // For UTF8 byte structure, see http://en.wikipedia.org/wiki/UTF-8#Description and https://www.ietf.org/rfc/rfc2279.txt and https://tools.ietf.org/html/rfc3629 - u0 = u8Array[idx++]; - if (!u0) return str; - if (!(u0 & 0x80)) { str += String.fromCharCode(u0); continue; } - u1 = u8Array[idx++] & 63; - if ((u0 & 0xE0) == 0xC0) { str += String.fromCharCode(((u0 & 31) << 6) | u1); continue; } - u2 = u8Array[idx++] & 63; - if ((u0 & 0xF0) == 0xE0) { - u0 = ((u0 & 15) << 12) | (u1 << 6) | u2; - } else { - u3 = u8Array[idx++] & 63; - if ((u0 & 0xF8) == 0xF0) { - u0 = ((u0 & 7) << 18) | (u1 << 12) | (u2 << 6) | u3; + if (endPtr - idx > 16 && u8Array.subarray && UTF8Decoder) { + return UTF8Decoder.decode(u8Array.subarray(idx, endPtr)); + } else { + var u0, u1, u2, u3, u4, u5; + + var str = ''; + while (1) { + // For UTF8 byte structure, see http://en.wikipedia.org/wiki/UTF-8#Description and https://www.ietf.org/rfc/rfc2279.txt and https://tools.ietf.org/html/rfc3629 + u0 = u8Array[idx++]; + if (!u0) return str; + if (!(u0 & 0x80)) { str += String.fromCharCode(u0); continue; } + u1 = u8Array[idx++] & 63; + if ((u0 & 0xE0) == 0xC0) { str += String.fromCharCode(((u0 & 31) << 6) | u1); continue; } + u2 = u8Array[idx++] & 63; + if ((u0 & 0xF0) == 0xE0) { + u0 = ((u0 & 15) << 12) | (u1 << 6) | u2; } else { - u4 = u8Array[idx++] & 63; - if ((u0 & 0xFC) == 0xF8) { - u0 = ((u0 & 3) << 24) | (u1 << 18) | (u2 << 12) | (u3 << 6) | u4; + u3 = u8Array[idx++] & 63; + if ((u0 & 0xF8) == 0xF0) { + u0 = ((u0 & 7) << 18) | (u1 << 12) | (u2 << 6) | u3; } else { - u5 = u8Array[idx++] & 63; - u0 = ((u0 & 1) << 30) | (u1 << 24) | (u2 << 18) | (u3 << 12) | (u4 << 6) | u5; + u4 = u8Array[idx++] & 63; + if ((u0 & 0xFC) == 0xF8) { + u0 = ((u0 & 3) << 24) | (u1 << 18) | (u2 << 12) | (u3 << 6) | u4; + } else { + u5 = u8Array[idx++] & 63; + u0 = ((u0 & 1) << 30) | (u1 << 24) | (u2 << 18) | (u3 << 12) | (u4 << 6) | u5; + } } } - } - if (u0 < 0x10000) { - str += String.fromCharCode(u0); - } else { - var ch = u0 - 0x10000; - str += String.fromCharCode(0xD800 | (ch >> 10), 0xDC00 | (ch & 0x3FF)); + if (u0 < 0x10000) { + str += String.fromCharCode(u0); + } else { + var ch = u0 - 0x10000; + str += String.fromCharCode(0xD800 | (ch >> 10), 0xDC00 | (ch & 0x3FF)); + } } } } @@ -746,12 +823,12 @@ Module["UTF8ToString"] = UTF8ToString; // Copies the given Javascript String object 'str' to the given byte array at address 'outIdx', // encoded in UTF8 form and null-terminated. The copy will require at most str.length*4+1 bytes of space in the HEAP. -// Use the function lengthBytesUTF8() to compute the exact number of bytes (excluding null terminator) that this function will write. +// Use the function lengthBytesUTF8 to compute the exact number of bytes (excluding null terminator) that this function will write. // Parameters: // str: the Javascript string to copy. // outU8Array: the array to copy to. Each index in this array is assumed to be one 8-byte element. // outIdx: The starting offset in the array to begin the copying. -// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null +// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null // terminator, i.e. if maxBytesToWrite=1, only the null terminator will be written and nothing else. // maxBytesToWrite=0 does not write any bytes to the output, not even the null terminator. // Returns the number of bytes written, EXCLUDING the null terminator. @@ -811,7 +888,7 @@ Module["stringToUTF8Array"] = stringToUTF8Array; // Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr', // null-terminated and encoded in UTF8 form. The copy will require at most str.length*4+1 bytes of space in the HEAP. -// Use the function lengthBytesUTF8() to compute the exact number of bytes (excluding null terminator) that this function will write. +// Use the function lengthBytesUTF8 to compute the exact number of bytes (excluding null terminator) that this function will write. // Returns the number of bytes written, EXCLUDING the null terminator. function stringToUTF8(str, outPtr, maxBytesToWrite) { @@ -849,20 +926,31 @@ Module["lengthBytesUTF8"] = lengthBytesUTF8; // Given a pointer 'ptr' to a null-terminated UTF16LE-encoded string in the emscripten HEAP, returns // a copy of that string as a Javascript String object. +var UTF16Decoder = typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-16le') : undefined; function UTF16ToString(ptr) { - var i = 0; + var endPtr = ptr; + // TextDecoder needs to know the byte length in advance, it doesn't stop on null terminator by itself. + // Also, use the length info to avoid running tiny strings through TextDecoder, since .subarray() allocates garbage. + var idx = endPtr >> 1; + while (HEAP16[idx]) ++idx; + endPtr = idx << 1; + + if (endPtr - ptr > 32 && UTF16Decoder) { + return UTF16Decoder.decode(HEAPU8.subarray(ptr, endPtr)); + } else { + var i = 0; - var str = ''; - while (1) { - var codeUnit = HEAP16[(((ptr)+(i*2))>>1)]; - if (codeUnit == 0) - return str; - ++i; - // fromCharCode constructs a character from a UTF-16 code unit, so we can pass the UTF16 string right through. - str += String.fromCharCode(codeUnit); + var str = ''; + while (1) { + var codeUnit = HEAP16[(((ptr)+(i*2))>>1)]; + if (codeUnit == 0) return str; + ++i; + // fromCharCode constructs a character from a UTF-16 code unit, so we can pass the UTF16 string right through. + str += String.fromCharCode(codeUnit); + } } } -Module["UTF16ToString"] = UTF16ToString; + // Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr', // null-terminated and encoded in UTF16 form. The copy will require at most str.length*4+2 bytes of space in the HEAP. @@ -870,7 +958,7 @@ Module["UTF16ToString"] = UTF16ToString; // Parameters: // str: the Javascript string to copy. // outPtr: Byte address in Emscripten HEAP where to write the string to. -// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null +// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null // terminator, i.e. if maxBytesToWrite=2, only the null terminator will be written and nothing else. // maxBytesToWrite<2 does not write any bytes to the output, not even the null terminator. // Returns the number of bytes written, EXCLUDING the null terminator. @@ -894,14 +982,14 @@ function stringToUTF16(str, outPtr, maxBytesToWrite) { HEAP16[((outPtr)>>1)]=0; return outPtr - startPtr; } -Module["stringToUTF16"] = stringToUTF16; + // Returns the number of bytes the given Javascript string takes if encoded as a UTF16 byte array, EXCLUDING the null terminator byte. function lengthBytesUTF16(str) { return str.length*2; } -Module["lengthBytesUTF16"] = lengthBytesUTF16; + function UTF32ToString(ptr) { var i = 0; @@ -922,7 +1010,7 @@ function UTF32ToString(ptr) { } } } -Module["UTF32ToString"] = UTF32ToString; + // Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr', // null-terminated and encoded in UTF32 form. The copy will require at most str.length*4+4 bytes of space in the HEAP. @@ -930,7 +1018,7 @@ Module["UTF32ToString"] = UTF32ToString; // Parameters: // str: the Javascript string to copy. // outPtr: Byte address in Emscripten HEAP where to write the string to. -// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null +// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null // terminator, i.e. if maxBytesToWrite=4, only the null terminator will be written and nothing else. // maxBytesToWrite<4 does not write any bytes to the output, not even the null terminator. // Returns the number of bytes written, EXCLUDING the null terminator. @@ -959,7 +1047,7 @@ function stringToUTF32(str, outPtr, maxBytesToWrite) { HEAP32[((outPtr)>>2)]=0; return outPtr - startPtr; } -Module["stringToUTF32"] = stringToUTF32; + // Returns the number of bytes the given Javascript string takes if encoded as a UTF16 byte array, EXCLUDING the null terminator byte. @@ -975,185 +1063,45 @@ function lengthBytesUTF32(str) { return len; } -Module["lengthBytesUTF32"] = lengthBytesUTF32; + function demangle(func) { - var hasLibcxxabi = !!Module['___cxa_demangle']; - if (hasLibcxxabi) { + var __cxa_demangle_func = Module['___cxa_demangle'] || Module['__cxa_demangle']; + if (__cxa_demangle_func) { try { - var buf = _malloc(func.length); - writeStringToMemory(func.substr(1), buf); + var s = + func.substr(1); + var len = lengthBytesUTF8(s)+1; + var buf = _malloc(len); + stringToUTF8(s, buf, len); var status = _malloc(4); - var ret = Module['___cxa_demangle'](buf, 0, 0, status); + var ret = __cxa_demangle_func(buf, 0, 0, status); if (getValue(status, 'i32') === 0 && ret) { return Pointer_stringify(ret); } - // otherwise, libcxxabi failed, we can try ours which may return a partial result + // otherwise, libcxxabi failed } catch(e) { - // failure when using libcxxabi, we can try ours which may return a partial result + // ignore problems here } finally { if (buf) _free(buf); if (status) _free(status); if (ret) _free(ret); } + // failure when using libcxxabi, don't demangle + return func; } - var i = 3; - // params, etc. - var basicTypes = { - 'v': 'void', - 'b': 'bool', - 'c': 'char', - 's': 'short', - 'i': 'int', - 'l': 'long', - 'f': 'float', - 'd': 'double', - 'w': 'wchar_t', - 'a': 'signed char', - 'h': 'unsigned char', - 't': 'unsigned short', - 'j': 'unsigned int', - 'm': 'unsigned long', - 'x': 'long long', - 'y': 'unsigned long long', - 'z': '...' - }; - var subs = []; - var first = true; - function dump(x) { - //return; - if (x) Module.print(x); - Module.print(func); - var pre = ''; - for (var a = 0; a < i; a++) pre += ' '; - Module.print (pre + '^'); - } - function parseNested() { - i++; - if (func[i] === 'K') i++; // ignore const - var parts = []; - while (func[i] !== 'E') { - if (func[i] === 'S') { // substitution - i++; - var next = func.indexOf('_', i); - var num = func.substring(i, next) || 0; - parts.push(subs[num] || '?'); - i = next+1; - continue; - } - if (func[i] === 'C') { // constructor - parts.push(parts[parts.length-1]); - i += 2; - continue; - } - var size = parseInt(func.substr(i)); - var pre = size.toString().length; - if (!size || !pre) { i--; break; } // counter i++ below us - var curr = func.substr(i + pre, size); - parts.push(curr); - subs.push(curr); - i += pre + size; - } - i++; // skip E - return parts; - } - function parse(rawList, limit, allowVoid) { // main parser - limit = limit || Infinity; - var ret = '', list = []; - function flushList() { - return '(' + list.join(', ') + ')'; - } - var name; - if (func[i] === 'N') { - // namespaced N-E - name = parseNested().join('::'); - limit--; - if (limit === 0) return rawList ? [name] : name; - } else { - // not namespaced - if (func[i] === 'K' || (first && func[i] === 'L')) i++; // ignore const and first 'L' - var size = parseInt(func.substr(i)); - if (size) { - var pre = size.toString().length; - name = func.substr(i + pre, size); - i += pre + size; - } - } - first = false; - if (func[i] === 'I') { - i++; - var iList = parse(true); - var iRet = parse(true, 1, true); - ret += iRet[0] + ' ' + name + '<' + iList.join(', ') + '>'; - } else { - ret = name; - } - paramLoop: while (i < func.length && limit-- > 0) { - //dump('paramLoop'); - var c = func[i++]; - if (c in basicTypes) { - list.push(basicTypes[c]); - } else { - switch (c) { - case 'P': list.push(parse(true, 1, true)[0] + '*'); break; // pointer - case 'R': list.push(parse(true, 1, true)[0] + '&'); break; // reference - case 'L': { // literal - i++; // skip basic type - var end = func.indexOf('E', i); - var size = end - i; - list.push(func.substr(i, size)); - i += size + 2; // size + 'EE' - break; - } - case 'A': { // array - var size = parseInt(func.substr(i)); - i += size.toString().length; - if (func[i] !== '_') throw '?'; - i++; // skip _ - list.push(parse(true, 1, true)[0] + ' [' + size + ']'); - break; - } - case 'E': break paramLoop; - default: ret += '?' + c; break paramLoop; - } - } - } - if (!allowVoid && list.length === 1 && list[0] === 'void') list = []; // avoid (void) - if (rawList) { - if (ret) { - list.push(ret + '?'); - } - return list; - } else { - return ret + flushList(); - } - } - var parsed = func; - try { - // Special-case the entry point, since its name differs from other name mangling. - if (func == 'Object._main' || func == '_main') { - return 'main()'; - } - if (typeof func === 'number') func = Pointer_stringify(func); - if (func[0] !== '_') return func; - if (func[1] !== '_') return func; // C function - if (func[2] !== 'Z') return func; - switch (func[3]) { - case 'n': return 'operator new()'; - case 'd': return 'operator delete()'; - } - parsed = parse(); - } catch(e) { - parsed += '?'; - } - if (parsed.indexOf('?') >= 0 && !hasLibcxxabi) { - Runtime.warnOnce('warning: a problem occurred in builtin C++ name demangling; build with -s DEMANGLE_SUPPORT=1 to link in libcxxabi demangling'); - } - return parsed; + Runtime.warnOnce('warning: build with -s DEMANGLE_SUPPORT=1 to link in libcxxabi demangling'); + return func; } function demangleAll(text) { - return text.replace(/__Z[\w\d_]+/g, function(x) { var y = demangle(x); return x === y ? x : (x + ' [' + y + ']') }); + var regex = + /__Z[\w\d_]+/g; + return text.replace(regex, + function(x) { + var y = demangle(x); + return x === y ? x : (x + ' [' + y + ']'); + }); } function jsStackTrace() { @@ -1174,33 +1122,75 @@ function jsStackTrace() { } function stackTrace() { - return demangleAll(jsStackTrace()); + var js = jsStackTrace(); + if (Module['extraStackTrace']) js += '\n' + Module['extraStackTrace'](); + return demangleAll(js); } Module["stackTrace"] = stackTrace; // Memory management -var PAGE_SIZE = 4096; +var PAGE_SIZE = 16384; +var WASM_PAGE_SIZE = 65536; +var ASMJS_PAGE_SIZE = 16777216; +var MIN_TOTAL_MEMORY = 16777216; -function alignMemoryPage(x) { - if (x % 4096 > 0) { - x += (4096 - (x % 4096)); +function alignUp(x, multiple) { + if (x % multiple > 0) { + x += multiple - (x % multiple); } return x; } -var HEAP; -var HEAP8, HEAPU8, HEAP16, HEAPU16, HEAP32, HEAPU32, HEAPF32, HEAPF64; +var HEAP, +/** @type {ArrayBuffer} */ + buffer, +/** @type {Int8Array} */ + HEAP8, +/** @type {Uint8Array} */ + HEAPU8, +/** @type {Int16Array} */ + HEAP16, +/** @type {Uint16Array} */ + HEAPU16, +/** @type {Int32Array} */ + HEAP32, +/** @type {Uint32Array} */ + HEAPU32, +/** @type {Float32Array} */ + HEAPF32, +/** @type {Float64Array} */ + HEAPF64; + +function updateGlobalBuffer(buf) { + Module['buffer'] = buffer = buf; +} + +function updateGlobalBufferViews() { + Module['HEAP8'] = HEAP8 = new Int8Array(buffer); + Module['HEAP16'] = HEAP16 = new Int16Array(buffer); + Module['HEAP32'] = HEAP32 = new Int32Array(buffer); + Module['HEAPU8'] = HEAPU8 = new Uint8Array(buffer); + Module['HEAPU16'] = HEAPU16 = new Uint16Array(buffer); + Module['HEAPU32'] = HEAPU32 = new Uint32Array(buffer); + Module['HEAPF32'] = HEAPF32 = new Float32Array(buffer); + Module['HEAPF64'] = HEAPF64 = new Float64Array(buffer); +} + +var STATIC_BASE, STATICTOP, staticSealed; // static area +var STACK_BASE, STACKTOP, STACK_MAX; // stack area +var DYNAMIC_BASE, DYNAMICTOP_PTR; // dynamic area handled by sbrk + + STATIC_BASE = STATICTOP = STACK_BASE = STACKTOP = STACK_MAX = DYNAMIC_BASE = DYNAMICTOP_PTR = 0; + staticSealed = false; -var STATIC_BASE = 0, STATICTOP = 0, staticSealed = false; // static area -var STACK_BASE = 0, STACKTOP = 0, STACK_MAX = 0; // stack area -var DYNAMIC_BASE = 0, DYNAMICTOP = 0; // dynamic area handled by sbrk function abortOnCannotGrowMemory() { - abort('Cannot enlarge memory arrays. Either (1) compile with -s TOTAL_MEMORY=X with X higher than the current value ' + TOTAL_MEMORY + ', (2) compile with -s ALLOW_MEMORY_GROWTH=1 which adjusts the size at runtime but prevents some optimizations, (3) set Module.TOTAL_MEMORY to a higher value before the program runs, or if you want malloc to return NULL (0) instead of this abort, compile with -s ABORTING_MALLOC=0 '); + abort('Cannot enlarge memory arrays. Either (1) compile with -s TOTAL_MEMORY=X with X higher than the current value ' + TOTAL_MEMORY + ', (2) compile with -s ALLOW_MEMORY_GROWTH=1 which allows increasing the size at runtime but prevents some optimizations, (3) set Module.TOTAL_MEMORY to a higher value before the program runs, or (4) if you want malloc to return NULL (0) instead of this abort, compile with -s ABORTING_MALLOC=0 '); } + function enlargeMemory() { abortOnCannotGrowMemory(); } @@ -1208,42 +1198,32 @@ function enlargeMemory() { var TOTAL_STACK = Module['TOTAL_STACK'] || 5242880; var TOTAL_MEMORY = Module['TOTAL_MEMORY'] || 16777216; - -var totalMemory = 64*1024; -while (totalMemory < TOTAL_MEMORY || totalMemory < 2*TOTAL_STACK) { - if (totalMemory < 16*1024*1024) { - totalMemory *= 2; - } else { - totalMemory += 16*1024*1024 - } -} -if (totalMemory !== TOTAL_MEMORY) { - TOTAL_MEMORY = totalMemory; -} +if (TOTAL_MEMORY < TOTAL_STACK) Module.printErr('TOTAL_MEMORY should be larger than TOTAL_STACK, was ' + TOTAL_MEMORY + '! (TOTAL_STACK=' + TOTAL_STACK + ')'); // Initialize the runtime's memory -// check for full engine support (use string 'subarray' to avoid closure compiler confusion) -assert(typeof Int32Array !== 'undefined' && typeof Float64Array !== 'undefined' && !!(new Int32Array(1)['subarray']) && !!(new Int32Array(1)['set']), - 'JS engine does not provide full typed array support'); -var buffer; +// Use a provided buffer, if there is one, or else allocate a new one +if (Module['buffer']) { + buffer = Module['buffer']; +} else { + // Use a WebAssembly memory where available + { + buffer = new ArrayBuffer(TOTAL_MEMORY); + } +} +updateGlobalBufferViews(); -buffer = new ArrayBuffer(TOTAL_MEMORY); -HEAP8 = new Int8Array(buffer); -HEAP16 = new Int16Array(buffer); -HEAP32 = new Int32Array(buffer); -HEAPU8 = new Uint8Array(buffer); -HEAPU16 = new Uint16Array(buffer); -HEAPU32 = new Uint32Array(buffer); -HEAPF32 = new Float32Array(buffer); -HEAPF64 = new Float64Array(buffer); +function getTotalMemory() { + return TOTAL_MEMORY; +} // Endianness check (note: assumes compiler arch was little-endian) -HEAP32[0] = 255; -assert(HEAPU8[0] === 255 && HEAPU8[3] === 0, 'Typed arrays 2 must be run on a little-endian system'); + HEAP32[0] = 0x63736d65; /* 'emsc' */ +HEAP16[1] = 0x6373; +if (HEAPU8[2] !== 0x73 || HEAPU8[3] !== 0x63) throw 'Runtime error: expected the system to be little-endian!'; Module['HEAP'] = HEAP; Module['buffer'] = buffer; @@ -1266,9 +1246,9 @@ function callRuntimeCallbacks(callbacks) { var func = callback.func; if (typeof func === 'number') { if (callback.arg === undefined) { - Runtime.dynCall('v', func); + Module['dynCall_v'](func); } else { - Runtime.dynCall('vi', func, [callback.arg]); + Module['dynCall_vi'](func, callback.arg); } } else { func(callback.arg === undefined ? null : callback.arg); @@ -1350,8 +1330,8 @@ Module["addOnPostRun"] = addOnPostRun; // Tools - -function intArrayFromString(stringy, dontAddNull, length /* optional */) { +/** @type {function(string, boolean=, number=)} */ +function intArrayFromString(stringy, dontAddNull, length) { var len = length > 0 ? length : lengthBytesUTF8(stringy)+1; var u8array = new Array(len); var numBytesWritten = stringToUTF8Array(stringy, u8array, 0, u8array.length); @@ -1373,21 +1353,29 @@ function intArrayToString(array) { } Module["intArrayToString"] = intArrayToString; +// Deprecated: This function should not be called because it is unsafe and does not provide +// a maximum length limit of how many bytes it is allowed to write. Prefer calling the +// function stringToUTF8Array() instead, which takes in a maximum length that can be used +// to be secure from out of bounds writes. +/** @deprecated */ function writeStringToMemory(string, buffer, dontAddNull) { - var array = intArrayFromString(string, dontAddNull); - var i = 0; - while (i < array.length) { - var chr = array[i]; - HEAP8[(((buffer)+(i))>>0)]=chr; - i = i + 1; + Runtime.warnOnce('writeStringToMemory is deprecated and should not be called! Use stringToUTF8() instead!'); + + var /** @type {number} */ lastChar, /** @type {number} */ end; + if (dontAddNull) { + // stringToUTF8Array always appends null. If we don't want to do that, remember the + // character that existed at the location where the null will be placed, and restore + // that after the write (below). + end = buffer + lengthBytesUTF8(string); + lastChar = HEAP8[end]; } + stringToUTF8(string, buffer, Infinity); + if (dontAddNull) HEAP8[end] = lastChar; // Restore the value under the null character. } Module["writeStringToMemory"] = writeStringToMemory; function writeArrayToMemory(array, buffer) { - for (var i = 0; i < array.length; i++) { - HEAP8[((buffer++)>>0)]=array[i]; - } + HEAP8.set(array, buffer); } Module["writeArrayToMemory"] = writeArrayToMemory; @@ -1442,6 +1430,11 @@ if (!Math['clz32']) Math['clz32'] = function(x) { }; Math.clz32 = Math['clz32'] +if (!Math['trunc']) Math['trunc'] = function(x) { + return x < 0 ? Math.ceil(x) : Math.floor(x); +}; +Math.trunc = Math['trunc']; + var Math_abs = Math.abs; var Math_cos = Math.cos; var Math_sin = Math.sin; @@ -1458,8 +1451,10 @@ var Math_floor = Math.floor; var Math_pow = Math.pow; var Math_imul = Math.imul; var Math_fround = Math.fround; +var Math_round = Math.round; var Math_min = Math.min; var Math_clz32 = Math.clz32; +var Math_trunc = Math.trunc; // A counter of dependencies for calling run(). If we need to // do asynchronous work before running, increment this and @@ -1512,6 +1507,9 @@ var memoryInitializer = null; + + + // === Body === var ASM_CONSTS = []; @@ -1519,25 +1517,23 @@ var ASM_CONSTS = []; -STATIC_BASE = 8; +STATIC_BASE = Runtime.GLOBAL_BASE; + +STATICTOP = STATIC_BASE + 34528; +/* global initializers */ __ATINIT__.push(); -STATICTOP = STATIC_BASE + 34240; - /* global initializers */ __ATINIT__.push(); - /* memory initializer */ allocate([8,201,188,243,103,230,9,106,59,167,202,132,133,174,103,187,43,248,148,254,114,243,110,60,241,54,29,95,58,245,79,165,209,130,230,173,127,82,14,81,31,108,62,43,140,104,5,155,107,189,65,251,171,217,131,31,121,33,126,19,25,205,224,91,34,174,40,215,152,47,138,66,205,101,239,35,145,68,55,113,47,59,77,236,207,251,192,181,188,219,137,129,165,219,181,233,56,181,72,243,91,194,86,57,25,208,5,182,241,17,241,89,155,79,25,175,164,130,63,146,24,129,109,218,213,94,28,171,66,2,3,163,152,170,7,216,190,111,112,69,1,91,131,18,140,178,228,78,190,133,49,36,226,180,255,213,195,125,12,85,111,137,123,242,116,93,190,114,177,150,22,59,254,177,222,128,53,18,199,37,167,6,220,155,148,38,105,207,116,241,155,193,210,74,241,158,193,105,155,228,227,37,79,56,134,71,190,239,181,213,140,139,198,157,193,15,101,156,172,119,204,161,12,36,117,2,43,89,111,44,233,45,131,228,166,110,170,132,116,74,212,251,65,189,220,169,176,92,181,83,17,131,218,136,249,118,171,223,102,238,82,81,62,152,16,50,180,45,109,198,49,168,63,33,251,152,200,39,3,176,228,14,239,190,199,127,89,191,194,143,168,61,243,11,224,198,37,167,10,147,71,145,167,213,111,130,3,224,81,99,202,6,112,110,14,10,103,41,41,20,252,47,210,70,133,10,183,39,38,201,38,92,56,33,27,46,237,42,196,90,252,109,44,77,223,179,149,157,19,13,56,83,222,99,175,139,84,115,10,101,168,178,119,60,187,10,106,118,230,174,237,71,46,201,194,129,59,53,130,20,133,44,114,146,100,3,241,76,161,232,191,162,1,48,66,188,75,102,26,168,145,151,248,208,112,139,75,194,48,190,84,6,163,81,108,199,24,82,239,214,25,232,146,209,16,169,101,85,36,6,153,214,42,32,113,87,133,53,14,244,184,209,187,50,112,160,106,16,200,208,210,184,22,193,164,25,83,171,65,81,8,108,55,30,153,235,142,223,76,119,72,39,168,72,155,225,181,188,176,52,99,90,201,197,179,12,28,57,203,138,65,227,74,170,216,78,115,227,99,119,79,202,156,91,163,184,178,214,243,111,46,104,252,178,239,93,238,130,143,116,96,47,23,67,111,99,165,120,114,171,240,161,20,120,200,132,236,57,100,26,8,2,199,140,40,30,99,35,250,255,190,144,233,189,130,222,235,108,80,164,21,121,198,178,247,163,249,190,43,83,114,227,242,120,113,198,156,97,38,234,206,62,39,202,7,194,192,33,199,184,134,209,30,235,224,205,214,125,218,234,120,209,110,238,127,79,125,245,186,111,23,114,170,103,240,6,166,152,200,162,197,125,99,10,174,13,249,190,4,152,63,17,27,71,28,19,53,11,113,27,132,125,4,35,245,119,219,40,147,36,199,64,123,171,202,50,188,190,201,21,10,190,158,60,76,13,16,156,196,103,29,67,182,66,62,203,190,212,197,76,42,126,101,252,156,41,127,89,236,250,214,58,171,111,203,95,23,88,71,74,140,25,68,108,133,59,140,1,189,241,36,255,248,37,195,1,96,220,55,0,183,76,62,255,195,66,61,0,50,76,164,1,225,164,76,255,76,61,163,255,117,62,31,0,81,145,64,255,118,65,14,0,162,115,214,255,6,138,46,0,124,230,244,255,10,138,143,0,52,26,194,0,184,244,76,0,129,143,41,1,190,244,19,255,123,170,122,255,98,129,68,0,121,213,147,0,86,101,30,255,161,103,155,0,140,89,67,255,239,229,190,1,67,11,181,0,198,240,137,254,238,69,188,255,67,151,238,0,19,42,108,255,229,85,113,1,50,68,135,255,17,106,9,0,50,103,1,255,80,1,168,1,35,152,30,255,16,168,185,1,56,89,232,255,101,210,252,0,41,250,71,0,204,170,79,255,14,46,239,255,80,77,239,0,189,214,75,255,17,141,249,0,38,80,76,255,190,85,117,0,86,228,170,0,156,216,208,1,195,207,164,255,150,66,76,255,175,225,16,255,141,80,98,1,76,219,242,0,198,162,114,0,46,218,152,0,155,43,241,254,155,160,104,255,51,187,165,0,2,17,175,0,66,84,160,1,247,58,30,0,35,65,53,254,69,236,191,0,45,134,245,1,163,123,221,0,32,110,20,255,52,23,165,0,186,214,71,0,233,176,96,0,242,239,54,1,57,89,138,0,83,0,84,255,136,160,100,0,92,142,120,254,104,124,190,0,181,177,62,255,250,41,85,0,152,130,42,1,96,252,246,0,151,151,63,254,239,133,62,0,32,56,156,0,45,167,189,255,142,133,179,1,131,86,211,0,187,179,150,254,250,170,14,255,210,163,78,0,37,52,151,0,99,77,26,0,238,156,213,255,213,192,209,1,73,46,84,0,20,65,41,1,54,206,79,0,201,131,146,254,170,111,24,255,177,33,50,254,171,38,203,255,78,247,116,0,209,221,153,0,133,128,178,1,58,44,25,0,201,39,59,1,189,19,252,0,49,229,210,1,117,187,117,0,181,179,184,1,0,114,219,0,48,94,147,0,245,41,56,0,125,13,204,254,244,173,119,0,44,221,32,254,84,234,20,0,249,160,198,1,236,126,234,255,47,99,168,254,170,226,153,255,102,179,216,0,226,141,122,255,122,66,153,254,182,245,134,0,227,228,25,1,214,57,235,255,216,173,56,255,181,231,210,0,119,128,157,255,129,95,136,255,110,126,51,0,2,169,183,255,7,130,98,254,69,176,94,255,116,4,227,1,217,242,145,255,202,173,31,1,105,1,39,255,46,175,69,0,228,47,58,255,215,224,69,254,207,56,69,255,16,254,139,255,23,207,212,255,202,20,126,255,95,213,96,255,9,176,33,0,200,5,207,255,241,42,128,254,35,33,192,255,248,229,196,1,129,17,120,0,251,103,151,255,7,52,112,255,140,56,66,255,40,226,245,255,217,70,37,254,172,214,9,255,72,67,134,1,146,192,214,255,44,38,112,0,68,184,75,255,206,90,251,0,149,235,141,0,181,170,58,0,116,244,239,0,92,157,2,0,102,173,98,0,233,137,96,1,127,49,203,0,5,155,148,0,23,148,9,255,211,122,12,0,34,134,26,255,219,204,136,0,134,8,41,255,224,83,43,254,85,25,247,0,109,127,0,254,169,136,48,0,238,119,219,255,231,173,213,0,206,18,254,254,8,186,7,255,126,9,7,1,111,42,72,0,111,52,236,254,96,63,141,0,147,191,127,254,205,78,192,255,14,106,237,1,187,219,76,0,175,243,187,254,105,89,173,0,85,25,89,1,162,243,148,0,2,118,209,254,33,158,9,0,139,163,46,255,93,70,40,0,108,42,142,254,111,252,142,255,155,223,144,0,51,229,167,255,73,252,155,255,94,116,12,255,152,160,218,255,156,238,37,255,179,234,207,255,197,0,179,255,154,164,141,0,225,196,104,0,10,35,25,254,209,212,242,255,97,253,222,254,184,101,229,0,222,18,127,1,164,136,135,255,30,207,140,254,146,97,243,0,129,192,26,254,201,84,33,255,111,10,78,255,147,81,178,255,4,4,24,0,161,238,215,255,6,141,33,0,53,215,14,255,41,181,208,255,231,139,157,0,179,203,221,255,255,185,113,0,189,226,172,255,113,66,214,255,202,62,45,255,102,64,8,255,78,174,16,254,133,117,68,255,182,120,89,255,133,114,211,0,189,110,21,255,15,10,106,0,41,192,1,0,152,232,121,255,188,60,160,255,153,113,206,255,0,183,226,254,180,13,72,255,176,160,14,254,211,201,134,255,158,24,143,0,127,105,53,0,96,12,189,0,167,215,251,255,159,76,128,254,106,101,225,255,30,252,4,0,146,12,174,0,89,241,178,254,10,229,166,255,123,221,42,254,30,20,212,0,82,128,3,0,48,209,243,0,119,121,64,255,50,227,156,255,0,110,197,1,103,27,144,0,133,59,140,1,189,241,36,255,248,37,195,1,96,220,55,0,183,76,62,255,195,66,61,0,50,76,164,1,225,164,76,255,76,61,163,255,117,62,31,0,81,145,64,255,118,65,14,0,162,115,214,255,6,138,46,0,124,230,244,255,10,138,143,0,52,26,194,0,184,244,76,0,129,143,41,1,190,244,19,255,123,170,122,255,98,129,68,0,121,213,147,0,86,101,30,255,161,103,155,0,140,89,67,255,239,229,190,1,67,11,181,0,198,240,137,254,238,69,188,255,234,113,60,255,37,255,57,255,69,178,182,254,128,208,179,0,118,26,125,254,3,7,214,255,241,50,77,255,85,203,197,255,211,135,250,255,25,48,100,255,187,213,180,254,17,88,105,0,83,209,158,1,5,115,98,0,4,174,60,254,171,55,110,255,217,181,17,255,20,188,170,0,146,156,102,254,87,214,174,255,114,122,155,1,233,44,170,0,127,8,239,1,214,236,234,0,175,5,219,0,49,106,61,255,6,66,208,255,2,106,110,255,81,234,19,255,215,107,192,255,67,151,238,0,19,42,108,255,229,85,113,1,50,68,135,255,17,106,9,0,50,103,1,255,80,1,168,1,35,152,30,255,16,168,185,1,56,89,232,255,101,210,252,0,41,250,71,0,204,170,79,255,14,46,239,255,80,77,239,0,189,214,75,255,17,141,249,0,38,80,76,255,190,85,117,0,86,228,170,0,156,216,208,1,195,207,164,255,150,66,76,255,175,225,16,255,141,80,98,1,76,219,242,0,198,162,114,0,46,218,152,0,155,43,241,254,155,160,104,255,178,9,252,254,100,110,212,0,14,5,167,0,233,239,163,255,28,151,157,1,101,146,10,255,254,158,70,254,71,249,228,0,88,30,50,0,68,58,160,255,191,24,104,1,129,66,129,255,192,50,85,255,8,179,138,255,38,250,201,0,115,80,160,0,131,230,113,0,125,88,147,0,90,68,199,0,253,76,158,0,28,255,118,0,113,250,254,0,66,75,46,0,230,218,43,0,229,120,186,1,148,68,43,0,136,124,238,1,187,107,197,255,84,53,246,255,51,116,254,255,51,187,165,0,2,17,175,0,66,84,160,1,247,58,30,0,35,65,53,254,69,236,191,0,45,134,245,1,163,123,221,0,32,110,20,255,52,23,165,0,186,214,71,0,233,176,96,0,242,239,54,1,57,89,138,0,83,0,84,255,136,160,100,0,92,142,120,254,104,124,190,0,181,177,62,255,250,41,85,0,152,130,42,1,96,252,246,0,151,151,63,254,239,133,62,0,32,56,156,0,45,167,189,255,142,133,179,1,131,86,211,0,187,179,150,254,250,170,14,255,68,113,21,255,222,186,59,255,66,7,241,1,69,6,72,0,86,156,108,254,55,167,89,0,109,52,219,254,13,176,23,255,196,44,106,255,239,149,71,255,164,140,125,255,159,173,1,0,51,41,231,0,145,62,33,0,138,111,93,1,185,83,69,0,144,115,46,0,97,151,16,255,24,228,26,0,49,217,226,0,113,75,234,254,193,153,12,255,182,48,96,255,14,13,26,0,128,195,249,254,69,193,59,0,132,37,81,254,125,106,60,0,214,240,169,1,164,227,66,0,210,163,78,0,37,52,151,0,99,77,26,0,238,156,213,255,213,192,209,1,73,46,84,0,20,65,41,1,54,206,79,0,201,131,146,254,170,111,24,255,177,33,50,254,171,38,203,255,78,247,116,0,209,221,153,0,133,128,178,1,58,44,25,0,201,39,59,1,189,19,252,0,49,229,210,1,117,187,117,0,181,179,184,1,0,114,219,0,48,94,147,0,245,41,56,0,125,13,204,254,244,173,119,0,44,221,32,254,84,234,20,0,249,160,198,1,236,126,234,255,143,62,221,0,129,89,214,255,55,139,5,254,68,20,191,255,14,204,178,1,35,195,217,0,47,51,206,1,38,246,165,0,206,27,6,254,158,87,36,0,217,52,146,255,125,123,215,255,85,60,31,255,171,13,7,0,218,245,88,254,252,35,60,0,55,214,160,255,133,101,56,0,224,32,19,254,147,64,234,0,26,145,162,1,114,118,125,0,248,252,250,0,101,94,196,255,198,141,226,254,51,42,182,0,135,12,9,254,109,172,210,255,197,236,194,1,241,65,154,0,48,156,47,255,153,67,55,255,218,165,34,254,74,180,179,0,218,66,71,1,88,122,99,0,212,181,219,255,92,42,231,255,239,0,154,0,245,77,183,255,94,81,170,1,18,213,216,0,171,93,71,0,52,94,248,0,18,151,161,254,197,209,66,255,174,244,15,254,162,48,183,0,49,61,240,254,182,93,195,0,199,228,6,1,200,5,17,255,137,45,237,255,108,148,4,0,90,79,237,255,39,63,77,255,53,82,207,1,142,22,118,255,101,232,18,1,92,26,67,0,5,200,88,255,33,168,138,255,149,225,72,0,2,209,27,255,44,245,168,1,220,237,17,255,30,211,105,254,141,238,221,0,128,80,245,254,111,254,14,0,222,95,190,1,223,9,241,0,146,76,212,255,108,205,104,255,63,117,153,0,144,69,48,0,35,228,111,0,192,33,193,255,112,214,190,254,115,152,151,0,23,102,88,0,51,74,248,0,226,199,143,254,204,162,101,255,208,97,189,1,245,104,18,0,230,246,30,255,23,148,69,0,110,88,52,254,226,181,89,255,208,47,90,254,114,161,80,255,33,116,248,0,179,152,87,255,69,144,177,1,88,238,26,255,58,32,113,1,1,77,69,0,59,121,52,255,152,238,83,0,52,8,193,0,231,39,233,255,199,34,138,0,222,68,173,0,91,57,242,254,220,210,127,255,192,7,246,254,151,35,187,0,195,236,165,0,111,93,206,0,212,247,133,1,154,133,209,255,155,231,10,0,64,78,38,0,122,249,100,1,30,19,97,255,62,91,249,1,248,133,77,0,197,63,168,254,116,10,82,0,184,236,113,254,212,203,194,255,61,100,252,254,36,5,202,255,119,91,153,255,129,79,29,0,103,103,171,254,237,215,111,255,216,53,69,0,239,240,23,0,194,149,221,255,38,225,222,0,232,255,180,254,118,82,133,255,57,209,177,1,139,232,133,0,158,176,46,254,194,115,46,0,88,247,229,1,28,103,191,0,221,222,175,254,149,235,44,0,151,228,25,254,218,105,103,0,142,85,210,0,149,129,190,255,213,65,94,254,117,134,224,255,82,198,117,0,157,221,220,0,163,101,36,0,197,114,37,0,104,172,166,254,11,182,0,0,81,72,188,255,97,188,16,255,69,6,10,0,199,147,145,255,8,9,115,1,65,214,175,255,217,173,209,0,80,127,166,0,247,229,4,254,167,183,124,255,90,28,204,254,175,59,240,255,11,41,248,1,108,40,51,255,144,177,195,254,150,250,126,0,138,91,65,1,120,60,222,255,245,193,239,0,29,214,189,255,128,2,25,0,80,154,162,0,77,220,107,1,234,205,74,255,54,166,103,255,116,72,9,0,228,94,47,255,30,200,25,255,35,214,89,255,61,176,140,255,83,226,163,255,75,130,172,0,128,38,17,0,95,137,152,255,215,124,159,1,79,93,0,0,148,82,157,254,195,130,251,255,40,202,76,255,251,126,224,0,157,99,62,254,207,7,225,255,96,68,195,0,140,186,157,255,131,19,231,255,42,128,254,0,52,219,61,254,102,203,72,0,141,7,11,255,186,164,213,0,31,122,119,0,133,242,145,0,208,252,232,255,91,213,182,255,143,4,250,254,249,215,74,0,165,30,111,1,171,9,223,0,229,123,34,1,92,130,26,255,77,155,45,1,195,139,28,255,59,224,78,0,136,17,247,0,108,121,32,0,79,250,189,255,96,227,252,254,38,241,62,0,62,174,125,255,155,111,93,255,10,230,206,1,97,197,40,255,0,49,57,254,65,250,13,0,18,251,150,255,220,109,210,255,5,174,166,254,44,129,189,0,235,35,147,255,37,247,141,255,72,141,4,255,103,107,255,0,247,90,4,0,53,44,42,0,2,30,240,0,4,59,63,0,88,78,36,0,113,167,180,0,190,71,193,255,199,158,164,255,58,8,172,0,77,33,12,0,65,63,3,0,153,77,33,255,172,254,102,1,228,221,4,255,87,30,254,1,146,41,86,255,138,204,239,254,108,141,17,255,187,242,135,0,210,208,127,0,68,45,14,254,73,96,62,0,81,60,24,255,170,6,36,255,3,249,26,0,35,213,109,0,22,129,54,255,21,35,225,255,234,61,56,255,58,217,6,0,143,124,88,0,236,126,66,0,209,38,183,255,34,238,6,255,174,145,102,0,95,22,211,0,196,15,153,254,46,84,232,255,117,34,146,1,231,250,74,255,27,134,100,1,92,187,195,255,170,198,112,0,120,28,42,0,209,70,67,0,29,81,31,0,29,168,100,1,169,173,160,0,107,35,117,0,62,96,59,255,81,12,69,1,135,239,190,255,220,252,18,0,163,220,58,255,137,137,188,255,83,102,109,0,96,6,76,0,234,222,210,255,185,174,205,1,60,158,213,255,13,241,214,0,172,129,140,0,93,104,242,0,192,156,251,0,43,117,30,0,225,81,158,0,127,232,218,0,226,28,203,0,233,27,151,255,117,43,5,255,242,14,47,255,33,20,6,0,137,251,44,254,27,31,245,255,183,214,125,254,40,121,149,0,186,158,213,255,89,8,227,0,69,88,0,254,203,135,225,0,201,174,203,0,147,71,184,0,18,121,41,254,94,5,78,0,224,214,240,254,36,5,180,0,251,135,231,1,163,138,212,0,210,249,116,254,88,129,187,0,19,8,49,254,62,14,144,255,159,76,211,0,214,51,82,0,109,117,228,254,103,223,203,255,75,252,15,1,154,71,220,255,23,13,91,1,141,168,96,255,181,182,133,0,250,51,55,0,234,234,212,254,175,63,158,0,39,240,52,1,158,189,36,255,213,40,85,1,32,180,247,255,19,102,26,1,84,24,97,255,69,21,222,0,148,139,122,255,220,213,235,1,232,203,255,0,121,57,147,0,227,7,154,0,53,22,147,1,72,1,225,0,82,134,48,254,83,60,157,255,145,72,169,0,34,103,239,0,198,233,47,0,116,19,4,255,184,106,9,255,183,129,83,0,36,176,230,1,34,103,72,0,219,162,134,0,245,42,158,0,32,149,96,254,165,44,144,0,202,239,72,254,215,150,5,0,42,66,36,1,132,215,175,0,86,174,86,255,26,197,156,255,49,232,135,254,103,182,82,0,253,128,176,1,153,178,122,0,245,250,10,0,236,24,178,0,137,106,132,0,40,29,41,0,50,30,152,255,124,105,38,0,230,191,75,0,143,43,170,0,44,131,20,255,44,13,23,255,237,255,155,1,159,109,100,255,112,181,24,255,104,220,108,0,55,211,131,0,99,12,213,255,152,151,145,255,238,5,159,0,97,155,8,0,33,108,81,0,1,3,103,0,62,109,34,255,250,155,180,0,32,71,195,255,38,70,145,1,159,95,245,0,69,229,101,1,136,28,240,0,79,224,25,0,78,110,121,255,248,168,124,0,187,128,247,0,2,147,235,254,79,11,132,0,70,58,12,1,181,8,163,255,79,137,133,255,37,170,11,255,141,243,85,255,176,231,215,255,204,150,164,255,239,215,39,255,46,87,156,254,8,163,88,255,172,34,232,0,66,44,102,255,27,54,41,254,236,99,87,255,41,123,169,1,52,114,43,0,117,134,40,0,155,134,26,0,231,207,91,254,35,132,38,255,19,102,125,254,36,227,133,255,118,3,113,255,29,13,124,0,152,96,74,1,88,146,206,255,167,191,220,254,162,18,88,255,182,100,23,0,31,117,52,0,81,46,106,1,12,2,7,0,69,80,201,1,209,246,172,0,12,48,141,1,224,211,88,0,116,226,159,0,122,98,130,0,65,236,234,1,225,226,9,255,207,226,123,1,89,214,59,0,112,135,88,1,90,244,203,255,49,11,38,1,129,108,186,0,89,112,15,1,101,46,204,255,127,204,45,254,79,255,221,255,51,73,18,255,127,42,101,255,241,21,202,0,160,227,7,0,105,50,236,0,79,52,197,255,104,202,208,1,180,15,16,0,101,197,78,255,98,77,203,0,41,185,241,1,35,193,124,0,35,155,23,255,207,53,192,0,11,125,163,1,249,158,185,255,4,131,48,0,21,93,111,255,61,121,231,1,69,200,36,255,185,48,185,255,111,238,21,255,39,50,25,255,99,215,163,255,87,212,30,255,164,147,5,255,128,6,35,1,108,223,110,255,194,76,178,0,74,101,180,0,243,47,48,0,174,25,43,255,82,173,253,1,54,114,192,255,40,55,91,0,215,108,176,255,11,56,7,0,224,233,76,0,209,98,202,254,242,25,125,0,44,193,93,254,203,8,177,0,135,176,19,0,112,71,213,255,206,59,176,1,4,67,26,0,14,143,213,254,42,55,208,255,60,67,120,0,193,21,163,0,99,164,115,0,10,20,118,0,156,212,222,254,160,7,217,255,114,245,76,1,117,59,123,0,176,194,86,254,213,15,176,0,78,206,207,254,213,129,59,0,233,251,22,1,96,55,152,255,236,255,15,255,197,89,84,255,93,149,133,0,174,160,113,0,234,99,169,255,152,116,88,0,144,164,83,255,95,29,198,255,34,47,15,255,99,120,134,255,5,236,193,0,249,247,126,255,147,187,30,0,50,230,117,255,108,217,219,255,163,81,166,255,72,25,169,254,155,121,79,255,28,155,89,254,7,126,17,0,147,65,33,1,47,234,253,0,26,51,18,0,105,83,199,255,163,196,230,0,113,248,164,0,226,254,218,0,189,209,203,255,164,247,222,254,255,35,165,0,4,188,243,1,127,179,71,0,37,237,254,255,100,186,240,0,5,57,71,254,103,72,73,255,244,18,81,254,229,210,132,255,238,6,180,255,11,229,174,255,227,221,192,1,17,49,28,0,163,215,196,254,9,118,4,255,51,240,71,0,113,129,109,255,76,240,231,0,188,177,127,0,125,71,44,1,26,175,243,0,94,169,25,254,27,230,29,0,15,139,119,1,168,170,186,255,172,197,76,255,252,75,188,0,137,124,196,0,72,22,96,255,45,151,249,1,220,145,100,0,64,192,159,255,120,239,226,0,129,178,146,0,0,192,125,0,235,138,234,0,183,157,146,0,83,199,192,255,184,172,72,255,73,225,128,0,77,6,250,255,186,65,67,0,104,246,207,0,188,32,138,255,218,24,242,0,67,138,81,254,237,129,121,255,20,207,150,1,41,199,16,255,6,20,128,0,159,118,5,0,181,16,143,255,220,38,15,0,23,64,147,254,73,26,13,0,87,228,57,1,204,124,128,0,43,24,223,0,219,99,199,0,22,75,20,255,19,27,126,0,157,62,215,0,110,29,230,0,179,167,255,1,54,252,190,0,221,204,182,254,179,158,65,255,81,157,3,0,194,218,159,0,170,223,0,0,224,11,32,255,38,197,98,0,168,164,37,0,23,88,7,1,164,186,110,0,96,36,134,0,234,242,229,0,250,121,19,0,242,254,112,255,3,47,94,1,9,239,6,255,81,134,153,254,214,253,168,255,67,124,224,0,245,95,74,0,28,30,44,254,1,109,220,255,178,89,89,0,252,36,76,0,24,198,46,255,76,77,111,0,134,234,136,255,39,94,29,0,185,72,234,255,70,68,135,255,231,102,7,254,77,231,140,0,167,47,58,1,148,97,118,255,16,27,225,1,166,206,143,255,110,178,214,255,180,131,162,0,143,141,225,1,13,218,78,255,114,153,33,1,98,104,204,0,175,114,117,1,167,206,75,0,202,196,83,1,58,64,67,0,138,47,111,1,196,247,128,255,137,224,224,254,158,112,207,0,154,100,255,1,134,37,107,0,198,128,79,255,127,209,155,255,163,254,185,254,60,14,243,0,31,219,112,254,29,217,65,0,200,13,116,254,123,60,196,255,224,59,184,254,242,89,196,0,123,16,75,254,149,16,206,0,69,254,48,1,231,116,223,255,209,160,65,1,200,80,98,0,37,194,184,254,148,63,34,0,139,240,65,255,217,144,132,255,56,38,45,254,199,120,210,0,108,177,166,255,160,222,4,0,220,126,119,254,165,107,160,255,82,220,248,1,241,175,136,0,144,141,23,255,169,138,84,0,160,137,78,255,226,118,80,255,52,27,132,255,63,96,139,255,152,250,39,0,188,155,15,0,232,51,150,254,40,15,232,255,240,229,9,255,137,175,27,255,75,73,97,1,218,212,11,0,135,5,162,1,107,185,213,0,2,249,107,255,40,242,70,0,219,200,25,0,25,157,13,0,67,82,80,255,196,249,23,255,145,20,149,0,50,72,146,0,94,76,148,1,24,251,65,0,31,192,23,0,184,212,201,255,123,233,162,1,247,173,72,0,162,87,219,254,126,134,89,0,159,11,12,254,166,105,29,0,73,27,228,1,113,120,183,255,66,163,109,1,212,143,11,255,159,231,168,1,255,128,90,0,57,14,58,254,89,52,10,255,253,8,163,1,0,145,210,255,10,129,85,1,46,181,27,0,103,136,160,254,126,188,209,255,34,35,111,0,215,219,24,255,212,11,214,254,101,5,118,0,232,197,133,255,223,167,109,255,237,80,86,255,70,139,94,0,158,193,191,1,155,15,51,255,15,190,115,0,78,135,207,255,249,10,27,1,181,125,233,0,95,172,13,254,170,213,161,255,39,236,138,255,95,93,87,255,190,128,95,0,125,15,206,0,166,150,159,0,227,15,158,255,206,158,120,255,42,141,128,0,101,178,120,1,156,109,131,0,218,14,44,254,247,168,206,255,212,112,28,0,112,17,228,255,90,16,37,1,197,222,108,0,254,207,83,255,9,90,243,255,243,244,172,0,26,88,115,255,205,116,122,0,191,230,193,0,180,100,11,1,217,37,96,255,154,78,156,0,235,234,31,255,206,178,178,255,149,192,251,0,182,250,135,0,246,22,105,0,124,193,109,255,2,210,149,255,169,17,170,0,0,96,110,255,117,9,8,1,50,123,40,255,193,189,99,0,34,227,160,0,48,80,70,254,211,51,236,0,45,122,245,254,44,174,8,0,173,37,233,255,158,65,171,0,122,69,215,255,90,80,2,255,131,106,96,254,227,114,135,0,205,49,119,254,176,62,64,255,82,51,17,255,241,20,243,255,130,13,8,254,128,217,243,255,162,27,1,254,90,118,241,0,246,198,246,255,55,16,118,255,200,159,157,0,163,17,1,0,140,107,121,0,85,161,118,255,38,0,149,0,156,47,238,0,9,166,166,1,75,98,181,255,50,74,25,0,66,15,47,0,139,225,159,0,76,3,142,255,14,238,184,0,11,207,53,255,183,192,186,1,171,32,174,255,191,76,221,1,247,170,219,0,25,172,50,254,217,9,233,0,203,126,68,255,183,92,48,0,127,167,183,1,65,49,254,0,16,63,127,1,254,21,170,255,59,224,127,254,22,48,63,255,27,78,130,254,40,195,29,0,250,132,112,254,35,203,144,0,104,169,168,0,207,253,30,255,104,40,38,254,94,228,88,0,206,16,128,255,212,55,122,255,223,22,234,0,223,197,127,0,253,181,181,1,145,102,118,0,236,153,36,255,212,217,72,255,20,38,24,254,138,62,62,0,152,140,4,0,230,220,99,255,1,21,212,255,148,201,231,0,244,123,9,254,0,171,210,0,51,58,37,255,1,255,14,255,244,183,145,254,0,242,166,0,22,74,132,0,121,216,41,0,95,195,114,254,133,24,151,255,156,226,231,255,247,5,77,255,246,148,115,254,225,92,81,255,222,80,246,254,170,123,89,255,74,199,141,0,29,20,8,255,138,136,70,255,93,75,92,0,221,147,49,254,52,126,226,0,229,124,23,0,46,9,181,0,205,64,52,1,131,254,28,0,151,158,212,0,131,64,78,0,206,25,171,0,0,230,139,0,191,253,110,254,103,247,167,0,64,40,40,1,42,165,241,255,59,75,228,254,124,243,189,255,196,92,178,255,130,140,86,255,141,89,56,1,147,198,5,255,203,248,158,254,144,162,141,0,11,172,226,0,130,42,21,255,1,167,143,255,144,36,36,255,48,88,164,254,168,170,220,0,98,71,214,0,91,208,79,0,159,76,201,1,166,42,214,255,69,255,0,255,6,128,125,255,190,1,140,0,146,83,218,255,215,238,72,1,122,127,53,0,189,116,165,255,84,8,66,255,214,3,208,255,213,110,133,0,195,168,44,1,158,231,69,0,162,64,200,254,91,58,104,0,182,58,187,254,249,228,136,0,203,134,76,254,99,221,233,0,75,254,214,254,80,69,154,0,64,152,248,254,236,136,202,255,157,105,153,254,149,175,20,0,22,35,19,255,124,121,233,0,186,250,198,254,132,229,139,0,137,80,174,255,165,125,68,0,144,202,148,254,235,239,248,0,135,184,118,0,101,94,17,255,122,72,70,254,69,130,146,0,127,222,248,1,69,127,118,255,30,82,215,254,188,74,19,255,229,167,194,254,117,25,66,255,65,234,56,254,213,22,156,0,151,59,93,254,45,28,27,255,186,126,164,255,32,6,239,0,127,114,99,1,219,52,2,255,99,96,166,254,62,190,126,255,108,222,168,1,75,226,174,0,230,226,199,0,60,117,218,255,252,248,20,1,214,188,204,0,31,194,134,254,123,69,192,255,169,173,36,254,55,98,91,0,223,42,102,254,137,1,102,0,157,90,25,0,239,122,64,255,252,6,233,0,7,54,20,255,82,116,174,0,135,37,54,255,15,186,125,0,227,112,175,255,100,180,225,255,42,237,244,255,244,173,226,254,248,18,33,0,171,99,150,255,74,235,50,255,117,82,32,254,106,168,237,0,207,109,208,1,228,9,186,0,135,60,169,254,179,92,143,0,244,170,104,255,235,45,124,255,70,99,186,0,117,137,183,0,224,31,215,0,40,9,100,0,26,16,95,1,68,217,87,0,8,151,20,255,26,100,58,255,176,165,203,1,52,118,70,0,7,32,254,254,244,254,245,255,167,144,194,255,125,113,23,255,176,121,181,0,136,84,209,0,138,6,30,255,89,48,28,0,33,155,14,255,25,240,154,0,141,205,109,1,70,115,62,255,20,40,107,254,138,154,199,255,94,223,226,255,157,171,38,0,163,177,25,254,45,118,3,255,14,222,23,1,209,190,81,255,118,123,232,1,13,213,101,255,123,55,123,254,27,246,165,0,50,99,76,255,140,214,32,255,97,65,67,255,24,12,28,0,174,86,78,1,64,247,96,0,160,135,67,0,66,55,243,255,147,204,96,255,26,6,33,255,98,51,83,1,153,213,208,255,2,184,54,255,25,218,11,0,49,67,246,254,18,149,72,255,13,25,72,0,42,79,214,0,42,4,38,1,27,139,144,255,149,187,23,0,18,164,132,0,245,84,184,254,120,198,104,255,126,218,96,0,56,117,234,255,13,29,214,254,68,47,10,255,167,154,132,254,152,38,198,0,66,178,89,255,200,46,171,255,13,99,83,255,210,187,253,255,170,45,42,1,138,209,124,0,214,162,141,0,12,230,156,0,102,36,112,254,3,147,67,0,52,215,123,255,233,171,54,255,98,137,62,0,247,218,39,255,231,218,236,0,247,191,127,0,195,146,84,0,165,176,92,255,19,212,94,255,17,74,227,0,88,40,153,1,198,147,1,255,206,67,245,254,240,3,218,255,61,141,213,255,97,183,106,0,195,232,235,254,95,86,154,0,209,48,205,254,118,209,241,255,240,120,223,1,213,29,159,0,163,127,147,255,13,218,93,0,85,24,68,254,70,20,80,255,189,5,140,1,82,97,254,255,99,99,191,255,132,84,133,255,107,218,116,255,112,122,46,0,105,17,32,0,194,160,63,255,68,222,39,1,216,253,92,0,177,105,205,255,149,201,195,0,42,225,11,255,40,162,115,0,9,7,81,0,165,218,219,0,180,22,0,254,29,146,252,255,146,207,225,1,180,135,96,0,31,163,112,0,177,11,219,255,133,12,193,254,43,78,50,0,65,113,121,1,59,217,6,255,110,94,24,1,112,172,111,0,7,15,96,0,36,85,123,0,71,150,21,255,208,73,188,0,192,11,167,1,213,245,34,0,9,230,92,0,162,142,39,255,215,90,27,0,98,97,89,0,94,79,211,0,90,157,240,0,95,220,126,1,102,176,226,0,36,30,224,254,35,31,127,0,231,232,115,1,85,83,130,0,210,73,245,255,47,143,114,255,68,65,197,0,59,72,62,255,183,133,173,254,93,121,118,255,59,177,81,255,234,69,173,255,205,128,177,0,220,244,51,0,26,244,209,1,73,222,77,255,163,8,96,254,150,149,211,0,158,254,203,1,54,127,139,0,161,224,59,0,4,109,22,255,222,42,45,255,208,146,102,255,236,142,187,0,50,205,245,255,10,74,89,254,48,79,142,0,222,76,130,255,30,166,63,0,236,12,13,255,49,184,244,0,187,113,102,0,218,101,253,0,153,57,182,254,32,150,42,0,25,198,146,1,237,241,56,0,140,68,5,0,91,164,172,255,78,145,186,254,67,52,205,0,219,207,129,1,109,115,17,0,54,143,58,1,21,248,120,255,179,255,30,0,193,236,66,255,1,255,7,255,253,192,48,255,19,69,217,1,3,214,0,255,64,101,146,1,223,125,35,255,235,73,179,255,249,167,226,0,225,175,10,1,97,162,58,0,106,112,171,1,84,172,5,255,133,140,178,255,134,245,142,0,97,90,125,255,186,203,185,255,223,77,23,255,192,92,106,0,15,198,115,255,217,152,248,0,171,178,120,255,228,134,53,0,176,54,193,1,250,251,53,0,213,10,100,1,34,199,106,0,151,31,244,254,172,224,87,255,14,237,23,255,253,85,26,255,127,39,116,255,172,104,100,0,251,14,70,255,212,208,138,255,253,211,250,0,176,49,165,0,15,76,123,255,37,218,160,255,92,135,16,1,10,126,114,255,70,5,224,255,247,249,141,0,68,20,60,1,241,210,189,255,195,217,187,1,151,3,113,0,151,92,174,0,231,62,178,255,219,183,225,0,23,23,33,255,205,181,80,0,57,184,248,255,67,180,1,255,90,123,93,255,39,0,162,255,96,248,52,255,84,66,140,0,34,127,228,255,194,138,7,1,166,110,188,0,21,17,155,1,154,190,198,255,214,80,59,255,18,7,143,0,72,29,226,1,199,217,249,0,232,161,71,1,149,190,201,0,217,175,95,254,113,147,67,255,138,143,199,255,127,204,1,0,29,182,83,1,206,230,155,255,186,204,60,0,10,125,85,255,232,96,25,255,255,89,247,255,213,254,175,1,232,193,81,0,28,43,156,254,12,69,8,0,147,24,248,0,18,198,49,0,134,60,35,0,118,246,18,255,49,88,254,254,228,21,186,255,182,65,112,1,219,22,1,255,22,126,52,255,189,53,49,255,112,25,143,0,38,127,55,255,226,101,163,254,208,133,61,255,137,69,174,1,190,118,145,255,60,98,219,255,217,13,245,255,250,136,10,0,84,254,226,0,201,31,125,1,240,51,251,255,31,131,130,255,2,138,50,255,215,215,177,1,223,12,238,255,252,149,56,255,124,91,68,255,72,126,170,254,119,255,100,0,130,135,232,255,14,79,178,0,250,131,197,0,138,198,208,0,121,216,139,254,119,18,36,255,29,193,122,0,16,42,45,255,213,240,235,1,230,190,169,255,198,35,228,254,110,173,72,0,214,221,241,255,56,148,135,0,192,117,78,254,141,93,207,255,143,65,149,0,21,18,98,255,95,44,244,1,106,191,77,0,254,85,8,254,214,110,176,255,73,173,19,254,160,196,199,255,237,90,144,0,193,172,113,255,200,155,136,254,228,90,221,0,137,49,74,1,164,221,215,255,209,189,5,255,105,236,55,255,42,31,129,1,193,255,236,0,46,217,60,0,138,88,187,255,226,82,236,255,81,69,151,255,142,190,16,1,13,134,8,0,127,122,48,255,81,64,156,0,171,243,139,0,237,35,246,0,122,143,193,254,212,122,146,0,95,41,255,1,87,132,77,0,4,212,31,0,17,31,78,0,39,45,173,254,24,142,217,255,95,9,6,255,227,83,6,0,98,59,130,254,62,30,33,0,8,115,211,1,162,97,128,255,7,184,23,254,116,28,168,255,248,138,151,255,98,244,240,0,186,118,130,0,114,248,235,255,105,173,200,1,160,124,71,255,94,36,164,1,175,65,146,255,238,241,170,254,202,198,197,0,228,71,138,254,45,246,109,255,194,52,158,0,133,187,176,0,83,252,154,254,89,189,221,255,170,73,252,0,148,58,125,0,36,68,51,254,42,69,177,255,168,76,86,255,38,100,204,255,38,53,35,0,175,19,97,0,225,238,253,255,81,81,135,0,210,27,255,254,235,73,107,0,8,207,115,0,82,127,136,0,84,99,21,254,207,19,136,0,100,164,101,0,80,208,77,255,132,207,237,255,15,3,15,255,33,166,110,0,156,95,85,255,37,185,111,1,150,106,35,255,166,151,76,0,114,87,135,255,159,194,64,0,12,122,31,255,232,7,101,254,173,119,98,0,154,71,220,254,191,57,53,255,168,232,160,255,224,32,99,255,218,156,165,0,151,153,163,0,217,13,148,1,197,113,89,0,149,28,161,254,207,23,30,0,105,132,227,255,54,230,94,255,133,173,204,255,92,183,157,255,88,144,252,254,102,33,90,0,159,97,3,0,181,218,155,255,240,114,119,0,106,214,53,255,165,190,115,1,152,91,225,255,88,106,44,255,208,61,113,0,151,52,124,0,191,27,156,255,110,54,236,1,14,30,166,255,39,127,207,1,229,199,28,0,188,228,188,254,100,157,235,0,246,218,183,1,107,22,193,255,206,160,95,0,76,239,147,0,207,161,117,0,51,166,2,255,52,117,10,254,73,56,227,255,152,193,225,0,132,94,136,255,101,191,209,0,32,107,229,255,198,43,180,1,100,210,118,0,114,67,153,255,23,88,26,255,89,154,92,1,220,120,140,255,144,114,207,255,252,115,250,255,34,206,72,0,138,133,127,255,8,178,124,1,87,75,97,0,15,229,92,254,240,67,131,255,118,123,227,254,146,120,104,255,145,213,255,1,129,187,70,255,219,119,54,0,1,19,173,0,45,150,148,1,248,83,72,0,203,233,169,1,142,107,56,0,247,249,38,1,45,242,80,255,30,233,103,0,96,82,70,0,23,201,111,0,81,39,30,255,161,183,78,255,194,234,33,255,68,227,140,254,216,206,116,0,70,27,235,255,104,144,79,0,164,230,93,254,214,135,156,0,154,187,242,254,188,20,131,255,36,109,174,0,159,112,241,0,5,110,149,1,36,165,218,0,166,29,19,1,178,46,73,0,93,43,32,254,248,189,237,0,102,155,141,0,201,93,195,255,241,139,253,255,15,111,98,255,108,65,163,254,155,79,190,255,73,174,193,254,246,40,48,255,107,88,11,254,202,97,85,255,253,204,18,255,113,242,66,0,110,160,194,254,208,18,186,0,81,21,60,0,188,104,167,255,124,166,97,254,210,133,142,0,56,242,137,254,41,111,130,0,111,151,58,1,111,213,141,255,183,172,241,255,38,6,196,255,185,7,123,255,46,11,246,0,245,105,119,1,15,2,161,255,8,206,45,255,18,202,74,255,83,124,115,1,212,141,157,0,83,8,209,254,139,15,232,255,172,54,173,254,50,247,132,0,214,189,213,0,144,184,105,0,223,254,248,0,255,147,240,255,23,188,72,0,7,51,54,0,188,25,180,254,220,180,0,255,83,160,20,0,163,189,243,255,58,209,194,255,87,73,60,0,106,24,49,0,245,249,220,0,22,173,167,0,118,11,195,255,19,126,237,0,110,159,37,255,59,82,47,0,180,187,86,0,188,148,208,1,100,37,133,255,7,112,193,0,129,188,156,255,84,106,129,255,133,225,202,0,14,236,111,255,40,20,101,0,172,172,49,254,51,54,74,255,251,185,184,255,93,155,224,255,180,249,224,1,230,178,146,0,72,57,54,254,178,62,184,0,119,205,72,0,185,239,253,255,61,15,218,0,196,67,56,255,234,32,171,1,46,219,228,0,208,108,234,255,20,63,232,255,165,53,199,1,133,228,5,255,52,205,107,0,74,238,140,255,150,156,219,254,239,172,178,255,251,189,223,254,32,142,211,255,218,15,138,1,241,196,80,0,28,36,98,254,22,234,199,0,61,237,220,255,246,57,37,0,142,17,142,255,157,62,26,0,43,238,95,254,3,217,6,255,213,25,240,1,39,220,174,255,154,205,48,254,19,13,192,255,244,34,54,254,140,16,155,0,240,181,5,254,155,193,60,0,166,128,4,255,36,145,56,255,150,240,219,0,120,51,145,0,82,153,42,1,140,236,146,0,107,92,248,1,189,10,3,0,63,136,242,0,211,39,24,0,19,202,161,1,173,27,186,255,210,204,239,254,41,209,162,255,182,254,159,255,172,116,52,0,195,103,222,254,205,69,59,0,53,22,41,1,218,48,194,0,80,210,242,0,210,188,207,0,187,161,161,254,216,17,1,0,136,225,113,0,250,184,63,0,223,30,98,254,77,168,162,0,59,53,175,0,19,201,10,255,139,224,194,0,147,193,154,255,212,189,12,254,1,200,174,255,50,133,113,1,94,179,90,0,173,182,135,0,94,177,113,0,43,89,215,255,136,252,106,255,123,134,83,254,5,245,66,255,82,49,39,1,220,2,224,0,97,129,177,0,77,59,89,0,61,29,155,1,203,171,220,255,92,78,139,0,145,33,181,255,169,24,141,1,55,150,179,0,139,60,80,255,218,39,97,0,2,147,107,255,60,248,72,0,173,230,47,1,6,83,182,255,16,105,162,254,137,212,81,255,180,184,134,1,39,222,164,255,221,105,251,1,239,112,125,0,63,7,97,0,63,104,227,255,148,58,12,0,90,60,224,255,84,212,252,0,79,215,168,0,248,221,199,1,115,121,1,0,36,172,120,0,32,162,187,255,57,107,49,255,147,42,21,0,106,198,43,1,57,74,87,0,126,203,81,255,129,135,195,0,140,31,177,0,221,139,194,0,3,222,215,0,131,68,231,0,177,86,178,254,124,151,180,0,184,124,38,1,70,163,17,0,249,251,181,1,42,55,227,0,226,161,44,0,23,236,110,0,51,149,142,1,93,5,236,0,218,183,106,254,67,24,77,0,40,245,209,255,222,121,153,0,165,57,30,0,83,125,60,0,70,38,82,1,229,6,188,0,109,222,157,255,55,118,63,255,205,151,186,0,227,33,149,255,254,176,246,1,227,177,227,0,34,106,163,254,176,43,79,0,106,95,78,1,185,241,122,255,185,14,61,0,36,1,202,0,13,178,162,255,247,11,132,0,161,230,92,1,65,1,185,255,212,50,165,1,141,146,64,255,158,242,218,0,21,164,125,0,213,139,122,1,67,71,87,0,203,158,178,1,151,92,43,0,152,111,5,255,39,3,239,255,217,255,250,255,176,63,71,255,74,245,77,1,250,174,18,255,34,49,227,255,246,46,251,255,154,35,48,1,125,157,61,255,106,36,78,255,97,236,153,0,136,187,120,255,113,134,171,255,19,213,217,254,216,94,209,255,252,5,61,0,94,3,202,0,3,26,183,255,64,191,43,255,30,23,21,0,129,141,77,255,102,120,7,1,194,76,140,0,188,175,52,255,17,81,148,0,232,86,55,1,225,48,172,0,134,42,42,255,238,50,47,0,169,18,254,0,20,147,87,255,14,195,239,255,69,247,23,0,238,229,128,255,177,49,112,0,168,98,251,255,121,71,248,0,243,8,145,254,246,227,153,255,219,169,177,254,251,139,165,255,12,163,185,255,164,40,171,255,153,159,27,254,243,109,91,255,222,24,112,1,18,214,231,0,107,157,181,254,195,147,0,255,194,99,104,255,89,140,190,255,177,66,126,254,106,185,66,0,49,218,31,0,252,174,158,0,188,79,230,1,238,41,224,0,212,234,8,1,136,11,181,0,166,117,83,255,68,195,94,0,46,132,201,0,240,152,88,0,164,57,69,254,160,224,42,255,59,215,67,255,119,195,141,255,36,180,121,254,207,47,8,255,174,210,223,0,101,197,68,255,255,82,141,1,250,137,233,0,97,86,133,1,16,80,69,0,132,131,159,0,116,93,100,0,45,141,139,0,152,172,157,255,90,43,91,0,71,153,46,0,39,16,112,255,217,136,97,255,220,198,25,254,177,53,49,0,222,88,134,255,128,15,60,0,207,192,169,255,192,116,209,255,106,78,211,1,200,213,183,255,7,12,122,254,222,203,60,255,33,110,199,254,251,106,117,0,228,225,4,1,120,58,7,255,221,193,84,254,112,133,27,0,189,200,201,255,139,135,150,0,234,55,176,255,61,50,65,0,152,108,169,255,220,85,1,255,112,135,227,0,162,26,186,0,207,96,185,254,244,136,107,0,93,153,50,1,198,97,151,0,110,11,86,255,143,117,174,255,115,212,200,0,5,202,183,0,237,164,10,254,185,239,62,0,236,120,18,254,98,123,99,255,168,201,194,254,46,234,214,0,191,133,49,255,99,169,119,0,190,187,35,1,115,21,45,255,249,131,72,0,112,6,123,255,214,49,181,254,166,233,34,0,92,197,102,254,253,228,205,255,3,59,201,1,42,98,46,0,219,37,35,255,169,195,38,0,94,124,193,1,156,43,223,0,95,72,133,254,120,206,191,0,122,197,239,255,177,187,79,255,254,46,2,1,250,167,190,0,84,129,19,0,203,113,166,255,249,31,189,254,72,157,202,255,208,71,73,255,207,24,72,0,10,16,18,1,210,81,76,255,88,208,192,255,126,243,107,255,238,141,120,255,199,121,234,255,137,12,59,255,36,220,123,255,148,179,60,254,240,12,29,0,66,0,97,1,36,30,38,255,115,1,93,255,96,103,231,255], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE); /* memory initializer */ allocate([197,158,59,1,192,164,240,0,202,202,57,255,24,174,48,0,89,77,155,1,42,76,215,0,244,151,233,0,23,48,81,0,239,127,52,254,227,130,37,255,248,116,93,1,124,132,118,0,173,254,192,1,6,235,83,255,110,175,231,1,251,28,182,0,129,249,93,254,84,184,128,0,76,181,62,0,175,128,186,0,100,53,136,254,109,29,226,0,221,233,58,1,20,99,74,0,0,22,160,0,134,13,21,0,9,52,55,255,17,89,140,0,175,34,59,0,84,165,119,255,224,226,234,255,7,72,166,255,123,115,255,1,18,214,246,0,250,7,71,1,217,220,185,0,212,35,76,255,38,125,175,0,189,97,210,0,114,238,44,255,41,188,169,254,45,186,154,0,81,92,22,0,132,160,193,0,121,208,98,255,13,81,44,255,203,156,82,0,71,58,21,255,208,114,191,254,50,38,147,0,154,216,195,0,101,25,18,0,60,250,215,255,233,132,235,255,103,175,142,1,16,14,92,0,141,31,110,254,238,241,45,255,153,217,239,1,97,168,47,255,249,85,16,1,28,175,62,255,57,254,54,0,222,231,126,0,166,45,117,254,18,189,96,255,228,76,50,0,200,244,94,0,198,152,120,1,68,34,69,255,12,65,160,254,101,19,90,0,167,197,120,255,68,54,185,255,41,218,188,0,113,168,48,0,88,105,189,1,26,82,32,255,185,93,164,1,228,240,237,255,66,182,53,0,171,197,92,255,107,9,233,1,199,120,144,255,78,49,10,255,109,170,105,255,90,4,31,255,28,244,113,255,74,58,11,0,62,220,246,255,121,154,200,254,144,210,178,255,126,57,129,1,43,250,14,255,101,111,28,1,47,86,241,255,61,70,150,255,53,73,5,255,30,26,158,0,209,26,86,0,138,237,74,0,164,95,188,0,142,60,29,254,162,116,248,255,187,175,160,0,151,18,16,0,209,111,65,254,203,134,39,255,88,108,49,255,131,26,71,255,221,27,215,254,104,105,93,255,31,236,31,254,135,0,211,255,143,127,110,1,212,73,229,0,233,67,167,254,195,1,208,255,132,17,221,255,51,217,90,0,67,235,50,255,223,210,143,0,179,53,130,1,233,106,198,0,217,173,220,255,112,229,24,255,175,154,93,254,71,203,246,255,48,66,133,255,3,136,230,255,23,221,113,254,235,111,213,0,170,120,95,254,251,221,2,0,45,130,158,254,105,94,217,255,242,52,180,254,213,68,45,255,104,38,28,0,244,158,76,0,161,200,96,255,207,53,13,255,187,67,148,0,170,54,248,0,119,162,178,255,83,20,11,0,42,42,192,1,146,159,163,255,183,232,111,0,77,229,21,255,71,53,143,0,27,76,34,0,246,136,47,255,219,39,182,255,92,224,201,1,19,142,14,255,69,182,241,255,163,118,245,0,9,109,106,1,170,181,247,255,78,47,238,255,84,210,176,255,213,107,139,0,39,38,11,0,72,21,150,0,72,130,69,0,205,77,155,254,142,133,21,0,71,111,172,254,226,42,59,255,179,0,215,1,33,128,241,0,234,252,13,1,184,79,8,0,110,30,73,255,246,141,189,0,170,207,218,1,74,154,69,255,138,246,49,255,155,32,100,0,125,74,105,255,90,85,61,255,35,229,177,255,62,125,193,255,153,86,188,1,73,120,212,0,209,123,246,254,135,209,38,255,151,58,44,1,92,69,214,255,14,12,88,255,252,153,166,255,253,207,112,255,60,78,83,255,227,124,110,0,180,96,252,255,53,117,33,254,164,220,82,255,41,1,27,255,38,164,166,255,164,99,169,254,61,144,70,255,192,166,18,0,107,250,66,0,197,65,50,0,1,179,18,255,255,104,1,255,43,153,35,255,80,111,168,0,110,175,168,0,41,105,45,255,219,14,205,255,164,233,140,254,43,1,118,0,233,67,195,0,178,82,159,255,138,87,122,255,212,238,90,255,144,35,124,254,25,140,164,0,251,215,44,254,133,70,107,255,101,227,80,254,92,169,55,0,215,42,49,0,114,180,85,255,33,232,27,1,172,213,25,0,62,176,123,254,32,133,24,255,225,191,62,0,93,70,153,0,181,42,104,1,22,191,224,255,200,200,140,255,249,234,37,0,149,57,141,0,195,56,208,255,254,130,70,255,32,173,240,255,29,220,199,0,110,100,115,255,132,229,249,0,228,233,223,255,37,216,209,254,178,177,209,255,183,45,165,254,224,97,114,0,137,97,168,255,225,222,172,0,165,13,49,1,210,235,204,255,252,4,28,254,70,160,151,0,232,190,52,254,83,248,93,255,62,215,77,1,175,175,179,255,160,50,66,0,121,48,208,0,63,169,209,255,0,210,200,0,224,187,44,1,73,162,82,0,9,176,143,255,19,76,193,255,29,59,167,1,24,43,154,0,28,190,190,0,141,188,129,0,232,235,203,255,234,0,109,255,54,65,159,0,60,88,232,255,121,253,150,254,252,233,131,255,198,110,41,1,83,77,71,255,200,22,59,254,106,253,242,255,21,12,207,255,237,66,189,0,90,198,202,1,225,172,127,0,53,22,202,0,56,230,132,0,1,86,183,0,109,190,42,0,243,68,174,1,109,228,154,0,200,177,122,1,35,160,183,255,177,48,85,255,90,218,169,255,248,152,78,0,202,254,110,0,6,52,43,0,142,98,65,255,63,145,22,0,70,106,93,0,232,138,107,1,110,179,61,255,211,129,218,1,242,209,92,0,35,90,217,1,182,143,106,255,116,101,217,255,114,250,221,255,173,204,6,0,60,150,163,0,73,172,44,255,239,110,80,255,237,76,153,254,161,140,249,0,149,232,229,0,133,31,40,255,174,164,119,0,113,51,214,0,129,228,2,254,64,34,243,0,107,227,244,255,174,106,200,255,84,153,70,1,50,35,16,0,250,74,216,254,236,189,66,255,153,249,13,0,230,178,4,255,221,41,238,0,118,227,121,255,94,87,140,254,254,119,92,0,73,239,246,254,117,87,128,0,19,211,145,255,177,46,252,0,229,91,246,1,69,128,247,255,202,77,54,1,8,11,9,255,153,96,166,0,217,214,173,255,134,192,2,1,0,207,0,0,189,174,107,1,140,134,100,0,158,193,243,1,182,102,171,0,235,154,51,0,142,5,123,255,60,168,89,1,217,14,92,255,19,214,5,1,211,167,254,0,44,6,202,254,120,18,236,255,15,113,184,255,184,223,139,0,40,177,119,254,182,123,90,255,176,165,176,0,247,77,194,0,27,234,120,0,231,0,214,255,59,39,30,0,125,99,145,255,150,68,68,1,141,222,248,0,153,123,210,255,110,127,152,255,229,33,214,1,135,221,197,0,137,97,2,0,12,143,204,255,81,41,188,0,115,79,130,255,94,3,132,0,152,175,187,255,124,141,10,255,126,192,179,255,11,103,198,0,149,6,45,0,219,85,187,1,230,18,178,255,72,182,152,0,3,198,184,255,128,112,224,1,97,161,230,0,254,99,38,255,58,159,197,0,151,66,219,0,59,69,143,255,185,112,249,0,119,136,47,255,123,130,132,0,168,71,95,255,113,176,40,1,232,185,173,0,207,93,117,1,68,157,108,255,102,5,147,254,49,97,33,0,89,65,111,254,247,30,163,255,124,217,221,1,102,250,216,0,198,174,75,254,57,55,18,0,227,5,236,1,229,213,173,0,201,109,218,1,49,233,239,0,30,55,158,1,25,178,106,0,155,111,188,1,94,126,140,0,215,31,238,1,77,240,16,0,213,242,25,1,38,71,168,0,205,186,93,254,49,211,140,255,219,0,180,255,134,118,165,0,160,147,134,255,110,186,35,255,198,243,42,0,243,146,119,0,134,235,163,1,4,241,135,255,193,46,193,254,103,180,79,255,225,4,184,254,242,118,130,0,146,135,176,1,234,111,30,0,69,66,213,254,41,96,123,0,121,94,42,255,178,191,195,255,46,130,42,0,117,84,8,255,233,49,214,254,238,122,109,0,6,71,89,1,236,211,123,0,244,13,48,254,119,148,14,0,114,28,86,255,75,237,25,255,145,229,16,254,129,100,53,255,134,150,120,254,168,157,50,0,23,72,104,255,224,49,14,0,255,123,22,255,151,185,151,255,170,80,184,1,134,182,20,0,41,100,101,1,153,33,16,0,76,154,111,1,86,206,234,255,192,160,164,254,165,123,93,255,1,216,164,254,67,17,175,255,169,11,59,255,158,41,61,255,73,188,14,255,195,6,137,255,22,147,29,255,20,103,3,255,246,130,227,255,122,40,128,0,226,47,24,254,35,36,32,0,152,186,183,255,69,202,20,0,195,133,195,0,222,51,247,0,169,171,94,1,183,0,160,255,64,205,18,1,156,83,15,255,197,58,249,254,251,89,110,255,50,10,88,254,51,43,216,0,98,242,198,1,245,151,113,0,171,236,194,1,197,31,199,255,229,81,38,1,41,59,20,0,253,104,230,0,152,93,14,255,246,242,146,254,214,169,240,255,240,102,108,254,160,167,236,0,154,218,188,0,150,233,202,255,27,19,250,1,2,71,133,255,175,12,63,1,145,183,198,0,104,120,115,255,130,251,247,0,17,212,167,255,62,123,132,255,247,100,189,0,155,223,152,0,143,197,33,0,155,59,44,255,150,93,240,1,127,3,87,255,95,71,207,1,167,85,1,255,188,152,116,255,10,23,23,0,137,195,93,1,54,98,97,0,240,0,168,255,148,188,127,0,134,107,151,0,76,253,171,0,90,132,192,0,146,22,54,0,224,66,54,254,230,186,229,255,39,182,196,0,148,251,130,255,65,131,108,254,128,1,160,0,169,49,167,254,199,254,148,255,251,6,131,0,187,254,129,255,85,82,62,0,178,23,58,255,254,132,5,0,164,213,39,0,134,252,146,254,37,53,81,255,155,134,82,0,205,167,238,255,94,45,180,255,132,40,161,0,254,111,112,1,54,75,217,0,179,230,221,1,235,94,191,255,23,243,48,1,202,145,203,255,39,118,42,255,117,141,253,0,254,0,222,0,43,251,50,0,54,169,234,1,80,68,208,0,148,203,243,254,145,7,135,0,6,254,0,0,252,185,127,0,98,8,129,255,38,35,72,255,211,36,220,1,40,26,89,0,168,64,197,254,3,222,239,255,2,83,215,254,180,159,105,0,58,115,194,0,186,116,106,255,229,247,219,255,129,118,193,0,202,174,183,1,166,161,72,0,201,107,147,254,237,136,74,0,233,230,106,1,105,111,168,0,64,224,30,1,1,229,3,0,102,151,175,255,194,238,228,255,254,250,212,0,187,237,121,0,67,251,96,1,197,30,11,0,183,95,204,0,205,89,138,0,64,221,37,1,255,223,30,255,178,48,211,255,241,200,90,255,167,209,96,255,57,130,221,0,46,114,200,255,61,184,66,0,55,182,24,254,110,182,33,0,171,190,232,255,114,94,31,0,18,221,8,0,47,231,254,0,255,112,83,0,118,15,215,255,173,25,40,254,192,193,31,255,238,21,146,255,171,193,118,255,101,234,53,254,131,212,112,0,89,192,107,1,8,208,27,0,181,217,15,255,231,149,232,0,140,236,126,0,144,9,199,255,12,79,181,254,147,182,202,255,19,109,182,255,49,212,225,0,74,163,203,0,175,233,148,0,26,112,51,0,193,193,9,255,15,135,249,0,150,227,130,0,204,0,219,1,24,242,205,0,238,208,117,255,22,244,112,0,26,229,34,0,37,80,188,255,38,45,206,254,240,90,225,255,29,3,47,255,42,224,76,0,186,243,167,0,32,132,15,255,5,51,125,0,139,135,24,0,6,241,219,0,172,229,133,255,246,214,50,0,231,11,207,255,191,126,83,1,180,163,170,255,245,56,24,1,178,164,211,255,3,16,202,1,98,57,118,255,141,131,89,254,33,51,24,0,243,149,91,255,253,52,14,0,35,169,67,254,49,30,88,255,179,27,36,255,165,140,183,0,58,189,151,0,88,31,0,0,75,169,66,0,66,101,199,255,24,216,199,1,121,196,26,255,14,79,203,254,240,226,81,255,94,28,10,255,83,193,240,255,204,193,131,255,94,15,86,0,218,40,157,0,51,193,209,0,0,242,177,0,102,185,247,0,158,109,116,0,38,135,91,0,223,175,149,0,220,66,1,255,86,60,232,0,25,96,37,255,225,122,162,1,215,187,168,255,158,157,46,0,56,171,162,0,232,240,101,1,122,22,9,0,51,9,21,255,53,25,238,255,217,30,232,254,125,169,148,0,13,232,102,0,148,9,37,0,165,97,141,1,228,131,41,0,222,15,243,255,254,18,17,0,6,60,237,1,106,3,113,0,59,132,189,0,92,112,30,0,105,208,213,0,48,84,179,255,187,121,231,254,27,216,109,255,162,221,107,254,73,239,195,255,250,31,57,255,149,135,89,255,185,23,115,1,3,163,157,255,18,112,250,0,25,57,187,255,161,96,164,0,47,16,243,0,12,141,251,254,67,234,184,255,41,18,161,0,175,6,96,255,160,172,52,254,24,176,183,255,198,193,85,1,124,121,137,255,151,50,114,255,220,203,60,255,207,239,5,1,0,38,107,255,55,238,94,254,70,152,94,0,213,220,77,1,120,17,69,255,85,164,190,255,203,234,81,0,38,49,37,254,61,144,124,0,137,78,49,254,168,247,48,0,95,164,252,0,105,169,135,0,253,228,134,0,64,166,75,0,81,73,20,255,207,210,10,0,234,106,150,255,94,34,90,255,254,159,57,254,220,133,99,0,139,147,180,254,24,23,185,0,41,57,30,255,189,97,76,0,65,187,223,255,224,172,37,255,34,62,95,1,231,144,240,0,77,106,126,254,64,152,91,0,29,98,155,0,226,251,53,255,234,211,5,255,144,203,222,255,164,176,221,254,5,231,24,0,179,122,205,0,36,1,134,255,125,70,151,254,97,228,252,0,172,129,23,254,48,90,209,255,150,224,82,1,84,134,30,0,241,196,46,0,103,113,234,255,46,101,121,254,40,124,250,255,135,45,242,254,9,249,168,255,140,108,131,255,143,163,171,0,50,173,199,255,88,222,142,255,200,95,158,0,142,192,163,255,7,117,135,0,111,124,22,0,236,12,65,254,68,38,65,255,227,174,254,0,244,245,38,0,240,50,208,255,161,63,250,0,60,209,239,0,122,35,19,0,14,33,230,254,2,159,113,0,106,20,127,255,228,205,96,0,137,210,174,254,180,212,144,255,89,98,154,1,34,88,139,0,167,162,112,1,65,110,197,0,241,37,169,0,66,56,131,255,10,201,83,254,133,253,187,255,177,112,45,254,196,251,0,0,196,250,151,255,238,232,214,255,150,209,205,0,28,240,118,0,71,76,83,1,236,99,91,0,42,250,131,1,96,18,64,255,118,222,35,0,113,214,203,255,122,119,184,255,66,19,36,0,204,64,249,0,146,89,139,0,134,62,135,1,104,233,101,0,188,84,26,0,49,249,129,0,208,214,75,255,207,130,77,255,115,175,235,0,171,2,137,255,175,145,186,1,55,245,135,255,154,86,181,1,100,58,246,255,109,199,60,255,82,204,134,255,215,49,230,1,140,229,192,255,222,193,251,255,81,136,15,255,179,149,162,255,23,39,29,255,7,95,75,254,191,81,222,0,241,81,90,255,107,49,201,255,244,211,157,0,222,140,149,255,65,219,56,254,189,246,90,255,178,59,157,1,48,219,52,0,98,34,215,0,28,17,187,255,175,169,24,0,92,79,161,255,236,200,194,1,147,143,234,0,229,225,7,1,197,168,14,0,235,51,53,1,253,120,174,0,197,6,168,255,202,117,171,0,163,21,206,0,114,85,90,255,15,41,10,255,194,19,99,0,65,55,216,254,162,146,116,0,50,206,212,255,64,146,29,255,158,158,131,1,100,165,130,255,172,23,129,255,125,53,9,255,15,193,18,1,26,49,11,255,181,174,201,1,135,201,14,255,100,19,149,0,219,98,79,0,42,99,143,254,96,0,48,255,197,249,83,254,104,149,79,255,235,110,136,254,82,128,44,255,65,41,36,254,88,211,10,0,187,121,187,0,98,134,199,0,171,188,179,254,210,11,238,255,66,123,130,254,52,234,61,0,48,113,23,254,6,86,120,255,119,178,245,0,87,129,201,0,242,141,209,0,202,114,85,0,148,22,161,0,103,195,48,0,25,49,171,255,138,67,130,0,182,73,122,254,148,24,130,0,211,229,154,0,32,155,158,0,84,105,61,0,177,194,9,255,166,89,86,1,54,83,187,0,249,40,117,255,109,3,215,255,53,146,44,1,63,47,179,0,194,216,3,254,14,84,136,0,136,177,13,255,72,243,186,255,117,17,125,255,211,58,211,255,93,79,223,0,90,88,245,255,139,209,111,255,70,222,47,0,10,246,79,255,198,217,178,0,227,225,11,1,78,126,179,255,62,43,126,0,103,148,35,0,129,8,165,254,245,240,148,0,61,51,142,0,81,208,134,0,15,137,115,255,211,119,236,255,159,245,248,255,2,134,136,255,230,139,58,1,160,164,254,0,114,85,141,255,49,166,182,255,144,70,84,1,85,182,7,0,46,53,93,0,9,166,161,255,55,162,178,255,45,184,188,0,146,28,44,254,169,90,49,0,120,178,241,1,14,123,127,255,7,241,199,1,189,66,50,255,198,143,101,254,189,243,135,255,141,24,24,254,75,97,87,0,118,251,154,1,237,54,156,0,171,146,207,255,131,196,246,255,136,64,113,1,151,232,57,0,240,218,115,0,49,61,27,255,64,129,73,1,252,169,27,255,40,132,10,1,90,201,193,255,252,121,240,1,186,206,41,0,43,198,97,0,145,100,183,0,204,216,80,254,172,150,65,0,249,229,196,254,104,123,73,255,77,104,96,254,130,180,8,0,104,123,57,0,220,202,229,255,102,249,211,0,86,14,232,255,182,78,209,0,239,225,164,0,106,13,32,255,120,73,17,255,134,67,233,0,83,254,181,0,183,236,112,1,48,64,131,255,241,216,243,255,65,193,226,0,206,241,100,254,100,134,166,255,237,202,197,0,55,13,81,0,32,124,102,255,40,228,177,0,118,181,31,1,231,160,134,255,119,187,202,0,0,142,60,255,128,38,189,255,166,201,150,0,207,120,26,1,54,184,172,0,12,242,204,254,133,66,230,0,34,38,31,1,184,112,80,0,32,51,165,254,191,243,55,0,58,73,146,254,155,167,205,255,100,104,152,255,197,254,207,255,173,19,247,0,238,10,202,0,239,151,242,0,94,59,39,255,240,29,102,255,10,92,154,255,229,84,219,255,161,129,80,0,208,90,204,1,240,219,174,255,158,102,145,1,53,178,76,255,52,108,168,1,83,222,107,0,211,36,109,0,118,58,56,0,8,29,22,0,237,160,199,0,170,209,157,0,137,71,47,0,143,86,32,0,198,242,2,0,212,48,136,1,92,172,186,0,230,151,105,1,96,191,229,0,138,80,191,254,240,216,130,255,98,43,6,254,168,196,49,0,253,18,91,1,144,73,121,0,61,146,39,1,63,104,24,255,184,165,112,254,126,235,98,0,80,213,98,255,123,60,87,255,82,140,245,1,223,120,173,255,15,198,134,1,206,60,239,0,231,234,92,255,33,238,19,255,165,113,142,1,176,119,38,0,160,43,166,254,239,91,105,0,107,61,194,1,25,4,68,0,15,139,51,0,164,132,106,255,34,116,46,254,168,95,197,0,137,212,23,0,72,156,58,0,137,112,69,254,150,105,154,255,236,201,157,0,23,212,154,255,136,82,227,254,226,59,221,255,95,149,192,0,81,118,52,255,33,43,215,1,14,147,75,255,89,156,121,254,14,18,79,0,147,208,139,1,151,218,62,255,156,88,8,1,210,184,98,255,20,175,123,255,102,83,229,0,220,65,116,1,150,250,4,255,92,142,220,255,34,247,66,255,204,225,179,254,151,81,151,0,71,40,236,255,138,63,62,0,6,79,240,255,183,185,181,0,118,50,27,0,63,227,192,0,123,99,58,1,50,224,155,255,17,225,223,254,220,224,77,255,14,44,123,1,141,128,175,0,248,212,200,0,150,59,183,255,147,97,29,0,150,204,181,0,253,37,71,0,145,85,119,0,154,200,186,0,2,128,249,255,83,24,124,0,14,87,143,0,168,51,245,1,124,151,231,255,208,240,197,1,124,190,185,0,48,58,246,0,20,233,232,0,125,18,98,255,13,254,31,255,245,177,130,255,108,142,35,0,171,125,242,254,140,12,34,255,165,161,162,0,206,205,101,0,247,25,34,1,100,145,57,0,39,70,57,0,118,204,203,255,242,0,162,0,165,244,30,0,198,116,226,0,128,111,153,255,140,54,182,1,60,122,15,255,155,58,57,1,54,50,198,0,171,211,29,255,107,138,167,255,173,107,199,255,109,161,193,0,89,72,242,255,206,115,89,255,250,254,142,254,177,202,94,255,81,89,50,0,7,105,66,255,25,254,255,254,203,64,23,255,79,222,108,255,39,249,75,0,241,124,50,0,239,152,133,0,221,241,105,0,147,151,98,0,213,161,121,254,242,49,137,0,233,37,249,254,42,183,27,0,184,119,230,255,217,32,163,255,208,251,228,1,137,62,131,255,79,64,9,254,94,48,113,0,17,138,50,254,193,255,22,0,247,18,197,1,67,55,104,0,16,205,95,255,48,37,66,0,55,156,63,1,64,82,74,255,200,53,71,254,239,67,125,0,26,224,222,0,223,137,93,255,30,224,202,255,9,220,132,0,198,38,235,1,102,141,86,0,60,43,81,1,136,28,26,0,233,36,8,254,207,242,148,0,164,162,63,0,51,46,224,255,114,48,79,255,9,175,226,0,222,3,193,255,47,160,232,255,255,93,105,254,14,42,230,0,26,138,82,1,208,43,244,0,27,39,38,255,98,208,127,255,64,149,182,255,5,250,209,0,187,60,28,254,49,25,218,255,169,116,205,255,119,18,120,0,156,116,147,255,132,53,109,255,13,10,202,0,110,83,167,0,157,219,137,255,6,3,130,255,50,167,30,255,60,159,47,255,129,128,157,254,94,3,189,0,3,166,68,0,83,223,215,0,150,90,194,1,15,168,65,0,227,83,51,255,205,171,66,255,54,187,60,1,152,102,45,255,119,154,225,0,240,247,136,0,100,197,178,255,139,71,223,255,204,82,16,1,41,206,42,255,156,192,221,255,216,123,244,255,218,218,185,255,187,186,239,255,252,172,160,255,195,52,22,0,144,174,181,254,187,100,115,255,211,78,176,255,27,7,193,0,147,213,104,255,90,201,10,255,80,123,66,1,22,33,186,0,1,7,99,254,30,206,10,0,229,234,5,0,53,30,210,0,138,8,220,254,71,55,167,0,72,225,86,1,118,190,188,0,254,193,101,1,171,249,172,255,94,158,183,254,93,2,108,255,176,93,76,255,73,99,79,255,74,64,129,254,246,46,65,0,99,241,127,254,246,151,102,255,44,53,208,254,59,102,234,0,154,175,164,255,88,242,32,0,111,38,1,0,255,182,190,255,115,176,15,254,169,60,129,0,122,237,241,0,90,76,63,0,62,74,120,255,122,195,110,0,119,4,178,0,222,242,210,0,130,33,46,254,156,40,41,0,167,146,112,1,49,163,111,255,121,176,235,0,76,207,14,255,3,25,198,1,41,235,213,0,85,36,214,1,49,92,109,255,200,24,30,254,168,236,195,0,145,39,124,1,236,195,149,0,90,36,184,255,67,85,170,255,38,35,26,254,131,124,68,255,239,155,35,255,54,201,164,0,196,22,117,255,49,15,205,0,24,224,29,1,126,113,144,0,117,21,182,0,203,159,141,0,223,135,77,0,176,230,176,255,190,229,215,255,99,37,181,255,51,21,138,255,25,189,89,255,49,48,165,254,152,45,247,0,170,108,222,0,80,202,5,0,27,69,103,254,204,22,129,255,180,252,62,254,210,1,91,255,146,110,254,255,219,162,28,0,223,252,213,1,59,8,33,0,206,16,244,0,129,211,48,0,107,160,208,0,112,59,209,0,109,77,216,254,34,21,185,255,246,99,56,255,179,139,19,255,185,29,50,255,84,89,19,0,74,250,98,255,225,42,200,255,192,217,205,255,210,16,167,0,99,132,95,1,43,230,57,0,254,11,203,255,99,188,63,255,119,193,251,254,80,105,54,0,232,181,189,1,183,69,112,255,208,171,165,255,47,109,180,255,123,83,165,0,146,162,52,255,154,11,4,255,151,227,90,255,146,137,97,254,61,233,41,255,94,42,55,255,108,164,236,0,152,68,254,0,10,140,131,255,10,106,79,254,243,158,137,0,67,178,66,254,177,123,198,255,15,62,34,0,197,88,42,255,149,95,177,255,152,0,198,255,149,254,113,255,225,90,163,255,125,217,247,0,18,17,224,0,128,66,120,254,192,25,9,255,50,221,205,0,49,212,70,0,233,255,164,0,2,209,9,0,221,52,219,254,172,224,244,255,94,56,206,1,242,179,2,255,31,91,164,1,230,46,138,255,189,230,220,0,57,47,61,255,111,11,157,0,177,91,152,0,28,230,98,0,97,87,126,0,198,89,145,255,167,79,107,0,249,77,160,1,29,233,230,255,150,21,86,254,60,11,193,0,151,37,36,254,185,150,243,255,228,212,83,1,172,151,180,0,201,169,155,0,244,60,234,0,142,235,4,1,67,218,60,0,192,113,75,1,116,243,207,255,65,172,155,0,81,30,156,255,80,72,33,254,18,231,109,255,142,107,21,254,125,26,132,255,176,16,59,255,150,201,58,0,206,169,201,0,208,121,226,0,40,172,14,255,150,61,94,255,56,57,156,255,141,60,145,255,45,108,149,255,238,145,155,255,209,85,31,254,192,12,210,0,99,98,93,254,152,16,151,0,225,185,220,0,141,235,44,255,160,172,21,254,71,26,31,255,13,64,93,254,28,56,198,0,177,62,248,1,182,8,241,0,166,101,148,255,78,81,133,255,129,222,215,1,188,169,129,255,232,7,97,0,49,112,60,255,217,229,251,0,119,108,138,0,39,19,123,254,131,49,235,0,132,84,145,0,130,230,148,255,25,74,187,0,5,245,54,255,185,219,241,1,18,194,228,255,241,202,102,0,105,113,202,0,155,235,79,0,21,9,178,255,156,1,239,0,200,148,61,0,115,247,210,255,49,221,135,0,58,189,8,1,35,46,9,0,81,65,5,255,52,158,185,255,125,116,46,255,74,140,13,255,210,92,172,254,147,23,71,0,217,224,253,254,115,108,180,255,145,58,48,254,219,177,24,255,156,255,60,1,154,147,242,0,253,134,87,0,53,75,229,0,48,195,222,255,31,175,50,255,156,210,120,255,208,35,222,255,18,248,179,1,2,10,101,255,157,194,248,255,158,204,101,255,104,254,197,255,79,62,4,0,178,172,101,1,96,146,251,255,65,10,156,0,2,137,165,255,116,4,231,0,242,215,1,0,19,35,29,255,43,161,79,0,59,149,246,1,251,66,176,0,200,33,3,255,80,110,142,255,195,161,17,1,228,56,66,255,123,47,145,254,132,4,164,0,67,174,172,0,25,253,114,0,87,97,87,1,250,220,84,0,96,91,200,255,37,125,59,0,19,65,118,0,161,52,241,255,237,172,6,255,176,191,255,255,1,65,130,254,223,190,230,0,101,253,231,255,146,35,109,0,250,29,77,1,49,0,19,0,123,90,155,1,22,86,32,255,218,213,65,0,111,93,127,0,60,93,169,255,8,127,182,0,17,186,14,254,253,137,246,255,213,25,48,254,76,238,0,255,248,92,70,255,99,224,139,0,184,9,255,1,7,164,208,0,205,131,198,1,87,214,199,0,130,214,95,0,221,149,222,0,23,38,171,254,197,110,213,0,43,115,140,254,215,177,118,0,96,52,66,1,117,158,237,0,14,64,182,255,46,63,174,255,158,95,190,255,225,205,177,255,43,5,142,255,172,99,212,255,244,187,147,0,29,51,153,255,228,116,24,254,30,101,207,0,19,246,150,255,134,231,5,0,125,134,226,1,77,65,98,0,236,130,33,255,5,110,62,0,69,108,127,255,7,113,22,0,145,20,83,254,194,161,231,255,131,181,60,0,217,209,177,255,229,148,212,254,3,131,184,0,117,177,187,1,28,14,31,255,176,102,80,0,50,84,151,255,125,31,54,255,21,157,133,255,19,179,139,1,224,232,26,0,34,117,170,255,167,252,171,255,73,141,206,254,129,250,35,0,72,79,236,1,220,229,20,255,41,202,173,255,99,76,238,255,198,22,224,255,108,198,195,255,36,141,96,1,236,158,59,255,106,100,87,0,110,226,2,0,227,234,222,0,154,93,119,255,74,112,164,255,67,91,2,255,21,145,33,255,102,214,137,255,175,230,103,254,163,246,166,0,93,247,116,254,167,224,28,255,220,2,57,1,171,206,84,0,123,228,17,255,27,120,119,0,119,11,147,1,180,47,225,255,104,200,185,254,165,2,114,0,77,78,212,0,45,154,177,255,24,196,121,254,82,157,182,0,90,16,190,1,12,147,197,0,95,239,152,255,11,235,71,0,86,146,119,255,172,134,214,0,60,131,196,0,161,225,129,0,31,130,120,254,95,200,51,0,105,231,210,255,58,9,148,255,43,168,221,255,124,237,142,0,198,211,50,254,46,245,103,0,164,248,84,0,152,70,208,255,180,117,177,0,70,79,185,0,243,74,32,0,149,156,207,0,197,196,161,1,245,53,239,0,15,93,246,254,139,240,49,255,196,88,36,255,162,38,123,0,128,200,157,1,174,76,103,255,173,169,34,254,216,1,171,255,114,51,17,0,136,228,194,0,110,150,56,254,106,246,159,0,19,184,79,255,150,77,240,255,155,80,162,0,0,53,169,255,29,151,86,0,68,94,16,0,92,7,110,254,98,117,149,255,249,77,230,255,253,10,140,0,214,124,92,254,35,118,235,0,89,48,57,1,22,53,166,0,184,144,61,255,179,255,194,0,214,248,61,254,59,110,246,0,121,21,81,254,166,3,228,0,106,64,26,255,69,232,134,255,242,220,53,254,46,220,85,0,113,149,247,255,97,179,103,255,190,127,11,0,135,209,182,0,95,52,129,1,170,144,206,255,122,200,204,255,168,100,146,0,60,144,149,254,70,60,40,0,122,52,177,255,246,211,101,255,174,237,8,0,7,51,120,0,19,31,173,0,126,239,156,255,143,189,203,0,196,128,88,255,233,133,226,255,30,125,173,255,201,108,50,0,123,100,59,255,254,163,3,1,221,148,181,255,214,136,57,254,222,180,137,255,207,88,54,255,28,33,251,255,67,214,52,1,210,208,100,0,81,170,94,0,145,40,53,0,224,111,231,254,35,28,244,255,226,199,195,254,238,17,230,0,217,217,164,254,169,157,221,0,218,46,162,1,199,207,163,255,108,115,162,1,14,96,187,255,118,60,76,0,184,159,152,0,209,231,71,254,42,164,186,255,186,153,51,254,221,171,182,255,162,142,173,0,235,47,193,0,7,139,16,1,95,164,64,255,16,221,166,0,219,197,16,0,132,29,44,255,100,69,117,255,60,235,88,254,40,81,173,0,71,190,61,255,187,88,157,0,231,11,23,0,237,117,164,0,225,168,223,255,154,114,116,255,163,152,242,1,24,32,170,0,125,98,113,254,168,19,76,0,17,157,220,254,155,52,5,0,19,111,161,255,71,90,252,255,173,110,240,0,10,198,121,255,253,255,240,255,66,123,210,0,221,194,215,254,121,163,17,255,225,7,99,0,190,49,182,0,115,9,133,1,232,26,138,255,213,68,132,0,44,119,122,255,179,98,51,0,149,90,106,0,71,50,230,255,10,153,118,255,177,70,25,0,165,87,205,0,55,138,234,0,238,30,97,0,113,155,207,0,98,153,127,0,34,107,219,254,117,114,172,255,76,180,255,254,242,57,179,255,221,34,172,254,56,162,49,255,83,3,255,255,113,221,189,255,188,25,228,254,16,88,89,255,71,28,198,254,22,17,149,255,243,121,254,255,107,202,99,255,9,206,14,1,220,47,153,0,107,137,39,1,97,49,194,255,149,51,197,254,186,58,11,255,107,43,232,1,200,6,14,255,181,133,65,254,221,228,171,255,123,62,231,1,227,234,179,255,34,189,212,254,244,187,249,0,190,13,80,1,130,89,1,0,223,133,173,0,9,222,198,255,66,127,74,0,167,216,93,255,155,168,198,1,66,145,0,0,68,102,46,1,172,90,154,0,216,128,75,255,160,40,51,0,158,17,27,1,124,240,49,0,236,202,176,255,151,124,192,255,38,193,190,0,95,182,61,0,163,147,124,255,255,165,51,255,28,40,17,254,215,96,78,0,86,145,218,254,31,36,202,255,86,9,5,0,111,41,200,255,237,108,97,0,57,62,44,0,117,184,15,1,45,241,116,0,152,1,220,255,157,165,188,0,250,15,131,1,60,44,125,255,65,220,251,255,75,50,184,0,53,90,128,255,231,80,194,255,136,129,127,1,21,18,187,255,45,58,161,255,71,147,34,0,174,249,11,254,35,141,29,0,239,68,177,255,115,110,58,0,238,190,177,1,87,245,166,255,190,49,247,255,146,83,184,255,173,14,39,255,146,215,104,0,142,223,120,0,149,200,155,255,212,207,145,1,16,181,217,0,173,32,87,255,255,35,181,0,119,223,161,1,200,223,94,255,70,6,186,255,192,67,85,255,50,169,152,0,144,26,123,255,56,243,179,254,20,68,136,0,39,140,188,254,253,208,5,255,200,115,135,1,43,172,229,255,156,104,187,0,151,251,167,0,52,135,23,0,151,153,72,0,147,197,107,254,148,158,5,255,238,143,206,0,126,153,137,255,88,152,197,254,7,68,167,0,252,159,165,255,239,78,54,255,24,63,55,255,38,222,94,0,237,183,12,255,206,204,210,0,19,39,246,254,30,74,231,0,135,108,29,1,179,115,0,0,117,118,116,1,132,6,252,255,145,129,161,1,105,67,141,0,82,37,226,255,238,226,228,255,204,214,129,254,162,123,100,255,185,121,234,0,45,108,231,0,66,8,56,255,132,136,128,0,172,224,66,254,175,157,188,0,230,223,226,254,242,219,69,0,184,14,119,1,82,162,56,0,114,123,20,0,162,103,85,255,49,239,99,254,156,135,215,0,111,255,167,254,39,196,214,0,144,38,79,1,249,168,125,0,155,97,156,255,23,52,219,255,150,22,144,0,44,149,165,255,40,127,183,0,196,77,233,255,118,129,210,255,170,135,230,255,214,119,198,0,233,240,35,0,253,52,7,255,117,102,48,255,21,204,154,255,179,136,177,255,23,2,3,1,149,130,89,255,252,17,159,1,70,60,26,0,144,107,17,0,180,190,60,255,56,182,59,255,110,71,54,255,198,18,129,255,149,224,87,255,223,21,152,255,138,22,182,255,250,156,205,0,236,45,208,255,79,148,242,1,101,70,209,0,103,78,174,0,101,144,172,255,152,136,237,1,191,194,136,0,113,80,125,1,152,4,141,0,155,150,53,255,196,116,245,0,239,114,73,254,19,82,17,255,124,125,234,255,40,52,191,0,42,210,158,255,155,132,165,0,178,5,42,1,64,92,40,255,36,85,77,255,178,228,118,0,137,66,96,254,115,226,66,0,110,240,69,254,151,111,80,0,167,174,236,255,227,108,107,255,188,242,65,255,183,81,255,0,57,206,181,255,47,34,181,255,213,240,158,1,71,75,95,0,156,40,24,255,102,210,81,0,171,199,228,255,154,34,41,0,227,175,75,0,21,239,195,0,138,229,95,1,76,192,49,0,117,123,87,1,227,225,130,0,125,62,63,255,2,198,171,0,254,36,13,254,145,186,206,0,148,255,244,255,35,0,166,0,30,150,219,1,92,228,212,0,92,198,60,254,62,133,200,255,201,41,59,0,125,238,109,255,180,163,238,1,140,122,82,0,9,22,88,255,197,157,47,255,153,94,57,0,88,30,182,0,84,161,85,0,178,146,124,0,166,166,7,255,21,208,223,0,156,182,242,0,155,121,185,0,83,156,174,254,154,16,118,255,186,83,232,1,223,58,121,255,29,23,88,0,35,125,127,255,170,5,149,254,164,12,130,255,155,196,29,0,161,96,136,0,7,35,29,1,162,37,251,0,3,46,242,255,0,217,188,0,57,174,226,1,206,233,2,0,57,187,136,254,123,189,9,255,201,117,127,255,186,36,204,0,231,25,216,0,80,78,105,0,19,134,129,255,148,203,68,0,141,81,125,254,248,165,200,255,214,144,135,0,151,55,166,255,38,235,91,0,21,46,154,0,223,254,150,255,35,153,180,255,125,176,29,1,43,98,30,255,216,122,230,255,233,160,12,0,57,185,12,254,240,113,7,255,5,9,16,254,26,91,108,0,109,198,203,0,8,147,40,0,129,134,228,255,124,186,40,255,114,98,132,254,166,132,23,0,99,69,44,0,9,242,238,255,184,53,59,0,132,129,102,255,52,32,243,254,147,223,200,255,123,83,179,254,135,144,201,255,141,37,56,1,151,60,227,255,90,73,156,1,203,172,187,0,80,151,47,255,94,137,231,255,36,191,59,255,225,209,181,255,74,215,213,254,6,118,179,255,153,54,193,1,50,0,231,0,104,157,72,1,140,227,154,255,182,226,16,254,96,225,92,255,115,20,170,254,6,250,78,0,248,75,173,255,53,89,6,255,0,180,118,0,72,173,1,0,64,8,206,1,174,133,223,0,185,62,133,255,214,11,98,0,197,31,208,0,171,167,244,255,22,231,181,1,150,218,185,0,247,169,97,1,165,139,247,255,47,120,149,1,103,248,51,0,60,69,28,254,25,179,196,0,124,7,218,254,58,107,81,0,184,233,156,255,252,74,36,0,118,188,67,0,141,95,53,255,222,94,165,254,46,61,53,0,206,59,115,255,47,236,250,255,74,5,32,1,129,154,238,255,106,32,226,0,121,187,61,255,3,166,241,254,67,170,172,255,29,216,178,255,23,201,252,0,253,110,243,0,200,125,57,0,109,192,96,255,52,115,238,0,38,121,243,255,201,56,33,0,194,118,130,0,75,96,25,255,170,30,230,254,39,63,253,0,36,45,250,255,251,1,239,0,160,212,92,1,45,209,237,0,243,33,87,254,237,84,201,255,212,18,157,254,212,99,127,255,217,98,16,254,139,172,239,0,168,201,130,255,143,193,169,255,238,151,193,1,215,104,41,0,239,61,165,254,2,3,242,0,22,203,177,254,177,204,22,0,149,129,213,254,31,11,41,255,0,159,121,254,160,25,114,255,162,80,200,0,157,151,11,0,154,134,78,1,216,54,252,0,48,103,133,0,105,220,197,0,253,168,77,254,53,179,23,0,24,121,240,1,255,46,96,255,107,60,135,254,98,205,249,255,63,249,119,255,120,59,211,255,114,180,55,254,91,85,237,0,149,212,77,1,56,73,49,0,86,198,150,0,93,209,160,0,69,205,182,255,244,90,43,0,20,36,176,0,122,116,221,0,51,167,39,1,231,1,63,255,13,197,134,0,3,209,34,255,135,59,202,0,167,100,78,0,47,223,76,0,185,60,62,0,178,166,123,1,132,12,161,255,61,174,43,0,195,69,144,0,127,47,191,1,34,44,78,0,57,234,52,1,255,22,40,255,246,94,146,0,83,228,128,0,60,78,224,255,0,96,210,255,153,175,236,0,159,21,73,0,180,115,196,254,131,225,106,0,255,167,134,0,159,8,112,255,120,68,194,255,176,196,198,255,118,48,168,255,93,169,1,0,112,200,102,1,74,24,254,0,19,141,4,254,142,62,63,0,131,179,187,255,77,156,155,255,119,86,164,0,170,208,146,255,208,133,154,255,148,155,58,255,162,120,232,254,252,213,155,0,241,13,42,0,94,50,131,0,179,170,112,0,140,83,151,255,55,119,84,1,140,35,239,255,153,45,67,1,236,175,39,0,54,151,103,255,158,42,65,255,196,239,135,254,86,53,203,0,149,97,47,254,216,35,17,255,70,3,70,1,103,36,90,255,40,26,173,0,184,48,13,0,163,219,217,255,81,6,1,255,221,170,108,254,233,208,93,0,100,201,249,254,86,36,35,255,209,154,30,1,227,201,251,255,2,189,167,254,100,57,3,0,13,128,41,0,197,100,75,0,150,204,235,255,145,174,59,0,120,248,149,255,85,55,225,0,114,210,53,254,199,204,119,0,14,247,74,1,63,251,129,0,67,104,151,1,135,130,80,0,79,89,55,255,117,230,157,255,25,96,143,0,213,145,5,0,69,241,120,1,149,243,95,255,114,42,20,0,131,72,2,0,154,53,20,255,73,62,109,0,196,102,152,0,41,12,204,255,122,38,11,1,250,10,145,0,207,125,148,0,246,244,222,255,41,32,85,1,112,213,126,0,162,249,86,1,71,198,127,255,81,9,21,1,98,39,4,255,204,71,45,1,75,111,137,0,234,59,231,0,32,48,95,255,204,31,114,1,29,196,181,255,51,241,167,254,93,109,142,0,104,144,45,0,235,12,181,255,52,112,164,0,76,254,202,255,174,14,162,0,61,235,147,255,43,64,185,254,233,125,217,0,243,88,167,254,74,49,8,0,156,204,66,0,124,214,123,0,38,221,118,1,146,112,236,0,114,98,177,0,151,89,199,0,87,197,112,0,185,149,161,0,44,96,165,0,248,179,20,255,188,219,216,254,40,62,13,0,243,142,141,0,229,227,206,255,172,202,35,255,117,176,225,255,82,110,38,1,42,245,14,255,20,83,97,0,49,171,10,0,242,119,120,0,25,232,61,0,212,240,147,255,4,115,56,255,145,17,239,254,202,17,251,255,249,18,245,255,99,117,239,0,184,4,179,255,246,237,51,255,37,239,137,255,166,112,166,255,81,188,33,255,185,250,142,255,54,187,173,0,208,112,201,0,246,43,228,1,104,184,88,255,212,52,196,255,51,117,108,255,254,117,155,0,46,91,15,255,87,14,144,255,87,227,204,0,83,26,83,1,159,76,227,0,159,27,213,1,24,151,108,0,117,144,179,254,137,209,82,0,38,159,10,0,115,133,201,0,223,182,156,1,110,196,93,255,57,60,233,0,5,167,105,255,154,197,164,0,96,34,186,255,147,133,37,1,220,99,190,0,1,167,84,255,20,145,171,0,194,197,251,254,95,78,133,255,252,248,243,255,225,93,131,255,187,134,196,255,216,153,170,0,20,118,158,254,140,1,118,0,86,158,15,1,45,211,41,255,147,1,100,254,113,116,76,255,211,127,108,1,103,15,48,0,193,16,102,1,69,51,95,255,107,128,157,0,137,171,233,0,90,124,144,1,106,161,182,0,175,76,236,1,200,141,172,255,163,58,104,0,233,180,52,255,240,253,14,255,162,113,254,255,38,239,138,254,52,46,166,0,241,101,33,254,131,186,156,0,111,208,62,255,124,94,160,255,31,172,254,0,112,174,56,255,188,99,27,255,67,138,251,0,125,58,128,1,156,152,174,255,178,12,247,255,252,84,158,0,82,197,14,254,172,200,83,255,37,39,46,1,106,207,167,0,24,189,34,0,131,178,144,0,206,213,4,0,161,226,210,0,72,51,105,255,97,45,187,255,78,184,223,255,176,29,251,0,79,160,86,255,116,37,178,0,82,77,213,1,82,84,141,255,226,101,212,1,175,88,199,255,245,94,247,1,172,118,109,255,166,185,190,0,131,181,120,0,87,254,93,255,134,240,73,255,32,245,143,255,139,162,103,255,179,98,18,254,217,204,112,0,147,223,120,255,53,10,243,0,166,140,150,0,125,80,200,255,14,109,219,255,91,218,1,255,252,252,47,254,109,156,116,255,115,49,127,1,204,87,211,255,148,202,217,255,26,85,249,255,14,245,134,1,76,89,169,255,242,45,230,0,59,98,172,255,114,73,132,254,78,155,49,255,158,126,84,0,49,175,43,255,16,182,84,255,157,103,35,0,104,193,109,255,67,221,154,0,201,172,1,254,8,162,88,0,165,1,29,255,125,155,229,255,30,154,220,1,103,239,92,0,220,1,109,255,202,198,1,0,94,2,142,1,36,54,44,0,235,226,158,255,170,251,214,255,185,77,9,0,97,74,242,0,219,163,149,255,240,35,118,255,223,114,88,254,192,199,3,0,106,37,24,255,201,161,118,255,97,89,99,1,224,58,103,255,101,199,147,254,222,60,99,0,234,25,59,1,52,135,27,0,102,3,91,254,168,216,235,0,229,232,136,0,104,60,129,0,46,168,238,0,39,191,67,0,75,163,47,0,143,97,98,255,56,216,168,1,168,233,252,255,35,111,22,255,92,84,43,0,26,200,87,1,91,253,152,0,202,56,70,0,142,8,77,0,80,10,175,1,252,199,76,0,22,110,82,255,129,1,194,0,11,128,61,1,87,14,145,255,253,222,190,1,15,72,174,0,85,163,86,254,58,99,44,255,45,24,188,254,26,205,15,0,19,229,210,254,248,67,195,0,99,71,184,0,154,199,37,255,151,243,121,255,38,51,75,255,201,85,130,254,44,65,250,0,57,147,243,254,146,43,59,255,89,28,53,0,33,84,24,255,179,51,18,254,189,70,83,0,11,156,179,1,98,134,119,0,158,111,111,0,119,154,73,255,200,63,140,254,45,13,13,255,154,192,2,254,81,72,42,0,46,160,185,254,44,112,6,0,146,215,149,1,26,176,104,0,68,28,87,1,236,50,153,255,179,128,250,254,206,193,191,255,166,92,137,254,53,40,239,0,210,1,204,254,168,173,35,0,141,243,45,1,36,50,109,255,15,242,194,255,227,159,122,255,176,175,202,254,70,57,72,0,40,223,56,0,208,162,58,255,183,98,93,0,15,111,12,0,30,8,76,255,132,127,246,255,45,242,103,0,69,181,15,255,10,209,30,0,3,179,121,0,241,232,218,1,123,199,88,255,2,210,202,1,188,130,81,255,94,101,208,1,103,36,45], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE+10240); /* memory initializer */ allocate([76,193,24,1,95,26,241,255,165,162,187,0,36,114,140,0,202,66,5,255,37,56,147,0,152,11,243,1,127,85,232,255,250,135,212,1,185,177,113,0,90,220,75,255,69,248,146,0,50,111,50,0,92,22,80,0,244,36,115,254,163,100,82,255,25,193,6,1,127,61,36,0,253,67,30,254,65,236,170,255,161,17,215,254,63,175,140,0,55,127,4,0,79,112,233,0,109,160,40,0,143,83,7,255,65,26,238,255,217,169,140,255,78,94,189,255,0,147,190,255,147,71,186,254,106,77,127,255,233,157,233,1,135,87,237,255,208,13,236,1,155,109,36,255,180,100,218,0,180,163,18,0,190,110,9,1,17,63,123,255,179,136,180,255,165,123,123,255,144,188,81,254,71,240,108,255,25,112,11,255,227,218,51,255,167,50,234,255,114,79,108,255,31,19,115,255,183,240,99,0,227,87,143,255,72,217,248,255,102,169,95,1,129,149,149,0,238,133,12,1,227,204,35,0,208,115,26,1,102,8,234,0,112,88,143,1,144,249,14,0,240,158,172,254,100,112,119,0,194,141,153,254,40,56,83,255,121,176,46,0,42,53,76,255,158,191,154,0,91,209,92,0,173,13,16,1,5,72,226,255,204,254,149,0,80,184,207,0,100,9,122,254,118,101,171,255,252,203,0,254,160,207,54,0,56,72,249,1,56,140,13,255,10,64,107,254,91,101,52,255,225,181,248,1,139,255,132,0,230,145,17,0,233,56,23,0,119,1,241,255,213,169,151,255,99,99,9,254,185,15,191,255,173,103,109,1,174,13,251,255,178,88,7,254,27,59,68,255,10,33,2,255,248,97,59,0,26,30,146,1,176,147,10,0,95,121,207,1,188,88,24,0,185,94,254,254,115,55,201,0,24,50,70,0,120,53,6,0,142,66,146,0,228,226,249,255,104,192,222,1,173,68,219,0,162,184,36,255,143,102,137,255,157,11,23,0,125,45,98,0,235,93,225,254,56,112,160,255,70,116,243,1,153,249,55,255,129,39,17,1,241,80,244,0,87,69,21,1,94,228,73,255,78,66,65,255,194,227,231,0,61,146,87,255,173,155,23,255,112,116,219,254,216,38,11,255,131,186,133,0,94,212,187,0,100,47,91,0,204,254,175,255,222,18,215,254,173,68,108,255,227,228,79,255,38,221,213,0,163,227,150,254,31,190,18,0,160,179,11,1,10,90,94,255,220,174,88,0,163,211,229,255,199,136,52,0,130,95,221,255,140,188,231,254,139,113,128,255,117,171,236,254,49,220,20,255,59,20,171,255,228,109,188,0,20,225,32,254,195,16,174,0,227,254,136,1,135,39,105,0,150,77,206,255,210,238,226,0,55,212,132,254,239,57,124,0,170,194,93,255,249,16,247,255,24,151,62,255,10,151,10,0,79,139,178,255,120,242,202,0,26,219,213,0,62,125,35,255,144,2,108,255,230,33,83,255,81,45,216,1,224,62,17,0,214,217,125,0,98,153,153,255,179,176,106,254,131,93,138,255,109,62,36,255,178,121,32,255,120,252,70,0,220,248,37,0,204,88,103,1,128,220,251,255,236,227,7,1,106,49,198,255,60,56,107,0,99,114,238,0,220,204,94,1,73,187,1,0,89,154,34,0,78,217,165,255,14,195,249,255,9,230,253,255,205,135,245,0,26,252,7,255,84,205,27,1,134,2,112,0,37,158,32,0,231,91,237,255,191,170,204,255,152,7,222,0,109,192,49,0,193,166,146,255,232,19,181,255,105,142,52,255,103,16,27,1,253,200,165,0,195,217,4,255,52,189,144,255,123,155,160,254,87,130,54,255,78,120,61,255,14,56,41,0,25,41,125,255,87,168,245,0,214,165,70,0,212,169,6,255,219,211,194,254,72,93,164,255,197,33,103,255,43,142,141,0,131,225,172,0,244,105,28,0,68,68,225,0,136,84,13,255,130,57,40,254,139,77,56,0,84,150,53,0,54,95,157,0,144,13,177,254,95,115,186,0,117,23,118,255,244,166,241,255,11,186,135,0,178,106,203,255,97,218,93,0,43,253,45,0,164,152,4,0,139,118,239,0,96,1,24,254,235,153,211,255,168,110,20,255,50,239,176,0,114,41,232,0,193,250,53,0,254,160,111,254,136,122,41,255,97,108,67,0,215,152,23,255,140,209,212,0,42,189,163,0,202,42,50,255,106,106,189,255,190,68,217,255,233,58,117,0,229,220,243,1,197,3,4,0,37,120,54,254,4,156,134,255,36,61,171,254,165,136,100,255,212,232,14,0,90,174,10,0,216,198,65,255,12,3,64,0,116,113,115,255,248,103,8,0,231,125,18,255,160,28,197,0,30,184,35,1,223,73,249,255,123,20,46,254,135,56,37,255,173,13,229,1,119,161,34,255,245,61,73,0,205,125,112,0,137,104,134,0,217,246,30,255,237,142,143,0,65,159,102,255,108,164,190,0,219,117,173,255,34,37,120,254,200,69,80,0,31,124,218,254,74,27,160,255,186,154,199,255,71,199,252,0,104,81,159,1,17,200,39,0,211,61,192,1,26,238,91,0,148,217,12,0,59,91,213,255,11,81,183,255,129,230,122,255,114,203,145,1,119,180,66,255,72,138,180,0,224,149,106,0,119,82,104,255,208,140,43,0,98,9,182,255,205,101,134,255,18,101,38,0,95,197,166,255,203,241,147,0,62,208,145,255,133,246,251,0,2,169,14,0,13,247,184,0,142,7,254,0,36,200,23,255,88,205,223,0,91,129,52,255,21,186,30,0,143,228,210,1,247,234,248,255,230,69,31,254,176,186,135,255,238,205,52,1,139,79,43,0,17,176,217,254,32,243,67,0,242,111,233,0,44,35,9,255,227,114,81,1,4,71,12,255,38,105,191,0,7,117,50,255,81,79,16,0,63,68,65,255,157,36,110,255,77,241,3,255,226,45,251,1,142,25,206,0,120,123,209,1,28,254,238,255,5,128,126,255,91,222,215,255,162,15,191,0,86,240,73,0,135,185,81,254,44,241,163,0,212,219,210,255,112,162,155,0,207,101,118,0,168,72,56,255,196,5,52,0,72,172,242,255,126,22,157,255,146,96,59,255,162,121,152,254,140,16,95,0,195,254,200,254,82,150,162,0,119,43,145,254,204,172,78,255,166,224,159,0,104,19,237,255,245,126,208,255,226,59,213,0,117,217,197,0,152,72,237,0,220,31,23,254,14,90,231,255,188,212,64,1,60,101,246,255,85,24,86,0,1,177,109,0,146,83,32,1,75,182,192,0,119,241,224,0,185,237,27,255,184,101,82,1,235,37,77,255,253,134,19,0,232,246,122,0,60,106,179,0,195,11,12,0,109,66,235,1,125,113,59,0,61,40,164,0,175,104,240,0,2,47,187,255,50,12,141,0,194,139,181,255,135,250,104,0,97,92,222,255,217,149,201,255,203,241,118,255,79,151,67,0,122,142,218,255,149,245,239,0,138,42,200,254,80,37,97,255,124,112,167,255,36,138,87,255,130,29,147,255,241,87,78,255,204,97,19,1,177,209,22,255,247,227,127,254,99,119,83,255,212,25,198,1,16,179,179,0,145,77,172,254,89,153,14,255,218,189,167,0,107,233,59,255,35,33,243,254,44,112,112,255,161,127,79,1,204,175,10,0,40,21,138,254,104,116,228,0,199,95,137,255,133,190,168,255,146,165,234,1,183,99,39,0,183,220,54,254,255,222,133,0,162,219,121,254,63,239,6,0,225,102,54,255,251,18,246,0,4,34,129,1,135,36,131,0,206,50,59,1,15,97,183,0,171,216,135,255,101,152,43,255,150,251,91,0,38,145,95,0,34,204,38,254,178,140,83,255,25,129,243,255,76,144,37,0,106,36,26,254,118,144,172,255,68,186,229,255,107,161,213,255,46,163,68,255,149,170,253,0,187,17,15,0,218,160,165,255,171,35,246,1,96,13,19,0,165,203,117,0,214,107,192,255,244,123,177,1,100,3,104,0,178,242,97,255,251,76,130,255,211,77,42,1,250,79,70,255,63,244,80,1,105,101,246,0,61,136,58,1,238,91,213,0,14,59,98,255,167,84,77,0,17,132,46,254,57,175,197,255,185,62,184,0,76,64,207,0,172,175,208,254,175,74,37,0,138,27,211,254,148,125,194,0,10,89,81,0,168,203,101,255,43,213,209,1,235,245,54,0,30,35,226,255,9,126,70,0,226,125,94,254,156,117,20,255,57,248,112,1,230,48,64,255,164,92,166,1,224,214,230,255,36,120,143,0,55,8,43,255,251,1,245,1,106,98,165,0,74,107,106,254,53,4,54,255,90,178,150,1,3,120,123,255,244,5,89,1,114,250,61,255,254,153,82,1,77,15,17,0,57,238,90,1,95,223,230,0,236,52,47,254,103,148,164,255,121,207,36,1,18,16,185,255,75,20,74,0,187,11,101,0,46,48,129,255,22,239,210,255,77,236,129,255,111,77,204,255,61,72,97,255,199,217,251,255,42,215,204,0,133,145,201,255,57,230,146,1,235,100,198,0,146,73,35,254,108,198,20,255,182,79,210,255,82,103,136,0,246,108,176,0,34,17,60,255,19,74,114,254,168,170,78,255,157,239,20,255,149,41,168,0,58,121,28,0,79,179,134,255,231,121,135,255,174,209,98,255,243,122,190,0,171,166,205,0,212,116,48,0,29,108,66,255,162,222,182,1,14,119,21,0,213,39,249,255,254,223,228,255,183,165,198,0,133,190,48,0,124,208,109,255,119,175,85,255,9,209,121,1,48,171,189,255,195,71,134,1,136,219,51,255,182,91,141,254,49,159,72,0,35,118,245,255,112,186,227,255,59,137,31,0,137,44,163,0,114,103,60,254,8,213,150,0,162,10,113,255,194,104,72,0,220,131,116,255,178,79,92,0,203,250,213,254,93,193,189,255,130,255,34,254,212,188,151,0,136,17,20,255,20,101,83,255,212,206,166,0,229,238,73,255,151,74,3,255,168,87,215,0,155,188,133,255,166,129,73,0,240,79,133,255,178,211,81,255,203,72,163,254,193,168,165,0,14,164,199,254,30,255,204,0,65,72,91,1,166,74,102,255,200,42,0,255,194,113,227,255,66,23,208,0,229,216,100,255,24,239,26,0,10,233,62,255,123,10,178,1,26,36,174,255,119,219,199,1,45,163,190,0,16,168,42,0,166,57,198,255,28,26,26,0,126,165,231,0,251,108,100,255,61,229,121,255,58,118,138,0,76,207,17,0,13,34,112,254,89,16,168,0,37,208,105,255,35,201,215,255,40,106,101,254,6,239,114,0,40,103,226,254,246,127,110,255,63,167,58,0,132,240,142,0,5,158,88,255,129,73,158,255,94,89,146,0,230,54,146,0,8,45,173,0,79,169,1,0,115,186,247,0,84,64,131,0,67,224,253,255,207,189,64,0,154,28,81,1,45,184,54,255,87,212,224,255,0,96,73,255,129,33,235,1,52,66,80,255,251,174,155,255,4,179,37,0,234,164,93,254,93,175,253,0,198,69,87,255,224,106,46,0,99,29,210,0,62,188,114,255,44,234,8,0,169,175,247,255,23,109,137,255,229,182,39,0,192,165,94,254,245,101,217,0,191,88,96,0,196,94,99,255,106,238,11,254,53,126,243,0,94,1,101,255,46,147,2,0,201,124,124,255,141,12,218,0,13,166,157,1,48,251,237,255,155,250,124,255,106,148,146,255,182,13,202,0,28,61,167,0,217,152,8,254,220,130,45,255,200,230,255,1,55,65,87,255,93,191,97,254,114,251,14,0,32,105,92,1,26,207,141,0,24,207,13,254,21,50,48,255,186,148,116,255,211,43,225,0,37,34,162,254,164,210,42,255,68,23,96,255,182,214,8,255,245,117,137,255,66,195,50,0,75,12,83,254,80,140,164,0,9,165,36,1,228,110,227,0,241,17,90,1,25,52,212,0,6,223,12,255,139,243,57,0,12,113,75,1,246,183,191,255,213,191,69,255,230,15,142,0,1,195,196,255,138,171,47,255,64,63,106,1,16,169,214,255,207,174,56,1,88,73,133,255,182,133,140,0,177,14,25,255,147,184,53,255,10,227,161,255,120,216,244,255,73,77,233,0,157,238,139,1,59,65,233,0,70,251,216,1,41,184,153,255,32,203,112,0,146,147,253,0,87,101,109,1,44,82,133,255,244,150,53,255,94,152,232,255,59,93,39,255,88,147,220,255,78,81,13,1,32,47,252,255,160,19,114,255,93,107,39,255,118,16,211,1,185,119,209,255,227,219,127,254,88,105,236,255,162,110,23,255,36,166,110,255,91,236,221,255,66,234,116,0,111,19,244,254,10,233,26,0,32,183,6,254,2,191,242,0,218,156,53,254,41,60,70,255,168,236,111,0,121,185,126,255,238,142,207,255,55,126,52,0,220,129,208,254,80,204,164,255,67,23,144,254,218,40,108,255,127,202,164,0,203,33,3,255,2,158,0,0,37,96,188,255,192,49,74,0,109,4,0,0,111,167,10,254,91,218,135,255,203,66,173,255,150,194,226,0,201,253,6,255,174,102,121,0,205,191,110,0,53,194,4,0,81,40,45,254,35,102,143,255,12,108,198,255,16,27,232,255,252,71,186,1,176,110,114,0,142,3,117,1,113,77,142,0,19,156,197,1,92,47,252,0,53,232,22,1,54,18,235,0,46,35,189,255,236,212,129,0,2,96,208,254,200,238,199,255,59,175,164,255,146,43,231,0,194,217,52,255,3,223,12,0,138,54,178,254,85,235,207,0,232,207,34,0,49,52,50,255,166,113,89,255,10,45,216,255,62,173,28,0,111,165,246,0,118,115,91,255,128,84,60,0,167,144,203,0,87,13,243,0,22,30,228,1,177,113,146,255,129,170,230,254,252,153,129,255,145,225,43,0,70,231,5,255,122,105,126,254,86,246,148,255,110,37,154,254,209,3,91,0,68,145,62,0,228,16,165,255,55,221,249,254,178,210,91,0,83,146,226,254,69,146,186,0,93,210,104,254,16,25,173,0,231,186,38,0,189,122,140,255,251,13,112,255,105,110,93,0,251,72,170,0,192,23,223,255,24,3,202,1,225,93,228,0,153,147,199,254,109,170,22,0,248,101,246,255,178,124,12,255,178,254,102,254,55,4,65,0,125,214,180,0,183,96,147,0,45,117,23,254,132,191,249,0,143,176,203,254,136,183,54,255,146,234,177,0,146,101,86,255,44,123,143,1,33,209,152,0,192,90,41,254,83,15,125,255,213,172,82,0,215,169,144,0,16,13,34,0,32,209,100,255,84,18,249,1,197,17,236,255,217,186,230,0,49,160,176,255,111,118,97,255,237,104,235,0,79,59,92,254,69,249,11,255,35,172,74,1,19,118,68,0,222,124,165,255,180,66,35,255,86,174,246,0,43,74,111,255,126,144,86,255,228,234,91,0,242,213,24,254,69,44,235,255,220,180,35,0,8,248,7,255,102,47,92,255,240,205,102,255,113,230,171,1,31,185,201,255,194,246,70,255,122,17,187,0,134,70,199,255,149,3,150,255,117,63,103,0,65,104,123,255,212,54,19,1,6,141,88,0,83,134,243,255,136,53,103,0,169,27,180,0,177,49,24,0,111,54,167,0,195,61,215,255,31,1,108,1,60,42,70,0,185,3,162,255,194,149,40,255,246,127,38,254,190,119,38,255,61,119,8,1,96,161,219,255,42,203,221,1,177,242,164,255,245,159,10,0,116,196,0,0,5,93,205,254,128,127,179,0,125,237,246,255,149,162,217,255,87,37,20,254,140,238,192,0,9,9,193,0,97,1,226,0,29,38,10,0,0,136,63,255,229,72,210,254,38,134,92,255,78,218,208,1,104,36,84,255,12,5,193,255,242,175,61,255,191,169,46,1,179,147,147,255,113,190,139,254,125,172,31,0,3,75,252,254,215,36,15,0,193,27,24,1,255,69,149,255,110,129,118,0,203,93,249,0,138,137,64,254,38,70,6,0,153,116,222,0,161,74,123,0,193,99,79,255,118,59,94,255,61,12,43,1,146,177,157,0,46,147,191,0,16,255,38,0,11,51,31,1,60,58,98,255,111,194,77,1,154,91,244,0,140,40,144,1,173,10,251,0,203,209,50,254,108,130,78,0,228,180,90,0,174,7,250,0,31,174,60,0,41,171,30,0,116,99,82,255,118,193,139,255,187,173,198,254,218,111,56,0,185,123,216,0,249,158,52,0,52,180,93,255,201,9,91,255,56,45,166,254,132,155,203,255,58,232,110,0,52,211,89,255,253,0,162,1,9,87,183,0,145,136,44,1,94,122,245,0,85,188,171,1,147,92,198,0,0,8,104,0,30,95,174,0,221,230,52,1,247,247,235,255,137,174,53,255,35,21,204,255,71,227,214,1,232,82,194,0,11,48,227,255,170,73,184,255,198,251,252,254,44,112,34,0,131,101,131,255,72,168,187,0,132,135,125,255,138,104,97,255,238,184,168,255,243,104,84,255,135,216,226,255,139,144,237,0,188,137,150,1,80,56,140,255,86,169,167,255,194,78,25,255,220,17,180,255,17,13,193,0,117,137,212,255,141,224,151,0,49,244,175,0,193,99,175,255,19,99,154,1,255,65,62,255,156,210,55,255,242,244,3,255,250,14,149,0,158,88,217,255,157,207,134,254,251,232,28,0,46,156,251,255,171,56,184,255,239,51,234,0,142,138,131,255,25,254,243,1,10,201,194,0,63,97,75,0,210,239,162,0,192,200,31,1,117,214,243,0,24,71,222,254,54,40,232,255,76,183,111,254,144,14,87,255,214,79,136,255,216,196,212,0,132,27,140,254,131,5,253,0,124,108,19,255,28,215,75,0,76,222,55,254,233,182,63,0,68,171,191,254,52,111,222,255,10,105,77,255,80,170,235,0,143,24,88,255,45,231,121,0,148,129,224,1,61,246,84,0,253,46,219,255,239,76,33,0,49,148,18,254,230,37,69,0,67,134,22,254,142,155,94,0,31,157,211,254,213,42,30,255,4,228,247,254,252,176,13,255,39,0,31,254,241,244,255,255,170,45,10,254,253,222,249,0,222,114,132,0,255,47,6,255,180,163,179,1,84,94,151,255,89,209,82,254,229,52,169,255,213,236,0,1,214,56,228,255,135,119,151,255,112,201,193,0,83,160,53,254,6,151,66,0,18,162,17,0,233,97,91,0,131,5,78,1,181,120,53,255,117,95,63,255,237,117,185,0,191,126,136,255,144,119,233,0,183,57,97,1,47,201,187,255,167,165,119,1,45,100,126,0,21,98,6,254,145,150,95,255,120,54,152,0,209,98,104,0,143,111,30,254,184,148,249,0,235,216,46,0,248,202,148,255,57,95,22,0,242,225,163,0,233,247,232,255,71,171,19,255,103,244,49,255,84,103,93,255,68,121,244,1,82,224,13,0,41,79,43,255,249,206,167,255,215,52,21,254,192,32,22,255,247,111,60,0,101,74,38,255,22,91,84,254,29,28,13,255,198,231,215,254,244,154,200,0,223,137,237,0,211,132,14,0,95,64,206,255,17,62,247,255,233,131,121,1,93,23,77,0,205,204,52,254,81,189,136,0,180,219,138,1,143,18,94,0,204,43,140,254,188,175,219,0,111,98,143,255,151,63,162,255,211,50,71,254,19,146,53,0,146,45,83,254,178,82,238,255,16,133,84,255,226,198,93,255,201,97,20,255,120,118,35,255,114,50,231,255,162,229,156,255,211,26,12,0,114,39,115,255,206,212,134,0,197,217,160,255,116,129,94,254,199,215,219,255,75,223,249,1,253,116,181,255,232,215,104,255,228,130,246,255,185,117,86,0,14,5,8,0,239,29,61,1,237,87,133,255,125,146,137,254,204,168,223,0,46,168,245,0,154,105,22,0,220,212,161,255,107,69,24,255,137,218,181,255,241,84,198,255,130,122,211,255,141,8,153,255,190,177,118,0,96,89,178,0,255,16,48,254,122,96,105,255,117,54,232,255,34,126,105,255,204,67,166,0,232,52,138,255,211,147,12,0,25,54,7,0,44,15,215,254,51,236,45,0,190,68,129,1,106,147,225,0,28,93,45,254,236,141,15,255,17,61,161,0,220,115,192,0,236,145,24,254,111,168,169,0,224,58,63,255,127,164,188,0,82,234,75,1,224,158,134,0,209,68,110,1,217,166,217,0,70,225,166,1,187,193,143,255,16,7,88,255,10,205,140,0,117,192,156,1,17,56,38,0,27,124,108,1,171,215,55,255,95,253,212,0,155,135,168,255,246,178,153,254,154,68,74,0,232,61,96,254,105,132,59,0,33,76,199,1,189,176,130,255,9,104,25,254,75,198,102,255,233,1,112,0,108,220,20,255,114,230,70,0,140,194,133,255,57,158,164,254,146,6,80,255,169,196,97,1,85,183,130,0,70,158,222,1,59,237,234,255,96,25,26,255,232,175,97,255,11,121,248,254,88,35,194,0,219,180,252,254,74,8,227,0,195,227,73,1,184,110,161,255,49,233,164,1,128,53,47,0,82,14,121,255,193,190,58,0,48,174,117,255,132,23,32,0,40,10,134,1,22,51,25,255,240,11,176,255,110,57,146,0,117,143,239,1,157,101,118,255,54,84,76,0,205,184,18,255,47,4,72,255,78,112,85,255,193,50,66,1,93,16,52,255,8,105,134,0,12,109,72,255,58,156,251,0,144,35,204,0,44,160,117,254,50,107,194,0,1,68,165,255,111,110,162,0,158,83,40,254,76,214,234,0,58,216,205,255,171,96,147,255,40,227,114,1,176,227,241,0,70,249,183,1,136,84,139,255,60,122,247,254,143,9,117,255,177,174,137,254,73,247,143,0,236,185,126,255,62,25,247,255,45,64,56,255,161,244,6,0,34,57,56,1,105,202,83,0,128,147,208,0,6,103,10,255,74,138,65,255,97,80,100,255,214,174,33,255,50,134,74,255,110,151,130,254,111,84,172,0,84,199,75,254,248,59,112,255,8,216,178,1,9,183,95,0,238,27,8,254,170,205,220,0,195,229,135,0,98,76,237,255,226,91,26,1,82,219,39,255,225,190,199,1,217,200,121,255,81,179,8,255,140,65,206,0,178,207,87,254,250,252,46,255,104,89,110,1,253,189,158,255,144,214,158,255,160,245,54,255,53,183,92,1,21,200,194,255,146,33,113,1,209,1,255,0,235,106,43,255,167,52,232,0,157,229,221,0,51,30,25,0,250,221,27,1,65,147,87,255,79,123,196,0,65,196,223,255,76,44,17,1,85,241,68,0,202,183,249,255,65,212,212,255,9,33,154,1,71,59,80,0,175,194,59,255,141,72,9,0,100,160,244,0,230,208,56,0,59,25,75,254,80,194,194,0,18,3,200,254,160,159,115,0,132,143,247,1,111,93,57,255,58,237,11,1,134,222,135,255,122,163,108,1,123,43,190,255,251,189,206,254,80,182,72,255,208,246,224,1,17,60,9,0,161,207,38,0,141,109,91,0,216,15,211,255,136,78,110,0,98,163,104,255,21,80,121,255,173,178,183,1,127,143,4,0,104,60,82,254,214,16,13,255,96,238,33,1,158,148,230,255,127,129,62,255,51,255,210,255,62,141,236,254,157,55,224,255,114,39,244,0,192,188,250,255,228,76,53,0,98,84,81,255,173,203,61,254,147,50,55,255,204,235,191,0,52,197,244,0,88,43,211,254,27,191,119,0,188,231,154,0,66,81,161,0,92,193,160,1,250,227,120,0,123,55,226,0,184,17,72,0,133,168,10,254,22,135,156,255,41,25,103,255,48,202,58,0,186,149,81,255,188,134,239,0,235,181,189,254,217,139,188,255,74,48,82,0,46,218,229,0,189,253,251,0,50,229,12,255,211,141,191,1,128,244,25,255,169,231,122,254,86,47,189,255,132,183,23,255,37,178,150,255,51,137,253,0,200,78,31,0,22,105,50,0,130,60,0,0,132,163,91,254,23,231,187,0,192,79,239,0,157,102,164,255,192,82,20,1,24,181,103,255,240,9,234,0,1,123,164,255,133,233,0,255,202,242,242,0,60,186,245,0,241,16,199,255,224,116,158,254,191,125,91,255,224,86,207,0,121,37,231,255,227,9,198,255,15,153,239,255,121,232,217,254,75,112,82,0,95,12,57,254,51,214,105,255,148,220,97,1,199,98,36,0,156,209,12,254,10,212,52,0,217,180,55,254,212,170,232,255,216,20,84,255,157,250,135,0,157,99,127,254,1,206,41,0,149,36,70,1,54,196,201,255,87,116,0,254,235,171,150,0,27,163,234,0,202,135,180,0,208,95,0,254,123,156,93,0,183,62,75,0,137,235,182,0,204,225,255,255,214,139,210,255,2,115,8,255,29,12,111,0,52,156,1,0,253,21,251,255,37,165,31,254,12,130,211,0,106,18,53,254,42,99,154,0,14,217,61,254,216,11,92,255,200,197,112,254,147,38,199,0,36,252,120,254,107,169,77,0,1,123,159,255,207,75,102,0,163,175,196,0,44,1,240,0,120,186,176,254,13,98,76,255,237,124,241,255,232,146,188,255,200,96,224,0,204,31,41,0,208,200,13,0,21,225,96,255,175,156,196,0,247,208,126,0,62,184,244,254,2,171,81,0,85,115,158,0,54,64,45,255,19,138,114,0,135,71,205,0,227,47,147,1,218,231,66,0,253,209,28,0,244,15,173,255,6,15,118,254,16,150,208,255,185,22,50,255,86,112,207,255,75,113,215,1,63,146,43,255,4,225,19,254,227,23,62,255,14,255,214,254,45,8,205,255,87,197,151,254,210,82,215,255,245,248,247,255,128,248,70,0,225,247,87,0,90,120,70,0,213,245,92,0,13,133,226,0,47,181,5,1,92,163,105,255,6,30,133,254,232,178,61,255,230,149,24,255,18,49,158,0,228,100,61,254,116,243,251,255,77,75,92,1,81,219,147,255,76,163,254,254,141,213,246,0,232,37,152,254,97,44,100,0,201,37,50,1,212,244,57,0,174,171,183,255,249,74,112,0,166,156,30,0,222,221,97,255,243,93,73,254,251,101,100,255,216,217,93,255,254,138,187,255,142,190,52,255,59,203,177,255,200,94,52,0,115,114,158,255,165,152,104,1,126,99,226,255,118,157,244,1,107,200,16,0,193,90,229,0,121,6,88,0,156,32,93,254,125,241,211,255,14,237,157,255,165,154,21,255,184,224,22,255,250,24,152,255,113,77,31,0,247,171,23,255,237,177,204,255,52,137,145,255,194,182,114,0,224,234,149,0,10,111,103,1,201,129,4,0,238,142,78,0,52,6,40,255,110,213,165,254,60,207,253,0,62,215,69,0,96,97,0,255,49,45,202,0,120,121,22,255,235,139,48,1,198,45,34,255,182,50,27,1,131,210,91,255,46,54,128,0,175,123,105,255,198,141,78,254,67,244,239,255,245,54,103,254,78,38,242,255,2,92,249,254,251,174,87,255,139,63,144,0,24,108,27,255,34,102,18,1,34,22,152,0,66,229,118,254,50,143,99,0,144,169,149,1,118,30,152,0,178,8,121,1,8,159,18,0,90,101,230,255,129,29,119,0,68,36,11,1,232,183,55,0,23,255,96,255,161,41,193,255,63,139,222,0,15,179,243,0,255,100,15,255,82,53,135,0,137,57,149,1,99,240,170,255,22,230,228,254,49,180,82,255,61,82,43,0,110,245,217,0,199,125,61,0,46,253,52,0,141,197,219,0,211,159,193,0,55,121,105,254,183,20,129,0,169,119,170,255,203,178,139,255,135,40,182,255,172,13,202,255,65,178,148,0,8,207,43,0,122,53,127,1,74,161,48,0,227,214,128,254,86,11,243,255,100,86,7,1,245,68,134,255,61,43,21,1,152,84,94,255,190,60,250,254,239,118,232,255,214,136,37,1,113,76,107,255,93,104,100,1,144,206,23,255,110,150,154,1,228,103,185,0,218,49,50,254,135,77,139,255,185,1,78,0,0,161,148,255,97,29,233,255,207,148,149,255,160,168,0,0,91,128,171,255,6,28,19,254,11,111,247,0,39,187,150,255,138,232,149,0,117,62,68,255,63,216,188,255,235,234,32,254,29,57,160,255,25,12,241,1,169,60,191,0,32,131,141,255,237,159,123,255,94,197,94,254,116,254,3,255,92,179,97,254,121,97,92,255,170,112,14,0,21,149,248,0,248,227,3,0,80,96,109,0,75,192,74,1,12,90,226,255,161,106,68,1,208,114,127,255,114,42,255,254,74,26,74,255,247,179,150,254,121,140,60,0,147,70,200,255,214,40,161,255,161,188,201,255,141,65,135,255,242,115,252,0,62,47,202,0,180,149,255,254,130,55,237,0,165,17,186,255,10,169,194,0,156,109,218,255,112,140,123,255,104,128,223,254,177,142,108,255,121,37,219,255,128,77,18,255,111,108,23,1,91,192,75,0,174,245,22,255,4,236,62,255,43,64,153,1,227,173,254,0,237,122,132,1,127,89,186,255,142,82,128,254,252,84,174,0,90,179,177,1,243,214,87,255,103,60,162,255,208,130,14,255,11,130,139,0,206,129,219,255,94,217,157,255,239,230,230,255,116,115,159,254,164,107,95,0,51,218,2,1,216,125,198,255,140,202,128,254,11,95,68,255,55,9,93,254,174,153,6,255,204,172,96,0,69,160,110,0,213,38,49,254,27,80,213,0,118,125,114,0,70,70,67,255,15,142,73,255,131,122,185,255,243,20,50,254,130,237,40,0,210,159,140,1,197,151,65,255,84,153,66,0,195,126,90,0,16,238,236,1,118,187,102,255,3,24,133,255,187,69,230,0,56,197,92,1,213,69,94,255,80,138,229,1,206,7,230,0,222,111,230,1,91,233,119,255,9,89,7,1,2,98,1,0,148,74,133,255,51,246,180,255,228,177,112,1,58,189,108,255,194,203,237,254,21,209,195,0,147,10,35,1,86,157,226,0,31,163,139,254,56,7,75,255,62,90,116,0,181,60,169,0,138,162,212,254,81,167,31,0,205,90,112,255,33,112,227,0,83,151,117,1,177,224,73,255,174,144,217,255,230,204,79,255,22,77,232,255,114,78,234,0,224,57,126,254,9,49,141,0,242,147,165,1,104,182,140,255,167,132,12,1,123,68,127,0,225,87,39,1,251,108,8,0,198,193,143,1,121,135,207,255,172,22,70,0,50,68,116,255,101,175,40,255,248,105,233,0,166,203,7,0,110,197,218,0,215,254,26,254,168,226,253,0,31,143,96,0,11,103,41,0,183,129,203,254,100,247,74,255,213,126,132,0,210,147,44,0,199,234,27,1,148,47,181,0,155,91,158,1,54,105,175,255,2,78,145,254,102,154,95,0,128,207,127,254,52,124,236,255,130,84,71,0,221,243,211,0,152,170,207,0,222,106,199,0,183,84,94,254,92,200,56,255,138,182,115,1,142,96,146,0,133,136,228,0,97,18,150,0,55,251,66,0,140,102,4,0,202,103,151,0,30,19,248,255,51,184,207,0,202,198,89,0,55,197,225,254,169,95,249,255,66,65,68,255,188,234,126,0,166,223,100,1,112,239,244,0,144,23,194,0,58,39,182,0,244,44,24,254,175,68,179,255,152,118,154,1,176,162,130,0,217,114,204,254,173,126,78,255,33,222,30,255,36,2,91,255,2,143,243,0,9,235,215,0,3,171,151,1,24,215,245,255,168,47,164,254,241,146,207,0,69,129,180,0,68,243,113,0,144,53,72,254,251,45,14,0,23,110,168,0,68,68,79,255,110,70,95,254,174,91,144,255,33,206,95,255,137,41,7,255,19,187,153,254,35,255,112,255,9,145,185,254,50,157,37,0,11,112,49,1,102,8,190,255,234,243,169,1,60,85,23,0,74,39,189,0,116,49,239,0,173,213,210,0,46,161,108,255,159,150,37,0,196,120,185,255,34,98,6,255,153,195,62,255,97,230,71,255,102,61,76,0,26,212,236,255,164,97,16,0,198,59,146,0,163,23,196,0,56,24,61,0,181,98,193,0,251,147,229,255,98,189,24,255,46,54,206,255,234,82,246,0,183,103,38,1,109,62,204,0,10,240,224,0,146,22,117,255,142,154,120,0,69,212,35,0,208,99,118,1,121,255,3,255,72,6,194,0,117,17,197,255,125,15,23,0,154,79,153,0,214,94,197,255,185,55,147,255,62,254,78,254,127,82,153,0,110,102,63,255,108,82,161,255,105,187,212,1,80,138,39,0,60,255,93,255,72,12,186,0,210,251,31,1,190,167,144,255,228,44,19,254,128,67,232,0,214,249,107,254,136,145,86,255,132,46,176,0,189,187,227,255,208,22,140,0,217,211,116,0,50,81,186,254,139,250,31,0,30,64,198,1,135,155,100,0,160,206,23,254,187,162,211,255,16,188,63,0,254,208,49,0,85,84,191,0,241,192,242,255,153,126,145,1,234,162,162,255,230,97,216,1,64,135,126,0,190,148,223,1,52,0,43,255,28,39,189,1,64,136,238,0,175,196,185,0,98,226,213,255,127,159,244,1,226,175,60,0,160,233,142,1,180,243,207,255,69,152,89,1,31,101,21,0,144,25,164,254,139,191,209,0,91,25,121,0,32,147,5,0,39,186,123,255,63,115,230,255,93,167,198,255,143,213,220,255,179,156,19,255,25,66,122,0,214,160,217,255,2,45,62,255,106,79,146,254,51,137,99,255,87,100,231,255,175,145,232,255,101,184,1,255,174,9,125,0,82,37,161,1,36,114,141,255,48,222,142,255,245,186,154,0,5,174,221,254,63,114,155,255,135,55,160,1,80,31,135,0,126,250,179,1,236,218,45,0,20,28,145,1,16,147,73,0,249,189,132,1,17,189,192,255,223,142,198,255,72,20,15,255,250,53,237,254,15,11,18,0,27,211,113,254,213,107,56,255,174,147,146,255,96,126,48,0,23,193,109,1,37,162,94,0,199,157,249,254,24,128,187,255,205,49,178,254,93,164,42,255,43,119,235,1,88,183,237,255,218,210,1,255,107,254,42,0,230,10,99,255,162,0,226,0,219,237,91,0,129,178,203,0,208,50,95,254,206,208,95,255,247,191,89,254,110,234,79,255,165,61,243,0,20,122,112,255,246,246,185,254,103,4,123,0,233,99,230,1,219,91,252,255,199,222,22,255,179,245,233,255,211,241,234,0,111,250,192,255,85,84,136,0,101,58,50,255,131,173,156,254,119,45,51,255,118,233,16,254,242,90,214,0,94,159,219,1,3,3,234,255,98,76,92,254,80,54,230,0,5,228,231,254,53,24,223,255,113,56,118,1,20,132,1,255,171,210,236,0,56,241,158,255,186,115,19,255,8,229,174,0,48,44,0,1,114,114,166,255,6,73,226,255,205,89,244,0,137,227,75,1,248,173,56,0,74,120,246,254,119,3,11,255,81,120,198,255,136,122,98,255,146,241,221,1,109,194,78,255,223,241,70,1,214,200,169,255,97,190,47,255,47,103,174,255,99,92,72,254,118,233,180,255,193,35,233,254,26,229,32,255,222,252,198,0,204,43,71,255,199,84,172,0,134,102,190,0,111,238,97,254,230,40,230,0,227,205,64,254,200,12,225,0,166,25,222,0,113,69,51,255,143,159,24,0,167,184,74,0,29,224,116,254,158,208,233,0,193,116,126,255,212,11,133,255,22,58,140,1,204,36,51,255,232,30,43,0,235,70,181,255,64,56,146,254,169,18,84,255,226,1,13,255,200,50,176,255,52,213,245,254,168,209,97,0,191,71,55,0,34,78,156,0,232,144,58,1,185,74,189,0,186,142,149,254,64,69,127,255,161,203,147,255,176,151,191,0,136,231,203,254,163,182,137,0,161,126,251,254,233,32,66,0,68,207,66,0,30,28,37,0,93,114,96,1,254,92,247,255,44,171,69,0,202,119,11,255,188,118,50,1,255,83,136,255,71,82,26,0,70,227,2,0,32,235,121,1,181,41,154,0,71,134,229,254,202,255,36,0,41,152,5,0,154,63,73,255,34,182,124,0,121,221,150,255,26,204,213,1,41,172,87,0,90,157,146,255,109,130,20,0,71,107,200,255,243,102,189,0,1,195,145,254,46,88,117,0,8,206,227,0,191,110,253,255,109,128,20,254,134,85,51,255,137,177,112,1,216,34,22,255,131,16,208,255,121,149,170,0,114,19,23,1,166,80,31,255,113,240,122,0,232,179,250,0,68,110,180,254,210,170,119,0,223,108,164,255,207,79,233,255,27,229,226,254,209,98,81,255,79,68,7,0,131,185,100,0,170,29,162,255,17,162,107,255,57,21,11,1,100,200,181,255,127,65,166,1,165,134,204,0,104,167,168,0,1,164,79,0,146,135,59,1,70,50,128,255,102,119,13,254,227,6,135,0,162,142,179,255,160,100,222,0,27,224,219,1,158,93,195,255,234,141,137,0,16,24,125,255,238,206,47,255,97,17,98,255,116,110,12,255,96,115,77,0,91,227,232,255,248,254,79,255,92,229,6,254,88,198,139,0,206,75,129,0,250,77,206,255,141,244,123,1,138,69,220,0,32,151,6,1,131,167,22,255,237,68,167,254,199,189,150,0,163,171,138,255,51,188,6,255,95,29,137,254,148,226,179,0,181,107,208,255,134,31,82,255,151,101,45,255,129,202,225,0,224,72,147,0,48,138,151,255,195,64,206,254,237,218,158,0,106,29,137,254,253,189,233,255,103,15,17,255,194,97,255,0,178,45,169,254,198,225,155,0,39,48,117,255,135,106,115,0,97,38,181,0,150,47,65,255,83,130,229,254,246,38,129,0,92,239,154,254,91,99,127,0,161,111,33,255,238,217,242,255,131,185,195,255,213,191,158,255,41,150,218,0,132,169,131,0,89,84,252,1,171,70,128,255,163,248,203,254,1,50,180,255,124,76,85,1,251,111,80,0,99,66,239,255,154,237,182,255,221,126,133,254,74,204,99,255,65,147,119,255,99,56,167,255,79,248,149,255,116,155,228,255,237,43,14,254,69,137,11,255,22,250,241,1,91,122,143,255,205,249,243,0,212,26,60,255,48,182,176,1,48,23,191,255,203,121,152,254,45,74,213,255,62,90,18,254,245,163,230,255,185,106,116,255,83,35,159,0,12,33,2,255,80,34,62,0,16,87,174,255,173,101,85,0,202,36,81,254,160,69,204,255,64,225,187,0,58,206,94,0,86,144,47,0,229,86,245,0,63,145,190,1,37,5,39,0,109,251,26,0,137,147,234,0,162,121,145,255,144,116,206,255,197,232,185,255,183,190,140,255,73,12,254,255,139,20,242,255,170,90,239,255,97,66,187,255,245,181,135,254,222,136,52,0,245,5,51,254,203,47,78,0,152,101,216,0,73,23,125,0,254,96,33,1,235,210,73,255,43,209,88,1,7,129,109,0,122,104,228,254,170,242,203,0,242,204,135,255,202,28,233,255,65,6,127,0,159,144,71,0,100,140,95,0,78,150,13,0,251,107,118,1,182,58,125,255,1,38,108,255,141,189,209,255,8,155,125,1,113,163,91,255,121,79,190,255,134,239,108,255,76,47,248,0,163,228,239,0,17,111,10,0,88,149,75,255,215,235,239,0,167,159,24,255,47,151,108,255,107,209,188,0,233,231,99,254,28,202,148,255,174,35,138,255,110,24,68,255,2,69,181,0,107,102,82,0,102,237,7,0,92,36,237,255,221,162,83,1,55,202,6,255,135,234,135,255,24,250,222,0,65,94,168,254,245,248,210,255,167,108,201,254,255,161,111,0,205,8,254,0,136,13,116,0,100,176,132,255,43,215,126,255,177,133,130,255,158,79,148,0,67,224,37,1,12,206,21,255,62,34,110,1,237,104,175,255,80,132,111,255,142,174,72,0,84,229,180,254,105,179,140,0,64,248,15,255,233,138,16,0,245,67,123,254,218,121,212,255,63,95,218,1,213,133,137,255,143,182,82,255,48,28,11,0,244,114,141,1,209,175,76,255,157,181,150,255,186,229,3,255,164,157,111,1,231,189,139,0,119,202,190,255,218,106,64,255,68,235,63,254,96,26,172,255,187,47,11,1,215,18,251,255,81,84,89,0,68,58,128,0,94,113,5,1,92,129,208,255,97,15,83,254,9,28,188,0,239,9,164,0,60,205,152,0,192,163,98,255,184,18,60,0,217,182,139,0,109,59,120,255,4,192,251,0,169,210,240,255,37,172,92,254,148,211,245,255,179,65,52,0,253,13,115,0,185,174,206,1,114,188,149,255,237,90,173,0,43,199,192,255,88,108,113,0,52,35,76,0,66,25,148,255,221,4,7,255,151,241,114,255,190,209,232,0,98,50,199,0,151,150,213,255,18,74,36,1,53,40,7,0,19,135,65,255,26,172,69,0,174,237,85,0,99,95,41,0,3,56,16,0,39,160,177,255,200,106,218,254,185,68,84,255,91,186,61,254,67,143,141,255,13,244,166,255,99,114,198,0,199,110,163,255,193,18,186,0,124,239,246,1,110,68,22,0,2,235,46,1,212,60,107,0,105,42,105,1,14,230,152,0,7,5,131,0,141,104,154,255,213,3,6,0,131,228,162,255,179,100,28,1,231,123,85,255,206,14,223,1,253,96,230,0,38,152,149,1,98,137,122,0,214,205,3,255,226,152,179,255,6,133,137,0,158,69,140,255,113,162,154,255,180,243,172,255,27,189,115,255,143,46,220,255,213,134,225,255,126,29,69,0,188,43,137,1,242,70,9,0,90,204,255,255,231,170,147,0,23,56,19,254,56,125,157,255,48,179,218,255,79,182,253,255,38,212,191,1,41,235,124,0,96,151,28,0,135,148,190,0,205,249,39,254,52,96,136,255,212,44,136,255,67,209,131,255,252,130,23,255,219,128,20,255,198,129,118,0,108,101,11,0,178,5,146,1,62,7,100,255,181,236,94,254,28,26,164,0,76,22,112,255,120,102,79,0,202,192,229,1,200,176,215,0,41,64,244,255,206,184,78,0,167,45,63,1,160,35,0,255,59,12,142,255,204,9,144,255,219,94,229,1,122,27,112,0,189,105,109,255,64,208,74,255,251,127,55,1,2,226,198,0,44,76,209,0,151,152,77,255,210,23,46,1,201,171,69,255,44,211,231,0,190,37,224,255,245,196,62,255,169,181,222,255,34,211,17,0,119,241,197,255,229,35,152,1,21,69,40,255,178,226,161,0,148,179,193,0,219,194,254,1,40,206,51,255,231,92,250,1,67,153,170,0,21,148,241,0,170,69,82,255,121,18,231,255,92,114,3,0,184,62,230,0,225,201,87,255,146,96,162,255,181,242,220,0,173,187,221,1,226,62,170,255,56,126,217,1,117,13,227,255,179,44,239,0,157,141,155,255,144,221,83,0,235,209,208,0,42,17,165,1,251,81,133,0,124,245,201,254,97,211,24,255,83,214,166,0,154,36,9,255,248,47,127,0,90,219,140,255,161,217,38,254,212,147,63,255,66,84,148,1,207,3,1,0,230,134,89,1,127,78,122,255,224,155,1,255,82,136,74,0,178,156,208,255,186,25,49,255,222,3,210,1,229,150,190,255,85,162,52,255,41,84,141,255,73,123,84,254,93,17,150,0,119,19,28,1,32,22,215,255,28,23,204,255,142,241,52,255,228,52,125,0,29,76,207,0,215,167,250,254,175,164,230,0,55,207,105,1,109,187,245,255,161,44,220,1,41,101,128,255,167,16,94,0,93,214,107,255,118,72,0,254,80,61,234,255,121,175,125,0,139,169,251,0,97,39,147,254,250,196,49,255,165,179,110,254,223,70,187,255,22,142,125,1,154,179,138,255,118,176,42,1,10,174,153,0,156,92,102,0,168,13,161,255,143,16,32,0,250,197,180,255,203,163,44,1,87,32,36,0,161,153,20,255,123,252,15,0,25,227,80,0,60,88,142,0,17,22,201,1,154,205,77,255,39,63,47,0,8,122,141,0,128,23,182,254,204,39,19,255,4,112,29,255,23,36,140,255,210,234,116,254,53,50,63,255,121,171,104,255,160,219,94,0,87,82,14,254,231,42,5,0,165,139,127,254,86,78,38,0,130,60,66,254,203,30,45,255,46,196,122,1,249,53,162,255,136,143,103,254,215,210,114,0,231,7,160,254,169,152,42,255,111,45,246,0,142,131,135,255,131,71,204,255,36,226,11,0,0,28,242,255,225,138,213,255,247,46,216,254,245,3,183,0,108,252,74,1,206,26,48,255,205,54,246,255,211,198,36,255,121,35,50,0,52,216,202,255,38,139,129,254,242,73,148,0,67,231,141,255,42,47,204,0,78,116,25,1,4,225,191,255,6,147,228,0,58,88,177,0,122,165,229,255,252,83,201,255,224,167,96,1,177,184,158,255,242,105,179,1,248,198,240,0,133,66,203,1,254,36,47,0,45,24,115,255,119,62,254,0,196,225,186,254,123,141,172,0,26,85,41,255,226,111,183,0,213,231,151,0,4,59,7,255,238,138,148,0,66,147,33,255,31,246,141,255,209,141,116,255,104,112,31,0,88,161,172,0,83,215,230,254,47,111,151,0,45,38,52,1,132,45,204,0,138,128,109,254,233,117,134,255,243,190,173,254,241,236,240,0,82,127,236,254,40,223,161,255,110,182,225,255,123,174,239,0,135,242,145,1,51,209,154,0,150,3,115,254,217,164,252,255,55,156,69,1,84,94,255,255,232,73,45,1,20,19,212,255,96,197,59,254,96,251,33,0,38,199,73,1,64,172,247,255,117,116,56,255,228,17,18,0,62,138,103,1,246,229,164,255,244,118,201,254,86,32,159,255,109,34,137,1,85,211,186,0,10,193,193,254,122,194,177,0,122,238,102,255,162,218,171,0,108,217,161,1,158,170,34,0,176,47,155,1,181,228,11,255,8,156,0,0,16,75,93,0,206,98,255,1,58,154,35,0,12,243,184,254,67,117,66,255,230,229,123,0,201,42,110], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE+20480); -/* memory initializer */ allocate([134,228,178,254,186,108,118,255,58,19,154,255,82,169,62,255,114,143,115,1,239,196,50,255,173,48,193,255,147,2,84,255,150,134,147,254,95,232,73,0,109,227,52,254,191,137,10,0,40,204,30,254,76,52,97,255,164,235,126,0,254,124,188,0,74,182,21,1,121,29,35,255,241,30,7,254,85,218,214,255,7,84,150,254,81,27,117,255,160,159,152,254,66,24,221,255,227,10,60,1,141,135,102,0,208,189,150,1,117,179,92,0,132,22,136,255,120,199,28,0,21,129,79,254,182,9,65,0,218,163,169,0,246,147,198,255,107,38,144,1,78,175,205,255,214,5,250,254,47,88,29,255,164,47,204,255,43,55,6,255,131,134,207,254,116,100,214,0,96,140,75,1,106,220,144,0,195,32,28,1,172,81,5,255,199,179,52,255,37,84,203,0,170,112,174,0,11,4,91,0,69,244,27,1,117,131,92,0,33,152,175,255,140,153,107,255,251,135,43,254,87,138,4,255,198,234,147,254,121,152,84,255,205,101,155,1,157,9,25,0,72,106,17,254,108,153,0,255,189,229,186,0,193,8,176,255,174,149,209,0,238,130,29,0,233,214,126,1,61,226,102,0,57,163,4,1,198,111,51,255,45,79,78,1,115,210,10,255,218,9,25,255,158,139,198,255,211,82,187,254,80,133,83,0,157,129,230,1,243,133,134,255,40,136,16,0,77,107,79,255,183,85,92,1,177,204,202,0,163,71,147,255,152,69,190,0,172,51,188,1,250,210,172,255,211,242,113,1,89,89,26,255,64,66,111,254,116,152,42,0,161,39,27,255,54,80,254,0,106,209,115,1,103,124,97,0,221,230,98,255,31,231,6,0,178,192,120,254,15,217,203,255,124,158,79,0,112,145,247,0,92,250,48,1,163,181,193,255,37,47,142,254,144,189,165,255,46,146,240,0,6,75,128,0,41,157,200,254,87,121,213,0,1,113,236,0,5,45,250,0,144,12,82,0,31,108,231,0,225,239,119,255,167,7,189,255,187,228,132,255,110,189,34,0,94,44,204,1,162,52,197,0,78,188,241,254,57,20,141,0,244,146,47,1,206,100,51,0,125,107,148,254,27,195,77,0,152,253,90,1,7,143,144,255,51,37,31,0,34,119,38,255,7,197,118,0,153,188,211,0,151,20,116,254,245,65,52,255,180,253,110,1,47,177,209,0,161,99,17,255,118,222,202,0,125,179,252,1,123,54,126,255,145,57,191,0,55,186,121,0,10,243,138,0,205,211,229,255,125,156,241,254,148,156,185,255,227,19,188,255,124,41,32,255,31,34,206,254,17,57,83,0,204,22,37,255,42,96,98,0,119,102,184,1,3,190,28,0,110,82,218,255,200,204,192,255,201,145,118,0,117,204,146,0,132,32,98,1,192,194,121,0,106,161,248,1,237,88,124,0,23,212,26,0,205,171,90,255,248,48,216,1,141,37,230,255,124,203,0,254,158,168,30,255,214,248,21,0,112,187,7,255,75,133,239,255,74,227,243,255,250,147,70,0,214,120,162,0,167,9,179,255,22,158,18,0,218,77,209,1,97,109,81,255,244,33,179,255,57,52,57,255,65,172,210,255,249,71,209,255,142,169,238,0,158,189,153,255,174,254,103,254,98,33,14,0,141,76,230,255,113,139,52,255,15,58,212,0,168,215,201,255,248,204,215,1,223,68,160,255,57,154,183,254,47,231,121,0,106,166,137,0,81,136,138,0,165,43,51,0,231,139,61,0,57,95,59,254,118,98,25,255,151,63,236,1,94,190,250,255,169,185,114,1,5,250,58,255,75,105,97,1,215,223,134,0,113,99,163,1,128,62,112,0,99,106,147,0,163,195,10,0,33,205,182,0,214,14,174,255,129,38,231,255,53,182,223,0,98,42,159,255,247,13,40,0,188,210,177,1,6,21,0,255,255,61,148,254,137,45,129,255,89,26,116,254,126,38,114,0,251,50,242,254,121,134,128,255,204,249,167,254,165,235,215,0,202,177,243,0,133,141,62,0,240,130,190,1,110,175,255,0,0,20,146,1,37,210,121,255,7,39,130,0,142,250,84,255,141,200,207,0,9,95,104,255,11,244,174,0,134,232,126,0,167,1,123,254,16,193,149,255,232,233,239,1,213,70,112,255,252,116,160,254,242,222,220,255,205,85,227,0,7,185,58,0,118,247,63,1,116,77,177,255,62,245,200,254,63,18,37,255,107,53,232,254,50,221,211,0,162,219,7,254,2,94,43,0,182,62,182,254,160,78,200,255,135,140,170,0,235,184,228,0,175,53,138,254,80,58,77,255,152,201,2,1,63,196,34,0,5,30,184,0,171,176,154,0,121,59,206,0,38,99,39,0,172,80,77,254,0,134,151,0,186,33,241,254,94,253,223,255,44,114,252,0,108,126,57,255,201,40,13,255,39,229,27,255,39,239,23,1,151,121,51,255,153,150,248,0,10,234,174,255,118,246,4,254,200,245,38,0,69,161,242,1,16,178,150,0,113,56,130,0,171,31,105,0,26,88,108,255,49,42,106,0,251,169,66,0,69,93,149,0,20,57,254,0,164,25,111,0,90,188,90,255,204,4,197,0,40,213,50,1,212,96,132,255,88,138,180,254,228,146,124,255,184,246,247,0,65,117,86,255,253,102,210,254,254,121,36,0,137,115,3,255,60,24,216,0,134,18,29,0,59,226,97,0,176,142,71,0,7,209,161,0,189,84,51,254,155,250,72,0,213,84,235,255,45,222,224,0,238,148,143,255,170,42,53,255,78,167,117,0,186,0,40,255,125,177,103,255,69,225,66,0,227,7,88,1,75,172,6,0,169,45,227,1,16,36,70,255,50,2,9,255,139,193,22,0,143,183,231,254,218,69,50,0,236,56,161,1,213,131,42,0,138,145,44,254,136,229,40,255,49,63,35,255,61,145,245,255,101,192,2,254,232,167,113,0,152,104,38,1,121,185,218,0,121,139,211,254,119,240,35,0,65,189,217,254,187,179,162,255,160,187,230,0,62,248,14,255,60,78,97,0,255,247,163,255,225,59,91,255,107,71,58,255,241,47,33,1,50,117,236,0,219,177,63,254,244,90,179,0,35,194,215,255,189,67,50,255,23,135,129,0,104,189,37,255,185,57,194,0,35,62,231,255,220,248,108,0,12,231,178,0,143,80,91,1,131,93,101,255,144,39,2,1,255,250,178,0,5,17,236,254,139,32,46,0,204,188,38,254,245,115,52,255,191,113,73,254,191,108,69,255,22,69,245,1,23,203,178,0,170,99,170,0,65,248,111,0,37,108,153,255,64,37,69,0,0,88,62,254,89,148,144,255,191,68,224,1,241,39,53,0,41,203,237,255,145,126,194,255,221,42,253,255,25,99,151,0,97,253,223,1,74,115,49,255,6,175,72,255,59,176,203,0,124,183,249,1,228,228,99,0,129,12,207,254,168,192,195,255,204,176,16,254,152,234,171,0,77,37,85,255,33,120,135,255,142,194,227,1,31,214,58,0,213,187,125,255,232,46,60,255,190,116,42,254,151,178,19,255,51,62,237,254,204,236,193,0,194,232,60,0,172,34,157,255,189,16,184,254,103,3,95,255,141,233,36,254,41,25,11,255,21,195,166,0,118,245,45,0,67,213,149,255,159,12,18,255,187,164,227,1,160,25,5,0,12,78,195,1,43,197,225,0,48,142,41,254,196,155,60,255,223,199,18,1,145,136,156,0,252,117,169,254,145,226,238,0,239,23,107,0,109,181,188,255,230,112,49,254,73,170,237,255,231,183,227,255,80,220,20,0,194,107,127,1,127,205,101,0,46,52,197,1,210,171,36,255,88,3,90,255,56,151,141,0,96,187,255,255,42,78,200,0,254,70,70,1,244,125,168,0,204,68,138,1,124,215,70,0,102,66,200,254,17,52,228,0,117,220,143,254,203,248,123,0,56,18,174,255,186,151,164,255,51,232,208,1,160,228,43,255,249,29,25,1,68,190,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,127,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,188,129,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,255,255,255,255], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE+30720); +/* memory initializer */ allocate([134,228,178,254,186,108,118,255,58,19,154,255,82,169,62,255,114,143,115,1,239,196,50,255,173,48,193,255,147,2,84,255,150,134,147,254,95,232,73,0,109,227,52,254,191,137,10,0,40,204,30,254,76,52,97,255,164,235,126,0,254,124,188,0,74,182,21,1,121,29,35,255,241,30,7,254,85,218,214,255,7,84,150,254,81,27,117,255,160,159,152,254,66,24,221,255,227,10,60,1,141,135,102,0,208,189,150,1,117,179,92,0,132,22,136,255,120,199,28,0,21,129,79,254,182,9,65,0,218,163,169,0,246,147,198,255,107,38,144,1,78,175,205,255,214,5,250,254,47,88,29,255,164,47,204,255,43,55,6,255,131,134,207,254,116,100,214,0,96,140,75,1,106,220,144,0,195,32,28,1,172,81,5,255,199,179,52,255,37,84,203,0,170,112,174,0,11,4,91,0,69,244,27,1,117,131,92,0,33,152,175,255,140,153,107,255,251,135,43,254,87,138,4,255,198,234,147,254,121,152,84,255,205,101,155,1,157,9,25,0,72,106,17,254,108,153,0,255,189,229,186,0,193,8,176,255,174,149,209,0,238,130,29,0,233,214,126,1,61,226,102,0,57,163,4,1,198,111,51,255,45,79,78,1,115,210,10,255,218,9,25,255,158,139,198,255,211,82,187,254,80,133,83,0,157,129,230,1,243,133,134,255,40,136,16,0,77,107,79,255,183,85,92,1,177,204,202,0,163,71,147,255,152,69,190,0,172,51,188,1,250,210,172,255,211,242,113,1,89,89,26,255,64,66,111,254,116,152,42,0,161,39,27,255,54,80,254,0,106,209,115,1,103,124,97,0,221,230,98,255,31,231,6,0,178,192,120,254,15,217,203,255,124,158,79,0,112,145,247,0,92,250,48,1,163,181,193,255,37,47,142,254,144,189,165,255,46,146,240,0,6,75,128,0,41,157,200,254,87,121,213,0,1,113,236,0,5,45,250,0,144,12,82,0,31,108,231,0,225,239,119,255,167,7,189,255,187,228,132,255,110,189,34,0,94,44,204,1,162,52,197,0,78,188,241,254,57,20,141,0,244,146,47,1,206,100,51,0,125,107,148,254,27,195,77,0,152,253,90,1,7,143,144,255,51,37,31,0,34,119,38,255,7,197,118,0,153,188,211,0,151,20,116,254,245,65,52,255,180,253,110,1,47,177,209,0,161,99,17,255,118,222,202,0,125,179,252,1,123,54,126,255,145,57,191,0,55,186,121,0,10,243,138,0,205,211,229,255,125,156,241,254,148,156,185,255,227,19,188,255,124,41,32,255,31,34,206,254,17,57,83,0,204,22,37,255,42,96,98,0,119,102,184,1,3,190,28,0,110,82,218,255,200,204,192,255,201,145,118,0,117,204,146,0,132,32,98,1,192,194,121,0,106,161,248,1,237,88,124,0,23,212,26,0,205,171,90,255,248,48,216,1,141,37,230,255,124,203,0,254,158,168,30,255,214,248,21,0,112,187,7,255,75,133,239,255,74,227,243,255,250,147,70,0,214,120,162,0,167,9,179,255,22,158,18,0,218,77,209,1,97,109,81,255,244,33,179,255,57,52,57,255,65,172,210,255,249,71,209,255,142,169,238,0,158,189,153,255,174,254,103,254,98,33,14,0,141,76,230,255,113,139,52,255,15,58,212,0,168,215,201,255,248,204,215,1,223,68,160,255,57,154,183,254,47,231,121,0,106,166,137,0,81,136,138,0,165,43,51,0,231,139,61,0,57,95,59,254,118,98,25,255,151,63,236,1,94,190,250,255,169,185,114,1,5,250,58,255,75,105,97,1,215,223,134,0,113,99,163,1,128,62,112,0,99,106,147,0,163,195,10,0,33,205,182,0,214,14,174,255,129,38,231,255,53,182,223,0,98,42,159,255,247,13,40,0,188,210,177,1,6,21,0,255,255,61,148,254,137,45,129,255,89,26,116,254,126,38,114,0,251,50,242,254,121,134,128,255,204,249,167,254,165,235,215,0,202,177,243,0,133,141,62,0,240,130,190,1,110,175,255,0,0,20,146,1,37,210,121,255,7,39,130,0,142,250,84,255,141,200,207,0,9,95,104,255,11,244,174,0,134,232,126,0,167,1,123,254,16,193,149,255,232,233,239,1,213,70,112,255,252,116,160,254,242,222,220,255,205,85,227,0,7,185,58,0,118,247,63,1,116,77,177,255,62,245,200,254,63,18,37,255,107,53,232,254,50,221,211,0,162,219,7,254,2,94,43,0,182,62,182,254,160,78,200,255,135,140,170,0,235,184,228,0,175,53,138,254,80,58,77,255,152,201,2,1,63,196,34,0,5,30,184,0,171,176,154,0,121,59,206,0,38,99,39,0,172,80,77,254,0,134,151,0,186,33,241,254,94,253,223,255,44,114,252,0,108,126,57,255,201,40,13,255,39,229,27,255,39,239,23,1,151,121,51,255,153,150,248,0,10,234,174,255,118,246,4,254,200,245,38,0,69,161,242,1,16,178,150,0,113,56,130,0,171,31,105,0,26,88,108,255,49,42,106,0,251,169,66,0,69,93,149,0,20,57,254,0,164,25,111,0,90,188,90,255,204,4,197,0,40,213,50,1,212,96,132,255,88,138,180,254,228,146,124,255,184,246,247,0,65,117,86,255,253,102,210,254,254,121,36,0,137,115,3,255,60,24,216,0,134,18,29,0,59,226,97,0,176,142,71,0,7,209,161,0,189,84,51,254,155,250,72,0,213,84,235,255,45,222,224,0,238,148,143,255,170,42,53,255,78,167,117,0,186,0,40,255,125,177,103,255,69,225,66,0,227,7,88,1,75,172,6,0,169,45,227,1,16,36,70,255,50,2,9,255,139,193,22,0,143,183,231,254,218,69,50,0,236,56,161,1,213,131,42,0,138,145,44,254,136,229,40,255,49,63,35,255,61,145,245,255,101,192,2,254,232,167,113,0,152,104,38,1,121,185,218,0,121,139,211,254,119,240,35,0,65,189,217,254,187,179,162,255,160,187,230,0,62,248,14,255,60,78,97,0,255,247,163,255,225,59,91,255,107,71,58,255,241,47,33,1,50,117,236,0,219,177,63,254,244,90,179,0,35,194,215,255,189,67,50,255,23,135,129,0,104,189,37,255,185,57,194,0,35,62,231,255,220,248,108,0,12,231,178,0,143,80,91,1,131,93,101,255,144,39,2,1,255,250,178,0,5,17,236,254,139,32,46,0,204,188,38,254,245,115,52,255,191,113,73,254,191,108,69,255,22,69,245,1,23,203,178,0,170,99,170,0,65,248,111,0,37,108,153,255,64,37,69,0,0,88,62,254,89,148,144,255,191,68,224,1,241,39,53,0,41,203,237,255,145,126,194,255,221,42,253,255,25,99,151,0,97,253,223,1,74,115,49,255,6,175,72,255,59,176,203,0,124,183,249,1,228,228,99,0,129,12,207,254,168,192,195,255,204,176,16,254,152,234,171,0,77,37,85,255,33,120,135,255,142,194,227,1,31,214,58,0,213,187,125,255,232,46,60,255,190,116,42,254,151,178,19,255,51,62,237,254,204,236,193,0,194,232,60,0,172,34,157,255,189,16,184,254,103,3,95,255,141,233,36,254,41,25,11,255,21,195,166,0,118,245,45,0,67,213,149,255,159,12,18,255,187,164,227,1,160,25,5,0,12,78,195,1,43,197,225,0,48,142,41,254,196,155,60,255,223,199,18,1,145,136,156,0,252,117,169,254,145,226,238,0,239,23,107,0,109,181,188,255,230,112,49,254,73,170,237,255,231,183,227,255,80,220,20,0,194,107,127,1,127,205,101,0,46,52,197,1,210,171,36,255,88,3,90,255,56,151,141,0,96,187,255,255,42,78,200,0,254,70,70,1,244,125,168,0,204,68,138,1,124,215,70,0,102,66,200,254,17,52,228,0,117,220,143,254,203,248,123,0,56,18,174,255,186,151,164,255,51,232,208,1,160,228,43,255,249,29,25,1,68,190,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,220,130,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,244,127,0,0], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE+30720); /* no memory initializer */ -var tempDoublePtr = Runtime.alignMemory(allocate(12, "i8", ALLOC_STATIC), 8); - -assert(tempDoublePtr % 8 == 0); +var tempDoublePtr = STATICTOP; STATICTOP += 16; function copyTempFloat(ptr) { // functions, because inlining this code increases code size too much @@ -1586,23 +1582,12 @@ function copyTempDouble(ptr) { Module["_memset"] = _memset; - function _pthread_cleanup_push(routine, arg) { - __ATEXIT__.push(function() { Runtime.dynCall('vi', routine, [arg]) }) - _pthread_cleanup_push.level = __ATEXIT__.length; - } - Module["_bitshift64Lshr"] = _bitshift64Lshr; Module["_bitshift64Shl"] = _bitshift64Shl; - function _pthread_cleanup_pop() { - assert(_pthread_cleanup_push.level == __ATEXIT__.length, 'cannot pop if something else added meanwhile!'); - __ATEXIT__.pop(); - _pthread_cleanup_push.level = __ATEXIT__.length; - } - function _abort() { Module['abort'](); } @@ -1612,4019 +1597,149 @@ function copyTempDouble(ptr) { function ___unlock() {} + var SYSCALLS={varargs:0,get:function (varargs) { + SYSCALLS.varargs += 4; + var ret = HEAP32[(((SYSCALLS.varargs)-(4))>>2)]; + return ret; + },getStr:function () { + var ret = Pointer_stringify(SYSCALLS.get()); + return ret; + },get64:function () { + var low = SYSCALLS.get(), high = SYSCALLS.get(); + if (low >= 0) assert(high === 0); + else assert(high === -1); + return low; + },getZero:function () { + assert(SYSCALLS.get() === 0); + }};function ___syscall6(which, varargs) {SYSCALLS.varargs = varargs; + try { + // close + var stream = SYSCALLS.getStreamFromFD(); + FS.close(stream); + return 0; + } catch (e) { + if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); + return -e.errno; + } + } + - - var ERRNO_CODES={EPERM:1,ENOENT:2,ESRCH:3,EINTR:4,EIO:5,ENXIO:6,E2BIG:7,ENOEXEC:8,EBADF:9,ECHILD:10,EAGAIN:11,EWOULDBLOCK:11,ENOMEM:12,EACCES:13,EFAULT:14,ENOTBLK:15,EBUSY:16,EEXIST:17,EXDEV:18,ENODEV:19,ENOTDIR:20,EISDIR:21,EINVAL:22,ENFILE:23,EMFILE:24,ENOTTY:25,ETXTBSY:26,EFBIG:27,ENOSPC:28,ESPIPE:29,EROFS:30,EMLINK:31,EPIPE:32,EDOM:33,ERANGE:34,ENOMSG:42,EIDRM:43,ECHRNG:44,EL2NSYNC:45,EL3HLT:46,EL3RST:47,ELNRNG:48,EUNATCH:49,ENOCSI:50,EL2HLT:51,EDEADLK:35,ENOLCK:37,EBADE:52,EBADR:53,EXFULL:54,ENOANO:55,EBADRQC:56,EBADSLT:57,EDEADLOCK:35,EBFONT:59,ENOSTR:60,ENODATA:61,ETIME:62,ENOSR:63,ENONET:64,ENOPKG:65,EREMOTE:66,ENOLINK:67,EADV:68,ESRMNT:69,ECOMM:70,EPROTO:71,EMULTIHOP:72,EDOTDOT:73,EBADMSG:74,ENOTUNIQ:76,EBADFD:77,EREMCHG:78,ELIBACC:79,ELIBBAD:80,ELIBSCN:81,ELIBMAX:82,ELIBEXEC:83,ENOSYS:38,ENOTEMPTY:39,ENAMETOOLONG:36,ELOOP:40,EOPNOTSUPP:95,EPFNOSUPPORT:96,ECONNRESET:104,ENOBUFS:105,EAFNOSUPPORT:97,EPROTOTYPE:91,ENOTSOCK:88,ENOPROTOOPT:92,ESHUTDOWN:108,ECONNREFUSED:111,EADDRINUSE:98,ECONNABORTED:103,ENETUNREACH:101,ENETDOWN:100,ETIMEDOUT:110,EHOSTDOWN:112,EHOSTUNREACH:113,EINPROGRESS:115,EALREADY:114,EDESTADDRREQ:89,EMSGSIZE:90,EPROTONOSUPPORT:93,ESOCKTNOSUPPORT:94,EADDRNOTAVAIL:99,ENETRESET:102,EISCONN:106,ENOTCONN:107,ETOOMANYREFS:109,EUSERS:87,EDQUOT:122,ESTALE:116,ENOTSUP:95,ENOMEDIUM:123,EILSEQ:84,EOVERFLOW:75,ECANCELED:125,ENOTRECOVERABLE:131,EOWNERDEAD:130,ESTRPIPE:86}; - - var ERRNO_MESSAGES={0:"Success",1:"Not super-user",2:"No such file or directory",3:"No such process",4:"Interrupted system call",5:"I/O error",6:"No such device or address",7:"Arg list too long",8:"Exec format error",9:"Bad file number",10:"No children",11:"No more processes",12:"Not enough core",13:"Permission denied",14:"Bad address",15:"Block device required",16:"Mount device busy",17:"File exists",18:"Cross-device link",19:"No such device",20:"Not a directory",21:"Is a directory",22:"Invalid argument",23:"Too many open files in system",24:"Too many open files",25:"Not a typewriter",26:"Text file busy",27:"File too large",28:"No space left on device",29:"Illegal seek",30:"Read only file system",31:"Too many links",32:"Broken pipe",33:"Math arg out of domain of func",34:"Math result not representable",35:"File locking deadlock error",36:"File or path name too long",37:"No record locks available",38:"Function not implemented",39:"Directory not empty",40:"Too many symbolic links",42:"No message of desired type",43:"Identifier removed",44:"Channel number out of range",45:"Level 2 not synchronized",46:"Level 3 halted",47:"Level 3 reset",48:"Link number out of range",49:"Protocol driver not attached",50:"No CSI structure available",51:"Level 2 halted",52:"Invalid exchange",53:"Invalid request descriptor",54:"Exchange full",55:"No anode",56:"Invalid request code",57:"Invalid slot",59:"Bad font file fmt",60:"Device not a stream",61:"No data (for no delay io)",62:"Timer expired",63:"Out of streams resources",64:"Machine is not on the network",65:"Package not installed",66:"The object is remote",67:"The link has been severed",68:"Advertise error",69:"Srmount error",70:"Communication error on send",71:"Protocol error",72:"Multihop attempted",73:"Cross mount point (not really error)",74:"Trying to read unreadable message",75:"Value too large for defined data type",76:"Given log. name not unique",77:"f.d. invalid for this operation",78:"Remote address changed",79:"Can access a needed shared lib",80:"Accessing a corrupted shared lib",81:".lib section in a.out corrupted",82:"Attempting to link in too many libs",83:"Attempting to exec a shared library",84:"Illegal byte sequence",86:"Streams pipe error",87:"Too many users",88:"Socket operation on non-socket",89:"Destination address required",90:"Message too long",91:"Protocol wrong type for socket",92:"Protocol not available",93:"Unknown protocol",94:"Socket type not supported",95:"Not supported",96:"Protocol family not supported",97:"Address family not supported by protocol family",98:"Address already in use",99:"Address not available",100:"Network interface is not configured",101:"Network is unreachable",102:"Connection reset by network",103:"Connection aborted",104:"Connection reset by peer",105:"No buffer space available",106:"Socket is already connected",107:"Socket is not connected",108:"Can't send after socket shutdown",109:"Too many references",110:"Connection timed out",111:"Connection refused",112:"Host is down",113:"Host is unreachable",114:"Socket already connected",115:"Connection already in progress",116:"Stale file handle",122:"Quota exceeded",123:"No medium (in tape drive)",125:"Operation canceled",130:"Previous owner died",131:"State not recoverable"}; + + Module["___muldsi3"] = ___muldsi3; + Module["___muldi3"] = ___muldi3; + + function _llvm_stackrestore(p) { + var self = _llvm_stacksave; + var ret = self.LLVM_SAVEDSTACKS[p]; + self.LLVM_SAVEDSTACKS.splice(p, 1); + Runtime.stackRestore(ret); + } + function ___setErrNo(value) { if (Module['___errno_location']) HEAP32[((Module['___errno_location']())>>2)]=value; return value; + } + Module["_sbrk"] = _sbrk; + + function _llvm_stacksave() { + var self = _llvm_stacksave; + if (!self.LLVM_SAVEDSTACKS) { + self.LLVM_SAVEDSTACKS = []; + } + self.LLVM_SAVEDSTACKS.push(Runtime.stackSave()); + return self.LLVM_SAVEDSTACKS.length-1; } + - var PATH={splitPath:function (filename) { - var splitPathRe = /^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/; - return splitPathRe.exec(filename).slice(1); - },normalizeArray:function (parts, allowAboveRoot) { - // if the path tries to go above the root, `up` ends up > 0 - var up = 0; - for (var i = parts.length - 1; i >= 0; i--) { - var last = parts[i]; - if (last === '.') { - parts.splice(i, 1); - } else if (last === '..') { - parts.splice(i, 1); - up++; - } else if (up) { - parts.splice(i, 1); - up--; - } - } - // if the path is allowed to go above the root, restore leading ..s - if (allowAboveRoot) { - for (; up--; up) { - parts.unshift('..'); - } - } - return parts; - },normalize:function (path) { - var isAbsolute = path.charAt(0) === '/', - trailingSlash = path.substr(-1) === '/'; - // Normalize the path - path = PATH.normalizeArray(path.split('/').filter(function(p) { - return !!p; - }), !isAbsolute).join('/'); - if (!path && !isAbsolute) { - path = '.'; - } - if (path && trailingSlash) { - path += '/'; - } - return (isAbsolute ? '/' : '') + path; - },dirname:function (path) { - var result = PATH.splitPath(path), - root = result[0], - dir = result[1]; - if (!root && !dir) { - // No dirname whatsoever - return '.'; - } - if (dir) { - // It has a dirname, strip trailing slash - dir = dir.substr(0, dir.length - 1); - } - return root + dir; - },basename:function (path) { - // EMSCRIPTEN return '/'' for '/', not an empty string - if (path === '/') return '/'; - var lastSlash = path.lastIndexOf('/'); - if (lastSlash === -1) return path; - return path.substr(lastSlash+1); - },extname:function (path) { - return PATH.splitPath(path)[3]; - },join:function () { - var paths = Array.prototype.slice.call(arguments, 0); - return PATH.normalize(paths.join('/')); - },join2:function (l, r) { - return PATH.normalize(l + '/' + r); - },resolve:function () { - var resolvedPath = '', - resolvedAbsolute = false; - for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) { - var path = (i >= 0) ? arguments[i] : FS.cwd(); - // Skip empty and invalid entries - if (typeof path !== 'string') { - throw new TypeError('Arguments to path.resolve must be strings'); - } else if (!path) { - return ''; // an invalid portion invalidates the whole thing - } - resolvedPath = path + '/' + resolvedPath; - resolvedAbsolute = path.charAt(0) === '/'; - } - // At this point the path should be resolved to a full absolute path, but - // handle relative paths to be safe (might happen when process.cwd() fails) - resolvedPath = PATH.normalizeArray(resolvedPath.split('/').filter(function(p) { - return !!p; - }), !resolvedAbsolute).join('/'); - return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.'; - },relative:function (from, to) { - from = PATH.resolve(from).substr(1); - to = PATH.resolve(to).substr(1); - function trim(arr) { - var start = 0; - for (; start < arr.length; start++) { - if (arr[start] !== '') break; - } - var end = arr.length - 1; - for (; end >= 0; end--) { - if (arr[end] !== '') break; - } - if (start > end) return []; - return arr.slice(start, end - start + 1); - } - var fromParts = trim(from.split('/')); - var toParts = trim(to.split('/')); - var length = Math.min(fromParts.length, toParts.length); - var samePartsLength = length; - for (var i = 0; i < length; i++) { - if (fromParts[i] !== toParts[i]) { - samePartsLength = i; - break; - } - } - var outputParts = []; - for (var i = samePartsLength; i < fromParts.length; i++) { - outputParts.push('..'); - } - outputParts = outputParts.concat(toParts.slice(samePartsLength)); - return outputParts.join('/'); - }}; - - var TTY={ttys:[],init:function () { - // https://github.com/kripken/emscripten/pull/1555 - // if (ENVIRONMENT_IS_NODE) { - // // currently, FS.init does not distinguish if process.stdin is a file or TTY - // // device, it always assumes it's a TTY device. because of this, we're forcing - // // process.stdin to UTF8 encoding to at least make stdin reading compatible - // // with text files until FS.init can be refactored. - // process['stdin']['setEncoding']('utf8'); - // } - },shutdown:function () { - // https://github.com/kripken/emscripten/pull/1555 - // if (ENVIRONMENT_IS_NODE) { - // // inolen: any idea as to why node -e 'process.stdin.read()' wouldn't exit immediately (with process.stdin being a tty)? - // // isaacs: because now it's reading from the stream, you've expressed interest in it, so that read() kicks off a _read() which creates a ReadReq operation - // // inolen: I thought read() in that case was a synchronous operation that just grabbed some amount of buffered data if it exists? - // // isaacs: it is. but it also triggers a _read() call, which calls readStart() on the handle - // // isaacs: do process.stdin.pause() and i'd think it'd probably close the pending call - // process['stdin']['pause'](); - // } - },register:function (dev, ops) { - TTY.ttys[dev] = { input: [], output: [], ops: ops }; - FS.registerDevice(dev, TTY.stream_ops); - },stream_ops:{open:function (stream) { - var tty = TTY.ttys[stream.node.rdev]; - if (!tty) { - throw new FS.ErrnoError(ERRNO_CODES.ENODEV); - } - stream.tty = tty; - stream.seekable = false; - },close:function (stream) { - // flush any pending line data - stream.tty.ops.flush(stream.tty); - },flush:function (stream) { - stream.tty.ops.flush(stream.tty); - },read:function (stream, buffer, offset, length, pos /* ignored */) { - if (!stream.tty || !stream.tty.ops.get_char) { - throw new FS.ErrnoError(ERRNO_CODES.ENXIO); - } - var bytesRead = 0; - for (var i = 0; i < length; i++) { - var result; - try { - result = stream.tty.ops.get_char(stream.tty); - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES.EIO); - } - if (result === undefined && bytesRead === 0) { - throw new FS.ErrnoError(ERRNO_CODES.EAGAIN); - } - if (result === null || result === undefined) break; - bytesRead++; - buffer[offset+i] = result; - } - if (bytesRead) { - stream.node.timestamp = Date.now(); - } - return bytesRead; - },write:function (stream, buffer, offset, length, pos) { - if (!stream.tty || !stream.tty.ops.put_char) { - throw new FS.ErrnoError(ERRNO_CODES.ENXIO); - } - for (var i = 0; i < length; i++) { - try { - stream.tty.ops.put_char(stream.tty, buffer[offset+i]); - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES.EIO); - } - } - if (length) { - stream.node.timestamp = Date.now(); - } - return i; - }},default_tty_ops:{get_char:function (tty) { - if (!tty.input.length) { - var result = null; - if (ENVIRONMENT_IS_NODE) { - // we will read data by chunks of BUFSIZE - var BUFSIZE = 256; - var buf = new Buffer(BUFSIZE); - var bytesRead = 0; - - var fd = process.stdin.fd; - // Linux and Mac cannot use process.stdin.fd (which isn't set up as sync) - var usingDevice = false; - try { - fd = fs.openSync('/dev/stdin', 'r'); - usingDevice = true; - } catch (e) {} - - bytesRead = fs.readSync(fd, buf, 0, BUFSIZE, null); - - if (usingDevice) { fs.closeSync(fd); } - if (bytesRead > 0) { - result = buf.slice(0, bytesRead).toString('utf-8'); - } else { - result = null; - } - - } else if (typeof window != 'undefined' && - typeof window.prompt == 'function') { - // Browser. - result = window.prompt('Input: '); // returns null on cancel - if (result !== null) { - result += '\n'; - } - } else if (typeof readline == 'function') { - // Command line. - result = readline(); - if (result !== null) { - result += '\n'; - } - } - if (!result) { - return null; - } - tty.input = intArrayFromString(result, true); - } - return tty.input.shift(); - },put_char:function (tty, val) { - if (val === null || val === 10) { - Module['print'](UTF8ArrayToString(tty.output, 0)); - tty.output = []; - } else { - if (val != 0) tty.output.push(val); // val == 0 would cut text output off in the middle. - } - },flush:function (tty) { - if (tty.output && tty.output.length > 0) { - Module['print'](UTF8ArrayToString(tty.output, 0)); - tty.output = []; - } - }},default_tty1_ops:{put_char:function (tty, val) { - if (val === null || val === 10) { - Module['printErr'](UTF8ArrayToString(tty.output, 0)); - tty.output = []; - } else { - if (val != 0) tty.output.push(val); - } - },flush:function (tty) { - if (tty.output && tty.output.length > 0) { - Module['printErr'](UTF8ArrayToString(tty.output, 0)); - tty.output = []; - } - }}}; - - var MEMFS={ops_table:null,mount:function (mount) { - return MEMFS.createNode(null, '/', 16384 | 511 /* 0777 */, 0); - },createNode:function (parent, name, mode, dev) { - if (FS.isBlkdev(mode) || FS.isFIFO(mode)) { - // no supported - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - if (!MEMFS.ops_table) { - MEMFS.ops_table = { - dir: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr, - lookup: MEMFS.node_ops.lookup, - mknod: MEMFS.node_ops.mknod, - rename: MEMFS.node_ops.rename, - unlink: MEMFS.node_ops.unlink, - rmdir: MEMFS.node_ops.rmdir, - readdir: MEMFS.node_ops.readdir, - symlink: MEMFS.node_ops.symlink - }, - stream: { - llseek: MEMFS.stream_ops.llseek - } - }, - file: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr - }, - stream: { - llseek: MEMFS.stream_ops.llseek, - read: MEMFS.stream_ops.read, - write: MEMFS.stream_ops.write, - allocate: MEMFS.stream_ops.allocate, - mmap: MEMFS.stream_ops.mmap, - msync: MEMFS.stream_ops.msync - } - }, - link: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr, - readlink: MEMFS.node_ops.readlink - }, - stream: {} - }, - chrdev: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr - }, - stream: FS.chrdev_stream_ops - } - }; - } - var node = FS.createNode(parent, name, mode, dev); - if (FS.isDir(node.mode)) { - node.node_ops = MEMFS.ops_table.dir.node; - node.stream_ops = MEMFS.ops_table.dir.stream; - node.contents = {}; - } else if (FS.isFile(node.mode)) { - node.node_ops = MEMFS.ops_table.file.node; - node.stream_ops = MEMFS.ops_table.file.stream; - node.usedBytes = 0; // The actual number of bytes used in the typed array, as opposed to contents.buffer.byteLength which gives the whole capacity. - // When the byte data of the file is populated, this will point to either a typed array, or a normal JS array. Typed arrays are preferred - // for performance, and used by default. However, typed arrays are not resizable like normal JS arrays are, so there is a small disk size - // penalty involved for appending file writes that continuously grow a file similar to std::vector capacity vs used -scheme. - node.contents = null; - } else if (FS.isLink(node.mode)) { - node.node_ops = MEMFS.ops_table.link.node; - node.stream_ops = MEMFS.ops_table.link.stream; - } else if (FS.isChrdev(node.mode)) { - node.node_ops = MEMFS.ops_table.chrdev.node; - node.stream_ops = MEMFS.ops_table.chrdev.stream; - } - node.timestamp = Date.now(); - // add the new node to the parent - if (parent) { - parent.contents[name] = node; - } - return node; - },getFileDataAsRegularArray:function (node) { - if (node.contents && node.contents.subarray) { - var arr = []; - for (var i = 0; i < node.usedBytes; ++i) arr.push(node.contents[i]); - return arr; // Returns a copy of the original data. - } - return node.contents; // No-op, the file contents are already in a JS array. Return as-is. - },getFileDataAsTypedArray:function (node) { - if (!node.contents) return new Uint8Array; - if (node.contents.subarray) return node.contents.subarray(0, node.usedBytes); // Make sure to not return excess unused bytes. - return new Uint8Array(node.contents); - },expandFileStorage:function (node, newCapacity) { - // If we are asked to expand the size of a file that already exists, revert to using a standard JS array to store the file - // instead of a typed array. This makes resizing the array more flexible because we can just .push() elements at the back to - // increase the size. - if (node.contents && node.contents.subarray && newCapacity > node.contents.length) { - node.contents = MEMFS.getFileDataAsRegularArray(node); - node.usedBytes = node.contents.length; // We might be writing to a lazy-loaded file which had overridden this property, so force-reset it. - } - - if (!node.contents || node.contents.subarray) { // Keep using a typed array if creating a new storage, or if old one was a typed array as well. - var prevCapacity = node.contents ? node.contents.buffer.byteLength : 0; - if (prevCapacity >= newCapacity) return; // No need to expand, the storage was already large enough. - // Don't expand strictly to the given requested limit if it's only a very small increase, but instead geometrically grow capacity. - // For small filesizes (<1MB), perform size*2 geometric increase, but for large sizes, do a much more conservative size*1.125 increase to - // avoid overshooting the allocation cap by a very large margin. - var CAPACITY_DOUBLING_MAX = 1024 * 1024; - newCapacity = Math.max(newCapacity, (prevCapacity * (prevCapacity < CAPACITY_DOUBLING_MAX ? 2.0 : 1.125)) | 0); - if (prevCapacity != 0) newCapacity = Math.max(newCapacity, 256); // At minimum allocate 256b for each file when expanding. - var oldContents = node.contents; - node.contents = new Uint8Array(newCapacity); // Allocate new storage. - if (node.usedBytes > 0) node.contents.set(oldContents.subarray(0, node.usedBytes), 0); // Copy old data over to the new storage. - return; - } - // Not using a typed array to back the file storage. Use a standard JS array instead. - if (!node.contents && newCapacity > 0) node.contents = []; - while (node.contents.length < newCapacity) node.contents.push(0); - },resizeFileStorage:function (node, newSize) { - if (node.usedBytes == newSize) return; - if (newSize == 0) { - node.contents = null; // Fully decommit when requesting a resize to zero. - node.usedBytes = 0; - return; - } - if (!node.contents || node.contents.subarray) { // Resize a typed array if that is being used as the backing store. - var oldContents = node.contents; - node.contents = new Uint8Array(new ArrayBuffer(newSize)); // Allocate new storage. - if (oldContents) { - node.contents.set(oldContents.subarray(0, Math.min(newSize, node.usedBytes))); // Copy old data over to the new storage. - } - node.usedBytes = newSize; - return; - } - // Backing with a JS array. - if (!node.contents) node.contents = []; - if (node.contents.length > newSize) node.contents.length = newSize; - else while (node.contents.length < newSize) node.contents.push(0); - node.usedBytes = newSize; - },node_ops:{getattr:function (node) { - var attr = {}; - // device numbers reuse inode numbers. - attr.dev = FS.isChrdev(node.mode) ? node.id : 1; - attr.ino = node.id; - attr.mode = node.mode; - attr.nlink = 1; - attr.uid = 0; - attr.gid = 0; - attr.rdev = node.rdev; - if (FS.isDir(node.mode)) { - attr.size = 4096; - } else if (FS.isFile(node.mode)) { - attr.size = node.usedBytes; - } else if (FS.isLink(node.mode)) { - attr.size = node.link.length; - } else { - attr.size = 0; - } - attr.atime = new Date(node.timestamp); - attr.mtime = new Date(node.timestamp); - attr.ctime = new Date(node.timestamp); - // NOTE: In our implementation, st_blocks = Math.ceil(st_size/st_blksize), - // but this is not required by the standard. - attr.blksize = 4096; - attr.blocks = Math.ceil(attr.size / attr.blksize); - return attr; - },setattr:function (node, attr) { - if (attr.mode !== undefined) { - node.mode = attr.mode; - } - if (attr.timestamp !== undefined) { - node.timestamp = attr.timestamp; - } - if (attr.size !== undefined) { - MEMFS.resizeFileStorage(node, attr.size); - } - },lookup:function (parent, name) { - throw FS.genericErrors[ERRNO_CODES.ENOENT]; - },mknod:function (parent, name, mode, dev) { - return MEMFS.createNode(parent, name, mode, dev); - },rename:function (old_node, new_dir, new_name) { - // if we're overwriting a directory at new_name, make sure it's empty. - if (FS.isDir(old_node.mode)) { - var new_node; - try { - new_node = FS.lookupNode(new_dir, new_name); - } catch (e) { - } - if (new_node) { - for (var i in new_node.contents) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTEMPTY); - } - } - } - // do the internal rewiring - delete old_node.parent.contents[old_node.name]; - old_node.name = new_name; - new_dir.contents[new_name] = old_node; - old_node.parent = new_dir; - },unlink:function (parent, name) { - delete parent.contents[name]; - },rmdir:function (parent, name) { - var node = FS.lookupNode(parent, name); - for (var i in node.contents) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTEMPTY); - } - delete parent.contents[name]; - },readdir:function (node) { - var entries = ['.', '..'] - for (var key in node.contents) { - if (!node.contents.hasOwnProperty(key)) { - continue; - } - entries.push(key); - } - return entries; - },symlink:function (parent, newname, oldpath) { - var node = MEMFS.createNode(parent, newname, 511 /* 0777 */ | 40960, 0); - node.link = oldpath; - return node; - },readlink:function (node) { - if (!FS.isLink(node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - return node.link; - }},stream_ops:{read:function (stream, buffer, offset, length, position) { - var contents = stream.node.contents; - if (position >= stream.node.usedBytes) return 0; - var size = Math.min(stream.node.usedBytes - position, length); - assert(size >= 0); - if (size > 8 && contents.subarray) { // non-trivial, and typed array - buffer.set(contents.subarray(position, position + size), offset); - } else { - for (var i = 0; i < size; i++) buffer[offset + i] = contents[position + i]; - } - return size; - },write:function (stream, buffer, offset, length, position, canOwn) { - if (!length) return 0; - var node = stream.node; - node.timestamp = Date.now(); - - if (buffer.subarray && (!node.contents || node.contents.subarray)) { // This write is from a typed array to a typed array? - if (canOwn) { // Can we just reuse the buffer we are given? - node.contents = buffer.subarray(offset, offset + length); - node.usedBytes = length; - return length; - } else if (node.usedBytes === 0 && position === 0) { // If this is a simple first write to an empty file, do a fast set since we don't need to care about old data. - node.contents = new Uint8Array(buffer.subarray(offset, offset + length)); - node.usedBytes = length; - return length; - } else if (position + length <= node.usedBytes) { // Writing to an already allocated and used subrange of the file? - node.contents.set(buffer.subarray(offset, offset + length), position); - return length; - } - } - - // Appending to an existing file and we need to reallocate, or source data did not come as a typed array. - MEMFS.expandFileStorage(node, position+length); - if (node.contents.subarray && buffer.subarray) node.contents.set(buffer.subarray(offset, offset + length), position); // Use typed array write if available. - else { - for (var i = 0; i < length; i++) { - node.contents[position + i] = buffer[offset + i]; // Or fall back to manual write if not. - } - } - node.usedBytes = Math.max(node.usedBytes, position+length); - return length; - },llseek:function (stream, offset, whence) { - var position = offset; - if (whence === 1) { // SEEK_CUR. - position += stream.position; - } else if (whence === 2) { // SEEK_END. - if (FS.isFile(stream.node.mode)) { - position += stream.node.usedBytes; - } - } - if (position < 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - return position; - },allocate:function (stream, offset, length) { - MEMFS.expandFileStorage(stream.node, offset + length); - stream.node.usedBytes = Math.max(stream.node.usedBytes, offset + length); - },mmap:function (stream, buffer, offset, length, position, prot, flags) { - if (!FS.isFile(stream.node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.ENODEV); - } - var ptr; - var allocated; - var contents = stream.node.contents; - // Only make a new copy when MAP_PRIVATE is specified. - if ( !(flags & 2) && - (contents.buffer === buffer || contents.buffer === buffer.buffer) ) { - // We can't emulate MAP_SHARED when the file is not backed by the buffer - // we're mapping to (e.g. the HEAP buffer). - allocated = false; - ptr = contents.byteOffset; - } else { - // Try to avoid unnecessary slices. - if (position > 0 || position + length < stream.node.usedBytes) { - if (contents.subarray) { - contents = contents.subarray(position, position + length); - } else { - contents = Array.prototype.slice.call(contents, position, position + length); - } - } - allocated = true; - ptr = _malloc(length); - if (!ptr) { - throw new FS.ErrnoError(ERRNO_CODES.ENOMEM); - } - buffer.set(contents, ptr); - } - return { ptr: ptr, allocated: allocated }; - },msync:function (stream, buffer, offset, length, mmapFlags) { - if (!FS.isFile(stream.node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.ENODEV); - } - if (mmapFlags & 2) { - // MAP_PRIVATE calls need not to be synced back to underlying fs - return 0; - } - - var bytesWritten = MEMFS.stream_ops.write(stream, buffer, 0, length, offset, false); - // should we check if bytesWritten and length are the same? - return 0; - }}}; - - var IDBFS={dbs:{},indexedDB:function () { - if (typeof indexedDB !== 'undefined') return indexedDB; - var ret = null; - if (typeof window === 'object') ret = window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB; - assert(ret, 'IDBFS used, but indexedDB not supported'); - return ret; - },DB_VERSION:21,DB_STORE_NAME:"FILE_DATA",mount:function (mount) { - // reuse all of the core MEMFS functionality - return MEMFS.mount.apply(null, arguments); - },syncfs:function (mount, populate, callback) { - IDBFS.getLocalSet(mount, function(err, local) { - if (err) return callback(err); - - IDBFS.getRemoteSet(mount, function(err, remote) { - if (err) return callback(err); - - var src = populate ? remote : local; - var dst = populate ? local : remote; - - IDBFS.reconcile(src, dst, callback); - }); - }); - },getDB:function (name, callback) { - // check the cache first - var db = IDBFS.dbs[name]; - if (db) { - return callback(null, db); - } - - var req; - try { - req = IDBFS.indexedDB().open(name, IDBFS.DB_VERSION); - } catch (e) { - return callback(e); - } - req.onupgradeneeded = function(e) { - var db = e.target.result; - var transaction = e.target.transaction; - - var fileStore; - - if (db.objectStoreNames.contains(IDBFS.DB_STORE_NAME)) { - fileStore = transaction.objectStore(IDBFS.DB_STORE_NAME); - } else { - fileStore = db.createObjectStore(IDBFS.DB_STORE_NAME); - } - - if (!fileStore.indexNames.contains('timestamp')) { - fileStore.createIndex('timestamp', 'timestamp', { unique: false }); - } - }; - req.onsuccess = function() { - db = req.result; - - // add to the cache - IDBFS.dbs[name] = db; - callback(null, db); - }; - req.onerror = function(e) { - callback(this.error); - e.preventDefault(); - }; - },getLocalSet:function (mount, callback) { - var entries = {}; - - function isRealDir(p) { - return p !== '.' && p !== '..'; - }; - function toAbsolute(root) { - return function(p) { - return PATH.join2(root, p); - } - }; - - var check = FS.readdir(mount.mountpoint).filter(isRealDir).map(toAbsolute(mount.mountpoint)); - - while (check.length) { - var path = check.pop(); - var stat; - - try { - stat = FS.stat(path); - } catch (e) { - return callback(e); - } - - if (FS.isDir(stat.mode)) { - check.push.apply(check, FS.readdir(path).filter(isRealDir).map(toAbsolute(path))); - } - - entries[path] = { timestamp: stat.mtime }; - } - - return callback(null, { type: 'local', entries: entries }); - },getRemoteSet:function (mount, callback) { - var entries = {}; - - IDBFS.getDB(mount.mountpoint, function(err, db) { - if (err) return callback(err); - - var transaction = db.transaction([IDBFS.DB_STORE_NAME], 'readonly'); - transaction.onerror = function(e) { - callback(this.error); - e.preventDefault(); - }; - - var store = transaction.objectStore(IDBFS.DB_STORE_NAME); - var index = store.index('timestamp'); - - index.openKeyCursor().onsuccess = function(event) { - var cursor = event.target.result; - - if (!cursor) { - return callback(null, { type: 'remote', db: db, entries: entries }); - } - - entries[cursor.primaryKey] = { timestamp: cursor.key }; - - cursor.continue(); - }; - }); - },loadLocalEntry:function (path, callback) { - var stat, node; - - try { - var lookup = FS.lookupPath(path); - node = lookup.node; - stat = FS.stat(path); - } catch (e) { - return callback(e); - } - - if (FS.isDir(stat.mode)) { - return callback(null, { timestamp: stat.mtime, mode: stat.mode }); - } else if (FS.isFile(stat.mode)) { - // Performance consideration: storing a normal JavaScript array to a IndexedDB is much slower than storing a typed array. - // Therefore always convert the file contents to a typed array first before writing the data to IndexedDB. - node.contents = MEMFS.getFileDataAsTypedArray(node); - return callback(null, { timestamp: stat.mtime, mode: stat.mode, contents: node.contents }); - } else { - return callback(new Error('node type not supported')); - } - },storeLocalEntry:function (path, entry, callback) { - try { - if (FS.isDir(entry.mode)) { - FS.mkdir(path, entry.mode); - } else if (FS.isFile(entry.mode)) { - FS.writeFile(path, entry.contents, { encoding: 'binary', canOwn: true }); - } else { - return callback(new Error('node type not supported')); - } - - FS.chmod(path, entry.mode); - FS.utime(path, entry.timestamp, entry.timestamp); - } catch (e) { - return callback(e); - } - - callback(null); - },removeLocalEntry:function (path, callback) { - try { - var lookup = FS.lookupPath(path); - var stat = FS.stat(path); - - if (FS.isDir(stat.mode)) { - FS.rmdir(path); - } else if (FS.isFile(stat.mode)) { - FS.unlink(path); - } - } catch (e) { - return callback(e); - } - - callback(null); - },loadRemoteEntry:function (store, path, callback) { - var req = store.get(path); - req.onsuccess = function(event) { callback(null, event.target.result); }; - req.onerror = function(e) { - callback(this.error); - e.preventDefault(); - }; - },storeRemoteEntry:function (store, path, entry, callback) { - var req = store.put(entry, path); - req.onsuccess = function() { callback(null); }; - req.onerror = function(e) { - callback(this.error); - e.preventDefault(); - }; - },removeRemoteEntry:function (store, path, callback) { - var req = store.delete(path); - req.onsuccess = function() { callback(null); }; - req.onerror = function(e) { - callback(this.error); - e.preventDefault(); - }; - },reconcile:function (src, dst, callback) { - var total = 0; - - var create = []; - Object.keys(src.entries).forEach(function (key) { - var e = src.entries[key]; - var e2 = dst.entries[key]; - if (!e2 || e.timestamp > e2.timestamp) { - create.push(key); - total++; - } - }); - - var remove = []; - Object.keys(dst.entries).forEach(function (key) { - var e = dst.entries[key]; - var e2 = src.entries[key]; - if (!e2) { - remove.push(key); - total++; - } - }); - - if (!total) { - return callback(null); - } - - var errored = false; - var completed = 0; - var db = src.type === 'remote' ? src.db : dst.db; - var transaction = db.transaction([IDBFS.DB_STORE_NAME], 'readwrite'); - var store = transaction.objectStore(IDBFS.DB_STORE_NAME); - - function done(err) { - if (err) { - if (!done.errored) { - done.errored = true; - return callback(err); - } - return; - } - if (++completed >= total) { - return callback(null); - } - }; - - transaction.onerror = function(e) { - done(this.error); - e.preventDefault(); - }; - - // sort paths in ascending order so directory entries are created - // before the files inside them - create.sort().forEach(function (path) { - if (dst.type === 'local') { - IDBFS.loadRemoteEntry(store, path, function (err, entry) { - if (err) return done(err); - IDBFS.storeLocalEntry(path, entry, done); - }); - } else { - IDBFS.loadLocalEntry(path, function (err, entry) { - if (err) return done(err); - IDBFS.storeRemoteEntry(store, path, entry, done); - }); - } - }); - // sort paths in descending order so files are deleted before their - // parent directories - remove.sort().reverse().forEach(function(path) { - if (dst.type === 'local') { - IDBFS.removeLocalEntry(path, done); + function _emscripten_memcpy_big(dest, src, num) { + HEAPU8.set(HEAPU8.subarray(src, src+num), dest); + return dest; + } + Module["_memcpy"] = _memcpy; + Module["_memmove"] = _memmove; + + + function ___syscall140(which, varargs) {SYSCALLS.varargs = varargs; + try { + // llseek + var stream = SYSCALLS.getStreamFromFD(), offset_high = SYSCALLS.get(), offset_low = SYSCALLS.get(), result = SYSCALLS.get(), whence = SYSCALLS.get(); + // NOTE: offset_high is unused - Emscripten's off_t is 32-bit + var offset = offset_low; + FS.llseek(stream, offset, whence); + HEAP32[((result)>>2)]=stream.position; + if (stream.getdents && offset === 0 && whence === 0) stream.getdents = null; // reset readdir state + return 0; + } catch (e) { + if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); + return -e.errno; + } + } + + function ___syscall146(which, varargs) {SYSCALLS.varargs = varargs; + try { + // writev + // hack to support printf in NO_FILESYSTEM + var stream = SYSCALLS.get(), iov = SYSCALLS.get(), iovcnt = SYSCALLS.get(); + var ret = 0; + if (!___syscall146.buffer) { + ___syscall146.buffers = [null, [], []]; // 1 => stdout, 2 => stderr + ___syscall146.printChar = function(stream, curr) { + var buffer = ___syscall146.buffers[stream]; + assert(buffer); + if (curr === 0 || curr === 10) { + (stream === 1 ? Module['print'] : Module['printErr'])(UTF8ArrayToString(buffer, 0)); + buffer.length = 0; } else { - IDBFS.removeRemoteEntry(store, path, done); - } - }); - }}; - - var NODEFS={isWindows:false,staticInit:function () { - NODEFS.isWindows = !!process.platform.match(/^win/); - },mount:function (mount) { - assert(ENVIRONMENT_IS_NODE); - return NODEFS.createNode(null, '/', NODEFS.getMode(mount.opts.root), 0); - },createNode:function (parent, name, mode, dev) { - if (!FS.isDir(mode) && !FS.isFile(mode) && !FS.isLink(mode)) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - var node = FS.createNode(parent, name, mode); - node.node_ops = NODEFS.node_ops; - node.stream_ops = NODEFS.stream_ops; - return node; - },getMode:function (path) { - var stat; - try { - stat = fs.lstatSync(path); - if (NODEFS.isWindows) { - // On Windows, directories return permission bits 'rw-rw-rw-', even though they have 'rwxrwxrwx', so - // propagate write bits to execute bits. - stat.mode = stat.mode | ((stat.mode & 146) >> 1); - } - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - return stat.mode; - },realPath:function (node) { - var parts = []; - while (node.parent !== node) { - parts.push(node.name); - node = node.parent; - } - parts.push(node.mount.opts.root); - parts.reverse(); - return PATH.join.apply(null, parts); - },flagsToPermissionStringMap:{0:"r",1:"r+",2:"r+",64:"r",65:"r+",66:"r+",129:"rx+",193:"rx+",514:"w+",577:"w",578:"w+",705:"wx",706:"wx+",1024:"a",1025:"a",1026:"a+",1089:"a",1090:"a+",1153:"ax",1154:"ax+",1217:"ax",1218:"ax+",4096:"rs",4098:"rs+"},flagsToPermissionString:function (flags) { - flags &= ~0100000 /*O_LARGEFILE*/; // Ignore this flag from musl, otherwise node.js fails to open the file. - if (flags in NODEFS.flagsToPermissionStringMap) { - return NODEFS.flagsToPermissionStringMap[flags]; - } else { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - },node_ops:{getattr:function (node) { - var path = NODEFS.realPath(node); - var stat; - try { - stat = fs.lstatSync(path); - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - // node.js v0.10.20 doesn't report blksize and blocks on Windows. Fake them with default blksize of 4096. - // See http://support.microsoft.com/kb/140365 - if (NODEFS.isWindows && !stat.blksize) { - stat.blksize = 4096; - } - if (NODEFS.isWindows && !stat.blocks) { - stat.blocks = (stat.size+stat.blksize-1)/stat.blksize|0; - } - return { - dev: stat.dev, - ino: stat.ino, - mode: stat.mode, - nlink: stat.nlink, - uid: stat.uid, - gid: stat.gid, - rdev: stat.rdev, - size: stat.size, - atime: stat.atime, - mtime: stat.mtime, - ctime: stat.ctime, - blksize: stat.blksize, - blocks: stat.blocks - }; - },setattr:function (node, attr) { - var path = NODEFS.realPath(node); - try { - if (attr.mode !== undefined) { - fs.chmodSync(path, attr.mode); - // update the common node structure mode as well - node.mode = attr.mode; - } - if (attr.timestamp !== undefined) { - var date = new Date(attr.timestamp); - fs.utimesSync(path, date, date); - } - if (attr.size !== undefined) { - fs.truncateSync(path, attr.size); - } - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },lookup:function (parent, name) { - var path = PATH.join2(NODEFS.realPath(parent), name); - var mode = NODEFS.getMode(path); - return NODEFS.createNode(parent, name, mode); - },mknod:function (parent, name, mode, dev) { - var node = NODEFS.createNode(parent, name, mode, dev); - // create the backing node for this in the fs root as well - var path = NODEFS.realPath(node); - try { - if (FS.isDir(node.mode)) { - fs.mkdirSync(path, node.mode); - } else { - fs.writeFileSync(path, '', { mode: node.mode }); - } - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - return node; - },rename:function (oldNode, newDir, newName) { - var oldPath = NODEFS.realPath(oldNode); - var newPath = PATH.join2(NODEFS.realPath(newDir), newName); - try { - fs.renameSync(oldPath, newPath); - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },unlink:function (parent, name) { - var path = PATH.join2(NODEFS.realPath(parent), name); - try { - fs.unlinkSync(path); - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },rmdir:function (parent, name) { - var path = PATH.join2(NODEFS.realPath(parent), name); - try { - fs.rmdirSync(path); - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },readdir:function (node) { - var path = NODEFS.realPath(node); - try { - return fs.readdirSync(path); - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },symlink:function (parent, newName, oldPath) { - var newPath = PATH.join2(NODEFS.realPath(parent), newName); - try { - fs.symlinkSync(oldPath, newPath); - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },readlink:function (node) { - var path = NODEFS.realPath(node); - try { - path = fs.readlinkSync(path); - path = NODEJS_PATH.relative(NODEJS_PATH.resolve(node.mount.opts.root), path); - return path; - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - }},stream_ops:{open:function (stream) { - var path = NODEFS.realPath(stream.node); - try { - if (FS.isFile(stream.node.mode)) { - stream.nfd = fs.openSync(path, NODEFS.flagsToPermissionString(stream.flags)); - } - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },close:function (stream) { - try { - if (FS.isFile(stream.node.mode) && stream.nfd) { - fs.closeSync(stream.nfd); - } - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },read:function (stream, buffer, offset, length, position) { - if (length === 0) return 0; // node errors on 0 length reads - // FIXME this is terrible. - var nbuffer = new Buffer(length); - var res; - try { - res = fs.readSync(stream.nfd, nbuffer, 0, length, position); - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - if (res > 0) { - for (var i = 0; i < res; i++) { - buffer[offset + i] = nbuffer[i]; - } - } - return res; - },write:function (stream, buffer, offset, length, position) { - // FIXME this is terrible. - var nbuffer = new Buffer(buffer.subarray(offset, offset + length)); - var res; - try { - res = fs.writeSync(stream.nfd, nbuffer, 0, length, position); - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - return res; - },llseek:function (stream, offset, whence) { - var position = offset; - if (whence === 1) { // SEEK_CUR. - position += stream.position; - } else if (whence === 2) { // SEEK_END. - if (FS.isFile(stream.node.mode)) { - try { - var stat = fs.fstatSync(stream.nfd); - position += stat.size; - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - } - } - - if (position < 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - - return position; - }}}; - - var WORKERFS={DIR_MODE:16895,FILE_MODE:33279,reader:null,mount:function (mount) { - assert(ENVIRONMENT_IS_WORKER); - if (!WORKERFS.reader) WORKERFS.reader = new FileReaderSync(); - var root = WORKERFS.createNode(null, '/', WORKERFS.DIR_MODE, 0); - var createdParents = {}; - function ensureParent(path) { - // return the parent node, creating subdirs as necessary - var parts = path.split('/'); - var parent = root; - for (var i = 0; i < parts.length-1; i++) { - var curr = parts.slice(0, i+1).join('/'); - if (!createdParents[curr]) { - createdParents[curr] = WORKERFS.createNode(parent, curr, WORKERFS.DIR_MODE, 0); - } - parent = createdParents[curr]; - } - return parent; - } - function base(path) { - var parts = path.split('/'); - return parts[parts.length-1]; - } - // We also accept FileList here, by using Array.prototype - Array.prototype.forEach.call(mount.opts["files"] || [], function(file) { - WORKERFS.createNode(ensureParent(file.name), base(file.name), WORKERFS.FILE_MODE, 0, file, file.lastModifiedDate); - }); - (mount.opts["blobs"] || []).forEach(function(obj) { - WORKERFS.createNode(ensureParent(obj["name"]), base(obj["name"]), WORKERFS.FILE_MODE, 0, obj["data"]); - }); - (mount.opts["packages"] || []).forEach(function(pack) { - pack['metadata'].files.forEach(function(file) { - var name = file.filename.substr(1); // remove initial slash - WORKERFS.createNode(ensureParent(name), base(name), WORKERFS.FILE_MODE, 0, pack['blob'].slice(file.start, file.end)); - }); - }); - return root; - },createNode:function (parent, name, mode, dev, contents, mtime) { - var node = FS.createNode(parent, name, mode); - node.mode = mode; - node.node_ops = WORKERFS.node_ops; - node.stream_ops = WORKERFS.stream_ops; - node.timestamp = (mtime || new Date).getTime(); - assert(WORKERFS.FILE_MODE !== WORKERFS.DIR_MODE); - if (mode === WORKERFS.FILE_MODE) { - node.size = contents.size; - node.contents = contents; - } else { - node.size = 4096; - node.contents = {}; - } - if (parent) { - parent.contents[name] = node; - } - return node; - },node_ops:{getattr:function (node) { - return { - dev: 1, - ino: undefined, - mode: node.mode, - nlink: 1, - uid: 0, - gid: 0, - rdev: undefined, - size: node.size, - atime: new Date(node.timestamp), - mtime: new Date(node.timestamp), - ctime: new Date(node.timestamp), - blksize: 4096, - blocks: Math.ceil(node.size / 4096), - }; - },setattr:function (node, attr) { - if (attr.mode !== undefined) { - node.mode = attr.mode; - } - if (attr.timestamp !== undefined) { - node.timestamp = attr.timestamp; - } - },lookup:function (parent, name) { - throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - },mknod:function (parent, name, mode, dev) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - },rename:function (oldNode, newDir, newName) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - },unlink:function (parent, name) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - },rmdir:function (parent, name) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - },readdir:function (node) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - },symlink:function (parent, newName, oldPath) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - },readlink:function (node) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - }},stream_ops:{read:function (stream, buffer, offset, length, position) { - if (position >= stream.node.size) return 0; - var chunk = stream.node.contents.slice(position, position + length); - var ab = WORKERFS.reader.readAsArrayBuffer(chunk); - buffer.set(new Uint8Array(ab), offset); - return chunk.size; - },write:function (stream, buffer, offset, length, position) { - throw new FS.ErrnoError(ERRNO_CODES.EIO); - },llseek:function (stream, offset, whence) { - var position = offset; - if (whence === 1) { // SEEK_CUR. - position += stream.position; - } else if (whence === 2) { // SEEK_END. - if (FS.isFile(stream.node.mode)) { - position += stream.node.size; - } + buffer.push(curr); } - if (position < 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - return position; - }}}; - - var _stdin=allocate(1, "i32*", ALLOC_STATIC); - - var _stdout=allocate(1, "i32*", ALLOC_STATIC); - - var _stderr=allocate(1, "i32*", ALLOC_STATIC);var FS={root:null,mounts:[],devices:[null],streams:[],nextInode:1,nameTable:null,currentPath:"/",initialized:false,ignorePermissions:true,trackingDelegate:{},tracking:{openFlags:{READ:1,WRITE:2}},ErrnoError:null,genericErrors:{},filesystems:null,handleFSError:function (e) { - if (!(e instanceof FS.ErrnoError)) throw e + ' : ' + stackTrace(); - return ___setErrNo(e.errno); - },lookupPath:function (path, opts) { - path = PATH.resolve(FS.cwd(), path); - opts = opts || {}; - - if (!path) return { path: '', node: null }; - - var defaults = { - follow_mount: true, - recurse_count: 0 }; - for (var key in defaults) { - if (opts[key] === undefined) { - opts[key] = defaults[key]; - } - } - - if (opts.recurse_count > 8) { // max recursive lookup of 8 - throw new FS.ErrnoError(ERRNO_CODES.ELOOP); - } - - // split the path - var parts = PATH.normalizeArray(path.split('/').filter(function(p) { - return !!p; - }), false); - - // start at the root - var current = FS.root; - var current_path = '/'; - - for (var i = 0; i < parts.length; i++) { - var islast = (i === parts.length-1); - if (islast && opts.parent) { - // stop resolving - break; - } - - current = FS.lookupNode(current, parts[i]); - current_path = PATH.join2(current_path, parts[i]); - - // jump to the mount's root node if this is a mountpoint - if (FS.isMountpoint(current)) { - if (!islast || (islast && opts.follow_mount)) { - current = current.mounted.root; - } - } - - // by default, lookupPath will not follow a symlink if it is the final path component. - // setting opts.follow = true will override this behavior. - if (!islast || opts.follow) { - var count = 0; - while (FS.isLink(current.mode)) { - var link = FS.readlink(current_path); - current_path = PATH.resolve(PATH.dirname(current_path), link); - - var lookup = FS.lookupPath(current_path, { recurse_count: opts.recurse_count }); - current = lookup.node; - - if (count++ > 40) { // limit max consecutive symlinks to 40 (SYMLOOP_MAX). - throw new FS.ErrnoError(ERRNO_CODES.ELOOP); - } - } - } - } - - return { path: current_path, node: current }; - },getPath:function (node) { - var path; - while (true) { - if (FS.isRoot(node)) { - var mount = node.mount.mountpoint; - if (!path) return mount; - return mount[mount.length-1] !== '/' ? mount + '/' + path : mount + path; - } - path = path ? node.name + '/' + path : node.name; - node = node.parent; - } - },hashName:function (parentid, name) { - var hash = 0; - - - for (var i = 0; i < name.length; i++) { - hash = ((hash << 5) - hash + name.charCodeAt(i)) | 0; - } - return ((parentid + hash) >>> 0) % FS.nameTable.length; - },hashAddNode:function (node) { - var hash = FS.hashName(node.parent.id, node.name); - node.name_next = FS.nameTable[hash]; - FS.nameTable[hash] = node; - },hashRemoveNode:function (node) { - var hash = FS.hashName(node.parent.id, node.name); - if (FS.nameTable[hash] === node) { - FS.nameTable[hash] = node.name_next; - } else { - var current = FS.nameTable[hash]; - while (current) { - if (current.name_next === node) { - current.name_next = node.name_next; - break; - } - current = current.name_next; - } - } - },lookupNode:function (parent, name) { - var err = FS.mayLookup(parent); - if (err) { - throw new FS.ErrnoError(err, parent); - } - var hash = FS.hashName(parent.id, name); - for (var node = FS.nameTable[hash]; node; node = node.name_next) { - var nodeName = node.name; - if (node.parent.id === parent.id && nodeName === name) { - return node; - } - } - // if we failed to find it in the cache, call into the VFS - return FS.lookup(parent, name); - },createNode:function (parent, name, mode, rdev) { - if (!FS.FSNode) { - FS.FSNode = function(parent, name, mode, rdev) { - if (!parent) { - parent = this; // root node sets parent to itself - } - this.parent = parent; - this.mount = parent.mount; - this.mounted = null; - this.id = FS.nextInode++; - this.name = name; - this.mode = mode; - this.node_ops = {}; - this.stream_ops = {}; - this.rdev = rdev; - }; - - FS.FSNode.prototype = {}; - - // compatibility - var readMode = 292 | 73; - var writeMode = 146; - - // NOTE we must use Object.defineProperties instead of individual calls to - // Object.defineProperty in order to make closure compiler happy - Object.defineProperties(FS.FSNode.prototype, { - read: { - get: function() { return (this.mode & readMode) === readMode; }, - set: function(val) { val ? this.mode |= readMode : this.mode &= ~readMode; } - }, - write: { - get: function() { return (this.mode & writeMode) === writeMode; }, - set: function(val) { val ? this.mode |= writeMode : this.mode &= ~writeMode; } - }, - isFolder: { - get: function() { return FS.isDir(this.mode); } - }, - isDevice: { - get: function() { return FS.isChrdev(this.mode); } - } - }); - } - - var node = new FS.FSNode(parent, name, mode, rdev); - - FS.hashAddNode(node); - - return node; - },destroyNode:function (node) { - FS.hashRemoveNode(node); - },isRoot:function (node) { - return node === node.parent; - },isMountpoint:function (node) { - return !!node.mounted; - },isFile:function (mode) { - return (mode & 61440) === 32768; - },isDir:function (mode) { - return (mode & 61440) === 16384; - },isLink:function (mode) { - return (mode & 61440) === 40960; - },isChrdev:function (mode) { - return (mode & 61440) === 8192; - },isBlkdev:function (mode) { - return (mode & 61440) === 24576; - },isFIFO:function (mode) { - return (mode & 61440) === 4096; - },isSocket:function (mode) { - return (mode & 49152) === 49152; - },flagModes:{"r":0,"rs":1052672,"r+":2,"w":577,"wx":705,"xw":705,"w+":578,"wx+":706,"xw+":706,"a":1089,"ax":1217,"xa":1217,"a+":1090,"ax+":1218,"xa+":1218},modeStringToFlags:function (str) { - var flags = FS.flagModes[str]; - if (typeof flags === 'undefined') { - throw new Error('Unknown file open mode: ' + str); - } - return flags; - },flagsToPermissionString:function (flag) { - var perms = ['r', 'w', 'rw'][flag & 3]; - if ((flag & 512)) { - perms += 'w'; - } - return perms; - },nodePermissions:function (node, perms) { - if (FS.ignorePermissions) { - return 0; - } - // return 0 if any user, group or owner bits are set. - if (perms.indexOf('r') !== -1 && !(node.mode & 292)) { - return ERRNO_CODES.EACCES; - } else if (perms.indexOf('w') !== -1 && !(node.mode & 146)) { - return ERRNO_CODES.EACCES; - } else if (perms.indexOf('x') !== -1 && !(node.mode & 73)) { - return ERRNO_CODES.EACCES; - } - return 0; - },mayLookup:function (dir) { - var err = FS.nodePermissions(dir, 'x'); - if (err) return err; - if (!dir.node_ops.lookup) return ERRNO_CODES.EACCES; - return 0; - },mayCreate:function (dir, name) { - try { - var node = FS.lookupNode(dir, name); - return ERRNO_CODES.EEXIST; - } catch (e) { - } - return FS.nodePermissions(dir, 'wx'); - },mayDelete:function (dir, name, isdir) { - var node; - try { - node = FS.lookupNode(dir, name); - } catch (e) { - return e.errno; + } + for (var i = 0; i < iovcnt; i++) { + var ptr = HEAP32[(((iov)+(i*8))>>2)]; + var len = HEAP32[(((iov)+(i*8 + 4))>>2)]; + for (var j = 0; j < len; j++) { + ___syscall146.printChar(stream, HEAPU8[ptr+j]); } - var err = FS.nodePermissions(dir, 'wx'); - if (err) { - return err; - } - if (isdir) { - if (!FS.isDir(node.mode)) { - return ERRNO_CODES.ENOTDIR; - } - if (FS.isRoot(node) || FS.getPath(node) === FS.cwd()) { - return ERRNO_CODES.EBUSY; - } - } else { - if (FS.isDir(node.mode)) { - return ERRNO_CODES.EISDIR; - } - } - return 0; - },mayOpen:function (node, flags) { - if (!node) { - return ERRNO_CODES.ENOENT; - } - if (FS.isLink(node.mode)) { - return ERRNO_CODES.ELOOP; - } else if (FS.isDir(node.mode)) { - if ((flags & 2097155) !== 0 || // opening for write - (flags & 512)) { - return ERRNO_CODES.EISDIR; - } - } - return FS.nodePermissions(node, FS.flagsToPermissionString(flags)); - },MAX_OPEN_FDS:4096,nextfd:function (fd_start, fd_end) { - fd_start = fd_start || 0; - fd_end = fd_end || FS.MAX_OPEN_FDS; - for (var fd = fd_start; fd <= fd_end; fd++) { - if (!FS.streams[fd]) { - return fd; - } - } - throw new FS.ErrnoError(ERRNO_CODES.EMFILE); - },getStream:function (fd) { - return FS.streams[fd]; - },createStream:function (stream, fd_start, fd_end) { - if (!FS.FSStream) { - FS.FSStream = function(){}; - FS.FSStream.prototype = {}; - // compatibility - Object.defineProperties(FS.FSStream.prototype, { - object: { - get: function() { return this.node; }, - set: function(val) { this.node = val; } - }, - isRead: { - get: function() { return (this.flags & 2097155) !== 1; } - }, - isWrite: { - get: function() { return (this.flags & 2097155) !== 0; } - }, - isAppend: { - get: function() { return (this.flags & 1024); } - } - }); - } - // clone it, so we can return an instance of FSStream - var newStream = new FS.FSStream(); - for (var p in stream) { - newStream[p] = stream[p]; - } - stream = newStream; - var fd = FS.nextfd(fd_start, fd_end); - stream.fd = fd; - FS.streams[fd] = stream; - return stream; - },closeStream:function (fd) { - FS.streams[fd] = null; - },chrdev_stream_ops:{open:function (stream) { - var device = FS.getDevice(stream.node.rdev); - // override node's stream ops with the device's - stream.stream_ops = device.stream_ops; - // forward the open call - if (stream.stream_ops.open) { - stream.stream_ops.open(stream); - } - },llseek:function () { - throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); - }},major:function (dev) { - return ((dev) >> 8); - },minor:function (dev) { - return ((dev) & 0xff); - },makedev:function (ma, mi) { - return ((ma) << 8 | (mi)); - },registerDevice:function (dev, ops) { - FS.devices[dev] = { stream_ops: ops }; - },getDevice:function (dev) { - return FS.devices[dev]; - },getMounts:function (mount) { - var mounts = []; - var check = [mount]; - - while (check.length) { - var m = check.pop(); - - mounts.push(m); - - check.push.apply(check, m.mounts); - } - - return mounts; - },syncfs:function (populate, callback) { - if (typeof(populate) === 'function') { - callback = populate; - populate = false; - } - - var mounts = FS.getMounts(FS.root.mount); - var completed = 0; - - function done(err) { - if (err) { - if (!done.errored) { - done.errored = true; - return callback(err); - } - return; - } - if (++completed >= mounts.length) { - callback(null); - } - }; - - // sync all mounts - mounts.forEach(function (mount) { - if (!mount.type.syncfs) { - return done(null); - } - mount.type.syncfs(mount, populate, done); - }); - },mount:function (type, opts, mountpoint) { - var root = mountpoint === '/'; - var pseudo = !mountpoint; - var node; - - if (root && FS.root) { - throw new FS.ErrnoError(ERRNO_CODES.EBUSY); - } else if (!root && !pseudo) { - var lookup = FS.lookupPath(mountpoint, { follow_mount: false }); - - mountpoint = lookup.path; // use the absolute path - node = lookup.node; - - if (FS.isMountpoint(node)) { - throw new FS.ErrnoError(ERRNO_CODES.EBUSY); - } - - if (!FS.isDir(node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR); - } - } - - var mount = { - type: type, - opts: opts, - mountpoint: mountpoint, - mounts: [] - }; - - // create a root node for the fs - var mountRoot = type.mount(mount); - mountRoot.mount = mount; - mount.root = mountRoot; - - if (root) { - FS.root = mountRoot; - } else if (node) { - // set as a mountpoint - node.mounted = mount; - - // add the new mount to the current mount's children - if (node.mount) { - node.mount.mounts.push(mount); - } - } - - return mountRoot; - },unmount:function (mountpoint) { - var lookup = FS.lookupPath(mountpoint, { follow_mount: false }); - - if (!FS.isMountpoint(lookup.node)) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - - // destroy the nodes for this mount, and all its child mounts - var node = lookup.node; - var mount = node.mounted; - var mounts = FS.getMounts(mount); - - Object.keys(FS.nameTable).forEach(function (hash) { - var current = FS.nameTable[hash]; - - while (current) { - var next = current.name_next; - - if (mounts.indexOf(current.mount) !== -1) { - FS.destroyNode(current); - } - - current = next; - } - }); - - // no longer a mountpoint - node.mounted = null; - - // remove this mount from the child mounts - var idx = node.mount.mounts.indexOf(mount); - assert(idx !== -1); - node.mount.mounts.splice(idx, 1); - },lookup:function (parent, name) { - return parent.node_ops.lookup(parent, name); - },mknod:function (path, mode, dev) { - var lookup = FS.lookupPath(path, { parent: true }); - var parent = lookup.node; - var name = PATH.basename(path); - if (!name || name === '.' || name === '..') { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - var err = FS.mayCreate(parent, name); - if (err) { - throw new FS.ErrnoError(err); - } - if (!parent.node_ops.mknod) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - return parent.node_ops.mknod(parent, name, mode, dev); - },create:function (path, mode) { - mode = mode !== undefined ? mode : 438 /* 0666 */; - mode &= 4095; - mode |= 32768; - return FS.mknod(path, mode, 0); - },mkdir:function (path, mode) { - mode = mode !== undefined ? mode : 511 /* 0777 */; - mode &= 511 | 512; - mode |= 16384; - return FS.mknod(path, mode, 0); - },mkdev:function (path, mode, dev) { - if (typeof(dev) === 'undefined') { - dev = mode; - mode = 438 /* 0666 */; - } - mode |= 8192; - return FS.mknod(path, mode, dev); - },symlink:function (oldpath, newpath) { - if (!PATH.resolve(oldpath)) { - throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - } - var lookup = FS.lookupPath(newpath, { parent: true }); - var parent = lookup.node; - if (!parent) { - throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - } - var newname = PATH.basename(newpath); - var err = FS.mayCreate(parent, newname); - if (err) { - throw new FS.ErrnoError(err); - } - if (!parent.node_ops.symlink) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - return parent.node_ops.symlink(parent, newname, oldpath); - },rename:function (old_path, new_path) { - var old_dirname = PATH.dirname(old_path); - var new_dirname = PATH.dirname(new_path); - var old_name = PATH.basename(old_path); - var new_name = PATH.basename(new_path); - // parents must exist - var lookup, old_dir, new_dir; - try { - lookup = FS.lookupPath(old_path, { parent: true }); - old_dir = lookup.node; - lookup = FS.lookupPath(new_path, { parent: true }); - new_dir = lookup.node; - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES.EBUSY); - } - if (!old_dir || !new_dir) throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - // need to be part of the same mount - if (old_dir.mount !== new_dir.mount) { - throw new FS.ErrnoError(ERRNO_CODES.EXDEV); - } - // source must exist - var old_node = FS.lookupNode(old_dir, old_name); - // old path should not be an ancestor of the new path - var relative = PATH.relative(old_path, new_dirname); - if (relative.charAt(0) !== '.') { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - // new path should not be an ancestor of the old path - relative = PATH.relative(new_path, old_dirname); - if (relative.charAt(0) !== '.') { - throw new FS.ErrnoError(ERRNO_CODES.ENOTEMPTY); - } - // see if the new path already exists - var new_node; - try { - new_node = FS.lookupNode(new_dir, new_name); - } catch (e) { - // not fatal - } - // early out if nothing needs to change - if (old_node === new_node) { - return; - } - // we'll need to delete the old entry - var isdir = FS.isDir(old_node.mode); - var err = FS.mayDelete(old_dir, old_name, isdir); - if (err) { - throw new FS.ErrnoError(err); - } - // need delete permissions if we'll be overwriting. - // need create permissions if new doesn't already exist. - err = new_node ? - FS.mayDelete(new_dir, new_name, isdir) : - FS.mayCreate(new_dir, new_name); - if (err) { - throw new FS.ErrnoError(err); - } - if (!old_dir.node_ops.rename) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - if (FS.isMountpoint(old_node) || (new_node && FS.isMountpoint(new_node))) { - throw new FS.ErrnoError(ERRNO_CODES.EBUSY); - } - // if we are going to change the parent, check write permissions - if (new_dir !== old_dir) { - err = FS.nodePermissions(old_dir, 'w'); - if (err) { - throw new FS.ErrnoError(err); - } - } - try { - if (FS.trackingDelegate['willMovePath']) { - FS.trackingDelegate['willMovePath'](old_path, new_path); - } - } catch(e) { - console.log("FS.trackingDelegate['willMovePath']('"+old_path+"', '"+new_path+"') threw an exception: " + e.message); - } - // remove the node from the lookup hash - FS.hashRemoveNode(old_node); - // do the underlying fs rename - try { - old_dir.node_ops.rename(old_node, new_dir, new_name); - } catch (e) { - throw e; - } finally { - // add the node back to the hash (in case node_ops.rename - // changed its name) - FS.hashAddNode(old_node); - } - try { - if (FS.trackingDelegate['onMovePath']) FS.trackingDelegate['onMovePath'](old_path, new_path); - } catch(e) { - console.log("FS.trackingDelegate['onMovePath']('"+old_path+"', '"+new_path+"') threw an exception: " + e.message); - } - },rmdir:function (path) { - var lookup = FS.lookupPath(path, { parent: true }); - var parent = lookup.node; - var name = PATH.basename(path); - var node = FS.lookupNode(parent, name); - var err = FS.mayDelete(parent, name, true); - if (err) { - throw new FS.ErrnoError(err); - } - if (!parent.node_ops.rmdir) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - if (FS.isMountpoint(node)) { - throw new FS.ErrnoError(ERRNO_CODES.EBUSY); - } - try { - if (FS.trackingDelegate['willDeletePath']) { - FS.trackingDelegate['willDeletePath'](path); - } - } catch(e) { - console.log("FS.trackingDelegate['willDeletePath']('"+path+"') threw an exception: " + e.message); - } - parent.node_ops.rmdir(parent, name); - FS.destroyNode(node); - try { - if (FS.trackingDelegate['onDeletePath']) FS.trackingDelegate['onDeletePath'](path); - } catch(e) { - console.log("FS.trackingDelegate['onDeletePath']('"+path+"') threw an exception: " + e.message); - } - },readdir:function (path) { - var lookup = FS.lookupPath(path, { follow: true }); - var node = lookup.node; - if (!node.node_ops.readdir) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR); - } - return node.node_ops.readdir(node); - },unlink:function (path) { - var lookup = FS.lookupPath(path, { parent: true }); - var parent = lookup.node; - var name = PATH.basename(path); - var node = FS.lookupNode(parent, name); - var err = FS.mayDelete(parent, name, false); - if (err) { - // POSIX says unlink should set EPERM, not EISDIR - if (err === ERRNO_CODES.EISDIR) err = ERRNO_CODES.EPERM; - throw new FS.ErrnoError(err); - } - if (!parent.node_ops.unlink) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - if (FS.isMountpoint(node)) { - throw new FS.ErrnoError(ERRNO_CODES.EBUSY); - } - try { - if (FS.trackingDelegate['willDeletePath']) { - FS.trackingDelegate['willDeletePath'](path); - } - } catch(e) { - console.log("FS.trackingDelegate['willDeletePath']('"+path+"') threw an exception: " + e.message); - } - parent.node_ops.unlink(parent, name); - FS.destroyNode(node); - try { - if (FS.trackingDelegate['onDeletePath']) FS.trackingDelegate['onDeletePath'](path); - } catch(e) { - console.log("FS.trackingDelegate['onDeletePath']('"+path+"') threw an exception: " + e.message); - } - },readlink:function (path) { - var lookup = FS.lookupPath(path); - var link = lookup.node; - if (!link) { - throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - } - if (!link.node_ops.readlink) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - return PATH.resolve(FS.getPath(link.parent), link.node_ops.readlink(link)); - },stat:function (path, dontFollow) { - var lookup = FS.lookupPath(path, { follow: !dontFollow }); - var node = lookup.node; - if (!node) { - throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - } - if (!node.node_ops.getattr) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - return node.node_ops.getattr(node); - },lstat:function (path) { - return FS.stat(path, true); - },chmod:function (path, mode, dontFollow) { - var node; - if (typeof path === 'string') { - var lookup = FS.lookupPath(path, { follow: !dontFollow }); - node = lookup.node; - } else { - node = path; - } - if (!node.node_ops.setattr) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - node.node_ops.setattr(node, { - mode: (mode & 4095) | (node.mode & ~4095), - timestamp: Date.now() - }); - },lchmod:function (path, mode) { - FS.chmod(path, mode, true); - },fchmod:function (fd, mode) { - var stream = FS.getStream(fd); - if (!stream) { - throw new FS.ErrnoError(ERRNO_CODES.EBADF); - } - FS.chmod(stream.node, mode); - },chown:function (path, uid, gid, dontFollow) { - var node; - if (typeof path === 'string') { - var lookup = FS.lookupPath(path, { follow: !dontFollow }); - node = lookup.node; - } else { - node = path; - } - if (!node.node_ops.setattr) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - node.node_ops.setattr(node, { - timestamp: Date.now() - // we ignore the uid / gid for now - }); - },lchown:function (path, uid, gid) { - FS.chown(path, uid, gid, true); - },fchown:function (fd, uid, gid) { - var stream = FS.getStream(fd); - if (!stream) { - throw new FS.ErrnoError(ERRNO_CODES.EBADF); - } - FS.chown(stream.node, uid, gid); - },truncate:function (path, len) { - if (len < 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - var node; - if (typeof path === 'string') { - var lookup = FS.lookupPath(path, { follow: true }); - node = lookup.node; - } else { - node = path; - } - if (!node.node_ops.setattr) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - if (FS.isDir(node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.EISDIR); - } - if (!FS.isFile(node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - var err = FS.nodePermissions(node, 'w'); - if (err) { - throw new FS.ErrnoError(err); - } - node.node_ops.setattr(node, { - size: len, - timestamp: Date.now() - }); - },ftruncate:function (fd, len) { - var stream = FS.getStream(fd); - if (!stream) { - throw new FS.ErrnoError(ERRNO_CODES.EBADF); - } - if ((stream.flags & 2097155) === 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - FS.truncate(stream.node, len); - },utime:function (path, atime, mtime) { - var lookup = FS.lookupPath(path, { follow: true }); - var node = lookup.node; - node.node_ops.setattr(node, { - timestamp: Math.max(atime, mtime) - }); - },open:function (path, flags, mode, fd_start, fd_end) { - if (path === "") { - throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - } - flags = typeof flags === 'string' ? FS.modeStringToFlags(flags) : flags; - mode = typeof mode === 'undefined' ? 438 /* 0666 */ : mode; - if ((flags & 64)) { - mode = (mode & 4095) | 32768; - } else { - mode = 0; - } - var node; - if (typeof path === 'object') { - node = path; - } else { - path = PATH.normalize(path); - try { - var lookup = FS.lookupPath(path, { - follow: !(flags & 131072) - }); - node = lookup.node; - } catch (e) { - // ignore - } - } - // perhaps we need to create the node - var created = false; - if ((flags & 64)) { - if (node) { - // if O_CREAT and O_EXCL are set, error out if the node already exists - if ((flags & 128)) { - throw new FS.ErrnoError(ERRNO_CODES.EEXIST); - } - } else { - // node doesn't exist, try to create it - node = FS.mknod(path, mode, 0); - created = true; - } - } - if (!node) { - throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - } - // can't truncate a device - if (FS.isChrdev(node.mode)) { - flags &= ~512; - } - // if asked only for a directory, then this must be one - if ((flags & 65536) && !FS.isDir(node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR); - } - // check permissions, if this is not a file we just created now (it is ok to - // create and write to a file with read-only permissions; it is read-only - // for later use) - if (!created) { - var err = FS.mayOpen(node, flags); - if (err) { - throw new FS.ErrnoError(err); - } - } - // do truncation if necessary - if ((flags & 512)) { - FS.truncate(node, 0); - } - // we've already handled these, don't pass down to the underlying vfs - flags &= ~(128 | 512); - - // register the stream with the filesystem - var stream = FS.createStream({ - node: node, - path: FS.getPath(node), // we want the absolute path to the node - flags: flags, - seekable: true, - position: 0, - stream_ops: node.stream_ops, - // used by the file family libc calls (fopen, fwrite, ferror, etc.) - ungotten: [], - error: false - }, fd_start, fd_end); - // call the new stream's open function - if (stream.stream_ops.open) { - stream.stream_ops.open(stream); - } - if (Module['logReadFiles'] && !(flags & 1)) { - if (!FS.readFiles) FS.readFiles = {}; - if (!(path in FS.readFiles)) { - FS.readFiles[path] = 1; - Module['printErr']('read file: ' + path); - } - } - try { - if (FS.trackingDelegate['onOpenFile']) { - var trackingFlags = 0; - if ((flags & 2097155) !== 1) { - trackingFlags |= FS.tracking.openFlags.READ; - } - if ((flags & 2097155) !== 0) { - trackingFlags |= FS.tracking.openFlags.WRITE; - } - FS.trackingDelegate['onOpenFile'](path, trackingFlags); - } - } catch(e) { - console.log("FS.trackingDelegate['onOpenFile']('"+path+"', flags) threw an exception: " + e.message); - } - return stream; - },close:function (stream) { - if (stream.getdents) stream.getdents = null; // free readdir state - try { - if (stream.stream_ops.close) { - stream.stream_ops.close(stream); - } - } catch (e) { - throw e; - } finally { - FS.closeStream(stream.fd); - } - },llseek:function (stream, offset, whence) { - if (!stream.seekable || !stream.stream_ops.llseek) { - throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); - } - stream.position = stream.stream_ops.llseek(stream, offset, whence); - stream.ungotten = []; - return stream.position; - },read:function (stream, buffer, offset, length, position) { - if (length < 0 || position < 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - if ((stream.flags & 2097155) === 1) { - throw new FS.ErrnoError(ERRNO_CODES.EBADF); - } - if (FS.isDir(stream.node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.EISDIR); - } - if (!stream.stream_ops.read) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - var seeking = true; - if (typeof position === 'undefined') { - position = stream.position; - seeking = false; - } else if (!stream.seekable) { - throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); - } - var bytesRead = stream.stream_ops.read(stream, buffer, offset, length, position); - if (!seeking) stream.position += bytesRead; - return bytesRead; - },write:function (stream, buffer, offset, length, position, canOwn) { - if (length < 0 || position < 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - if ((stream.flags & 2097155) === 0) { - throw new FS.ErrnoError(ERRNO_CODES.EBADF); - } - if (FS.isDir(stream.node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.EISDIR); - } - if (!stream.stream_ops.write) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - if (stream.flags & 1024) { - // seek to the end before writing in append mode - FS.llseek(stream, 0, 2); - } - var seeking = true; - if (typeof position === 'undefined') { - position = stream.position; - seeking = false; - } else if (!stream.seekable) { - throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); - } - var bytesWritten = stream.stream_ops.write(stream, buffer, offset, length, position, canOwn); - if (!seeking) stream.position += bytesWritten; - try { - if (stream.path && FS.trackingDelegate['onWriteToFile']) FS.trackingDelegate['onWriteToFile'](stream.path); - } catch(e) { - console.log("FS.trackingDelegate['onWriteToFile']('"+path+"') threw an exception: " + e.message); - } - return bytesWritten; - },allocate:function (stream, offset, length) { - if (offset < 0 || length <= 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - if ((stream.flags & 2097155) === 0) { - throw new FS.ErrnoError(ERRNO_CODES.EBADF); - } - if (!FS.isFile(stream.node.mode) && !FS.isDir(node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.ENODEV); - } - if (!stream.stream_ops.allocate) { - throw new FS.ErrnoError(ERRNO_CODES.EOPNOTSUPP); - } - stream.stream_ops.allocate(stream, offset, length); - },mmap:function (stream, buffer, offset, length, position, prot, flags) { - // TODO if PROT is PROT_WRITE, make sure we have write access - if ((stream.flags & 2097155) === 1) { - throw new FS.ErrnoError(ERRNO_CODES.EACCES); - } - if (!stream.stream_ops.mmap) { - throw new FS.ErrnoError(ERRNO_CODES.ENODEV); - } - return stream.stream_ops.mmap(stream, buffer, offset, length, position, prot, flags); - },msync:function (stream, buffer, offset, length, mmapFlags) { - if (!stream || !stream.stream_ops.msync) { - return 0; - } - return stream.stream_ops.msync(stream, buffer, offset, length, mmapFlags); - },munmap:function (stream) { - return 0; - },ioctl:function (stream, cmd, arg) { - if (!stream.stream_ops.ioctl) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTTY); - } - return stream.stream_ops.ioctl(stream, cmd, arg); - },readFile:function (path, opts) { - opts = opts || {}; - opts.flags = opts.flags || 'r'; - opts.encoding = opts.encoding || 'binary'; - if (opts.encoding !== 'utf8' && opts.encoding !== 'binary') { - throw new Error('Invalid encoding type "' + opts.encoding + '"'); - } - var ret; - var stream = FS.open(path, opts.flags); - var stat = FS.stat(path); - var length = stat.size; - var buf = new Uint8Array(length); - FS.read(stream, buf, 0, length, 0); - if (opts.encoding === 'utf8') { - ret = UTF8ArrayToString(buf, 0); - } else if (opts.encoding === 'binary') { - ret = buf; - } - FS.close(stream); - return ret; - },writeFile:function (path, data, opts) { - opts = opts || {}; - opts.flags = opts.flags || 'w'; - opts.encoding = opts.encoding || 'utf8'; - if (opts.encoding !== 'utf8' && opts.encoding !== 'binary') { - throw new Error('Invalid encoding type "' + opts.encoding + '"'); - } - var stream = FS.open(path, opts.flags, opts.mode); - if (opts.encoding === 'utf8') { - var buf = new Uint8Array(lengthBytesUTF8(data)+1); - var actualNumBytes = stringToUTF8Array(data, buf, 0, buf.length); - FS.write(stream, buf, 0, actualNumBytes, 0, opts.canOwn); - } else if (opts.encoding === 'binary') { - FS.write(stream, data, 0, data.length, 0, opts.canOwn); - } - FS.close(stream); - },cwd:function () { - return FS.currentPath; - },chdir:function (path) { - var lookup = FS.lookupPath(path, { follow: true }); - if (!FS.isDir(lookup.node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR); - } - var err = FS.nodePermissions(lookup.node, 'x'); - if (err) { - throw new FS.ErrnoError(err); - } - FS.currentPath = lookup.path; - },createDefaultDirectories:function () { - FS.mkdir('/tmp'); - FS.mkdir('/home'); - FS.mkdir('/home/web_user'); - },createDefaultDevices:function () { - // create /dev - FS.mkdir('/dev'); - // setup /dev/null - FS.registerDevice(FS.makedev(1, 3), { - read: function() { return 0; }, - write: function(stream, buffer, offset, length, pos) { return length; } - }); - FS.mkdev('/dev/null', FS.makedev(1, 3)); - // setup /dev/tty and /dev/tty1 - // stderr needs to print output using Module['printErr'] - // so we register a second tty just for it. - TTY.register(FS.makedev(5, 0), TTY.default_tty_ops); - TTY.register(FS.makedev(6, 0), TTY.default_tty1_ops); - FS.mkdev('/dev/tty', FS.makedev(5, 0)); - FS.mkdev('/dev/tty1', FS.makedev(6, 0)); - // setup /dev/[u]random - var random_device; - if (typeof crypto !== 'undefined') { - // for modern web browsers - var randomBuffer = new Uint8Array(1); - random_device = function() { crypto.getRandomValues(randomBuffer); return randomBuffer[0]; }; - } else if (ENVIRONMENT_IS_NODE) { - // for nodejs - random_device = function() { return require('crypto').randomBytes(1)[0]; }; - } else { - // default for ES5 platforms - random_device = function() { return (Math.random()*256)|0; }; - } - FS.createDevice('/dev', 'random', random_device); - FS.createDevice('/dev', 'urandom', random_device); - // we're not going to emulate the actual shm device, - // just create the tmp dirs that reside in it commonly - FS.mkdir('/dev/shm'); - FS.mkdir('/dev/shm/tmp'); - },createSpecialDirectories:function () { - // create /proc/self/fd which allows /proc/self/fd/6 => readlink gives the name of the stream for fd 6 (see test_unistd_ttyname) - FS.mkdir('/proc'); - FS.mkdir('/proc/self'); - FS.mkdir('/proc/self/fd'); - FS.mount({ - mount: function() { - var node = FS.createNode('/proc/self', 'fd', 16384 | 0777, 73); - node.node_ops = { - lookup: function(parent, name) { - var fd = +name; - var stream = FS.getStream(fd); - if (!stream) throw new FS.ErrnoError(ERRNO_CODES.EBADF); - var ret = { - parent: null, - mount: { mountpoint: 'fake' }, - node_ops: { readlink: function() { return stream.path } } - }; - ret.parent = ret; // make it look like a simple root node - return ret; - } - }; - return node; - } - }, {}, '/proc/self/fd'); - },createStandardStreams:function () { - // TODO deprecate the old functionality of a single - // input / output callback and that utilizes FS.createDevice - // and instead require a unique set of stream ops - - // by default, we symlink the standard streams to the - // default tty devices. however, if the standard streams - // have been overwritten we create a unique device for - // them instead. - if (Module['stdin']) { - FS.createDevice('/dev', 'stdin', Module['stdin']); - } else { - FS.symlink('/dev/tty', '/dev/stdin'); - } - if (Module['stdout']) { - FS.createDevice('/dev', 'stdout', null, Module['stdout']); - } else { - FS.symlink('/dev/tty', '/dev/stdout'); - } - if (Module['stderr']) { - FS.createDevice('/dev', 'stderr', null, Module['stderr']); - } else { - FS.symlink('/dev/tty1', '/dev/stderr'); - } - - // open default streams for the stdin, stdout and stderr devices - var stdin = FS.open('/dev/stdin', 'r'); - assert(stdin.fd === 0, 'invalid handle for stdin (' + stdin.fd + ')'); - - var stdout = FS.open('/dev/stdout', 'w'); - assert(stdout.fd === 1, 'invalid handle for stdout (' + stdout.fd + ')'); - - var stderr = FS.open('/dev/stderr', 'w'); - assert(stderr.fd === 2, 'invalid handle for stderr (' + stderr.fd + ')'); - },ensureErrnoError:function () { - if (FS.ErrnoError) return; - FS.ErrnoError = function ErrnoError(errno, node) { - //Module.printErr(stackTrace()); // useful for debugging - this.node = node; - this.setErrno = function(errno) { - this.errno = errno; - for (var key in ERRNO_CODES) { - if (ERRNO_CODES[key] === errno) { - this.code = key; - break; - } - } - }; - this.setErrno(errno); - this.message = ERRNO_MESSAGES[errno]; - }; - FS.ErrnoError.prototype = new Error(); - FS.ErrnoError.prototype.constructor = FS.ErrnoError; - // Some errors may happen quite a bit, to avoid overhead we reuse them (and suffer a lack of stack info) - [ERRNO_CODES.ENOENT].forEach(function(code) { - FS.genericErrors[code] = new FS.ErrnoError(code); - FS.genericErrors[code].stack = ''; - }); - },staticInit:function () { - FS.ensureErrnoError(); - - FS.nameTable = new Array(4096); - - FS.mount(MEMFS, {}, '/'); - - FS.createDefaultDirectories(); - FS.createDefaultDevices(); - FS.createSpecialDirectories(); - - FS.filesystems = { - 'MEMFS': MEMFS, - 'IDBFS': IDBFS, - 'NODEFS': NODEFS, - 'WORKERFS': WORKERFS, - }; - },init:function (input, output, error) { - assert(!FS.init.initialized, 'FS.init was previously called. If you want to initialize later with custom parameters, remove any earlier calls (note that one is automatically added to the generated code)'); - FS.init.initialized = true; - - FS.ensureErrnoError(); - - // Allow Module.stdin etc. to provide defaults, if none explicitly passed to us here - Module['stdin'] = input || Module['stdin']; - Module['stdout'] = output || Module['stdout']; - Module['stderr'] = error || Module['stderr']; - - FS.createStandardStreams(); - },quit:function () { - FS.init.initialized = false; - // force-flush all streams, so we get musl std streams printed out - var fflush = Module['_fflush']; - if (fflush) fflush(0); - // close all of our streams - for (var i = 0; i < FS.streams.length; i++) { - var stream = FS.streams[i]; - if (!stream) { - continue; - } - FS.close(stream); - } - },getMode:function (canRead, canWrite) { - var mode = 0; - if (canRead) mode |= 292 | 73; - if (canWrite) mode |= 146; - return mode; - },joinPath:function (parts, forceRelative) { - var path = PATH.join.apply(null, parts); - if (forceRelative && path[0] == '/') path = path.substr(1); - return path; - },absolutePath:function (relative, base) { - return PATH.resolve(base, relative); - },standardizePath:function (path) { - return PATH.normalize(path); - },findObject:function (path, dontResolveLastLink) { - var ret = FS.analyzePath(path, dontResolveLastLink); - if (ret.exists) { - return ret.object; - } else { - ___setErrNo(ret.error); - return null; - } - },analyzePath:function (path, dontResolveLastLink) { - // operate from within the context of the symlink's target - try { - var lookup = FS.lookupPath(path, { follow: !dontResolveLastLink }); - path = lookup.path; - } catch (e) { - } - var ret = { - isRoot: false, exists: false, error: 0, name: null, path: null, object: null, - parentExists: false, parentPath: null, parentObject: null - }; - try { - var lookup = FS.lookupPath(path, { parent: true }); - ret.parentExists = true; - ret.parentPath = lookup.path; - ret.parentObject = lookup.node; - ret.name = PATH.basename(path); - lookup = FS.lookupPath(path, { follow: !dontResolveLastLink }); - ret.exists = true; - ret.path = lookup.path; - ret.object = lookup.node; - ret.name = lookup.node.name; - ret.isRoot = lookup.path === '/'; - } catch (e) { - ret.error = e.errno; - }; - return ret; - },createFolder:function (parent, name, canRead, canWrite) { - var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); - var mode = FS.getMode(canRead, canWrite); - return FS.mkdir(path, mode); - },createPath:function (parent, path, canRead, canWrite) { - parent = typeof parent === 'string' ? parent : FS.getPath(parent); - var parts = path.split('/').reverse(); - while (parts.length) { - var part = parts.pop(); - if (!part) continue; - var current = PATH.join2(parent, part); - try { - FS.mkdir(current); - } catch (e) { - // ignore EEXIST - } - parent = current; - } - return current; - },createFile:function (parent, name, properties, canRead, canWrite) { - var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); - var mode = FS.getMode(canRead, canWrite); - return FS.create(path, mode); - },createDataFile:function (parent, name, data, canRead, canWrite, canOwn) { - var path = name ? PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name) : parent; - var mode = FS.getMode(canRead, canWrite); - var node = FS.create(path, mode); - if (data) { - if (typeof data === 'string') { - var arr = new Array(data.length); - for (var i = 0, len = data.length; i < len; ++i) arr[i] = data.charCodeAt(i); - data = arr; - } - // make sure we can write to the file - FS.chmod(node, mode | 146); - var stream = FS.open(node, 'w'); - FS.write(stream, data, 0, data.length, 0, canOwn); - FS.close(stream); - FS.chmod(node, mode); - } - return node; - },createDevice:function (parent, name, input, output) { - var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); - var mode = FS.getMode(!!input, !!output); - if (!FS.createDevice.major) FS.createDevice.major = 64; - var dev = FS.makedev(FS.createDevice.major++, 0); - // Create a fake device that a set of stream ops to emulate - // the old behavior. - FS.registerDevice(dev, { - open: function(stream) { - stream.seekable = false; - }, - close: function(stream) { - // flush any pending line data - if (output && output.buffer && output.buffer.length) { - output(10); - } - }, - read: function(stream, buffer, offset, length, pos /* ignored */) { - var bytesRead = 0; - for (var i = 0; i < length; i++) { - var result; - try { - result = input(); - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES.EIO); - } - if (result === undefined && bytesRead === 0) { - throw new FS.ErrnoError(ERRNO_CODES.EAGAIN); - } - if (result === null || result === undefined) break; - bytesRead++; - buffer[offset+i] = result; - } - if (bytesRead) { - stream.node.timestamp = Date.now(); - } - return bytesRead; - }, - write: function(stream, buffer, offset, length, pos) { - for (var i = 0; i < length; i++) { - try { - output(buffer[offset+i]); - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES.EIO); - } - } - if (length) { - stream.node.timestamp = Date.now(); - } - return i; - } - }); - return FS.mkdev(path, mode, dev); - },createLink:function (parent, name, target, canRead, canWrite) { - var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); - return FS.symlink(target, path); - },forceLoadFile:function (obj) { - if (obj.isDevice || obj.isFolder || obj.link || obj.contents) return true; - var success = true; - if (typeof XMLHttpRequest !== 'undefined') { - throw new Error("Lazy loading should have been performed (contents set) in createLazyFile, but it was not. Lazy loading only works in web workers. Use --embed-file or --preload-file in emcc on the main thread."); - } else if (Module['read']) { - // Command-line. - try { - // WARNING: Can't read binary files in V8's d8 or tracemonkey's js, as - // read() will try to parse UTF8. - obj.contents = intArrayFromString(Module['read'](obj.url), true); - obj.usedBytes = obj.contents.length; - } catch (e) { - success = false; - } - } else { - throw new Error('Cannot load without read() or XMLHttpRequest.'); - } - if (!success) ___setErrNo(ERRNO_CODES.EIO); - return success; - },createLazyFile:function (parent, name, url, canRead, canWrite) { - // Lazy chunked Uint8Array (implements get and length from Uint8Array). Actual getting is abstracted away for eventual reuse. - function LazyUint8Array() { - this.lengthKnown = false; - this.chunks = []; // Loaded chunks. Index is the chunk number - } - LazyUint8Array.prototype.get = function LazyUint8Array_get(idx) { - if (idx > this.length-1 || idx < 0) { - return undefined; - } - var chunkOffset = idx % this.chunkSize; - var chunkNum = (idx / this.chunkSize)|0; - return this.getter(chunkNum)[chunkOffset]; - } - LazyUint8Array.prototype.setDataGetter = function LazyUint8Array_setDataGetter(getter) { - this.getter = getter; - } - LazyUint8Array.prototype.cacheLength = function LazyUint8Array_cacheLength() { - // Find length - var xhr = new XMLHttpRequest(); - xhr.open('HEAD', url, false); - xhr.send(null); - if (!(xhr.status >= 200 && xhr.status < 300 || xhr.status === 304)) throw new Error("Couldn't load " + url + ". Status: " + xhr.status); - var datalength = Number(xhr.getResponseHeader("Content-length")); - var header; - var hasByteServing = (header = xhr.getResponseHeader("Accept-Ranges")) && header === "bytes"; - var chunkSize = 1024*1024; // Chunk size in bytes - - if (!hasByteServing) chunkSize = datalength; - - // Function to get a range from the remote URL. - var doXHR = (function(from, to) { - if (from > to) throw new Error("invalid range (" + from + ", " + to + ") or no bytes requested!"); - if (to > datalength-1) throw new Error("only " + datalength + " bytes available! programmer error!"); - - // TODO: Use mozResponseArrayBuffer, responseStream, etc. if available. - var xhr = new XMLHttpRequest(); - xhr.open('GET', url, false); - if (datalength !== chunkSize) xhr.setRequestHeader("Range", "bytes=" + from + "-" + to); - - // Some hints to the browser that we want binary data. - if (typeof Uint8Array != 'undefined') xhr.responseType = 'arraybuffer'; - if (xhr.overrideMimeType) { - xhr.overrideMimeType('text/plain; charset=x-user-defined'); - } - - xhr.send(null); - if (!(xhr.status >= 200 && xhr.status < 300 || xhr.status === 304)) throw new Error("Couldn't load " + url + ". Status: " + xhr.status); - if (xhr.response !== undefined) { - return new Uint8Array(xhr.response || []); - } else { - return intArrayFromString(xhr.responseText || '', true); - } - }); - var lazyArray = this; - lazyArray.setDataGetter(function(chunkNum) { - var start = chunkNum * chunkSize; - var end = (chunkNum+1) * chunkSize - 1; // including this byte - end = Math.min(end, datalength-1); // if datalength-1 is selected, this is the last block - if (typeof(lazyArray.chunks[chunkNum]) === "undefined") { - lazyArray.chunks[chunkNum] = doXHR(start, end); - } - if (typeof(lazyArray.chunks[chunkNum]) === "undefined") throw new Error("doXHR failed!"); - return lazyArray.chunks[chunkNum]; - }); - - this._length = datalength; - this._chunkSize = chunkSize; - this.lengthKnown = true; - } - if (typeof XMLHttpRequest !== 'undefined') { - if (!ENVIRONMENT_IS_WORKER) throw 'Cannot do synchronous binary XHRs outside webworkers in modern browsers. Use --embed-file or --preload-file in emcc'; - var lazyArray = new LazyUint8Array(); - Object.defineProperty(lazyArray, "length", { - get: function() { - if(!this.lengthKnown) { - this.cacheLength(); - } - return this._length; - } - }); - Object.defineProperty(lazyArray, "chunkSize", { - get: function() { - if(!this.lengthKnown) { - this.cacheLength(); - } - return this._chunkSize; - } - }); - - var properties = { isDevice: false, contents: lazyArray }; - } else { - var properties = { isDevice: false, url: url }; - } - - var node = FS.createFile(parent, name, properties, canRead, canWrite); - // This is a total hack, but I want to get this lazy file code out of the - // core of MEMFS. If we want to keep this lazy file concept I feel it should - // be its own thin LAZYFS proxying calls to MEMFS. - if (properties.contents) { - node.contents = properties.contents; - } else if (properties.url) { - node.contents = null; - node.url = properties.url; - } - // Add a function that defers querying the file size until it is asked the first time. - Object.defineProperty(node, "usedBytes", { - get: function() { return this.contents.length; } - }); - // override each stream op with one that tries to force load the lazy file first - var stream_ops = {}; - var keys = Object.keys(node.stream_ops); - keys.forEach(function(key) { - var fn = node.stream_ops[key]; - stream_ops[key] = function forceLoadLazyFile() { - if (!FS.forceLoadFile(node)) { - throw new FS.ErrnoError(ERRNO_CODES.EIO); - } - return fn.apply(null, arguments); - }; - }); - // use a custom read function - stream_ops.read = function stream_ops_read(stream, buffer, offset, length, position) { - if (!FS.forceLoadFile(node)) { - throw new FS.ErrnoError(ERRNO_CODES.EIO); - } - var contents = stream.node.contents; - if (position >= contents.length) - return 0; - var size = Math.min(contents.length - position, length); - assert(size >= 0); - if (contents.slice) { // normal array - for (var i = 0; i < size; i++) { - buffer[offset + i] = contents[position + i]; - } - } else { - for (var i = 0; i < size; i++) { // LazyUint8Array from sync binary XHR - buffer[offset + i] = contents.get(position + i); - } - } - return size; - }; - node.stream_ops = stream_ops; - return node; - },createPreloadedFile:function (parent, name, url, canRead, canWrite, onload, onerror, dontCreateFile, canOwn, preFinish) { - Browser.init(); - // TODO we should allow people to just pass in a complete filename instead - // of parent and name being that we just join them anyways - var fullname = name ? PATH.resolve(PATH.join2(parent, name)) : parent; - var dep = getUniqueRunDependency('cp ' + fullname); // might have several active requests for the same fullname - function processData(byteArray) { - function finish(byteArray) { - if (preFinish) preFinish(); - if (!dontCreateFile) { - FS.createDataFile(parent, name, byteArray, canRead, canWrite, canOwn); - } - if (onload) onload(); - removeRunDependency(dep); - } - var handled = false; - Module['preloadPlugins'].forEach(function(plugin) { - if (handled) return; - if (plugin['canHandle'](fullname)) { - plugin['handle'](byteArray, fullname, finish, function() { - if (onerror) onerror(); - removeRunDependency(dep); - }); - handled = true; - } - }); - if (!handled) finish(byteArray); - } - addRunDependency(dep); - if (typeof url == 'string') { - Browser.asyncLoad(url, function(byteArray) { - processData(byteArray); - }, onerror); - } else { - processData(url); - } - },indexedDB:function () { - return window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB; - },DB_NAME:function () { - return 'EM_FS_' + window.location.pathname; - },DB_VERSION:20,DB_STORE_NAME:"FILE_DATA",saveFilesToDB:function (paths, onload, onerror) { - onload = onload || function(){}; - onerror = onerror || function(){}; - var indexedDB = FS.indexedDB(); - try { - var openRequest = indexedDB.open(FS.DB_NAME(), FS.DB_VERSION); - } catch (e) { - return onerror(e); - } - openRequest.onupgradeneeded = function openRequest_onupgradeneeded() { - console.log('creating db'); - var db = openRequest.result; - db.createObjectStore(FS.DB_STORE_NAME); - }; - openRequest.onsuccess = function openRequest_onsuccess() { - var db = openRequest.result; - var transaction = db.transaction([FS.DB_STORE_NAME], 'readwrite'); - var files = transaction.objectStore(FS.DB_STORE_NAME); - var ok = 0, fail = 0, total = paths.length; - function finish() { - if (fail == 0) onload(); else onerror(); - } - paths.forEach(function(path) { - var putRequest = files.put(FS.analyzePath(path).object.contents, path); - putRequest.onsuccess = function putRequest_onsuccess() { ok++; if (ok + fail == total) finish() }; - putRequest.onerror = function putRequest_onerror() { fail++; if (ok + fail == total) finish() }; - }); - transaction.onerror = onerror; - }; - openRequest.onerror = onerror; - },loadFilesFromDB:function (paths, onload, onerror) { - onload = onload || function(){}; - onerror = onerror || function(){}; - var indexedDB = FS.indexedDB(); - try { - var openRequest = indexedDB.open(FS.DB_NAME(), FS.DB_VERSION); - } catch (e) { - return onerror(e); - } - openRequest.onupgradeneeded = onerror; // no database to load from - openRequest.onsuccess = function openRequest_onsuccess() { - var db = openRequest.result; - try { - var transaction = db.transaction([FS.DB_STORE_NAME], 'readonly'); - } catch(e) { - onerror(e); - return; - } - var files = transaction.objectStore(FS.DB_STORE_NAME); - var ok = 0, fail = 0, total = paths.length; - function finish() { - if (fail == 0) onload(); else onerror(); - } - paths.forEach(function(path) { - var getRequest = files.get(path); - getRequest.onsuccess = function getRequest_onsuccess() { - if (FS.analyzePath(path).exists) { - FS.unlink(path); - } - FS.createDataFile(PATH.dirname(path), PATH.basename(path), getRequest.result, true, true, true); - ok++; - if (ok + fail == total) finish(); - }; - getRequest.onerror = function getRequest_onerror() { fail++; if (ok + fail == total) finish() }; - }); - transaction.onerror = onerror; - }; - openRequest.onerror = onerror; - }};var SYSCALLS={DEFAULT_POLLMASK:5,mappings:{},umask:511,calculateAt:function (dirfd, path) { - if (path[0] !== '/') { - // relative path - var dir; - if (dirfd === -100) { - dir = FS.cwd(); - } else { - var dirstream = FS.getStream(dirfd); - if (!dirstream) throw new FS.ErrnoError(ERRNO_CODES.EBADF); - dir = dirstream.path; - } - path = PATH.join2(dir, path); - } - return path; - },doStat:function (func, path, buf) { - try { - var stat = func(path); - } catch (e) { - if (e && e.node && PATH.normalize(path) !== PATH.normalize(FS.getPath(e.node))) { - // an error occurred while trying to look up the path; we should just report ENOTDIR - return -ERRNO_CODES.ENOTDIR; - } - throw e; - } - HEAP32[((buf)>>2)]=stat.dev; - HEAP32[(((buf)+(4))>>2)]=0; - HEAP32[(((buf)+(8))>>2)]=stat.ino; - HEAP32[(((buf)+(12))>>2)]=stat.mode; - HEAP32[(((buf)+(16))>>2)]=stat.nlink; - HEAP32[(((buf)+(20))>>2)]=stat.uid; - HEAP32[(((buf)+(24))>>2)]=stat.gid; - HEAP32[(((buf)+(28))>>2)]=stat.rdev; - HEAP32[(((buf)+(32))>>2)]=0; - HEAP32[(((buf)+(36))>>2)]=stat.size; - HEAP32[(((buf)+(40))>>2)]=4096; - HEAP32[(((buf)+(44))>>2)]=stat.blocks; - HEAP32[(((buf)+(48))>>2)]=(stat.atime.getTime() / 1000)|0; - HEAP32[(((buf)+(52))>>2)]=0; - HEAP32[(((buf)+(56))>>2)]=(stat.mtime.getTime() / 1000)|0; - HEAP32[(((buf)+(60))>>2)]=0; - HEAP32[(((buf)+(64))>>2)]=(stat.ctime.getTime() / 1000)|0; - HEAP32[(((buf)+(68))>>2)]=0; - HEAP32[(((buf)+(72))>>2)]=stat.ino; - return 0; - },doMsync:function (addr, stream, len, flags) { - var buffer = new Uint8Array(HEAPU8.subarray(addr, addr + len)); - FS.msync(stream, buffer, 0, len, flags); - },doMkdir:function (path, mode) { - // remove a trailing slash, if one - /a/b/ has basename of '', but - // we want to create b in the context of this function - path = PATH.normalize(path); - if (path[path.length-1] === '/') path = path.substr(0, path.length-1); - FS.mkdir(path, mode, 0); - return 0; - },doMknod:function (path, mode, dev) { - // we don't want this in the JS API as it uses mknod to create all nodes. - switch (mode & 61440) { - case 32768: - case 8192: - case 24576: - case 4096: - case 49152: - break; - default: return -ERRNO_CODES.EINVAL; - } - FS.mknod(path, mode, dev); - return 0; - },doReadlink:function (path, buf, bufsize) { - if (bufsize <= 0) return -ERRNO_CODES.EINVAL; - var ret = FS.readlink(path); - ret = ret.slice(0, Math.max(0, bufsize)); - writeStringToMemory(ret, buf, true); - return ret.length; - },doAccess:function (path, amode) { - if (amode & ~7) { - // need a valid mode - return -ERRNO_CODES.EINVAL; - } - var node; - var lookup = FS.lookupPath(path, { follow: true }); - node = lookup.node; - var perms = ''; - if (amode & 4) perms += 'r'; - if (amode & 2) perms += 'w'; - if (amode & 1) perms += 'x'; - if (perms /* otherwise, they've just passed F_OK */ && FS.nodePermissions(node, perms)) { - return -ERRNO_CODES.EACCES; - } - return 0; - },doDup:function (path, flags, suggestFD) { - var suggest = FS.getStream(suggestFD); - if (suggest) FS.close(suggest); - return FS.open(path, flags, 0, suggestFD, suggestFD).fd; - },doReadv:function (stream, iov, iovcnt, offset) { - var ret = 0; - for (var i = 0; i < iovcnt; i++) { - var ptr = HEAP32[(((iov)+(i*8))>>2)]; - var len = HEAP32[(((iov)+(i*8 + 4))>>2)]; - var curr = FS.read(stream, HEAP8,ptr, len, offset); - if (curr < 0) return -1; - ret += curr; - if (curr < len) break; // nothing more to read - } - return ret; - },doWritev:function (stream, iov, iovcnt, offset) { - var ret = 0; - for (var i = 0; i < iovcnt; i++) { - var ptr = HEAP32[(((iov)+(i*8))>>2)]; - var len = HEAP32[(((iov)+(i*8 + 4))>>2)]; - var curr = FS.write(stream, HEAP8,ptr, len, offset); - if (curr < 0) return -1; - ret += curr; - } - return ret; - },varargs:0,get:function (varargs) { - SYSCALLS.varargs += 4; - var ret = HEAP32[(((SYSCALLS.varargs)-(4))>>2)]; - return ret; - },getStr:function () { - var ret = Pointer_stringify(SYSCALLS.get()); - return ret; - },getStreamFromFD:function () { - var stream = FS.getStream(SYSCALLS.get()); - if (!stream) throw new FS.ErrnoError(ERRNO_CODES.EBADF); - return stream; - },getSocketFromFD:function () { - var socket = SOCKFS.getSocket(SYSCALLS.get()); - if (!socket) throw new FS.ErrnoError(ERRNO_CODES.EBADF); - return socket; - },getSocketAddress:function (allowNull) { - var addrp = SYSCALLS.get(), addrlen = SYSCALLS.get(); - if (allowNull && addrp === 0) return null; - var info = __read_sockaddr(addrp, addrlen); - if (info.errno) throw new FS.ErrnoError(info.errno); - info.addr = DNS.lookup_addr(info.addr) || info.addr; - return info; - },get64:function () { - var low = SYSCALLS.get(), high = SYSCALLS.get(); - if (low >= 0) assert(high === 0); - else assert(high === -1); - return low; - },getZero:function () { - assert(SYSCALLS.get() === 0); - }};function ___syscall6(which, varargs) {SYSCALLS.varargs = varargs; + ret += len; + } + return ret; + } catch (e) { + if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); + return -e.errno; + } + } + + function ___syscall54(which, varargs) {SYSCALLS.varargs = varargs; try { - // close - var stream = SYSCALLS.getStreamFromFD(); - FS.close(stream); + // ioctl return 0; } catch (e) { if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); return -e.errno; } } +/* flush anything remaining in the buffer during shutdown */ __ATEXIT__.push(function() { var fflush = Module["_fflush"]; if (fflush) fflush(0); var printChar = ___syscall146.printChar; if (!printChar) return; var buffers = ___syscall146.buffers; if (buffers[1].length) printChar(1, 10); if (buffers[2].length) printChar(2, 10); });; +DYNAMICTOP_PTR = allocate(1, "i32", ALLOC_STATIC); - function _sysconf(name) { - // long sysconf(int name); - // http://pubs.opengroup.org/onlinepubs/009695399/functions/sysconf.html - switch(name) { - case 30: return PAGE_SIZE; - case 85: return totalMemory / PAGE_SIZE; - case 132: - case 133: - case 12: - case 137: - case 138: - case 15: - case 235: - case 16: - case 17: - case 18: - case 19: - case 20: - case 149: - case 13: - case 10: - case 236: - case 153: - case 9: - case 21: - case 22: - case 159: - case 154: - case 14: - case 77: - case 78: - case 139: - case 80: - case 81: - case 82: - case 68: - case 67: - case 164: - case 11: - case 29: - case 47: - case 48: - case 95: - case 52: - case 51: - case 46: - return 200809; - case 79: - return 0; - case 27: - case 246: - case 127: - case 128: - case 23: - case 24: - case 160: - case 161: - case 181: - case 182: - case 242: - case 183: - case 184: - case 243: - case 244: - case 245: - case 165: - case 178: - case 179: - case 49: - case 50: - case 168: - case 169: - case 175: - case 170: - case 171: - case 172: - case 97: - case 76: - case 32: - case 173: - case 35: - return -1; - case 176: - case 177: - case 7: - case 155: - case 8: - case 157: - case 125: - case 126: - case 92: - case 93: - case 129: - case 130: - case 131: - case 94: - case 91: - return 1; - case 74: - case 60: - case 69: - case 70: - case 4: - return 1024; - case 31: - case 42: - case 72: - return 32; - case 87: - case 26: - case 33: - return 2147483647; - case 34: - case 1: - return 47839; - case 38: - case 36: - return 99; - case 43: - case 37: - return 2048; - case 0: return 2097152; - case 3: return 65536; - case 28: return 32768; - case 44: return 32767; - case 75: return 16384; - case 39: return 1000; - case 89: return 700; - case 71: return 256; - case 40: return 255; - case 2: return 100; - case 180: return 64; - case 25: return 20; - case 5: return 16; - case 6: return 6; - case 73: return 4; - case 84: { - if (typeof navigator === 'object') return navigator['hardwareConcurrency'] || 1; - return 1; - } - } - ___setErrNo(ERRNO_CODES.EINVAL); - return -1; - } +STACK_BASE = STACKTOP = Runtime.alignMemory(STATICTOP); - function _sbrk(bytes) { - // Implement a Linux-like 'memory area' for our 'process'. - // Changes the size of the memory area by |bytes|; returns the - // address of the previous top ('break') of the memory area - // We control the "dynamic" memory - DYNAMIC_BASE to DYNAMICTOP - var self = _sbrk; - if (!self.called) { - DYNAMICTOP = alignMemoryPage(DYNAMICTOP); // make sure we start out aligned - self.called = true; - assert(Runtime.dynamicAlloc); - self.alloc = Runtime.dynamicAlloc; - Runtime.dynamicAlloc = function() { abort('cannot dynamically allocate, sbrk now has control') }; - } - var ret = DYNAMICTOP; - if (bytes != 0) { - var success = self.alloc(bytes); - if (!success) return -1 >>> 0; // sbrk failure code - } - return ret; // Previous break location. - } +STACK_MAX = STACK_BASE + TOTAL_STACK; - - - function _emscripten_memcpy_big(dest, src, num) { - HEAPU8.set(HEAPU8.subarray(src, src+num), dest); - return dest; - } - Module["_memcpy"] = _memcpy; - Module["_memmove"] = _memmove; +DYNAMIC_BASE = Runtime.alignMemory(STACK_MAX); - - - - function _emscripten_set_main_loop_timing(mode, value) { - Browser.mainLoop.timingMode = mode; - Browser.mainLoop.timingValue = value; - - if (!Browser.mainLoop.func) { - return 1; // Return non-zero on failure, can't set timing mode when there is no main loop. - } - - if (mode == 0 /*EM_TIMING_SETTIMEOUT*/) { - Browser.mainLoop.scheduler = function Browser_mainLoop_scheduler_setTimeout() { - setTimeout(Browser.mainLoop.runner, value); // doing this each time means that on exception, we stop - }; - Browser.mainLoop.method = 'timeout'; - } else if (mode == 1 /*EM_TIMING_RAF*/) { - Browser.mainLoop.scheduler = function Browser_mainLoop_scheduler_rAF() { - Browser.requestAnimationFrame(Browser.mainLoop.runner); - }; - Browser.mainLoop.method = 'rAF'; - } else if (mode == 2 /*EM_TIMING_SETIMMEDIATE*/) { - if (!window['setImmediate']) { - // Emulate setImmediate. (note: not a complete polyfill, we don't emulate clearImmediate() to keep code size to minimum, since not needed) - var setImmediates = []; - var emscriptenMainLoopMessageId = '__emcc'; - function Browser_setImmediate_messageHandler(event) { - if (event.source === window && event.data === emscriptenMainLoopMessageId) { - event.stopPropagation(); - setImmediates.shift()(); - } - } - window.addEventListener("message", Browser_setImmediate_messageHandler, true); - window['setImmediate'] = function Browser_emulated_setImmediate(func) { - setImmediates.push(func); - window.postMessage(emscriptenMainLoopMessageId, "*"); - } - } - Browser.mainLoop.scheduler = function Browser_mainLoop_scheduler_setImmediate() { - window['setImmediate'](Browser.mainLoop.runner); - }; - Browser.mainLoop.method = 'immediate'; - } - return 0; - }function _emscripten_set_main_loop(func, fps, simulateInfiniteLoop, arg, noSetTiming) { - Module['noExitRuntime'] = true; - - assert(!Browser.mainLoop.func, 'emscripten_set_main_loop: there can only be one main loop function at once: call emscripten_cancel_main_loop to cancel the previous one before setting a new one with different parameters.'); - - Browser.mainLoop.func = func; - Browser.mainLoop.arg = arg; - - var thisMainLoopId = Browser.mainLoop.currentlyRunningMainloop; - - Browser.mainLoop.runner = function Browser_mainLoop_runner() { - if (ABORT) return; - if (Browser.mainLoop.queue.length > 0) { - var start = Date.now(); - var blocker = Browser.mainLoop.queue.shift(); - blocker.func(blocker.arg); - if (Browser.mainLoop.remainingBlockers) { - var remaining = Browser.mainLoop.remainingBlockers; - var next = remaining%1 == 0 ? remaining-1 : Math.floor(remaining); - if (blocker.counted) { - Browser.mainLoop.remainingBlockers = next; - } else { - // not counted, but move the progress along a tiny bit - next = next + 0.5; // do not steal all the next one's progress - Browser.mainLoop.remainingBlockers = (8*remaining + next)/9; - } - } - console.log('main loop blocker "' + blocker.name + '" took ' + (Date.now() - start) + ' ms'); //, left: ' + Browser.mainLoop.remainingBlockers); - Browser.mainLoop.updateStatus(); - setTimeout(Browser.mainLoop.runner, 0); - return; - } - - // catch pauses from non-main loop sources - if (thisMainLoopId < Browser.mainLoop.currentlyRunningMainloop) return; - - // Implement very basic swap interval control - Browser.mainLoop.currentFrameNumber = Browser.mainLoop.currentFrameNumber + 1 | 0; - if (Browser.mainLoop.timingMode == 1/*EM_TIMING_RAF*/ && Browser.mainLoop.timingValue > 1 && Browser.mainLoop.currentFrameNumber % Browser.mainLoop.timingValue != 0) { - // Not the scheduled time to render this frame - skip. - Browser.mainLoop.scheduler(); - return; - } - - // Signal GL rendering layer that processing of a new frame is about to start. This helps it optimize - // VBO double-buffering and reduce GPU stalls. - - if (Browser.mainLoop.method === 'timeout' && Module.ctx) { - Module.printErr('Looks like you are rendering without using requestAnimationFrame for the main loop. You should use 0 for the frame rate in emscripten_set_main_loop in order to use requestAnimationFrame, as that can greatly improve your frame rates!'); - Browser.mainLoop.method = ''; // just warn once per call to set main loop - } - - Browser.mainLoop.runIter(function() { - if (typeof arg !== 'undefined') { - Runtime.dynCall('vi', func, [arg]); - } else { - Runtime.dynCall('v', func); - } - }); - - // catch pauses from the main loop itself - if (thisMainLoopId < Browser.mainLoop.currentlyRunningMainloop) return; - - // Queue new audio data. This is important to be right after the main loop invocation, so that we will immediately be able - // to queue the newest produced audio samples. - // TODO: Consider adding pre- and post- rAF callbacks so that GL.newRenderingFrameStarted() and SDL.audio.queueNewAudioData() - // do not need to be hardcoded into this function, but can be more generic. - if (typeof SDL === 'object' && SDL.audio && SDL.audio.queueNewAudioData) SDL.audio.queueNewAudioData(); - - Browser.mainLoop.scheduler(); - } - - if (!noSetTiming) { - if (fps && fps > 0) _emscripten_set_main_loop_timing(0/*EM_TIMING_SETTIMEOUT*/, 1000.0 / fps); - else _emscripten_set_main_loop_timing(1/*EM_TIMING_RAF*/, 1); // Do rAF by rendering each frame (no decimating) - - Browser.mainLoop.scheduler(); - } - - if (simulateInfiniteLoop) { - throw 'SimulateInfiniteLoop'; - } - }var Browser={mainLoop:{scheduler:null,method:"",currentlyRunningMainloop:0,func:null,arg:0,timingMode:0,timingValue:0,currentFrameNumber:0,queue:[],pause:function () { - Browser.mainLoop.scheduler = null; - Browser.mainLoop.currentlyRunningMainloop++; // Incrementing this signals the previous main loop that it's now become old, and it must return. - },resume:function () { - Browser.mainLoop.currentlyRunningMainloop++; - var timingMode = Browser.mainLoop.timingMode; - var timingValue = Browser.mainLoop.timingValue; - var func = Browser.mainLoop.func; - Browser.mainLoop.func = null; - _emscripten_set_main_loop(func, 0, false, Browser.mainLoop.arg, true /* do not set timing and call scheduler, we will do it on the next lines */); - _emscripten_set_main_loop_timing(timingMode, timingValue); - Browser.mainLoop.scheduler(); - },updateStatus:function () { - if (Module['setStatus']) { - var message = Module['statusMessage'] || 'Please wait...'; - var remaining = Browser.mainLoop.remainingBlockers; - var expected = Browser.mainLoop.expectedBlockers; - if (remaining) { - if (remaining < expected) { - Module['setStatus'](message + ' (' + (expected - remaining) + '/' + expected + ')'); - } else { - Module['setStatus'](message); - } - } else { - Module['setStatus'](''); - } - } - },runIter:function (func) { - if (ABORT) return; - if (Module['preMainLoop']) { - var preRet = Module['preMainLoop'](); - if (preRet === false) { - return; // |return false| skips a frame - } - } - try { - func(); - } catch (e) { - if (e instanceof ExitStatus) { - return; - } else { - if (e && typeof e === 'object' && e.stack) Module.printErr('exception thrown: ' + [e, e.stack]); - throw e; - } - } - if (Module['postMainLoop']) Module['postMainLoop'](); - }},isFullScreen:false,pointerLock:false,moduleContextCreatedCallbacks:[],workers:[],init:function () { - if (!Module["preloadPlugins"]) Module["preloadPlugins"] = []; // needs to exist even in workers - - if (Browser.initted) return; - Browser.initted = true; - - try { - new Blob(); - Browser.hasBlobConstructor = true; - } catch(e) { - Browser.hasBlobConstructor = false; - console.log("warning: no blob constructor, cannot create blobs with mimetypes"); - } - Browser.BlobBuilder = typeof MozBlobBuilder != "undefined" ? MozBlobBuilder : (typeof WebKitBlobBuilder != "undefined" ? WebKitBlobBuilder : (!Browser.hasBlobConstructor ? console.log("warning: no BlobBuilder") : null)); - Browser.URLObject = typeof window != "undefined" ? (window.URL ? window.URL : window.webkitURL) : undefined; - if (!Module.noImageDecoding && typeof Browser.URLObject === 'undefined') { - console.log("warning: Browser does not support creating object URLs. Built-in browser image decoding will not be available."); - Module.noImageDecoding = true; - } - - // Support for plugins that can process preloaded files. You can add more of these to - // your app by creating and appending to Module.preloadPlugins. - // - // Each plugin is asked if it can handle a file based on the file's name. If it can, - // it is given the file's raw data. When it is done, it calls a callback with the file's - // (possibly modified) data. For example, a plugin might decompress a file, or it - // might create some side data structure for use later (like an Image element, etc.). - - var imagePlugin = {}; - imagePlugin['canHandle'] = function imagePlugin_canHandle(name) { - return !Module.noImageDecoding && /\.(jpg|jpeg|png|bmp)$/i.test(name); - }; - imagePlugin['handle'] = function imagePlugin_handle(byteArray, name, onload, onerror) { - var b = null; - if (Browser.hasBlobConstructor) { - try { - b = new Blob([byteArray], { type: Browser.getMimetype(name) }); - if (b.size !== byteArray.length) { // Safari bug #118630 - // Safari's Blob can only take an ArrayBuffer - b = new Blob([(new Uint8Array(byteArray)).buffer], { type: Browser.getMimetype(name) }); - } - } catch(e) { - Runtime.warnOnce('Blob constructor present but fails: ' + e + '; falling back to blob builder'); - } - } - if (!b) { - var bb = new Browser.BlobBuilder(); - bb.append((new Uint8Array(byteArray)).buffer); // we need to pass a buffer, and must copy the array to get the right data range - b = bb.getBlob(); - } - var url = Browser.URLObject.createObjectURL(b); - var img = new Image(); - img.onload = function img_onload() { - assert(img.complete, 'Image ' + name + ' could not be decoded'); - var canvas = document.createElement('canvas'); - canvas.width = img.width; - canvas.height = img.height; - var ctx = canvas.getContext('2d'); - ctx.drawImage(img, 0, 0); - Module["preloadedImages"][name] = canvas; - Browser.URLObject.revokeObjectURL(url); - if (onload) onload(byteArray); - }; - img.onerror = function img_onerror(event) { - console.log('Image ' + url + ' could not be decoded'); - if (onerror) onerror(); - }; - img.src = url; - }; - Module['preloadPlugins'].push(imagePlugin); - - var audioPlugin = {}; - audioPlugin['canHandle'] = function audioPlugin_canHandle(name) { - return !Module.noAudioDecoding && name.substr(-4) in { '.ogg': 1, '.wav': 1, '.mp3': 1 }; - }; - audioPlugin['handle'] = function audioPlugin_handle(byteArray, name, onload, onerror) { - var done = false; - function finish(audio) { - if (done) return; - done = true; - Module["preloadedAudios"][name] = audio; - if (onload) onload(byteArray); - } - function fail() { - if (done) return; - done = true; - Module["preloadedAudios"][name] = new Audio(); // empty shim - if (onerror) onerror(); - } - if (Browser.hasBlobConstructor) { - try { - var b = new Blob([byteArray], { type: Browser.getMimetype(name) }); - } catch(e) { - return fail(); - } - var url = Browser.URLObject.createObjectURL(b); // XXX we never revoke this! - var audio = new Audio(); - audio.addEventListener('canplaythrough', function() { finish(audio) }, false); // use addEventListener due to chromium bug 124926 - audio.onerror = function audio_onerror(event) { - if (done) return; - console.log('warning: browser could not fully decode audio ' + name + ', trying slower base64 approach'); - function encode64(data) { - var BASE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; - var PAD = '='; - var ret = ''; - var leftchar = 0; - var leftbits = 0; - for (var i = 0; i < data.length; i++) { - leftchar = (leftchar << 8) | data[i]; - leftbits += 8; - while (leftbits >= 6) { - var curr = (leftchar >> (leftbits-6)) & 0x3f; - leftbits -= 6; - ret += BASE[curr]; - } - } - if (leftbits == 2) { - ret += BASE[(leftchar&3) << 4]; - ret += PAD + PAD; - } else if (leftbits == 4) { - ret += BASE[(leftchar&0xf) << 2]; - ret += PAD; - } - return ret; - } - audio.src = 'data:audio/x-' + name.substr(-3) + ';base64,' + encode64(byteArray); - finish(audio); // we don't wait for confirmation this worked - but it's worth trying - }; - audio.src = url; - // workaround for chrome bug 124926 - we do not always get oncanplaythrough or onerror - Browser.safeSetTimeout(function() { - finish(audio); // try to use it even though it is not necessarily ready to play - }, 10000); - } else { - return fail(); - } - }; - Module['preloadPlugins'].push(audioPlugin); - - // Canvas event setup - - var canvas = Module['canvas']; - function pointerLockChange() { - Browser.pointerLock = document['pointerLockElement'] === canvas || - document['mozPointerLockElement'] === canvas || - document['webkitPointerLockElement'] === canvas || - document['msPointerLockElement'] === canvas; - } - if (canvas) { - // forced aspect ratio can be enabled by defining 'forcedAspectRatio' on Module - // Module['forcedAspectRatio'] = 4 / 3; - - canvas.requestPointerLock = canvas['requestPointerLock'] || - canvas['mozRequestPointerLock'] || - canvas['webkitRequestPointerLock'] || - canvas['msRequestPointerLock'] || - function(){}; - canvas.exitPointerLock = document['exitPointerLock'] || - document['mozExitPointerLock'] || - document['webkitExitPointerLock'] || - document['msExitPointerLock'] || - function(){}; // no-op if function does not exist - canvas.exitPointerLock = canvas.exitPointerLock.bind(document); - - - document.addEventListener('pointerlockchange', pointerLockChange, false); - document.addEventListener('mozpointerlockchange', pointerLockChange, false); - document.addEventListener('webkitpointerlockchange', pointerLockChange, false); - document.addEventListener('mspointerlockchange', pointerLockChange, false); - - if (Module['elementPointerLock']) { - canvas.addEventListener("click", function(ev) { - if (!Browser.pointerLock && canvas.requestPointerLock) { - canvas.requestPointerLock(); - ev.preventDefault(); - } - }, false); - } - } - },createContext:function (canvas, useWebGL, setInModule, webGLContextAttributes) { - if (useWebGL && Module.ctx && canvas == Module.canvas) return Module.ctx; // no need to recreate GL context if it's already been created for this canvas. - - var ctx; - var contextHandle; - if (useWebGL) { - // For GLES2/desktop GL compatibility, adjust a few defaults to be different to WebGL defaults, so that they align better with the desktop defaults. - var contextAttributes = { - antialias: false, - alpha: false - }; - - if (webGLContextAttributes) { - for (var attribute in webGLContextAttributes) { - contextAttributes[attribute] = webGLContextAttributes[attribute]; - } - } - - contextHandle = GL.createContext(canvas, contextAttributes); - if (contextHandle) { - ctx = GL.getContext(contextHandle).GLctx; - } - // Set the background of the WebGL canvas to black - canvas.style.backgroundColor = "black"; - } else { - ctx = canvas.getContext('2d'); - } - - if (!ctx) return null; - - if (setInModule) { - if (!useWebGL) assert(typeof GLctx === 'undefined', 'cannot set in module if GLctx is used, but we are a non-GL context that would replace it'); - - Module.ctx = ctx; - if (useWebGL) GL.makeContextCurrent(contextHandle); - Module.useWebGL = useWebGL; - Browser.moduleContextCreatedCallbacks.forEach(function(callback) { callback() }); - Browser.init(); - } - return ctx; - },destroyContext:function (canvas, useWebGL, setInModule) {},fullScreenHandlersInstalled:false,lockPointer:undefined,resizeCanvas:undefined,requestFullScreen:function (lockPointer, resizeCanvas, vrDevice) { - Browser.lockPointer = lockPointer; - Browser.resizeCanvas = resizeCanvas; - Browser.vrDevice = vrDevice; - if (typeof Browser.lockPointer === 'undefined') Browser.lockPointer = true; - if (typeof Browser.resizeCanvas === 'undefined') Browser.resizeCanvas = false; - if (typeof Browser.vrDevice === 'undefined') Browser.vrDevice = null; - - var canvas = Module['canvas']; - function fullScreenChange() { - Browser.isFullScreen = false; - var canvasContainer = canvas.parentNode; - if ((document['webkitFullScreenElement'] || document['webkitFullscreenElement'] || - document['mozFullScreenElement'] || document['mozFullscreenElement'] || - document['fullScreenElement'] || document['fullscreenElement'] || - document['msFullScreenElement'] || document['msFullscreenElement'] || - document['webkitCurrentFullScreenElement']) === canvasContainer) { - canvas.cancelFullScreen = document['cancelFullScreen'] || - document['mozCancelFullScreen'] || - document['webkitCancelFullScreen'] || - document['msExitFullscreen'] || - document['exitFullscreen'] || - function() {}; - canvas.cancelFullScreen = canvas.cancelFullScreen.bind(document); - if (Browser.lockPointer) canvas.requestPointerLock(); - Browser.isFullScreen = true; - if (Browser.resizeCanvas) Browser.setFullScreenCanvasSize(); - } else { - - // remove the full screen specific parent of the canvas again to restore the HTML structure from before going full screen - canvasContainer.parentNode.insertBefore(canvas, canvasContainer); - canvasContainer.parentNode.removeChild(canvasContainer); - - if (Browser.resizeCanvas) Browser.setWindowedCanvasSize(); - } - if (Module['onFullScreen']) Module['onFullScreen'](Browser.isFullScreen); - Browser.updateCanvasDimensions(canvas); - } - - if (!Browser.fullScreenHandlersInstalled) { - Browser.fullScreenHandlersInstalled = true; - document.addEventListener('fullscreenchange', fullScreenChange, false); - document.addEventListener('mozfullscreenchange', fullScreenChange, false); - document.addEventListener('webkitfullscreenchange', fullScreenChange, false); - document.addEventListener('MSFullscreenChange', fullScreenChange, false); - } - - // create a new parent to ensure the canvas has no siblings. this allows browsers to optimize full screen performance when its parent is the full screen root - var canvasContainer = document.createElement("div"); - canvas.parentNode.insertBefore(canvasContainer, canvas); - canvasContainer.appendChild(canvas); - - // use parent of canvas as full screen root to allow aspect ratio correction (Firefox stretches the root to screen size) - canvasContainer.requestFullScreen = canvasContainer['requestFullScreen'] || - canvasContainer['mozRequestFullScreen'] || - canvasContainer['msRequestFullscreen'] || - (canvasContainer['webkitRequestFullScreen'] ? function() { canvasContainer['webkitRequestFullScreen'](Element['ALLOW_KEYBOARD_INPUT']) } : null); - - if (vrDevice) { - canvasContainer.requestFullScreen({ vrDisplay: vrDevice }); - } else { - canvasContainer.requestFullScreen(); - } - },nextRAF:0,fakeRequestAnimationFrame:function (func) { - // try to keep 60fps between calls to here - var now = Date.now(); - if (Browser.nextRAF === 0) { - Browser.nextRAF = now + 1000/60; - } else { - while (now + 2 >= Browser.nextRAF) { // fudge a little, to avoid timer jitter causing us to do lots of delay:0 - Browser.nextRAF += 1000/60; - } - } - var delay = Math.max(Browser.nextRAF - now, 0); - setTimeout(func, delay); - },requestAnimationFrame:function requestAnimationFrame(func) { - if (typeof window === 'undefined') { // Provide fallback to setTimeout if window is undefined (e.g. in Node.js) - Browser.fakeRequestAnimationFrame(func); - } else { - if (!window.requestAnimationFrame) { - window.requestAnimationFrame = window['requestAnimationFrame'] || - window['mozRequestAnimationFrame'] || - window['webkitRequestAnimationFrame'] || - window['msRequestAnimationFrame'] || - window['oRequestAnimationFrame'] || - Browser.fakeRequestAnimationFrame; - } - window.requestAnimationFrame(func); - } - },safeCallback:function (func) { - return function() { - if (!ABORT) return func.apply(null, arguments); - }; - },allowAsyncCallbacks:true,queuedAsyncCallbacks:[],pauseAsyncCallbacks:function () { - Browser.allowAsyncCallbacks = false; - },resumeAsyncCallbacks:function () { // marks future callbacks as ok to execute, and synchronously runs any remaining ones right now - Browser.allowAsyncCallbacks = true; - if (Browser.queuedAsyncCallbacks.length > 0) { - var callbacks = Browser.queuedAsyncCallbacks; - Browser.queuedAsyncCallbacks = []; - callbacks.forEach(function(func) { - func(); - }); - } - },safeRequestAnimationFrame:function (func) { - return Browser.requestAnimationFrame(function() { - if (ABORT) return; - if (Browser.allowAsyncCallbacks) { - func(); - } else { - Browser.queuedAsyncCallbacks.push(func); - } - }); - },safeSetTimeout:function (func, timeout) { - Module['noExitRuntime'] = true; - return setTimeout(function() { - if (ABORT) return; - if (Browser.allowAsyncCallbacks) { - func(); - } else { - Browser.queuedAsyncCallbacks.push(func); - } - }, timeout); - },safeSetInterval:function (func, timeout) { - Module['noExitRuntime'] = true; - return setInterval(function() { - if (ABORT) return; - if (Browser.allowAsyncCallbacks) { - func(); - } // drop it on the floor otherwise, next interval will kick in - }, timeout); - },getMimetype:function (name) { - return { - 'jpg': 'image/jpeg', - 'jpeg': 'image/jpeg', - 'png': 'image/png', - 'bmp': 'image/bmp', - 'ogg': 'audio/ogg', - 'wav': 'audio/wav', - 'mp3': 'audio/mpeg' - }[name.substr(name.lastIndexOf('.')+1)]; - },getUserMedia:function (func) { - if(!window.getUserMedia) { - window.getUserMedia = navigator['getUserMedia'] || - navigator['mozGetUserMedia']; - } - window.getUserMedia(func); - },getMovementX:function (event) { - return event['movementX'] || - event['mozMovementX'] || - event['webkitMovementX'] || - 0; - },getMovementY:function (event) { - return event['movementY'] || - event['mozMovementY'] || - event['webkitMovementY'] || - 0; - },getMouseWheelDelta:function (event) { - var delta = 0; - switch (event.type) { - case 'DOMMouseScroll': - delta = event.detail; - break; - case 'mousewheel': - delta = event.wheelDelta; - break; - case 'wheel': - delta = event['deltaY']; - break; - default: - throw 'unrecognized mouse wheel event: ' + event.type; - } - return delta; - },mouseX:0,mouseY:0,mouseMovementX:0,mouseMovementY:0,touches:{},lastTouches:{},calculateMouseEvent:function (event) { // event should be mousemove, mousedown or mouseup - if (Browser.pointerLock) { - // When the pointer is locked, calculate the coordinates - // based on the movement of the mouse. - // Workaround for Firefox bug 764498 - if (event.type != 'mousemove' && - ('mozMovementX' in event)) { - Browser.mouseMovementX = Browser.mouseMovementY = 0; - } else { - Browser.mouseMovementX = Browser.getMovementX(event); - Browser.mouseMovementY = Browser.getMovementY(event); - } - - // check if SDL is available - if (typeof SDL != "undefined") { - Browser.mouseX = SDL.mouseX + Browser.mouseMovementX; - Browser.mouseY = SDL.mouseY + Browser.mouseMovementY; - } else { - // just add the mouse delta to the current absolut mouse position - // FIXME: ideally this should be clamped against the canvas size and zero - Browser.mouseX += Browser.mouseMovementX; - Browser.mouseY += Browser.mouseMovementY; - } - } else { - // Otherwise, calculate the movement based on the changes - // in the coordinates. - var rect = Module["canvas"].getBoundingClientRect(); - var cw = Module["canvas"].width; - var ch = Module["canvas"].height; - - // Neither .scrollX or .pageXOffset are defined in a spec, but - // we prefer .scrollX because it is currently in a spec draft. - // (see: http://www.w3.org/TR/2013/WD-cssom-view-20131217/) - var scrollX = ((typeof window.scrollX !== 'undefined') ? window.scrollX : window.pageXOffset); - var scrollY = ((typeof window.scrollY !== 'undefined') ? window.scrollY : window.pageYOffset); - - if (event.type === 'touchstart' || event.type === 'touchend' || event.type === 'touchmove') { - var touch = event.touch; - if (touch === undefined) { - return; // the "touch" property is only defined in SDL - - } - var adjustedX = touch.pageX - (scrollX + rect.left); - var adjustedY = touch.pageY - (scrollY + rect.top); - - adjustedX = adjustedX * (cw / rect.width); - adjustedY = adjustedY * (ch / rect.height); - - var coords = { x: adjustedX, y: adjustedY }; - - if (event.type === 'touchstart') { - Browser.lastTouches[touch.identifier] = coords; - Browser.touches[touch.identifier] = coords; - } else if (event.type === 'touchend' || event.type === 'touchmove') { - var last = Browser.touches[touch.identifier]; - if (!last) last = coords; - Browser.lastTouches[touch.identifier] = last; - Browser.touches[touch.identifier] = coords; - } - return; - } - - var x = event.pageX - (scrollX + rect.left); - var y = event.pageY - (scrollY + rect.top); - - // the canvas might be CSS-scaled compared to its backbuffer; - // SDL-using content will want mouse coordinates in terms - // of backbuffer units. - x = x * (cw / rect.width); - y = y * (ch / rect.height); - - Browser.mouseMovementX = x - Browser.mouseX; - Browser.mouseMovementY = y - Browser.mouseY; - Browser.mouseX = x; - Browser.mouseY = y; - } - },xhrLoad:function (url, onload, onerror) { - var xhr = new XMLHttpRequest(); - xhr.open('GET', url, true); - xhr.responseType = 'arraybuffer'; - xhr.onload = function xhr_onload() { - if (xhr.status == 200 || (xhr.status == 0 && xhr.response)) { // file URLs can return 0 - onload(xhr.response); - } else { - onerror(); - } - }; - xhr.onerror = onerror; - xhr.send(null); - },asyncLoad:function (url, onload, onerror, noRunDep) { - Browser.xhrLoad(url, function(arrayBuffer) { - assert(arrayBuffer, 'Loading data file "' + url + '" failed (no arrayBuffer).'); - onload(new Uint8Array(arrayBuffer)); - if (!noRunDep) removeRunDependency('al ' + url); - }, function(event) { - if (onerror) { - onerror(); - } else { - throw 'Loading data file "' + url + '" failed.'; - } - }); - if (!noRunDep) addRunDependency('al ' + url); - },resizeListeners:[],updateResizeListeners:function () { - var canvas = Module['canvas']; - Browser.resizeListeners.forEach(function(listener) { - listener(canvas.width, canvas.height); - }); - },setCanvasSize:function (width, height, noUpdates) { - var canvas = Module['canvas']; - Browser.updateCanvasDimensions(canvas, width, height); - if (!noUpdates) Browser.updateResizeListeners(); - },windowedWidth:0,windowedHeight:0,setFullScreenCanvasSize:function () { - // check if SDL is available - if (typeof SDL != "undefined") { - var flags = HEAPU32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]; - flags = flags | 0x00800000; // set SDL_FULLSCREEN flag - HEAP32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]=flags - } - Browser.updateResizeListeners(); - },setWindowedCanvasSize:function () { - // check if SDL is available - if (typeof SDL != "undefined") { - var flags = HEAPU32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]; - flags = flags & ~0x00800000; // clear SDL_FULLSCREEN flag - HEAP32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]=flags - } - Browser.updateResizeListeners(); - },updateCanvasDimensions:function (canvas, wNative, hNative) { - if (wNative && hNative) { - canvas.widthNative = wNative; - canvas.heightNative = hNative; - } else { - wNative = canvas.widthNative; - hNative = canvas.heightNative; - } - var w = wNative; - var h = hNative; - if (Module['forcedAspectRatio'] && Module['forcedAspectRatio'] > 0) { - if (w/h < Module['forcedAspectRatio']) { - w = Math.round(h * Module['forcedAspectRatio']); - } else { - h = Math.round(w / Module['forcedAspectRatio']); - } - } - if (((document['webkitFullScreenElement'] || document['webkitFullscreenElement'] || - document['mozFullScreenElement'] || document['mozFullscreenElement'] || - document['fullScreenElement'] || document['fullscreenElement'] || - document['msFullScreenElement'] || document['msFullscreenElement'] || - document['webkitCurrentFullScreenElement']) === canvas.parentNode) && (typeof screen != 'undefined')) { - var factor = Math.min(screen.width / w, screen.height / h); - w = Math.round(w * factor); - h = Math.round(h * factor); - } - if (Browser.resizeCanvas) { - if (canvas.width != w) canvas.width = w; - if (canvas.height != h) canvas.height = h; - if (typeof canvas.style != 'undefined') { - canvas.style.removeProperty( "width"); - canvas.style.removeProperty("height"); - } - } else { - if (canvas.width != wNative) canvas.width = wNative; - if (canvas.height != hNative) canvas.height = hNative; - if (typeof canvas.style != 'undefined') { - if (w != wNative || h != hNative) { - canvas.style.setProperty( "width", w + "px", "important"); - canvas.style.setProperty("height", h + "px", "important"); - } else { - canvas.style.removeProperty( "width"); - canvas.style.removeProperty("height"); - } - } - } - },wgetRequests:{},nextWgetRequestHandle:0,getNextWgetRequestHandle:function () { - var handle = Browser.nextWgetRequestHandle; - Browser.nextWgetRequestHandle++; - return handle; - }}; - - function _time(ptr) { - var ret = (Date.now()/1000)|0; - if (ptr) { - HEAP32[((ptr)>>2)]=ret; - } - return ret; - } - - function _pthread_self() { - //FIXME: assumes only a single thread - return 0; - } - - function ___syscall140(which, varargs) {SYSCALLS.varargs = varargs; - try { - // llseek - var stream = SYSCALLS.getStreamFromFD(), offset_high = SYSCALLS.get(), offset_low = SYSCALLS.get(), result = SYSCALLS.get(), whence = SYSCALLS.get(); - var offset = offset_low; - assert(offset_high === 0); - FS.llseek(stream, offset, whence); - HEAP32[((result)>>2)]=stream.position; - if (stream.getdents && offset === 0 && whence === 0) stream.getdents = null; // reset readdir state - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___syscall146(which, varargs) {SYSCALLS.varargs = varargs; - try { - // writev - var stream = SYSCALLS.getStreamFromFD(), iov = SYSCALLS.get(), iovcnt = SYSCALLS.get(); - return SYSCALLS.doWritev(stream, iov, iovcnt); - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___syscall54(which, varargs) {SYSCALLS.varargs = varargs; - try { - // ioctl - var stream = SYSCALLS.getStreamFromFD(), op = SYSCALLS.get(); - switch (op) { - case 21505: { - if (!stream.tty) return -ERRNO_CODES.ENOTTY; - return 0; - } - case 21506: { - if (!stream.tty) return -ERRNO_CODES.ENOTTY; - return 0; // no-op, not actually adjusting terminal settings - } - case 21519: { - if (!stream.tty) return -ERRNO_CODES.ENOTTY; - var argp = SYSCALLS.get(); - HEAP32[((argp)>>2)]=0; - return 0; - } - case 21520: { - if (!stream.tty) return -ERRNO_CODES.ENOTTY; - return -ERRNO_CODES.EINVAL; // not supported - } - case 21531: { - var argp = SYSCALLS.get(); - return FS.ioctl(stream, op, argp); - } - default: abort('bad ioctl syscall ' + op); - } - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } -FS.staticInit();__ATINIT__.unshift(function() { if (!Module["noFSInit"] && !FS.init.initialized) FS.init() });__ATMAIN__.push(function() { FS.ignorePermissions = false });__ATEXIT__.push(function() { FS.quit() });Module["FS_createFolder"] = FS.createFolder;Module["FS_createPath"] = FS.createPath;Module["FS_createDataFile"] = FS.createDataFile;Module["FS_createPreloadedFile"] = FS.createPreloadedFile;Module["FS_createLazyFile"] = FS.createLazyFile;Module["FS_createLink"] = FS.createLink;Module["FS_createDevice"] = FS.createDevice;Module["FS_unlink"] = FS.unlink; -__ATINIT__.unshift(function() { TTY.init() });__ATEXIT__.push(function() { TTY.shutdown() }); -if (ENVIRONMENT_IS_NODE) { var fs = require("fs"); var NODEJS_PATH = require("path"); NODEFS.staticInit(); } -Module["requestFullScreen"] = function Module_requestFullScreen(lockPointer, resizeCanvas, vrDevice) { Browser.requestFullScreen(lockPointer, resizeCanvas, vrDevice) }; - Module["requestAnimationFrame"] = function Module_requestAnimationFrame(func) { Browser.requestAnimationFrame(func) }; - Module["setCanvasSize"] = function Module_setCanvasSize(width, height, noUpdates) { Browser.setCanvasSize(width, height, noUpdates) }; - Module["pauseMainLoop"] = function Module_pauseMainLoop() { Browser.mainLoop.pause() }; - Module["resumeMainLoop"] = function Module_resumeMainLoop() { Browser.mainLoop.resume() }; - Module["getUserMedia"] = function Module_getUserMedia() { Browser.getUserMedia() } - Module["createContext"] = function Module_createContext(canvas, useWebGL, setInModule, webGLContextAttributes) { return Browser.createContext(canvas, useWebGL, setInModule, webGLContextAttributes) } -STACK_BASE = STACKTOP = Runtime.alignMemory(STATICTOP); +HEAP32[DYNAMICTOP_PTR>>2] = DYNAMIC_BASE; staticSealed = true; // seal the static portion of memory -STACK_MAX = STACK_BASE + TOTAL_STACK; - -DYNAMIC_BASE = DYNAMICTOP = Runtime.alignMemory(STACK_MAX); - -assert(DYNAMIC_BASE < TOTAL_MEMORY, "TOTAL_MEMORY not big enough for stack"); - - var cttz_i8 = allocate([8,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,6,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,7,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,6,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0], "i8", ALLOC_DYNAMIC); - function invoke_ii(index,a1) { try { return Module["dynCall_ii"](index,a1); } catch(e) { if (typeof e !== 'number' && e !== 'longjmp') throw e; - asm["setThrew"](1, 0); + Module["setThrew"](1, 0); } } @@ -5633,27 +1748,18 @@ function invoke_iiii(index,a1,a2,a3) { return Module["dynCall_iiii"](index,a1,a2,a3); } catch(e) { if (typeof e !== 'number' && e !== 'longjmp') throw e; - asm["setThrew"](1, 0); - } -} - -function invoke_vi(index,a1) { - try { - Module["dynCall_vi"](index,a1); - } catch(e) { - if (typeof e !== 'number' && e !== 'longjmp') throw e; - asm["setThrew"](1, 0); + Module["setThrew"](1, 0); } } Module.asmGlobalArg = { "Math": Math, "Int8Array": Int8Array, "Int16Array": Int16Array, "Int32Array": Int32Array, "Uint8Array": Uint8Array, "Uint16Array": Uint16Array, "Uint32Array": Uint32Array, "Float32Array": Float32Array, "Float64Array": Float64Array, "NaN": NaN, "Infinity": Infinity }; -Module.asmLibraryArg = { "abort": abort, "assert": assert, "invoke_ii": invoke_ii, "invoke_iiii": invoke_iiii, "invoke_vi": invoke_vi, "_pthread_cleanup_pop": _pthread_cleanup_pop, "___lock": ___lock, "_emscripten_set_main_loop": _emscripten_set_main_loop, "_pthread_self": _pthread_self, "___syscall6": ___syscall6, "_emscripten_set_main_loop_timing": _emscripten_set_main_loop_timing, "_abort": _abort, "_sbrk": _sbrk, "_time": _time, "___setErrNo": ___setErrNo, "_emscripten_memcpy_big": _emscripten_memcpy_big, "___syscall54": ___syscall54, "___unlock": ___unlock, "___syscall140": ___syscall140, "_pthread_cleanup_push": _pthread_cleanup_push, "_sysconf": _sysconf, "___syscall146": ___syscall146, "STACKTOP": STACKTOP, "STACK_MAX": STACK_MAX, "tempDoublePtr": tempDoublePtr, "ABORT": ABORT, "cttz_i8": cttz_i8 }; +Module.asmLibraryArg = { "abort": abort, "assert": assert, "enlargeMemory": enlargeMemory, "getTotalMemory": getTotalMemory, "abortOnCannotGrowMemory": abortOnCannotGrowMemory, "invoke_ii": invoke_ii, "invoke_iiii": invoke_iiii, "___lock": ___lock, "_abort": _abort, "___setErrNo": ___setErrNo, "___syscall6": ___syscall6, "___syscall140": ___syscall140, "___syscall146": ___syscall146, "_emscripten_memcpy_big": _emscripten_memcpy_big, "___syscall54": ___syscall54, "___unlock": ___unlock, "_llvm_stackrestore": _llvm_stackrestore, "_llvm_stacksave": _llvm_stacksave, "DYNAMICTOP_PTR": DYNAMICTOP_PTR, "tempDoublePtr": tempDoublePtr, "ABORT": ABORT, "STACKTOP": STACKTOP, "STACK_MAX": STACK_MAX }; // EMSCRIPTEN_START_ASM var asm = (function(global, env, buffer) { - 'use asm'; - - +'use asm'; + + var HEAP8 = new global.Int8Array(buffer); var HEAP16 = new global.Int16Array(buffer); var HEAP32 = new global.Int32Array(buffer); @@ -5663,30 +1769,20 @@ var asm = (function(global, env, buffer) { var HEAPF32 = new global.Float32Array(buffer); var HEAPF64 = new global.Float64Array(buffer); - - var STACKTOP=env.STACKTOP|0; - var STACK_MAX=env.STACK_MAX|0; + var DYNAMICTOP_PTR=env.DYNAMICTOP_PTR|0; var tempDoublePtr=env.tempDoublePtr|0; var ABORT=env.ABORT|0; - var cttz_i8=env.cttz_i8|0; + var STACKTOP=env.STACKTOP|0; + var STACK_MAX=env.STACK_MAX|0; var __THREW__ = 0; var threwValue = 0; var setjmpId = 0; var undef = 0; var nan = global.NaN, inf = global.Infinity; - var tempInt = 0, tempBigInt = 0, tempBigIntP = 0, tempBigIntS = 0, tempBigIntR = 0.0, tempBigIntI = 0, tempBigIntD = 0, tempValue = 0, tempDouble = 0.0; - + var tempInt = 0, tempBigInt = 0, tempBigIntS = 0, tempValue = 0, tempDouble = 0.0; var tempRet0 = 0; - var tempRet1 = 0; - var tempRet2 = 0; - var tempRet3 = 0; - var tempRet4 = 0; - var tempRet5 = 0; - var tempRet6 = 0; - var tempRet7 = 0; - var tempRet8 = 0; - var tempRet9 = 0; + var Math_floor=global.Math.floor; var Math_abs=global.Math.abs; var Math_sqrt=global.Math.sqrt; @@ -5703,32 +1799,30 @@ var asm = (function(global, env, buffer) { var Math_ceil=global.Math.ceil; var Math_imul=global.Math.imul; var Math_min=global.Math.min; + var Math_max=global.Math.max; var Math_clz32=global.Math.clz32; var abort=env.abort; var assert=env.assert; + var enlargeMemory=env.enlargeMemory; + var getTotalMemory=env.getTotalMemory; + var abortOnCannotGrowMemory=env.abortOnCannotGrowMemory; var invoke_ii=env.invoke_ii; var invoke_iiii=env.invoke_iiii; - var invoke_vi=env.invoke_vi; - var _pthread_cleanup_pop=env._pthread_cleanup_pop; var ___lock=env.___lock; - var _emscripten_set_main_loop=env._emscripten_set_main_loop; - var _pthread_self=env._pthread_self; - var ___syscall6=env.___syscall6; - var _emscripten_set_main_loop_timing=env._emscripten_set_main_loop_timing; var _abort=env._abort; - var _sbrk=env._sbrk; - var _time=env._time; var ___setErrNo=env.___setErrNo; + var ___syscall6=env.___syscall6; + var ___syscall140=env.___syscall140; + var ___syscall146=env.___syscall146; var _emscripten_memcpy_big=env._emscripten_memcpy_big; var ___syscall54=env.___syscall54; var ___unlock=env.___unlock; - var ___syscall140=env.___syscall140; - var _pthread_cleanup_push=env._pthread_cleanup_push; - var _sysconf=env._sysconf; - var ___syscall146=env.___syscall146; + var _llvm_stackrestore=env._llvm_stackrestore; + var _llvm_stacksave=env._llvm_stacksave; var tempFloat = 0.0; // EMSCRIPTEN_START_FUNCS + function stackAlloc(size) { size = size|0; var ret = 0; @@ -5760,24 +1854,6 @@ function setThrew(threw, value) { threwValue = value; } } -function copyTempFloat(ptr) { - ptr = ptr|0; - HEAP8[tempDoublePtr>>0] = HEAP8[ptr>>0]; - HEAP8[tempDoublePtr+1>>0] = HEAP8[ptr+1>>0]; - HEAP8[tempDoublePtr+2>>0] = HEAP8[ptr+2>>0]; - HEAP8[tempDoublePtr+3>>0] = HEAP8[ptr+3>>0]; -} -function copyTempDouble(ptr) { - ptr = ptr|0; - HEAP8[tempDoublePtr>>0] = HEAP8[ptr>>0]; - HEAP8[tempDoublePtr+1>>0] = HEAP8[ptr+1>>0]; - HEAP8[tempDoublePtr+2>>0] = HEAP8[ptr+2>>0]; - HEAP8[tempDoublePtr+3>>0] = HEAP8[ptr+3>>0]; - HEAP8[tempDoublePtr+4>>0] = HEAP8[ptr+4>>0]; - HEAP8[tempDoublePtr+5>>0] = HEAP8[ptr+5>>0]; - HEAP8[tempDoublePtr+6>>0] = HEAP8[ptr+6>>0]; - HEAP8[tempDoublePtr+7>>0] = HEAP8[ptr+7>>0]; -} function setTempRet0(value) { value = value|0; @@ -5787,1638 +1863,1732 @@ function getTempRet0() { return tempRet0|0; } -function _crypto_verify_32_ref($x,$y) { - $x = $x|0; - $y = $y|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0; +function _crypto_verify_32_ref($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0; var $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0; var $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0; var $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0; var $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP8[$x>>0]|0; - $1 = HEAP8[$y>>0]|0; - $2 = $1 ^ $0; - $3 = ((($x)) + 1|0); - $4 = HEAP8[$3>>0]|0; - $5 = ((($y)) + 1|0); + $2 = HEAP8[$0>>0]|0; + $3 = HEAP8[$1>>0]|0; + $4 = $3 ^ $2; + $5 = ((($0)) + 1|0); $6 = HEAP8[$5>>0]|0; - $7 = $6 ^ $4; - $8 = $7 | $2; - $9 = ((($x)) + 2|0); - $10 = HEAP8[$9>>0]|0; - $11 = ((($y)) + 2|0); + $7 = ((($1)) + 1|0); + $8 = HEAP8[$7>>0]|0; + $9 = $8 ^ $6; + $10 = $9 | $4; + $11 = ((($0)) + 2|0); $12 = HEAP8[$11>>0]|0; - $13 = $12 ^ $10; - $14 = $8 | $13; - $15 = ((($x)) + 3|0); - $16 = HEAP8[$15>>0]|0; - $17 = ((($y)) + 3|0); + $13 = ((($1)) + 2|0); + $14 = HEAP8[$13>>0]|0; + $15 = $14 ^ $12; + $16 = $10 | $15; + $17 = ((($0)) + 3|0); $18 = HEAP8[$17>>0]|0; - $19 = $18 ^ $16; - $20 = $14 | $19; - $21 = ((($x)) + 4|0); - $22 = HEAP8[$21>>0]|0; - $23 = ((($y)) + 4|0); + $19 = ((($1)) + 3|0); + $20 = HEAP8[$19>>0]|0; + $21 = $20 ^ $18; + $22 = $16 | $21; + $23 = ((($0)) + 4|0); $24 = HEAP8[$23>>0]|0; - $25 = $24 ^ $22; - $26 = $20 | $25; - $27 = ((($x)) + 5|0); - $28 = HEAP8[$27>>0]|0; - $29 = ((($y)) + 5|0); + $25 = ((($1)) + 4|0); + $26 = HEAP8[$25>>0]|0; + $27 = $26 ^ $24; + $28 = $22 | $27; + $29 = ((($0)) + 5|0); $30 = HEAP8[$29>>0]|0; - $31 = $30 ^ $28; - $32 = $26 | $31; - $33 = ((($x)) + 6|0); - $34 = HEAP8[$33>>0]|0; - $35 = ((($y)) + 6|0); + $31 = ((($1)) + 5|0); + $32 = HEAP8[$31>>0]|0; + $33 = $32 ^ $30; + $34 = $28 | $33; + $35 = ((($0)) + 6|0); $36 = HEAP8[$35>>0]|0; - $37 = $36 ^ $34; - $38 = $32 | $37; - $39 = ((($x)) + 7|0); - $40 = HEAP8[$39>>0]|0; - $41 = ((($y)) + 7|0); + $37 = ((($1)) + 6|0); + $38 = HEAP8[$37>>0]|0; + $39 = $38 ^ $36; + $40 = $34 | $39; + $41 = ((($0)) + 7|0); $42 = HEAP8[$41>>0]|0; - $43 = $42 ^ $40; - $44 = $38 | $43; - $45 = ((($x)) + 8|0); - $46 = HEAP8[$45>>0]|0; - $47 = ((($y)) + 8|0); + $43 = ((($1)) + 7|0); + $44 = HEAP8[$43>>0]|0; + $45 = $44 ^ $42; + $46 = $40 | $45; + $47 = ((($0)) + 8|0); $48 = HEAP8[$47>>0]|0; - $49 = $48 ^ $46; - $50 = $44 | $49; - $51 = ((($x)) + 9|0); - $52 = HEAP8[$51>>0]|0; - $53 = ((($y)) + 9|0); + $49 = ((($1)) + 8|0); + $50 = HEAP8[$49>>0]|0; + $51 = $50 ^ $48; + $52 = $46 | $51; + $53 = ((($0)) + 9|0); $54 = HEAP8[$53>>0]|0; - $55 = $54 ^ $52; - $56 = $50 | $55; - $57 = ((($x)) + 10|0); - $58 = HEAP8[$57>>0]|0; - $59 = ((($y)) + 10|0); + $55 = ((($1)) + 9|0); + $56 = HEAP8[$55>>0]|0; + $57 = $56 ^ $54; + $58 = $52 | $57; + $59 = ((($0)) + 10|0); $60 = HEAP8[$59>>0]|0; - $61 = $60 ^ $58; - $62 = $56 | $61; - $63 = ((($x)) + 11|0); - $64 = HEAP8[$63>>0]|0; - $65 = ((($y)) + 11|0); + $61 = ((($1)) + 10|0); + $62 = HEAP8[$61>>0]|0; + $63 = $62 ^ $60; + $64 = $58 | $63; + $65 = ((($0)) + 11|0); $66 = HEAP8[$65>>0]|0; - $67 = $66 ^ $64; - $68 = $62 | $67; - $69 = ((($x)) + 12|0); - $70 = HEAP8[$69>>0]|0; - $71 = ((($y)) + 12|0); + $67 = ((($1)) + 11|0); + $68 = HEAP8[$67>>0]|0; + $69 = $68 ^ $66; + $70 = $64 | $69; + $71 = ((($0)) + 12|0); $72 = HEAP8[$71>>0]|0; - $73 = $72 ^ $70; - $74 = $68 | $73; - $75 = ((($x)) + 13|0); - $76 = HEAP8[$75>>0]|0; - $77 = ((($y)) + 13|0); + $73 = ((($1)) + 12|0); + $74 = HEAP8[$73>>0]|0; + $75 = $74 ^ $72; + $76 = $70 | $75; + $77 = ((($0)) + 13|0); $78 = HEAP8[$77>>0]|0; - $79 = $78 ^ $76; - $80 = $74 | $79; - $81 = ((($x)) + 14|0); - $82 = HEAP8[$81>>0]|0; - $83 = ((($y)) + 14|0); + $79 = ((($1)) + 13|0); + $80 = HEAP8[$79>>0]|0; + $81 = $80 ^ $78; + $82 = $76 | $81; + $83 = ((($0)) + 14|0); $84 = HEAP8[$83>>0]|0; - $85 = $84 ^ $82; - $86 = $80 | $85; - $87 = ((($x)) + 15|0); - $88 = HEAP8[$87>>0]|0; - $89 = ((($y)) + 15|0); + $85 = ((($1)) + 14|0); + $86 = HEAP8[$85>>0]|0; + $87 = $86 ^ $84; + $88 = $82 | $87; + $89 = ((($0)) + 15|0); $90 = HEAP8[$89>>0]|0; - $91 = $90 ^ $88; - $92 = $86 | $91; - $93 = ((($x)) + 16|0); - $94 = HEAP8[$93>>0]|0; - $95 = ((($y)) + 16|0); + $91 = ((($1)) + 15|0); + $92 = HEAP8[$91>>0]|0; + $93 = $92 ^ $90; + $94 = $88 | $93; + $95 = ((($0)) + 16|0); $96 = HEAP8[$95>>0]|0; - $97 = $96 ^ $94; - $98 = $92 | $97; - $99 = ((($x)) + 17|0); - $100 = HEAP8[$99>>0]|0; - $101 = ((($y)) + 17|0); + $97 = ((($1)) + 16|0); + $98 = HEAP8[$97>>0]|0; + $99 = $98 ^ $96; + $100 = $94 | $99; + $101 = ((($0)) + 17|0); $102 = HEAP8[$101>>0]|0; - $103 = $102 ^ $100; - $104 = $98 | $103; - $105 = ((($x)) + 18|0); - $106 = HEAP8[$105>>0]|0; - $107 = ((($y)) + 18|0); + $103 = ((($1)) + 17|0); + $104 = HEAP8[$103>>0]|0; + $105 = $104 ^ $102; + $106 = $100 | $105; + $107 = ((($0)) + 18|0); $108 = HEAP8[$107>>0]|0; - $109 = $108 ^ $106; - $110 = $104 | $109; - $111 = ((($x)) + 19|0); - $112 = HEAP8[$111>>0]|0; - $113 = ((($y)) + 19|0); + $109 = ((($1)) + 18|0); + $110 = HEAP8[$109>>0]|0; + $111 = $110 ^ $108; + $112 = $106 | $111; + $113 = ((($0)) + 19|0); $114 = HEAP8[$113>>0]|0; - $115 = $114 ^ $112; - $116 = $110 | $115; - $117 = ((($x)) + 20|0); - $118 = HEAP8[$117>>0]|0; - $119 = ((($y)) + 20|0); + $115 = ((($1)) + 19|0); + $116 = HEAP8[$115>>0]|0; + $117 = $116 ^ $114; + $118 = $112 | $117; + $119 = ((($0)) + 20|0); $120 = HEAP8[$119>>0]|0; - $121 = $120 ^ $118; - $122 = $116 | $121; - $123 = ((($x)) + 21|0); - $124 = HEAP8[$123>>0]|0; - $125 = ((($y)) + 21|0); + $121 = ((($1)) + 20|0); + $122 = HEAP8[$121>>0]|0; + $123 = $122 ^ $120; + $124 = $118 | $123; + $125 = ((($0)) + 21|0); $126 = HEAP8[$125>>0]|0; - $127 = $126 ^ $124; - $128 = $122 | $127; - $129 = ((($x)) + 22|0); - $130 = HEAP8[$129>>0]|0; - $131 = ((($y)) + 22|0); + $127 = ((($1)) + 21|0); + $128 = HEAP8[$127>>0]|0; + $129 = $128 ^ $126; + $130 = $124 | $129; + $131 = ((($0)) + 22|0); $132 = HEAP8[$131>>0]|0; - $133 = $132 ^ $130; - $134 = $128 | $133; - $135 = ((($x)) + 23|0); - $136 = HEAP8[$135>>0]|0; - $137 = ((($y)) + 23|0); + $133 = ((($1)) + 22|0); + $134 = HEAP8[$133>>0]|0; + $135 = $134 ^ $132; + $136 = $130 | $135; + $137 = ((($0)) + 23|0); $138 = HEAP8[$137>>0]|0; - $139 = $138 ^ $136; - $140 = $134 | $139; - $141 = ((($x)) + 24|0); - $142 = HEAP8[$141>>0]|0; - $143 = ((($y)) + 24|0); + $139 = ((($1)) + 23|0); + $140 = HEAP8[$139>>0]|0; + $141 = $140 ^ $138; + $142 = $136 | $141; + $143 = ((($0)) + 24|0); $144 = HEAP8[$143>>0]|0; - $145 = $144 ^ $142; - $146 = $140 | $145; - $147 = ((($x)) + 25|0); - $148 = HEAP8[$147>>0]|0; - $149 = ((($y)) + 25|0); + $145 = ((($1)) + 24|0); + $146 = HEAP8[$145>>0]|0; + $147 = $146 ^ $144; + $148 = $142 | $147; + $149 = ((($0)) + 25|0); $150 = HEAP8[$149>>0]|0; - $151 = $150 ^ $148; - $152 = $146 | $151; - $153 = ((($x)) + 26|0); - $154 = HEAP8[$153>>0]|0; - $155 = ((($y)) + 26|0); + $151 = ((($1)) + 25|0); + $152 = HEAP8[$151>>0]|0; + $153 = $152 ^ $150; + $154 = $148 | $153; + $155 = ((($0)) + 26|0); $156 = HEAP8[$155>>0]|0; - $157 = $156 ^ $154; - $158 = $152 | $157; - $159 = ((($x)) + 27|0); - $160 = HEAP8[$159>>0]|0; - $161 = ((($y)) + 27|0); + $157 = ((($1)) + 26|0); + $158 = HEAP8[$157>>0]|0; + $159 = $158 ^ $156; + $160 = $154 | $159; + $161 = ((($0)) + 27|0); $162 = HEAP8[$161>>0]|0; - $163 = $162 ^ $160; - $164 = $158 | $163; - $165 = ((($x)) + 28|0); - $166 = HEAP8[$165>>0]|0; - $167 = ((($y)) + 28|0); + $163 = ((($1)) + 27|0); + $164 = HEAP8[$163>>0]|0; + $165 = $164 ^ $162; + $166 = $160 | $165; + $167 = ((($0)) + 28|0); $168 = HEAP8[$167>>0]|0; - $169 = $168 ^ $166; - $170 = $164 | $169; - $171 = ((($x)) + 29|0); - $172 = HEAP8[$171>>0]|0; - $173 = ((($y)) + 29|0); + $169 = ((($1)) + 28|0); + $170 = HEAP8[$169>>0]|0; + $171 = $170 ^ $168; + $172 = $166 | $171; + $173 = ((($0)) + 29|0); $174 = HEAP8[$173>>0]|0; - $175 = $174 ^ $172; - $176 = $170 | $175; - $177 = ((($x)) + 30|0); - $178 = HEAP8[$177>>0]|0; - $179 = ((($y)) + 30|0); + $175 = ((($1)) + 29|0); + $176 = HEAP8[$175>>0]|0; + $177 = $176 ^ $174; + $178 = $172 | $177; + $179 = ((($0)) + 30|0); $180 = HEAP8[$179>>0]|0; - $181 = $180 ^ $178; - $182 = $176 | $181; - $183 = ((($x)) + 31|0); - $184 = HEAP8[$183>>0]|0; - $185 = ((($y)) + 31|0); + $181 = ((($1)) + 30|0); + $182 = HEAP8[$181>>0]|0; + $183 = $182 ^ $180; + $184 = $178 | $183; + $185 = ((($0)) + 31|0); $186 = HEAP8[$185>>0]|0; - $187 = $186 ^ $184; - $188 = $182 | $187; - $189 = $188&255; - $190 = (($189) + 511)|0; - $191 = $190 >>> 8; - $192 = $191 & 1; - $193 = (($192) + -1)|0; - return ($193|0); -} -function _curve25519_sign($signature_out,$curve25519_privkey,$msg,$msg_len) { - $signature_out = $signature_out|0; - $curve25519_privkey = $curve25519_privkey|0; - $msg = $msg|0; - $msg_len = $msg_len|0; - var $$alloca_mul = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $ed_keypair = 0, $ed_pubkey_point = 0, $sigbuf_out_len = 0; - var dest = 0, label = 0, sp = 0, src = 0, stop = 0; + $187 = ((($1)) + 31|0); + $188 = HEAP8[$187>>0]|0; + $189 = $188 ^ $186; + $190 = $184 | $189; + $191 = $190&255; + $192 = (($191) + 511)|0; + $193 = $192 >>> 8; + $194 = $193 & 1; + $195 = (($194) + -1)|0; + return ($195|0); +} +function _curve25519_sign($0,$1,$2,$3) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + var $$alloca_mul = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, dest = 0, label = 0; + var sp = 0, src = 0, stop = 0; sp = STACKTOP; STACKTOP = STACKTOP + 240|0; - $ed_pubkey_point = sp + 8|0; - $ed_keypair = sp + 168|0; - $sigbuf_out_len = sp; - $0 = (($msg_len) + 64)|0; - $$alloca_mul = $0; - $1 = STACKTOP; STACKTOP = STACKTOP + ((((1*$$alloca_mul)|0)+15)&-16)|0;; - $2 = $sigbuf_out_len; - $3 = $2; - HEAP32[$3>>2] = 0; - $4 = (($2) + 4)|0; - $5 = $4; - HEAP32[$5>>2] = 0; - dest=$ed_keypair; src=$curve25519_privkey; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - _crypto_sign_ed25519_ref10_ge_scalarmult_base($ed_pubkey_point,$curve25519_privkey); - $6 = ((($ed_keypair)) + 32|0); - _crypto_sign_ed25519_ref10_ge_p3_tobytes($6,$ed_pubkey_point); - $7 = ((($ed_keypair)) + 63|0); - $8 = HEAP8[$7>>0]|0; - $9 = $8&255; - $10 = $9 & 128; - (_crypto_sign_modified($1,$sigbuf_out_len,$msg,$msg_len,0,$ed_keypair)|0); - dest=$signature_out; src=$1; stop=dest+64|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - $11 = ((($signature_out)) + 63|0); - $12 = HEAP8[$11>>0]|0; - $13 = $12&255; - $14 = $13 | $10; - $15 = $14&255; - HEAP8[$11>>0] = $15; + $4 = sp + 8|0; + $5 = sp + 168|0; + $6 = sp; + $7 = (($3) + 64)|0; + $8 = (_llvm_stacksave()|0); + $$alloca_mul = $7; + $9 = STACKTOP; STACKTOP = STACKTOP + ((((1*$$alloca_mul)|0)+15)&-16)|0;; + $10 = $6; + $11 = $10; + HEAP32[$11>>2] = 0; + $12 = (($10) + 4)|0; + $13 = $12; + HEAP32[$13>>2] = 0; + dest=$5; src=$1; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _crypto_sign_ed25519_ref10_ge_scalarmult_base($4,$1); + $14 = ((($5)) + 32|0); + _crypto_sign_ed25519_ref10_ge_p3_tobytes($14,$4); + $15 = ((($5)) + 63|0); + $16 = HEAP8[$15>>0]|0; + $17 = $16 & -128; + (_crypto_sign_modified($9,$6,$2,$3,0,$5)|0); + dest=$0; src=$9; stop=dest+64|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $18 = ((($0)) + 63|0); + $19 = HEAP8[$18>>0]|0; + $20 = $19 | $17; + HEAP8[$18>>0] = $20; + _llvm_stackrestore(($8|0)); STACKTOP = sp;return; } -function _curve25519_verify($signature,$curve25519_pubkey,$msg,$msg_len) { - $signature = $signature|0; - $curve25519_pubkey = $curve25519_pubkey|0; - $msg = $msg|0; - $msg_len = $msg_len|0; - var $$alloca_mul = 0, $$alloca_mul1 = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0; - var $ed_pubkey = 0, $ed_y = 0, $inv_mont_x_plus_one = 0, $mont_x = 0, $mont_x_minus_one = 0, $mont_x_plus_one = 0, $one = 0, $some_retval = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; +function _curve25519_verify($0,$1,$2,$3) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + var $$alloca_mul = 0, $$alloca_mul9 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $4 = 0, $5 = 0, $6 = 0; + var $7 = 0, $8 = 0, $9 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; sp = STACKTOP; STACKTOP = STACKTOP + 288|0; - $mont_x = sp + 208|0; - $mont_x_minus_one = sp + 168|0; - $mont_x_plus_one = sp + 128|0; - $inv_mont_x_plus_one = sp + 88|0; - $one = sp + 48|0; - $ed_y = sp + 8|0; - $ed_pubkey = sp + 248|0; - $some_retval = sp; - $0 = (($msg_len) + 64)|0; - $$alloca_mul = $0; - $1 = STACKTOP; STACKTOP = STACKTOP + ((((1*$$alloca_mul)|0)+15)&-16)|0;; - $$alloca_mul1 = $0; - $2 = STACKTOP; STACKTOP = STACKTOP + ((((1*$$alloca_mul1)|0)+15)&-16)|0;; - _crypto_sign_ed25519_ref10_fe_frombytes($mont_x,$curve25519_pubkey); - _crypto_sign_ed25519_ref10_fe_1($one); - _crypto_sign_ed25519_ref10_fe_sub($mont_x_minus_one,$mont_x,$one); - _crypto_sign_ed25519_ref10_fe_add($mont_x_plus_one,$mont_x,$one); - _crypto_sign_ed25519_ref10_fe_invert($inv_mont_x_plus_one,$mont_x_plus_one); - _crypto_sign_ed25519_ref10_fe_mul($ed_y,$mont_x_minus_one,$inv_mont_x_plus_one); - _crypto_sign_ed25519_ref10_fe_tobytes($ed_pubkey,$ed_y); - $3 = ((($signature)) + 63|0); - $4 = HEAP8[$3>>0]|0; - $5 = $4&255; - $6 = $5 & 128; - $7 = ((($ed_pubkey)) + 31|0); - $8 = HEAP8[$7>>0]|0; - $9 = $8&255; - $10 = $9 | $6; - $11 = $10&255; - HEAP8[$7>>0] = $11; - $12 = HEAP8[$3>>0]|0; - $13 = $12&255; - $14 = $13 & 127; - $15 = $14&255; - HEAP8[$3>>0] = $15; - dest=$1; src=$signature; stop=dest+64|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - $16 = ((($1)) + 64|0); - _memcpy(($16|0),($msg|0),($msg_len|0))|0; - $17 = (_crypto_sign_edwards25519sha512batch_ref10_open($2,$some_retval,$1,$0,0,$ed_pubkey)|0); - STACKTOP = sp;return ($17|0); -} -function _crypto_hash_sha512_ref($output,$input,$0,$1) { - $output = $output|0; - $input = $input|0; + $4 = sp + 208|0; + $5 = sp + 168|0; + $6 = sp + 128|0; + $7 = sp + 88|0; + $8 = sp + 48|0; + $9 = sp + 8|0; + $10 = sp + 248|0; + $11 = sp; + $12 = (($3) + 64)|0; + $13 = (_llvm_stacksave()|0); + $$alloca_mul = $12; + $14 = STACKTOP; STACKTOP = STACKTOP + ((((1*$$alloca_mul)|0)+15)&-16)|0;; + $$alloca_mul9 = $12; + $15 = STACKTOP; STACKTOP = STACKTOP + ((((1*$$alloca_mul9)|0)+15)&-16)|0;; + _crypto_sign_ed25519_ref10_fe_frombytes($4,$1); + _crypto_sign_ed25519_ref10_fe_1($8); + _crypto_sign_ed25519_ref10_fe_sub($5,$4,$8); + _crypto_sign_ed25519_ref10_fe_add($6,$4,$8); + _crypto_sign_ed25519_ref10_fe_invert($7,$6); + _crypto_sign_ed25519_ref10_fe_mul($9,$5,$7); + _crypto_sign_ed25519_ref10_fe_tobytes($10,$9); + $16 = ((($0)) + 63|0); + $17 = HEAP8[$16>>0]|0; + $18 = $17 & -128; + $19 = ((($10)) + 31|0); + $20 = HEAP8[$19>>0]|0; + $21 = $20 | $18; + HEAP8[$19>>0] = $21; + $22 = $17 & 127; + HEAP8[$16>>0] = $22; + dest=$14; src=$0; stop=dest+64|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $23 = ((($14)) + 64|0); + _memcpy(($23|0),($2|0),($3|0))|0; + $24 = (_crypto_sign_edwards25519sha512batch_ref10_open($15,$11,$14,$12,0,$10)|0); + _llvm_stackrestore(($13|0)); + STACKTOP = sp;return ($24|0); +} +function _crypto_hash_sha512_ref($0,$1,$2,$3) { $0 = $0|0; $1 = $1|0; - var $ctx = 0, label = 0, sp = 0; + $2 = $2|0; + $3 = $3|0; + var $4 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 208|0; - $ctx = sp; - _sph_sha512_init($ctx); - _sph_sha384($ctx,$input,$0); - _sph_sha512_close($ctx,$output); + $4 = sp; + _sph_sha512_init($4); + _sph_sha384($4,$1,$2); + _sph_sha512_close($4,$0); STACKTOP = sp;return 0; } -function _crypto_sign_modified($sm,$smlen,$m,$0,$1,$sk) { - $sm = $sm|0; - $smlen = $smlen|0; - $m = $m|0; +function _crypto_sign_modified($0,$1,$2,$3,$4,$5) { $0 = $0|0; $1 = $1|0; - $sk = $sk|0; - var $10 = 0, $11 = 0, $12 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $R = 0, $hram = 0, $nonce = 0, $pk1 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + $2 = $2|0; + $3 = $3|0; + $4 = $4|0; + $5 = $5|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; sp = STACKTOP; STACKTOP = STACKTOP + 320|0; - $pk1 = sp + 224|0; - $nonce = sp + 256|0; - $hram = sp + 160|0; - $R = sp; - $2 = ((($sk)) + 32|0); - dest=$pk1; src=$2; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - $3 = (_i64Add(($0|0),($1|0),64,0)|0); - $4 = tempRet0; - $5 = $smlen; - $6 = $5; - HEAP32[$6>>2] = $3; - $7 = (($5) + 4)|0; - $8 = $7; - HEAP32[$8>>2] = $4; - $9 = ((($sm)) + 64|0); - _memmove(($9|0),($m|0),($0|0))|0; - $10 = ((($sm)) + 32|0); - _memmove(($10|0),($sk|0),32)|0; - $11 = (_i64Add(($0|0),($1|0),32,0)|0); + $6 = sp + 288|0; + $7 = sp + 224|0; + $8 = sp + 160|0; + $9 = sp; + $10 = ((($5)) + 32|0); + dest=$6; src=$10; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $11 = (_i64Add(($3|0),($4|0),64,0)|0); $12 = tempRet0; - (_crypto_hash_sha512_ref($nonce,$10,$11,$12)|0); - dest=$10; src=$pk1; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - _crypto_sign_ed25519_ref10_sc_reduce($nonce); - _crypto_sign_ed25519_ref10_ge_scalarmult_base($R,$nonce); - _crypto_sign_ed25519_ref10_ge_p3_tobytes($sm,$R); - (_crypto_hash_sha512_ref($hram,$sm,$3,$4)|0); - _crypto_sign_ed25519_ref10_sc_reduce($hram); - _crypto_sign_ed25519_ref10_sc_muladd($10,$hram,$sk,$nonce); + $13 = $1; + $14 = $13; + HEAP32[$14>>2] = $11; + $15 = (($13) + 4)|0; + $16 = $15; + HEAP32[$16>>2] = $12; + $17 = ((($0)) + 64|0); + _memmove(($17|0),($2|0),($3|0))|0; + $18 = ((($0)) + 32|0); + _memmove(($18|0),($5|0),32)|0; + $19 = (_i64Add(($3|0),($4|0),32,0)|0); + $20 = tempRet0; + (_crypto_hash_sha512_ref($7,$18,$19,$20)|0); + dest=$18; src=$6; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _crypto_sign_ed25519_ref10_sc_reduce($7); + _crypto_sign_ed25519_ref10_ge_scalarmult_base($9,$7); + _crypto_sign_ed25519_ref10_ge_p3_tobytes($0,$9); + (_crypto_hash_sha512_ref($8,$0,$11,$12)|0); + _crypto_sign_ed25519_ref10_sc_reduce($8); + _crypto_sign_ed25519_ref10_sc_muladd($18,$8,$5,$7); STACKTOP = sp;return 0; } -function _curve25519_donna($mypublic,$secret,$basepoint) { - $mypublic = $mypublic|0; - $secret = $secret|0; - $basepoint = $basepoint|0; - var $bp = 0, $e = 0, $x = 0, $z = 0, $zmone = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; +function _curve25519_donna($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; sp = STACKTOP; STACKTOP = STACKTOP + 368|0; - $bp = sp + 248|0; - $x = sp + 168|0; - $z = sp + 80|0; - $zmone = sp; - $e = sp + 328|0; - dest=$e; src=$secret; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - _fexpand($bp,$basepoint); - _cmult($x,$z,$e,$bp); - _crecip($zmone,$z); - _fmul($z,$x,$zmone); - _fcontract($mypublic,$z); + $3 = sp + 248|0; + $4 = sp + 168|0; + $5 = sp + 80|0; + $6 = sp; + $7 = sp + 328|0; + dest=$7; src=$1; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _fexpand($3,$2); + _cmult($4,$5,$7,$3); + _crecip($6,$5); + _fmul($5,$4,$6); + _fcontract($0,$5); STACKTOP = sp;return 0; } -function _fexpand($output,$input) { - $output = $output|0; - $input = $input|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; - var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; - var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; - var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; - var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; - var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $3 = 0, $30 = 0, $31 = 0; +function _fexpand($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0; + var $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0; + var $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0; + var $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0; + var $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0; + var $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $3 = 0, $30 = 0, $31 = 0; var $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0; var $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0; var $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0; var $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP8[$input>>0]|0; - $1 = $0&255; - $2 = ((($input)) + 1|0); - $3 = HEAP8[$2>>0]|0; - $4 = $3&255; - $5 = (_bitshift64Shl(($4|0),0,8)|0); - $6 = tempRet0; - $7 = $5 | $1; - $8 = ((($input)) + 2|0); - $9 = HEAP8[$8>>0]|0; - $10 = $9&255; - $11 = (_bitshift64Shl(($10|0),0,16)|0); - $12 = tempRet0; - $13 = $7 | $11; - $14 = $6 | $12; - $15 = ((($input)) + 3|0); - $16 = HEAP8[$15>>0]|0; - $17 = $16&255; - $18 = (_bitshift64Shl(($17|0),0,24)|0); - $19 = tempRet0; - $20 = $18 & 50331648; - $21 = $13 | $20; - $22 = $output; - $23 = $22; - HEAP32[$23>>2] = $21; - $24 = (($22) + 4)|0; + $2 = HEAP8[$1>>0]|0; + $3 = $2&255; + $4 = ((($1)) + 1|0); + $5 = HEAP8[$4>>0]|0; + $6 = $5&255; + $7 = (_bitshift64Shl(($6|0),0,8)|0); + $8 = tempRet0; + $9 = $7 | $3; + $10 = ((($1)) + 2|0); + $11 = HEAP8[$10>>0]|0; + $12 = $11&255; + $13 = (_bitshift64Shl(($12|0),0,16)|0); + $14 = tempRet0; + $15 = $9 | $13; + $16 = $8 | $14; + $17 = ((($1)) + 3|0); + $18 = HEAP8[$17>>0]|0; + $19 = $18&255; + $20 = (_bitshift64Shl(($19|0),0,24)|0); + $21 = tempRet0; + $22 = $20 & 50331648; + $23 = $15 | $22; + $24 = $0; $25 = $24; - HEAP32[$25>>2] = $14; - $26 = HEAP8[$15>>0]|0; - $27 = $26&255; - $28 = ((($input)) + 4|0); - $29 = HEAP8[$28>>0]|0; - $30 = $29&255; - $31 = (_bitshift64Shl(($30|0),0,8)|0); - $32 = tempRet0; - $33 = $31 | $27; - $34 = ((($input)) + 5|0); - $35 = HEAP8[$34>>0]|0; - $36 = $35&255; - $37 = (_bitshift64Shl(($36|0),0,16)|0); - $38 = tempRet0; - $39 = $33 | $37; - $40 = $32 | $38; - $41 = ((($input)) + 6|0); - $42 = HEAP8[$41>>0]|0; - $43 = $42&255; - $44 = (_bitshift64Shl(($43|0),0,24)|0); - $45 = tempRet0; - $46 = $39 | $44; - $47 = $40 | $45; - $48 = (_bitshift64Lshr(($46|0),($47|0),2)|0); - $49 = tempRet0; - $50 = $48 & 33554431; - $51 = ((($output)) + 8|0); - $52 = $51; - $53 = $52; - HEAP32[$53>>2] = $50; - $54 = (($52) + 4)|0; + HEAP32[$25>>2] = $23; + $26 = (($24) + 4)|0; + $27 = $26; + HEAP32[$27>>2] = $16; + $28 = HEAP8[$17>>0]|0; + $29 = $28&255; + $30 = ((($1)) + 4|0); + $31 = HEAP8[$30>>0]|0; + $32 = $31&255; + $33 = (_bitshift64Shl(($32|0),0,8)|0); + $34 = tempRet0; + $35 = $33 | $29; + $36 = ((($1)) + 5|0); + $37 = HEAP8[$36>>0]|0; + $38 = $37&255; + $39 = (_bitshift64Shl(($38|0),0,16)|0); + $40 = tempRet0; + $41 = $35 | $39; + $42 = $34 | $40; + $43 = ((($1)) + 6|0); + $44 = HEAP8[$43>>0]|0; + $45 = $44&255; + $46 = (_bitshift64Shl(($45|0),0,24)|0); + $47 = tempRet0; + $48 = $41 | $46; + $49 = $42 | $47; + $50 = (_bitshift64Lshr(($48|0),($49|0),2)|0); + $51 = tempRet0; + $52 = $50 & 33554431; + $53 = ((($0)) + 8|0); + $54 = $53; $55 = $54; - HEAP32[$55>>2] = 0; - $56 = HEAP8[$41>>0]|0; - $57 = $56&255; - $58 = ((($input)) + 7|0); - $59 = HEAP8[$58>>0]|0; - $60 = $59&255; - $61 = (_bitshift64Shl(($60|0),0,8)|0); - $62 = tempRet0; - $63 = $61 | $57; - $64 = ((($input)) + 8|0); - $65 = HEAP8[$64>>0]|0; - $66 = $65&255; - $67 = (_bitshift64Shl(($66|0),0,16)|0); - $68 = tempRet0; - $69 = $63 | $67; - $70 = $62 | $68; - $71 = ((($input)) + 9|0); - $72 = HEAP8[$71>>0]|0; - $73 = $72&255; - $74 = (_bitshift64Shl(($73|0),0,24)|0); - $75 = tempRet0; - $76 = $69 | $74; - $77 = $70 | $75; - $78 = (_bitshift64Lshr(($76|0),($77|0),3)|0); - $79 = tempRet0; - $80 = $78 & 67108863; - $81 = ((($output)) + 16|0); - $82 = $81; - $83 = $82; - HEAP32[$83>>2] = $80; - $84 = (($82) + 4)|0; + HEAP32[$55>>2] = $52; + $56 = (($54) + 4)|0; + $57 = $56; + HEAP32[$57>>2] = 0; + $58 = HEAP8[$43>>0]|0; + $59 = $58&255; + $60 = ((($1)) + 7|0); + $61 = HEAP8[$60>>0]|0; + $62 = $61&255; + $63 = (_bitshift64Shl(($62|0),0,8)|0); + $64 = tempRet0; + $65 = $63 | $59; + $66 = ((($1)) + 8|0); + $67 = HEAP8[$66>>0]|0; + $68 = $67&255; + $69 = (_bitshift64Shl(($68|0),0,16)|0); + $70 = tempRet0; + $71 = $65 | $69; + $72 = $64 | $70; + $73 = ((($1)) + 9|0); + $74 = HEAP8[$73>>0]|0; + $75 = $74&255; + $76 = (_bitshift64Shl(($75|0),0,24)|0); + $77 = tempRet0; + $78 = $71 | $76; + $79 = $72 | $77; + $80 = (_bitshift64Lshr(($78|0),($79|0),3)|0); + $81 = tempRet0; + $82 = $80 & 67108863; + $83 = ((($0)) + 16|0); + $84 = $83; $85 = $84; - HEAP32[$85>>2] = 0; - $86 = HEAP8[$71>>0]|0; - $87 = $86&255; - $88 = ((($input)) + 10|0); - $89 = HEAP8[$88>>0]|0; - $90 = $89&255; - $91 = (_bitshift64Shl(($90|0),0,8)|0); - $92 = tempRet0; - $93 = $91 | $87; - $94 = ((($input)) + 11|0); - $95 = HEAP8[$94>>0]|0; - $96 = $95&255; - $97 = (_bitshift64Shl(($96|0),0,16)|0); - $98 = tempRet0; - $99 = $93 | $97; - $100 = $92 | $98; - $101 = ((($input)) + 12|0); - $102 = HEAP8[$101>>0]|0; - $103 = $102&255; - $104 = (_bitshift64Shl(($103|0),0,24)|0); - $105 = tempRet0; - $106 = $99 | $104; - $107 = $100 | $105; - $108 = (_bitshift64Lshr(($106|0),($107|0),5)|0); - $109 = tempRet0; - $110 = $108 & 33554431; - $111 = ((($output)) + 24|0); - $112 = $111; - $113 = $112; - HEAP32[$113>>2] = $110; - $114 = (($112) + 4)|0; + HEAP32[$85>>2] = $82; + $86 = (($84) + 4)|0; + $87 = $86; + HEAP32[$87>>2] = 0; + $88 = HEAP8[$73>>0]|0; + $89 = $88&255; + $90 = ((($1)) + 10|0); + $91 = HEAP8[$90>>0]|0; + $92 = $91&255; + $93 = (_bitshift64Shl(($92|0),0,8)|0); + $94 = tempRet0; + $95 = $93 | $89; + $96 = ((($1)) + 11|0); + $97 = HEAP8[$96>>0]|0; + $98 = $97&255; + $99 = (_bitshift64Shl(($98|0),0,16)|0); + $100 = tempRet0; + $101 = $95 | $99; + $102 = $94 | $100; + $103 = ((($1)) + 12|0); + $104 = HEAP8[$103>>0]|0; + $105 = $104&255; + $106 = (_bitshift64Shl(($105|0),0,24)|0); + $107 = tempRet0; + $108 = $101 | $106; + $109 = $102 | $107; + $110 = (_bitshift64Lshr(($108|0),($109|0),5)|0); + $111 = tempRet0; + $112 = $110 & 33554431; + $113 = ((($0)) + 24|0); + $114 = $113; $115 = $114; - HEAP32[$115>>2] = 0; - $116 = HEAP8[$101>>0]|0; - $117 = $116&255; - $118 = ((($input)) + 13|0); - $119 = HEAP8[$118>>0]|0; - $120 = $119&255; - $121 = (_bitshift64Shl(($120|0),0,8)|0); - $122 = tempRet0; - $123 = $121 | $117; - $124 = ((($input)) + 14|0); - $125 = HEAP8[$124>>0]|0; - $126 = $125&255; - $127 = (_bitshift64Shl(($126|0),0,16)|0); - $128 = tempRet0; - $129 = $123 | $127; - $130 = $122 | $128; - $131 = ((($input)) + 15|0); - $132 = HEAP8[$131>>0]|0; - $133 = $132&255; - $134 = (_bitshift64Shl(($133|0),0,24)|0); - $135 = tempRet0; - $136 = $129 | $134; - $137 = $130 | $135; - $138 = (_bitshift64Lshr(($136|0),($137|0),6)|0); - $139 = tempRet0; - $140 = $138 & 67108863; - $141 = ((($output)) + 32|0); - $142 = $141; - $143 = $142; - HEAP32[$143>>2] = $140; - $144 = (($142) + 4)|0; + HEAP32[$115>>2] = $112; + $116 = (($114) + 4)|0; + $117 = $116; + HEAP32[$117>>2] = 0; + $118 = HEAP8[$103>>0]|0; + $119 = $118&255; + $120 = ((($1)) + 13|0); + $121 = HEAP8[$120>>0]|0; + $122 = $121&255; + $123 = (_bitshift64Shl(($122|0),0,8)|0); + $124 = tempRet0; + $125 = $123 | $119; + $126 = ((($1)) + 14|0); + $127 = HEAP8[$126>>0]|0; + $128 = $127&255; + $129 = (_bitshift64Shl(($128|0),0,16)|0); + $130 = tempRet0; + $131 = $125 | $129; + $132 = $124 | $130; + $133 = ((($1)) + 15|0); + $134 = HEAP8[$133>>0]|0; + $135 = $134&255; + $136 = (_bitshift64Shl(($135|0),0,24)|0); + $137 = tempRet0; + $138 = $131 | $136; + $139 = $132 | $137; + $140 = (_bitshift64Lshr(($138|0),($139|0),6)|0); + $141 = tempRet0; + $142 = $140 & 67108863; + $143 = ((($0)) + 32|0); + $144 = $143; $145 = $144; - HEAP32[$145>>2] = 0; - $146 = ((($input)) + 16|0); - $147 = HEAP8[$146>>0]|0; - $148 = $147&255; - $149 = ((($input)) + 17|0); - $150 = HEAP8[$149>>0]|0; - $151 = $150&255; - $152 = (_bitshift64Shl(($151|0),0,8)|0); - $153 = tempRet0; - $154 = $152 | $148; - $155 = ((($input)) + 18|0); - $156 = HEAP8[$155>>0]|0; - $157 = $156&255; - $158 = (_bitshift64Shl(($157|0),0,16)|0); - $159 = tempRet0; - $160 = $154 | $158; - $161 = $153 | $159; - $162 = ((($input)) + 19|0); - $163 = HEAP8[$162>>0]|0; - $164 = $163&255; - $165 = (_bitshift64Shl(($164|0),0,24)|0); - $166 = tempRet0; - $167 = $165 & 16777216; - $168 = $160 | $167; - $169 = ((($output)) + 40|0); - $170 = $169; - $171 = $170; - HEAP32[$171>>2] = $168; - $172 = (($170) + 4)|0; + HEAP32[$145>>2] = $142; + $146 = (($144) + 4)|0; + $147 = $146; + HEAP32[$147>>2] = 0; + $148 = ((($1)) + 16|0); + $149 = HEAP8[$148>>0]|0; + $150 = $149&255; + $151 = ((($1)) + 17|0); + $152 = HEAP8[$151>>0]|0; + $153 = $152&255; + $154 = (_bitshift64Shl(($153|0),0,8)|0); + $155 = tempRet0; + $156 = $154 | $150; + $157 = ((($1)) + 18|0); + $158 = HEAP8[$157>>0]|0; + $159 = $158&255; + $160 = (_bitshift64Shl(($159|0),0,16)|0); + $161 = tempRet0; + $162 = $156 | $160; + $163 = $155 | $161; + $164 = ((($1)) + 19|0); + $165 = HEAP8[$164>>0]|0; + $166 = $165&255; + $167 = (_bitshift64Shl(($166|0),0,24)|0); + $168 = tempRet0; + $169 = $167 & 16777216; + $170 = $162 | $169; + $171 = ((($0)) + 40|0); + $172 = $171; $173 = $172; - HEAP32[$173>>2] = $161; - $174 = HEAP8[$162>>0]|0; - $175 = $174&255; - $176 = ((($input)) + 20|0); - $177 = HEAP8[$176>>0]|0; - $178 = $177&255; - $179 = (_bitshift64Shl(($178|0),0,8)|0); - $180 = tempRet0; - $181 = $179 | $175; - $182 = ((($input)) + 21|0); - $183 = HEAP8[$182>>0]|0; - $184 = $183&255; - $185 = (_bitshift64Shl(($184|0),0,16)|0); - $186 = tempRet0; - $187 = $181 | $185; - $188 = $180 | $186; - $189 = ((($input)) + 22|0); - $190 = HEAP8[$189>>0]|0; - $191 = $190&255; - $192 = (_bitshift64Shl(($191|0),0,24)|0); - $193 = tempRet0; - $194 = $187 | $192; - $195 = $188 | $193; - $196 = (_bitshift64Lshr(($194|0),($195|0),1)|0); - $197 = tempRet0; - $198 = $196 & 67108863; - $199 = ((($output)) + 48|0); - $200 = $199; - $201 = $200; - HEAP32[$201>>2] = $198; - $202 = (($200) + 4)|0; + HEAP32[$173>>2] = $170; + $174 = (($172) + 4)|0; + $175 = $174; + HEAP32[$175>>2] = $163; + $176 = HEAP8[$164>>0]|0; + $177 = $176&255; + $178 = ((($1)) + 20|0); + $179 = HEAP8[$178>>0]|0; + $180 = $179&255; + $181 = (_bitshift64Shl(($180|0),0,8)|0); + $182 = tempRet0; + $183 = $181 | $177; + $184 = ((($1)) + 21|0); + $185 = HEAP8[$184>>0]|0; + $186 = $185&255; + $187 = (_bitshift64Shl(($186|0),0,16)|0); + $188 = tempRet0; + $189 = $183 | $187; + $190 = $182 | $188; + $191 = ((($1)) + 22|0); + $192 = HEAP8[$191>>0]|0; + $193 = $192&255; + $194 = (_bitshift64Shl(($193|0),0,24)|0); + $195 = tempRet0; + $196 = $189 | $194; + $197 = $190 | $195; + $198 = (_bitshift64Lshr(($196|0),($197|0),1)|0); + $199 = tempRet0; + $200 = $198 & 67108863; + $201 = ((($0)) + 48|0); + $202 = $201; $203 = $202; - HEAP32[$203>>2] = 0; - $204 = HEAP8[$189>>0]|0; - $205 = $204&255; - $206 = ((($input)) + 23|0); - $207 = HEAP8[$206>>0]|0; - $208 = $207&255; - $209 = (_bitshift64Shl(($208|0),0,8)|0); - $210 = tempRet0; - $211 = $209 | $205; - $212 = ((($input)) + 24|0); - $213 = HEAP8[$212>>0]|0; - $214 = $213&255; - $215 = (_bitshift64Shl(($214|0),0,16)|0); - $216 = tempRet0; - $217 = $211 | $215; - $218 = $210 | $216; - $219 = ((($input)) + 25|0); - $220 = HEAP8[$219>>0]|0; - $221 = $220&255; - $222 = (_bitshift64Shl(($221|0),0,24)|0); - $223 = tempRet0; - $224 = $217 | $222; - $225 = $218 | $223; - $226 = (_bitshift64Lshr(($224|0),($225|0),3)|0); - $227 = tempRet0; - $228 = $226 & 33554431; - $229 = ((($output)) + 56|0); - $230 = $229; - $231 = $230; - HEAP32[$231>>2] = $228; - $232 = (($230) + 4)|0; + HEAP32[$203>>2] = $200; + $204 = (($202) + 4)|0; + $205 = $204; + HEAP32[$205>>2] = 0; + $206 = HEAP8[$191>>0]|0; + $207 = $206&255; + $208 = ((($1)) + 23|0); + $209 = HEAP8[$208>>0]|0; + $210 = $209&255; + $211 = (_bitshift64Shl(($210|0),0,8)|0); + $212 = tempRet0; + $213 = $211 | $207; + $214 = ((($1)) + 24|0); + $215 = HEAP8[$214>>0]|0; + $216 = $215&255; + $217 = (_bitshift64Shl(($216|0),0,16)|0); + $218 = tempRet0; + $219 = $213 | $217; + $220 = $212 | $218; + $221 = ((($1)) + 25|0); + $222 = HEAP8[$221>>0]|0; + $223 = $222&255; + $224 = (_bitshift64Shl(($223|0),0,24)|0); + $225 = tempRet0; + $226 = $219 | $224; + $227 = $220 | $225; + $228 = (_bitshift64Lshr(($226|0),($227|0),3)|0); + $229 = tempRet0; + $230 = $228 & 33554431; + $231 = ((($0)) + 56|0); + $232 = $231; $233 = $232; - HEAP32[$233>>2] = 0; - $234 = HEAP8[$219>>0]|0; - $235 = $234&255; - $236 = ((($input)) + 26|0); - $237 = HEAP8[$236>>0]|0; - $238 = $237&255; - $239 = (_bitshift64Shl(($238|0),0,8)|0); - $240 = tempRet0; - $241 = $239 | $235; - $242 = ((($input)) + 27|0); - $243 = HEAP8[$242>>0]|0; - $244 = $243&255; - $245 = (_bitshift64Shl(($244|0),0,16)|0); - $246 = tempRet0; - $247 = $241 | $245; - $248 = $240 | $246; - $249 = ((($input)) + 28|0); - $250 = HEAP8[$249>>0]|0; - $251 = $250&255; - $252 = (_bitshift64Shl(($251|0),0,24)|0); - $253 = tempRet0; - $254 = $247 | $252; - $255 = $248 | $253; - $256 = (_bitshift64Lshr(($254|0),($255|0),4)|0); - $257 = tempRet0; - $258 = $256 & 67108863; - $259 = ((($output)) + 64|0); - $260 = $259; - $261 = $260; - HEAP32[$261>>2] = $258; - $262 = (($260) + 4)|0; + HEAP32[$233>>2] = $230; + $234 = (($232) + 4)|0; + $235 = $234; + HEAP32[$235>>2] = 0; + $236 = HEAP8[$221>>0]|0; + $237 = $236&255; + $238 = ((($1)) + 26|0); + $239 = HEAP8[$238>>0]|0; + $240 = $239&255; + $241 = (_bitshift64Shl(($240|0),0,8)|0); + $242 = tempRet0; + $243 = $241 | $237; + $244 = ((($1)) + 27|0); + $245 = HEAP8[$244>>0]|0; + $246 = $245&255; + $247 = (_bitshift64Shl(($246|0),0,16)|0); + $248 = tempRet0; + $249 = $243 | $247; + $250 = $242 | $248; + $251 = ((($1)) + 28|0); + $252 = HEAP8[$251>>0]|0; + $253 = $252&255; + $254 = (_bitshift64Shl(($253|0),0,24)|0); + $255 = tempRet0; + $256 = $249 | $254; + $257 = $250 | $255; + $258 = (_bitshift64Lshr(($256|0),($257|0),4)|0); + $259 = tempRet0; + $260 = $258 & 67108863; + $261 = ((($0)) + 64|0); + $262 = $261; $263 = $262; - HEAP32[$263>>2] = 0; - $264 = HEAP8[$249>>0]|0; - $265 = $264&255; - $266 = ((($input)) + 29|0); - $267 = HEAP8[$266>>0]|0; - $268 = $267&255; - $269 = (_bitshift64Shl(($268|0),0,8)|0); - $270 = tempRet0; - $271 = $269 | $265; - $272 = ((($input)) + 30|0); - $273 = HEAP8[$272>>0]|0; - $274 = $273&255; - $275 = (_bitshift64Shl(($274|0),0,16)|0); - $276 = tempRet0; - $277 = $271 | $275; - $278 = $270 | $276; - $279 = ((($input)) + 31|0); - $280 = HEAP8[$279>>0]|0; - $281 = $280&255; - $282 = (_bitshift64Shl(($281|0),0,24)|0); - $283 = tempRet0; - $284 = $277 | $282; - $285 = $278 | $283; - $286 = (_bitshift64Lshr(($284|0),($285|0),6)|0); - $287 = tempRet0; - $288 = $286 & 33554431; - $289 = ((($output)) + 72|0); - $290 = $289; - $291 = $290; - HEAP32[$291>>2] = $288; - $292 = (($290) + 4)|0; + HEAP32[$263>>2] = $260; + $264 = (($262) + 4)|0; + $265 = $264; + HEAP32[$265>>2] = 0; + $266 = HEAP8[$251>>0]|0; + $267 = $266&255; + $268 = ((($1)) + 29|0); + $269 = HEAP8[$268>>0]|0; + $270 = $269&255; + $271 = (_bitshift64Shl(($270|0),0,8)|0); + $272 = tempRet0; + $273 = $271 | $267; + $274 = ((($1)) + 30|0); + $275 = HEAP8[$274>>0]|0; + $276 = $275&255; + $277 = (_bitshift64Shl(($276|0),0,16)|0); + $278 = tempRet0; + $279 = $273 | $277; + $280 = $272 | $278; + $281 = ((($1)) + 31|0); + $282 = HEAP8[$281>>0]|0; + $283 = $282&255; + $284 = (_bitshift64Shl(($283|0),0,24)|0); + $285 = tempRet0; + $286 = $279 | $284; + $287 = $280 | $285; + $288 = (_bitshift64Lshr(($286|0),($287|0),6)|0); + $289 = tempRet0; + $290 = $288 & 33554431; + $291 = ((($0)) + 72|0); + $292 = $291; $293 = $292; - HEAP32[$293>>2] = 0; + HEAP32[$293>>2] = $290; + $294 = (($292) + 4)|0; + $295 = $294; + HEAP32[$295>>2] = 0; return; } -function _cmult($resultx,$resultz,$n,$q) { - $resultx = $resultx|0; - $resultz = $resultz|0; - $n = $n|0; - $q = $q|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $3 = 0, $4 = 0; - var $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $a = 0, $b = 0, $byte$09 = 0, $c = 0, $d = 0, $e = 0, $exitcond = 0, $exitcond20 = 0, $f = 0, $g = 0, $h = 0, $i$018 = 0, $j$08 = 0, $nqpqx$019 = 0, $nqpqx$110 = 0; - var $nqpqx$110$lcssa = 0, $nqpqx$110$phi = 0, $nqpqx2$014 = 0, $nqpqx2$14 = 0, $nqpqx2$14$lcssa = 0, $nqpqx2$14$phi = 0, $nqpqz$013 = 0, $nqpqz$13 = 0, $nqpqz$13$lcssa = 0, $nqpqz$13$phi = 0, $nqpqz2$015 = 0, $nqpqz2$15 = 0, $nqpqz2$15$lcssa = 0, $nqpqz2$15$phi = 0, $nqx$011 = 0, $nqx$11 = 0, $nqx$11$lcssa = 0, $nqx$11$phi = 0, $nqx2$016 = 0, $nqx2$16 = 0; - var $nqx2$16$lcssa = 0, $nqx2$16$lcssa$lcssa = 0, $nqx2$16$phi = 0, $nqz$012 = 0, $nqz$12 = 0, $nqz$12$lcssa = 0, $nqz$12$phi = 0, $nqz2$017 = 0, $nqz2$17 = 0, $nqz2$17$lcssa = 0, $nqz2$17$lcssa$lcssa = 0, $nqz2$17$phi = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; +function _cmult($0,$1,$2,$3) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + var $$0104 = 0, $$06994 = 0, $$07093 = 0, $$071103 = 0, $$072102 = 0, $$074101 = 0, $$076100 = 0, $$07899 = 0, $$08098 = 0, $$08297 = 0, $$08496 = 0, $$17392 = 0, $$17392$phi = 0, $$17591 = 0, $$17591$phi = 0, $$17790 = 0, $$17790$phi = 0, $$17989 = 0, $$17989$phi = 0, $$18188 = 0; + var $$18188$phi = 0, $$18387 = 0, $$18387$phi = 0, $$18586 = 0, $$18586$phi = 0, $$195 = 0, $$195$phi = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0; + var $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0; + var $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $exitcond = 0, $exitcond105 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; sp = STACKTOP; STACKTOP = STACKTOP + 1216|0; - $a = sp + 1064|0; - $b = sp + 912|0; - $c = sp + 760|0; - $d = sp + 608|0; - $e = sp + 456|0; - $f = sp + 304|0; - $g = sp + 152|0; - $h = sp; - _memset(($a|0),0,152)|0; - _memset(($b|0),0,152)|0; - $0 = $b; - $1 = $0; - HEAP32[$1>>2] = 1; - $2 = (($0) + 4)|0; - $3 = $2; - HEAP32[$3>>2] = 0; - _memset(($c|0),0,152)|0; - $4 = $c; - $5 = $4; - HEAP32[$5>>2] = 1; - $6 = (($4) + 4)|0; - $7 = $6; - HEAP32[$7>>2] = 0; - _memset(($d|0),0,152)|0; - _memset(($e|0),0,152)|0; - _memset(($f|0),0,152)|0; - $8 = $f; - $9 = $8; - HEAP32[$9>>2] = 1; - $10 = (($8) + 4)|0; - $11 = $10; - HEAP32[$11>>2] = 0; - _memset(($g|0),0,152)|0; - _memset(($h|0),0,152)|0; - $12 = $h; - $13 = $12; - HEAP32[$13>>2] = 1; - $14 = (($12) + 4)|0; - $15 = $14; - HEAP32[$15>>2] = 0; - dest=$a; src=$q; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - $i$018 = 0;$nqpqx$019 = $a;$nqpqx2$014 = $e;$nqpqz$013 = $b;$nqpqz2$015 = $f;$nqx$011 = $c;$nqx2$016 = $g;$nqz$012 = $d;$nqz2$017 = $h; + $4 = sp + 1064|0; + $5 = sp + 912|0; + $6 = sp + 760|0; + $7 = sp + 608|0; + $8 = sp + 456|0; + $9 = sp + 304|0; + $10 = sp + 152|0; + $11 = sp; + $12 = ((($5)) + 8|0); + _memset(($12|0),0,144)|0; + $13 = $5; + $14 = $13; + HEAP32[$14>>2] = 1; + $15 = (($13) + 4)|0; + $16 = $15; + HEAP32[$16>>2] = 0; + $17 = ((($6)) + 8|0); + _memset(($17|0),0,144)|0; + $18 = $6; + $19 = $18; + HEAP32[$19>>2] = 1; + $20 = (($18) + 4)|0; + $21 = $20; + HEAP32[$21>>2] = 0; + _memset(($7|0),0,152)|0; + _memset(($8|0),0,152)|0; + $22 = ((($9)) + 8|0); + _memset(($22|0),0,144)|0; + $23 = $9; + $24 = $23; + HEAP32[$24>>2] = 1; + $25 = (($23) + 4)|0; + $26 = $25; + HEAP32[$26>>2] = 0; + _memset(($10|0),0,152)|0; + $27 = ((($11)) + 8|0); + _memset(($27|0),0,144)|0; + $28 = $11; + $29 = $28; + HEAP32[$29>>2] = 1; + $30 = (($28) + 4)|0; + $31 = $30; + HEAP32[$31>>2] = 0; + $32 = ((($4)) + 80|0); + dest=$32; stop=dest+72|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); + dest=$4; src=$3; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + $$0104 = $4;$$071103 = 0;$$072102 = $11;$$074101 = $10;$$076100 = $9;$$07899 = $8;$$08098 = $5;$$08297 = $7;$$08496 = $6; while(1) { - $16 = (31 - ($i$018))|0; - $17 = (($n) + ($16)|0); - $18 = HEAP8[$17>>0]|0; - $byte$09 = $18;$j$08 = 0;$nqpqx$110 = $nqpqx$019;$nqpqx2$14 = $nqpqx2$014;$nqpqz$13 = $nqpqz$013;$nqpqz2$15 = $nqpqz2$015;$nqx$11 = $nqx$011;$nqx2$16 = $nqx2$016;$nqz$12 = $nqz$012;$nqz2$17 = $nqz2$017; + $33 = (31 - ($$071103))|0; + $34 = (($2) + ($33)|0); + $35 = HEAP8[$34>>0]|0; + $$06994 = $35;$$07093 = 0;$$17392 = $$072102;$$17591 = $$074101;$$17790 = $$076100;$$17989 = $$07899;$$18188 = $$08098;$$18387 = $$08297;$$18586 = $$08496;$$195 = $$0104; while(1) { - $19 = $byte$09&255; - $20 = $19 >>> 7; - _swap_conditional($nqx$11,$nqpqx$110,$20,0); - _swap_conditional($nqz$12,$nqpqz$13,$20,0); - _fmonty($nqx2$16,$nqz2$17,$nqpqx2$14,$nqpqz2$15,$nqx$11,$nqz$12,$nqpqx$110,$nqpqz$13,$q); - _swap_conditional($nqx2$16,$nqpqx2$14,$20,0); - _swap_conditional($nqz2$17,$nqpqz2$15,$20,0); - $21 = $19 << 1; - $22 = $21&255; - $23 = (($j$08) + 1)|0; - $exitcond = ($23|0)==(8); + $36 = $$06994&255; + $37 = $36 >>> 7; + _swap_conditional($$18586,$$195,$37,0); + _swap_conditional($$18387,$$18188,$37,0); + _fmonty($$17591,$$17392,$$17989,$$17790,$$18586,$$18387,$$195,$$18188,$3); + _swap_conditional($$17591,$$17989,$37,0); + _swap_conditional($$17392,$$17790,$37,0); + $38 = $36 << 1; + $39 = $38&255; + $40 = (($$07093) + 1)|0; + $exitcond = ($40|0)==(8); if ($exitcond) { - $nqpqx$110$lcssa = $nqpqx$110;$nqpqx2$14$lcssa = $nqpqx2$14;$nqpqz$13$lcssa = $nqpqz$13;$nqpqz2$15$lcssa = $nqpqz2$15;$nqx$11$lcssa = $nqx$11;$nqx2$16$lcssa = $nqx2$16;$nqz$12$lcssa = $nqz$12;$nqz2$17$lcssa = $nqz2$17; break; } else { - $nqz2$17$phi = $nqz$12;$nqz$12$phi = $nqz2$17;$nqx2$16$phi = $nqx$11;$nqx$11$phi = $nqx2$16;$nqpqz2$15$phi = $nqpqz$13;$nqpqz$13$phi = $nqpqz2$15;$nqpqx2$14$phi = $nqpqx$110;$nqpqx$110$phi = $nqpqx2$14;$byte$09 = $22;$j$08 = $23;$nqz2$17 = $nqz2$17$phi;$nqz$12 = $nqz$12$phi;$nqx2$16 = $nqx2$16$phi;$nqx$11 = $nqx$11$phi;$nqpqz2$15 = $nqpqz2$15$phi;$nqpqz$13 = $nqpqz$13$phi;$nqpqx2$14 = $nqpqx2$14$phi;$nqpqx$110 = $nqpqx$110$phi; + $$195$phi = $$17989;$$18586$phi = $$17591;$$18387$phi = $$17392;$$18188$phi = $$17790;$$17989$phi = $$195;$$17790$phi = $$18188;$$17591$phi = $$18586;$$17392$phi = $$18387;$$06994 = $39;$$07093 = $40;$$195 = $$195$phi;$$18586 = $$18586$phi;$$18387 = $$18387$phi;$$18188 = $$18188$phi;$$17989 = $$17989$phi;$$17790 = $$17790$phi;$$17591 = $$17591$phi;$$17392 = $$17392$phi; } } - $24 = (($i$018) + 1)|0; - $exitcond20 = ($24|0)==(32); - if ($exitcond20) { - $nqx2$16$lcssa$lcssa = $nqx2$16$lcssa;$nqz2$17$lcssa$lcssa = $nqz2$17$lcssa; + $41 = (($$071103) + 1)|0; + $exitcond105 = ($41|0)==(32); + if ($exitcond105) { break; } else { - $i$018 = $24;$nqpqx$019 = $nqpqx2$14$lcssa;$nqpqx2$014 = $nqpqx$110$lcssa;$nqpqz$013 = $nqpqz2$15$lcssa;$nqpqz2$015 = $nqpqz$13$lcssa;$nqx$011 = $nqx2$16$lcssa;$nqx2$016 = $nqx$11$lcssa;$nqz$012 = $nqz2$17$lcssa;$nqz2$017 = $nqz$12$lcssa; + $$0104 = $$17989;$$071103 = $41;$$072102 = $$18387;$$074101 = $$18586;$$076100 = $$18188;$$07899 = $$195;$$08098 = $$17790;$$08297 = $$17392;$$08496 = $$17591; } } - dest=$resultx; src=$nqx2$16$lcssa$lcssa; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - dest=$resultz; src=$nqz2$17$lcssa$lcssa; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + dest=$0; src=$$17591; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + dest=$1; src=$$17392; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); STACKTOP = sp;return; } -function _crecip($out,$z) { - $out = $out|0; - $z = $z|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $i$33 = 0, $i$42 = 0, $i$51 = 0, $t0 = 0, $t1 = 0, $z11 = 0, $z2 = 0, $z2_100_0 = 0, $z2_10_0 = 0, $z2_20_0 = 0, $z2_50_0 = 0, $z2_5_0 = 0, $z9 = 0, label = 0; +function _crecip($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$317 = 0, $$416 = 0, $$515 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0; var sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 800|0; - $z2 = sp + 720|0; - $z9 = sp + 640|0; - $z11 = sp + 560|0; - $z2_5_0 = sp + 480|0; - $z2_10_0 = sp + 400|0; - $z2_20_0 = sp + 320|0; - $z2_50_0 = sp + 240|0; - $z2_100_0 = sp + 160|0; - $t0 = sp + 80|0; - $t1 = sp; - _fsquare($z2,$z); - _fsquare($t1,$z2); - _fsquare($t0,$t1); - _fmul($z9,$t0,$z); - _fmul($z11,$z9,$z2); - _fsquare($t0,$z11); - _fmul($z2_5_0,$t0,$z9); - _fsquare($t0,$z2_5_0); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fmul($z2_10_0,$t0,$z2_5_0); - _fsquare($t0,$z2_10_0); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fmul($z2_20_0,$t1,$z2_10_0); - _fsquare($t0,$z2_20_0); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fmul($t0,$t1,$z2_20_0); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fmul($z2_50_0,$t0,$z2_10_0); - _fsquare($t0,$z2_50_0); - _fsquare($t1,$t0); - $i$33 = 2; + $2 = sp + 720|0; + $3 = sp + 640|0; + $4 = sp + 560|0; + $5 = sp + 480|0; + $6 = sp + 400|0; + $7 = sp + 320|0; + $8 = sp + 240|0; + $9 = sp + 160|0; + $10 = sp + 80|0; + $11 = sp; + _fsquare($2,$1); + _fsquare($11,$2); + _fsquare($10,$11); + _fmul($3,$10,$1); + _fmul($4,$3,$2); + _fsquare($10,$4); + _fmul($5,$10,$3); + _fsquare($10,$5); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fmul($6,$10,$5); + _fsquare($10,$6); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fmul($7,$11,$6); + _fsquare($10,$7); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fmul($10,$11,$7); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fmul($8,$10,$6); + _fsquare($10,$8); + _fsquare($11,$10); + $$317 = 2; while(1) { - _fsquare($t0,$t1); - _fsquare($t1,$t0); - $0 = (($i$33) + 2)|0; - $1 = ($0|0)<(50); - if ($1) { - $i$33 = $0; + _fsquare($10,$11); + _fsquare($11,$10); + $12 = (($$317) + 2)|0; + $13 = ($12|0)<(50); + if ($13) { + $$317 = $12; } else { break; } } - _fmul($z2_100_0,$t1,$z2_50_0); - _fsquare($t1,$z2_100_0); - _fsquare($t0,$t1); - $i$42 = 2; + _fmul($9,$11,$8); + _fsquare($11,$9); + _fsquare($10,$11); + $$416 = 2; while(1) { - _fsquare($t1,$t0); - _fsquare($t0,$t1); - $2 = (($i$42) + 2)|0; - $3 = ($2|0)<(100); - if ($3) { - $i$42 = $2; + _fsquare($11,$10); + _fsquare($10,$11); + $14 = (($$416) + 2)|0; + $15 = ($14|0)<(100); + if ($15) { + $$416 = $14; } else { break; } } - _fmul($t1,$t0,$z2_100_0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - $i$51 = 2; + _fmul($11,$10,$9); + _fsquare($10,$11); + _fsquare($11,$10); + $$515 = 2; while(1) { - _fsquare($t0,$t1); - _fsquare($t1,$t0); - $4 = (($i$51) + 2)|0; - $5 = ($4|0)<(50); - if ($5) { - $i$51 = $4; + _fsquare($10,$11); + _fsquare($11,$10); + $16 = (($$515) + 2)|0; + $17 = ($16|0)<(50); + if ($17) { + $$515 = $16; } else { break; } } - _fmul($t0,$t1,$z2_50_0); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fmul($out,$t1,$z11); + _fmul($10,$11,$8); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fmul($0,$11,$4); STACKTOP = sp;return; } -function _fmul($output,$in,$in2) { - $output = $output|0; - $in = $in|0; - $in2 = $in2|0; - var $t = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; +function _fmul($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $3 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; sp = STACKTOP; STACKTOP = STACKTOP + 160|0; - $t = sp; - _fproduct($t,$in,$in2); - _freduce_degree($t); - _freduce_coefficients($t); - dest=$output; src=$t; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + $3 = sp; + _fproduct($3,$1,$2); + _freduce_degree($3); + _freduce_coefficients($3); + dest=$0; src=$3; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); STACKTOP = sp;return; } -function _fcontract($output,$input_limbs) { - $output = $output|0; - $input_limbs = $input_limbs|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; - var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; - var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; - var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; - var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; - var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; - var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; - var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; - var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; - var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; - var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; - var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; - var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0; - var $422 = 0, $423 = 0, $424 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0; - var $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0; - var $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0; - var $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $exitcond = 0, $exitcond$1 = 0, $exitcond13 = 0, $exitcond13$1 = 0, $i$18 = 0, $i$18$1 = 0, $i$26 = 0, $i$26$1 = 0, $input = 0, $mask$1 = 0, $mask$1$1 = 0, $mask$1$2 = 0, $mask$1$3 = 0, $mask$1$4 = 0, $mask$1$5 = 0; - var $mask$1$6 = 0, $mask$1$7 = 0, $mask$1$8 = 0, label = 0, sp = 0; +function _fcontract($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$0135149 = 0, $$1136 = 0, $$3150 = 0, $$promoted = 0, $$promoted163 = 0, $$promoted165 = 0, $$promoted167 = 0, $$promoted169 = 0, $$promoted171 = 0, $$promoted173 = 0, $$promoted175 = 0, $$promoted177 = 0, $$promoted179 = 0, $$sink141 = 0, $$sink141$1 = 0, $$sink141$1$1 = 0, $$sink141$1199 = 0, $$sink141$2 = 0, $$sink141$2$1 = 0, $$sink141$3 = 0; + var $$sink141$3$1 = 0, $$sink141$4 = 0, $$sink141$4$1 = 0, $$sink141$5 = 0, $$sink141$5$1 = 0, $$sink141$6 = 0, $$sink141$6$1 = 0, $$sink141$7 = 0, $$sink141$7$1 = 0, $$sink141$8 = 0, $$sink141$8$1 = 0, $$sink3 = 0, $$sink3$1 = 0, $$sink3$2 = 0, $$sink3$3 = 0, $$sink3$4 = 0, $$sink3$5 = 0, $$sink3$6 = 0, $$sink3$7 = 0, $$sink3$8 = 0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0; + var $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0; + var $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0; + var $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0; + var $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0; + var $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0; + var $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0; + var $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0; + var $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0; + var $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0; + var $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0; + var $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0; + var $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0; + var $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0; + var $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0; + var $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0; + var $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0; + var $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0; + var $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; + var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; + var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $exitcond = 0, label = 0; + var sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 48|0; - $input = sp; - $0 = $input_limbs; - $1 = $0; - $2 = HEAP32[$1>>2]|0; - $3 = (($0) + 4)|0; + $2 = sp; + $3 = $1; $4 = $3; $5 = HEAP32[$4>>2]|0; - HEAP32[$input>>2] = $2; - $6 = ((($input_limbs)) + 8|0); + $6 = (($3) + 4)|0; $7 = $6; - $8 = $7; - $9 = HEAP32[$8>>2]|0; - $10 = (($7) + 4)|0; + $8 = HEAP32[$7>>2]|0; + HEAP32[$2>>2] = $5; + $9 = ((($1)) + 8|0); + $10 = $9; $11 = $10; $12 = HEAP32[$11>>2]|0; - $13 = ((($input)) + 4|0); - HEAP32[$13>>2] = $9; - $14 = ((($input_limbs)) + 16|0); - $15 = $14; - $16 = $15; - $17 = HEAP32[$16>>2]|0; - $18 = (($15) + 4)|0; + $13 = (($10) + 4)|0; + $14 = $13; + $15 = HEAP32[$14>>2]|0; + $16 = ((($2)) + 4|0); + HEAP32[$16>>2] = $12; + $17 = ((($1)) + 16|0); + $18 = $17; $19 = $18; $20 = HEAP32[$19>>2]|0; - $21 = ((($input)) + 8|0); - HEAP32[$21>>2] = $17; - $22 = ((($input_limbs)) + 24|0); - $23 = $22; - $24 = $23; - $25 = HEAP32[$24>>2]|0; - $26 = (($23) + 4)|0; + $21 = (($18) + 4)|0; + $22 = $21; + $23 = HEAP32[$22>>2]|0; + $24 = ((($2)) + 8|0); + HEAP32[$24>>2] = $20; + $25 = ((($1)) + 24|0); + $26 = $25; $27 = $26; $28 = HEAP32[$27>>2]|0; - $29 = ((($input)) + 12|0); - HEAP32[$29>>2] = $25; - $30 = ((($input_limbs)) + 32|0); - $31 = $30; - $32 = $31; - $33 = HEAP32[$32>>2]|0; - $34 = (($31) + 4)|0; + $29 = (($26) + 4)|0; + $30 = $29; + $31 = HEAP32[$30>>2]|0; + $32 = ((($2)) + 12|0); + HEAP32[$32>>2] = $28; + $33 = ((($1)) + 32|0); + $34 = $33; $35 = $34; $36 = HEAP32[$35>>2]|0; - $37 = ((($input)) + 16|0); - HEAP32[$37>>2] = $33; - $38 = ((($input_limbs)) + 40|0); - $39 = $38; - $40 = $39; - $41 = HEAP32[$40>>2]|0; - $42 = (($39) + 4)|0; + $37 = (($34) + 4)|0; + $38 = $37; + $39 = HEAP32[$38>>2]|0; + $40 = ((($2)) + 16|0); + HEAP32[$40>>2] = $36; + $41 = ((($1)) + 40|0); + $42 = $41; $43 = $42; $44 = HEAP32[$43>>2]|0; - $45 = ((($input)) + 20|0); - HEAP32[$45>>2] = $41; - $46 = ((($input_limbs)) + 48|0); - $47 = $46; - $48 = $47; - $49 = HEAP32[$48>>2]|0; - $50 = (($47) + 4)|0; + $45 = (($42) + 4)|0; + $46 = $45; + $47 = HEAP32[$46>>2]|0; + $48 = ((($2)) + 20|0); + HEAP32[$48>>2] = $44; + $49 = ((($1)) + 48|0); + $50 = $49; $51 = $50; $52 = HEAP32[$51>>2]|0; - $53 = ((($input)) + 24|0); - HEAP32[$53>>2] = $49; - $54 = ((($input_limbs)) + 56|0); - $55 = $54; - $56 = $55; - $57 = HEAP32[$56>>2]|0; - $58 = (($55) + 4)|0; + $53 = (($50) + 4)|0; + $54 = $53; + $55 = HEAP32[$54>>2]|0; + $56 = ((($2)) + 24|0); + HEAP32[$56>>2] = $52; + $57 = ((($1)) + 56|0); + $58 = $57; $59 = $58; $60 = HEAP32[$59>>2]|0; - $61 = ((($input)) + 28|0); - HEAP32[$61>>2] = $57; - $62 = ((($input_limbs)) + 64|0); - $63 = $62; - $64 = $63; - $65 = HEAP32[$64>>2]|0; - $66 = (($63) + 4)|0; + $61 = (($58) + 4)|0; + $62 = $61; + $63 = HEAP32[$62>>2]|0; + $64 = ((($2)) + 28|0); + HEAP32[$64>>2] = $60; + $65 = ((($1)) + 64|0); + $66 = $65; $67 = $66; $68 = HEAP32[$67>>2]|0; - $69 = ((($input)) + 32|0); - HEAP32[$69>>2] = $65; - $70 = ((($input_limbs)) + 72|0); - $71 = $70; - $72 = $71; - $73 = HEAP32[$72>>2]|0; - $74 = (($71) + 4)|0; + $69 = (($66) + 4)|0; + $70 = $69; + $71 = HEAP32[$70>>2]|0; + $72 = ((($2)) + 32|0); + HEAP32[$72>>2] = $68; + $73 = ((($1)) + 72|0); + $74 = $73; $75 = $74; $76 = HEAP32[$75>>2]|0; - $77 = ((($input)) + 36|0); - HEAP32[$77>>2] = $73; - $78 = ((($input)) + 36|0); - $i$18 = 0; - while(1) { - $79 = $i$18 & 1; - $80 = ($79|0)==(0); - $81 = (($input) + ($i$18<<2)|0); - $82 = HEAP32[$81>>2]|0; - $83 = $82 >> 31; - $84 = $83 & $82; - if ($80) { - $92 = $84 >> 26; - $93 = Math_imul($92, -67108864)|0; - $94 = (($93) + ($82))|0; - HEAP32[$81>>2] = $94; - $95 = (($i$18) + 1)|0; - $96 = (($input) + ($95<<2)|0); - $97 = HEAP32[$96>>2]|0; - $98 = (($97) + ($92))|0; - HEAP32[$96>>2] = $98; - } else { - $85 = $84 >> 25; - $86 = Math_imul($85, -33554432)|0; - $87 = (($86) + ($82))|0; - HEAP32[$81>>2] = $87; - $88 = (($i$18) + 1)|0; - $89 = (($input) + ($88<<2)|0); - $90 = HEAP32[$89>>2]|0; - $91 = (($90) + ($85))|0; - HEAP32[$89>>2] = $91; - } - $99 = (($i$18) + 1)|0; - $exitcond13 = ($99|0)==(9); - if ($exitcond13) { - break; - } else { - $i$18 = $99; - } - } - $100 = HEAP32[$78>>2]|0; - $101 = $100 >> 31; - $102 = $101 & $100; - $103 = $102 >> 25; - $104 = Math_imul($103, -33554432)|0; - $105 = (($104) + ($100))|0; - HEAP32[$78>>2] = $105; - $106 = HEAP32[$input>>2]|0; - $107 = ($103*19)|0; - $108 = (($107) + ($106))|0; - HEAP32[$input>>2] = $108; - $i$18$1 = 0; - while(1) { - $404 = $i$18$1 & 1; - $405 = ($404|0)==(0); - $406 = (($input) + ($i$18$1<<2)|0); - $407 = HEAP32[$406>>2]|0; - $408 = $407 >> 31; - $409 = $408 & $407; - if ($405) { - $417 = $409 >> 26; - $418 = Math_imul($417, -67108864)|0; - $419 = (($418) + ($407))|0; - HEAP32[$406>>2] = $419; - $420 = (($i$18$1) + 1)|0; - $421 = (($input) + ($420<<2)|0); - $422 = HEAP32[$421>>2]|0; - $423 = (($422) + ($417))|0; - HEAP32[$421>>2] = $423; - } else { - $410 = $409 >> 25; - $411 = Math_imul($410, -33554432)|0; - $412 = (($411) + ($407))|0; - HEAP32[$406>>2] = $412; - $413 = (($i$18$1) + 1)|0; - $414 = (($input) + ($413<<2)|0); - $415 = HEAP32[$414>>2]|0; - $416 = (($415) + ($410))|0; - HEAP32[$414>>2] = $416; - } - $424 = (($i$18$1) + 1)|0; - $exitcond13$1 = ($424|0)==(9); - if ($exitcond13$1) { - break; - } else { - $i$18$1 = $424; - } - } - $109 = HEAP32[$78>>2]|0; - $110 = $109 >> 31; - $111 = $110 & $109; - $112 = $111 >> 25; - $113 = Math_imul($112, -33554432)|0; - $114 = (($113) + ($109))|0; - HEAP32[$78>>2] = $114; - $115 = HEAP32[$input>>2]|0; - $116 = ($112*19)|0; - $117 = (($116) + ($115))|0; - $118 = $117 >> 31; - $119 = $118 & $117; - $120 = $119 >> 26; - $121 = Math_imul($120, -67108864)|0; - $122 = (($121) + ($117))|0; - HEAP32[$input>>2] = $122; - $123 = ((($input)) + 4|0); - $124 = HEAP32[$123>>2]|0; - $125 = (($120) + ($124))|0; - HEAP32[$123>>2] = $125; - $126 = ((($input)) + 36|0); - $i$26 = 0; + $77 = (($74) + 4)|0; + $78 = $77; + $79 = HEAP32[$78>>2]|0; + $80 = ((($2)) + 36|0); + HEAP32[$80>>2] = $76; + $81 = ((($2)) + 4|0); + $82 = ((($2)) + 8|0); + $83 = ((($2)) + 12|0); + $84 = ((($2)) + 16|0); + $85 = ((($2)) + 20|0); + $86 = ((($2)) + 24|0); + $87 = ((($2)) + 28|0); + $88 = ((($2)) + 32|0); + $89 = ((($2)) + 36|0); + $$promoted163 = HEAP32[$2>>2]|0; + $$promoted179 = HEAP32[$89>>2]|0; + $$promoted177 = HEAP32[$88>>2]|0; + $$promoted175 = HEAP32[$87>>2]|0; + $$promoted173 = HEAP32[$86>>2]|0; + $$promoted171 = HEAP32[$85>>2]|0; + $$promoted169 = HEAP32[$84>>2]|0; + $$promoted167 = HEAP32[$83>>2]|0; + $$promoted165 = HEAP32[$82>>2]|0; + $$promoted = HEAP32[$81>>2]|0; + $90 = $$promoted163 >> 31; + $91 = $90 & $$promoted163; + $$sink141 = $91 >> 26; + $92 = (0 - ($$sink141))|0; + $93 = $92 << 26; + $94 = (($93) + ($$promoted163))|0; + $95 = (($$sink141) + ($$promoted))|0; + $96 = $95 >> 31; + $97 = $96 & $95; + $$sink141$1 = $97 >> 25; + $98 = (0 - ($$sink141$1))|0; + $99 = $98 << 25; + $100 = (($99) + ($95))|0; + $101 = (($$sink141$1) + ($$promoted165))|0; + $102 = $101 >> 31; + $103 = $102 & $101; + $$sink141$2 = $103 >> 26; + $104 = (0 - ($$sink141$2))|0; + $105 = $104 << 26; + $106 = (($105) + ($101))|0; + $107 = (($$sink141$2) + ($$promoted167))|0; + $108 = $107 >> 31; + $109 = $108 & $107; + $$sink141$3 = $109 >> 25; + $110 = (0 - ($$sink141$3))|0; + $111 = $110 << 25; + $112 = (($111) + ($107))|0; + $113 = (($$sink141$3) + ($$promoted169))|0; + $114 = $113 >> 31; + $115 = $114 & $113; + $$sink141$4 = $115 >> 26; + $116 = (0 - ($$sink141$4))|0; + $117 = $116 << 26; + $118 = (($117) + ($113))|0; + $119 = (($$sink141$4) + ($$promoted171))|0; + $120 = $119 >> 31; + $121 = $120 & $119; + $$sink141$5 = $121 >> 25; + $122 = (0 - ($$sink141$5))|0; + $123 = $122 << 25; + $124 = (($123) + ($119))|0; + $125 = (($$sink141$5) + ($$promoted173))|0; + $126 = $125 >> 31; + $127 = $126 & $125; + $$sink141$6 = $127 >> 26; + $128 = (0 - ($$sink141$6))|0; + $129 = $128 << 26; + $130 = (($129) + ($125))|0; + $131 = (($$sink141$6) + ($$promoted175))|0; + $132 = $131 >> 31; + $133 = $132 & $131; + $$sink141$7 = $133 >> 25; + $134 = (0 - ($$sink141$7))|0; + $135 = $134 << 25; + $136 = (($135) + ($131))|0; + $137 = (($$sink141$7) + ($$promoted177))|0; + $138 = $137 >> 31; + $139 = $138 & $137; + $$sink141$8 = $139 >> 26; + $140 = (0 - ($$sink141$8))|0; + $141 = $140 << 26; + $142 = (($141) + ($137))|0; + $143 = (($$sink141$8) + ($$promoted179))|0; + $144 = $143 >> 31; + $145 = $144 & $143; + $146 = $145 >> 25; + $147 = Math_imul($146, -33554432)|0; + $148 = (($147) + ($143))|0; + $149 = ($146*19)|0; + $150 = (($149) + ($94))|0; + $151 = $150 >> 31; + $152 = $151 & $150; + $$sink141$1199 = $152 >> 26; + $153 = (0 - ($$sink141$1199))|0; + $154 = $153 << 26; + $155 = (($154) + ($150))|0; + $156 = (($$sink141$1199) + ($100))|0; + $157 = $156 >> 31; + $158 = $157 & $156; + $$sink141$1$1 = $158 >> 25; + $159 = (0 - ($$sink141$1$1))|0; + $160 = $159 << 25; + $161 = (($160) + ($156))|0; + $162 = (($$sink141$1$1) + ($106))|0; + $163 = $162 >> 31; + $164 = $163 & $162; + $$sink141$2$1 = $164 >> 26; + $165 = (0 - ($$sink141$2$1))|0; + $166 = $165 << 26; + $167 = (($166) + ($162))|0; + $168 = (($$sink141$2$1) + ($112))|0; + $169 = $168 >> 31; + $170 = $169 & $168; + $$sink141$3$1 = $170 >> 25; + $171 = (0 - ($$sink141$3$1))|0; + $172 = $171 << 25; + $173 = (($172) + ($168))|0; + $174 = (($$sink141$3$1) + ($118))|0; + $175 = $174 >> 31; + $176 = $175 & $174; + $$sink141$4$1 = $176 >> 26; + $177 = (0 - ($$sink141$4$1))|0; + $178 = $177 << 26; + $179 = (($178) + ($174))|0; + $180 = (($$sink141$4$1) + ($124))|0; + $181 = $180 >> 31; + $182 = $181 & $180; + $$sink141$5$1 = $182 >> 25; + $183 = (0 - ($$sink141$5$1))|0; + $184 = $183 << 25; + $185 = (($184) + ($180))|0; + $186 = (($$sink141$5$1) + ($130))|0; + $187 = $186 >> 31; + $188 = $187 & $186; + $$sink141$6$1 = $188 >> 26; + $189 = (0 - ($$sink141$6$1))|0; + $190 = $189 << 26; + $191 = (($190) + ($186))|0; + $192 = (($$sink141$6$1) + ($136))|0; + $193 = $192 >> 31; + $194 = $193 & $192; + $$sink141$7$1 = $194 >> 25; + $195 = (0 - ($$sink141$7$1))|0; + $196 = $195 << 25; + $197 = (($196) + ($192))|0; + $198 = (($$sink141$7$1) + ($142))|0; + $199 = $198 >> 31; + $200 = $199 & $198; + $$sink141$8$1 = $200 >> 26; + $201 = (0 - ($$sink141$8$1))|0; + $202 = $201 << 26; + $203 = (($202) + ($198))|0; + $204 = (($$sink141$8$1) + ($148))|0; + $205 = $204 >> 31; + $206 = $205 & $204; + $207 = $206 >> 25; + $208 = Math_imul($207, -33554432)|0; + $209 = (($208) + ($204))|0; + $210 = ($207*19)|0; + $211 = (($210) + ($155))|0; + HEAP32[$81>>2] = $161; + HEAP32[$2>>2] = $211; + HEAP32[$82>>2] = $167; + HEAP32[$83>>2] = $173; + HEAP32[$84>>2] = $179; + HEAP32[$85>>2] = $185; + HEAP32[$86>>2] = $191; + HEAP32[$87>>2] = $197; + HEAP32[$88>>2] = $203; + HEAP32[$89>>2] = $209; + $212 = HEAP32[$2>>2]|0; + $213 = $212 >> 31; + $214 = $213 & $212; + $215 = $214 >> 26; + $216 = Math_imul($215, -67108864)|0; + $217 = (($216) + ($212))|0; + HEAP32[$2>>2] = $217; + $218 = ((($2)) + 4|0); + $219 = HEAP32[$218>>2]|0; + $220 = (($215) + ($219))|0; + HEAP32[$218>>2] = $220; + $221 = ((($2)) + 36|0); + $222 = HEAP32[$2>>2]|0; + $223 = $222 >> 26; + $224 = $222 & 67108863; + HEAP32[$2>>2] = $224; + $225 = (($220) + ($223))|0; + $226 = ((($2)) + 4|0); + $227 = ((($2)) + 8|0); + $228 = HEAP32[$227>>2]|0; + $229 = $225 >> 25; + $230 = $225 & 33554431; + HEAP32[$226>>2] = $230; + $231 = (($228) + ($229))|0; + $232 = ((($2)) + 8|0); + $233 = ((($2)) + 12|0); + $234 = HEAP32[$233>>2]|0; + $235 = $231 >> 26; + $236 = $231 & 67108863; + HEAP32[$232>>2] = $236; + $237 = (($234) + ($235))|0; + $238 = ((($2)) + 12|0); + $239 = ((($2)) + 16|0); + $240 = HEAP32[$239>>2]|0; + $241 = $237 >> 25; + $242 = $237 & 33554431; + HEAP32[$238>>2] = $242; + $243 = (($240) + ($241))|0; + $244 = ((($2)) + 16|0); + $245 = ((($2)) + 20|0); + $246 = HEAP32[$245>>2]|0; + $247 = $243 >> 26; + $248 = $243 & 67108863; + HEAP32[$244>>2] = $248; + $249 = (($246) + ($247))|0; + $250 = ((($2)) + 20|0); + $251 = ((($2)) + 24|0); + $252 = HEAP32[$251>>2]|0; + $253 = $249 >> 25; + $254 = $249 & 33554431; + HEAP32[$250>>2] = $254; + $255 = (($252) + ($253))|0; + $256 = ((($2)) + 24|0); + $257 = ((($2)) + 28|0); + $258 = HEAP32[$257>>2]|0; + $259 = $255 >> 26; + $260 = $255 & 67108863; + HEAP32[$256>>2] = $260; + $261 = (($258) + ($259))|0; + $262 = ((($2)) + 28|0); + $263 = ((($2)) + 32|0); + $264 = HEAP32[$263>>2]|0; + $265 = $261 >> 25; + $266 = $261 & 33554431; + HEAP32[$262>>2] = $266; + $267 = (($264) + ($265))|0; + $268 = ((($2)) + 32|0); + $269 = ((($2)) + 36|0); + $270 = HEAP32[$269>>2]|0; + $271 = $267 >> 26; + $272 = $267 & 67108863; + HEAP32[$268>>2] = $272; + $273 = (($270) + ($271))|0; + $274 = $273 >> 25; + $275 = $273 & 33554431; + HEAP32[$221>>2] = $275; + $276 = ($274*19)|0; + $277 = HEAP32[$2>>2]|0; + $278 = (($277) + ($276))|0; + HEAP32[$2>>2] = $278; + $279 = ((($2)) + 4|0); + $280 = HEAP32[$279>>2]|0; + $281 = $278 >> 26; + $282 = $278 & 67108863; + HEAP32[$2>>2] = $282; + $283 = (($280) + ($281))|0; + $284 = ((($2)) + 4|0); + $285 = ((($2)) + 8|0); + $286 = HEAP32[$285>>2]|0; + $287 = $283 >> 25; + $288 = $283 & 33554431; + HEAP32[$284>>2] = $288; + $289 = (($286) + ($287))|0; + $290 = ((($2)) + 8|0); + $291 = ((($2)) + 12|0); + $292 = HEAP32[$291>>2]|0; + $293 = $289 >> 26; + $294 = $289 & 67108863; + HEAP32[$290>>2] = $294; + $295 = (($292) + ($293))|0; + $296 = ((($2)) + 12|0); + $297 = ((($2)) + 16|0); + $298 = HEAP32[$297>>2]|0; + $299 = $295 >> 25; + $300 = $295 & 33554431; + HEAP32[$296>>2] = $300; + $301 = (($298) + ($299))|0; + $302 = ((($2)) + 16|0); + $303 = ((($2)) + 20|0); + $304 = HEAP32[$303>>2]|0; + $305 = $301 >> 26; + $306 = $301 & 67108863; + HEAP32[$302>>2] = $306; + $307 = (($304) + ($305))|0; + $308 = ((($2)) + 20|0); + $309 = ((($2)) + 24|0); + $310 = HEAP32[$309>>2]|0; + $311 = $307 >> 25; + $312 = $307 & 33554431; + HEAP32[$308>>2] = $312; + $313 = (($310) + ($311))|0; + $314 = ((($2)) + 24|0); + $315 = ((($2)) + 28|0); + $316 = HEAP32[$315>>2]|0; + $317 = $313 >> 26; + $318 = $313 & 67108863; + HEAP32[$314>>2] = $318; + $319 = (($316) + ($317))|0; + $320 = ((($2)) + 28|0); + $321 = ((($2)) + 32|0); + $322 = HEAP32[$321>>2]|0; + $323 = $319 >> 25; + $324 = $319 & 33554431; + HEAP32[$320>>2] = $324; + $325 = (($322) + ($323))|0; + $326 = ((($2)) + 32|0); + $327 = ((($2)) + 36|0); + $328 = HEAP32[$327>>2]|0; + $329 = $325 >> 26; + $330 = $325 & 67108863; + HEAP32[$326>>2] = $330; + $331 = (($328) + ($329))|0; + $332 = $331 >> 25; + $333 = $331 & 33554431; + HEAP32[$221>>2] = $333; + $334 = ($332*19)|0; + $335 = HEAP32[$2>>2]|0; + $336 = (($335) + ($334))|0; + HEAP32[$2>>2] = $336; + $337 = (_s32_gte($336)|0); + $$0135149 = $337;$$3150 = 1; while(1) { - $127 = $i$26 & 1; - $128 = ($127|0)==(0); - $129 = (($input) + ($i$26<<2)|0); - $130 = HEAP32[$129>>2]|0; - if ($128) { - $137 = $130 >> 26; - $138 = $130 & 67108863; - HEAP32[$129>>2] = $138; - $139 = (($i$26) + 1)|0; - $140 = (($input) + ($139<<2)|0); - $141 = HEAP32[$140>>2]|0; - $142 = (($141) + ($137))|0; - HEAP32[$140>>2] = $142; - } else { - $131 = $130 >> 25; - $132 = $130 & 33554431; - HEAP32[$129>>2] = $132; - $133 = (($i$26) + 1)|0; - $134 = (($input) + ($133<<2)|0); - $135 = HEAP32[$134>>2]|0; - $136 = (($135) + ($131))|0; - HEAP32[$134>>2] = $136; - } - $143 = (($i$26) + 1)|0; - $exitcond = ($143|0)==(9); + $338 = (($2) + ($$3150<<2)|0); + $339 = HEAP32[$338>>2]|0; + $340 = $$3150 << 25; + $341 = $340 & 33554432; + $342 = $341 ^ 67108863; + $343 = (_s32_eq($339,$342)|0); + $$1136 = $343 & $$0135149; + $344 = (($$3150) + 1)|0; + $exitcond = ($344|0)==(10); if ($exitcond) { break; } else { - $i$26 = $143; + $$0135149 = $$1136;$$3150 = $344; } } - $144 = HEAP32[$126>>2]|0; - $145 = $144 >> 25; - $146 = $144 & 33554431; - HEAP32[$126>>2] = $146; - $147 = ($145*19)|0; - $148 = HEAP32[$input>>2]|0; - $149 = (($147) + ($148))|0; - HEAP32[$input>>2] = $149; - $i$26$1 = 0; - while(1) { - $387 = $i$26$1 & 1; - $388 = ($387|0)==(0); - $389 = (($input) + ($i$26$1<<2)|0); - $390 = HEAP32[$389>>2]|0; - if ($388) { - $397 = $390 >> 26; - $398 = $390 & 67108863; - HEAP32[$389>>2] = $398; - $399 = (($i$26$1) + 1)|0; - $400 = (($input) + ($399<<2)|0); - $401 = HEAP32[$400>>2]|0; - $402 = (($401) + ($397))|0; - HEAP32[$400>>2] = $402; - } else { - $391 = $390 >> 25; - $392 = $390 & 33554431; - HEAP32[$389>>2] = $392; - $393 = (($i$26$1) + 1)|0; - $394 = (($input) + ($393<<2)|0); - $395 = HEAP32[$394>>2]|0; - $396 = (($395) + ($391))|0; - HEAP32[$394>>2] = $396; - } - $403 = (($i$26$1) + 1)|0; - $exitcond$1 = ($403|0)==(9); - if ($exitcond$1) { - break; - } else { - $i$26$1 = $403; - } - } - $150 = HEAP32[$126>>2]|0; - $151 = $150 >> 25; - $152 = $150 & 33554431; - HEAP32[$126>>2] = $152; - $153 = ($151*19)|0; - $154 = HEAP32[$input>>2]|0; - $155 = (($153) + ($154))|0; - HEAP32[$input>>2] = $155; - $156 = (_s32_gte($155)|0); - $157 = ((($input)) + 4|0); - $158 = HEAP32[$157>>2]|0; - $159 = (_s32_eq($158,33554431)|0); - $mask$1 = $159 & $156; - $160 = ((($input)) + 8|0); - $161 = HEAP32[$160>>2]|0; - $162 = (_s32_eq($161,67108863)|0); - $mask$1$1 = $162 & $mask$1; - $163 = ((($input)) + 12|0); - $164 = HEAP32[$163>>2]|0; - $165 = (_s32_eq($164,33554431)|0); - $mask$1$2 = $165 & $mask$1$1; - $166 = ((($input)) + 16|0); - $167 = HEAP32[$166>>2]|0; - $168 = (_s32_eq($167,67108863)|0); - $mask$1$3 = $168 & $mask$1$2; - $169 = ((($input)) + 20|0); - $170 = HEAP32[$169>>2]|0; - $171 = (_s32_eq($170,33554431)|0); - $mask$1$4 = $171 & $mask$1$3; - $172 = ((($input)) + 24|0); - $173 = HEAP32[$172>>2]|0; - $174 = (_s32_eq($173,67108863)|0); - $mask$1$5 = $174 & $mask$1$4; - $175 = ((($input)) + 28|0); - $176 = HEAP32[$175>>2]|0; - $177 = (_s32_eq($176,33554431)|0); - $mask$1$6 = $177 & $mask$1$5; - $178 = ((($input)) + 32|0); - $179 = HEAP32[$178>>2]|0; - $180 = (_s32_eq($179,67108863)|0); - $mask$1$7 = $180 & $mask$1$6; - $181 = ((($input)) + 36|0); - $182 = HEAP32[$181>>2]|0; - $183 = (_s32_eq($182,33554431)|0); - $mask$1$8 = $183 & $mask$1$7; - $184 = $mask$1$8 & 67108845; - $185 = HEAP32[$input>>2]|0; - $186 = (($185) - ($184))|0; - HEAP32[$input>>2] = $186; - $187 = $mask$1$8 & 67108863; - $188 = $mask$1$8 & 33554431; - $189 = ((($input)) + 4|0); - $190 = HEAP32[$189>>2]|0; - $191 = (($190) - ($188))|0; - HEAP32[$189>>2] = $191; - $192 = ((($input)) + 8|0); - $193 = HEAP32[$192>>2]|0; - $194 = (($193) - ($187))|0; - HEAP32[$192>>2] = $194; - $195 = ((($input)) + 12|0); - $196 = HEAP32[$195>>2]|0; - $197 = (($196) - ($188))|0; - HEAP32[$195>>2] = $197; - $198 = ((($input)) + 16|0); - $199 = HEAP32[$198>>2]|0; - $200 = (($199) - ($187))|0; - HEAP32[$198>>2] = $200; - $201 = ((($input)) + 20|0); - $202 = HEAP32[$201>>2]|0; - $203 = (($202) - ($188))|0; - HEAP32[$201>>2] = $203; - $204 = ((($input)) + 24|0); - $205 = HEAP32[$204>>2]|0; - $206 = (($205) - ($187))|0; - HEAP32[$204>>2] = $206; - $207 = ((($input)) + 28|0); - $208 = HEAP32[$207>>2]|0; - $209 = (($208) - ($188))|0; - HEAP32[$207>>2] = $209; - $210 = ((($input)) + 32|0); - $211 = HEAP32[$210>>2]|0; - $212 = (($211) - ($187))|0; - HEAP32[$210>>2] = $212; - $213 = ((($input)) + 36|0); - $214 = HEAP32[$213>>2]|0; - $215 = (($214) - ($188))|0; - HEAP32[$213>>2] = $215; - $216 = HEAP32[$123>>2]|0; - $217 = $216 << 2; - HEAP32[$123>>2] = $217; - $218 = ((($input)) + 8|0); - $219 = HEAP32[$218>>2]|0; - $220 = $219 << 3; - HEAP32[$218>>2] = $220; - $221 = ((($input)) + 12|0); - $222 = HEAP32[$221>>2]|0; - $223 = $222 << 5; - HEAP32[$221>>2] = $223; - $224 = ((($input)) + 16|0); - $225 = HEAP32[$224>>2]|0; - $226 = $225 << 6; - HEAP32[$224>>2] = $226; - $227 = ((($input)) + 24|0); - $228 = HEAP32[$227>>2]|0; - $229 = $228 << 1; - HEAP32[$227>>2] = $229; - $230 = ((($input)) + 28|0); - $231 = HEAP32[$230>>2]|0; - $232 = $231 << 3; - HEAP32[$230>>2] = $232; - $233 = ((($input)) + 32|0); - $234 = HEAP32[$233>>2]|0; - $235 = $234 << 4; - HEAP32[$233>>2] = $235; - $236 = ((($input)) + 36|0); - $237 = HEAP32[$236>>2]|0; - $238 = $237 << 6; - HEAP32[$236>>2] = $238; - HEAP8[$output>>0] = 0; - $239 = ((($output)) + 16|0); - HEAP8[$239>>0] = 0; - $240 = HEAP32[$input>>2]|0; - $241 = HEAP8[$output>>0]|0; - $242 = $241&255; - $243 = $242 | $240; - $244 = $243&255; - HEAP8[$output>>0] = $244; - $245 = HEAP32[$input>>2]|0; - $246 = $245 >>> 8; - $247 = $246&255; - $248 = ((($output)) + 1|0); - HEAP8[$248>>0] = $247; - $249 = HEAP32[$input>>2]|0; - $250 = $249 >>> 16; - $251 = $250&255; - $252 = ((($output)) + 2|0); - HEAP8[$252>>0] = $251; - $253 = HEAP32[$input>>2]|0; - $254 = $253 >>> 24; - $255 = ((($output)) + 3|0); - $256 = HEAP32[$123>>2]|0; - $257 = $254 | $256; - $258 = $257&255; - HEAP8[$255>>0] = $258; - $259 = HEAP32[$123>>2]|0; - $260 = $259 >>> 8; - $261 = $260&255; - $262 = ((($output)) + 4|0); - HEAP8[$262>>0] = $261; - $263 = HEAP32[$123>>2]|0; - $264 = $263 >>> 16; - $265 = $264&255; - $266 = ((($output)) + 5|0); - HEAP8[$266>>0] = $265; - $267 = HEAP32[$123>>2]|0; - $268 = $267 >>> 24; - $269 = ((($output)) + 6|0); - $270 = HEAP32[$218>>2]|0; - $271 = $268 | $270; - $272 = $271&255; - HEAP8[$269>>0] = $272; - $273 = HEAP32[$218>>2]|0; - $274 = $273 >>> 8; - $275 = $274&255; - $276 = ((($output)) + 7|0); - HEAP8[$276>>0] = $275; - $277 = HEAP32[$218>>2]|0; - $278 = $277 >>> 16; - $279 = $278&255; - $280 = ((($output)) + 8|0); - HEAP8[$280>>0] = $279; - $281 = HEAP32[$218>>2]|0; - $282 = $281 >>> 24; - $283 = ((($output)) + 9|0); - $284 = HEAP32[$221>>2]|0; - $285 = $282 | $284; - $286 = $285&255; - HEAP8[$283>>0] = $286; - $287 = HEAP32[$221>>2]|0; - $288 = $287 >>> 8; - $289 = $288&255; - $290 = ((($output)) + 10|0); - HEAP8[$290>>0] = $289; - $291 = HEAP32[$221>>2]|0; - $292 = $291 >>> 16; - $293 = $292&255; - $294 = ((($output)) + 11|0); - HEAP8[$294>>0] = $293; - $295 = HEAP32[$221>>2]|0; - $296 = $295 >>> 24; - $297 = ((($output)) + 12|0); - $298 = HEAP32[$224>>2]|0; - $299 = $296 | $298; - $300 = $299&255; - HEAP8[$297>>0] = $300; - $301 = HEAP32[$224>>2]|0; - $302 = $301 >>> 8; - $303 = $302&255; - $304 = ((($output)) + 13|0); - HEAP8[$304>>0] = $303; - $305 = HEAP32[$224>>2]|0; - $306 = $305 >>> 16; - $307 = $306&255; - $308 = ((($output)) + 14|0); - HEAP8[$308>>0] = $307; - $309 = HEAP32[$224>>2]|0; - $310 = $309 >>> 24; - $311 = $310&255; - $312 = ((($output)) + 15|0); - HEAP8[$312>>0] = $311; - $313 = ((($input)) + 20|0); - $314 = HEAP32[$313>>2]|0; - $315 = HEAP8[$239>>0]|0; - $316 = $315&255; - $317 = $316 | $314; - $318 = $317&255; - HEAP8[$239>>0] = $318; - $319 = HEAP32[$313>>2]|0; - $320 = $319 >>> 8; - $321 = $320&255; - $322 = ((($output)) + 17|0); - HEAP8[$322>>0] = $321; - $323 = HEAP32[$313>>2]|0; - $324 = $323 >>> 16; - $325 = $324&255; - $326 = ((($output)) + 18|0); - HEAP8[$326>>0] = $325; - $327 = HEAP32[$313>>2]|0; - $328 = $327 >>> 24; - $329 = ((($output)) + 19|0); - $330 = HEAP32[$227>>2]|0; - $331 = $328 | $330; - $332 = $331&255; - HEAP8[$329>>0] = $332; - $333 = HEAP32[$227>>2]|0; - $334 = $333 >>> 8; - $335 = $334&255; - $336 = ((($output)) + 20|0); - HEAP8[$336>>0] = $335; - $337 = HEAP32[$227>>2]|0; - $338 = $337 >>> 16; - $339 = $338&255; - $340 = ((($output)) + 21|0); - HEAP8[$340>>0] = $339; - $341 = HEAP32[$227>>2]|0; - $342 = $341 >>> 24; - $343 = ((($output)) + 22|0); - $344 = HEAP32[$230>>2]|0; - $345 = $342 | $344; - $346 = $345&255; - HEAP8[$343>>0] = $346; - $347 = HEAP32[$230>>2]|0; - $348 = $347 >>> 8; - $349 = $348&255; - $350 = ((($output)) + 23|0); - HEAP8[$350>>0] = $349; - $351 = HEAP32[$230>>2]|0; - $352 = $351 >>> 16; - $353 = $352&255; - $354 = ((($output)) + 24|0); - HEAP8[$354>>0] = $353; - $355 = HEAP32[$230>>2]|0; - $356 = $355 >>> 24; - $357 = ((($output)) + 25|0); - $358 = HEAP32[$233>>2]|0; - $359 = $356 | $358; - $360 = $359&255; - HEAP8[$357>>0] = $360; - $361 = HEAP32[$233>>2]|0; - $362 = $361 >>> 8; - $363 = $362&255; - $364 = ((($output)) + 26|0); - HEAP8[$364>>0] = $363; - $365 = HEAP32[$233>>2]|0; - $366 = $365 >>> 16; - $367 = $366&255; - $368 = ((($output)) + 27|0); - HEAP8[$368>>0] = $367; - $369 = HEAP32[$233>>2]|0; - $370 = $369 >>> 24; - $371 = ((($output)) + 28|0); - $372 = HEAP32[$236>>2]|0; - $373 = $370 | $372; - $374 = $373&255; - HEAP8[$371>>0] = $374; - $375 = HEAP32[$236>>2]|0; - $376 = $375 >>> 8; - $377 = $376&255; - $378 = ((($output)) + 29|0); - HEAP8[$378>>0] = $377; - $379 = HEAP32[$236>>2]|0; - $380 = $379 >>> 16; - $381 = $380&255; - $382 = ((($output)) + 30|0); - HEAP8[$382>>0] = $381; - $383 = HEAP32[$236>>2]|0; - $384 = $383 >>> 24; - $385 = $384&255; - $386 = ((($output)) + 31|0); - HEAP8[$386>>0] = $385; + $345 = $$1136 & 67108845; + $346 = HEAP32[$2>>2]|0; + $347 = (($346) - ($345))|0; + HEAP32[$2>>2] = $347; + $$sink3 = $$1136 & 33554431; + $348 = ((($2)) + 4|0); + $349 = HEAP32[$348>>2]|0; + $350 = (($349) - ($$sink3))|0; + HEAP32[$348>>2] = $350; + $$sink3$1 = $$1136 & 67108863; + $351 = ((($2)) + 8|0); + $352 = HEAP32[$351>>2]|0; + $353 = (($352) - ($$sink3$1))|0; + HEAP32[$351>>2] = $353; + $$sink3$2 = $$1136 & 33554431; + $354 = ((($2)) + 12|0); + $355 = HEAP32[$354>>2]|0; + $356 = (($355) - ($$sink3$2))|0; + HEAP32[$354>>2] = $356; + $$sink3$3 = $$1136 & 67108863; + $357 = ((($2)) + 16|0); + $358 = HEAP32[$357>>2]|0; + $359 = (($358) - ($$sink3$3))|0; + HEAP32[$357>>2] = $359; + $$sink3$4 = $$1136 & 33554431; + $360 = ((($2)) + 20|0); + $361 = HEAP32[$360>>2]|0; + $362 = (($361) - ($$sink3$4))|0; + HEAP32[$360>>2] = $362; + $$sink3$5 = $$1136 & 67108863; + $363 = ((($2)) + 24|0); + $364 = HEAP32[$363>>2]|0; + $365 = (($364) - ($$sink3$5))|0; + HEAP32[$363>>2] = $365; + $$sink3$6 = $$1136 & 33554431; + $366 = ((($2)) + 28|0); + $367 = HEAP32[$366>>2]|0; + $368 = (($367) - ($$sink3$6))|0; + HEAP32[$366>>2] = $368; + $$sink3$7 = $$1136 & 67108863; + $369 = ((($2)) + 32|0); + $370 = HEAP32[$369>>2]|0; + $371 = (($370) - ($$sink3$7))|0; + HEAP32[$369>>2] = $371; + $$sink3$8 = $$1136 & 33554431; + $372 = ((($2)) + 36|0); + $373 = HEAP32[$372>>2]|0; + $374 = (($373) - ($$sink3$8))|0; + HEAP32[$372>>2] = $374; + $375 = HEAP32[$218>>2]|0; + $376 = $375 << 2; + HEAP32[$218>>2] = $376; + $377 = ((($2)) + 8|0); + $378 = HEAP32[$377>>2]|0; + $379 = $378 << 3; + HEAP32[$377>>2] = $379; + $380 = ((($2)) + 12|0); + $381 = HEAP32[$380>>2]|0; + $382 = $381 << 5; + HEAP32[$380>>2] = $382; + $383 = ((($2)) + 16|0); + $384 = HEAP32[$383>>2]|0; + $385 = $384 << 6; + HEAP32[$383>>2] = $385; + $386 = ((($2)) + 24|0); + $387 = HEAP32[$386>>2]|0; + $388 = $387 << 1; + HEAP32[$386>>2] = $388; + $389 = ((($2)) + 28|0); + $390 = HEAP32[$389>>2]|0; + $391 = $390 << 3; + HEAP32[$389>>2] = $391; + $392 = ((($2)) + 32|0); + $393 = HEAP32[$392>>2]|0; + $394 = $393 << 4; + HEAP32[$392>>2] = $394; + $395 = ((($2)) + 36|0); + $396 = HEAP32[$395>>2]|0; + $397 = $396 << 6; + HEAP32[$395>>2] = $397; + $398 = ((($0)) + 16|0); + HEAP8[$398>>0] = 0; + $399 = HEAP32[$2>>2]|0; + $400 = $399&255; + HEAP8[$0>>0] = $400; + $401 = $399 >>> 8; + $402 = $401&255; + $403 = ((($0)) + 1|0); + HEAP8[$403>>0] = $402; + $404 = $399 >>> 16; + $405 = $404&255; + $406 = ((($0)) + 2|0); + HEAP8[$406>>0] = $405; + $407 = $399 >>> 24; + $408 = ((($0)) + 3|0); + $409 = HEAP32[$218>>2]|0; + $410 = $409 | $407; + $411 = $410&255; + HEAP8[$408>>0] = $411; + $412 = $409 >>> 8; + $413 = $412&255; + $414 = ((($0)) + 4|0); + HEAP8[$414>>0] = $413; + $415 = $409 >>> 16; + $416 = $415&255; + $417 = ((($0)) + 5|0); + HEAP8[$417>>0] = $416; + $418 = $409 >>> 24; + $419 = ((($0)) + 6|0); + $420 = HEAP32[$377>>2]|0; + $421 = $420 | $418; + $422 = $421&255; + HEAP8[$419>>0] = $422; + $423 = $420 >>> 8; + $424 = $423&255; + $425 = ((($0)) + 7|0); + HEAP8[$425>>0] = $424; + $426 = $420 >>> 16; + $427 = $426&255; + $428 = ((($0)) + 8|0); + HEAP8[$428>>0] = $427; + $429 = $420 >>> 24; + $430 = ((($0)) + 9|0); + $431 = HEAP32[$380>>2]|0; + $432 = $431 | $429; + $433 = $432&255; + HEAP8[$430>>0] = $433; + $434 = $431 >>> 8; + $435 = $434&255; + $436 = ((($0)) + 10|0); + HEAP8[$436>>0] = $435; + $437 = HEAP32[$380>>2]|0; + $438 = $437 >>> 16; + $439 = $438&255; + $440 = ((($0)) + 11|0); + HEAP8[$440>>0] = $439; + $441 = $437 >>> 24; + $442 = ((($0)) + 12|0); + $443 = HEAP32[$383>>2]|0; + $444 = $443 | $441; + $445 = $444&255; + HEAP8[$442>>0] = $445; + $446 = $443 >>> 8; + $447 = $446&255; + $448 = ((($0)) + 13|0); + HEAP8[$448>>0] = $447; + $449 = HEAP32[$383>>2]|0; + $450 = $449 >>> 16; + $451 = $450&255; + $452 = ((($0)) + 14|0); + HEAP8[$452>>0] = $451; + $453 = $449 >>> 24; + $454 = $453&255; + $455 = ((($0)) + 15|0); + HEAP8[$455>>0] = $454; + $456 = ((($2)) + 20|0); + $457 = HEAP32[$456>>2]|0; + $458 = HEAP8[$398>>0]|0; + $459 = $458&255; + $460 = $459 | $457; + $461 = $460&255; + HEAP8[$398>>0] = $461; + $462 = $457 >>> 8; + $463 = $462&255; + $464 = ((($0)) + 17|0); + HEAP8[$464>>0] = $463; + $465 = HEAP32[$456>>2]|0; + $466 = $465 >>> 16; + $467 = $466&255; + $468 = ((($0)) + 18|0); + HEAP8[$468>>0] = $467; + $469 = $465 >>> 24; + $470 = ((($0)) + 19|0); + $471 = HEAP32[$386>>2]|0; + $472 = $471 | $469; + $473 = $472&255; + HEAP8[$470>>0] = $473; + $474 = $471 >>> 8; + $475 = $474&255; + $476 = ((($0)) + 20|0); + HEAP8[$476>>0] = $475; + $477 = HEAP32[$386>>2]|0; + $478 = $477 >>> 16; + $479 = $478&255; + $480 = ((($0)) + 21|0); + HEAP8[$480>>0] = $479; + $481 = $477 >>> 24; + $482 = ((($0)) + 22|0); + $483 = HEAP32[$389>>2]|0; + $484 = $483 | $481; + $485 = $484&255; + HEAP8[$482>>0] = $485; + $486 = $483 >>> 8; + $487 = $486&255; + $488 = ((($0)) + 23|0); + HEAP8[$488>>0] = $487; + $489 = HEAP32[$389>>2]|0; + $490 = $489 >>> 16; + $491 = $490&255; + $492 = ((($0)) + 24|0); + HEAP8[$492>>0] = $491; + $493 = $489 >>> 24; + $494 = ((($0)) + 25|0); + $495 = HEAP32[$392>>2]|0; + $496 = $495 | $493; + $497 = $496&255; + HEAP8[$494>>0] = $497; + $498 = $495 >>> 8; + $499 = $498&255; + $500 = ((($0)) + 26|0); + HEAP8[$500>>0] = $499; + $501 = HEAP32[$392>>2]|0; + $502 = $501 >>> 16; + $503 = $502&255; + $504 = ((($0)) + 27|0); + HEAP8[$504>>0] = $503; + $505 = $501 >>> 24; + $506 = ((($0)) + 28|0); + $507 = HEAP32[$395>>2]|0; + $508 = $507 | $505; + $509 = $508&255; + HEAP8[$506>>0] = $509; + $510 = $507 >>> 8; + $511 = $510&255; + $512 = ((($0)) + 29|0); + HEAP8[$512>>0] = $511; + $513 = HEAP32[$395>>2]|0; + $514 = $513 >>> 16; + $515 = $514&255; + $516 = ((($0)) + 30|0); + HEAP8[$516>>0] = $515; + $517 = $513 >>> 24; + $518 = $517&255; + $519 = ((($0)) + 31|0); + HEAP8[$519>>0] = $518; STACKTOP = sp;return; } -function _s32_gte($a) { - $a = $a|0; - var $0 = 0, $1 = 0, $2 = 0, label = 0, sp = 0; +function _s32_gte($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, $3 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = (($a) + -67108845)|0; - $1 = $0 >> 31; - $2 = $1 ^ -1; - return ($2|0); -} -function _s32_eq($a,$b) { - $a = $a|0; - $b = $b|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + $1 = (($0) + -67108845)|0; + $2 = $1 >> 31; + $3 = $2 ^ -1; + return ($3|0); +} +function _s32_eq($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = $a ^ -1; - $1 = $0 ^ $b; - $2 = $1 << 16; - $3 = $2 & $1; - $4 = $3 << 8; + $2 = $0 ^ -1; + $3 = $2 ^ $1; + $4 = $3 << 16; $5 = $4 & $3; - $6 = $5 << 4; + $6 = $5 << 8; $7 = $6 & $5; - $8 = $7 << 2; + $8 = $7 << 4; $9 = $8 & $7; - $10 = $9 << 1; + $10 = $9 << 2; $11 = $10 & $9; - $12 = $11 >> 31; - return ($12|0); -} -function _fproduct($output,$in2,$in) { - $output = $output|0; - $in2 = $in2|0; - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; - var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0; - var $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0; - var $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0; - var $107 = 0, $1070 = 0, $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0; - var $1088 = 0, $1089 = 0, $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0; - var $1105 = 0, $1106 = 0, $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $1119 = 0, $112 = 0, $1120 = 0, $1121 = 0, $1122 = 0; - var $1123 = 0, $1124 = 0, $1125 = 0, $1126 = 0, $1127 = 0, $1128 = 0, $1129 = 0, $113 = 0, $1130 = 0, $1131 = 0, $1132 = 0, $1133 = 0, $1134 = 0, $1135 = 0, $1136 = 0, $1137 = 0, $1138 = 0, $1139 = 0, $114 = 0, $1140 = 0; - var $1141 = 0, $1142 = 0, $1143 = 0, $1144 = 0, $1145 = 0, $1146 = 0, $1147 = 0, $1148 = 0, $1149 = 0, $115 = 0, $1150 = 0, $1151 = 0, $1152 = 0, $1153 = 0, $1154 = 0, $1155 = 0, $1156 = 0, $1157 = 0, $1158 = 0, $1159 = 0; - var $116 = 0, $1160 = 0, $1161 = 0, $1162 = 0, $1163 = 0, $1164 = 0, $1165 = 0, $1166 = 0, $1167 = 0, $1168 = 0, $1169 = 0, $117 = 0, $1170 = 0, $1171 = 0, $1172 = 0, $1173 = 0, $1174 = 0, $1175 = 0, $1176 = 0, $1177 = 0; - var $1178 = 0, $1179 = 0, $118 = 0, $1180 = 0, $1181 = 0, $1182 = 0, $1183 = 0, $1184 = 0, $1185 = 0, $1186 = 0, $1187 = 0, $1188 = 0, $1189 = 0, $119 = 0, $1190 = 0, $1191 = 0, $1192 = 0, $1193 = 0, $1194 = 0, $1195 = 0; - var $1196 = 0, $1197 = 0, $1198 = 0, $1199 = 0, $12 = 0, $120 = 0, $1200 = 0, $1201 = 0, $1202 = 0, $1203 = 0, $1204 = 0, $1205 = 0, $1206 = 0, $1207 = 0, $1208 = 0, $1209 = 0, $121 = 0, $1210 = 0, $1211 = 0, $1212 = 0; - var $1213 = 0, $1214 = 0, $1215 = 0, $1216 = 0, $1217 = 0, $1218 = 0, $1219 = 0, $122 = 0, $1220 = 0, $1221 = 0, $1222 = 0, $1223 = 0, $1224 = 0, $1225 = 0, $1226 = 0, $1227 = 0, $1228 = 0, $1229 = 0, $123 = 0, $1230 = 0; - var $1231 = 0, $1232 = 0, $1233 = 0, $1234 = 0, $1235 = 0, $1236 = 0, $1237 = 0, $1238 = 0, $1239 = 0, $124 = 0, $1240 = 0, $1241 = 0, $1242 = 0, $1243 = 0, $1244 = 0, $1245 = 0, $1246 = 0, $1247 = 0, $1248 = 0, $1249 = 0; - var $125 = 0, $1250 = 0, $1251 = 0, $1252 = 0, $1253 = 0, $1254 = 0, $1255 = 0, $1256 = 0, $1257 = 0, $1258 = 0, $1259 = 0, $126 = 0, $1260 = 0, $1261 = 0, $1262 = 0, $1263 = 0, $1264 = 0, $1265 = 0, $1266 = 0, $1267 = 0; - var $1268 = 0, $1269 = 0, $127 = 0, $1270 = 0, $1271 = 0, $1272 = 0, $1273 = 0, $1274 = 0, $1275 = 0, $1276 = 0, $1277 = 0, $1278 = 0, $1279 = 0, $128 = 0, $1280 = 0, $1281 = 0, $1282 = 0, $1283 = 0, $1284 = 0, $1285 = 0; - var $1286 = 0, $1287 = 0, $1288 = 0, $1289 = 0, $129 = 0, $1290 = 0, $1291 = 0, $1292 = 0, $1293 = 0, $1294 = 0, $1295 = 0, $1296 = 0, $1297 = 0, $1298 = 0, $1299 = 0, $13 = 0, $130 = 0, $1300 = 0, $1301 = 0, $1302 = 0; - var $1303 = 0, $1304 = 0, $1305 = 0, $1306 = 0, $1307 = 0, $1308 = 0, $1309 = 0, $131 = 0, $1310 = 0, $1311 = 0, $1312 = 0, $1313 = 0, $1314 = 0, $1315 = 0, $1316 = 0, $1317 = 0, $1318 = 0, $1319 = 0, $132 = 0, $1320 = 0; - var $1321 = 0, $1322 = 0, $1323 = 0, $1324 = 0, $1325 = 0, $1326 = 0, $1327 = 0, $1328 = 0, $1329 = 0, $133 = 0, $1330 = 0, $1331 = 0, $1332 = 0, $1333 = 0, $1334 = 0, $1335 = 0, $1336 = 0, $1337 = 0, $1338 = 0, $1339 = 0; - var $134 = 0, $1340 = 0, $1341 = 0, $1342 = 0, $1343 = 0, $1344 = 0, $1345 = 0, $1346 = 0, $1347 = 0, $1348 = 0, $1349 = 0, $135 = 0, $1350 = 0, $1351 = 0, $1352 = 0, $1353 = 0, $1354 = 0, $1355 = 0, $1356 = 0, $1357 = 0; - var $1358 = 0, $1359 = 0, $136 = 0, $1360 = 0, $1361 = 0, $1362 = 0, $1363 = 0, $1364 = 0, $1365 = 0, $1366 = 0, $1367 = 0, $1368 = 0, $1369 = 0, $137 = 0, $1370 = 0, $1371 = 0, $1372 = 0, $1373 = 0, $1374 = 0, $1375 = 0; - var $1376 = 0, $1377 = 0, $1378 = 0, $1379 = 0, $138 = 0, $1380 = 0, $1381 = 0, $1382 = 0, $1383 = 0, $1384 = 0, $1385 = 0, $1386 = 0, $1387 = 0, $1388 = 0, $1389 = 0, $139 = 0, $1390 = 0, $1391 = 0, $1392 = 0, $1393 = 0; - var $1394 = 0, $1395 = 0, $1396 = 0, $1397 = 0, $1398 = 0, $1399 = 0, $14 = 0, $140 = 0, $1400 = 0, $1401 = 0, $1402 = 0, $1403 = 0, $1404 = 0, $1405 = 0, $1406 = 0, $1407 = 0, $1408 = 0, $1409 = 0, $141 = 0, $1410 = 0; - var $1411 = 0, $1412 = 0, $1413 = 0, $1414 = 0, $1415 = 0, $1416 = 0, $1417 = 0, $1418 = 0, $1419 = 0, $142 = 0, $1420 = 0, $1421 = 0, $1422 = 0, $1423 = 0, $1424 = 0, $1425 = 0, $1426 = 0, $1427 = 0, $1428 = 0, $1429 = 0; - var $143 = 0, $1430 = 0, $1431 = 0, $1432 = 0, $1433 = 0, $1434 = 0, $1435 = 0, $1436 = 0, $1437 = 0, $1438 = 0, $1439 = 0, $144 = 0, $1440 = 0, $1441 = 0, $1442 = 0, $1443 = 0, $1444 = 0, $1445 = 0, $1446 = 0, $1447 = 0; - var $1448 = 0, $1449 = 0, $145 = 0, $1450 = 0, $1451 = 0, $1452 = 0, $1453 = 0, $1454 = 0, $1455 = 0, $1456 = 0, $1457 = 0, $1458 = 0, $1459 = 0, $146 = 0, $1460 = 0, $1461 = 0, $1462 = 0, $1463 = 0, $1464 = 0, $1465 = 0; - var $1466 = 0, $1467 = 0, $1468 = 0, $1469 = 0, $147 = 0, $1470 = 0, $1471 = 0, $1472 = 0, $1473 = 0, $1474 = 0, $1475 = 0, $1476 = 0, $1477 = 0, $1478 = 0, $1479 = 0, $148 = 0, $1480 = 0, $1481 = 0, $1482 = 0, $1483 = 0; - var $1484 = 0, $1485 = 0, $1486 = 0, $1487 = 0, $1488 = 0, $1489 = 0, $149 = 0, $1490 = 0, $1491 = 0, $1492 = 0, $1493 = 0, $1494 = 0, $1495 = 0, $1496 = 0, $1497 = 0, $1498 = 0, $1499 = 0, $15 = 0, $150 = 0, $1500 = 0; - var $1501 = 0, $1502 = 0, $1503 = 0, $1504 = 0, $1505 = 0, $1506 = 0, $1507 = 0, $1508 = 0, $1509 = 0, $151 = 0, $1510 = 0, $1511 = 0, $1512 = 0, $1513 = 0, $1514 = 0, $1515 = 0, $1516 = 0, $1517 = 0, $1518 = 0, $1519 = 0; - var $152 = 0, $1520 = 0, $1521 = 0, $1522 = 0, $1523 = 0, $1524 = 0, $1525 = 0, $1526 = 0, $1527 = 0, $1528 = 0, $1529 = 0, $153 = 0, $1530 = 0, $1531 = 0, $1532 = 0, $1533 = 0, $1534 = 0, $1535 = 0, $1536 = 0, $1537 = 0; - var $1538 = 0, $1539 = 0, $154 = 0, $1540 = 0, $1541 = 0, $1542 = 0, $1543 = 0, $1544 = 0, $1545 = 0, $1546 = 0, $1547 = 0, $1548 = 0, $1549 = 0, $155 = 0, $1550 = 0, $1551 = 0, $1552 = 0, $1553 = 0, $1554 = 0, $1555 = 0; - var $1556 = 0, $1557 = 0, $1558 = 0, $1559 = 0, $156 = 0, $1560 = 0, $1561 = 0, $1562 = 0, $1563 = 0, $1564 = 0, $1565 = 0, $1566 = 0, $1567 = 0, $1568 = 0, $1569 = 0, $157 = 0, $1570 = 0, $1571 = 0, $1572 = 0, $1573 = 0; - var $1574 = 0, $1575 = 0, $1576 = 0, $1577 = 0, $1578 = 0, $1579 = 0, $158 = 0, $1580 = 0, $1581 = 0, $1582 = 0, $1583 = 0, $1584 = 0, $1585 = 0, $1586 = 0, $1587 = 0, $1588 = 0, $1589 = 0, $159 = 0, $1590 = 0, $1591 = 0; - var $1592 = 0, $1593 = 0, $1594 = 0, $1595 = 0, $1596 = 0, $1597 = 0, $1598 = 0, $1599 = 0, $16 = 0, $160 = 0, $1600 = 0, $1601 = 0, $1602 = 0, $1603 = 0, $1604 = 0, $1605 = 0, $1606 = 0, $1607 = 0, $1608 = 0, $1609 = 0; - var $161 = 0, $1610 = 0, $1611 = 0, $1612 = 0, $1613 = 0, $1614 = 0, $1615 = 0, $1616 = 0, $1617 = 0, $1618 = 0, $1619 = 0, $162 = 0, $1620 = 0, $1621 = 0, $1622 = 0, $1623 = 0, $1624 = 0, $1625 = 0, $1626 = 0, $1627 = 0; - var $1628 = 0, $1629 = 0, $163 = 0, $1630 = 0, $1631 = 0, $1632 = 0, $1633 = 0, $1634 = 0, $1635 = 0, $1636 = 0, $1637 = 0, $1638 = 0, $1639 = 0, $164 = 0, $1640 = 0, $1641 = 0, $1642 = 0, $1643 = 0, $1644 = 0, $1645 = 0; - var $1646 = 0, $1647 = 0, $1648 = 0, $1649 = 0, $165 = 0, $1650 = 0, $1651 = 0, $1652 = 0, $1653 = 0, $1654 = 0, $1655 = 0, $1656 = 0, $1657 = 0, $1658 = 0, $1659 = 0, $166 = 0, $1660 = 0, $1661 = 0, $1662 = 0, $1663 = 0; - var $1664 = 0, $1665 = 0, $1666 = 0, $1667 = 0, $1668 = 0, $1669 = 0, $167 = 0, $1670 = 0, $1671 = 0, $1672 = 0, $1673 = 0, $1674 = 0, $1675 = 0, $1676 = 0, $1677 = 0, $1678 = 0, $1679 = 0, $168 = 0, $1680 = 0, $1681 = 0; - var $1682 = 0, $1683 = 0, $1684 = 0, $1685 = 0, $1686 = 0, $1687 = 0, $1688 = 0, $1689 = 0, $169 = 0, $1690 = 0, $1691 = 0, $1692 = 0, $1693 = 0, $1694 = 0, $1695 = 0, $1696 = 0, $1697 = 0, $1698 = 0, $1699 = 0, $17 = 0; - var $170 = 0, $1700 = 0, $1701 = 0, $1702 = 0, $1703 = 0, $1704 = 0, $1705 = 0, $1706 = 0, $1707 = 0, $1708 = 0, $1709 = 0, $171 = 0, $1710 = 0, $1711 = 0, $1712 = 0, $1713 = 0, $1714 = 0, $1715 = 0, $1716 = 0, $1717 = 0; - var $1718 = 0, $1719 = 0, $172 = 0, $1720 = 0, $1721 = 0, $1722 = 0, $1723 = 0, $1724 = 0, $1725 = 0, $1726 = 0, $1727 = 0, $1728 = 0, $1729 = 0, $173 = 0, $1730 = 0, $1731 = 0, $1732 = 0, $1733 = 0, $1734 = 0, $1735 = 0; - var $1736 = 0, $1737 = 0, $1738 = 0, $1739 = 0, $174 = 0, $1740 = 0, $1741 = 0, $1742 = 0, $1743 = 0, $1744 = 0, $1745 = 0, $1746 = 0, $1747 = 0, $1748 = 0, $1749 = 0, $175 = 0, $1750 = 0, $1751 = 0, $1752 = 0, $1753 = 0; - var $1754 = 0, $1755 = 0, $1756 = 0, $1757 = 0, $1758 = 0, $1759 = 0, $176 = 0, $1760 = 0, $1761 = 0, $1762 = 0, $1763 = 0, $1764 = 0, $1765 = 0, $1766 = 0, $1767 = 0, $1768 = 0, $1769 = 0, $177 = 0, $1770 = 0, $1771 = 0; - var $1772 = 0, $1773 = 0, $1774 = 0, $1775 = 0, $1776 = 0, $1777 = 0, $1778 = 0, $1779 = 0, $178 = 0, $1780 = 0, $1781 = 0, $1782 = 0, $1783 = 0, $1784 = 0, $1785 = 0, $1786 = 0, $1787 = 0, $1788 = 0, $1789 = 0, $179 = 0; - var $1790 = 0, $1791 = 0, $1792 = 0, $1793 = 0, $1794 = 0, $1795 = 0, $1796 = 0, $1797 = 0, $1798 = 0, $1799 = 0, $18 = 0, $180 = 0, $1800 = 0, $1801 = 0, $1802 = 0, $1803 = 0, $1804 = 0, $1805 = 0, $1806 = 0, $1807 = 0; - var $1808 = 0, $1809 = 0, $181 = 0, $1810 = 0, $1811 = 0, $1812 = 0, $1813 = 0, $1814 = 0, $1815 = 0, $1816 = 0, $1817 = 0, $1818 = 0, $1819 = 0, $182 = 0, $1820 = 0, $1821 = 0, $1822 = 0, $1823 = 0, $1824 = 0, $1825 = 0; - var $1826 = 0, $1827 = 0, $1828 = 0, $1829 = 0, $183 = 0, $1830 = 0, $1831 = 0, $1832 = 0, $1833 = 0, $1834 = 0, $1835 = 0, $1836 = 0, $1837 = 0, $1838 = 0, $1839 = 0, $184 = 0, $1840 = 0, $1841 = 0, $1842 = 0, $1843 = 0; - var $1844 = 0, $1845 = 0, $1846 = 0, $1847 = 0, $1848 = 0, $1849 = 0, $185 = 0, $1850 = 0, $1851 = 0, $1852 = 0, $1853 = 0, $1854 = 0, $1855 = 0, $1856 = 0, $1857 = 0, $1858 = 0, $1859 = 0, $186 = 0, $1860 = 0, $1861 = 0; - var $1862 = 0, $1863 = 0, $1864 = 0, $1865 = 0, $1866 = 0, $1867 = 0, $1868 = 0, $1869 = 0, $187 = 0, $1870 = 0, $1871 = 0, $1872 = 0, $1873 = 0, $1874 = 0, $1875 = 0, $1876 = 0, $1877 = 0, $1878 = 0, $1879 = 0, $188 = 0; - var $1880 = 0, $1881 = 0, $1882 = 0, $1883 = 0, $1884 = 0, $1885 = 0, $1886 = 0, $1887 = 0, $1888 = 0, $1889 = 0, $189 = 0, $1890 = 0, $1891 = 0, $1892 = 0, $1893 = 0, $1894 = 0, $1895 = 0, $1896 = 0, $1897 = 0, $1898 = 0; - var $1899 = 0, $19 = 0, $190 = 0, $1900 = 0, $1901 = 0, $1902 = 0, $1903 = 0, $1904 = 0, $1905 = 0, $1906 = 0, $1907 = 0, $1908 = 0, $1909 = 0, $191 = 0, $1910 = 0, $1911 = 0, $1912 = 0, $1913 = 0, $1914 = 0, $1915 = 0; - var $1916 = 0, $1917 = 0, $1918 = 0, $1919 = 0, $192 = 0, $1920 = 0, $1921 = 0, $1922 = 0, $1923 = 0, $1924 = 0, $1925 = 0, $1926 = 0, $1927 = 0, $1928 = 0, $1929 = 0, $193 = 0, $1930 = 0, $1931 = 0, $1932 = 0, $1933 = 0; - var $1934 = 0, $1935 = 0, $1936 = 0, $1937 = 0, $1938 = 0, $1939 = 0, $194 = 0, $1940 = 0, $1941 = 0, $1942 = 0, $1943 = 0, $1944 = 0, $1945 = 0, $1946 = 0, $1947 = 0, $1948 = 0, $1949 = 0, $195 = 0, $1950 = 0, $1951 = 0; - var $1952 = 0, $1953 = 0, $1954 = 0, $1955 = 0, $1956 = 0, $1957 = 0, $1958 = 0, $1959 = 0, $196 = 0, $1960 = 0, $1961 = 0, $1962 = 0, $1963 = 0, $1964 = 0, $1965 = 0, $1966 = 0, $1967 = 0, $1968 = 0, $1969 = 0, $197 = 0; - var $1970 = 0, $1971 = 0, $1972 = 0, $1973 = 0, $1974 = 0, $1975 = 0, $1976 = 0, $1977 = 0, $1978 = 0, $1979 = 0, $198 = 0, $1980 = 0, $1981 = 0, $1982 = 0, $1983 = 0, $1984 = 0, $1985 = 0, $1986 = 0, $1987 = 0, $1988 = 0; - var $1989 = 0, $199 = 0, $1990 = 0, $1991 = 0, $1992 = 0, $1993 = 0, $1994 = 0, $1995 = 0, $1996 = 0, $1997 = 0, $1998 = 0, $1999 = 0, $2 = 0, $20 = 0, $200 = 0, $2000 = 0, $2001 = 0, $2002 = 0, $2003 = 0, $2004 = 0; - var $2005 = 0, $2006 = 0, $2007 = 0, $2008 = 0, $2009 = 0, $201 = 0, $2010 = 0, $2011 = 0, $2012 = 0, $2013 = 0, $2014 = 0, $2015 = 0, $2016 = 0, $2017 = 0, $2018 = 0, $2019 = 0, $202 = 0, $2020 = 0, $2021 = 0, $2022 = 0; - var $2023 = 0, $2024 = 0, $2025 = 0, $2026 = 0, $2027 = 0, $2028 = 0, $2029 = 0, $203 = 0, $2030 = 0, $2031 = 0, $2032 = 0, $2033 = 0, $2034 = 0, $2035 = 0, $2036 = 0, $2037 = 0, $2038 = 0, $2039 = 0, $204 = 0, $2040 = 0; - var $2041 = 0, $2042 = 0, $2043 = 0, $2044 = 0, $2045 = 0, $2046 = 0, $2047 = 0, $2048 = 0, $2049 = 0, $205 = 0, $2050 = 0, $2051 = 0, $2052 = 0, $2053 = 0, $2054 = 0, $2055 = 0, $2056 = 0, $2057 = 0, $2058 = 0, $2059 = 0; - var $206 = 0, $2060 = 0, $2061 = 0, $2062 = 0, $2063 = 0, $2064 = 0, $2065 = 0, $2066 = 0, $2067 = 0, $2068 = 0, $2069 = 0, $207 = 0, $2070 = 0, $2071 = 0, $2072 = 0, $2073 = 0, $2074 = 0, $2075 = 0, $2076 = 0, $2077 = 0; - var $2078 = 0, $2079 = 0, $208 = 0, $2080 = 0, $2081 = 0, $2082 = 0, $2083 = 0, $2084 = 0, $2085 = 0, $2086 = 0, $2087 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0; + $12 = $11 << 1; + $13 = $12 & $11; + $14 = $13 >> 31; + return ($14|0); +} +function _fproduct($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0, $1015 = 0, $1016 = 0; + var $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0, $1033 = 0, $1034 = 0; + var $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0, $1051 = 0, $1052 = 0; + var $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0, $107 = 0, $1070 = 0; + var $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0, $1088 = 0, $1089 = 0; + var $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0, $1105 = 0, $1106 = 0; + var $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $1119 = 0, $112 = 0, $1120 = 0, $1121 = 0, $1122 = 0, $1123 = 0, $1124 = 0; + var $1125 = 0, $1126 = 0, $1127 = 0, $1128 = 0, $1129 = 0, $113 = 0, $1130 = 0, $1131 = 0, $1132 = 0, $1133 = 0, $1134 = 0, $1135 = 0, $1136 = 0, $1137 = 0, $1138 = 0, $1139 = 0, $114 = 0, $1140 = 0, $1141 = 0, $1142 = 0; + var $1143 = 0, $1144 = 0, $1145 = 0, $1146 = 0, $1147 = 0, $1148 = 0, $1149 = 0, $115 = 0, $1150 = 0, $1151 = 0, $1152 = 0, $1153 = 0, $1154 = 0, $1155 = 0, $1156 = 0, $1157 = 0, $1158 = 0, $1159 = 0, $116 = 0, $1160 = 0; + var $1161 = 0, $1162 = 0, $1163 = 0, $1164 = 0, $1165 = 0, $1166 = 0, $1167 = 0, $1168 = 0, $1169 = 0, $117 = 0, $1170 = 0, $1171 = 0, $1172 = 0, $1173 = 0, $1174 = 0, $1175 = 0, $1176 = 0, $1177 = 0, $1178 = 0, $1179 = 0; + var $118 = 0, $1180 = 0, $1181 = 0, $1182 = 0, $1183 = 0, $1184 = 0, $1185 = 0, $1186 = 0, $1187 = 0, $1188 = 0, $1189 = 0, $119 = 0, $1190 = 0, $1191 = 0, $1192 = 0, $1193 = 0, $1194 = 0, $1195 = 0, $1196 = 0, $1197 = 0; + var $1198 = 0, $1199 = 0, $12 = 0, $120 = 0, $1200 = 0, $1201 = 0, $1202 = 0, $1203 = 0, $1204 = 0, $1205 = 0, $1206 = 0, $1207 = 0, $1208 = 0, $1209 = 0, $121 = 0, $1210 = 0, $1211 = 0, $1212 = 0, $1213 = 0, $1214 = 0; + var $1215 = 0, $1216 = 0, $1217 = 0, $1218 = 0, $1219 = 0, $122 = 0, $1220 = 0, $1221 = 0, $1222 = 0, $1223 = 0, $1224 = 0, $1225 = 0, $1226 = 0, $1227 = 0, $1228 = 0, $1229 = 0, $123 = 0, $1230 = 0, $1231 = 0, $1232 = 0; + var $1233 = 0, $1234 = 0, $1235 = 0, $1236 = 0, $1237 = 0, $1238 = 0, $1239 = 0, $124 = 0, $1240 = 0, $1241 = 0, $1242 = 0, $1243 = 0, $1244 = 0, $1245 = 0, $1246 = 0, $1247 = 0, $1248 = 0, $1249 = 0, $125 = 0, $1250 = 0; + var $1251 = 0, $1252 = 0, $1253 = 0, $1254 = 0, $1255 = 0, $1256 = 0, $1257 = 0, $1258 = 0, $1259 = 0, $126 = 0, $1260 = 0, $1261 = 0, $1262 = 0, $1263 = 0, $1264 = 0, $1265 = 0, $1266 = 0, $1267 = 0, $1268 = 0, $1269 = 0; + var $127 = 0, $1270 = 0, $1271 = 0, $1272 = 0, $1273 = 0, $1274 = 0, $1275 = 0, $1276 = 0, $1277 = 0, $1278 = 0, $1279 = 0, $128 = 0, $1280 = 0, $1281 = 0, $1282 = 0, $1283 = 0, $1284 = 0, $1285 = 0, $1286 = 0, $1287 = 0; + var $1288 = 0, $1289 = 0, $129 = 0, $1290 = 0, $1291 = 0, $1292 = 0, $1293 = 0, $1294 = 0, $1295 = 0, $1296 = 0, $1297 = 0, $1298 = 0, $1299 = 0, $13 = 0, $130 = 0, $1300 = 0, $1301 = 0, $1302 = 0, $1303 = 0, $1304 = 0; + var $1305 = 0, $1306 = 0, $1307 = 0, $1308 = 0, $1309 = 0, $131 = 0, $1310 = 0, $1311 = 0, $1312 = 0, $1313 = 0, $1314 = 0, $1315 = 0, $1316 = 0, $1317 = 0, $1318 = 0, $1319 = 0, $132 = 0, $1320 = 0, $1321 = 0, $1322 = 0; + var $1323 = 0, $1324 = 0, $1325 = 0, $1326 = 0, $1327 = 0, $1328 = 0, $1329 = 0, $133 = 0, $1330 = 0, $1331 = 0, $1332 = 0, $1333 = 0, $1334 = 0, $1335 = 0, $1336 = 0, $1337 = 0, $1338 = 0, $1339 = 0, $134 = 0, $1340 = 0; + var $1341 = 0, $1342 = 0, $1343 = 0, $1344 = 0, $1345 = 0, $1346 = 0, $1347 = 0, $1348 = 0, $1349 = 0, $135 = 0, $1350 = 0, $1351 = 0, $1352 = 0, $1353 = 0, $1354 = 0, $1355 = 0, $1356 = 0, $1357 = 0, $1358 = 0, $1359 = 0; + var $136 = 0, $1360 = 0, $1361 = 0, $1362 = 0, $1363 = 0, $1364 = 0, $1365 = 0, $1366 = 0, $1367 = 0, $1368 = 0, $1369 = 0, $137 = 0, $1370 = 0, $1371 = 0, $1372 = 0, $1373 = 0, $1374 = 0, $1375 = 0, $1376 = 0, $1377 = 0; + var $1378 = 0, $1379 = 0, $138 = 0, $1380 = 0, $1381 = 0, $1382 = 0, $1383 = 0, $1384 = 0, $1385 = 0, $1386 = 0, $1387 = 0, $1388 = 0, $1389 = 0, $139 = 0, $1390 = 0, $1391 = 0, $1392 = 0, $1393 = 0, $1394 = 0, $1395 = 0; + var $1396 = 0, $1397 = 0, $1398 = 0, $1399 = 0, $14 = 0, $140 = 0, $1400 = 0, $1401 = 0, $1402 = 0, $1403 = 0, $1404 = 0, $1405 = 0, $1406 = 0, $1407 = 0, $1408 = 0, $1409 = 0, $141 = 0, $1410 = 0, $1411 = 0, $1412 = 0; + var $1413 = 0, $1414 = 0, $1415 = 0, $1416 = 0, $1417 = 0, $1418 = 0, $1419 = 0, $142 = 0, $1420 = 0, $1421 = 0, $1422 = 0, $1423 = 0, $1424 = 0, $1425 = 0, $1426 = 0, $1427 = 0, $1428 = 0, $1429 = 0, $143 = 0, $1430 = 0; + var $1431 = 0, $1432 = 0, $1433 = 0, $1434 = 0, $1435 = 0, $1436 = 0, $1437 = 0, $1438 = 0, $1439 = 0, $144 = 0, $1440 = 0, $1441 = 0, $1442 = 0, $1443 = 0, $1444 = 0, $1445 = 0, $1446 = 0, $1447 = 0, $1448 = 0, $1449 = 0; + var $145 = 0, $1450 = 0, $1451 = 0, $1452 = 0, $1453 = 0, $1454 = 0, $1455 = 0, $1456 = 0, $1457 = 0, $1458 = 0, $1459 = 0, $146 = 0, $1460 = 0, $1461 = 0, $1462 = 0, $1463 = 0, $1464 = 0, $1465 = 0, $1466 = 0, $1467 = 0; + var $1468 = 0, $1469 = 0, $147 = 0, $1470 = 0, $1471 = 0, $1472 = 0, $1473 = 0, $1474 = 0, $1475 = 0, $1476 = 0, $1477 = 0, $1478 = 0, $1479 = 0, $148 = 0, $1480 = 0, $1481 = 0, $1482 = 0, $1483 = 0, $1484 = 0, $1485 = 0; + var $1486 = 0, $1487 = 0, $1488 = 0, $1489 = 0, $149 = 0, $1490 = 0, $1491 = 0, $1492 = 0, $1493 = 0, $1494 = 0, $1495 = 0, $1496 = 0, $1497 = 0, $1498 = 0, $1499 = 0, $15 = 0, $150 = 0, $1500 = 0, $1501 = 0, $1502 = 0; + var $1503 = 0, $1504 = 0, $1505 = 0, $1506 = 0, $1507 = 0, $1508 = 0, $1509 = 0, $151 = 0, $1510 = 0, $1511 = 0, $1512 = 0, $1513 = 0, $1514 = 0, $1515 = 0, $1516 = 0, $1517 = 0, $1518 = 0, $1519 = 0, $152 = 0, $1520 = 0; + var $1521 = 0, $1522 = 0, $1523 = 0, $1524 = 0, $1525 = 0, $1526 = 0, $1527 = 0, $1528 = 0, $1529 = 0, $153 = 0, $1530 = 0, $1531 = 0, $1532 = 0, $1533 = 0, $1534 = 0, $1535 = 0, $1536 = 0, $1537 = 0, $1538 = 0, $1539 = 0; + var $154 = 0, $1540 = 0, $1541 = 0, $1542 = 0, $1543 = 0, $1544 = 0, $1545 = 0, $1546 = 0, $1547 = 0, $1548 = 0, $1549 = 0, $155 = 0, $1550 = 0, $1551 = 0, $1552 = 0, $1553 = 0, $1554 = 0, $1555 = 0, $1556 = 0, $1557 = 0; + var $1558 = 0, $1559 = 0, $156 = 0, $1560 = 0, $1561 = 0, $1562 = 0, $1563 = 0, $1564 = 0, $1565 = 0, $1566 = 0, $1567 = 0, $1568 = 0, $1569 = 0, $157 = 0, $1570 = 0, $1571 = 0, $1572 = 0, $1573 = 0, $1574 = 0, $1575 = 0; + var $1576 = 0, $1577 = 0, $1578 = 0, $1579 = 0, $158 = 0, $1580 = 0, $1581 = 0, $1582 = 0, $1583 = 0, $1584 = 0, $1585 = 0, $1586 = 0, $1587 = 0, $1588 = 0, $1589 = 0, $159 = 0, $1590 = 0, $1591 = 0, $1592 = 0, $1593 = 0; + var $1594 = 0, $1595 = 0, $1596 = 0, $1597 = 0, $1598 = 0, $1599 = 0, $16 = 0, $160 = 0, $1600 = 0, $1601 = 0, $1602 = 0, $1603 = 0, $1604 = 0, $1605 = 0, $1606 = 0, $1607 = 0, $1608 = 0, $1609 = 0, $161 = 0, $1610 = 0; + var $1611 = 0, $1612 = 0, $1613 = 0, $1614 = 0, $1615 = 0, $1616 = 0, $1617 = 0, $1618 = 0, $1619 = 0, $162 = 0, $1620 = 0, $1621 = 0, $1622 = 0, $1623 = 0, $1624 = 0, $1625 = 0, $1626 = 0, $1627 = 0, $1628 = 0, $1629 = 0; + var $163 = 0, $1630 = 0, $1631 = 0, $1632 = 0, $1633 = 0, $1634 = 0, $1635 = 0, $1636 = 0, $1637 = 0, $1638 = 0, $1639 = 0, $164 = 0, $1640 = 0, $1641 = 0, $1642 = 0, $1643 = 0, $1644 = 0, $1645 = 0, $1646 = 0, $1647 = 0; + var $1648 = 0, $1649 = 0, $165 = 0, $1650 = 0, $1651 = 0, $1652 = 0, $1653 = 0, $1654 = 0, $1655 = 0, $1656 = 0, $1657 = 0, $1658 = 0, $1659 = 0, $166 = 0, $1660 = 0, $1661 = 0, $1662 = 0, $1663 = 0, $1664 = 0, $1665 = 0; + var $1666 = 0, $1667 = 0, $1668 = 0, $1669 = 0, $167 = 0, $1670 = 0, $1671 = 0, $1672 = 0, $1673 = 0, $1674 = 0, $1675 = 0, $1676 = 0, $1677 = 0, $1678 = 0, $1679 = 0, $168 = 0, $1680 = 0, $1681 = 0, $1682 = 0, $1683 = 0; + var $1684 = 0, $1685 = 0, $1686 = 0, $1687 = 0, $1688 = 0, $1689 = 0, $169 = 0, $1690 = 0, $1691 = 0, $1692 = 0, $1693 = 0, $1694 = 0, $1695 = 0, $1696 = 0, $1697 = 0, $1698 = 0, $1699 = 0, $17 = 0, $170 = 0, $1700 = 0; + var $1701 = 0, $1702 = 0, $1703 = 0, $1704 = 0, $1705 = 0, $1706 = 0, $1707 = 0, $1708 = 0, $1709 = 0, $171 = 0, $1710 = 0, $1711 = 0, $1712 = 0, $1713 = 0, $1714 = 0, $1715 = 0, $1716 = 0, $1717 = 0, $1718 = 0, $1719 = 0; + var $172 = 0, $1720 = 0, $1721 = 0, $1722 = 0, $1723 = 0, $1724 = 0, $1725 = 0, $1726 = 0, $1727 = 0, $1728 = 0, $1729 = 0, $173 = 0, $1730 = 0, $1731 = 0, $1732 = 0, $1733 = 0, $1734 = 0, $1735 = 0, $1736 = 0, $1737 = 0; + var $1738 = 0, $1739 = 0, $174 = 0, $1740 = 0, $1741 = 0, $1742 = 0, $1743 = 0, $1744 = 0, $1745 = 0, $1746 = 0, $1747 = 0, $1748 = 0, $1749 = 0, $175 = 0, $1750 = 0, $1751 = 0, $1752 = 0, $1753 = 0, $1754 = 0, $1755 = 0; + var $1756 = 0, $1757 = 0, $1758 = 0, $1759 = 0, $176 = 0, $1760 = 0, $1761 = 0, $1762 = 0, $1763 = 0, $1764 = 0, $1765 = 0, $1766 = 0, $1767 = 0, $1768 = 0, $1769 = 0, $177 = 0, $1770 = 0, $1771 = 0, $1772 = 0, $1773 = 0; + var $1774 = 0, $1775 = 0, $1776 = 0, $1777 = 0, $1778 = 0, $1779 = 0, $178 = 0, $1780 = 0, $1781 = 0, $1782 = 0, $1783 = 0, $1784 = 0, $1785 = 0, $1786 = 0, $1787 = 0, $1788 = 0, $1789 = 0, $179 = 0, $1790 = 0, $1791 = 0; + var $1792 = 0, $1793 = 0, $1794 = 0, $1795 = 0, $1796 = 0, $1797 = 0, $1798 = 0, $1799 = 0, $18 = 0, $180 = 0, $1800 = 0, $1801 = 0, $1802 = 0, $1803 = 0, $1804 = 0, $1805 = 0, $1806 = 0, $1807 = 0, $1808 = 0, $1809 = 0; + var $181 = 0, $1810 = 0, $1811 = 0, $1812 = 0, $1813 = 0, $1814 = 0, $1815 = 0, $1816 = 0, $1817 = 0, $1818 = 0, $1819 = 0, $182 = 0, $1820 = 0, $1821 = 0, $1822 = 0, $1823 = 0, $1824 = 0, $1825 = 0, $1826 = 0, $1827 = 0; + var $1828 = 0, $1829 = 0, $183 = 0, $1830 = 0, $1831 = 0, $1832 = 0, $1833 = 0, $1834 = 0, $1835 = 0, $1836 = 0, $1837 = 0, $1838 = 0, $1839 = 0, $184 = 0, $1840 = 0, $1841 = 0, $1842 = 0, $1843 = 0, $1844 = 0, $1845 = 0; + var $1846 = 0, $1847 = 0, $1848 = 0, $1849 = 0, $185 = 0, $1850 = 0, $1851 = 0, $1852 = 0, $1853 = 0, $1854 = 0, $1855 = 0, $1856 = 0, $1857 = 0, $1858 = 0, $1859 = 0, $186 = 0, $1860 = 0, $1861 = 0, $1862 = 0, $1863 = 0; + var $1864 = 0, $1865 = 0, $1866 = 0, $1867 = 0, $1868 = 0, $1869 = 0, $187 = 0, $1870 = 0, $1871 = 0, $1872 = 0, $1873 = 0, $1874 = 0, $1875 = 0, $1876 = 0, $1877 = 0, $1878 = 0, $1879 = 0, $188 = 0, $1880 = 0, $1881 = 0; + var $1882 = 0, $1883 = 0, $1884 = 0, $1885 = 0, $1886 = 0, $1887 = 0, $1888 = 0, $1889 = 0, $189 = 0, $1890 = 0, $1891 = 0, $1892 = 0, $1893 = 0, $1894 = 0, $1895 = 0, $1896 = 0, $1897 = 0, $1898 = 0, $1899 = 0, $19 = 0; + var $190 = 0, $1900 = 0, $1901 = 0, $1902 = 0, $1903 = 0, $1904 = 0, $1905 = 0, $1906 = 0, $1907 = 0, $1908 = 0, $1909 = 0, $191 = 0, $1910 = 0, $1911 = 0, $1912 = 0, $1913 = 0, $1914 = 0, $1915 = 0, $1916 = 0, $1917 = 0; + var $1918 = 0, $1919 = 0, $192 = 0, $1920 = 0, $1921 = 0, $1922 = 0, $1923 = 0, $1924 = 0, $1925 = 0, $1926 = 0, $1927 = 0, $1928 = 0, $1929 = 0, $193 = 0, $1930 = 0, $1931 = 0, $1932 = 0, $1933 = 0, $1934 = 0, $1935 = 0; + var $1936 = 0, $1937 = 0, $1938 = 0, $1939 = 0, $194 = 0, $1940 = 0, $1941 = 0, $1942 = 0, $1943 = 0, $1944 = 0, $1945 = 0, $1946 = 0, $1947 = 0, $1948 = 0, $1949 = 0, $195 = 0, $1950 = 0, $1951 = 0, $1952 = 0, $1953 = 0; + var $1954 = 0, $1955 = 0, $1956 = 0, $1957 = 0, $1958 = 0, $1959 = 0, $196 = 0, $1960 = 0, $1961 = 0, $1962 = 0, $1963 = 0, $1964 = 0, $1965 = 0, $1966 = 0, $1967 = 0, $1968 = 0, $1969 = 0, $197 = 0, $1970 = 0, $1971 = 0; + var $1972 = 0, $1973 = 0, $1974 = 0, $1975 = 0, $1976 = 0, $1977 = 0, $1978 = 0, $1979 = 0, $198 = 0, $1980 = 0, $1981 = 0, $1982 = 0, $1983 = 0, $1984 = 0, $1985 = 0, $1986 = 0, $1987 = 0, $1988 = 0, $1989 = 0, $199 = 0; + var $1990 = 0, $1991 = 0, $1992 = 0, $1993 = 0, $1994 = 0, $1995 = 0, $1996 = 0, $1997 = 0, $1998 = 0, $1999 = 0, $20 = 0, $200 = 0, $2000 = 0, $2001 = 0, $2002 = 0, $2003 = 0, $2004 = 0, $2005 = 0, $2006 = 0, $2007 = 0; + var $2008 = 0, $2009 = 0, $201 = 0, $2010 = 0, $2011 = 0, $2012 = 0, $2013 = 0, $2014 = 0, $2015 = 0, $2016 = 0, $2017 = 0, $2018 = 0, $2019 = 0, $202 = 0, $2020 = 0, $2021 = 0, $2022 = 0, $2023 = 0, $2024 = 0, $2025 = 0; + var $2026 = 0, $2027 = 0, $2028 = 0, $2029 = 0, $203 = 0, $2030 = 0, $2031 = 0, $2032 = 0, $2033 = 0, $2034 = 0, $2035 = 0, $2036 = 0, $2037 = 0, $2038 = 0, $2039 = 0, $204 = 0, $2040 = 0, $2041 = 0, $2042 = 0, $2043 = 0; + var $2044 = 0, $2045 = 0, $2046 = 0, $2047 = 0, $2048 = 0, $2049 = 0, $205 = 0, $2050 = 0, $2051 = 0, $2052 = 0, $2053 = 0, $2054 = 0, $2055 = 0, $2056 = 0, $2057 = 0, $2058 = 0, $2059 = 0, $206 = 0, $2060 = 0, $2061 = 0; + var $2062 = 0, $2063 = 0, $2064 = 0, $2065 = 0, $2066 = 0, $2067 = 0, $2068 = 0, $2069 = 0, $207 = 0, $2070 = 0, $2071 = 0, $2072 = 0, $2073 = 0, $2074 = 0, $2075 = 0, $2076 = 0, $2077 = 0, $2078 = 0, $2079 = 0, $208 = 0; + var $2080 = 0, $2081 = 0, $2082 = 0, $2083 = 0, $2084 = 0, $2085 = 0, $2086 = 0, $2087 = 0, $2088 = 0, $2089 = 0, $209 = 0, $2090 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0; var $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0; var $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0; var $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0; @@ -7464,2621 +3634,2521 @@ function _fproduct($output,$in2,$in) { var $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0; var $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = $in2; - $1 = $0; - $2 = HEAP32[$1>>2]|0; - $3 = (($0) + 4)|0; + $3 = $1; $4 = $3; $5 = HEAP32[$4>>2]|0; - $6 = (_bitshift64Ashr(0,($2|0),32)|0); - $7 = tempRet0; - $8 = $in; - $9 = $8; - $10 = HEAP32[$9>>2]|0; - $11 = (($8) + 4)|0; + $6 = (($3) + 4)|0; + $7 = $6; + $8 = HEAP32[$7>>2]|0; + $9 = (_bitshift64Ashr(0,($5|0),32)|0); + $10 = tempRet0; + $11 = $2; $12 = $11; $13 = HEAP32[$12>>2]|0; - $14 = (_bitshift64Ashr(0,($10|0),32)|0); - $15 = tempRet0; - $16 = (___muldi3(($14|0),($15|0),($6|0),($7|0))|0); - $17 = tempRet0; - $18 = $output; - $19 = $18; - HEAP32[$19>>2] = $16; - $20 = (($18) + 4)|0; - $21 = $20; - HEAP32[$21>>2] = $17; - $22 = $in2; - $23 = $22; - $24 = HEAP32[$23>>2]|0; - $25 = (($22) + 4)|0; + $14 = (($11) + 4)|0; + $15 = $14; + $16 = HEAP32[$15>>2]|0; + $17 = (_bitshift64Ashr(0,($13|0),32)|0); + $18 = tempRet0; + $19 = (___muldi3(($17|0),($18|0),($9|0),($10|0))|0); + $20 = tempRet0; + $21 = $0; + $22 = $21; + HEAP32[$22>>2] = $19; + $23 = (($21) + 4)|0; + $24 = $23; + HEAP32[$24>>2] = $20; + $25 = $1; $26 = $25; $27 = HEAP32[$26>>2]|0; - $28 = (_bitshift64Ashr(0,($24|0),32)|0); - $29 = tempRet0; - $30 = ((($in)) + 8|0); - $31 = $30; - $32 = $31; - $33 = HEAP32[$32>>2]|0; - $34 = (($31) + 4)|0; + $28 = (($25) + 4)|0; + $29 = $28; + $30 = HEAP32[$29>>2]|0; + $31 = (_bitshift64Ashr(0,($27|0),32)|0); + $32 = tempRet0; + $33 = ((($2)) + 8|0); + $34 = $33; $35 = $34; $36 = HEAP32[$35>>2]|0; - $37 = (_bitshift64Ashr(0,($33|0),32)|0); - $38 = tempRet0; - $39 = (___muldi3(($37|0),($38|0),($28|0),($29|0))|0); - $40 = tempRet0; - $41 = ((($in2)) + 8|0); - $42 = $41; - $43 = $42; - $44 = HEAP32[$43>>2]|0; - $45 = (($42) + 4)|0; + $37 = (($34) + 4)|0; + $38 = $37; + $39 = HEAP32[$38>>2]|0; + $40 = (_bitshift64Ashr(0,($36|0),32)|0); + $41 = tempRet0; + $42 = (___muldi3(($40|0),($41|0),($31|0),($32|0))|0); + $43 = tempRet0; + $44 = ((($1)) + 8|0); + $45 = $44; $46 = $45; $47 = HEAP32[$46>>2]|0; - $48 = (_bitshift64Ashr(0,($44|0),32)|0); - $49 = tempRet0; - $50 = $in; - $51 = $50; - $52 = HEAP32[$51>>2]|0; - $53 = (($50) + 4)|0; + $48 = (($45) + 4)|0; + $49 = $48; + $50 = HEAP32[$49>>2]|0; + $51 = (_bitshift64Ashr(0,($47|0),32)|0); + $52 = tempRet0; + $53 = $2; $54 = $53; $55 = HEAP32[$54>>2]|0; - $56 = (_bitshift64Ashr(0,($52|0),32)|0); - $57 = tempRet0; - $58 = (___muldi3(($56|0),($57|0),($48|0),($49|0))|0); - $59 = tempRet0; - $60 = (_i64Add(($58|0),($59|0),($39|0),($40|0))|0); - $61 = tempRet0; - $62 = ((($output)) + 8|0); - $63 = $62; - $64 = $63; - HEAP32[$64>>2] = $60; - $65 = (($63) + 4)|0; + $56 = (($53) + 4)|0; + $57 = $56; + $58 = HEAP32[$57>>2]|0; + $59 = (_bitshift64Ashr(0,($55|0),32)|0); + $60 = tempRet0; + $61 = (___muldi3(($59|0),($60|0),($51|0),($52|0))|0); + $62 = tempRet0; + $63 = (_i64Add(($61|0),($62|0),($42|0),($43|0))|0); + $64 = tempRet0; + $65 = ((($0)) + 8|0); $66 = $65; - HEAP32[$66>>2] = $61; - $67 = $41; - $68 = $67; - $69 = HEAP32[$68>>2]|0; - $70 = (($67) + 4)|0; + $67 = $66; + HEAP32[$67>>2] = $63; + $68 = (($66) + 4)|0; + $69 = $68; + HEAP32[$69>>2] = $64; + $70 = $44; $71 = $70; $72 = HEAP32[$71>>2]|0; - $73 = (_bitshift64Ashr(0,($69|0),31)|0); - $74 = tempRet0; - $75 = $30; - $76 = $75; - $77 = HEAP32[$76>>2]|0; - $78 = (($75) + 4)|0; + $73 = (($70) + 4)|0; + $74 = $73; + $75 = HEAP32[$74>>2]|0; + $76 = (_bitshift64Ashr(0,($72|0),31)|0); + $77 = tempRet0; + $78 = $33; $79 = $78; $80 = HEAP32[$79>>2]|0; - $81 = (_bitshift64Ashr(0,($77|0),32)|0); - $82 = tempRet0; - $83 = (___muldi3(($81|0),($82|0),($73|0),($74|0))|0); - $84 = tempRet0; - $85 = $in2; - $86 = $85; - $87 = HEAP32[$86>>2]|0; - $88 = (($85) + 4)|0; - $89 = $88; - $90 = HEAP32[$89>>2]|0; - $91 = (_bitshift64Ashr(0,($87|0),32)|0); - $92 = tempRet0; - $93 = ((($in)) + 16|0); - $94 = $93; - $95 = $94; - $96 = HEAP32[$95>>2]|0; - $97 = (($94) + 4)|0; + $81 = (($78) + 4)|0; + $82 = $81; + $83 = HEAP32[$82>>2]|0; + $84 = (_bitshift64Ashr(0,($80|0),32)|0); + $85 = tempRet0; + $86 = (___muldi3(($84|0),($85|0),($76|0),($77|0))|0); + $87 = tempRet0; + $88 = $1; + $89 = $88; + $90 = HEAP32[$89>>2]|0; + $91 = (($88) + 4)|0; + $92 = $91; + $93 = HEAP32[$92>>2]|0; + $94 = (_bitshift64Ashr(0,($90|0),32)|0); + $95 = tempRet0; + $96 = ((($2)) + 16|0); + $97 = $96; $98 = $97; $99 = HEAP32[$98>>2]|0; - $100 = (_bitshift64Ashr(0,($96|0),32)|0); - $101 = tempRet0; - $102 = (___muldi3(($100|0),($101|0),($91|0),($92|0))|0); - $103 = tempRet0; - $104 = (_i64Add(($102|0),($103|0),($83|0),($84|0))|0); - $105 = tempRet0; - $106 = ((($in2)) + 16|0); - $107 = $106; - $108 = $107; - $109 = HEAP32[$108>>2]|0; - $110 = (($107) + 4)|0; + $100 = (($97) + 4)|0; + $101 = $100; + $102 = HEAP32[$101>>2]|0; + $103 = (_bitshift64Ashr(0,($99|0),32)|0); + $104 = tempRet0; + $105 = (___muldi3(($103|0),($104|0),($94|0),($95|0))|0); + $106 = tempRet0; + $107 = (_i64Add(($105|0),($106|0),($86|0),($87|0))|0); + $108 = tempRet0; + $109 = ((($1)) + 16|0); + $110 = $109; $111 = $110; $112 = HEAP32[$111>>2]|0; - $113 = (_bitshift64Ashr(0,($109|0),32)|0); - $114 = tempRet0; - $115 = $in; - $116 = $115; - $117 = HEAP32[$116>>2]|0; - $118 = (($115) + 4)|0; + $113 = (($110) + 4)|0; + $114 = $113; + $115 = HEAP32[$114>>2]|0; + $116 = (_bitshift64Ashr(0,($112|0),32)|0); + $117 = tempRet0; + $118 = $2; $119 = $118; $120 = HEAP32[$119>>2]|0; - $121 = (_bitshift64Ashr(0,($117|0),32)|0); - $122 = tempRet0; - $123 = (___muldi3(($121|0),($122|0),($113|0),($114|0))|0); - $124 = tempRet0; - $125 = (_i64Add(($104|0),($105|0),($123|0),($124|0))|0); - $126 = tempRet0; - $127 = ((($output)) + 16|0); - $128 = $127; - $129 = $128; - HEAP32[$129>>2] = $125; - $130 = (($128) + 4)|0; + $121 = (($118) + 4)|0; + $122 = $121; + $123 = HEAP32[$122>>2]|0; + $124 = (_bitshift64Ashr(0,($120|0),32)|0); + $125 = tempRet0; + $126 = (___muldi3(($124|0),($125|0),($116|0),($117|0))|0); + $127 = tempRet0; + $128 = (_i64Add(($107|0),($108|0),($126|0),($127|0))|0); + $129 = tempRet0; + $130 = ((($0)) + 16|0); $131 = $130; - HEAP32[$131>>2] = $126; - $132 = $41; - $133 = $132; - $134 = HEAP32[$133>>2]|0; - $135 = (($132) + 4)|0; + $132 = $131; + HEAP32[$132>>2] = $128; + $133 = (($131) + 4)|0; + $134 = $133; + HEAP32[$134>>2] = $129; + $135 = $44; $136 = $135; $137 = HEAP32[$136>>2]|0; - $138 = (_bitshift64Ashr(0,($134|0),32)|0); - $139 = tempRet0; - $140 = $93; - $141 = $140; - $142 = HEAP32[$141>>2]|0; - $143 = (($140) + 4)|0; + $138 = (($135) + 4)|0; + $139 = $138; + $140 = HEAP32[$139>>2]|0; + $141 = (_bitshift64Ashr(0,($137|0),32)|0); + $142 = tempRet0; + $143 = $96; $144 = $143; $145 = HEAP32[$144>>2]|0; - $146 = (_bitshift64Ashr(0,($142|0),32)|0); - $147 = tempRet0; - $148 = (___muldi3(($146|0),($147|0),($138|0),($139|0))|0); - $149 = tempRet0; - $150 = $106; - $151 = $150; - $152 = HEAP32[$151>>2]|0; - $153 = (($150) + 4)|0; + $146 = (($143) + 4)|0; + $147 = $146; + $148 = HEAP32[$147>>2]|0; + $149 = (_bitshift64Ashr(0,($145|0),32)|0); + $150 = tempRet0; + $151 = (___muldi3(($149|0),($150|0),($141|0),($142|0))|0); + $152 = tempRet0; + $153 = $109; $154 = $153; $155 = HEAP32[$154>>2]|0; - $156 = (_bitshift64Ashr(0,($152|0),32)|0); - $157 = tempRet0; - $158 = $30; - $159 = $158; - $160 = HEAP32[$159>>2]|0; - $161 = (($158) + 4)|0; + $156 = (($153) + 4)|0; + $157 = $156; + $158 = HEAP32[$157>>2]|0; + $159 = (_bitshift64Ashr(0,($155|0),32)|0); + $160 = tempRet0; + $161 = $33; $162 = $161; $163 = HEAP32[$162>>2]|0; - $164 = (_bitshift64Ashr(0,($160|0),32)|0); - $165 = tempRet0; - $166 = (___muldi3(($164|0),($165|0),($156|0),($157|0))|0); - $167 = tempRet0; - $168 = (_i64Add(($166|0),($167|0),($148|0),($149|0))|0); - $169 = tempRet0; - $170 = $in2; - $171 = $170; - $172 = HEAP32[$171>>2]|0; - $173 = (($170) + 4)|0; + $164 = (($161) + 4)|0; + $165 = $164; + $166 = HEAP32[$165>>2]|0; + $167 = (_bitshift64Ashr(0,($163|0),32)|0); + $168 = tempRet0; + $169 = (___muldi3(($167|0),($168|0),($159|0),($160|0))|0); + $170 = tempRet0; + $171 = (_i64Add(($169|0),($170|0),($151|0),($152|0))|0); + $172 = tempRet0; + $173 = $1; $174 = $173; $175 = HEAP32[$174>>2]|0; - $176 = (_bitshift64Ashr(0,($172|0),32)|0); - $177 = tempRet0; - $178 = ((($in)) + 24|0); - $179 = $178; - $180 = $179; - $181 = HEAP32[$180>>2]|0; - $182 = (($179) + 4)|0; + $176 = (($173) + 4)|0; + $177 = $176; + $178 = HEAP32[$177>>2]|0; + $179 = (_bitshift64Ashr(0,($175|0),32)|0); + $180 = tempRet0; + $181 = ((($2)) + 24|0); + $182 = $181; $183 = $182; $184 = HEAP32[$183>>2]|0; - $185 = (_bitshift64Ashr(0,($181|0),32)|0); - $186 = tempRet0; - $187 = (___muldi3(($185|0),($186|0),($176|0),($177|0))|0); - $188 = tempRet0; - $189 = (_i64Add(($168|0),($169|0),($187|0),($188|0))|0); - $190 = tempRet0; - $191 = ((($in2)) + 24|0); - $192 = $191; - $193 = $192; - $194 = HEAP32[$193>>2]|0; - $195 = (($192) + 4)|0; + $185 = (($182) + 4)|0; + $186 = $185; + $187 = HEAP32[$186>>2]|0; + $188 = (_bitshift64Ashr(0,($184|0),32)|0); + $189 = tempRet0; + $190 = (___muldi3(($188|0),($189|0),($179|0),($180|0))|0); + $191 = tempRet0; + $192 = (_i64Add(($171|0),($172|0),($190|0),($191|0))|0); + $193 = tempRet0; + $194 = ((($1)) + 24|0); + $195 = $194; $196 = $195; $197 = HEAP32[$196>>2]|0; - $198 = (_bitshift64Ashr(0,($194|0),32)|0); - $199 = tempRet0; - $200 = $in; - $201 = $200; - $202 = HEAP32[$201>>2]|0; - $203 = (($200) + 4)|0; + $198 = (($195) + 4)|0; + $199 = $198; + $200 = HEAP32[$199>>2]|0; + $201 = (_bitshift64Ashr(0,($197|0),32)|0); + $202 = tempRet0; + $203 = $2; $204 = $203; $205 = HEAP32[$204>>2]|0; - $206 = (_bitshift64Ashr(0,($202|0),32)|0); - $207 = tempRet0; - $208 = (___muldi3(($206|0),($207|0),($198|0),($199|0))|0); - $209 = tempRet0; - $210 = (_i64Add(($189|0),($190|0),($208|0),($209|0))|0); - $211 = tempRet0; - $212 = ((($output)) + 24|0); - $213 = $212; - $214 = $213; - HEAP32[$214>>2] = $210; - $215 = (($213) + 4)|0; + $206 = (($203) + 4)|0; + $207 = $206; + $208 = HEAP32[$207>>2]|0; + $209 = (_bitshift64Ashr(0,($205|0),32)|0); + $210 = tempRet0; + $211 = (___muldi3(($209|0),($210|0),($201|0),($202|0))|0); + $212 = tempRet0; + $213 = (_i64Add(($192|0),($193|0),($211|0),($212|0))|0); + $214 = tempRet0; + $215 = ((($0)) + 24|0); $216 = $215; - HEAP32[$216>>2] = $211; - $217 = $106; - $218 = $217; - $219 = HEAP32[$218>>2]|0; - $220 = (($217) + 4)|0; + $217 = $216; + HEAP32[$217>>2] = $213; + $218 = (($216) + 4)|0; + $219 = $218; + HEAP32[$219>>2] = $214; + $220 = $109; $221 = $220; $222 = HEAP32[$221>>2]|0; - $223 = (_bitshift64Ashr(0,($219|0),32)|0); - $224 = tempRet0; - $225 = $93; - $226 = $225; - $227 = HEAP32[$226>>2]|0; - $228 = (($225) + 4)|0; + $223 = (($220) + 4)|0; + $224 = $223; + $225 = HEAP32[$224>>2]|0; + $226 = (_bitshift64Ashr(0,($222|0),32)|0); + $227 = tempRet0; + $228 = $96; $229 = $228; $230 = HEAP32[$229>>2]|0; - $231 = (_bitshift64Ashr(0,($227|0),32)|0); - $232 = tempRet0; - $233 = (___muldi3(($231|0),($232|0),($223|0),($224|0))|0); - $234 = tempRet0; - $235 = $41; - $236 = $235; - $237 = HEAP32[$236>>2]|0; - $238 = (($235) + 4)|0; + $231 = (($228) + 4)|0; + $232 = $231; + $233 = HEAP32[$232>>2]|0; + $234 = (_bitshift64Ashr(0,($230|0),32)|0); + $235 = tempRet0; + $236 = (___muldi3(($234|0),($235|0),($226|0),($227|0))|0); + $237 = tempRet0; + $238 = $44; $239 = $238; $240 = HEAP32[$239>>2]|0; - $241 = (_bitshift64Ashr(0,($237|0),32)|0); - $242 = tempRet0; - $243 = $178; - $244 = $243; - $245 = HEAP32[$244>>2]|0; - $246 = (($243) + 4)|0; + $241 = (($238) + 4)|0; + $242 = $241; + $243 = HEAP32[$242>>2]|0; + $244 = (_bitshift64Ashr(0,($240|0),32)|0); + $245 = tempRet0; + $246 = $181; $247 = $246; $248 = HEAP32[$247>>2]|0; - $249 = (_bitshift64Ashr(0,($245|0),32)|0); - $250 = tempRet0; - $251 = (___muldi3(($249|0),($250|0),($241|0),($242|0))|0); - $252 = tempRet0; - $253 = $191; - $254 = $253; - $255 = HEAP32[$254>>2]|0; - $256 = (($253) + 4)|0; + $249 = (($246) + 4)|0; + $250 = $249; + $251 = HEAP32[$250>>2]|0; + $252 = (_bitshift64Ashr(0,($248|0),32)|0); + $253 = tempRet0; + $254 = (___muldi3(($252|0),($253|0),($244|0),($245|0))|0); + $255 = tempRet0; + $256 = $194; $257 = $256; $258 = HEAP32[$257>>2]|0; - $259 = (_bitshift64Ashr(0,($255|0),32)|0); - $260 = tempRet0; - $261 = $30; - $262 = $261; - $263 = HEAP32[$262>>2]|0; - $264 = (($261) + 4)|0; + $259 = (($256) + 4)|0; + $260 = $259; + $261 = HEAP32[$260>>2]|0; + $262 = (_bitshift64Ashr(0,($258|0),32)|0); + $263 = tempRet0; + $264 = $33; $265 = $264; $266 = HEAP32[$265>>2]|0; - $267 = (_bitshift64Ashr(0,($263|0),32)|0); - $268 = tempRet0; - $269 = (___muldi3(($267|0),($268|0),($259|0),($260|0))|0); - $270 = tempRet0; - $271 = (_i64Add(($269|0),($270|0),($251|0),($252|0))|0); - $272 = tempRet0; - $273 = (_bitshift64Shl(($271|0),($272|0),1)|0); - $274 = tempRet0; - $275 = (_i64Add(($273|0),($274|0),($233|0),($234|0))|0); - $276 = tempRet0; - $277 = $in2; - $278 = $277; - $279 = HEAP32[$278>>2]|0; - $280 = (($277) + 4)|0; + $267 = (($264) + 4)|0; + $268 = $267; + $269 = HEAP32[$268>>2]|0; + $270 = (_bitshift64Ashr(0,($266|0),32)|0); + $271 = tempRet0; + $272 = (___muldi3(($270|0),($271|0),($262|0),($263|0))|0); + $273 = tempRet0; + $274 = (_i64Add(($272|0),($273|0),($254|0),($255|0))|0); + $275 = tempRet0; + $276 = (_bitshift64Shl(($274|0),($275|0),1)|0); + $277 = tempRet0; + $278 = (_i64Add(($276|0),($277|0),($236|0),($237|0))|0); + $279 = tempRet0; + $280 = $1; $281 = $280; $282 = HEAP32[$281>>2]|0; - $283 = (_bitshift64Ashr(0,($279|0),32)|0); - $284 = tempRet0; - $285 = ((($in)) + 32|0); - $286 = $285; - $287 = $286; - $288 = HEAP32[$287>>2]|0; - $289 = (($286) + 4)|0; + $283 = (($280) + 4)|0; + $284 = $283; + $285 = HEAP32[$284>>2]|0; + $286 = (_bitshift64Ashr(0,($282|0),32)|0); + $287 = tempRet0; + $288 = ((($2)) + 32|0); + $289 = $288; $290 = $289; $291 = HEAP32[$290>>2]|0; - $292 = (_bitshift64Ashr(0,($288|0),32)|0); - $293 = tempRet0; - $294 = (___muldi3(($292|0),($293|0),($283|0),($284|0))|0); - $295 = tempRet0; - $296 = (_i64Add(($275|0),($276|0),($294|0),($295|0))|0); - $297 = tempRet0; - $298 = ((($in2)) + 32|0); - $299 = $298; - $300 = $299; - $301 = HEAP32[$300>>2]|0; - $302 = (($299) + 4)|0; + $292 = (($289) + 4)|0; + $293 = $292; + $294 = HEAP32[$293>>2]|0; + $295 = (_bitshift64Ashr(0,($291|0),32)|0); + $296 = tempRet0; + $297 = (___muldi3(($295|0),($296|0),($286|0),($287|0))|0); + $298 = tempRet0; + $299 = (_i64Add(($278|0),($279|0),($297|0),($298|0))|0); + $300 = tempRet0; + $301 = ((($1)) + 32|0); + $302 = $301; $303 = $302; $304 = HEAP32[$303>>2]|0; - $305 = (_bitshift64Ashr(0,($301|0),32)|0); - $306 = tempRet0; - $307 = $in; - $308 = $307; - $309 = HEAP32[$308>>2]|0; - $310 = (($307) + 4)|0; + $305 = (($302) + 4)|0; + $306 = $305; + $307 = HEAP32[$306>>2]|0; + $308 = (_bitshift64Ashr(0,($304|0),32)|0); + $309 = tempRet0; + $310 = $2; $311 = $310; $312 = HEAP32[$311>>2]|0; - $313 = (_bitshift64Ashr(0,($309|0),32)|0); - $314 = tempRet0; - $315 = (___muldi3(($313|0),($314|0),($305|0),($306|0))|0); - $316 = tempRet0; - $317 = (_i64Add(($296|0),($297|0),($315|0),($316|0))|0); - $318 = tempRet0; - $319 = ((($output)) + 32|0); - $320 = $319; - $321 = $320; - HEAP32[$321>>2] = $317; - $322 = (($320) + 4)|0; + $313 = (($310) + 4)|0; + $314 = $313; + $315 = HEAP32[$314>>2]|0; + $316 = (_bitshift64Ashr(0,($312|0),32)|0); + $317 = tempRet0; + $318 = (___muldi3(($316|0),($317|0),($308|0),($309|0))|0); + $319 = tempRet0; + $320 = (_i64Add(($299|0),($300|0),($318|0),($319|0))|0); + $321 = tempRet0; + $322 = ((($0)) + 32|0); $323 = $322; - HEAP32[$323>>2] = $318; - $324 = $106; - $325 = $324; - $326 = HEAP32[$325>>2]|0; - $327 = (($324) + 4)|0; + $324 = $323; + HEAP32[$324>>2] = $320; + $325 = (($323) + 4)|0; + $326 = $325; + HEAP32[$326>>2] = $321; + $327 = $109; $328 = $327; $329 = HEAP32[$328>>2]|0; - $330 = (_bitshift64Ashr(0,($326|0),32)|0); - $331 = tempRet0; - $332 = $178; - $333 = $332; - $334 = HEAP32[$333>>2]|0; - $335 = (($332) + 4)|0; + $330 = (($327) + 4)|0; + $331 = $330; + $332 = HEAP32[$331>>2]|0; + $333 = (_bitshift64Ashr(0,($329|0),32)|0); + $334 = tempRet0; + $335 = $181; $336 = $335; $337 = HEAP32[$336>>2]|0; - $338 = (_bitshift64Ashr(0,($334|0),32)|0); - $339 = tempRet0; - $340 = (___muldi3(($338|0),($339|0),($330|0),($331|0))|0); - $341 = tempRet0; - $342 = $191; - $343 = $342; - $344 = HEAP32[$343>>2]|0; - $345 = (($342) + 4)|0; + $338 = (($335) + 4)|0; + $339 = $338; + $340 = HEAP32[$339>>2]|0; + $341 = (_bitshift64Ashr(0,($337|0),32)|0); + $342 = tempRet0; + $343 = (___muldi3(($341|0),($342|0),($333|0),($334|0))|0); + $344 = tempRet0; + $345 = $194; $346 = $345; $347 = HEAP32[$346>>2]|0; - $348 = (_bitshift64Ashr(0,($344|0),32)|0); - $349 = tempRet0; - $350 = $93; - $351 = $350; - $352 = HEAP32[$351>>2]|0; - $353 = (($350) + 4)|0; + $348 = (($345) + 4)|0; + $349 = $348; + $350 = HEAP32[$349>>2]|0; + $351 = (_bitshift64Ashr(0,($347|0),32)|0); + $352 = tempRet0; + $353 = $96; $354 = $353; $355 = HEAP32[$354>>2]|0; - $356 = (_bitshift64Ashr(0,($352|0),32)|0); - $357 = tempRet0; - $358 = (___muldi3(($356|0),($357|0),($348|0),($349|0))|0); - $359 = tempRet0; - $360 = (_i64Add(($358|0),($359|0),($340|0),($341|0))|0); - $361 = tempRet0; - $362 = $41; - $363 = $362; - $364 = HEAP32[$363>>2]|0; - $365 = (($362) + 4)|0; + $356 = (($353) + 4)|0; + $357 = $356; + $358 = HEAP32[$357>>2]|0; + $359 = (_bitshift64Ashr(0,($355|0),32)|0); + $360 = tempRet0; + $361 = (___muldi3(($359|0),($360|0),($351|0),($352|0))|0); + $362 = tempRet0; + $363 = (_i64Add(($361|0),($362|0),($343|0),($344|0))|0); + $364 = tempRet0; + $365 = $44; $366 = $365; $367 = HEAP32[$366>>2]|0; - $368 = (_bitshift64Ashr(0,($364|0),32)|0); - $369 = tempRet0; - $370 = $285; - $371 = $370; - $372 = HEAP32[$371>>2]|0; - $373 = (($370) + 4)|0; + $368 = (($365) + 4)|0; + $369 = $368; + $370 = HEAP32[$369>>2]|0; + $371 = (_bitshift64Ashr(0,($367|0),32)|0); + $372 = tempRet0; + $373 = $288; $374 = $373; $375 = HEAP32[$374>>2]|0; - $376 = (_bitshift64Ashr(0,($372|0),32)|0); - $377 = tempRet0; - $378 = (___muldi3(($376|0),($377|0),($368|0),($369|0))|0); - $379 = tempRet0; - $380 = (_i64Add(($360|0),($361|0),($378|0),($379|0))|0); - $381 = tempRet0; - $382 = $298; - $383 = $382; - $384 = HEAP32[$383>>2]|0; - $385 = (($382) + 4)|0; + $376 = (($373) + 4)|0; + $377 = $376; + $378 = HEAP32[$377>>2]|0; + $379 = (_bitshift64Ashr(0,($375|0),32)|0); + $380 = tempRet0; + $381 = (___muldi3(($379|0),($380|0),($371|0),($372|0))|0); + $382 = tempRet0; + $383 = (_i64Add(($363|0),($364|0),($381|0),($382|0))|0); + $384 = tempRet0; + $385 = $301; $386 = $385; $387 = HEAP32[$386>>2]|0; - $388 = (_bitshift64Ashr(0,($384|0),32)|0); - $389 = tempRet0; - $390 = $30; - $391 = $390; - $392 = HEAP32[$391>>2]|0; - $393 = (($390) + 4)|0; + $388 = (($385) + 4)|0; + $389 = $388; + $390 = HEAP32[$389>>2]|0; + $391 = (_bitshift64Ashr(0,($387|0),32)|0); + $392 = tempRet0; + $393 = $33; $394 = $393; $395 = HEAP32[$394>>2]|0; - $396 = (_bitshift64Ashr(0,($392|0),32)|0); - $397 = tempRet0; - $398 = (___muldi3(($396|0),($397|0),($388|0),($389|0))|0); - $399 = tempRet0; - $400 = (_i64Add(($380|0),($381|0),($398|0),($399|0))|0); - $401 = tempRet0; - $402 = $in2; - $403 = $402; - $404 = HEAP32[$403>>2]|0; - $405 = (($402) + 4)|0; + $396 = (($393) + 4)|0; + $397 = $396; + $398 = HEAP32[$397>>2]|0; + $399 = (_bitshift64Ashr(0,($395|0),32)|0); + $400 = tempRet0; + $401 = (___muldi3(($399|0),($400|0),($391|0),($392|0))|0); + $402 = tempRet0; + $403 = (_i64Add(($383|0),($384|0),($401|0),($402|0))|0); + $404 = tempRet0; + $405 = $1; $406 = $405; $407 = HEAP32[$406>>2]|0; - $408 = (_bitshift64Ashr(0,($404|0),32)|0); - $409 = tempRet0; - $410 = ((($in)) + 40|0); - $411 = $410; - $412 = $411; - $413 = HEAP32[$412>>2]|0; - $414 = (($411) + 4)|0; + $408 = (($405) + 4)|0; + $409 = $408; + $410 = HEAP32[$409>>2]|0; + $411 = (_bitshift64Ashr(0,($407|0),32)|0); + $412 = tempRet0; + $413 = ((($2)) + 40|0); + $414 = $413; $415 = $414; $416 = HEAP32[$415>>2]|0; - $417 = (_bitshift64Ashr(0,($413|0),32)|0); - $418 = tempRet0; - $419 = (___muldi3(($417|0),($418|0),($408|0),($409|0))|0); - $420 = tempRet0; - $421 = (_i64Add(($400|0),($401|0),($419|0),($420|0))|0); - $422 = tempRet0; - $423 = ((($in2)) + 40|0); - $424 = $423; - $425 = $424; - $426 = HEAP32[$425>>2]|0; - $427 = (($424) + 4)|0; + $417 = (($414) + 4)|0; + $418 = $417; + $419 = HEAP32[$418>>2]|0; + $420 = (_bitshift64Ashr(0,($416|0),32)|0); + $421 = tempRet0; + $422 = (___muldi3(($420|0),($421|0),($411|0),($412|0))|0); + $423 = tempRet0; + $424 = (_i64Add(($403|0),($404|0),($422|0),($423|0))|0); + $425 = tempRet0; + $426 = ((($1)) + 40|0); + $427 = $426; $428 = $427; $429 = HEAP32[$428>>2]|0; - $430 = (_bitshift64Ashr(0,($426|0),32)|0); - $431 = tempRet0; - $432 = $in; - $433 = $432; - $434 = HEAP32[$433>>2]|0; - $435 = (($432) + 4)|0; + $430 = (($427) + 4)|0; + $431 = $430; + $432 = HEAP32[$431>>2]|0; + $433 = (_bitshift64Ashr(0,($429|0),32)|0); + $434 = tempRet0; + $435 = $2; $436 = $435; $437 = HEAP32[$436>>2]|0; - $438 = (_bitshift64Ashr(0,($434|0),32)|0); - $439 = tempRet0; - $440 = (___muldi3(($438|0),($439|0),($430|0),($431|0))|0); - $441 = tempRet0; - $442 = (_i64Add(($421|0),($422|0),($440|0),($441|0))|0); - $443 = tempRet0; - $444 = ((($output)) + 40|0); - $445 = $444; - $446 = $445; - HEAP32[$446>>2] = $442; - $447 = (($445) + 4)|0; + $438 = (($435) + 4)|0; + $439 = $438; + $440 = HEAP32[$439>>2]|0; + $441 = (_bitshift64Ashr(0,($437|0),32)|0); + $442 = tempRet0; + $443 = (___muldi3(($441|0),($442|0),($433|0),($434|0))|0); + $444 = tempRet0; + $445 = (_i64Add(($424|0),($425|0),($443|0),($444|0))|0); + $446 = tempRet0; + $447 = ((($0)) + 40|0); $448 = $447; - HEAP32[$448>>2] = $443; - $449 = $191; - $450 = $449; - $451 = HEAP32[$450>>2]|0; - $452 = (($449) + 4)|0; + $449 = $448; + HEAP32[$449>>2] = $445; + $450 = (($448) + 4)|0; + $451 = $450; + HEAP32[$451>>2] = $446; + $452 = $194; $453 = $452; $454 = HEAP32[$453>>2]|0; - $455 = (_bitshift64Ashr(0,($451|0),32)|0); - $456 = tempRet0; - $457 = $178; - $458 = $457; - $459 = HEAP32[$458>>2]|0; - $460 = (($457) + 4)|0; + $455 = (($452) + 4)|0; + $456 = $455; + $457 = HEAP32[$456>>2]|0; + $458 = (_bitshift64Ashr(0,($454|0),32)|0); + $459 = tempRet0; + $460 = $181; $461 = $460; $462 = HEAP32[$461>>2]|0; - $463 = (_bitshift64Ashr(0,($459|0),32)|0); - $464 = tempRet0; - $465 = (___muldi3(($463|0),($464|0),($455|0),($456|0))|0); - $466 = tempRet0; - $467 = $41; - $468 = $467; - $469 = HEAP32[$468>>2]|0; - $470 = (($467) + 4)|0; + $463 = (($460) + 4)|0; + $464 = $463; + $465 = HEAP32[$464>>2]|0; + $466 = (_bitshift64Ashr(0,($462|0),32)|0); + $467 = tempRet0; + $468 = (___muldi3(($466|0),($467|0),($458|0),($459|0))|0); + $469 = tempRet0; + $470 = $44; $471 = $470; $472 = HEAP32[$471>>2]|0; - $473 = (_bitshift64Ashr(0,($469|0),32)|0); - $474 = tempRet0; - $475 = $410; - $476 = $475; - $477 = HEAP32[$476>>2]|0; - $478 = (($475) + 4)|0; + $473 = (($470) + 4)|0; + $474 = $473; + $475 = HEAP32[$474>>2]|0; + $476 = (_bitshift64Ashr(0,($472|0),32)|0); + $477 = tempRet0; + $478 = $413; $479 = $478; $480 = HEAP32[$479>>2]|0; - $481 = (_bitshift64Ashr(0,($477|0),32)|0); - $482 = tempRet0; - $483 = (___muldi3(($481|0),($482|0),($473|0),($474|0))|0); - $484 = tempRet0; - $485 = (_i64Add(($483|0),($484|0),($465|0),($466|0))|0); - $486 = tempRet0; - $487 = $423; - $488 = $487; - $489 = HEAP32[$488>>2]|0; - $490 = (($487) + 4)|0; + $481 = (($478) + 4)|0; + $482 = $481; + $483 = HEAP32[$482>>2]|0; + $484 = (_bitshift64Ashr(0,($480|0),32)|0); + $485 = tempRet0; + $486 = (___muldi3(($484|0),($485|0),($476|0),($477|0))|0); + $487 = tempRet0; + $488 = (_i64Add(($486|0),($487|0),($468|0),($469|0))|0); + $489 = tempRet0; + $490 = $426; $491 = $490; $492 = HEAP32[$491>>2]|0; - $493 = (_bitshift64Ashr(0,($489|0),32)|0); - $494 = tempRet0; - $495 = $30; - $496 = $495; - $497 = HEAP32[$496>>2]|0; - $498 = (($495) + 4)|0; + $493 = (($490) + 4)|0; + $494 = $493; + $495 = HEAP32[$494>>2]|0; + $496 = (_bitshift64Ashr(0,($492|0),32)|0); + $497 = tempRet0; + $498 = $33; $499 = $498; $500 = HEAP32[$499>>2]|0; - $501 = (_bitshift64Ashr(0,($497|0),32)|0); - $502 = tempRet0; - $503 = (___muldi3(($501|0),($502|0),($493|0),($494|0))|0); - $504 = tempRet0; - $505 = (_i64Add(($485|0),($486|0),($503|0),($504|0))|0); - $506 = tempRet0; - $507 = (_bitshift64Shl(($505|0),($506|0),1)|0); - $508 = tempRet0; - $509 = $106; - $510 = $509; - $511 = HEAP32[$510>>2]|0; - $512 = (($509) + 4)|0; + $501 = (($498) + 4)|0; + $502 = $501; + $503 = HEAP32[$502>>2]|0; + $504 = (_bitshift64Ashr(0,($500|0),32)|0); + $505 = tempRet0; + $506 = (___muldi3(($504|0),($505|0),($496|0),($497|0))|0); + $507 = tempRet0; + $508 = (_i64Add(($488|0),($489|0),($506|0),($507|0))|0); + $509 = tempRet0; + $510 = (_bitshift64Shl(($508|0),($509|0),1)|0); + $511 = tempRet0; + $512 = $109; $513 = $512; $514 = HEAP32[$513>>2]|0; - $515 = (_bitshift64Ashr(0,($511|0),32)|0); - $516 = tempRet0; - $517 = $285; - $518 = $517; - $519 = HEAP32[$518>>2]|0; - $520 = (($517) + 4)|0; + $515 = (($512) + 4)|0; + $516 = $515; + $517 = HEAP32[$516>>2]|0; + $518 = (_bitshift64Ashr(0,($514|0),32)|0); + $519 = tempRet0; + $520 = $288; $521 = $520; $522 = HEAP32[$521>>2]|0; - $523 = (_bitshift64Ashr(0,($519|0),32)|0); - $524 = tempRet0; - $525 = (___muldi3(($523|0),($524|0),($515|0),($516|0))|0); - $526 = tempRet0; - $527 = (_i64Add(($507|0),($508|0),($525|0),($526|0))|0); - $528 = tempRet0; - $529 = $298; - $530 = $529; - $531 = HEAP32[$530>>2]|0; - $532 = (($529) + 4)|0; + $523 = (($520) + 4)|0; + $524 = $523; + $525 = HEAP32[$524>>2]|0; + $526 = (_bitshift64Ashr(0,($522|0),32)|0); + $527 = tempRet0; + $528 = (___muldi3(($526|0),($527|0),($518|0),($519|0))|0); + $529 = tempRet0; + $530 = (_i64Add(($510|0),($511|0),($528|0),($529|0))|0); + $531 = tempRet0; + $532 = $301; $533 = $532; $534 = HEAP32[$533>>2]|0; - $535 = (_bitshift64Ashr(0,($531|0),32)|0); - $536 = tempRet0; - $537 = $93; - $538 = $537; - $539 = HEAP32[$538>>2]|0; - $540 = (($537) + 4)|0; + $535 = (($532) + 4)|0; + $536 = $535; + $537 = HEAP32[$536>>2]|0; + $538 = (_bitshift64Ashr(0,($534|0),32)|0); + $539 = tempRet0; + $540 = $96; $541 = $540; $542 = HEAP32[$541>>2]|0; - $543 = (_bitshift64Ashr(0,($539|0),32)|0); - $544 = tempRet0; - $545 = (___muldi3(($543|0),($544|0),($535|0),($536|0))|0); - $546 = tempRet0; - $547 = (_i64Add(($527|0),($528|0),($545|0),($546|0))|0); - $548 = tempRet0; - $549 = $in2; - $550 = $549; - $551 = HEAP32[$550>>2]|0; - $552 = (($549) + 4)|0; + $543 = (($540) + 4)|0; + $544 = $543; + $545 = HEAP32[$544>>2]|0; + $546 = (_bitshift64Ashr(0,($542|0),32)|0); + $547 = tempRet0; + $548 = (___muldi3(($546|0),($547|0),($538|0),($539|0))|0); + $549 = tempRet0; + $550 = (_i64Add(($530|0),($531|0),($548|0),($549|0))|0); + $551 = tempRet0; + $552 = $1; $553 = $552; $554 = HEAP32[$553>>2]|0; - $555 = (_bitshift64Ashr(0,($551|0),32)|0); - $556 = tempRet0; - $557 = ((($in)) + 48|0); - $558 = $557; - $559 = $558; - $560 = HEAP32[$559>>2]|0; - $561 = (($558) + 4)|0; + $555 = (($552) + 4)|0; + $556 = $555; + $557 = HEAP32[$556>>2]|0; + $558 = (_bitshift64Ashr(0,($554|0),32)|0); + $559 = tempRet0; + $560 = ((($2)) + 48|0); + $561 = $560; $562 = $561; $563 = HEAP32[$562>>2]|0; - $564 = (_bitshift64Ashr(0,($560|0),32)|0); - $565 = tempRet0; - $566 = (___muldi3(($564|0),($565|0),($555|0),($556|0))|0); - $567 = tempRet0; - $568 = (_i64Add(($547|0),($548|0),($566|0),($567|0))|0); - $569 = tempRet0; - $570 = ((($in2)) + 48|0); - $571 = $570; - $572 = $571; - $573 = HEAP32[$572>>2]|0; - $574 = (($571) + 4)|0; + $564 = (($561) + 4)|0; + $565 = $564; + $566 = HEAP32[$565>>2]|0; + $567 = (_bitshift64Ashr(0,($563|0),32)|0); + $568 = tempRet0; + $569 = (___muldi3(($567|0),($568|0),($558|0),($559|0))|0); + $570 = tempRet0; + $571 = (_i64Add(($550|0),($551|0),($569|0),($570|0))|0); + $572 = tempRet0; + $573 = ((($1)) + 48|0); + $574 = $573; $575 = $574; $576 = HEAP32[$575>>2]|0; - $577 = (_bitshift64Ashr(0,($573|0),32)|0); - $578 = tempRet0; - $579 = $in; - $580 = $579; - $581 = HEAP32[$580>>2]|0; - $582 = (($579) + 4)|0; + $577 = (($574) + 4)|0; + $578 = $577; + $579 = HEAP32[$578>>2]|0; + $580 = (_bitshift64Ashr(0,($576|0),32)|0); + $581 = tempRet0; + $582 = $2; $583 = $582; $584 = HEAP32[$583>>2]|0; - $585 = (_bitshift64Ashr(0,($581|0),32)|0); - $586 = tempRet0; - $587 = (___muldi3(($585|0),($586|0),($577|0),($578|0))|0); - $588 = tempRet0; - $589 = (_i64Add(($568|0),($569|0),($587|0),($588|0))|0); - $590 = tempRet0; - $591 = ((($output)) + 48|0); - $592 = $591; - $593 = $592; - HEAP32[$593>>2] = $589; - $594 = (($592) + 4)|0; + $585 = (($582) + 4)|0; + $586 = $585; + $587 = HEAP32[$586>>2]|0; + $588 = (_bitshift64Ashr(0,($584|0),32)|0); + $589 = tempRet0; + $590 = (___muldi3(($588|0),($589|0),($580|0),($581|0))|0); + $591 = tempRet0; + $592 = (_i64Add(($571|0),($572|0),($590|0),($591|0))|0); + $593 = tempRet0; + $594 = ((($0)) + 48|0); $595 = $594; - HEAP32[$595>>2] = $590; - $596 = $191; - $597 = $596; - $598 = HEAP32[$597>>2]|0; - $599 = (($596) + 4)|0; + $596 = $595; + HEAP32[$596>>2] = $592; + $597 = (($595) + 4)|0; + $598 = $597; + HEAP32[$598>>2] = $593; + $599 = $194; $600 = $599; $601 = HEAP32[$600>>2]|0; - $602 = (_bitshift64Ashr(0,($598|0),32)|0); - $603 = tempRet0; - $604 = $285; - $605 = $604; - $606 = HEAP32[$605>>2]|0; - $607 = (($604) + 4)|0; + $602 = (($599) + 4)|0; + $603 = $602; + $604 = HEAP32[$603>>2]|0; + $605 = (_bitshift64Ashr(0,($601|0),32)|0); + $606 = tempRet0; + $607 = $288; $608 = $607; $609 = HEAP32[$608>>2]|0; - $610 = (_bitshift64Ashr(0,($606|0),32)|0); - $611 = tempRet0; - $612 = (___muldi3(($610|0),($611|0),($602|0),($603|0))|0); - $613 = tempRet0; - $614 = $298; - $615 = $614; - $616 = HEAP32[$615>>2]|0; - $617 = (($614) + 4)|0; + $610 = (($607) + 4)|0; + $611 = $610; + $612 = HEAP32[$611>>2]|0; + $613 = (_bitshift64Ashr(0,($609|0),32)|0); + $614 = tempRet0; + $615 = (___muldi3(($613|0),($614|0),($605|0),($606|0))|0); + $616 = tempRet0; + $617 = $301; $618 = $617; $619 = HEAP32[$618>>2]|0; - $620 = (_bitshift64Ashr(0,($616|0),32)|0); - $621 = tempRet0; - $622 = $178; - $623 = $622; - $624 = HEAP32[$623>>2]|0; - $625 = (($622) + 4)|0; + $620 = (($617) + 4)|0; + $621 = $620; + $622 = HEAP32[$621>>2]|0; + $623 = (_bitshift64Ashr(0,($619|0),32)|0); + $624 = tempRet0; + $625 = $181; $626 = $625; $627 = HEAP32[$626>>2]|0; - $628 = (_bitshift64Ashr(0,($624|0),32)|0); - $629 = tempRet0; - $630 = (___muldi3(($628|0),($629|0),($620|0),($621|0))|0); - $631 = tempRet0; - $632 = (_i64Add(($630|0),($631|0),($612|0),($613|0))|0); - $633 = tempRet0; - $634 = $106; - $635 = $634; - $636 = HEAP32[$635>>2]|0; - $637 = (($634) + 4)|0; + $628 = (($625) + 4)|0; + $629 = $628; + $630 = HEAP32[$629>>2]|0; + $631 = (_bitshift64Ashr(0,($627|0),32)|0); + $632 = tempRet0; + $633 = (___muldi3(($631|0),($632|0),($623|0),($624|0))|0); + $634 = tempRet0; + $635 = (_i64Add(($633|0),($634|0),($615|0),($616|0))|0); + $636 = tempRet0; + $637 = $109; $638 = $637; $639 = HEAP32[$638>>2]|0; - $640 = (_bitshift64Ashr(0,($636|0),32)|0); - $641 = tempRet0; - $642 = $410; - $643 = $642; - $644 = HEAP32[$643>>2]|0; - $645 = (($642) + 4)|0; + $640 = (($637) + 4)|0; + $641 = $640; + $642 = HEAP32[$641>>2]|0; + $643 = (_bitshift64Ashr(0,($639|0),32)|0); + $644 = tempRet0; + $645 = $413; $646 = $645; $647 = HEAP32[$646>>2]|0; - $648 = (_bitshift64Ashr(0,($644|0),32)|0); - $649 = tempRet0; - $650 = (___muldi3(($648|0),($649|0),($640|0),($641|0))|0); - $651 = tempRet0; - $652 = (_i64Add(($632|0),($633|0),($650|0),($651|0))|0); - $653 = tempRet0; - $654 = $423; - $655 = $654; - $656 = HEAP32[$655>>2]|0; - $657 = (($654) + 4)|0; + $648 = (($645) + 4)|0; + $649 = $648; + $650 = HEAP32[$649>>2]|0; + $651 = (_bitshift64Ashr(0,($647|0),32)|0); + $652 = tempRet0; + $653 = (___muldi3(($651|0),($652|0),($643|0),($644|0))|0); + $654 = tempRet0; + $655 = (_i64Add(($635|0),($636|0),($653|0),($654|0))|0); + $656 = tempRet0; + $657 = $426; $658 = $657; $659 = HEAP32[$658>>2]|0; - $660 = (_bitshift64Ashr(0,($656|0),32)|0); - $661 = tempRet0; - $662 = $93; - $663 = $662; - $664 = HEAP32[$663>>2]|0; - $665 = (($662) + 4)|0; + $660 = (($657) + 4)|0; + $661 = $660; + $662 = HEAP32[$661>>2]|0; + $663 = (_bitshift64Ashr(0,($659|0),32)|0); + $664 = tempRet0; + $665 = $96; $666 = $665; $667 = HEAP32[$666>>2]|0; - $668 = (_bitshift64Ashr(0,($664|0),32)|0); - $669 = tempRet0; - $670 = (___muldi3(($668|0),($669|0),($660|0),($661|0))|0); - $671 = tempRet0; - $672 = (_i64Add(($652|0),($653|0),($670|0),($671|0))|0); - $673 = tempRet0; - $674 = $41; - $675 = $674; - $676 = HEAP32[$675>>2]|0; - $677 = (($674) + 4)|0; + $668 = (($665) + 4)|0; + $669 = $668; + $670 = HEAP32[$669>>2]|0; + $671 = (_bitshift64Ashr(0,($667|0),32)|0); + $672 = tempRet0; + $673 = (___muldi3(($671|0),($672|0),($663|0),($664|0))|0); + $674 = tempRet0; + $675 = (_i64Add(($655|0),($656|0),($673|0),($674|0))|0); + $676 = tempRet0; + $677 = $44; $678 = $677; $679 = HEAP32[$678>>2]|0; - $680 = (_bitshift64Ashr(0,($676|0),32)|0); - $681 = tempRet0; - $682 = $557; - $683 = $682; - $684 = HEAP32[$683>>2]|0; - $685 = (($682) + 4)|0; + $680 = (($677) + 4)|0; + $681 = $680; + $682 = HEAP32[$681>>2]|0; + $683 = (_bitshift64Ashr(0,($679|0),32)|0); + $684 = tempRet0; + $685 = $560; $686 = $685; $687 = HEAP32[$686>>2]|0; - $688 = (_bitshift64Ashr(0,($684|0),32)|0); - $689 = tempRet0; - $690 = (___muldi3(($688|0),($689|0),($680|0),($681|0))|0); - $691 = tempRet0; - $692 = (_i64Add(($672|0),($673|0),($690|0),($691|0))|0); - $693 = tempRet0; - $694 = $570; - $695 = $694; - $696 = HEAP32[$695>>2]|0; - $697 = (($694) + 4)|0; + $688 = (($685) + 4)|0; + $689 = $688; + $690 = HEAP32[$689>>2]|0; + $691 = (_bitshift64Ashr(0,($687|0),32)|0); + $692 = tempRet0; + $693 = (___muldi3(($691|0),($692|0),($683|0),($684|0))|0); + $694 = tempRet0; + $695 = (_i64Add(($675|0),($676|0),($693|0),($694|0))|0); + $696 = tempRet0; + $697 = $573; $698 = $697; $699 = HEAP32[$698>>2]|0; - $700 = (_bitshift64Ashr(0,($696|0),32)|0); - $701 = tempRet0; - $702 = $30; - $703 = $702; - $704 = HEAP32[$703>>2]|0; - $705 = (($702) + 4)|0; + $700 = (($697) + 4)|0; + $701 = $700; + $702 = HEAP32[$701>>2]|0; + $703 = (_bitshift64Ashr(0,($699|0),32)|0); + $704 = tempRet0; + $705 = $33; $706 = $705; $707 = HEAP32[$706>>2]|0; - $708 = (_bitshift64Ashr(0,($704|0),32)|0); - $709 = tempRet0; - $710 = (___muldi3(($708|0),($709|0),($700|0),($701|0))|0); - $711 = tempRet0; - $712 = (_i64Add(($692|0),($693|0),($710|0),($711|0))|0); - $713 = tempRet0; - $714 = $in2; - $715 = $714; - $716 = HEAP32[$715>>2]|0; - $717 = (($714) + 4)|0; + $708 = (($705) + 4)|0; + $709 = $708; + $710 = HEAP32[$709>>2]|0; + $711 = (_bitshift64Ashr(0,($707|0),32)|0); + $712 = tempRet0; + $713 = (___muldi3(($711|0),($712|0),($703|0),($704|0))|0); + $714 = tempRet0; + $715 = (_i64Add(($695|0),($696|0),($713|0),($714|0))|0); + $716 = tempRet0; + $717 = $1; $718 = $717; $719 = HEAP32[$718>>2]|0; - $720 = (_bitshift64Ashr(0,($716|0),32)|0); - $721 = tempRet0; - $722 = ((($in)) + 56|0); - $723 = $722; - $724 = $723; - $725 = HEAP32[$724>>2]|0; - $726 = (($723) + 4)|0; + $720 = (($717) + 4)|0; + $721 = $720; + $722 = HEAP32[$721>>2]|0; + $723 = (_bitshift64Ashr(0,($719|0),32)|0); + $724 = tempRet0; + $725 = ((($2)) + 56|0); + $726 = $725; $727 = $726; $728 = HEAP32[$727>>2]|0; - $729 = (_bitshift64Ashr(0,($725|0),32)|0); - $730 = tempRet0; - $731 = (___muldi3(($729|0),($730|0),($720|0),($721|0))|0); - $732 = tempRet0; - $733 = (_i64Add(($712|0),($713|0),($731|0),($732|0))|0); - $734 = tempRet0; - $735 = ((($in2)) + 56|0); - $736 = $735; - $737 = $736; - $738 = HEAP32[$737>>2]|0; - $739 = (($736) + 4)|0; + $729 = (($726) + 4)|0; + $730 = $729; + $731 = HEAP32[$730>>2]|0; + $732 = (_bitshift64Ashr(0,($728|0),32)|0); + $733 = tempRet0; + $734 = (___muldi3(($732|0),($733|0),($723|0),($724|0))|0); + $735 = tempRet0; + $736 = (_i64Add(($715|0),($716|0),($734|0),($735|0))|0); + $737 = tempRet0; + $738 = ((($1)) + 56|0); + $739 = $738; $740 = $739; $741 = HEAP32[$740>>2]|0; - $742 = (_bitshift64Ashr(0,($738|0),32)|0); - $743 = tempRet0; - $744 = $in; - $745 = $744; - $746 = HEAP32[$745>>2]|0; - $747 = (($744) + 4)|0; + $742 = (($739) + 4)|0; + $743 = $742; + $744 = HEAP32[$743>>2]|0; + $745 = (_bitshift64Ashr(0,($741|0),32)|0); + $746 = tempRet0; + $747 = $2; $748 = $747; $749 = HEAP32[$748>>2]|0; - $750 = (_bitshift64Ashr(0,($746|0),32)|0); - $751 = tempRet0; - $752 = (___muldi3(($750|0),($751|0),($742|0),($743|0))|0); - $753 = tempRet0; - $754 = (_i64Add(($733|0),($734|0),($752|0),($753|0))|0); - $755 = tempRet0; - $756 = ((($output)) + 56|0); - $757 = $756; - $758 = $757; - HEAP32[$758>>2] = $754; - $759 = (($757) + 4)|0; + $750 = (($747) + 4)|0; + $751 = $750; + $752 = HEAP32[$751>>2]|0; + $753 = (_bitshift64Ashr(0,($749|0),32)|0); + $754 = tempRet0; + $755 = (___muldi3(($753|0),($754|0),($745|0),($746|0))|0); + $756 = tempRet0; + $757 = (_i64Add(($736|0),($737|0),($755|0),($756|0))|0); + $758 = tempRet0; + $759 = ((($0)) + 56|0); $760 = $759; - HEAP32[$760>>2] = $755; - $761 = $298; - $762 = $761; - $763 = HEAP32[$762>>2]|0; - $764 = (($761) + 4)|0; + $761 = $760; + HEAP32[$761>>2] = $757; + $762 = (($760) + 4)|0; + $763 = $762; + HEAP32[$763>>2] = $758; + $764 = $301; $765 = $764; $766 = HEAP32[$765>>2]|0; - $767 = (_bitshift64Ashr(0,($763|0),32)|0); - $768 = tempRet0; - $769 = $285; - $770 = $769; - $771 = HEAP32[$770>>2]|0; - $772 = (($769) + 4)|0; + $767 = (($764) + 4)|0; + $768 = $767; + $769 = HEAP32[$768>>2]|0; + $770 = (_bitshift64Ashr(0,($766|0),32)|0); + $771 = tempRet0; + $772 = $288; $773 = $772; $774 = HEAP32[$773>>2]|0; - $775 = (_bitshift64Ashr(0,($771|0),32)|0); - $776 = tempRet0; - $777 = (___muldi3(($775|0),($776|0),($767|0),($768|0))|0); - $778 = tempRet0; - $779 = $191; - $780 = $779; - $781 = HEAP32[$780>>2]|0; - $782 = (($779) + 4)|0; + $775 = (($772) + 4)|0; + $776 = $775; + $777 = HEAP32[$776>>2]|0; + $778 = (_bitshift64Ashr(0,($774|0),32)|0); + $779 = tempRet0; + $780 = (___muldi3(($778|0),($779|0),($770|0),($771|0))|0); + $781 = tempRet0; + $782 = $194; $783 = $782; $784 = HEAP32[$783>>2]|0; - $785 = (_bitshift64Ashr(0,($781|0),32)|0); - $786 = tempRet0; - $787 = $410; - $788 = $787; - $789 = HEAP32[$788>>2]|0; - $790 = (($787) + 4)|0; + $785 = (($782) + 4)|0; + $786 = $785; + $787 = HEAP32[$786>>2]|0; + $788 = (_bitshift64Ashr(0,($784|0),32)|0); + $789 = tempRet0; + $790 = $413; $791 = $790; $792 = HEAP32[$791>>2]|0; - $793 = (_bitshift64Ashr(0,($789|0),32)|0); - $794 = tempRet0; - $795 = (___muldi3(($793|0),($794|0),($785|0),($786|0))|0); - $796 = tempRet0; - $797 = $423; - $798 = $797; - $799 = HEAP32[$798>>2]|0; - $800 = (($797) + 4)|0; + $793 = (($790) + 4)|0; + $794 = $793; + $795 = HEAP32[$794>>2]|0; + $796 = (_bitshift64Ashr(0,($792|0),32)|0); + $797 = tempRet0; + $798 = (___muldi3(($796|0),($797|0),($788|0),($789|0))|0); + $799 = tempRet0; + $800 = $426; $801 = $800; $802 = HEAP32[$801>>2]|0; - $803 = (_bitshift64Ashr(0,($799|0),32)|0); - $804 = tempRet0; - $805 = $178; - $806 = $805; - $807 = HEAP32[$806>>2]|0; - $808 = (($805) + 4)|0; + $803 = (($800) + 4)|0; + $804 = $803; + $805 = HEAP32[$804>>2]|0; + $806 = (_bitshift64Ashr(0,($802|0),32)|0); + $807 = tempRet0; + $808 = $181; $809 = $808; $810 = HEAP32[$809>>2]|0; - $811 = (_bitshift64Ashr(0,($807|0),32)|0); - $812 = tempRet0; - $813 = (___muldi3(($811|0),($812|0),($803|0),($804|0))|0); - $814 = tempRet0; - $815 = (_i64Add(($813|0),($814|0),($795|0),($796|0))|0); - $816 = tempRet0; - $817 = $41; - $818 = $817; - $819 = HEAP32[$818>>2]|0; - $820 = (($817) + 4)|0; + $811 = (($808) + 4)|0; + $812 = $811; + $813 = HEAP32[$812>>2]|0; + $814 = (_bitshift64Ashr(0,($810|0),32)|0); + $815 = tempRet0; + $816 = (___muldi3(($814|0),($815|0),($806|0),($807|0))|0); + $817 = tempRet0; + $818 = (_i64Add(($816|0),($817|0),($798|0),($799|0))|0); + $819 = tempRet0; + $820 = $44; $821 = $820; $822 = HEAP32[$821>>2]|0; - $823 = (_bitshift64Ashr(0,($819|0),32)|0); - $824 = tempRet0; - $825 = $722; - $826 = $825; - $827 = HEAP32[$826>>2]|0; - $828 = (($825) + 4)|0; + $823 = (($820) + 4)|0; + $824 = $823; + $825 = HEAP32[$824>>2]|0; + $826 = (_bitshift64Ashr(0,($822|0),32)|0); + $827 = tempRet0; + $828 = $725; $829 = $828; $830 = HEAP32[$829>>2]|0; - $831 = (_bitshift64Ashr(0,($827|0),32)|0); - $832 = tempRet0; - $833 = (___muldi3(($831|0),($832|0),($823|0),($824|0))|0); - $834 = tempRet0; - $835 = (_i64Add(($815|0),($816|0),($833|0),($834|0))|0); - $836 = tempRet0; - $837 = $735; - $838 = $837; - $839 = HEAP32[$838>>2]|0; - $840 = (($837) + 4)|0; + $831 = (($828) + 4)|0; + $832 = $831; + $833 = HEAP32[$832>>2]|0; + $834 = (_bitshift64Ashr(0,($830|0),32)|0); + $835 = tempRet0; + $836 = (___muldi3(($834|0),($835|0),($826|0),($827|0))|0); + $837 = tempRet0; + $838 = (_i64Add(($818|0),($819|0),($836|0),($837|0))|0); + $839 = tempRet0; + $840 = $738; $841 = $840; $842 = HEAP32[$841>>2]|0; - $843 = (_bitshift64Ashr(0,($839|0),32)|0); - $844 = tempRet0; - $845 = $30; - $846 = $845; - $847 = HEAP32[$846>>2]|0; - $848 = (($845) + 4)|0; + $843 = (($840) + 4)|0; + $844 = $843; + $845 = HEAP32[$844>>2]|0; + $846 = (_bitshift64Ashr(0,($842|0),32)|0); + $847 = tempRet0; + $848 = $33; $849 = $848; $850 = HEAP32[$849>>2]|0; - $851 = (_bitshift64Ashr(0,($847|0),32)|0); - $852 = tempRet0; - $853 = (___muldi3(($851|0),($852|0),($843|0),($844|0))|0); - $854 = tempRet0; - $855 = (_i64Add(($835|0),($836|0),($853|0),($854|0))|0); - $856 = tempRet0; - $857 = (_bitshift64Shl(($855|0),($856|0),1)|0); - $858 = tempRet0; - $859 = (_i64Add(($857|0),($858|0),($777|0),($778|0))|0); - $860 = tempRet0; - $861 = $106; - $862 = $861; - $863 = HEAP32[$862>>2]|0; - $864 = (($861) + 4)|0; + $851 = (($848) + 4)|0; + $852 = $851; + $853 = HEAP32[$852>>2]|0; + $854 = (_bitshift64Ashr(0,($850|0),32)|0); + $855 = tempRet0; + $856 = (___muldi3(($854|0),($855|0),($846|0),($847|0))|0); + $857 = tempRet0; + $858 = (_i64Add(($838|0),($839|0),($856|0),($857|0))|0); + $859 = tempRet0; + $860 = (_bitshift64Shl(($858|0),($859|0),1)|0); + $861 = tempRet0; + $862 = (_i64Add(($860|0),($861|0),($780|0),($781|0))|0); + $863 = tempRet0; + $864 = $109; $865 = $864; $866 = HEAP32[$865>>2]|0; - $867 = (_bitshift64Ashr(0,($863|0),32)|0); - $868 = tempRet0; - $869 = $557; - $870 = $869; - $871 = HEAP32[$870>>2]|0; - $872 = (($869) + 4)|0; + $867 = (($864) + 4)|0; + $868 = $867; + $869 = HEAP32[$868>>2]|0; + $870 = (_bitshift64Ashr(0,($866|0),32)|0); + $871 = tempRet0; + $872 = $560; $873 = $872; $874 = HEAP32[$873>>2]|0; - $875 = (_bitshift64Ashr(0,($871|0),32)|0); - $876 = tempRet0; - $877 = (___muldi3(($875|0),($876|0),($867|0),($868|0))|0); - $878 = tempRet0; - $879 = (_i64Add(($859|0),($860|0),($877|0),($878|0))|0); - $880 = tempRet0; - $881 = $570; - $882 = $881; - $883 = HEAP32[$882>>2]|0; - $884 = (($881) + 4)|0; + $875 = (($872) + 4)|0; + $876 = $875; + $877 = HEAP32[$876>>2]|0; + $878 = (_bitshift64Ashr(0,($874|0),32)|0); + $879 = tempRet0; + $880 = (___muldi3(($878|0),($879|0),($870|0),($871|0))|0); + $881 = tempRet0; + $882 = (_i64Add(($862|0),($863|0),($880|0),($881|0))|0); + $883 = tempRet0; + $884 = $573; $885 = $884; $886 = HEAP32[$885>>2]|0; - $887 = (_bitshift64Ashr(0,($883|0),32)|0); - $888 = tempRet0; - $889 = $93; - $890 = $889; - $891 = HEAP32[$890>>2]|0; - $892 = (($889) + 4)|0; + $887 = (($884) + 4)|0; + $888 = $887; + $889 = HEAP32[$888>>2]|0; + $890 = (_bitshift64Ashr(0,($886|0),32)|0); + $891 = tempRet0; + $892 = $96; $893 = $892; $894 = HEAP32[$893>>2]|0; - $895 = (_bitshift64Ashr(0,($891|0),32)|0); - $896 = tempRet0; - $897 = (___muldi3(($895|0),($896|0),($887|0),($888|0))|0); - $898 = tempRet0; - $899 = (_i64Add(($879|0),($880|0),($897|0),($898|0))|0); - $900 = tempRet0; - $901 = $in2; - $902 = $901; - $903 = HEAP32[$902>>2]|0; - $904 = (($901) + 4)|0; + $895 = (($892) + 4)|0; + $896 = $895; + $897 = HEAP32[$896>>2]|0; + $898 = (_bitshift64Ashr(0,($894|0),32)|0); + $899 = tempRet0; + $900 = (___muldi3(($898|0),($899|0),($890|0),($891|0))|0); + $901 = tempRet0; + $902 = (_i64Add(($882|0),($883|0),($900|0),($901|0))|0); + $903 = tempRet0; + $904 = $1; $905 = $904; $906 = HEAP32[$905>>2]|0; - $907 = (_bitshift64Ashr(0,($903|0),32)|0); - $908 = tempRet0; - $909 = ((($in)) + 64|0); - $910 = $909; - $911 = $910; - $912 = HEAP32[$911>>2]|0; - $913 = (($910) + 4)|0; + $907 = (($904) + 4)|0; + $908 = $907; + $909 = HEAP32[$908>>2]|0; + $910 = (_bitshift64Ashr(0,($906|0),32)|0); + $911 = tempRet0; + $912 = ((($2)) + 64|0); + $913 = $912; $914 = $913; $915 = HEAP32[$914>>2]|0; - $916 = (_bitshift64Ashr(0,($912|0),32)|0); - $917 = tempRet0; - $918 = (___muldi3(($916|0),($917|0),($907|0),($908|0))|0); - $919 = tempRet0; - $920 = (_i64Add(($899|0),($900|0),($918|0),($919|0))|0); - $921 = tempRet0; - $922 = ((($in2)) + 64|0); - $923 = $922; - $924 = $923; - $925 = HEAP32[$924>>2]|0; - $926 = (($923) + 4)|0; + $916 = (($913) + 4)|0; + $917 = $916; + $918 = HEAP32[$917>>2]|0; + $919 = (_bitshift64Ashr(0,($915|0),32)|0); + $920 = tempRet0; + $921 = (___muldi3(($919|0),($920|0),($910|0),($911|0))|0); + $922 = tempRet0; + $923 = (_i64Add(($902|0),($903|0),($921|0),($922|0))|0); + $924 = tempRet0; + $925 = ((($1)) + 64|0); + $926 = $925; $927 = $926; $928 = HEAP32[$927>>2]|0; - $929 = (_bitshift64Ashr(0,($925|0),32)|0); - $930 = tempRet0; - $931 = $in; - $932 = $931; - $933 = HEAP32[$932>>2]|0; - $934 = (($931) + 4)|0; + $929 = (($926) + 4)|0; + $930 = $929; + $931 = HEAP32[$930>>2]|0; + $932 = (_bitshift64Ashr(0,($928|0),32)|0); + $933 = tempRet0; + $934 = $2; $935 = $934; $936 = HEAP32[$935>>2]|0; - $937 = (_bitshift64Ashr(0,($933|0),32)|0); - $938 = tempRet0; - $939 = (___muldi3(($937|0),($938|0),($929|0),($930|0))|0); - $940 = tempRet0; - $941 = (_i64Add(($920|0),($921|0),($939|0),($940|0))|0); - $942 = tempRet0; - $943 = ((($output)) + 64|0); - $944 = $943; - $945 = $944; - HEAP32[$945>>2] = $941; - $946 = (($944) + 4)|0; + $937 = (($934) + 4)|0; + $938 = $937; + $939 = HEAP32[$938>>2]|0; + $940 = (_bitshift64Ashr(0,($936|0),32)|0); + $941 = tempRet0; + $942 = (___muldi3(($940|0),($941|0),($932|0),($933|0))|0); + $943 = tempRet0; + $944 = (_i64Add(($923|0),($924|0),($942|0),($943|0))|0); + $945 = tempRet0; + $946 = ((($0)) + 64|0); $947 = $946; - HEAP32[$947>>2] = $942; - $948 = $298; - $949 = $948; - $950 = HEAP32[$949>>2]|0; - $951 = (($948) + 4)|0; + $948 = $947; + HEAP32[$948>>2] = $944; + $949 = (($947) + 4)|0; + $950 = $949; + HEAP32[$950>>2] = $945; + $951 = $301; $952 = $951; $953 = HEAP32[$952>>2]|0; - $954 = (_bitshift64Ashr(0,($950|0),32)|0); - $955 = tempRet0; - $956 = $410; - $957 = $956; - $958 = HEAP32[$957>>2]|0; - $959 = (($956) + 4)|0; + $954 = (($951) + 4)|0; + $955 = $954; + $956 = HEAP32[$955>>2]|0; + $957 = (_bitshift64Ashr(0,($953|0),32)|0); + $958 = tempRet0; + $959 = $413; $960 = $959; $961 = HEAP32[$960>>2]|0; - $962 = (_bitshift64Ashr(0,($958|0),32)|0); - $963 = tempRet0; - $964 = (___muldi3(($962|0),($963|0),($954|0),($955|0))|0); - $965 = tempRet0; - $966 = $423; - $967 = $966; - $968 = HEAP32[$967>>2]|0; - $969 = (($966) + 4)|0; + $962 = (($959) + 4)|0; + $963 = $962; + $964 = HEAP32[$963>>2]|0; + $965 = (_bitshift64Ashr(0,($961|0),32)|0); + $966 = tempRet0; + $967 = (___muldi3(($965|0),($966|0),($957|0),($958|0))|0); + $968 = tempRet0; + $969 = $426; $970 = $969; $971 = HEAP32[$970>>2]|0; - $972 = (_bitshift64Ashr(0,($968|0),32)|0); - $973 = tempRet0; - $974 = $285; - $975 = $974; - $976 = HEAP32[$975>>2]|0; - $977 = (($974) + 4)|0; + $972 = (($969) + 4)|0; + $973 = $972; + $974 = HEAP32[$973>>2]|0; + $975 = (_bitshift64Ashr(0,($971|0),32)|0); + $976 = tempRet0; + $977 = $288; $978 = $977; $979 = HEAP32[$978>>2]|0; - $980 = (_bitshift64Ashr(0,($976|0),32)|0); - $981 = tempRet0; - $982 = (___muldi3(($980|0),($981|0),($972|0),($973|0))|0); - $983 = tempRet0; - $984 = (_i64Add(($982|0),($983|0),($964|0),($965|0))|0); - $985 = tempRet0; - $986 = $191; - $987 = $986; - $988 = HEAP32[$987>>2]|0; - $989 = (($986) + 4)|0; + $980 = (($977) + 4)|0; + $981 = $980; + $982 = HEAP32[$981>>2]|0; + $983 = (_bitshift64Ashr(0,($979|0),32)|0); + $984 = tempRet0; + $985 = (___muldi3(($983|0),($984|0),($975|0),($976|0))|0); + $986 = tempRet0; + $987 = (_i64Add(($985|0),($986|0),($967|0),($968|0))|0); + $988 = tempRet0; + $989 = $194; $990 = $989; $991 = HEAP32[$990>>2]|0; - $992 = (_bitshift64Ashr(0,($988|0),32)|0); - $993 = tempRet0; - $994 = $557; - $995 = $994; - $996 = HEAP32[$995>>2]|0; - $997 = (($994) + 4)|0; + $992 = (($989) + 4)|0; + $993 = $992; + $994 = HEAP32[$993>>2]|0; + $995 = (_bitshift64Ashr(0,($991|0),32)|0); + $996 = tempRet0; + $997 = $560; $998 = $997; $999 = HEAP32[$998>>2]|0; - $1000 = (_bitshift64Ashr(0,($996|0),32)|0); - $1001 = tempRet0; - $1002 = (___muldi3(($1000|0),($1001|0),($992|0),($993|0))|0); - $1003 = tempRet0; - $1004 = (_i64Add(($984|0),($985|0),($1002|0),($1003|0))|0); - $1005 = tempRet0; - $1006 = $570; - $1007 = $1006; - $1008 = HEAP32[$1007>>2]|0; - $1009 = (($1006) + 4)|0; + $1000 = (($997) + 4)|0; + $1001 = $1000; + $1002 = HEAP32[$1001>>2]|0; + $1003 = (_bitshift64Ashr(0,($999|0),32)|0); + $1004 = tempRet0; + $1005 = (___muldi3(($1003|0),($1004|0),($995|0),($996|0))|0); + $1006 = tempRet0; + $1007 = (_i64Add(($987|0),($988|0),($1005|0),($1006|0))|0); + $1008 = tempRet0; + $1009 = $573; $1010 = $1009; $1011 = HEAP32[$1010>>2]|0; - $1012 = (_bitshift64Ashr(0,($1008|0),32)|0); - $1013 = tempRet0; - $1014 = $178; - $1015 = $1014; - $1016 = HEAP32[$1015>>2]|0; - $1017 = (($1014) + 4)|0; + $1012 = (($1009) + 4)|0; + $1013 = $1012; + $1014 = HEAP32[$1013>>2]|0; + $1015 = (_bitshift64Ashr(0,($1011|0),32)|0); + $1016 = tempRet0; + $1017 = $181; $1018 = $1017; $1019 = HEAP32[$1018>>2]|0; - $1020 = (_bitshift64Ashr(0,($1016|0),32)|0); - $1021 = tempRet0; - $1022 = (___muldi3(($1020|0),($1021|0),($1012|0),($1013|0))|0); - $1023 = tempRet0; - $1024 = (_i64Add(($1004|0),($1005|0),($1022|0),($1023|0))|0); - $1025 = tempRet0; - $1026 = $106; - $1027 = $1026; - $1028 = HEAP32[$1027>>2]|0; - $1029 = (($1026) + 4)|0; + $1020 = (($1017) + 4)|0; + $1021 = $1020; + $1022 = HEAP32[$1021>>2]|0; + $1023 = (_bitshift64Ashr(0,($1019|0),32)|0); + $1024 = tempRet0; + $1025 = (___muldi3(($1023|0),($1024|0),($1015|0),($1016|0))|0); + $1026 = tempRet0; + $1027 = (_i64Add(($1007|0),($1008|0),($1025|0),($1026|0))|0); + $1028 = tempRet0; + $1029 = $109; $1030 = $1029; $1031 = HEAP32[$1030>>2]|0; - $1032 = (_bitshift64Ashr(0,($1028|0),32)|0); - $1033 = tempRet0; - $1034 = $722; - $1035 = $1034; - $1036 = HEAP32[$1035>>2]|0; - $1037 = (($1034) + 4)|0; + $1032 = (($1029) + 4)|0; + $1033 = $1032; + $1034 = HEAP32[$1033>>2]|0; + $1035 = (_bitshift64Ashr(0,($1031|0),32)|0); + $1036 = tempRet0; + $1037 = $725; $1038 = $1037; $1039 = HEAP32[$1038>>2]|0; - $1040 = (_bitshift64Ashr(0,($1036|0),32)|0); - $1041 = tempRet0; - $1042 = (___muldi3(($1040|0),($1041|0),($1032|0),($1033|0))|0); - $1043 = tempRet0; - $1044 = (_i64Add(($1024|0),($1025|0),($1042|0),($1043|0))|0); - $1045 = tempRet0; - $1046 = $735; - $1047 = $1046; - $1048 = HEAP32[$1047>>2]|0; - $1049 = (($1046) + 4)|0; + $1040 = (($1037) + 4)|0; + $1041 = $1040; + $1042 = HEAP32[$1041>>2]|0; + $1043 = (_bitshift64Ashr(0,($1039|0),32)|0); + $1044 = tempRet0; + $1045 = (___muldi3(($1043|0),($1044|0),($1035|0),($1036|0))|0); + $1046 = tempRet0; + $1047 = (_i64Add(($1027|0),($1028|0),($1045|0),($1046|0))|0); + $1048 = tempRet0; + $1049 = $738; $1050 = $1049; $1051 = HEAP32[$1050>>2]|0; - $1052 = (_bitshift64Ashr(0,($1048|0),32)|0); - $1053 = tempRet0; - $1054 = $93; - $1055 = $1054; - $1056 = HEAP32[$1055>>2]|0; - $1057 = (($1054) + 4)|0; + $1052 = (($1049) + 4)|0; + $1053 = $1052; + $1054 = HEAP32[$1053>>2]|0; + $1055 = (_bitshift64Ashr(0,($1051|0),32)|0); + $1056 = tempRet0; + $1057 = $96; $1058 = $1057; $1059 = HEAP32[$1058>>2]|0; - $1060 = (_bitshift64Ashr(0,($1056|0),32)|0); - $1061 = tempRet0; - $1062 = (___muldi3(($1060|0),($1061|0),($1052|0),($1053|0))|0); - $1063 = tempRet0; - $1064 = (_i64Add(($1044|0),($1045|0),($1062|0),($1063|0))|0); - $1065 = tempRet0; - $1066 = $41; - $1067 = $1066; - $1068 = HEAP32[$1067>>2]|0; - $1069 = (($1066) + 4)|0; + $1060 = (($1057) + 4)|0; + $1061 = $1060; + $1062 = HEAP32[$1061>>2]|0; + $1063 = (_bitshift64Ashr(0,($1059|0),32)|0); + $1064 = tempRet0; + $1065 = (___muldi3(($1063|0),($1064|0),($1055|0),($1056|0))|0); + $1066 = tempRet0; + $1067 = (_i64Add(($1047|0),($1048|0),($1065|0),($1066|0))|0); + $1068 = tempRet0; + $1069 = $44; $1070 = $1069; $1071 = HEAP32[$1070>>2]|0; - $1072 = (_bitshift64Ashr(0,($1068|0),32)|0); - $1073 = tempRet0; - $1074 = $909; - $1075 = $1074; - $1076 = HEAP32[$1075>>2]|0; - $1077 = (($1074) + 4)|0; + $1072 = (($1069) + 4)|0; + $1073 = $1072; + $1074 = HEAP32[$1073>>2]|0; + $1075 = (_bitshift64Ashr(0,($1071|0),32)|0); + $1076 = tempRet0; + $1077 = $912; $1078 = $1077; $1079 = HEAP32[$1078>>2]|0; - $1080 = (_bitshift64Ashr(0,($1076|0),32)|0); - $1081 = tempRet0; - $1082 = (___muldi3(($1080|0),($1081|0),($1072|0),($1073|0))|0); - $1083 = tempRet0; - $1084 = (_i64Add(($1064|0),($1065|0),($1082|0),($1083|0))|0); - $1085 = tempRet0; - $1086 = $922; - $1087 = $1086; - $1088 = HEAP32[$1087>>2]|0; - $1089 = (($1086) + 4)|0; + $1080 = (($1077) + 4)|0; + $1081 = $1080; + $1082 = HEAP32[$1081>>2]|0; + $1083 = (_bitshift64Ashr(0,($1079|0),32)|0); + $1084 = tempRet0; + $1085 = (___muldi3(($1083|0),($1084|0),($1075|0),($1076|0))|0); + $1086 = tempRet0; + $1087 = (_i64Add(($1067|0),($1068|0),($1085|0),($1086|0))|0); + $1088 = tempRet0; + $1089 = $925; $1090 = $1089; $1091 = HEAP32[$1090>>2]|0; - $1092 = (_bitshift64Ashr(0,($1088|0),32)|0); - $1093 = tempRet0; - $1094 = $30; - $1095 = $1094; - $1096 = HEAP32[$1095>>2]|0; - $1097 = (($1094) + 4)|0; + $1092 = (($1089) + 4)|0; + $1093 = $1092; + $1094 = HEAP32[$1093>>2]|0; + $1095 = (_bitshift64Ashr(0,($1091|0),32)|0); + $1096 = tempRet0; + $1097 = $33; $1098 = $1097; $1099 = HEAP32[$1098>>2]|0; - $1100 = (_bitshift64Ashr(0,($1096|0),32)|0); - $1101 = tempRet0; - $1102 = (___muldi3(($1100|0),($1101|0),($1092|0),($1093|0))|0); - $1103 = tempRet0; - $1104 = (_i64Add(($1084|0),($1085|0),($1102|0),($1103|0))|0); - $1105 = tempRet0; - $1106 = $in2; - $1107 = $1106; - $1108 = HEAP32[$1107>>2]|0; - $1109 = (($1106) + 4)|0; + $1100 = (($1097) + 4)|0; + $1101 = $1100; + $1102 = HEAP32[$1101>>2]|0; + $1103 = (_bitshift64Ashr(0,($1099|0),32)|0); + $1104 = tempRet0; + $1105 = (___muldi3(($1103|0),($1104|0),($1095|0),($1096|0))|0); + $1106 = tempRet0; + $1107 = (_i64Add(($1087|0),($1088|0),($1105|0),($1106|0))|0); + $1108 = tempRet0; + $1109 = $1; $1110 = $1109; $1111 = HEAP32[$1110>>2]|0; - $1112 = (_bitshift64Ashr(0,($1108|0),32)|0); - $1113 = tempRet0; - $1114 = ((($in)) + 72|0); - $1115 = $1114; - $1116 = $1115; - $1117 = HEAP32[$1116>>2]|0; - $1118 = (($1115) + 4)|0; + $1112 = (($1109) + 4)|0; + $1113 = $1112; + $1114 = HEAP32[$1113>>2]|0; + $1115 = (_bitshift64Ashr(0,($1111|0),32)|0); + $1116 = tempRet0; + $1117 = ((($2)) + 72|0); + $1118 = $1117; $1119 = $1118; $1120 = HEAP32[$1119>>2]|0; - $1121 = (_bitshift64Ashr(0,($1117|0),32)|0); - $1122 = tempRet0; - $1123 = (___muldi3(($1121|0),($1122|0),($1112|0),($1113|0))|0); - $1124 = tempRet0; - $1125 = (_i64Add(($1104|0),($1105|0),($1123|0),($1124|0))|0); - $1126 = tempRet0; - $1127 = ((($in2)) + 72|0); - $1128 = $1127; - $1129 = $1128; - $1130 = HEAP32[$1129>>2]|0; - $1131 = (($1128) + 4)|0; + $1121 = (($1118) + 4)|0; + $1122 = $1121; + $1123 = HEAP32[$1122>>2]|0; + $1124 = (_bitshift64Ashr(0,($1120|0),32)|0); + $1125 = tempRet0; + $1126 = (___muldi3(($1124|0),($1125|0),($1115|0),($1116|0))|0); + $1127 = tempRet0; + $1128 = (_i64Add(($1107|0),($1108|0),($1126|0),($1127|0))|0); + $1129 = tempRet0; + $1130 = ((($1)) + 72|0); + $1131 = $1130; $1132 = $1131; $1133 = HEAP32[$1132>>2]|0; - $1134 = (_bitshift64Ashr(0,($1130|0),32)|0); - $1135 = tempRet0; - $1136 = $in; - $1137 = $1136; - $1138 = HEAP32[$1137>>2]|0; - $1139 = (($1136) + 4)|0; + $1134 = (($1131) + 4)|0; + $1135 = $1134; + $1136 = HEAP32[$1135>>2]|0; + $1137 = (_bitshift64Ashr(0,($1133|0),32)|0); + $1138 = tempRet0; + $1139 = $2; $1140 = $1139; $1141 = HEAP32[$1140>>2]|0; - $1142 = (_bitshift64Ashr(0,($1138|0),32)|0); - $1143 = tempRet0; - $1144 = (___muldi3(($1142|0),($1143|0),($1134|0),($1135|0))|0); - $1145 = tempRet0; - $1146 = (_i64Add(($1125|0),($1126|0),($1144|0),($1145|0))|0); - $1147 = tempRet0; - $1148 = ((($output)) + 72|0); - $1149 = $1148; - $1150 = $1149; - HEAP32[$1150>>2] = $1146; - $1151 = (($1149) + 4)|0; + $1142 = (($1139) + 4)|0; + $1143 = $1142; + $1144 = HEAP32[$1143>>2]|0; + $1145 = (_bitshift64Ashr(0,($1141|0),32)|0); + $1146 = tempRet0; + $1147 = (___muldi3(($1145|0),($1146|0),($1137|0),($1138|0))|0); + $1148 = tempRet0; + $1149 = (_i64Add(($1128|0),($1129|0),($1147|0),($1148|0))|0); + $1150 = tempRet0; + $1151 = ((($0)) + 72|0); $1152 = $1151; - HEAP32[$1152>>2] = $1147; - $1153 = $423; - $1154 = $1153; - $1155 = HEAP32[$1154>>2]|0; - $1156 = (($1153) + 4)|0; + $1153 = $1152; + HEAP32[$1153>>2] = $1149; + $1154 = (($1152) + 4)|0; + $1155 = $1154; + HEAP32[$1155>>2] = $1150; + $1156 = $426; $1157 = $1156; $1158 = HEAP32[$1157>>2]|0; - $1159 = (_bitshift64Ashr(0,($1155|0),32)|0); - $1160 = tempRet0; - $1161 = $410; - $1162 = $1161; - $1163 = HEAP32[$1162>>2]|0; - $1164 = (($1161) + 4)|0; + $1159 = (($1156) + 4)|0; + $1160 = $1159; + $1161 = HEAP32[$1160>>2]|0; + $1162 = (_bitshift64Ashr(0,($1158|0),32)|0); + $1163 = tempRet0; + $1164 = $413; $1165 = $1164; $1166 = HEAP32[$1165>>2]|0; - $1167 = (_bitshift64Ashr(0,($1163|0),32)|0); - $1168 = tempRet0; - $1169 = (___muldi3(($1167|0),($1168|0),($1159|0),($1160|0))|0); - $1170 = tempRet0; - $1171 = $191; - $1172 = $1171; - $1173 = HEAP32[$1172>>2]|0; - $1174 = (($1171) + 4)|0; + $1167 = (($1164) + 4)|0; + $1168 = $1167; + $1169 = HEAP32[$1168>>2]|0; + $1170 = (_bitshift64Ashr(0,($1166|0),32)|0); + $1171 = tempRet0; + $1172 = (___muldi3(($1170|0),($1171|0),($1162|0),($1163|0))|0); + $1173 = tempRet0; + $1174 = $194; $1175 = $1174; $1176 = HEAP32[$1175>>2]|0; - $1177 = (_bitshift64Ashr(0,($1173|0),32)|0); - $1178 = tempRet0; - $1179 = $722; - $1180 = $1179; - $1181 = HEAP32[$1180>>2]|0; - $1182 = (($1179) + 4)|0; + $1177 = (($1174) + 4)|0; + $1178 = $1177; + $1179 = HEAP32[$1178>>2]|0; + $1180 = (_bitshift64Ashr(0,($1176|0),32)|0); + $1181 = tempRet0; + $1182 = $725; $1183 = $1182; $1184 = HEAP32[$1183>>2]|0; - $1185 = (_bitshift64Ashr(0,($1181|0),32)|0); - $1186 = tempRet0; - $1187 = (___muldi3(($1185|0),($1186|0),($1177|0),($1178|0))|0); - $1188 = tempRet0; - $1189 = (_i64Add(($1187|0),($1188|0),($1169|0),($1170|0))|0); - $1190 = tempRet0; - $1191 = $735; - $1192 = $1191; - $1193 = HEAP32[$1192>>2]|0; - $1194 = (($1191) + 4)|0; - $1195 = $1194; + $1185 = (($1182) + 4)|0; + $1186 = $1185; + $1187 = HEAP32[$1186>>2]|0; + $1188 = (_bitshift64Ashr(0,($1184|0),32)|0); + $1189 = tempRet0; + $1190 = (___muldi3(($1188|0),($1189|0),($1180|0),($1181|0))|0); + $1191 = tempRet0; + $1192 = (_i64Add(($1190|0),($1191|0),($1172|0),($1173|0))|0); + $1193 = tempRet0; + $1194 = $738; + $1195 = $1194; $1196 = HEAP32[$1195>>2]|0; - $1197 = (_bitshift64Ashr(0,($1193|0),32)|0); - $1198 = tempRet0; - $1199 = $178; - $1200 = $1199; - $1201 = HEAP32[$1200>>2]|0; - $1202 = (($1199) + 4)|0; + $1197 = (($1194) + 4)|0; + $1198 = $1197; + $1199 = HEAP32[$1198>>2]|0; + $1200 = (_bitshift64Ashr(0,($1196|0),32)|0); + $1201 = tempRet0; + $1202 = $181; $1203 = $1202; $1204 = HEAP32[$1203>>2]|0; - $1205 = (_bitshift64Ashr(0,($1201|0),32)|0); - $1206 = tempRet0; - $1207 = (___muldi3(($1205|0),($1206|0),($1197|0),($1198|0))|0); - $1208 = tempRet0; - $1209 = (_i64Add(($1189|0),($1190|0),($1207|0),($1208|0))|0); - $1210 = tempRet0; - $1211 = $41; - $1212 = $1211; - $1213 = HEAP32[$1212>>2]|0; - $1214 = (($1211) + 4)|0; + $1205 = (($1202) + 4)|0; + $1206 = $1205; + $1207 = HEAP32[$1206>>2]|0; + $1208 = (_bitshift64Ashr(0,($1204|0),32)|0); + $1209 = tempRet0; + $1210 = (___muldi3(($1208|0),($1209|0),($1200|0),($1201|0))|0); + $1211 = tempRet0; + $1212 = (_i64Add(($1192|0),($1193|0),($1210|0),($1211|0))|0); + $1213 = tempRet0; + $1214 = $44; $1215 = $1214; $1216 = HEAP32[$1215>>2]|0; - $1217 = (_bitshift64Ashr(0,($1213|0),32)|0); - $1218 = tempRet0; - $1219 = $1114; - $1220 = $1219; - $1221 = HEAP32[$1220>>2]|0; - $1222 = (($1219) + 4)|0; + $1217 = (($1214) + 4)|0; + $1218 = $1217; + $1219 = HEAP32[$1218>>2]|0; + $1220 = (_bitshift64Ashr(0,($1216|0),32)|0); + $1221 = tempRet0; + $1222 = $1117; $1223 = $1222; $1224 = HEAP32[$1223>>2]|0; - $1225 = (_bitshift64Ashr(0,($1221|0),32)|0); - $1226 = tempRet0; - $1227 = (___muldi3(($1225|0),($1226|0),($1217|0),($1218|0))|0); - $1228 = tempRet0; - $1229 = (_i64Add(($1209|0),($1210|0),($1227|0),($1228|0))|0); - $1230 = tempRet0; - $1231 = $1127; - $1232 = $1231; - $1233 = HEAP32[$1232>>2]|0; - $1234 = (($1231) + 4)|0; + $1225 = (($1222) + 4)|0; + $1226 = $1225; + $1227 = HEAP32[$1226>>2]|0; + $1228 = (_bitshift64Ashr(0,($1224|0),32)|0); + $1229 = tempRet0; + $1230 = (___muldi3(($1228|0),($1229|0),($1220|0),($1221|0))|0); + $1231 = tempRet0; + $1232 = (_i64Add(($1212|0),($1213|0),($1230|0),($1231|0))|0); + $1233 = tempRet0; + $1234 = $1130; $1235 = $1234; $1236 = HEAP32[$1235>>2]|0; - $1237 = (_bitshift64Ashr(0,($1233|0),32)|0); - $1238 = tempRet0; - $1239 = $30; - $1240 = $1239; - $1241 = HEAP32[$1240>>2]|0; - $1242 = (($1239) + 4)|0; + $1237 = (($1234) + 4)|0; + $1238 = $1237; + $1239 = HEAP32[$1238>>2]|0; + $1240 = (_bitshift64Ashr(0,($1236|0),32)|0); + $1241 = tempRet0; + $1242 = $33; $1243 = $1242; $1244 = HEAP32[$1243>>2]|0; - $1245 = (_bitshift64Ashr(0,($1241|0),32)|0); - $1246 = tempRet0; - $1247 = (___muldi3(($1245|0),($1246|0),($1237|0),($1238|0))|0); - $1248 = tempRet0; - $1249 = (_i64Add(($1229|0),($1230|0),($1247|0),($1248|0))|0); - $1250 = tempRet0; - $1251 = (_bitshift64Shl(($1249|0),($1250|0),1)|0); - $1252 = tempRet0; - $1253 = $298; - $1254 = $1253; - $1255 = HEAP32[$1254>>2]|0; - $1256 = (($1253) + 4)|0; + $1245 = (($1242) + 4)|0; + $1246 = $1245; + $1247 = HEAP32[$1246>>2]|0; + $1248 = (_bitshift64Ashr(0,($1244|0),32)|0); + $1249 = tempRet0; + $1250 = (___muldi3(($1248|0),($1249|0),($1240|0),($1241|0))|0); + $1251 = tempRet0; + $1252 = (_i64Add(($1232|0),($1233|0),($1250|0),($1251|0))|0); + $1253 = tempRet0; + $1254 = (_bitshift64Shl(($1252|0),($1253|0),1)|0); + $1255 = tempRet0; + $1256 = $301; $1257 = $1256; $1258 = HEAP32[$1257>>2]|0; - $1259 = (_bitshift64Ashr(0,($1255|0),32)|0); - $1260 = tempRet0; - $1261 = $557; - $1262 = $1261; - $1263 = HEAP32[$1262>>2]|0; - $1264 = (($1261) + 4)|0; + $1259 = (($1256) + 4)|0; + $1260 = $1259; + $1261 = HEAP32[$1260>>2]|0; + $1262 = (_bitshift64Ashr(0,($1258|0),32)|0); + $1263 = tempRet0; + $1264 = $560; $1265 = $1264; $1266 = HEAP32[$1265>>2]|0; - $1267 = (_bitshift64Ashr(0,($1263|0),32)|0); - $1268 = tempRet0; - $1269 = (___muldi3(($1267|0),($1268|0),($1259|0),($1260|0))|0); - $1270 = tempRet0; - $1271 = (_i64Add(($1251|0),($1252|0),($1269|0),($1270|0))|0); - $1272 = tempRet0; - $1273 = $570; - $1274 = $1273; - $1275 = HEAP32[$1274>>2]|0; - $1276 = (($1273) + 4)|0; + $1267 = (($1264) + 4)|0; + $1268 = $1267; + $1269 = HEAP32[$1268>>2]|0; + $1270 = (_bitshift64Ashr(0,($1266|0),32)|0); + $1271 = tempRet0; + $1272 = (___muldi3(($1270|0),($1271|0),($1262|0),($1263|0))|0); + $1273 = tempRet0; + $1274 = (_i64Add(($1254|0),($1255|0),($1272|0),($1273|0))|0); + $1275 = tempRet0; + $1276 = $573; $1277 = $1276; $1278 = HEAP32[$1277>>2]|0; - $1279 = (_bitshift64Ashr(0,($1275|0),32)|0); - $1280 = tempRet0; - $1281 = $285; - $1282 = $1281; - $1283 = HEAP32[$1282>>2]|0; - $1284 = (($1281) + 4)|0; + $1279 = (($1276) + 4)|0; + $1280 = $1279; + $1281 = HEAP32[$1280>>2]|0; + $1282 = (_bitshift64Ashr(0,($1278|0),32)|0); + $1283 = tempRet0; + $1284 = $288; $1285 = $1284; $1286 = HEAP32[$1285>>2]|0; - $1287 = (_bitshift64Ashr(0,($1283|0),32)|0); - $1288 = tempRet0; - $1289 = (___muldi3(($1287|0),($1288|0),($1279|0),($1280|0))|0); - $1290 = tempRet0; - $1291 = (_i64Add(($1271|0),($1272|0),($1289|0),($1290|0))|0); - $1292 = tempRet0; - $1293 = $106; - $1294 = $1293; - $1295 = HEAP32[$1294>>2]|0; - $1296 = (($1293) + 4)|0; + $1287 = (($1284) + 4)|0; + $1288 = $1287; + $1289 = HEAP32[$1288>>2]|0; + $1290 = (_bitshift64Ashr(0,($1286|0),32)|0); + $1291 = tempRet0; + $1292 = (___muldi3(($1290|0),($1291|0),($1282|0),($1283|0))|0); + $1293 = tempRet0; + $1294 = (_i64Add(($1274|0),($1275|0),($1292|0),($1293|0))|0); + $1295 = tempRet0; + $1296 = $109; $1297 = $1296; $1298 = HEAP32[$1297>>2]|0; - $1299 = (_bitshift64Ashr(0,($1295|0),32)|0); - $1300 = tempRet0; - $1301 = $909; - $1302 = $1301; - $1303 = HEAP32[$1302>>2]|0; - $1304 = (($1301) + 4)|0; + $1299 = (($1296) + 4)|0; + $1300 = $1299; + $1301 = HEAP32[$1300>>2]|0; + $1302 = (_bitshift64Ashr(0,($1298|0),32)|0); + $1303 = tempRet0; + $1304 = $912; $1305 = $1304; $1306 = HEAP32[$1305>>2]|0; - $1307 = (_bitshift64Ashr(0,($1303|0),32)|0); - $1308 = tempRet0; - $1309 = (___muldi3(($1307|0),($1308|0),($1299|0),($1300|0))|0); - $1310 = tempRet0; - $1311 = (_i64Add(($1291|0),($1292|0),($1309|0),($1310|0))|0); - $1312 = tempRet0; - $1313 = $922; - $1314 = $1313; - $1315 = HEAP32[$1314>>2]|0; - $1316 = (($1313) + 4)|0; + $1307 = (($1304) + 4)|0; + $1308 = $1307; + $1309 = HEAP32[$1308>>2]|0; + $1310 = (_bitshift64Ashr(0,($1306|0),32)|0); + $1311 = tempRet0; + $1312 = (___muldi3(($1310|0),($1311|0),($1302|0),($1303|0))|0); + $1313 = tempRet0; + $1314 = (_i64Add(($1294|0),($1295|0),($1312|0),($1313|0))|0); + $1315 = tempRet0; + $1316 = $925; $1317 = $1316; $1318 = HEAP32[$1317>>2]|0; - $1319 = (_bitshift64Ashr(0,($1315|0),32)|0); - $1320 = tempRet0; - $1321 = $93; - $1322 = $1321; - $1323 = HEAP32[$1322>>2]|0; - $1324 = (($1321) + 4)|0; + $1319 = (($1316) + 4)|0; + $1320 = $1319; + $1321 = HEAP32[$1320>>2]|0; + $1322 = (_bitshift64Ashr(0,($1318|0),32)|0); + $1323 = tempRet0; + $1324 = $96; $1325 = $1324; $1326 = HEAP32[$1325>>2]|0; - $1327 = (_bitshift64Ashr(0,($1323|0),32)|0); - $1328 = tempRet0; - $1329 = (___muldi3(($1327|0),($1328|0),($1319|0),($1320|0))|0); - $1330 = tempRet0; - $1331 = (_i64Add(($1311|0),($1312|0),($1329|0),($1330|0))|0); - $1332 = tempRet0; - $1333 = ((($output)) + 80|0); - $1334 = $1333; - $1335 = $1334; - HEAP32[$1335>>2] = $1331; - $1336 = (($1334) + 4)|0; + $1327 = (($1324) + 4)|0; + $1328 = $1327; + $1329 = HEAP32[$1328>>2]|0; + $1330 = (_bitshift64Ashr(0,($1326|0),32)|0); + $1331 = tempRet0; + $1332 = (___muldi3(($1330|0),($1331|0),($1322|0),($1323|0))|0); + $1333 = tempRet0; + $1334 = (_i64Add(($1314|0),($1315|0),($1332|0),($1333|0))|0); + $1335 = tempRet0; + $1336 = ((($0)) + 80|0); $1337 = $1336; - HEAP32[$1337>>2] = $1332; - $1338 = $423; - $1339 = $1338; - $1340 = HEAP32[$1339>>2]|0; - $1341 = (($1338) + 4)|0; + $1338 = $1337; + HEAP32[$1338>>2] = $1334; + $1339 = (($1337) + 4)|0; + $1340 = $1339; + HEAP32[$1340>>2] = $1335; + $1341 = $426; $1342 = $1341; $1343 = HEAP32[$1342>>2]|0; - $1344 = (_bitshift64Ashr(0,($1340|0),32)|0); - $1345 = tempRet0; - $1346 = $557; - $1347 = $1346; - $1348 = HEAP32[$1347>>2]|0; - $1349 = (($1346) + 4)|0; + $1344 = (($1341) + 4)|0; + $1345 = $1344; + $1346 = HEAP32[$1345>>2]|0; + $1347 = (_bitshift64Ashr(0,($1343|0),32)|0); + $1348 = tempRet0; + $1349 = $560; $1350 = $1349; $1351 = HEAP32[$1350>>2]|0; - $1352 = (_bitshift64Ashr(0,($1348|0),32)|0); - $1353 = tempRet0; - $1354 = (___muldi3(($1352|0),($1353|0),($1344|0),($1345|0))|0); - $1355 = tempRet0; - $1356 = $570; - $1357 = $1356; - $1358 = HEAP32[$1357>>2]|0; - $1359 = (($1356) + 4)|0; + $1352 = (($1349) + 4)|0; + $1353 = $1352; + $1354 = HEAP32[$1353>>2]|0; + $1355 = (_bitshift64Ashr(0,($1351|0),32)|0); + $1356 = tempRet0; + $1357 = (___muldi3(($1355|0),($1356|0),($1347|0),($1348|0))|0); + $1358 = tempRet0; + $1359 = $573; $1360 = $1359; $1361 = HEAP32[$1360>>2]|0; - $1362 = (_bitshift64Ashr(0,($1358|0),32)|0); - $1363 = tempRet0; - $1364 = $410; - $1365 = $1364; - $1366 = HEAP32[$1365>>2]|0; - $1367 = (($1364) + 4)|0; + $1362 = (($1359) + 4)|0; + $1363 = $1362; + $1364 = HEAP32[$1363>>2]|0; + $1365 = (_bitshift64Ashr(0,($1361|0),32)|0); + $1366 = tempRet0; + $1367 = $413; $1368 = $1367; $1369 = HEAP32[$1368>>2]|0; - $1370 = (_bitshift64Ashr(0,($1366|0),32)|0); - $1371 = tempRet0; - $1372 = (___muldi3(($1370|0),($1371|0),($1362|0),($1363|0))|0); - $1373 = tempRet0; - $1374 = (_i64Add(($1372|0),($1373|0),($1354|0),($1355|0))|0); - $1375 = tempRet0; - $1376 = $298; - $1377 = $1376; - $1378 = HEAP32[$1377>>2]|0; - $1379 = (($1376) + 4)|0; + $1370 = (($1367) + 4)|0; + $1371 = $1370; + $1372 = HEAP32[$1371>>2]|0; + $1373 = (_bitshift64Ashr(0,($1369|0),32)|0); + $1374 = tempRet0; + $1375 = (___muldi3(($1373|0),($1374|0),($1365|0),($1366|0))|0); + $1376 = tempRet0; + $1377 = (_i64Add(($1375|0),($1376|0),($1357|0),($1358|0))|0); + $1378 = tempRet0; + $1379 = $301; $1380 = $1379; $1381 = HEAP32[$1380>>2]|0; - $1382 = (_bitshift64Ashr(0,($1378|0),32)|0); - $1383 = tempRet0; - $1384 = $722; - $1385 = $1384; - $1386 = HEAP32[$1385>>2]|0; - $1387 = (($1384) + 4)|0; + $1382 = (($1379) + 4)|0; + $1383 = $1382; + $1384 = HEAP32[$1383>>2]|0; + $1385 = (_bitshift64Ashr(0,($1381|0),32)|0); + $1386 = tempRet0; + $1387 = $725; $1388 = $1387; $1389 = HEAP32[$1388>>2]|0; - $1390 = (_bitshift64Ashr(0,($1386|0),32)|0); - $1391 = tempRet0; - $1392 = (___muldi3(($1390|0),($1391|0),($1382|0),($1383|0))|0); - $1393 = tempRet0; - $1394 = (_i64Add(($1374|0),($1375|0),($1392|0),($1393|0))|0); - $1395 = tempRet0; - $1396 = $735; - $1397 = $1396; - $1398 = HEAP32[$1397>>2]|0; - $1399 = (($1396) + 4)|0; + $1390 = (($1387) + 4)|0; + $1391 = $1390; + $1392 = HEAP32[$1391>>2]|0; + $1393 = (_bitshift64Ashr(0,($1389|0),32)|0); + $1394 = tempRet0; + $1395 = (___muldi3(($1393|0),($1394|0),($1385|0),($1386|0))|0); + $1396 = tempRet0; + $1397 = (_i64Add(($1377|0),($1378|0),($1395|0),($1396|0))|0); + $1398 = tempRet0; + $1399 = $738; $1400 = $1399; $1401 = HEAP32[$1400>>2]|0; - $1402 = (_bitshift64Ashr(0,($1398|0),32)|0); - $1403 = tempRet0; - $1404 = $285; - $1405 = $1404; - $1406 = HEAP32[$1405>>2]|0; - $1407 = (($1404) + 4)|0; + $1402 = (($1399) + 4)|0; + $1403 = $1402; + $1404 = HEAP32[$1403>>2]|0; + $1405 = (_bitshift64Ashr(0,($1401|0),32)|0); + $1406 = tempRet0; + $1407 = $288; $1408 = $1407; $1409 = HEAP32[$1408>>2]|0; - $1410 = (_bitshift64Ashr(0,($1406|0),32)|0); - $1411 = tempRet0; - $1412 = (___muldi3(($1410|0),($1411|0),($1402|0),($1403|0))|0); - $1413 = tempRet0; - $1414 = (_i64Add(($1394|0),($1395|0),($1412|0),($1413|0))|0); - $1415 = tempRet0; - $1416 = $191; - $1417 = $1416; - $1418 = HEAP32[$1417>>2]|0; - $1419 = (($1416) + 4)|0; + $1410 = (($1407) + 4)|0; + $1411 = $1410; + $1412 = HEAP32[$1411>>2]|0; + $1413 = (_bitshift64Ashr(0,($1409|0),32)|0); + $1414 = tempRet0; + $1415 = (___muldi3(($1413|0),($1414|0),($1405|0),($1406|0))|0); + $1416 = tempRet0; + $1417 = (_i64Add(($1397|0),($1398|0),($1415|0),($1416|0))|0); + $1418 = tempRet0; + $1419 = $194; $1420 = $1419; $1421 = HEAP32[$1420>>2]|0; - $1422 = (_bitshift64Ashr(0,($1418|0),32)|0); - $1423 = tempRet0; - $1424 = $909; - $1425 = $1424; - $1426 = HEAP32[$1425>>2]|0; - $1427 = (($1424) + 4)|0; + $1422 = (($1419) + 4)|0; + $1423 = $1422; + $1424 = HEAP32[$1423>>2]|0; + $1425 = (_bitshift64Ashr(0,($1421|0),32)|0); + $1426 = tempRet0; + $1427 = $912; $1428 = $1427; $1429 = HEAP32[$1428>>2]|0; - $1430 = (_bitshift64Ashr(0,($1426|0),32)|0); - $1431 = tempRet0; - $1432 = (___muldi3(($1430|0),($1431|0),($1422|0),($1423|0))|0); - $1433 = tempRet0; - $1434 = (_i64Add(($1414|0),($1415|0),($1432|0),($1433|0))|0); - $1435 = tempRet0; - $1436 = $922; - $1437 = $1436; - $1438 = HEAP32[$1437>>2]|0; - $1439 = (($1436) + 4)|0; + $1430 = (($1427) + 4)|0; + $1431 = $1430; + $1432 = HEAP32[$1431>>2]|0; + $1433 = (_bitshift64Ashr(0,($1429|0),32)|0); + $1434 = tempRet0; + $1435 = (___muldi3(($1433|0),($1434|0),($1425|0),($1426|0))|0); + $1436 = tempRet0; + $1437 = (_i64Add(($1417|0),($1418|0),($1435|0),($1436|0))|0); + $1438 = tempRet0; + $1439 = $925; $1440 = $1439; $1441 = HEAP32[$1440>>2]|0; - $1442 = (_bitshift64Ashr(0,($1438|0),32)|0); - $1443 = tempRet0; - $1444 = $178; - $1445 = $1444; - $1446 = HEAP32[$1445>>2]|0; - $1447 = (($1444) + 4)|0; + $1442 = (($1439) + 4)|0; + $1443 = $1442; + $1444 = HEAP32[$1443>>2]|0; + $1445 = (_bitshift64Ashr(0,($1441|0),32)|0); + $1446 = tempRet0; + $1447 = $181; $1448 = $1447; $1449 = HEAP32[$1448>>2]|0; - $1450 = (_bitshift64Ashr(0,($1446|0),32)|0); - $1451 = tempRet0; - $1452 = (___muldi3(($1450|0),($1451|0),($1442|0),($1443|0))|0); - $1453 = tempRet0; - $1454 = (_i64Add(($1434|0),($1435|0),($1452|0),($1453|0))|0); - $1455 = tempRet0; - $1456 = $106; - $1457 = $1456; - $1458 = HEAP32[$1457>>2]|0; - $1459 = (($1456) + 4)|0; + $1450 = (($1447) + 4)|0; + $1451 = $1450; + $1452 = HEAP32[$1451>>2]|0; + $1453 = (_bitshift64Ashr(0,($1449|0),32)|0); + $1454 = tempRet0; + $1455 = (___muldi3(($1453|0),($1454|0),($1445|0),($1446|0))|0); + $1456 = tempRet0; + $1457 = (_i64Add(($1437|0),($1438|0),($1455|0),($1456|0))|0); + $1458 = tempRet0; + $1459 = $109; $1460 = $1459; $1461 = HEAP32[$1460>>2]|0; - $1462 = (_bitshift64Ashr(0,($1458|0),32)|0); - $1463 = tempRet0; - $1464 = $1114; - $1465 = $1464; - $1466 = HEAP32[$1465>>2]|0; - $1467 = (($1464) + 4)|0; + $1462 = (($1459) + 4)|0; + $1463 = $1462; + $1464 = HEAP32[$1463>>2]|0; + $1465 = (_bitshift64Ashr(0,($1461|0),32)|0); + $1466 = tempRet0; + $1467 = $1117; $1468 = $1467; $1469 = HEAP32[$1468>>2]|0; - $1470 = (_bitshift64Ashr(0,($1466|0),32)|0); - $1471 = tempRet0; - $1472 = (___muldi3(($1470|0),($1471|0),($1462|0),($1463|0))|0); - $1473 = tempRet0; - $1474 = (_i64Add(($1454|0),($1455|0),($1472|0),($1473|0))|0); - $1475 = tempRet0; - $1476 = $1127; - $1477 = $1476; - $1478 = HEAP32[$1477>>2]|0; - $1479 = (($1476) + 4)|0; + $1470 = (($1467) + 4)|0; + $1471 = $1470; + $1472 = HEAP32[$1471>>2]|0; + $1473 = (_bitshift64Ashr(0,($1469|0),32)|0); + $1474 = tempRet0; + $1475 = (___muldi3(($1473|0),($1474|0),($1465|0),($1466|0))|0); + $1476 = tempRet0; + $1477 = (_i64Add(($1457|0),($1458|0),($1475|0),($1476|0))|0); + $1478 = tempRet0; + $1479 = $1130; $1480 = $1479; $1481 = HEAP32[$1480>>2]|0; - $1482 = (_bitshift64Ashr(0,($1478|0),32)|0); - $1483 = tempRet0; - $1484 = $93; - $1485 = $1484; - $1486 = HEAP32[$1485>>2]|0; - $1487 = (($1484) + 4)|0; + $1482 = (($1479) + 4)|0; + $1483 = $1482; + $1484 = HEAP32[$1483>>2]|0; + $1485 = (_bitshift64Ashr(0,($1481|0),32)|0); + $1486 = tempRet0; + $1487 = $96; $1488 = $1487; $1489 = HEAP32[$1488>>2]|0; - $1490 = (_bitshift64Ashr(0,($1486|0),32)|0); - $1491 = tempRet0; - $1492 = (___muldi3(($1490|0),($1491|0),($1482|0),($1483|0))|0); - $1493 = tempRet0; - $1494 = (_i64Add(($1474|0),($1475|0),($1492|0),($1493|0))|0); - $1495 = tempRet0; - $1496 = ((($output)) + 88|0); - $1497 = $1496; - $1498 = $1497; - HEAP32[$1498>>2] = $1494; - $1499 = (($1497) + 4)|0; + $1490 = (($1487) + 4)|0; + $1491 = $1490; + $1492 = HEAP32[$1491>>2]|0; + $1493 = (_bitshift64Ashr(0,($1489|0),32)|0); + $1494 = tempRet0; + $1495 = (___muldi3(($1493|0),($1494|0),($1485|0),($1486|0))|0); + $1496 = tempRet0; + $1497 = (_i64Add(($1477|0),($1478|0),($1495|0),($1496|0))|0); + $1498 = tempRet0; + $1499 = ((($0)) + 88|0); $1500 = $1499; - HEAP32[$1500>>2] = $1495; - $1501 = $570; - $1502 = $1501; - $1503 = HEAP32[$1502>>2]|0; - $1504 = (($1501) + 4)|0; + $1501 = $1500; + HEAP32[$1501>>2] = $1497; + $1502 = (($1500) + 4)|0; + $1503 = $1502; + HEAP32[$1503>>2] = $1498; + $1504 = $573; $1505 = $1504; $1506 = HEAP32[$1505>>2]|0; - $1507 = (_bitshift64Ashr(0,($1503|0),32)|0); - $1508 = tempRet0; - $1509 = $557; - $1510 = $1509; - $1511 = HEAP32[$1510>>2]|0; - $1512 = (($1509) + 4)|0; + $1507 = (($1504) + 4)|0; + $1508 = $1507; + $1509 = HEAP32[$1508>>2]|0; + $1510 = (_bitshift64Ashr(0,($1506|0),32)|0); + $1511 = tempRet0; + $1512 = $560; $1513 = $1512; $1514 = HEAP32[$1513>>2]|0; - $1515 = (_bitshift64Ashr(0,($1511|0),32)|0); - $1516 = tempRet0; - $1517 = (___muldi3(($1515|0),($1516|0),($1507|0),($1508|0))|0); - $1518 = tempRet0; - $1519 = $423; - $1520 = $1519; - $1521 = HEAP32[$1520>>2]|0; - $1522 = (($1519) + 4)|0; + $1515 = (($1512) + 4)|0; + $1516 = $1515; + $1517 = HEAP32[$1516>>2]|0; + $1518 = (_bitshift64Ashr(0,($1514|0),32)|0); + $1519 = tempRet0; + $1520 = (___muldi3(($1518|0),($1519|0),($1510|0),($1511|0))|0); + $1521 = tempRet0; + $1522 = $426; $1523 = $1522; $1524 = HEAP32[$1523>>2]|0; - $1525 = (_bitshift64Ashr(0,($1521|0),32)|0); - $1526 = tempRet0; - $1527 = $722; - $1528 = $1527; - $1529 = HEAP32[$1528>>2]|0; - $1530 = (($1527) + 4)|0; + $1525 = (($1522) + 4)|0; + $1526 = $1525; + $1527 = HEAP32[$1526>>2]|0; + $1528 = (_bitshift64Ashr(0,($1524|0),32)|0); + $1529 = tempRet0; + $1530 = $725; $1531 = $1530; $1532 = HEAP32[$1531>>2]|0; - $1533 = (_bitshift64Ashr(0,($1529|0),32)|0); - $1534 = tempRet0; - $1535 = (___muldi3(($1533|0),($1534|0),($1525|0),($1526|0))|0); - $1536 = tempRet0; - $1537 = $735; - $1538 = $1537; - $1539 = HEAP32[$1538>>2]|0; - $1540 = (($1537) + 4)|0; + $1533 = (($1530) + 4)|0; + $1534 = $1533; + $1535 = HEAP32[$1534>>2]|0; + $1536 = (_bitshift64Ashr(0,($1532|0),32)|0); + $1537 = tempRet0; + $1538 = (___muldi3(($1536|0),($1537|0),($1528|0),($1529|0))|0); + $1539 = tempRet0; + $1540 = $738; $1541 = $1540; $1542 = HEAP32[$1541>>2]|0; - $1543 = (_bitshift64Ashr(0,($1539|0),32)|0); - $1544 = tempRet0; - $1545 = $410; - $1546 = $1545; - $1547 = HEAP32[$1546>>2]|0; - $1548 = (($1545) + 4)|0; + $1543 = (($1540) + 4)|0; + $1544 = $1543; + $1545 = HEAP32[$1544>>2]|0; + $1546 = (_bitshift64Ashr(0,($1542|0),32)|0); + $1547 = tempRet0; + $1548 = $413; $1549 = $1548; $1550 = HEAP32[$1549>>2]|0; - $1551 = (_bitshift64Ashr(0,($1547|0),32)|0); - $1552 = tempRet0; - $1553 = (___muldi3(($1551|0),($1552|0),($1543|0),($1544|0))|0); - $1554 = tempRet0; - $1555 = (_i64Add(($1553|0),($1554|0),($1535|0),($1536|0))|0); - $1556 = tempRet0; - $1557 = $191; - $1558 = $1557; - $1559 = HEAP32[$1558>>2]|0; - $1560 = (($1557) + 4)|0; + $1551 = (($1548) + 4)|0; + $1552 = $1551; + $1553 = HEAP32[$1552>>2]|0; + $1554 = (_bitshift64Ashr(0,($1550|0),32)|0); + $1555 = tempRet0; + $1556 = (___muldi3(($1554|0),($1555|0),($1546|0),($1547|0))|0); + $1557 = tempRet0; + $1558 = (_i64Add(($1556|0),($1557|0),($1538|0),($1539|0))|0); + $1559 = tempRet0; + $1560 = $194; $1561 = $1560; $1562 = HEAP32[$1561>>2]|0; - $1563 = (_bitshift64Ashr(0,($1559|0),32)|0); - $1564 = tempRet0; - $1565 = $1114; - $1566 = $1565; - $1567 = HEAP32[$1566>>2]|0; - $1568 = (($1565) + 4)|0; + $1563 = (($1560) + 4)|0; + $1564 = $1563; + $1565 = HEAP32[$1564>>2]|0; + $1566 = (_bitshift64Ashr(0,($1562|0),32)|0); + $1567 = tempRet0; + $1568 = $1117; $1569 = $1568; $1570 = HEAP32[$1569>>2]|0; - $1571 = (_bitshift64Ashr(0,($1567|0),32)|0); - $1572 = tempRet0; - $1573 = (___muldi3(($1571|0),($1572|0),($1563|0),($1564|0))|0); - $1574 = tempRet0; - $1575 = (_i64Add(($1555|0),($1556|0),($1573|0),($1574|0))|0); - $1576 = tempRet0; - $1577 = $1127; - $1578 = $1577; - $1579 = HEAP32[$1578>>2]|0; - $1580 = (($1577) + 4)|0; + $1571 = (($1568) + 4)|0; + $1572 = $1571; + $1573 = HEAP32[$1572>>2]|0; + $1574 = (_bitshift64Ashr(0,($1570|0),32)|0); + $1575 = tempRet0; + $1576 = (___muldi3(($1574|0),($1575|0),($1566|0),($1567|0))|0); + $1577 = tempRet0; + $1578 = (_i64Add(($1558|0),($1559|0),($1576|0),($1577|0))|0); + $1579 = tempRet0; + $1580 = $1130; $1581 = $1580; $1582 = HEAP32[$1581>>2]|0; - $1583 = (_bitshift64Ashr(0,($1579|0),32)|0); - $1584 = tempRet0; - $1585 = $178; - $1586 = $1585; - $1587 = HEAP32[$1586>>2]|0; - $1588 = (($1585) + 4)|0; + $1583 = (($1580) + 4)|0; + $1584 = $1583; + $1585 = HEAP32[$1584>>2]|0; + $1586 = (_bitshift64Ashr(0,($1582|0),32)|0); + $1587 = tempRet0; + $1588 = $181; $1589 = $1588; $1590 = HEAP32[$1589>>2]|0; - $1591 = (_bitshift64Ashr(0,($1587|0),32)|0); - $1592 = tempRet0; - $1593 = (___muldi3(($1591|0),($1592|0),($1583|0),($1584|0))|0); - $1594 = tempRet0; - $1595 = (_i64Add(($1575|0),($1576|0),($1593|0),($1594|0))|0); - $1596 = tempRet0; - $1597 = (_bitshift64Shl(($1595|0),($1596|0),1)|0); - $1598 = tempRet0; - $1599 = (_i64Add(($1597|0),($1598|0),($1517|0),($1518|0))|0); - $1600 = tempRet0; - $1601 = $298; - $1602 = $1601; - $1603 = HEAP32[$1602>>2]|0; - $1604 = (($1601) + 4)|0; + $1591 = (($1588) + 4)|0; + $1592 = $1591; + $1593 = HEAP32[$1592>>2]|0; + $1594 = (_bitshift64Ashr(0,($1590|0),32)|0); + $1595 = tempRet0; + $1596 = (___muldi3(($1594|0),($1595|0),($1586|0),($1587|0))|0); + $1597 = tempRet0; + $1598 = (_i64Add(($1578|0),($1579|0),($1596|0),($1597|0))|0); + $1599 = tempRet0; + $1600 = (_bitshift64Shl(($1598|0),($1599|0),1)|0); + $1601 = tempRet0; + $1602 = (_i64Add(($1600|0),($1601|0),($1520|0),($1521|0))|0); + $1603 = tempRet0; + $1604 = $301; $1605 = $1604; $1606 = HEAP32[$1605>>2]|0; - $1607 = (_bitshift64Ashr(0,($1603|0),32)|0); - $1608 = tempRet0; - $1609 = $909; - $1610 = $1609; - $1611 = HEAP32[$1610>>2]|0; - $1612 = (($1609) + 4)|0; + $1607 = (($1604) + 4)|0; + $1608 = $1607; + $1609 = HEAP32[$1608>>2]|0; + $1610 = (_bitshift64Ashr(0,($1606|0),32)|0); + $1611 = tempRet0; + $1612 = $912; $1613 = $1612; $1614 = HEAP32[$1613>>2]|0; - $1615 = (_bitshift64Ashr(0,($1611|0),32)|0); - $1616 = tempRet0; - $1617 = (___muldi3(($1615|0),($1616|0),($1607|0),($1608|0))|0); - $1618 = tempRet0; - $1619 = (_i64Add(($1599|0),($1600|0),($1617|0),($1618|0))|0); - $1620 = tempRet0; - $1621 = $922; - $1622 = $1621; - $1623 = HEAP32[$1622>>2]|0; - $1624 = (($1621) + 4)|0; + $1615 = (($1612) + 4)|0; + $1616 = $1615; + $1617 = HEAP32[$1616>>2]|0; + $1618 = (_bitshift64Ashr(0,($1614|0),32)|0); + $1619 = tempRet0; + $1620 = (___muldi3(($1618|0),($1619|0),($1610|0),($1611|0))|0); + $1621 = tempRet0; + $1622 = (_i64Add(($1602|0),($1603|0),($1620|0),($1621|0))|0); + $1623 = tempRet0; + $1624 = $925; $1625 = $1624; $1626 = HEAP32[$1625>>2]|0; - $1627 = (_bitshift64Ashr(0,($1623|0),32)|0); - $1628 = tempRet0; - $1629 = $285; - $1630 = $1629; - $1631 = HEAP32[$1630>>2]|0; - $1632 = (($1629) + 4)|0; + $1627 = (($1624) + 4)|0; + $1628 = $1627; + $1629 = HEAP32[$1628>>2]|0; + $1630 = (_bitshift64Ashr(0,($1626|0),32)|0); + $1631 = tempRet0; + $1632 = $288; $1633 = $1632; $1634 = HEAP32[$1633>>2]|0; - $1635 = (_bitshift64Ashr(0,($1631|0),32)|0); - $1636 = tempRet0; - $1637 = (___muldi3(($1635|0),($1636|0),($1627|0),($1628|0))|0); - $1638 = tempRet0; - $1639 = (_i64Add(($1619|0),($1620|0),($1637|0),($1638|0))|0); - $1640 = tempRet0; - $1641 = ((($output)) + 96|0); - $1642 = $1641; - $1643 = $1642; - HEAP32[$1643>>2] = $1639; - $1644 = (($1642) + 4)|0; + $1635 = (($1632) + 4)|0; + $1636 = $1635; + $1637 = HEAP32[$1636>>2]|0; + $1638 = (_bitshift64Ashr(0,($1634|0),32)|0); + $1639 = tempRet0; + $1640 = (___muldi3(($1638|0),($1639|0),($1630|0),($1631|0))|0); + $1641 = tempRet0; + $1642 = (_i64Add(($1622|0),($1623|0),($1640|0),($1641|0))|0); + $1643 = tempRet0; + $1644 = ((($0)) + 96|0); $1645 = $1644; - HEAP32[$1645>>2] = $1640; - $1646 = $570; - $1647 = $1646; - $1648 = HEAP32[$1647>>2]|0; - $1649 = (($1646) + 4)|0; + $1646 = $1645; + HEAP32[$1646>>2] = $1642; + $1647 = (($1645) + 4)|0; + $1648 = $1647; + HEAP32[$1648>>2] = $1643; + $1649 = $573; $1650 = $1649; $1651 = HEAP32[$1650>>2]|0; - $1652 = (_bitshift64Ashr(0,($1648|0),32)|0); - $1653 = tempRet0; - $1654 = $722; - $1655 = $1654; - $1656 = HEAP32[$1655>>2]|0; - $1657 = (($1654) + 4)|0; + $1652 = (($1649) + 4)|0; + $1653 = $1652; + $1654 = HEAP32[$1653>>2]|0; + $1655 = (_bitshift64Ashr(0,($1651|0),32)|0); + $1656 = tempRet0; + $1657 = $725; $1658 = $1657; $1659 = HEAP32[$1658>>2]|0; - $1660 = (_bitshift64Ashr(0,($1656|0),32)|0); - $1661 = tempRet0; - $1662 = (___muldi3(($1660|0),($1661|0),($1652|0),($1653|0))|0); - $1663 = tempRet0; - $1664 = $735; - $1665 = $1664; - $1666 = HEAP32[$1665>>2]|0; - $1667 = (($1664) + 4)|0; + $1660 = (($1657) + 4)|0; + $1661 = $1660; + $1662 = HEAP32[$1661>>2]|0; + $1663 = (_bitshift64Ashr(0,($1659|0),32)|0); + $1664 = tempRet0; + $1665 = (___muldi3(($1663|0),($1664|0),($1655|0),($1656|0))|0); + $1666 = tempRet0; + $1667 = $738; $1668 = $1667; $1669 = HEAP32[$1668>>2]|0; - $1670 = (_bitshift64Ashr(0,($1666|0),32)|0); - $1671 = tempRet0; - $1672 = $557; - $1673 = $1672; - $1674 = HEAP32[$1673>>2]|0; - $1675 = (($1672) + 4)|0; + $1670 = (($1667) + 4)|0; + $1671 = $1670; + $1672 = HEAP32[$1671>>2]|0; + $1673 = (_bitshift64Ashr(0,($1669|0),32)|0); + $1674 = tempRet0; + $1675 = $560; $1676 = $1675; $1677 = HEAP32[$1676>>2]|0; - $1678 = (_bitshift64Ashr(0,($1674|0),32)|0); - $1679 = tempRet0; - $1680 = (___muldi3(($1678|0),($1679|0),($1670|0),($1671|0))|0); - $1681 = tempRet0; - $1682 = (_i64Add(($1680|0),($1681|0),($1662|0),($1663|0))|0); - $1683 = tempRet0; - $1684 = $423; - $1685 = $1684; - $1686 = HEAP32[$1685>>2]|0; - $1687 = (($1684) + 4)|0; + $1678 = (($1675) + 4)|0; + $1679 = $1678; + $1680 = HEAP32[$1679>>2]|0; + $1681 = (_bitshift64Ashr(0,($1677|0),32)|0); + $1682 = tempRet0; + $1683 = (___muldi3(($1681|0),($1682|0),($1673|0),($1674|0))|0); + $1684 = tempRet0; + $1685 = (_i64Add(($1683|0),($1684|0),($1665|0),($1666|0))|0); + $1686 = tempRet0; + $1687 = $426; $1688 = $1687; $1689 = HEAP32[$1688>>2]|0; - $1690 = (_bitshift64Ashr(0,($1686|0),32)|0); - $1691 = tempRet0; - $1692 = $909; - $1693 = $1692; - $1694 = HEAP32[$1693>>2]|0; - $1695 = (($1692) + 4)|0; + $1690 = (($1687) + 4)|0; + $1691 = $1690; + $1692 = HEAP32[$1691>>2]|0; + $1693 = (_bitshift64Ashr(0,($1689|0),32)|0); + $1694 = tempRet0; + $1695 = $912; $1696 = $1695; $1697 = HEAP32[$1696>>2]|0; - $1698 = (_bitshift64Ashr(0,($1694|0),32)|0); - $1699 = tempRet0; - $1700 = (___muldi3(($1698|0),($1699|0),($1690|0),($1691|0))|0); - $1701 = tempRet0; - $1702 = (_i64Add(($1682|0),($1683|0),($1700|0),($1701|0))|0); - $1703 = tempRet0; - $1704 = $922; - $1705 = $1704; - $1706 = HEAP32[$1705>>2]|0; - $1707 = (($1704) + 4)|0; + $1698 = (($1695) + 4)|0; + $1699 = $1698; + $1700 = HEAP32[$1699>>2]|0; + $1701 = (_bitshift64Ashr(0,($1697|0),32)|0); + $1702 = tempRet0; + $1703 = (___muldi3(($1701|0),($1702|0),($1693|0),($1694|0))|0); + $1704 = tempRet0; + $1705 = (_i64Add(($1685|0),($1686|0),($1703|0),($1704|0))|0); + $1706 = tempRet0; + $1707 = $925; $1708 = $1707; $1709 = HEAP32[$1708>>2]|0; - $1710 = (_bitshift64Ashr(0,($1706|0),32)|0); - $1711 = tempRet0; - $1712 = $410; - $1713 = $1712; - $1714 = HEAP32[$1713>>2]|0; - $1715 = (($1712) + 4)|0; + $1710 = (($1707) + 4)|0; + $1711 = $1710; + $1712 = HEAP32[$1711>>2]|0; + $1713 = (_bitshift64Ashr(0,($1709|0),32)|0); + $1714 = tempRet0; + $1715 = $413; $1716 = $1715; $1717 = HEAP32[$1716>>2]|0; - $1718 = (_bitshift64Ashr(0,($1714|0),32)|0); - $1719 = tempRet0; - $1720 = (___muldi3(($1718|0),($1719|0),($1710|0),($1711|0))|0); - $1721 = tempRet0; - $1722 = (_i64Add(($1702|0),($1703|0),($1720|0),($1721|0))|0); - $1723 = tempRet0; - $1724 = $298; - $1725 = $1724; - $1726 = HEAP32[$1725>>2]|0; - $1727 = (($1724) + 4)|0; + $1718 = (($1715) + 4)|0; + $1719 = $1718; + $1720 = HEAP32[$1719>>2]|0; + $1721 = (_bitshift64Ashr(0,($1717|0),32)|0); + $1722 = tempRet0; + $1723 = (___muldi3(($1721|0),($1722|0),($1713|0),($1714|0))|0); + $1724 = tempRet0; + $1725 = (_i64Add(($1705|0),($1706|0),($1723|0),($1724|0))|0); + $1726 = tempRet0; + $1727 = $301; $1728 = $1727; $1729 = HEAP32[$1728>>2]|0; - $1730 = (_bitshift64Ashr(0,($1726|0),32)|0); - $1731 = tempRet0; - $1732 = $1114; - $1733 = $1732; - $1734 = HEAP32[$1733>>2]|0; - $1735 = (($1732) + 4)|0; + $1730 = (($1727) + 4)|0; + $1731 = $1730; + $1732 = HEAP32[$1731>>2]|0; + $1733 = (_bitshift64Ashr(0,($1729|0),32)|0); + $1734 = tempRet0; + $1735 = $1117; $1736 = $1735; $1737 = HEAP32[$1736>>2]|0; - $1738 = (_bitshift64Ashr(0,($1734|0),32)|0); - $1739 = tempRet0; - $1740 = (___muldi3(($1738|0),($1739|0),($1730|0),($1731|0))|0); - $1741 = tempRet0; - $1742 = (_i64Add(($1722|0),($1723|0),($1740|0),($1741|0))|0); - $1743 = tempRet0; - $1744 = $1127; - $1745 = $1744; - $1746 = HEAP32[$1745>>2]|0; - $1747 = (($1744) + 4)|0; + $1738 = (($1735) + 4)|0; + $1739 = $1738; + $1740 = HEAP32[$1739>>2]|0; + $1741 = (_bitshift64Ashr(0,($1737|0),32)|0); + $1742 = tempRet0; + $1743 = (___muldi3(($1741|0),($1742|0),($1733|0),($1734|0))|0); + $1744 = tempRet0; + $1745 = (_i64Add(($1725|0),($1726|0),($1743|0),($1744|0))|0); + $1746 = tempRet0; + $1747 = $1130; $1748 = $1747; $1749 = HEAP32[$1748>>2]|0; - $1750 = (_bitshift64Ashr(0,($1746|0),32)|0); - $1751 = tempRet0; - $1752 = $285; - $1753 = $1752; - $1754 = HEAP32[$1753>>2]|0; - $1755 = (($1752) + 4)|0; + $1750 = (($1747) + 4)|0; + $1751 = $1750; + $1752 = HEAP32[$1751>>2]|0; + $1753 = (_bitshift64Ashr(0,($1749|0),32)|0); + $1754 = tempRet0; + $1755 = $288; $1756 = $1755; $1757 = HEAP32[$1756>>2]|0; - $1758 = (_bitshift64Ashr(0,($1754|0),32)|0); - $1759 = tempRet0; - $1760 = (___muldi3(($1758|0),($1759|0),($1750|0),($1751|0))|0); - $1761 = tempRet0; - $1762 = (_i64Add(($1742|0),($1743|0),($1760|0),($1761|0))|0); - $1763 = tempRet0; - $1764 = ((($output)) + 104|0); - $1765 = $1764; - $1766 = $1765; - HEAP32[$1766>>2] = $1762; - $1767 = (($1765) + 4)|0; + $1758 = (($1755) + 4)|0; + $1759 = $1758; + $1760 = HEAP32[$1759>>2]|0; + $1761 = (_bitshift64Ashr(0,($1757|0),32)|0); + $1762 = tempRet0; + $1763 = (___muldi3(($1761|0),($1762|0),($1753|0),($1754|0))|0); + $1764 = tempRet0; + $1765 = (_i64Add(($1745|0),($1746|0),($1763|0),($1764|0))|0); + $1766 = tempRet0; + $1767 = ((($0)) + 104|0); $1768 = $1767; - HEAP32[$1768>>2] = $1763; - $1769 = $735; - $1770 = $1769; - $1771 = HEAP32[$1770>>2]|0; - $1772 = (($1769) + 4)|0; + $1769 = $1768; + HEAP32[$1769>>2] = $1765; + $1770 = (($1768) + 4)|0; + $1771 = $1770; + HEAP32[$1771>>2] = $1766; + $1772 = $738; $1773 = $1772; $1774 = HEAP32[$1773>>2]|0; - $1775 = (_bitshift64Ashr(0,($1771|0),32)|0); - $1776 = tempRet0; - $1777 = $722; - $1778 = $1777; - $1779 = HEAP32[$1778>>2]|0; - $1780 = (($1777) + 4)|0; + $1775 = (($1772) + 4)|0; + $1776 = $1775; + $1777 = HEAP32[$1776>>2]|0; + $1778 = (_bitshift64Ashr(0,($1774|0),32)|0); + $1779 = tempRet0; + $1780 = $725; $1781 = $1780; $1782 = HEAP32[$1781>>2]|0; - $1783 = (_bitshift64Ashr(0,($1779|0),32)|0); - $1784 = tempRet0; - $1785 = (___muldi3(($1783|0),($1784|0),($1775|0),($1776|0))|0); - $1786 = tempRet0; - $1787 = $423; - $1788 = $1787; - $1789 = HEAP32[$1788>>2]|0; - $1790 = (($1787) + 4)|0; + $1783 = (($1780) + 4)|0; + $1784 = $1783; + $1785 = HEAP32[$1784>>2]|0; + $1786 = (_bitshift64Ashr(0,($1782|0),32)|0); + $1787 = tempRet0; + $1788 = (___muldi3(($1786|0),($1787|0),($1778|0),($1779|0))|0); + $1789 = tempRet0; + $1790 = $426; $1791 = $1790; $1792 = HEAP32[$1791>>2]|0; - $1793 = (_bitshift64Ashr(0,($1789|0),32)|0); - $1794 = tempRet0; - $1795 = $1114; - $1796 = $1795; - $1797 = HEAP32[$1796>>2]|0; - $1798 = (($1795) + 4)|0; + $1793 = (($1790) + 4)|0; + $1794 = $1793; + $1795 = HEAP32[$1794>>2]|0; + $1796 = (_bitshift64Ashr(0,($1792|0),32)|0); + $1797 = tempRet0; + $1798 = $1117; $1799 = $1798; $1800 = HEAP32[$1799>>2]|0; - $1801 = (_bitshift64Ashr(0,($1797|0),32)|0); - $1802 = tempRet0; - $1803 = (___muldi3(($1801|0),($1802|0),($1793|0),($1794|0))|0); - $1804 = tempRet0; - $1805 = (_i64Add(($1803|0),($1804|0),($1785|0),($1786|0))|0); - $1806 = tempRet0; - $1807 = $1127; - $1808 = $1807; - $1809 = HEAP32[$1808>>2]|0; - $1810 = (($1807) + 4)|0; + $1801 = (($1798) + 4)|0; + $1802 = $1801; + $1803 = HEAP32[$1802>>2]|0; + $1804 = (_bitshift64Ashr(0,($1800|0),32)|0); + $1805 = tempRet0; + $1806 = (___muldi3(($1804|0),($1805|0),($1796|0),($1797|0))|0); + $1807 = tempRet0; + $1808 = (_i64Add(($1806|0),($1807|0),($1788|0),($1789|0))|0); + $1809 = tempRet0; + $1810 = $1130; $1811 = $1810; $1812 = HEAP32[$1811>>2]|0; - $1813 = (_bitshift64Ashr(0,($1809|0),32)|0); - $1814 = tempRet0; - $1815 = $410; - $1816 = $1815; - $1817 = HEAP32[$1816>>2]|0; - $1818 = (($1815) + 4)|0; + $1813 = (($1810) + 4)|0; + $1814 = $1813; + $1815 = HEAP32[$1814>>2]|0; + $1816 = (_bitshift64Ashr(0,($1812|0),32)|0); + $1817 = tempRet0; + $1818 = $413; $1819 = $1818; $1820 = HEAP32[$1819>>2]|0; - $1821 = (_bitshift64Ashr(0,($1817|0),32)|0); - $1822 = tempRet0; - $1823 = (___muldi3(($1821|0),($1822|0),($1813|0),($1814|0))|0); - $1824 = tempRet0; - $1825 = (_i64Add(($1805|0),($1806|0),($1823|0),($1824|0))|0); - $1826 = tempRet0; - $1827 = (_bitshift64Shl(($1825|0),($1826|0),1)|0); - $1828 = tempRet0; - $1829 = $570; - $1830 = $1829; - $1831 = HEAP32[$1830>>2]|0; - $1832 = (($1829) + 4)|0; + $1821 = (($1818) + 4)|0; + $1822 = $1821; + $1823 = HEAP32[$1822>>2]|0; + $1824 = (_bitshift64Ashr(0,($1820|0),32)|0); + $1825 = tempRet0; + $1826 = (___muldi3(($1824|0),($1825|0),($1816|0),($1817|0))|0); + $1827 = tempRet0; + $1828 = (_i64Add(($1808|0),($1809|0),($1826|0),($1827|0))|0); + $1829 = tempRet0; + $1830 = (_bitshift64Shl(($1828|0),($1829|0),1)|0); + $1831 = tempRet0; + $1832 = $573; $1833 = $1832; $1834 = HEAP32[$1833>>2]|0; - $1835 = (_bitshift64Ashr(0,($1831|0),32)|0); - $1836 = tempRet0; - $1837 = $909; - $1838 = $1837; - $1839 = HEAP32[$1838>>2]|0; - $1840 = (($1837) + 4)|0; + $1835 = (($1832) + 4)|0; + $1836 = $1835; + $1837 = HEAP32[$1836>>2]|0; + $1838 = (_bitshift64Ashr(0,($1834|0),32)|0); + $1839 = tempRet0; + $1840 = $912; $1841 = $1840; $1842 = HEAP32[$1841>>2]|0; - $1843 = (_bitshift64Ashr(0,($1839|0),32)|0); - $1844 = tempRet0; - $1845 = (___muldi3(($1843|0),($1844|0),($1835|0),($1836|0))|0); - $1846 = tempRet0; - $1847 = (_i64Add(($1827|0),($1828|0),($1845|0),($1846|0))|0); - $1848 = tempRet0; - $1849 = $922; - $1850 = $1849; - $1851 = HEAP32[$1850>>2]|0; - $1852 = (($1849) + 4)|0; + $1843 = (($1840) + 4)|0; + $1844 = $1843; + $1845 = HEAP32[$1844>>2]|0; + $1846 = (_bitshift64Ashr(0,($1842|0),32)|0); + $1847 = tempRet0; + $1848 = (___muldi3(($1846|0),($1847|0),($1838|0),($1839|0))|0); + $1849 = tempRet0; + $1850 = (_i64Add(($1830|0),($1831|0),($1848|0),($1849|0))|0); + $1851 = tempRet0; + $1852 = $925; $1853 = $1852; $1854 = HEAP32[$1853>>2]|0; - $1855 = (_bitshift64Ashr(0,($1851|0),32)|0); - $1856 = tempRet0; - $1857 = $557; - $1858 = $1857; - $1859 = HEAP32[$1858>>2]|0; - $1860 = (($1857) + 4)|0; + $1855 = (($1852) + 4)|0; + $1856 = $1855; + $1857 = HEAP32[$1856>>2]|0; + $1858 = (_bitshift64Ashr(0,($1854|0),32)|0); + $1859 = tempRet0; + $1860 = $560; $1861 = $1860; $1862 = HEAP32[$1861>>2]|0; - $1863 = (_bitshift64Ashr(0,($1859|0),32)|0); - $1864 = tempRet0; - $1865 = (___muldi3(($1863|0),($1864|0),($1855|0),($1856|0))|0); - $1866 = tempRet0; - $1867 = (_i64Add(($1847|0),($1848|0),($1865|0),($1866|0))|0); - $1868 = tempRet0; - $1869 = ((($output)) + 112|0); - $1870 = $1869; - $1871 = $1870; - HEAP32[$1871>>2] = $1867; - $1872 = (($1870) + 4)|0; + $1863 = (($1860) + 4)|0; + $1864 = $1863; + $1865 = HEAP32[$1864>>2]|0; + $1866 = (_bitshift64Ashr(0,($1862|0),32)|0); + $1867 = tempRet0; + $1868 = (___muldi3(($1866|0),($1867|0),($1858|0),($1859|0))|0); + $1869 = tempRet0; + $1870 = (_i64Add(($1850|0),($1851|0),($1868|0),($1869|0))|0); + $1871 = tempRet0; + $1872 = ((($0)) + 112|0); $1873 = $1872; - HEAP32[$1873>>2] = $1868; - $1874 = $735; - $1875 = $1874; - $1876 = HEAP32[$1875>>2]|0; - $1877 = (($1874) + 4)|0; + $1874 = $1873; + HEAP32[$1874>>2] = $1870; + $1875 = (($1873) + 4)|0; + $1876 = $1875; + HEAP32[$1876>>2] = $1871; + $1877 = $738; $1878 = $1877; $1879 = HEAP32[$1878>>2]|0; - $1880 = (_bitshift64Ashr(0,($1876|0),32)|0); - $1881 = tempRet0; - $1882 = $909; - $1883 = $1882; - $1884 = HEAP32[$1883>>2]|0; - $1885 = (($1882) + 4)|0; + $1880 = (($1877) + 4)|0; + $1881 = $1880; + $1882 = HEAP32[$1881>>2]|0; + $1883 = (_bitshift64Ashr(0,($1879|0),32)|0); + $1884 = tempRet0; + $1885 = $912; $1886 = $1885; $1887 = HEAP32[$1886>>2]|0; - $1888 = (_bitshift64Ashr(0,($1884|0),32)|0); - $1889 = tempRet0; - $1890 = (___muldi3(($1888|0),($1889|0),($1880|0),($1881|0))|0); - $1891 = tempRet0; - $1892 = $922; - $1893 = $1892; - $1894 = HEAP32[$1893>>2]|0; - $1895 = (($1892) + 4)|0; + $1888 = (($1885) + 4)|0; + $1889 = $1888; + $1890 = HEAP32[$1889>>2]|0; + $1891 = (_bitshift64Ashr(0,($1887|0),32)|0); + $1892 = tempRet0; + $1893 = (___muldi3(($1891|0),($1892|0),($1883|0),($1884|0))|0); + $1894 = tempRet0; + $1895 = $925; $1896 = $1895; $1897 = HEAP32[$1896>>2]|0; - $1898 = (_bitshift64Ashr(0,($1894|0),32)|0); - $1899 = tempRet0; - $1900 = $722; - $1901 = $1900; - $1902 = HEAP32[$1901>>2]|0; - $1903 = (($1900) + 4)|0; + $1898 = (($1895) + 4)|0; + $1899 = $1898; + $1900 = HEAP32[$1899>>2]|0; + $1901 = (_bitshift64Ashr(0,($1897|0),32)|0); + $1902 = tempRet0; + $1903 = $725; $1904 = $1903; $1905 = HEAP32[$1904>>2]|0; - $1906 = (_bitshift64Ashr(0,($1902|0),32)|0); - $1907 = tempRet0; - $1908 = (___muldi3(($1906|0),($1907|0),($1898|0),($1899|0))|0); - $1909 = tempRet0; - $1910 = (_i64Add(($1908|0),($1909|0),($1890|0),($1891|0))|0); - $1911 = tempRet0; - $1912 = $570; - $1913 = $1912; - $1914 = HEAP32[$1913>>2]|0; - $1915 = (($1912) + 4)|0; + $1906 = (($1903) + 4)|0; + $1907 = $1906; + $1908 = HEAP32[$1907>>2]|0; + $1909 = (_bitshift64Ashr(0,($1905|0),32)|0); + $1910 = tempRet0; + $1911 = (___muldi3(($1909|0),($1910|0),($1901|0),($1902|0))|0); + $1912 = tempRet0; + $1913 = (_i64Add(($1911|0),($1912|0),($1893|0),($1894|0))|0); + $1914 = tempRet0; + $1915 = $573; $1916 = $1915; $1917 = HEAP32[$1916>>2]|0; - $1918 = (_bitshift64Ashr(0,($1914|0),32)|0); - $1919 = tempRet0; - $1920 = $1114; - $1921 = $1920; - $1922 = HEAP32[$1921>>2]|0; - $1923 = (($1920) + 4)|0; + $1918 = (($1915) + 4)|0; + $1919 = $1918; + $1920 = HEAP32[$1919>>2]|0; + $1921 = (_bitshift64Ashr(0,($1917|0),32)|0); + $1922 = tempRet0; + $1923 = $1117; $1924 = $1923; $1925 = HEAP32[$1924>>2]|0; - $1926 = (_bitshift64Ashr(0,($1922|0),32)|0); - $1927 = tempRet0; - $1928 = (___muldi3(($1926|0),($1927|0),($1918|0),($1919|0))|0); - $1929 = tempRet0; - $1930 = (_i64Add(($1910|0),($1911|0),($1928|0),($1929|0))|0); - $1931 = tempRet0; - $1932 = $1127; - $1933 = $1932; - $1934 = HEAP32[$1933>>2]|0; - $1935 = (($1932) + 4)|0; + $1926 = (($1923) + 4)|0; + $1927 = $1926; + $1928 = HEAP32[$1927>>2]|0; + $1929 = (_bitshift64Ashr(0,($1925|0),32)|0); + $1930 = tempRet0; + $1931 = (___muldi3(($1929|0),($1930|0),($1921|0),($1922|0))|0); + $1932 = tempRet0; + $1933 = (_i64Add(($1913|0),($1914|0),($1931|0),($1932|0))|0); + $1934 = tempRet0; + $1935 = $1130; $1936 = $1935; $1937 = HEAP32[$1936>>2]|0; - $1938 = (_bitshift64Ashr(0,($1934|0),32)|0); - $1939 = tempRet0; - $1940 = $557; - $1941 = $1940; - $1942 = HEAP32[$1941>>2]|0; - $1943 = (($1940) + 4)|0; + $1938 = (($1935) + 4)|0; + $1939 = $1938; + $1940 = HEAP32[$1939>>2]|0; + $1941 = (_bitshift64Ashr(0,($1937|0),32)|0); + $1942 = tempRet0; + $1943 = $560; $1944 = $1943; $1945 = HEAP32[$1944>>2]|0; - $1946 = (_bitshift64Ashr(0,($1942|0),32)|0); - $1947 = tempRet0; - $1948 = (___muldi3(($1946|0),($1947|0),($1938|0),($1939|0))|0); - $1949 = tempRet0; - $1950 = (_i64Add(($1930|0),($1931|0),($1948|0),($1949|0))|0); - $1951 = tempRet0; - $1952 = ((($output)) + 120|0); - $1953 = $1952; - $1954 = $1953; - HEAP32[$1954>>2] = $1950; - $1955 = (($1953) + 4)|0; + $1946 = (($1943) + 4)|0; + $1947 = $1946; + $1948 = HEAP32[$1947>>2]|0; + $1949 = (_bitshift64Ashr(0,($1945|0),32)|0); + $1950 = tempRet0; + $1951 = (___muldi3(($1949|0),($1950|0),($1941|0),($1942|0))|0); + $1952 = tempRet0; + $1953 = (_i64Add(($1933|0),($1934|0),($1951|0),($1952|0))|0); + $1954 = tempRet0; + $1955 = ((($0)) + 120|0); $1956 = $1955; - HEAP32[$1956>>2] = $1951; - $1957 = $922; - $1958 = $1957; - $1959 = HEAP32[$1958>>2]|0; - $1960 = (($1957) + 4)|0; + $1957 = $1956; + HEAP32[$1957>>2] = $1953; + $1958 = (($1956) + 4)|0; + $1959 = $1958; + HEAP32[$1959>>2] = $1954; + $1960 = $925; $1961 = $1960; $1962 = HEAP32[$1961>>2]|0; - $1963 = (_bitshift64Ashr(0,($1959|0),32)|0); - $1964 = tempRet0; - $1965 = $909; - $1966 = $1965; - $1967 = HEAP32[$1966>>2]|0; - $1968 = (($1965) + 4)|0; + $1963 = (($1960) + 4)|0; + $1964 = $1963; + $1965 = HEAP32[$1964>>2]|0; + $1966 = (_bitshift64Ashr(0,($1962|0),32)|0); + $1967 = tempRet0; + $1968 = $912; $1969 = $1968; $1970 = HEAP32[$1969>>2]|0; - $1971 = (_bitshift64Ashr(0,($1967|0),32)|0); - $1972 = tempRet0; - $1973 = (___muldi3(($1971|0),($1972|0),($1963|0),($1964|0))|0); - $1974 = tempRet0; - $1975 = $735; - $1976 = $1975; - $1977 = HEAP32[$1976>>2]|0; - $1978 = (($1975) + 4)|0; + $1971 = (($1968) + 4)|0; + $1972 = $1971; + $1973 = HEAP32[$1972>>2]|0; + $1974 = (_bitshift64Ashr(0,($1970|0),32)|0); + $1975 = tempRet0; + $1976 = (___muldi3(($1974|0),($1975|0),($1966|0),($1967|0))|0); + $1977 = tempRet0; + $1978 = $738; $1979 = $1978; $1980 = HEAP32[$1979>>2]|0; - $1981 = (_bitshift64Ashr(0,($1977|0),32)|0); - $1982 = tempRet0; - $1983 = $1114; - $1984 = $1983; - $1985 = HEAP32[$1984>>2]|0; - $1986 = (($1983) + 4)|0; + $1981 = (($1978) + 4)|0; + $1982 = $1981; + $1983 = HEAP32[$1982>>2]|0; + $1984 = (_bitshift64Ashr(0,($1980|0),32)|0); + $1985 = tempRet0; + $1986 = $1117; $1987 = $1986; $1988 = HEAP32[$1987>>2]|0; - $1989 = (_bitshift64Ashr(0,($1985|0),32)|0); - $1990 = tempRet0; - $1991 = (___muldi3(($1989|0),($1990|0),($1981|0),($1982|0))|0); - $1992 = tempRet0; - $1993 = $1127; - $1994 = $1993; - $1995 = HEAP32[$1994>>2]|0; - $1996 = (($1993) + 4)|0; + $1989 = (($1986) + 4)|0; + $1990 = $1989; + $1991 = HEAP32[$1990>>2]|0; + $1992 = (_bitshift64Ashr(0,($1988|0),32)|0); + $1993 = tempRet0; + $1994 = (___muldi3(($1992|0),($1993|0),($1984|0),($1985|0))|0); + $1995 = tempRet0; + $1996 = $1130; $1997 = $1996; $1998 = HEAP32[$1997>>2]|0; - $1999 = (_bitshift64Ashr(0,($1995|0),32)|0); - $2000 = tempRet0; - $2001 = $722; - $2002 = $2001; - $2003 = HEAP32[$2002>>2]|0; - $2004 = (($2001) + 4)|0; + $1999 = (($1996) + 4)|0; + $2000 = $1999; + $2001 = HEAP32[$2000>>2]|0; + $2002 = (_bitshift64Ashr(0,($1998|0),32)|0); + $2003 = tempRet0; + $2004 = $725; $2005 = $2004; $2006 = HEAP32[$2005>>2]|0; - $2007 = (_bitshift64Ashr(0,($2003|0),32)|0); - $2008 = tempRet0; - $2009 = (___muldi3(($2007|0),($2008|0),($1999|0),($2000|0))|0); - $2010 = tempRet0; - $2011 = (_i64Add(($2009|0),($2010|0),($1991|0),($1992|0))|0); - $2012 = tempRet0; - $2013 = (_bitshift64Shl(($2011|0),($2012|0),1)|0); - $2014 = tempRet0; - $2015 = (_i64Add(($2013|0),($2014|0),($1973|0),($1974|0))|0); - $2016 = tempRet0; - $2017 = ((($output)) + 128|0); - $2018 = $2017; - $2019 = $2018; - HEAP32[$2019>>2] = $2015; - $2020 = (($2018) + 4)|0; + $2007 = (($2004) + 4)|0; + $2008 = $2007; + $2009 = HEAP32[$2008>>2]|0; + $2010 = (_bitshift64Ashr(0,($2006|0),32)|0); + $2011 = tempRet0; + $2012 = (___muldi3(($2010|0),($2011|0),($2002|0),($2003|0))|0); + $2013 = tempRet0; + $2014 = (_i64Add(($2012|0),($2013|0),($1994|0),($1995|0))|0); + $2015 = tempRet0; + $2016 = (_bitshift64Shl(($2014|0),($2015|0),1)|0); + $2017 = tempRet0; + $2018 = (_i64Add(($2016|0),($2017|0),($1976|0),($1977|0))|0); + $2019 = tempRet0; + $2020 = ((($0)) + 128|0); $2021 = $2020; - HEAP32[$2021>>2] = $2016; - $2022 = $922; - $2023 = $2022; - $2024 = HEAP32[$2023>>2]|0; - $2025 = (($2022) + 4)|0; + $2022 = $2021; + HEAP32[$2022>>2] = $2018; + $2023 = (($2021) + 4)|0; + $2024 = $2023; + HEAP32[$2024>>2] = $2019; + $2025 = $925; $2026 = $2025; $2027 = HEAP32[$2026>>2]|0; - $2028 = (_bitshift64Ashr(0,($2024|0),32)|0); - $2029 = tempRet0; - $2030 = $1114; - $2031 = $2030; - $2032 = HEAP32[$2031>>2]|0; - $2033 = (($2030) + 4)|0; + $2028 = (($2025) + 4)|0; + $2029 = $2028; + $2030 = HEAP32[$2029>>2]|0; + $2031 = (_bitshift64Ashr(0,($2027|0),32)|0); + $2032 = tempRet0; + $2033 = $1117; $2034 = $2033; $2035 = HEAP32[$2034>>2]|0; - $2036 = (_bitshift64Ashr(0,($2032|0),32)|0); - $2037 = tempRet0; - $2038 = (___muldi3(($2036|0),($2037|0),($2028|0),($2029|0))|0); - $2039 = tempRet0; - $2040 = $1127; - $2041 = $2040; - $2042 = HEAP32[$2041>>2]|0; - $2043 = (($2040) + 4)|0; + $2036 = (($2033) + 4)|0; + $2037 = $2036; + $2038 = HEAP32[$2037>>2]|0; + $2039 = (_bitshift64Ashr(0,($2035|0),32)|0); + $2040 = tempRet0; + $2041 = (___muldi3(($2039|0),($2040|0),($2031|0),($2032|0))|0); + $2042 = tempRet0; + $2043 = $1130; $2044 = $2043; $2045 = HEAP32[$2044>>2]|0; - $2046 = (_bitshift64Ashr(0,($2042|0),32)|0); - $2047 = tempRet0; - $2048 = $909; - $2049 = $2048; - $2050 = HEAP32[$2049>>2]|0; - $2051 = (($2048) + 4)|0; + $2046 = (($2043) + 4)|0; + $2047 = $2046; + $2048 = HEAP32[$2047>>2]|0; + $2049 = (_bitshift64Ashr(0,($2045|0),32)|0); + $2050 = tempRet0; + $2051 = $912; $2052 = $2051; $2053 = HEAP32[$2052>>2]|0; - $2054 = (_bitshift64Ashr(0,($2050|0),32)|0); - $2055 = tempRet0; - $2056 = (___muldi3(($2054|0),($2055|0),($2046|0),($2047|0))|0); - $2057 = tempRet0; - $2058 = (_i64Add(($2056|0),($2057|0),($2038|0),($2039|0))|0); - $2059 = tempRet0; - $2060 = ((($output)) + 136|0); - $2061 = $2060; - $2062 = $2061; - HEAP32[$2062>>2] = $2058; - $2063 = (($2061) + 4)|0; + $2054 = (($2051) + 4)|0; + $2055 = $2054; + $2056 = HEAP32[$2055>>2]|0; + $2057 = (_bitshift64Ashr(0,($2053|0),32)|0); + $2058 = tempRet0; + $2059 = (___muldi3(($2057|0),($2058|0),($2049|0),($2050|0))|0); + $2060 = tempRet0; + $2061 = (_i64Add(($2059|0),($2060|0),($2041|0),($2042|0))|0); + $2062 = tempRet0; + $2063 = ((($0)) + 136|0); $2064 = $2063; - HEAP32[$2064>>2] = $2059; - $2065 = $1127; - $2066 = $2065; - $2067 = HEAP32[$2066>>2]|0; - $2068 = (($2065) + 4)|0; + $2065 = $2064; + HEAP32[$2065>>2] = $2061; + $2066 = (($2064) + 4)|0; + $2067 = $2066; + HEAP32[$2067>>2] = $2062; + $2068 = $1130; $2069 = $2068; $2070 = HEAP32[$2069>>2]|0; - $2071 = (_bitshift64Ashr(0,($2067|0),31)|0); - $2072 = tempRet0; - $2073 = $1114; - $2074 = $2073; - $2075 = HEAP32[$2074>>2]|0; - $2076 = (($2073) + 4)|0; + $2071 = (($2068) + 4)|0; + $2072 = $2071; + $2073 = HEAP32[$2072>>2]|0; + $2074 = (_bitshift64Ashr(0,($2070|0),31)|0); + $2075 = tempRet0; + $2076 = $1117; $2077 = $2076; $2078 = HEAP32[$2077>>2]|0; - $2079 = (_bitshift64Ashr(0,($2075|0),32)|0); - $2080 = tempRet0; - $2081 = (___muldi3(($2079|0),($2080|0),($2071|0),($2072|0))|0); - $2082 = tempRet0; - $2083 = ((($output)) + 144|0); - $2084 = $2083; - $2085 = $2084; - HEAP32[$2085>>2] = $2081; - $2086 = (($2084) + 4)|0; + $2079 = (($2076) + 4)|0; + $2080 = $2079; + $2081 = HEAP32[$2080>>2]|0; + $2082 = (_bitshift64Ashr(0,($2078|0),32)|0); + $2083 = tempRet0; + $2084 = (___muldi3(($2082|0),($2083|0),($2074|0),($2075|0))|0); + $2085 = tempRet0; + $2086 = ((($0)) + 144|0); $2087 = $2086; - HEAP32[$2087>>2] = $2082; + $2088 = $2087; + HEAP32[$2088>>2] = $2084; + $2089 = (($2087) + 4)|0; + $2090 = $2089; + HEAP32[$2090>>2] = $2085; return; } -function _freduce_degree($output) { - $output = $output|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; - var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; - var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; - var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; - var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; - var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; - var $297 = 0, $298 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0; +function _freduce_degree($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0; + var $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0; + var $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0; + var $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0; + var $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0; + var $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0; + var $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0; + var $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0; var $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0; var $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0; var $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0; var sp = 0; sp = STACKTOP; - $0 = ((($output)) + 144|0); - $1 = $0; + $1 = ((($0)) + 144|0); $2 = $1; - $3 = HEAP32[$2>>2]|0; - $4 = (($1) + 4)|0; - $5 = $4; - $6 = HEAP32[$5>>2]|0; - $7 = (_bitshift64Shl(($3|0),($6|0),4)|0); - $8 = tempRet0; - $9 = ((($output)) + 64|0); + $3 = $2; + $4 = HEAP32[$3>>2]|0; + $5 = (($2) + 4)|0; + $6 = $5; + $7 = HEAP32[$6>>2]|0; + $8 = ((($0)) + 64|0); + $9 = $8; $10 = $9; - $11 = $10; - $12 = HEAP32[$11>>2]|0; - $13 = (($10) + 4)|0; - $14 = $13; - $15 = HEAP32[$14>>2]|0; - $16 = (_i64Add(($12|0),($15|0),($7|0),($8|0))|0); - $17 = tempRet0; - $18 = (_bitshift64Shl(($3|0),($6|0),1)|0); - $19 = tempRet0; - $20 = (_i64Add(($18|0),($19|0),($16|0),($17|0))|0); - $21 = tempRet0; - $22 = $0; - $23 = $22; - $24 = HEAP32[$23>>2]|0; - $25 = (($22) + 4)|0; + $11 = HEAP32[$10>>2]|0; + $12 = (($9) + 4)|0; + $13 = $12; + $14 = HEAP32[$13>>2]|0; + $15 = (___muldi3(($4|0),($7|0),18,0)|0); + $16 = tempRet0; + $17 = (_i64Add(($11|0),($14|0),($4|0),($7|0))|0); + $18 = tempRet0; + $19 = (_i64Add(($17|0),($18|0),($15|0),($16|0))|0); + $20 = tempRet0; + $21 = $8; + $22 = $21; + HEAP32[$22>>2] = $19; + $23 = (($21) + 4)|0; + $24 = $23; + HEAP32[$24>>2] = $20; + $25 = ((($0)) + 136|0); $26 = $25; - $27 = HEAP32[$26>>2]|0; - $28 = (_i64Add(($20|0),($21|0),($24|0),($27|0))|0); - $29 = tempRet0; - $30 = $9; - $31 = $30; - HEAP32[$31>>2] = $28; - $32 = (($30) + 4)|0; + $27 = $26; + $28 = HEAP32[$27>>2]|0; + $29 = (($26) + 4)|0; + $30 = $29; + $31 = HEAP32[$30>>2]|0; + $32 = ((($0)) + 56|0); $33 = $32; - HEAP32[$33>>2] = $29; - $34 = ((($output)) + 136|0); - $35 = $34; - $36 = $35; - $37 = HEAP32[$36>>2]|0; - $38 = (($35) + 4)|0; - $39 = $38; - $40 = HEAP32[$39>>2]|0; - $41 = (_bitshift64Shl(($37|0),($40|0),4)|0); + $34 = $33; + $35 = HEAP32[$34>>2]|0; + $36 = (($33) + 4)|0; + $37 = $36; + $38 = HEAP32[$37>>2]|0; + $39 = (___muldi3(($28|0),($31|0),18,0)|0); + $40 = tempRet0; + $41 = (_i64Add(($35|0),($38|0),($28|0),($31|0))|0); $42 = tempRet0; - $43 = ((($output)) + 56|0); - $44 = $43; - $45 = $44; - $46 = HEAP32[$45>>2]|0; - $47 = (($44) + 4)|0; + $43 = (_i64Add(($41|0),($42|0),($39|0),($40|0))|0); + $44 = tempRet0; + $45 = $32; + $46 = $45; + HEAP32[$46>>2] = $43; + $47 = (($45) + 4)|0; $48 = $47; - $49 = HEAP32[$48>>2]|0; - $50 = (_i64Add(($46|0),($49|0),($41|0),($42|0))|0); - $51 = tempRet0; - $52 = (_bitshift64Shl(($37|0),($40|0),1)|0); - $53 = tempRet0; - $54 = (_i64Add(($52|0),($53|0),($50|0),($51|0))|0); - $55 = tempRet0; - $56 = $34; + HEAP32[$48>>2] = $44; + $49 = ((($0)) + 128|0); + $50 = $49; + $51 = $50; + $52 = HEAP32[$51>>2]|0; + $53 = (($50) + 4)|0; + $54 = $53; + $55 = HEAP32[$54>>2]|0; + $56 = ((($0)) + 48|0); $57 = $56; - $58 = HEAP32[$57>>2]|0; - $59 = (($56) + 4)|0; - $60 = $59; - $61 = HEAP32[$60>>2]|0; - $62 = (_i64Add(($54|0),($55|0),($58|0),($61|0))|0); - $63 = tempRet0; - $64 = $43; - $65 = $64; - HEAP32[$65>>2] = $62; - $66 = (($64) + 4)|0; - $67 = $66; - HEAP32[$67>>2] = $63; - $68 = ((($output)) + 128|0); - $69 = $68; + $58 = $57; + $59 = HEAP32[$58>>2]|0; + $60 = (($57) + 4)|0; + $61 = $60; + $62 = HEAP32[$61>>2]|0; + $63 = (___muldi3(($52|0),($55|0),18,0)|0); + $64 = tempRet0; + $65 = (_i64Add(($59|0),($62|0),($52|0),($55|0))|0); + $66 = tempRet0; + $67 = (_i64Add(($65|0),($66|0),($63|0),($64|0))|0); + $68 = tempRet0; + $69 = $56; $70 = $69; - $71 = HEAP32[$70>>2]|0; - $72 = (($69) + 4)|0; - $73 = $72; - $74 = HEAP32[$73>>2]|0; - $75 = (_bitshift64Shl(($71|0),($74|0),4)|0); - $76 = tempRet0; - $77 = ((($output)) + 48|0); + HEAP32[$70>>2] = $67; + $71 = (($69) + 4)|0; + $72 = $71; + HEAP32[$72>>2] = $68; + $73 = ((($0)) + 120|0); + $74 = $73; + $75 = $74; + $76 = HEAP32[$75>>2]|0; + $77 = (($74) + 4)|0; $78 = $77; - $79 = $78; - $80 = HEAP32[$79>>2]|0; - $81 = (($78) + 4)|0; + $79 = HEAP32[$78>>2]|0; + $80 = ((($0)) + 40|0); + $81 = $80; $82 = $81; $83 = HEAP32[$82>>2]|0; - $84 = (_i64Add(($80|0),($83|0),($75|0),($76|0))|0); - $85 = tempRet0; - $86 = (_bitshift64Shl(($71|0),($74|0),1)|0); - $87 = tempRet0; - $88 = (_i64Add(($86|0),($87|0),($84|0),($85|0))|0); - $89 = tempRet0; - $90 = $68; - $91 = $90; - $92 = HEAP32[$91>>2]|0; - $93 = (($90) + 4)|0; + $84 = (($81) + 4)|0; + $85 = $84; + $86 = HEAP32[$85>>2]|0; + $87 = (___muldi3(($76|0),($79|0),18,0)|0); + $88 = tempRet0; + $89 = (_i64Add(($83|0),($86|0),($76|0),($79|0))|0); + $90 = tempRet0; + $91 = (_i64Add(($89|0),($90|0),($87|0),($88|0))|0); + $92 = tempRet0; + $93 = $80; $94 = $93; - $95 = HEAP32[$94>>2]|0; - $96 = (_i64Add(($88|0),($89|0),($92|0),($95|0))|0); - $97 = tempRet0; - $98 = $77; + HEAP32[$94>>2] = $91; + $95 = (($93) + 4)|0; + $96 = $95; + HEAP32[$96>>2] = $92; + $97 = ((($0)) + 112|0); + $98 = $97; $99 = $98; - HEAP32[$99>>2] = $96; - $100 = (($98) + 4)|0; - $101 = $100; - HEAP32[$101>>2] = $97; - $102 = ((($output)) + 120|0); - $103 = $102; - $104 = $103; - $105 = HEAP32[$104>>2]|0; - $106 = (($103) + 4)|0; - $107 = $106; - $108 = HEAP32[$107>>2]|0; - $109 = (_bitshift64Shl(($105|0),($108|0),4)|0); - $110 = tempRet0; - $111 = ((($output)) + 40|0); - $112 = $111; - $113 = $112; - $114 = HEAP32[$113>>2]|0; - $115 = (($112) + 4)|0; - $116 = $115; - $117 = HEAP32[$116>>2]|0; - $118 = (_i64Add(($114|0),($117|0),($109|0),($110|0))|0); - $119 = tempRet0; - $120 = (_bitshift64Shl(($105|0),($108|0),1)|0); - $121 = tempRet0; - $122 = (_i64Add(($120|0),($121|0),($118|0),($119|0))|0); - $123 = tempRet0; - $124 = $102; - $125 = $124; - $126 = HEAP32[$125>>2]|0; - $127 = (($124) + 4)|0; - $128 = $127; - $129 = HEAP32[$128>>2]|0; - $130 = (_i64Add(($122|0),($123|0),($126|0),($129|0))|0); - $131 = tempRet0; - $132 = $111; + $100 = HEAP32[$99>>2]|0; + $101 = (($98) + 4)|0; + $102 = $101; + $103 = HEAP32[$102>>2]|0; + $104 = ((($0)) + 32|0); + $105 = $104; + $106 = $105; + $107 = HEAP32[$106>>2]|0; + $108 = (($105) + 4)|0; + $109 = $108; + $110 = HEAP32[$109>>2]|0; + $111 = (___muldi3(($100|0),($103|0),18,0)|0); + $112 = tempRet0; + $113 = (_i64Add(($107|0),($110|0),($100|0),($103|0))|0); + $114 = tempRet0; + $115 = (_i64Add(($113|0),($114|0),($111|0),($112|0))|0); + $116 = tempRet0; + $117 = $104; + $118 = $117; + HEAP32[$118>>2] = $115; + $119 = (($117) + 4)|0; + $120 = $119; + HEAP32[$120>>2] = $116; + $121 = ((($0)) + 104|0); + $122 = $121; + $123 = $122; + $124 = HEAP32[$123>>2]|0; + $125 = (($122) + 4)|0; + $126 = $125; + $127 = HEAP32[$126>>2]|0; + $128 = ((($0)) + 24|0); + $129 = $128; + $130 = $129; + $131 = HEAP32[$130>>2]|0; + $132 = (($129) + 4)|0; $133 = $132; - HEAP32[$133>>2] = $130; - $134 = (($132) + 4)|0; - $135 = $134; - HEAP32[$135>>2] = $131; - $136 = ((($output)) + 112|0); - $137 = $136; - $138 = $137; - $139 = HEAP32[$138>>2]|0; - $140 = (($137) + 4)|0; - $141 = $140; - $142 = HEAP32[$141>>2]|0; - $143 = (_bitshift64Shl(($139|0),($142|0),4)|0); - $144 = tempRet0; - $145 = ((($output)) + 32|0); + $134 = HEAP32[$133>>2]|0; + $135 = (___muldi3(($124|0),($127|0),18,0)|0); + $136 = tempRet0; + $137 = (_i64Add(($131|0),($134|0),($124|0),($127|0))|0); + $138 = tempRet0; + $139 = (_i64Add(($137|0),($138|0),($135|0),($136|0))|0); + $140 = tempRet0; + $141 = $128; + $142 = $141; + HEAP32[$142>>2] = $139; + $143 = (($141) + 4)|0; + $144 = $143; + HEAP32[$144>>2] = $140; + $145 = ((($0)) + 96|0); $146 = $145; $147 = $146; $148 = HEAP32[$147>>2]|0; $149 = (($146) + 4)|0; $150 = $149; $151 = HEAP32[$150>>2]|0; - $152 = (_i64Add(($148|0),($151|0),($143|0),($144|0))|0); - $153 = tempRet0; - $154 = (_bitshift64Shl(($139|0),($142|0),1)|0); - $155 = tempRet0; - $156 = (_i64Add(($154|0),($155|0),($152|0),($153|0))|0); - $157 = tempRet0; - $158 = $136; - $159 = $158; - $160 = HEAP32[$159>>2]|0; - $161 = (($158) + 4)|0; - $162 = $161; - $163 = HEAP32[$162>>2]|0; - $164 = (_i64Add(($156|0),($157|0),($160|0),($163|0))|0); - $165 = tempRet0; - $166 = $145; - $167 = $166; - HEAP32[$167>>2] = $164; - $168 = (($166) + 4)|0; - $169 = $168; - HEAP32[$169>>2] = $165; - $170 = ((($output)) + 104|0); + $152 = ((($0)) + 16|0); + $153 = $152; + $154 = $153; + $155 = HEAP32[$154>>2]|0; + $156 = (($153) + 4)|0; + $157 = $156; + $158 = HEAP32[$157>>2]|0; + $159 = (___muldi3(($148|0),($151|0),18,0)|0); + $160 = tempRet0; + $161 = (_i64Add(($155|0),($158|0),($148|0),($151|0))|0); + $162 = tempRet0; + $163 = (_i64Add(($161|0),($162|0),($159|0),($160|0))|0); + $164 = tempRet0; + $165 = $152; + $166 = $165; + HEAP32[$166>>2] = $163; + $167 = (($165) + 4)|0; + $168 = $167; + HEAP32[$168>>2] = $164; + $169 = ((($0)) + 88|0); + $170 = $169; $171 = $170; - $172 = $171; - $173 = HEAP32[$172>>2]|0; - $174 = (($171) + 4)|0; - $175 = $174; - $176 = HEAP32[$175>>2]|0; - $177 = (_bitshift64Shl(($173|0),($176|0),4)|0); - $178 = tempRet0; - $179 = ((($output)) + 24|0); - $180 = $179; + $172 = HEAP32[$171>>2]|0; + $173 = (($170) + 4)|0; + $174 = $173; + $175 = HEAP32[$174>>2]|0; + $176 = ((($0)) + 8|0); + $177 = $176; + $178 = $177; + $179 = HEAP32[$178>>2]|0; + $180 = (($177) + 4)|0; $181 = $180; $182 = HEAP32[$181>>2]|0; - $183 = (($180) + 4)|0; - $184 = $183; - $185 = HEAP32[$184>>2]|0; - $186 = (_i64Add(($182|0),($185|0),($177|0),($178|0))|0); - $187 = tempRet0; - $188 = (_bitshift64Shl(($173|0),($176|0),1)|0); - $189 = tempRet0; - $190 = (_i64Add(($188|0),($189|0),($186|0),($187|0))|0); - $191 = tempRet0; - $192 = $170; - $193 = $192; - $194 = HEAP32[$193>>2]|0; - $195 = (($192) + 4)|0; - $196 = $195; - $197 = HEAP32[$196>>2]|0; - $198 = (_i64Add(($190|0),($191|0),($194|0),($197|0))|0); - $199 = tempRet0; - $200 = $179; - $201 = $200; - HEAP32[$201>>2] = $198; - $202 = (($200) + 4)|0; + $183 = (___muldi3(($172|0),($175|0),18,0)|0); + $184 = tempRet0; + $185 = (_i64Add(($179|0),($182|0),($172|0),($175|0))|0); + $186 = tempRet0; + $187 = (_i64Add(($185|0),($186|0),($183|0),($184|0))|0); + $188 = tempRet0; + $189 = $176; + $190 = $189; + HEAP32[$190>>2] = $187; + $191 = (($189) + 4)|0; + $192 = $191; + HEAP32[$192>>2] = $188; + $193 = ((($0)) + 80|0); + $194 = $193; + $195 = $194; + $196 = HEAP32[$195>>2]|0; + $197 = (($194) + 4)|0; + $198 = $197; + $199 = HEAP32[$198>>2]|0; + $200 = (_bitshift64Shl(($196|0),($199|0),4)|0); + $201 = tempRet0; + $202 = $0; $203 = $202; - HEAP32[$203>>2] = $199; - $204 = ((($output)) + 96|0); - $205 = $204; + $204 = HEAP32[$203>>2]|0; + $205 = (($202) + 4)|0; $206 = $205; $207 = HEAP32[$206>>2]|0; - $208 = (($205) + 4)|0; - $209 = $208; - $210 = HEAP32[$209>>2]|0; - $211 = (_bitshift64Shl(($207|0),($210|0),4)|0); - $212 = tempRet0; - $213 = ((($output)) + 16|0); - $214 = $213; - $215 = $214; - $216 = HEAP32[$215>>2]|0; - $217 = (($214) + 4)|0; - $218 = $217; - $219 = HEAP32[$218>>2]|0; - $220 = (_i64Add(($216|0),($219|0),($211|0),($212|0))|0); - $221 = tempRet0; - $222 = (_bitshift64Shl(($207|0),($210|0),1)|0); - $223 = tempRet0; - $224 = (_i64Add(($222|0),($223|0),($220|0),($221|0))|0); - $225 = tempRet0; - $226 = $204; - $227 = $226; - $228 = HEAP32[$227>>2]|0; - $229 = (($226) + 4)|0; - $230 = $229; - $231 = HEAP32[$230>>2]|0; - $232 = (_i64Add(($224|0),($225|0),($228|0),($231|0))|0); - $233 = tempRet0; - $234 = $213; - $235 = $234; - HEAP32[$235>>2] = $232; - $236 = (($234) + 4)|0; - $237 = $236; - HEAP32[$237>>2] = $233; - $238 = ((($output)) + 88|0); - $239 = $238; - $240 = $239; - $241 = HEAP32[$240>>2]|0; - $242 = (($239) + 4)|0; - $243 = $242; - $244 = HEAP32[$243>>2]|0; - $245 = (_bitshift64Shl(($241|0),($244|0),4)|0); - $246 = tempRet0; - $247 = ((($output)) + 8|0); - $248 = $247; - $249 = $248; - $250 = HEAP32[$249>>2]|0; - $251 = (($248) + 4)|0; - $252 = $251; - $253 = HEAP32[$252>>2]|0; - $254 = (_i64Add(($250|0),($253|0),($245|0),($246|0))|0); - $255 = tempRet0; - $256 = (_bitshift64Shl(($241|0),($244|0),1)|0); - $257 = tempRet0; - $258 = (_i64Add(($256|0),($257|0),($254|0),($255|0))|0); - $259 = tempRet0; - $260 = $238; - $261 = $260; - $262 = HEAP32[$261>>2]|0; - $263 = (($260) + 4)|0; - $264 = $263; - $265 = HEAP32[$264>>2]|0; - $266 = (_i64Add(($258|0),($259|0),($262|0),($265|0))|0); - $267 = tempRet0; - $268 = $247; - $269 = $268; - HEAP32[$269>>2] = $266; - $270 = (($268) + 4)|0; - $271 = $270; - HEAP32[$271>>2] = $267; - $272 = ((($output)) + 80|0); - $273 = $272; - $274 = $273; - $275 = HEAP32[$274>>2]|0; - $276 = (($273) + 4)|0; - $277 = $276; - $278 = HEAP32[$277>>2]|0; - $279 = (_bitshift64Shl(($275|0),($278|0),4)|0); - $280 = tempRet0; - $281 = $output; - $282 = $281; - $283 = HEAP32[$282>>2]|0; - $284 = (($281) + 4)|0; - $285 = $284; - $286 = HEAP32[$285>>2]|0; - $287 = (_i64Add(($283|0),($286|0),($279|0),($280|0))|0); - $288 = tempRet0; - $289 = (_bitshift64Shl(($275|0),($278|0),1)|0); - $290 = tempRet0; - $291 = (_i64Add(($289|0),($290|0),($287|0),($288|0))|0); - $292 = tempRet0; - $293 = (_i64Add(($291|0),($292|0),($275|0),($278|0))|0); - $294 = tempRet0; - $295 = $output; - $296 = $295; - HEAP32[$296>>2] = $293; - $297 = (($295) + 4)|0; - $298 = $297; - HEAP32[$298>>2] = $294; + $208 = (_i64Add(($204|0),($207|0),($200|0),($201|0))|0); + $209 = tempRet0; + $210 = (_bitshift64Shl(($196|0),($199|0),1)|0); + $211 = tempRet0; + $212 = (_i64Add(($208|0),($209|0),($210|0),($211|0))|0); + $213 = tempRet0; + $214 = (_i64Add(($212|0),($213|0),($196|0),($199|0))|0); + $215 = tempRet0; + $216 = $0; + $217 = $216; + HEAP32[$217>>2] = $214; + $218 = (($216) + 4)|0; + $219 = $218; + HEAP32[$219>>2] = $215; return; } -function _freduce_coefficients($output) { - $output = $output|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0; - var $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0; - var $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0; - var $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0; - var $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $i$01 = 0, label = 0, sp = 0; +function _freduce_coefficients($0) { + $0 = $0|0; + var $$036 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0; + var $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0; + var $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0; + var $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0; + var $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0; + var $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = ((($output)) + 80|0); - $1 = $0; + $1 = ((($0)) + 80|0); $2 = $1; - HEAP32[$2>>2] = 0; - $3 = (($1) + 4)|0; - $4 = $3; - HEAP32[$4>>2] = 0; - $i$01 = 0; + $3 = $2; + HEAP32[$3>>2] = 0; + $4 = (($2) + 4)|0; + $5 = $4; + HEAP32[$5>>2] = 0; + $$036 = 0; while(1) { - $5 = (($output) + ($i$01<<3)|0); - $6 = $5; + $6 = (($0) + ($$036<<3)|0); $7 = $6; - $8 = HEAP32[$7>>2]|0; - $9 = (($6) + 4)|0; - $10 = $9; - $11 = HEAP32[$10>>2]|0; - $12 = (_div_by_2_26($8,$11)|0); - $13 = tempRet0; - $14 = (_bitshift64Shl(($12|0),($13|0),26)|0); - $15 = tempRet0; - $16 = (_i64Subtract(($8|0),($11|0),($14|0),($15|0))|0); - $17 = tempRet0; - $18 = $5; - $19 = $18; - HEAP32[$19>>2] = $16; - $20 = (($18) + 4)|0; - $21 = $20; - HEAP32[$21>>2] = $17; - $22 = $i$01 | 1; - $23 = (($output) + ($22<<3)|0); - $24 = $23; + $8 = $7; + $9 = HEAP32[$8>>2]|0; + $10 = (($7) + 4)|0; + $11 = $10; + $12 = HEAP32[$11>>2]|0; + $13 = (_div_by_2_26($9,$12)|0); + $14 = tempRet0; + $15 = (_bitshift64Shl(($13|0),($14|0),26)|0); + $16 = tempRet0; + $17 = (_i64Subtract(($9|0),($12|0),($15|0),($16|0))|0); + $18 = tempRet0; + $19 = $6; + $20 = $19; + HEAP32[$20>>2] = $17; + $21 = (($19) + 4)|0; + $22 = $21; + HEAP32[$22>>2] = $18; + $23 = $$036 | 1; + $24 = (($0) + ($23<<3)|0); $25 = $24; - $26 = HEAP32[$25>>2]|0; - $27 = (($24) + 4)|0; - $28 = $27; - $29 = HEAP32[$28>>2]|0; - $30 = (_i64Add(($26|0),($29|0),($12|0),($13|0))|0); - $31 = tempRet0; - $32 = (_div_by_2_25($30,$31)|0); - $33 = tempRet0; - $34 = (_bitshift64Shl(($32|0),($33|0),25)|0); - $35 = tempRet0; - $36 = (_i64Subtract(($30|0),($31|0),($34|0),($35|0))|0); - $37 = tempRet0; - $38 = $23; - $39 = $38; - HEAP32[$39>>2] = $36; - $40 = (($38) + 4)|0; - $41 = $40; - HEAP32[$41>>2] = $37; - $42 = (($i$01) + 2)|0; - $43 = (($output) + ($42<<3)|0); - $44 = $43; + $26 = $25; + $27 = HEAP32[$26>>2]|0; + $28 = (($25) + 4)|0; + $29 = $28; + $30 = HEAP32[$29>>2]|0; + $31 = (_i64Add(($27|0),($30|0),($13|0),($14|0))|0); + $32 = tempRet0; + $33 = (_div_by_2_25($31,$32)|0); + $34 = tempRet0; + $35 = (_bitshift64Shl(($33|0),($34|0),25)|0); + $36 = tempRet0; + $37 = (_i64Subtract(($31|0),($32|0),($35|0),($36|0))|0); + $38 = tempRet0; + $39 = $24; + $40 = $39; + HEAP32[$40>>2] = $37; + $41 = (($39) + 4)|0; + $42 = $41; + HEAP32[$42>>2] = $38; + $43 = (($$036) + 2)|0; + $44 = (($0) + ($43<<3)|0); $45 = $44; - $46 = HEAP32[$45>>2]|0; - $47 = (($44) + 4)|0; - $48 = $47; - $49 = HEAP32[$48>>2]|0; - $50 = (_i64Add(($46|0),($49|0),($32|0),($33|0))|0); - $51 = tempRet0; - $52 = $43; - $53 = $52; - HEAP32[$53>>2] = $50; - $54 = (($52) + 4)|0; - $55 = $54; - HEAP32[$55>>2] = $51; - $56 = ($42>>>0)<(10); - if ($56) { - $i$01 = $42; + $46 = $45; + $47 = HEAP32[$46>>2]|0; + $48 = (($45) + 4)|0; + $49 = $48; + $50 = HEAP32[$49>>2]|0; + $51 = (_i64Add(($47|0),($50|0),($33|0),($34|0))|0); + $52 = tempRet0; + $53 = $44; + $54 = $53; + HEAP32[$54>>2] = $51; + $55 = (($53) + 4)|0; + $56 = $55; + HEAP32[$56>>2] = $52; + $57 = ($43>>>0)<(10); + if ($57) { + $$036 = $43; } else { break; } } - $57 = $0; - $58 = $57; - $59 = HEAP32[$58>>2]|0; - $60 = (($57) + 4)|0; - $61 = $60; - $62 = HEAP32[$61>>2]|0; - $63 = (_bitshift64Shl(($59|0),($62|0),4)|0); - $64 = tempRet0; - $65 = $output; - $66 = $65; - $67 = HEAP32[$66>>2]|0; - $68 = (($65) + 4)|0; - $69 = $68; - $70 = HEAP32[$69>>2]|0; - $71 = (_i64Add(($67|0),($70|0),($63|0),($64|0))|0); - $72 = tempRet0; - $73 = (_bitshift64Shl(($59|0),($62|0),1)|0); - $74 = tempRet0; - $75 = (_i64Add(($73|0),($74|0),($71|0),($72|0))|0); - $76 = tempRet0; - $77 = (_i64Add(($75|0),($76|0),($59|0),($62|0))|0); - $78 = tempRet0; - $79 = $output; - $80 = $79; - HEAP32[$80>>2] = $77; - $81 = (($79) + 4)|0; - $82 = $81; - HEAP32[$82>>2] = $78; - $83 = $0; - $84 = $83; - HEAP32[$84>>2] = 0; - $85 = (($83) + 4)|0; - $86 = $85; - HEAP32[$86>>2] = 0; - $87 = $output; - $88 = $87; - $89 = HEAP32[$88>>2]|0; - $90 = (($87) + 4)|0; + $58 = $1; + $59 = $58; + $60 = HEAP32[$59>>2]|0; + $61 = (($58) + 4)|0; + $62 = $61; + $63 = HEAP32[$62>>2]|0; + $64 = $0; + $65 = $64; + $66 = HEAP32[$65>>2]|0; + $67 = (($64) + 4)|0; + $68 = $67; + $69 = HEAP32[$68>>2]|0; + $70 = (___muldi3(($60|0),($63|0),18,0)|0); + $71 = tempRet0; + $72 = (_i64Add(($66|0),($69|0),($60|0),($63|0))|0); + $73 = tempRet0; + $74 = (_i64Add(($72|0),($73|0),($70|0),($71|0))|0); + $75 = tempRet0; + $76 = $1; + $77 = $76; + HEAP32[$77>>2] = 0; + $78 = (($76) + 4)|0; + $79 = $78; + HEAP32[$79>>2] = 0; + $80 = (_div_by_2_26($74,$75)|0); + $81 = tempRet0; + $82 = (_bitshift64Shl(($80|0),($81|0),26)|0); + $83 = tempRet0; + $84 = (_i64Subtract(($74|0),($75|0),($82|0),($83|0))|0); + $85 = tempRet0; + $86 = $0; + $87 = $86; + HEAP32[$87>>2] = $84; + $88 = (($86) + 4)|0; + $89 = $88; + HEAP32[$89>>2] = $85; + $90 = ((($0)) + 8|0); $91 = $90; - $92 = HEAP32[$91>>2]|0; - $93 = (_div_by_2_26($89,$92)|0); - $94 = tempRet0; - $95 = (_bitshift64Shl(($93|0),($94|0),26)|0); - $96 = tempRet0; - $97 = (_i64Subtract(($89|0),($92|0),($95|0),($96|0))|0); + $92 = $91; + $93 = HEAP32[$92>>2]|0; + $94 = (($91) + 4)|0; + $95 = $94; + $96 = HEAP32[$95>>2]|0; + $97 = (_i64Add(($93|0),($96|0),($80|0),($81|0))|0); $98 = tempRet0; - $99 = $output; + $99 = $90; $100 = $99; HEAP32[$100>>2] = $97; $101 = (($99) + 4)|0; $102 = $101; HEAP32[$102>>2] = $98; - $103 = ((($output)) + 8|0); - $104 = $103; - $105 = $104; - $106 = HEAP32[$105>>2]|0; - $107 = (($104) + 4)|0; - $108 = $107; - $109 = HEAP32[$108>>2]|0; - $110 = (_i64Add(($106|0),($109|0),($93|0),($94|0))|0); - $111 = tempRet0; - $112 = $103; - $113 = $112; - HEAP32[$113>>2] = $110; - $114 = (($112) + 4)|0; - $115 = $114; - HEAP32[$115>>2] = $111; return; } function _div_by_2_26($0,$1) { @@ -10109,29 +6179,29 @@ function _div_by_2_25($0,$1) { tempRet0 = ($7); return ($6|0); } -function _fsquare($output,$in) { - $output = $output|0; - $in = $in|0; - var $t = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; +function _fsquare($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; sp = STACKTOP; STACKTOP = STACKTOP + 160|0; - $t = sp; - _fsquare_inner($t,$in); - _freduce_degree($t); - _freduce_coefficients($t); - dest=$output; src=$t; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + $2 = sp; + _fsquare_inner($2,$1); + _freduce_degree($2); + _freduce_coefficients($2); + dest=$0; src=$2; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); STACKTOP = sp;return; } -function _fsquare_inner($output,$in) { - $output = $output|0; - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; - var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0; - var $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0; - var $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0; - var $107 = 0, $1070 = 0, $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0; - var $1088 = 0, $1089 = 0, $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0; - var $1105 = 0, $1106 = 0, $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0; +function _fsquare_inner($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0, $1015 = 0, $1016 = 0; + var $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0, $1033 = 0, $1034 = 0; + var $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0, $1051 = 0, $1052 = 0; + var $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0, $107 = 0, $1070 = 0; + var $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0, $1088 = 0, $1089 = 0; + var $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0, $1105 = 0, $1106 = 0; + var $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $1119 = 0, $112 = 0, $1120 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0; var $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0; var $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0; var $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0; @@ -10183,4914 +6253,5314 @@ function _fsquare_inner($output,$in) { var $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, label = 0; var sp = 0; sp = STACKTOP; - $0 = $in; - $1 = $0; - $2 = HEAP32[$1>>2]|0; - $3 = (($0) + 4)|0; - $4 = $3; - $5 = HEAP32[$4>>2]|0; - $6 = (_bitshift64Ashr(0,($2|0),32)|0); - $7 = tempRet0; - $8 = (___muldi3(($6|0),($7|0),($6|0),($7|0))|0); + $2 = $1; + $3 = $2; + $4 = HEAP32[$3>>2]|0; + $5 = (($2) + 4)|0; + $6 = $5; + $7 = HEAP32[$6>>2]|0; + $8 = (_bitshift64Ashr(0,($4|0),32)|0); $9 = tempRet0; - $10 = $output; - $11 = $10; - HEAP32[$11>>2] = $8; - $12 = (($10) + 4)|0; + $10 = (___muldi3(($8|0),($9|0),($8|0),($9|0))|0); + $11 = tempRet0; + $12 = $0; $13 = $12; - HEAP32[$13>>2] = $9; - $14 = $in; + HEAP32[$13>>2] = $10; + $14 = (($12) + 4)|0; $15 = $14; - $16 = HEAP32[$15>>2]|0; - $17 = (($14) + 4)|0; - $18 = $17; - $19 = HEAP32[$18>>2]|0; - $20 = (_bitshift64Ashr(0,($16|0),31)|0); - $21 = tempRet0; - $22 = ((($in)) + 8|0); - $23 = $22; - $24 = $23; - $25 = HEAP32[$24>>2]|0; - $26 = (($23) + 4)|0; - $27 = $26; - $28 = HEAP32[$27>>2]|0; - $29 = (_bitshift64Ashr(0,($25|0),32)|0); - $30 = tempRet0; - $31 = (___muldi3(($29|0),($30|0),($20|0),($21|0))|0); + HEAP32[$15>>2] = $11; + $16 = $1; + $17 = $16; + $18 = HEAP32[$17>>2]|0; + $19 = (($16) + 4)|0; + $20 = $19; + $21 = HEAP32[$20>>2]|0; + $22 = (_bitshift64Ashr(0,($18|0),31)|0); + $23 = tempRet0; + $24 = ((($1)) + 8|0); + $25 = $24; + $26 = $25; + $27 = HEAP32[$26>>2]|0; + $28 = (($25) + 4)|0; + $29 = $28; + $30 = HEAP32[$29>>2]|0; + $31 = (_bitshift64Ashr(0,($27|0),32)|0); $32 = tempRet0; - $33 = ((($output)) + 8|0); - $34 = $33; - $35 = $34; - HEAP32[$35>>2] = $31; - $36 = (($34) + 4)|0; + $33 = (___muldi3(($31|0),($32|0),($22|0),($23|0))|0); + $34 = tempRet0; + $35 = ((($0)) + 8|0); + $36 = $35; $37 = $36; - HEAP32[$37>>2] = $32; - $38 = $22; + HEAP32[$37>>2] = $33; + $38 = (($36) + 4)|0; $39 = $38; - $40 = HEAP32[$39>>2]|0; - $41 = (($38) + 4)|0; - $42 = $41; - $43 = HEAP32[$42>>2]|0; - $44 = (_bitshift64Ashr(0,($40|0),32)|0); - $45 = tempRet0; - $46 = (___muldi3(($44|0),($45|0),($44|0),($45|0))|0); + HEAP32[$39>>2] = $34; + $40 = $24; + $41 = $40; + $42 = HEAP32[$41>>2]|0; + $43 = (($40) + 4)|0; + $44 = $43; + $45 = HEAP32[$44>>2]|0; + $46 = (_bitshift64Ashr(0,($42|0),32)|0); $47 = tempRet0; - $48 = $in; - $49 = $48; - $50 = HEAP32[$49>>2]|0; - $51 = (($48) + 4)|0; - $52 = $51; - $53 = HEAP32[$52>>2]|0; - $54 = (_bitshift64Ashr(0,($50|0),32)|0); - $55 = tempRet0; - $56 = ((($in)) + 16|0); - $57 = $56; - $58 = $57; - $59 = HEAP32[$58>>2]|0; - $60 = (($57) + 4)|0; - $61 = $60; - $62 = HEAP32[$61>>2]|0; - $63 = (_bitshift64Ashr(0,($59|0),32)|0); - $64 = tempRet0; - $65 = (___muldi3(($63|0),($64|0),($54|0),($55|0))|0); + $48 = (___muldi3(($46|0),($47|0),($46|0),($47|0))|0); + $49 = tempRet0; + $50 = $1; + $51 = $50; + $52 = HEAP32[$51>>2]|0; + $53 = (($50) + 4)|0; + $54 = $53; + $55 = HEAP32[$54>>2]|0; + $56 = (_bitshift64Ashr(0,($52|0),32)|0); + $57 = tempRet0; + $58 = ((($1)) + 16|0); + $59 = $58; + $60 = $59; + $61 = HEAP32[$60>>2]|0; + $62 = (($59) + 4)|0; + $63 = $62; + $64 = HEAP32[$63>>2]|0; + $65 = (_bitshift64Ashr(0,($61|0),32)|0); $66 = tempRet0; - $67 = (_i64Add(($65|0),($66|0),($46|0),($47|0))|0); + $67 = (___muldi3(($65|0),($66|0),($56|0),($57|0))|0); $68 = tempRet0; - $69 = (_bitshift64Shl(($67|0),($68|0),1)|0); + $69 = (_i64Add(($67|0),($68|0),($48|0),($49|0))|0); $70 = tempRet0; - $71 = ((($output)) + 16|0); - $72 = $71; - $73 = $72; - HEAP32[$73>>2] = $69; - $74 = (($72) + 4)|0; + $71 = (_bitshift64Shl(($69|0),($70|0),1)|0); + $72 = tempRet0; + $73 = ((($0)) + 16|0); + $74 = $73; $75 = $74; - HEAP32[$75>>2] = $70; - $76 = $22; + HEAP32[$75>>2] = $71; + $76 = (($74) + 4)|0; $77 = $76; - $78 = HEAP32[$77>>2]|0; - $79 = (($76) + 4)|0; - $80 = $79; - $81 = HEAP32[$80>>2]|0; - $82 = (_bitshift64Ashr(0,($78|0),32)|0); - $83 = tempRet0; - $84 = $56; - $85 = $84; - $86 = HEAP32[$85>>2]|0; - $87 = (($84) + 4)|0; - $88 = $87; - $89 = HEAP32[$88>>2]|0; - $90 = (_bitshift64Ashr(0,($86|0),32)|0); - $91 = tempRet0; - $92 = (___muldi3(($90|0),($91|0),($82|0),($83|0))|0); - $93 = tempRet0; - $94 = $in; - $95 = $94; - $96 = HEAP32[$95>>2]|0; - $97 = (($94) + 4)|0; - $98 = $97; - $99 = HEAP32[$98>>2]|0; - $100 = (_bitshift64Ashr(0,($96|0),32)|0); - $101 = tempRet0; - $102 = ((($in)) + 24|0); - $103 = $102; - $104 = $103; - $105 = HEAP32[$104>>2]|0; - $106 = (($103) + 4)|0; - $107 = $106; - $108 = HEAP32[$107>>2]|0; - $109 = (_bitshift64Ashr(0,($105|0),32)|0); - $110 = tempRet0; - $111 = (___muldi3(($109|0),($110|0),($100|0),($101|0))|0); + HEAP32[$77>>2] = $72; + $78 = $24; + $79 = $78; + $80 = HEAP32[$79>>2]|0; + $81 = (($78) + 4)|0; + $82 = $81; + $83 = HEAP32[$82>>2]|0; + $84 = (_bitshift64Ashr(0,($80|0),32)|0); + $85 = tempRet0; + $86 = $58; + $87 = $86; + $88 = HEAP32[$87>>2]|0; + $89 = (($86) + 4)|0; + $90 = $89; + $91 = HEAP32[$90>>2]|0; + $92 = (_bitshift64Ashr(0,($88|0),32)|0); + $93 = tempRet0; + $94 = (___muldi3(($92|0),($93|0),($84|0),($85|0))|0); + $95 = tempRet0; + $96 = $1; + $97 = $96; + $98 = HEAP32[$97>>2]|0; + $99 = (($96) + 4)|0; + $100 = $99; + $101 = HEAP32[$100>>2]|0; + $102 = (_bitshift64Ashr(0,($98|0),32)|0); + $103 = tempRet0; + $104 = ((($1)) + 24|0); + $105 = $104; + $106 = $105; + $107 = HEAP32[$106>>2]|0; + $108 = (($105) + 4)|0; + $109 = $108; + $110 = HEAP32[$109>>2]|0; + $111 = (_bitshift64Ashr(0,($107|0),32)|0); $112 = tempRet0; - $113 = (_i64Add(($111|0),($112|0),($92|0),($93|0))|0); + $113 = (___muldi3(($111|0),($112|0),($102|0),($103|0))|0); $114 = tempRet0; - $115 = (_bitshift64Shl(($113|0),($114|0),1)|0); + $115 = (_i64Add(($113|0),($114|0),($94|0),($95|0))|0); $116 = tempRet0; - $117 = ((($output)) + 24|0); - $118 = $117; - $119 = $118; - HEAP32[$119>>2] = $115; - $120 = (($118) + 4)|0; + $117 = (_bitshift64Shl(($115|0),($116|0),1)|0); + $118 = tempRet0; + $119 = ((($0)) + 24|0); + $120 = $119; $121 = $120; - HEAP32[$121>>2] = $116; - $122 = $56; + HEAP32[$121>>2] = $117; + $122 = (($120) + 4)|0; $123 = $122; - $124 = HEAP32[$123>>2]|0; - $125 = (($122) + 4)|0; - $126 = $125; - $127 = HEAP32[$126>>2]|0; - $128 = (_bitshift64Ashr(0,($124|0),32)|0); - $129 = tempRet0; - $130 = (___muldi3(($128|0),($129|0),($128|0),($129|0))|0); + HEAP32[$123>>2] = $118; + $124 = $58; + $125 = $124; + $126 = HEAP32[$125>>2]|0; + $127 = (($124) + 4)|0; + $128 = $127; + $129 = HEAP32[$128>>2]|0; + $130 = (_bitshift64Ashr(0,($126|0),32)|0); $131 = tempRet0; - $132 = $22; - $133 = $132; - $134 = HEAP32[$133>>2]|0; - $135 = (($132) + 4)|0; - $136 = $135; - $137 = HEAP32[$136>>2]|0; - $138 = (_bitshift64Ashr(0,($134|0),30)|0); - $139 = tempRet0; - $140 = $102; - $141 = $140; - $142 = HEAP32[$141>>2]|0; - $143 = (($140) + 4)|0; - $144 = $143; - $145 = HEAP32[$144>>2]|0; - $146 = (_bitshift64Ashr(0,($142|0),32)|0); - $147 = tempRet0; - $148 = (___muldi3(($146|0),($147|0),($138|0),($139|0))|0); + $132 = (___muldi3(($130|0),($131|0),($130|0),($131|0))|0); + $133 = tempRet0; + $134 = $24; + $135 = $134; + $136 = HEAP32[$135>>2]|0; + $137 = (($134) + 4)|0; + $138 = $137; + $139 = HEAP32[$138>>2]|0; + $140 = (_bitshift64Ashr(0,($136|0),30)|0); + $141 = tempRet0; + $142 = $104; + $143 = $142; + $144 = HEAP32[$143>>2]|0; + $145 = (($142) + 4)|0; + $146 = $145; + $147 = HEAP32[$146>>2]|0; + $148 = (_bitshift64Ashr(0,($144|0),32)|0); $149 = tempRet0; - $150 = (_i64Add(($148|0),($149|0),($130|0),($131|0))|0); + $150 = (___muldi3(($148|0),($149|0),($140|0),($141|0))|0); $151 = tempRet0; - $152 = $in; - $153 = $152; - $154 = HEAP32[$153>>2]|0; - $155 = (($152) + 4)|0; - $156 = $155; - $157 = HEAP32[$156>>2]|0; - $158 = (_bitshift64Ashr(0,($154|0),31)|0); - $159 = tempRet0; - $160 = ((($in)) + 32|0); - $161 = $160; - $162 = $161; - $163 = HEAP32[$162>>2]|0; - $164 = (($161) + 4)|0; - $165 = $164; - $166 = HEAP32[$165>>2]|0; - $167 = (_bitshift64Ashr(0,($163|0),32)|0); - $168 = tempRet0; - $169 = (___muldi3(($167|0),($168|0),($158|0),($159|0))|0); + $152 = (_i64Add(($150|0),($151|0),($132|0),($133|0))|0); + $153 = tempRet0; + $154 = $1; + $155 = $154; + $156 = HEAP32[$155>>2]|0; + $157 = (($154) + 4)|0; + $158 = $157; + $159 = HEAP32[$158>>2]|0; + $160 = (_bitshift64Ashr(0,($156|0),31)|0); + $161 = tempRet0; + $162 = ((($1)) + 32|0); + $163 = $162; + $164 = $163; + $165 = HEAP32[$164>>2]|0; + $166 = (($163) + 4)|0; + $167 = $166; + $168 = HEAP32[$167>>2]|0; + $169 = (_bitshift64Ashr(0,($165|0),32)|0); $170 = tempRet0; - $171 = (_i64Add(($150|0),($151|0),($169|0),($170|0))|0); + $171 = (___muldi3(($169|0),($170|0),($160|0),($161|0))|0); $172 = tempRet0; - $173 = ((($output)) + 32|0); - $174 = $173; - $175 = $174; - HEAP32[$175>>2] = $171; - $176 = (($174) + 4)|0; + $173 = (_i64Add(($152|0),($153|0),($171|0),($172|0))|0); + $174 = tempRet0; + $175 = ((($0)) + 32|0); + $176 = $175; $177 = $176; - HEAP32[$177>>2] = $172; - $178 = $56; + HEAP32[$177>>2] = $173; + $178 = (($176) + 4)|0; $179 = $178; - $180 = HEAP32[$179>>2]|0; - $181 = (($178) + 4)|0; - $182 = $181; - $183 = HEAP32[$182>>2]|0; - $184 = (_bitshift64Ashr(0,($180|0),32)|0); - $185 = tempRet0; - $186 = $102; - $187 = $186; - $188 = HEAP32[$187>>2]|0; - $189 = (($186) + 4)|0; - $190 = $189; - $191 = HEAP32[$190>>2]|0; - $192 = (_bitshift64Ashr(0,($188|0),32)|0); - $193 = tempRet0; - $194 = (___muldi3(($192|0),($193|0),($184|0),($185|0))|0); + HEAP32[$179>>2] = $174; + $180 = $58; + $181 = $180; + $182 = HEAP32[$181>>2]|0; + $183 = (($180) + 4)|0; + $184 = $183; + $185 = HEAP32[$184>>2]|0; + $186 = (_bitshift64Ashr(0,($182|0),32)|0); + $187 = tempRet0; + $188 = $104; + $189 = $188; + $190 = HEAP32[$189>>2]|0; + $191 = (($188) + 4)|0; + $192 = $191; + $193 = HEAP32[$192>>2]|0; + $194 = (_bitshift64Ashr(0,($190|0),32)|0); $195 = tempRet0; - $196 = $22; - $197 = $196; - $198 = HEAP32[$197>>2]|0; - $199 = (($196) + 4)|0; - $200 = $199; - $201 = HEAP32[$200>>2]|0; - $202 = (_bitshift64Ashr(0,($198|0),32)|0); - $203 = tempRet0; - $204 = $160; - $205 = $204; - $206 = HEAP32[$205>>2]|0; - $207 = (($204) + 4)|0; - $208 = $207; - $209 = HEAP32[$208>>2]|0; - $210 = (_bitshift64Ashr(0,($206|0),32)|0); - $211 = tempRet0; - $212 = (___muldi3(($210|0),($211|0),($202|0),($203|0))|0); + $196 = (___muldi3(($194|0),($195|0),($186|0),($187|0))|0); + $197 = tempRet0; + $198 = $24; + $199 = $198; + $200 = HEAP32[$199>>2]|0; + $201 = (($198) + 4)|0; + $202 = $201; + $203 = HEAP32[$202>>2]|0; + $204 = (_bitshift64Ashr(0,($200|0),32)|0); + $205 = tempRet0; + $206 = $162; + $207 = $206; + $208 = HEAP32[$207>>2]|0; + $209 = (($206) + 4)|0; + $210 = $209; + $211 = HEAP32[$210>>2]|0; + $212 = (_bitshift64Ashr(0,($208|0),32)|0); $213 = tempRet0; - $214 = (_i64Add(($212|0),($213|0),($194|0),($195|0))|0); + $214 = (___muldi3(($212|0),($213|0),($204|0),($205|0))|0); $215 = tempRet0; - $216 = $in; - $217 = $216; - $218 = HEAP32[$217>>2]|0; - $219 = (($216) + 4)|0; - $220 = $219; - $221 = HEAP32[$220>>2]|0; - $222 = (_bitshift64Ashr(0,($218|0),32)|0); - $223 = tempRet0; - $224 = ((($in)) + 40|0); - $225 = $224; - $226 = $225; - $227 = HEAP32[$226>>2]|0; - $228 = (($225) + 4)|0; - $229 = $228; - $230 = HEAP32[$229>>2]|0; - $231 = (_bitshift64Ashr(0,($227|0),32)|0); - $232 = tempRet0; - $233 = (___muldi3(($231|0),($232|0),($222|0),($223|0))|0); + $216 = (_i64Add(($214|0),($215|0),($196|0),($197|0))|0); + $217 = tempRet0; + $218 = $1; + $219 = $218; + $220 = HEAP32[$219>>2]|0; + $221 = (($218) + 4)|0; + $222 = $221; + $223 = HEAP32[$222>>2]|0; + $224 = (_bitshift64Ashr(0,($220|0),32)|0); + $225 = tempRet0; + $226 = ((($1)) + 40|0); + $227 = $226; + $228 = $227; + $229 = HEAP32[$228>>2]|0; + $230 = (($227) + 4)|0; + $231 = $230; + $232 = HEAP32[$231>>2]|0; + $233 = (_bitshift64Ashr(0,($229|0),32)|0); $234 = tempRet0; - $235 = (_i64Add(($214|0),($215|0),($233|0),($234|0))|0); + $235 = (___muldi3(($233|0),($234|0),($224|0),($225|0))|0); $236 = tempRet0; - $237 = (_bitshift64Shl(($235|0),($236|0),1)|0); + $237 = (_i64Add(($216|0),($217|0),($235|0),($236|0))|0); $238 = tempRet0; - $239 = ((($output)) + 40|0); - $240 = $239; - $241 = $240; - HEAP32[$241>>2] = $237; - $242 = (($240) + 4)|0; + $239 = (_bitshift64Shl(($237|0),($238|0),1)|0); + $240 = tempRet0; + $241 = ((($0)) + 40|0); + $242 = $241; $243 = $242; - HEAP32[$243>>2] = $238; - $244 = $102; + HEAP32[$243>>2] = $239; + $244 = (($242) + 4)|0; $245 = $244; - $246 = HEAP32[$245>>2]|0; - $247 = (($244) + 4)|0; - $248 = $247; - $249 = HEAP32[$248>>2]|0; - $250 = (_bitshift64Ashr(0,($246|0),32)|0); - $251 = tempRet0; - $252 = (___muldi3(($250|0),($251|0),($250|0),($251|0))|0); + HEAP32[$245>>2] = $240; + $246 = $104; + $247 = $246; + $248 = HEAP32[$247>>2]|0; + $249 = (($246) + 4)|0; + $250 = $249; + $251 = HEAP32[$250>>2]|0; + $252 = (_bitshift64Ashr(0,($248|0),32)|0); $253 = tempRet0; - $254 = $56; - $255 = $254; - $256 = HEAP32[$255>>2]|0; - $257 = (($254) + 4)|0; - $258 = $257; - $259 = HEAP32[$258>>2]|0; - $260 = (_bitshift64Ashr(0,($256|0),32)|0); - $261 = tempRet0; - $262 = $160; - $263 = $262; - $264 = HEAP32[$263>>2]|0; - $265 = (($262) + 4)|0; - $266 = $265; - $267 = HEAP32[$266>>2]|0; - $268 = (_bitshift64Ashr(0,($264|0),32)|0); - $269 = tempRet0; - $270 = (___muldi3(($268|0),($269|0),($260|0),($261|0))|0); + $254 = (___muldi3(($252|0),($253|0),($252|0),($253|0))|0); + $255 = tempRet0; + $256 = $58; + $257 = $256; + $258 = HEAP32[$257>>2]|0; + $259 = (($256) + 4)|0; + $260 = $259; + $261 = HEAP32[$260>>2]|0; + $262 = (_bitshift64Ashr(0,($258|0),32)|0); + $263 = tempRet0; + $264 = $162; + $265 = $264; + $266 = HEAP32[$265>>2]|0; + $267 = (($264) + 4)|0; + $268 = $267; + $269 = HEAP32[$268>>2]|0; + $270 = (_bitshift64Ashr(0,($266|0),32)|0); $271 = tempRet0; - $272 = (_i64Add(($270|0),($271|0),($252|0),($253|0))|0); + $272 = (___muldi3(($270|0),($271|0),($262|0),($263|0))|0); $273 = tempRet0; - $274 = $in; - $275 = $274; - $276 = HEAP32[$275>>2]|0; - $277 = (($274) + 4)|0; - $278 = $277; - $279 = HEAP32[$278>>2]|0; - $280 = (_bitshift64Ashr(0,($276|0),32)|0); - $281 = tempRet0; - $282 = ((($in)) + 48|0); - $283 = $282; - $284 = $283; - $285 = HEAP32[$284>>2]|0; - $286 = (($283) + 4)|0; - $287 = $286; - $288 = HEAP32[$287>>2]|0; - $289 = (_bitshift64Ashr(0,($285|0),32)|0); - $290 = tempRet0; - $291 = (___muldi3(($289|0),($290|0),($280|0),($281|0))|0); + $274 = (_i64Add(($272|0),($273|0),($254|0),($255|0))|0); + $275 = tempRet0; + $276 = $1; + $277 = $276; + $278 = HEAP32[$277>>2]|0; + $279 = (($276) + 4)|0; + $280 = $279; + $281 = HEAP32[$280>>2]|0; + $282 = (_bitshift64Ashr(0,($278|0),32)|0); + $283 = tempRet0; + $284 = ((($1)) + 48|0); + $285 = $284; + $286 = $285; + $287 = HEAP32[$286>>2]|0; + $288 = (($285) + 4)|0; + $289 = $288; + $290 = HEAP32[$289>>2]|0; + $291 = (_bitshift64Ashr(0,($287|0),32)|0); $292 = tempRet0; - $293 = (_i64Add(($272|0),($273|0),($291|0),($292|0))|0); + $293 = (___muldi3(($291|0),($292|0),($282|0),($283|0))|0); $294 = tempRet0; - $295 = $22; - $296 = $295; - $297 = HEAP32[$296>>2]|0; - $298 = (($295) + 4)|0; - $299 = $298; - $300 = HEAP32[$299>>2]|0; - $301 = (_bitshift64Ashr(0,($297|0),31)|0); - $302 = tempRet0; - $303 = $224; - $304 = $303; - $305 = HEAP32[$304>>2]|0; - $306 = (($303) + 4)|0; - $307 = $306; - $308 = HEAP32[$307>>2]|0; - $309 = (_bitshift64Ashr(0,($305|0),32)|0); - $310 = tempRet0; - $311 = (___muldi3(($309|0),($310|0),($301|0),($302|0))|0); + $295 = (_i64Add(($274|0),($275|0),($293|0),($294|0))|0); + $296 = tempRet0; + $297 = $24; + $298 = $297; + $299 = HEAP32[$298>>2]|0; + $300 = (($297) + 4)|0; + $301 = $300; + $302 = HEAP32[$301>>2]|0; + $303 = (_bitshift64Ashr(0,($299|0),31)|0); + $304 = tempRet0; + $305 = $226; + $306 = $305; + $307 = HEAP32[$306>>2]|0; + $308 = (($305) + 4)|0; + $309 = $308; + $310 = HEAP32[$309>>2]|0; + $311 = (_bitshift64Ashr(0,($307|0),32)|0); $312 = tempRet0; - $313 = (_i64Add(($293|0),($294|0),($311|0),($312|0))|0); + $313 = (___muldi3(($311|0),($312|0),($303|0),($304|0))|0); $314 = tempRet0; - $315 = (_bitshift64Shl(($313|0),($314|0),1)|0); + $315 = (_i64Add(($295|0),($296|0),($313|0),($314|0))|0); $316 = tempRet0; - $317 = ((($output)) + 48|0); - $318 = $317; - $319 = $318; - HEAP32[$319>>2] = $315; - $320 = (($318) + 4)|0; + $317 = (_bitshift64Shl(($315|0),($316|0),1)|0); + $318 = tempRet0; + $319 = ((($0)) + 48|0); + $320 = $319; $321 = $320; - HEAP32[$321>>2] = $316; - $322 = $102; + HEAP32[$321>>2] = $317; + $322 = (($320) + 4)|0; $323 = $322; - $324 = HEAP32[$323>>2]|0; - $325 = (($322) + 4)|0; - $326 = $325; - $327 = HEAP32[$326>>2]|0; - $328 = (_bitshift64Ashr(0,($324|0),32)|0); - $329 = tempRet0; - $330 = $160; - $331 = $330; - $332 = HEAP32[$331>>2]|0; - $333 = (($330) + 4)|0; - $334 = $333; - $335 = HEAP32[$334>>2]|0; - $336 = (_bitshift64Ashr(0,($332|0),32)|0); - $337 = tempRet0; - $338 = (___muldi3(($336|0),($337|0),($328|0),($329|0))|0); + HEAP32[$323>>2] = $318; + $324 = $104; + $325 = $324; + $326 = HEAP32[$325>>2]|0; + $327 = (($324) + 4)|0; + $328 = $327; + $329 = HEAP32[$328>>2]|0; + $330 = (_bitshift64Ashr(0,($326|0),32)|0); + $331 = tempRet0; + $332 = $162; + $333 = $332; + $334 = HEAP32[$333>>2]|0; + $335 = (($332) + 4)|0; + $336 = $335; + $337 = HEAP32[$336>>2]|0; + $338 = (_bitshift64Ashr(0,($334|0),32)|0); $339 = tempRet0; - $340 = $56; - $341 = $340; - $342 = HEAP32[$341>>2]|0; - $343 = (($340) + 4)|0; - $344 = $343; - $345 = HEAP32[$344>>2]|0; - $346 = (_bitshift64Ashr(0,($342|0),32)|0); - $347 = tempRet0; - $348 = $224; - $349 = $348; - $350 = HEAP32[$349>>2]|0; - $351 = (($348) + 4)|0; - $352 = $351; - $353 = HEAP32[$352>>2]|0; - $354 = (_bitshift64Ashr(0,($350|0),32)|0); - $355 = tempRet0; - $356 = (___muldi3(($354|0),($355|0),($346|0),($347|0))|0); + $340 = (___muldi3(($338|0),($339|0),($330|0),($331|0))|0); + $341 = tempRet0; + $342 = $58; + $343 = $342; + $344 = HEAP32[$343>>2]|0; + $345 = (($342) + 4)|0; + $346 = $345; + $347 = HEAP32[$346>>2]|0; + $348 = (_bitshift64Ashr(0,($344|0),32)|0); + $349 = tempRet0; + $350 = $226; + $351 = $350; + $352 = HEAP32[$351>>2]|0; + $353 = (($350) + 4)|0; + $354 = $353; + $355 = HEAP32[$354>>2]|0; + $356 = (_bitshift64Ashr(0,($352|0),32)|0); $357 = tempRet0; - $358 = (_i64Add(($356|0),($357|0),($338|0),($339|0))|0); + $358 = (___muldi3(($356|0),($357|0),($348|0),($349|0))|0); $359 = tempRet0; - $360 = $22; - $361 = $360; - $362 = HEAP32[$361>>2]|0; - $363 = (($360) + 4)|0; - $364 = $363; - $365 = HEAP32[$364>>2]|0; - $366 = (_bitshift64Ashr(0,($362|0),32)|0); - $367 = tempRet0; - $368 = $282; - $369 = $368; - $370 = HEAP32[$369>>2]|0; - $371 = (($368) + 4)|0; - $372 = $371; - $373 = HEAP32[$372>>2]|0; - $374 = (_bitshift64Ashr(0,($370|0),32)|0); - $375 = tempRet0; - $376 = (___muldi3(($374|0),($375|0),($366|0),($367|0))|0); + $360 = (_i64Add(($358|0),($359|0),($340|0),($341|0))|0); + $361 = tempRet0; + $362 = $24; + $363 = $362; + $364 = HEAP32[$363>>2]|0; + $365 = (($362) + 4)|0; + $366 = $365; + $367 = HEAP32[$366>>2]|0; + $368 = (_bitshift64Ashr(0,($364|0),32)|0); + $369 = tempRet0; + $370 = $284; + $371 = $370; + $372 = HEAP32[$371>>2]|0; + $373 = (($370) + 4)|0; + $374 = $373; + $375 = HEAP32[$374>>2]|0; + $376 = (_bitshift64Ashr(0,($372|0),32)|0); $377 = tempRet0; - $378 = (_i64Add(($358|0),($359|0),($376|0),($377|0))|0); + $378 = (___muldi3(($376|0),($377|0),($368|0),($369|0))|0); $379 = tempRet0; - $380 = $in; - $381 = $380; - $382 = HEAP32[$381>>2]|0; - $383 = (($380) + 4)|0; - $384 = $383; - $385 = HEAP32[$384>>2]|0; - $386 = (_bitshift64Ashr(0,($382|0),32)|0); - $387 = tempRet0; - $388 = ((($in)) + 56|0); - $389 = $388; - $390 = $389; - $391 = HEAP32[$390>>2]|0; - $392 = (($389) + 4)|0; - $393 = $392; - $394 = HEAP32[$393>>2]|0; - $395 = (_bitshift64Ashr(0,($391|0),32)|0); - $396 = tempRet0; - $397 = (___muldi3(($395|0),($396|0),($386|0),($387|0))|0); + $380 = (_i64Add(($360|0),($361|0),($378|0),($379|0))|0); + $381 = tempRet0; + $382 = $1; + $383 = $382; + $384 = HEAP32[$383>>2]|0; + $385 = (($382) + 4)|0; + $386 = $385; + $387 = HEAP32[$386>>2]|0; + $388 = (_bitshift64Ashr(0,($384|0),32)|0); + $389 = tempRet0; + $390 = ((($1)) + 56|0); + $391 = $390; + $392 = $391; + $393 = HEAP32[$392>>2]|0; + $394 = (($391) + 4)|0; + $395 = $394; + $396 = HEAP32[$395>>2]|0; + $397 = (_bitshift64Ashr(0,($393|0),32)|0); $398 = tempRet0; - $399 = (_i64Add(($378|0),($379|0),($397|0),($398|0))|0); + $399 = (___muldi3(($397|0),($398|0),($388|0),($389|0))|0); $400 = tempRet0; - $401 = (_bitshift64Shl(($399|0),($400|0),1)|0); + $401 = (_i64Add(($380|0),($381|0),($399|0),($400|0))|0); $402 = tempRet0; - $403 = ((($output)) + 56|0); - $404 = $403; - $405 = $404; - HEAP32[$405>>2] = $401; - $406 = (($404) + 4)|0; + $403 = (_bitshift64Shl(($401|0),($402|0),1)|0); + $404 = tempRet0; + $405 = ((($0)) + 56|0); + $406 = $405; $407 = $406; - HEAP32[$407>>2] = $402; - $408 = $160; + HEAP32[$407>>2] = $403; + $408 = (($406) + 4)|0; $409 = $408; - $410 = HEAP32[$409>>2]|0; - $411 = (($408) + 4)|0; - $412 = $411; - $413 = HEAP32[$412>>2]|0; - $414 = (_bitshift64Ashr(0,($410|0),32)|0); - $415 = tempRet0; - $416 = (___muldi3(($414|0),($415|0),($414|0),($415|0))|0); + HEAP32[$409>>2] = $404; + $410 = $162; + $411 = $410; + $412 = HEAP32[$411>>2]|0; + $413 = (($410) + 4)|0; + $414 = $413; + $415 = HEAP32[$414>>2]|0; + $416 = (_bitshift64Ashr(0,($412|0),32)|0); $417 = tempRet0; - $418 = $56; - $419 = $418; - $420 = HEAP32[$419>>2]|0; - $421 = (($418) + 4)|0; - $422 = $421; - $423 = HEAP32[$422>>2]|0; - $424 = (_bitshift64Ashr(0,($420|0),32)|0); - $425 = tempRet0; - $426 = $282; - $427 = $426; - $428 = HEAP32[$427>>2]|0; - $429 = (($426) + 4)|0; - $430 = $429; - $431 = HEAP32[$430>>2]|0; - $432 = (_bitshift64Ashr(0,($428|0),32)|0); - $433 = tempRet0; - $434 = (___muldi3(($432|0),($433|0),($424|0),($425|0))|0); + $418 = (___muldi3(($416|0),($417|0),($416|0),($417|0))|0); + $419 = tempRet0; + $420 = $58; + $421 = $420; + $422 = HEAP32[$421>>2]|0; + $423 = (($420) + 4)|0; + $424 = $423; + $425 = HEAP32[$424>>2]|0; + $426 = (_bitshift64Ashr(0,($422|0),32)|0); + $427 = tempRet0; + $428 = $284; + $429 = $428; + $430 = HEAP32[$429>>2]|0; + $431 = (($428) + 4)|0; + $432 = $431; + $433 = HEAP32[$432>>2]|0; + $434 = (_bitshift64Ashr(0,($430|0),32)|0); $435 = tempRet0; - $436 = $in; - $437 = $436; - $438 = HEAP32[$437>>2]|0; - $439 = (($436) + 4)|0; - $440 = $439; - $441 = HEAP32[$440>>2]|0; - $442 = (_bitshift64Ashr(0,($438|0),32)|0); - $443 = tempRet0; - $444 = ((($in)) + 64|0); - $445 = $444; - $446 = $445; - $447 = HEAP32[$446>>2]|0; - $448 = (($445) + 4)|0; - $449 = $448; - $450 = HEAP32[$449>>2]|0; - $451 = (_bitshift64Ashr(0,($447|0),32)|0); - $452 = tempRet0; - $453 = (___muldi3(($451|0),($452|0),($442|0),($443|0))|0); + $436 = (___muldi3(($434|0),($435|0),($426|0),($427|0))|0); + $437 = tempRet0; + $438 = $1; + $439 = $438; + $440 = HEAP32[$439>>2]|0; + $441 = (($438) + 4)|0; + $442 = $441; + $443 = HEAP32[$442>>2]|0; + $444 = (_bitshift64Ashr(0,($440|0),32)|0); + $445 = tempRet0; + $446 = ((($1)) + 64|0); + $447 = $446; + $448 = $447; + $449 = HEAP32[$448>>2]|0; + $450 = (($447) + 4)|0; + $451 = $450; + $452 = HEAP32[$451>>2]|0; + $453 = (_bitshift64Ashr(0,($449|0),32)|0); $454 = tempRet0; - $455 = (_i64Add(($453|0),($454|0),($434|0),($435|0))|0); + $455 = (___muldi3(($453|0),($454|0),($444|0),($445|0))|0); $456 = tempRet0; - $457 = $22; - $458 = $457; - $459 = HEAP32[$458>>2]|0; - $460 = (($457) + 4)|0; - $461 = $460; - $462 = HEAP32[$461>>2]|0; - $463 = (_bitshift64Ashr(0,($459|0),32)|0); - $464 = tempRet0; - $465 = $388; - $466 = $465; - $467 = HEAP32[$466>>2]|0; - $468 = (($465) + 4)|0; - $469 = $468; - $470 = HEAP32[$469>>2]|0; - $471 = (_bitshift64Ashr(0,($467|0),32)|0); - $472 = tempRet0; - $473 = (___muldi3(($471|0),($472|0),($463|0),($464|0))|0); + $457 = (_i64Add(($455|0),($456|0),($436|0),($437|0))|0); + $458 = tempRet0; + $459 = $24; + $460 = $459; + $461 = HEAP32[$460>>2]|0; + $462 = (($459) + 4)|0; + $463 = $462; + $464 = HEAP32[$463>>2]|0; + $465 = (_bitshift64Ashr(0,($461|0),32)|0); + $466 = tempRet0; + $467 = $390; + $468 = $467; + $469 = HEAP32[$468>>2]|0; + $470 = (($467) + 4)|0; + $471 = $470; + $472 = HEAP32[$471>>2]|0; + $473 = (_bitshift64Ashr(0,($469|0),32)|0); $474 = tempRet0; - $475 = $102; - $476 = $475; - $477 = HEAP32[$476>>2]|0; - $478 = (($475) + 4)|0; - $479 = $478; - $480 = HEAP32[$479>>2]|0; - $481 = (_bitshift64Ashr(0,($477|0),32)|0); - $482 = tempRet0; - $483 = $224; - $484 = $483; - $485 = HEAP32[$484>>2]|0; - $486 = (($483) + 4)|0; - $487 = $486; - $488 = HEAP32[$487>>2]|0; - $489 = (_bitshift64Ashr(0,($485|0),32)|0); - $490 = tempRet0; - $491 = (___muldi3(($489|0),($490|0),($481|0),($482|0))|0); + $475 = (___muldi3(($473|0),($474|0),($465|0),($466|0))|0); + $476 = tempRet0; + $477 = $104; + $478 = $477; + $479 = HEAP32[$478>>2]|0; + $480 = (($477) + 4)|0; + $481 = $480; + $482 = HEAP32[$481>>2]|0; + $483 = (_bitshift64Ashr(0,($479|0),32)|0); + $484 = tempRet0; + $485 = $226; + $486 = $485; + $487 = HEAP32[$486>>2]|0; + $488 = (($485) + 4)|0; + $489 = $488; + $490 = HEAP32[$489>>2]|0; + $491 = (_bitshift64Ashr(0,($487|0),32)|0); $492 = tempRet0; - $493 = (_i64Add(($491|0),($492|0),($473|0),($474|0))|0); + $493 = (___muldi3(($491|0),($492|0),($483|0),($484|0))|0); $494 = tempRet0; - $495 = (_bitshift64Shl(($493|0),($494|0),1)|0); + $495 = (_i64Add(($493|0),($494|0),($475|0),($476|0))|0); $496 = tempRet0; - $497 = (_i64Add(($455|0),($456|0),($495|0),($496|0))|0); + $497 = (_bitshift64Shl(($495|0),($496|0),1)|0); $498 = tempRet0; - $499 = (_bitshift64Shl(($497|0),($498|0),1)|0); + $499 = (_i64Add(($457|0),($458|0),($497|0),($498|0))|0); $500 = tempRet0; - $501 = (_i64Add(($499|0),($500|0),($416|0),($417|0))|0); + $501 = (_bitshift64Shl(($499|0),($500|0),1)|0); $502 = tempRet0; - $503 = ((($output)) + 64|0); - $504 = $503; - $505 = $504; - HEAP32[$505>>2] = $501; - $506 = (($504) + 4)|0; + $503 = (_i64Add(($501|0),($502|0),($418|0),($419|0))|0); + $504 = tempRet0; + $505 = ((($0)) + 64|0); + $506 = $505; $507 = $506; - HEAP32[$507>>2] = $502; - $508 = $160; + HEAP32[$507>>2] = $503; + $508 = (($506) + 4)|0; $509 = $508; - $510 = HEAP32[$509>>2]|0; - $511 = (($508) + 4)|0; - $512 = $511; - $513 = HEAP32[$512>>2]|0; - $514 = (_bitshift64Ashr(0,($510|0),32)|0); - $515 = tempRet0; - $516 = $224; - $517 = $516; - $518 = HEAP32[$517>>2]|0; - $519 = (($516) + 4)|0; - $520 = $519; - $521 = HEAP32[$520>>2]|0; - $522 = (_bitshift64Ashr(0,($518|0),32)|0); - $523 = tempRet0; - $524 = (___muldi3(($522|0),($523|0),($514|0),($515|0))|0); + HEAP32[$509>>2] = $504; + $510 = $162; + $511 = $510; + $512 = HEAP32[$511>>2]|0; + $513 = (($510) + 4)|0; + $514 = $513; + $515 = HEAP32[$514>>2]|0; + $516 = (_bitshift64Ashr(0,($512|0),32)|0); + $517 = tempRet0; + $518 = $226; + $519 = $518; + $520 = HEAP32[$519>>2]|0; + $521 = (($518) + 4)|0; + $522 = $521; + $523 = HEAP32[$522>>2]|0; + $524 = (_bitshift64Ashr(0,($520|0),32)|0); $525 = tempRet0; - $526 = $102; - $527 = $526; - $528 = HEAP32[$527>>2]|0; - $529 = (($526) + 4)|0; - $530 = $529; - $531 = HEAP32[$530>>2]|0; - $532 = (_bitshift64Ashr(0,($528|0),32)|0); - $533 = tempRet0; - $534 = $282; - $535 = $534; - $536 = HEAP32[$535>>2]|0; - $537 = (($534) + 4)|0; - $538 = $537; - $539 = HEAP32[$538>>2]|0; - $540 = (_bitshift64Ashr(0,($536|0),32)|0); - $541 = tempRet0; - $542 = (___muldi3(($540|0),($541|0),($532|0),($533|0))|0); + $526 = (___muldi3(($524|0),($525|0),($516|0),($517|0))|0); + $527 = tempRet0; + $528 = $104; + $529 = $528; + $530 = HEAP32[$529>>2]|0; + $531 = (($528) + 4)|0; + $532 = $531; + $533 = HEAP32[$532>>2]|0; + $534 = (_bitshift64Ashr(0,($530|0),32)|0); + $535 = tempRet0; + $536 = $284; + $537 = $536; + $538 = HEAP32[$537>>2]|0; + $539 = (($536) + 4)|0; + $540 = $539; + $541 = HEAP32[$540>>2]|0; + $542 = (_bitshift64Ashr(0,($538|0),32)|0); $543 = tempRet0; - $544 = (_i64Add(($542|0),($543|0),($524|0),($525|0))|0); + $544 = (___muldi3(($542|0),($543|0),($534|0),($535|0))|0); $545 = tempRet0; - $546 = $56; - $547 = $546; - $548 = HEAP32[$547>>2]|0; - $549 = (($546) + 4)|0; - $550 = $549; - $551 = HEAP32[$550>>2]|0; - $552 = (_bitshift64Ashr(0,($548|0),32)|0); - $553 = tempRet0; - $554 = $388; - $555 = $554; - $556 = HEAP32[$555>>2]|0; - $557 = (($554) + 4)|0; - $558 = $557; - $559 = HEAP32[$558>>2]|0; - $560 = (_bitshift64Ashr(0,($556|0),32)|0); - $561 = tempRet0; - $562 = (___muldi3(($560|0),($561|0),($552|0),($553|0))|0); + $546 = (_i64Add(($544|0),($545|0),($526|0),($527|0))|0); + $547 = tempRet0; + $548 = $58; + $549 = $548; + $550 = HEAP32[$549>>2]|0; + $551 = (($548) + 4)|0; + $552 = $551; + $553 = HEAP32[$552>>2]|0; + $554 = (_bitshift64Ashr(0,($550|0),32)|0); + $555 = tempRet0; + $556 = $390; + $557 = $556; + $558 = HEAP32[$557>>2]|0; + $559 = (($556) + 4)|0; + $560 = $559; + $561 = HEAP32[$560>>2]|0; + $562 = (_bitshift64Ashr(0,($558|0),32)|0); $563 = tempRet0; - $564 = (_i64Add(($544|0),($545|0),($562|0),($563|0))|0); + $564 = (___muldi3(($562|0),($563|0),($554|0),($555|0))|0); $565 = tempRet0; - $566 = $22; - $567 = $566; - $568 = HEAP32[$567>>2]|0; - $569 = (($566) + 4)|0; - $570 = $569; - $571 = HEAP32[$570>>2]|0; - $572 = (_bitshift64Ashr(0,($568|0),32)|0); - $573 = tempRet0; - $574 = $444; - $575 = $574; - $576 = HEAP32[$575>>2]|0; - $577 = (($574) + 4)|0; - $578 = $577; - $579 = HEAP32[$578>>2]|0; - $580 = (_bitshift64Ashr(0,($576|0),32)|0); - $581 = tempRet0; - $582 = (___muldi3(($580|0),($581|0),($572|0),($573|0))|0); + $566 = (_i64Add(($546|0),($547|0),($564|0),($565|0))|0); + $567 = tempRet0; + $568 = $24; + $569 = $568; + $570 = HEAP32[$569>>2]|0; + $571 = (($568) + 4)|0; + $572 = $571; + $573 = HEAP32[$572>>2]|0; + $574 = (_bitshift64Ashr(0,($570|0),32)|0); + $575 = tempRet0; + $576 = $446; + $577 = $576; + $578 = HEAP32[$577>>2]|0; + $579 = (($576) + 4)|0; + $580 = $579; + $581 = HEAP32[$580>>2]|0; + $582 = (_bitshift64Ashr(0,($578|0),32)|0); $583 = tempRet0; - $584 = (_i64Add(($564|0),($565|0),($582|0),($583|0))|0); + $584 = (___muldi3(($582|0),($583|0),($574|0),($575|0))|0); $585 = tempRet0; - $586 = $in; - $587 = $586; - $588 = HEAP32[$587>>2]|0; - $589 = (($586) + 4)|0; - $590 = $589; - $591 = HEAP32[$590>>2]|0; - $592 = (_bitshift64Ashr(0,($588|0),32)|0); - $593 = tempRet0; - $594 = ((($in)) + 72|0); - $595 = $594; - $596 = $595; - $597 = HEAP32[$596>>2]|0; - $598 = (($595) + 4)|0; - $599 = $598; - $600 = HEAP32[$599>>2]|0; - $601 = (_bitshift64Ashr(0,($597|0),32)|0); - $602 = tempRet0; - $603 = (___muldi3(($601|0),($602|0),($592|0),($593|0))|0); + $586 = (_i64Add(($566|0),($567|0),($584|0),($585|0))|0); + $587 = tempRet0; + $588 = $1; + $589 = $588; + $590 = HEAP32[$589>>2]|0; + $591 = (($588) + 4)|0; + $592 = $591; + $593 = HEAP32[$592>>2]|0; + $594 = (_bitshift64Ashr(0,($590|0),32)|0); + $595 = tempRet0; + $596 = ((($1)) + 72|0); + $597 = $596; + $598 = $597; + $599 = HEAP32[$598>>2]|0; + $600 = (($597) + 4)|0; + $601 = $600; + $602 = HEAP32[$601>>2]|0; + $603 = (_bitshift64Ashr(0,($599|0),32)|0); $604 = tempRet0; - $605 = (_i64Add(($584|0),($585|0),($603|0),($604|0))|0); + $605 = (___muldi3(($603|0),($604|0),($594|0),($595|0))|0); $606 = tempRet0; - $607 = (_bitshift64Shl(($605|0),($606|0),1)|0); + $607 = (_i64Add(($586|0),($587|0),($605|0),($606|0))|0); $608 = tempRet0; - $609 = ((($output)) + 72|0); - $610 = $609; - $611 = $610; - HEAP32[$611>>2] = $607; - $612 = (($610) + 4)|0; + $609 = (_bitshift64Shl(($607|0),($608|0),1)|0); + $610 = tempRet0; + $611 = ((($0)) + 72|0); + $612 = $611; $613 = $612; - HEAP32[$613>>2] = $608; - $614 = $224; + HEAP32[$613>>2] = $609; + $614 = (($612) + 4)|0; $615 = $614; - $616 = HEAP32[$615>>2]|0; - $617 = (($614) + 4)|0; - $618 = $617; - $619 = HEAP32[$618>>2]|0; - $620 = (_bitshift64Ashr(0,($616|0),32)|0); - $621 = tempRet0; - $622 = (___muldi3(($620|0),($621|0),($620|0),($621|0))|0); + HEAP32[$615>>2] = $610; + $616 = $226; + $617 = $616; + $618 = HEAP32[$617>>2]|0; + $619 = (($616) + 4)|0; + $620 = $619; + $621 = HEAP32[$620>>2]|0; + $622 = (_bitshift64Ashr(0,($618|0),32)|0); $623 = tempRet0; - $624 = $160; - $625 = $624; - $626 = HEAP32[$625>>2]|0; - $627 = (($624) + 4)|0; - $628 = $627; - $629 = HEAP32[$628>>2]|0; - $630 = (_bitshift64Ashr(0,($626|0),32)|0); - $631 = tempRet0; - $632 = $282; - $633 = $632; - $634 = HEAP32[$633>>2]|0; - $635 = (($632) + 4)|0; - $636 = $635; - $637 = HEAP32[$636>>2]|0; - $638 = (_bitshift64Ashr(0,($634|0),32)|0); - $639 = tempRet0; - $640 = (___muldi3(($638|0),($639|0),($630|0),($631|0))|0); + $624 = (___muldi3(($622|0),($623|0),($622|0),($623|0))|0); + $625 = tempRet0; + $626 = $162; + $627 = $626; + $628 = HEAP32[$627>>2]|0; + $629 = (($626) + 4)|0; + $630 = $629; + $631 = HEAP32[$630>>2]|0; + $632 = (_bitshift64Ashr(0,($628|0),32)|0); + $633 = tempRet0; + $634 = $284; + $635 = $634; + $636 = HEAP32[$635>>2]|0; + $637 = (($634) + 4)|0; + $638 = $637; + $639 = HEAP32[$638>>2]|0; + $640 = (_bitshift64Ashr(0,($636|0),32)|0); $641 = tempRet0; - $642 = (_i64Add(($640|0),($641|0),($622|0),($623|0))|0); + $642 = (___muldi3(($640|0),($641|0),($632|0),($633|0))|0); $643 = tempRet0; - $644 = $56; - $645 = $644; - $646 = HEAP32[$645>>2]|0; - $647 = (($644) + 4)|0; - $648 = $647; - $649 = HEAP32[$648>>2]|0; - $650 = (_bitshift64Ashr(0,($646|0),32)|0); - $651 = tempRet0; - $652 = $444; - $653 = $652; - $654 = HEAP32[$653>>2]|0; - $655 = (($652) + 4)|0; - $656 = $655; - $657 = HEAP32[$656>>2]|0; - $658 = (_bitshift64Ashr(0,($654|0),32)|0); - $659 = tempRet0; - $660 = (___muldi3(($658|0),($659|0),($650|0),($651|0))|0); + $644 = (_i64Add(($642|0),($643|0),($624|0),($625|0))|0); + $645 = tempRet0; + $646 = $58; + $647 = $646; + $648 = HEAP32[$647>>2]|0; + $649 = (($646) + 4)|0; + $650 = $649; + $651 = HEAP32[$650>>2]|0; + $652 = (_bitshift64Ashr(0,($648|0),32)|0); + $653 = tempRet0; + $654 = $446; + $655 = $654; + $656 = HEAP32[$655>>2]|0; + $657 = (($654) + 4)|0; + $658 = $657; + $659 = HEAP32[$658>>2]|0; + $660 = (_bitshift64Ashr(0,($656|0),32)|0); $661 = tempRet0; - $662 = (_i64Add(($642|0),($643|0),($660|0),($661|0))|0); + $662 = (___muldi3(($660|0),($661|0),($652|0),($653|0))|0); $663 = tempRet0; - $664 = $102; - $665 = $664; - $666 = HEAP32[$665>>2]|0; - $667 = (($664) + 4)|0; - $668 = $667; - $669 = HEAP32[$668>>2]|0; - $670 = (_bitshift64Ashr(0,($666|0),32)|0); - $671 = tempRet0; - $672 = $388; - $673 = $672; - $674 = HEAP32[$673>>2]|0; - $675 = (($672) + 4)|0; - $676 = $675; - $677 = HEAP32[$676>>2]|0; - $678 = (_bitshift64Ashr(0,($674|0),32)|0); - $679 = tempRet0; - $680 = (___muldi3(($678|0),($679|0),($670|0),($671|0))|0); + $664 = (_i64Add(($644|0),($645|0),($662|0),($663|0))|0); + $665 = tempRet0; + $666 = $104; + $667 = $666; + $668 = HEAP32[$667>>2]|0; + $669 = (($666) + 4)|0; + $670 = $669; + $671 = HEAP32[$670>>2]|0; + $672 = (_bitshift64Ashr(0,($668|0),32)|0); + $673 = tempRet0; + $674 = $390; + $675 = $674; + $676 = HEAP32[$675>>2]|0; + $677 = (($674) + 4)|0; + $678 = $677; + $679 = HEAP32[$678>>2]|0; + $680 = (_bitshift64Ashr(0,($676|0),32)|0); $681 = tempRet0; - $682 = $22; - $683 = $682; - $684 = HEAP32[$683>>2]|0; - $685 = (($682) + 4)|0; - $686 = $685; - $687 = HEAP32[$686>>2]|0; - $688 = (_bitshift64Ashr(0,($684|0),32)|0); - $689 = tempRet0; - $690 = $594; - $691 = $690; - $692 = HEAP32[$691>>2]|0; - $693 = (($690) + 4)|0; - $694 = $693; - $695 = HEAP32[$694>>2]|0; - $696 = (_bitshift64Ashr(0,($692|0),32)|0); - $697 = tempRet0; - $698 = (___muldi3(($696|0),($697|0),($688|0),($689|0))|0); + $682 = (___muldi3(($680|0),($681|0),($672|0),($673|0))|0); + $683 = tempRet0; + $684 = $24; + $685 = $684; + $686 = HEAP32[$685>>2]|0; + $687 = (($684) + 4)|0; + $688 = $687; + $689 = HEAP32[$688>>2]|0; + $690 = (_bitshift64Ashr(0,($686|0),32)|0); + $691 = tempRet0; + $692 = $596; + $693 = $692; + $694 = HEAP32[$693>>2]|0; + $695 = (($692) + 4)|0; + $696 = $695; + $697 = HEAP32[$696>>2]|0; + $698 = (_bitshift64Ashr(0,($694|0),32)|0); $699 = tempRet0; - $700 = (_i64Add(($698|0),($699|0),($680|0),($681|0))|0); + $700 = (___muldi3(($698|0),($699|0),($690|0),($691|0))|0); $701 = tempRet0; - $702 = (_bitshift64Shl(($700|0),($701|0),1)|0); + $702 = (_i64Add(($700|0),($701|0),($682|0),($683|0))|0); $703 = tempRet0; - $704 = (_i64Add(($662|0),($663|0),($702|0),($703|0))|0); + $704 = (_bitshift64Shl(($702|0),($703|0),1)|0); $705 = tempRet0; - $706 = (_bitshift64Shl(($704|0),($705|0),1)|0); + $706 = (_i64Add(($664|0),($665|0),($704|0),($705|0))|0); $707 = tempRet0; - $708 = ((($output)) + 80|0); - $709 = $708; - $710 = $709; - HEAP32[$710>>2] = $706; - $711 = (($709) + 4)|0; + $708 = (_bitshift64Shl(($706|0),($707|0),1)|0); + $709 = tempRet0; + $710 = ((($0)) + 80|0); + $711 = $710; $712 = $711; - HEAP32[$712>>2] = $707; - $713 = $224; + HEAP32[$712>>2] = $708; + $713 = (($711) + 4)|0; $714 = $713; - $715 = HEAP32[$714>>2]|0; - $716 = (($713) + 4)|0; - $717 = $716; - $718 = HEAP32[$717>>2]|0; - $719 = (_bitshift64Ashr(0,($715|0),32)|0); - $720 = tempRet0; - $721 = $282; - $722 = $721; - $723 = HEAP32[$722>>2]|0; - $724 = (($721) + 4)|0; - $725 = $724; - $726 = HEAP32[$725>>2]|0; - $727 = (_bitshift64Ashr(0,($723|0),32)|0); - $728 = tempRet0; - $729 = (___muldi3(($727|0),($728|0),($719|0),($720|0))|0); + HEAP32[$714>>2] = $709; + $715 = $226; + $716 = $715; + $717 = HEAP32[$716>>2]|0; + $718 = (($715) + 4)|0; + $719 = $718; + $720 = HEAP32[$719>>2]|0; + $721 = (_bitshift64Ashr(0,($717|0),32)|0); + $722 = tempRet0; + $723 = $284; + $724 = $723; + $725 = HEAP32[$724>>2]|0; + $726 = (($723) + 4)|0; + $727 = $726; + $728 = HEAP32[$727>>2]|0; + $729 = (_bitshift64Ashr(0,($725|0),32)|0); $730 = tempRet0; - $731 = $160; - $732 = $731; - $733 = HEAP32[$732>>2]|0; - $734 = (($731) + 4)|0; - $735 = $734; - $736 = HEAP32[$735>>2]|0; - $737 = (_bitshift64Ashr(0,($733|0),32)|0); - $738 = tempRet0; - $739 = $388; - $740 = $739; - $741 = HEAP32[$740>>2]|0; - $742 = (($739) + 4)|0; - $743 = $742; - $744 = HEAP32[$743>>2]|0; - $745 = (_bitshift64Ashr(0,($741|0),32)|0); - $746 = tempRet0; - $747 = (___muldi3(($745|0),($746|0),($737|0),($738|0))|0); + $731 = (___muldi3(($729|0),($730|0),($721|0),($722|0))|0); + $732 = tempRet0; + $733 = $162; + $734 = $733; + $735 = HEAP32[$734>>2]|0; + $736 = (($733) + 4)|0; + $737 = $736; + $738 = HEAP32[$737>>2]|0; + $739 = (_bitshift64Ashr(0,($735|0),32)|0); + $740 = tempRet0; + $741 = $390; + $742 = $741; + $743 = HEAP32[$742>>2]|0; + $744 = (($741) + 4)|0; + $745 = $744; + $746 = HEAP32[$745>>2]|0; + $747 = (_bitshift64Ashr(0,($743|0),32)|0); $748 = tempRet0; - $749 = (_i64Add(($747|0),($748|0),($729|0),($730|0))|0); + $749 = (___muldi3(($747|0),($748|0),($739|0),($740|0))|0); $750 = tempRet0; - $751 = $102; - $752 = $751; - $753 = HEAP32[$752>>2]|0; - $754 = (($751) + 4)|0; - $755 = $754; - $756 = HEAP32[$755>>2]|0; - $757 = (_bitshift64Ashr(0,($753|0),32)|0); - $758 = tempRet0; - $759 = $444; - $760 = $759; - $761 = HEAP32[$760>>2]|0; - $762 = (($759) + 4)|0; - $763 = $762; - $764 = HEAP32[$763>>2]|0; - $765 = (_bitshift64Ashr(0,($761|0),32)|0); - $766 = tempRet0; - $767 = (___muldi3(($765|0),($766|0),($757|0),($758|0))|0); + $751 = (_i64Add(($749|0),($750|0),($731|0),($732|0))|0); + $752 = tempRet0; + $753 = $104; + $754 = $753; + $755 = HEAP32[$754>>2]|0; + $756 = (($753) + 4)|0; + $757 = $756; + $758 = HEAP32[$757>>2]|0; + $759 = (_bitshift64Ashr(0,($755|0),32)|0); + $760 = tempRet0; + $761 = $446; + $762 = $761; + $763 = HEAP32[$762>>2]|0; + $764 = (($761) + 4)|0; + $765 = $764; + $766 = HEAP32[$765>>2]|0; + $767 = (_bitshift64Ashr(0,($763|0),32)|0); $768 = tempRet0; - $769 = (_i64Add(($749|0),($750|0),($767|0),($768|0))|0); + $769 = (___muldi3(($767|0),($768|0),($759|0),($760|0))|0); $770 = tempRet0; - $771 = $56; - $772 = $771; - $773 = HEAP32[$772>>2]|0; - $774 = (($771) + 4)|0; - $775 = $774; - $776 = HEAP32[$775>>2]|0; - $777 = (_bitshift64Ashr(0,($773|0),32)|0); - $778 = tempRet0; - $779 = $594; - $780 = $779; - $781 = HEAP32[$780>>2]|0; - $782 = (($779) + 4)|0; - $783 = $782; - $784 = HEAP32[$783>>2]|0; - $785 = (_bitshift64Ashr(0,($781|0),32)|0); - $786 = tempRet0; - $787 = (___muldi3(($785|0),($786|0),($777|0),($778|0))|0); + $771 = (_i64Add(($751|0),($752|0),($769|0),($770|0))|0); + $772 = tempRet0; + $773 = $58; + $774 = $773; + $775 = HEAP32[$774>>2]|0; + $776 = (($773) + 4)|0; + $777 = $776; + $778 = HEAP32[$777>>2]|0; + $779 = (_bitshift64Ashr(0,($775|0),32)|0); + $780 = tempRet0; + $781 = $596; + $782 = $781; + $783 = HEAP32[$782>>2]|0; + $784 = (($781) + 4)|0; + $785 = $784; + $786 = HEAP32[$785>>2]|0; + $787 = (_bitshift64Ashr(0,($783|0),32)|0); $788 = tempRet0; - $789 = (_i64Add(($769|0),($770|0),($787|0),($788|0))|0); + $789 = (___muldi3(($787|0),($788|0),($779|0),($780|0))|0); $790 = tempRet0; - $791 = (_bitshift64Shl(($789|0),($790|0),1)|0); + $791 = (_i64Add(($771|0),($772|0),($789|0),($790|0))|0); $792 = tempRet0; - $793 = ((($output)) + 88|0); - $794 = $793; - $795 = $794; - HEAP32[$795>>2] = $791; - $796 = (($794) + 4)|0; + $793 = (_bitshift64Shl(($791|0),($792|0),1)|0); + $794 = tempRet0; + $795 = ((($0)) + 88|0); + $796 = $795; $797 = $796; - HEAP32[$797>>2] = $792; - $798 = $282; + HEAP32[$797>>2] = $793; + $798 = (($796) + 4)|0; $799 = $798; - $800 = HEAP32[$799>>2]|0; - $801 = (($798) + 4)|0; - $802 = $801; - $803 = HEAP32[$802>>2]|0; - $804 = (_bitshift64Ashr(0,($800|0),32)|0); - $805 = tempRet0; - $806 = (___muldi3(($804|0),($805|0),($804|0),($805|0))|0); + HEAP32[$799>>2] = $794; + $800 = $284; + $801 = $800; + $802 = HEAP32[$801>>2]|0; + $803 = (($800) + 4)|0; + $804 = $803; + $805 = HEAP32[$804>>2]|0; + $806 = (_bitshift64Ashr(0,($802|0),32)|0); $807 = tempRet0; - $808 = $160; - $809 = $808; - $810 = HEAP32[$809>>2]|0; - $811 = (($808) + 4)|0; - $812 = $811; - $813 = HEAP32[$812>>2]|0; - $814 = (_bitshift64Ashr(0,($810|0),32)|0); - $815 = tempRet0; - $816 = $444; - $817 = $816; - $818 = HEAP32[$817>>2]|0; - $819 = (($816) + 4)|0; - $820 = $819; - $821 = HEAP32[$820>>2]|0; - $822 = (_bitshift64Ashr(0,($818|0),32)|0); - $823 = tempRet0; - $824 = (___muldi3(($822|0),($823|0),($814|0),($815|0))|0); + $808 = (___muldi3(($806|0),($807|0),($806|0),($807|0))|0); + $809 = tempRet0; + $810 = $162; + $811 = $810; + $812 = HEAP32[$811>>2]|0; + $813 = (($810) + 4)|0; + $814 = $813; + $815 = HEAP32[$814>>2]|0; + $816 = (_bitshift64Ashr(0,($812|0),32)|0); + $817 = tempRet0; + $818 = $446; + $819 = $818; + $820 = HEAP32[$819>>2]|0; + $821 = (($818) + 4)|0; + $822 = $821; + $823 = HEAP32[$822>>2]|0; + $824 = (_bitshift64Ashr(0,($820|0),32)|0); $825 = tempRet0; - $826 = $224; - $827 = $826; - $828 = HEAP32[$827>>2]|0; - $829 = (($826) + 4)|0; - $830 = $829; - $831 = HEAP32[$830>>2]|0; - $832 = (_bitshift64Ashr(0,($828|0),32)|0); - $833 = tempRet0; - $834 = $388; - $835 = $834; - $836 = HEAP32[$835>>2]|0; - $837 = (($834) + 4)|0; - $838 = $837; - $839 = HEAP32[$838>>2]|0; - $840 = (_bitshift64Ashr(0,($836|0),32)|0); - $841 = tempRet0; - $842 = (___muldi3(($840|0),($841|0),($832|0),($833|0))|0); + $826 = (___muldi3(($824|0),($825|0),($816|0),($817|0))|0); + $827 = tempRet0; + $828 = $226; + $829 = $828; + $830 = HEAP32[$829>>2]|0; + $831 = (($828) + 4)|0; + $832 = $831; + $833 = HEAP32[$832>>2]|0; + $834 = (_bitshift64Ashr(0,($830|0),32)|0); + $835 = tempRet0; + $836 = $390; + $837 = $836; + $838 = HEAP32[$837>>2]|0; + $839 = (($836) + 4)|0; + $840 = $839; + $841 = HEAP32[$840>>2]|0; + $842 = (_bitshift64Ashr(0,($838|0),32)|0); $843 = tempRet0; - $844 = $102; - $845 = $844; - $846 = HEAP32[$845>>2]|0; - $847 = (($844) + 4)|0; - $848 = $847; - $849 = HEAP32[$848>>2]|0; - $850 = (_bitshift64Ashr(0,($846|0),32)|0); - $851 = tempRet0; - $852 = $594; - $853 = $852; - $854 = HEAP32[$853>>2]|0; - $855 = (($852) + 4)|0; - $856 = $855; - $857 = HEAP32[$856>>2]|0; - $858 = (_bitshift64Ashr(0,($854|0),32)|0); - $859 = tempRet0; - $860 = (___muldi3(($858|0),($859|0),($850|0),($851|0))|0); + $844 = (___muldi3(($842|0),($843|0),($834|0),($835|0))|0); + $845 = tempRet0; + $846 = $104; + $847 = $846; + $848 = HEAP32[$847>>2]|0; + $849 = (($846) + 4)|0; + $850 = $849; + $851 = HEAP32[$850>>2]|0; + $852 = (_bitshift64Ashr(0,($848|0),32)|0); + $853 = tempRet0; + $854 = $596; + $855 = $854; + $856 = HEAP32[$855>>2]|0; + $857 = (($854) + 4)|0; + $858 = $857; + $859 = HEAP32[$858>>2]|0; + $860 = (_bitshift64Ashr(0,($856|0),32)|0); $861 = tempRet0; - $862 = (_i64Add(($860|0),($861|0),($842|0),($843|0))|0); + $862 = (___muldi3(($860|0),($861|0),($852|0),($853|0))|0); $863 = tempRet0; - $864 = (_bitshift64Shl(($862|0),($863|0),1)|0); + $864 = (_i64Add(($862|0),($863|0),($844|0),($845|0))|0); $865 = tempRet0; - $866 = (_i64Add(($864|0),($865|0),($824|0),($825|0))|0); + $866 = (_bitshift64Shl(($864|0),($865|0),1)|0); $867 = tempRet0; - $868 = (_bitshift64Shl(($866|0),($867|0),1)|0); + $868 = (_i64Add(($866|0),($867|0),($826|0),($827|0))|0); $869 = tempRet0; - $870 = (_i64Add(($868|0),($869|0),($806|0),($807|0))|0); + $870 = (_bitshift64Shl(($868|0),($869|0),1)|0); $871 = tempRet0; - $872 = ((($output)) + 96|0); - $873 = $872; - $874 = $873; - HEAP32[$874>>2] = $870; - $875 = (($873) + 4)|0; + $872 = (_i64Add(($870|0),($871|0),($808|0),($809|0))|0); + $873 = tempRet0; + $874 = ((($0)) + 96|0); + $875 = $874; $876 = $875; - HEAP32[$876>>2] = $871; - $877 = $282; + HEAP32[$876>>2] = $872; + $877 = (($875) + 4)|0; $878 = $877; - $879 = HEAP32[$878>>2]|0; - $880 = (($877) + 4)|0; - $881 = $880; - $882 = HEAP32[$881>>2]|0; - $883 = (_bitshift64Ashr(0,($879|0),32)|0); - $884 = tempRet0; - $885 = $388; - $886 = $885; - $887 = HEAP32[$886>>2]|0; - $888 = (($885) + 4)|0; - $889 = $888; - $890 = HEAP32[$889>>2]|0; - $891 = (_bitshift64Ashr(0,($887|0),32)|0); - $892 = tempRet0; - $893 = (___muldi3(($891|0),($892|0),($883|0),($884|0))|0); + HEAP32[$878>>2] = $873; + $879 = $284; + $880 = $879; + $881 = HEAP32[$880>>2]|0; + $882 = (($879) + 4)|0; + $883 = $882; + $884 = HEAP32[$883>>2]|0; + $885 = (_bitshift64Ashr(0,($881|0),32)|0); + $886 = tempRet0; + $887 = $390; + $888 = $887; + $889 = HEAP32[$888>>2]|0; + $890 = (($887) + 4)|0; + $891 = $890; + $892 = HEAP32[$891>>2]|0; + $893 = (_bitshift64Ashr(0,($889|0),32)|0); $894 = tempRet0; - $895 = $224; - $896 = $895; - $897 = HEAP32[$896>>2]|0; - $898 = (($895) + 4)|0; - $899 = $898; - $900 = HEAP32[$899>>2]|0; - $901 = (_bitshift64Ashr(0,($897|0),32)|0); - $902 = tempRet0; - $903 = $444; - $904 = $903; - $905 = HEAP32[$904>>2]|0; - $906 = (($903) + 4)|0; - $907 = $906; - $908 = HEAP32[$907>>2]|0; - $909 = (_bitshift64Ashr(0,($905|0),32)|0); - $910 = tempRet0; - $911 = (___muldi3(($909|0),($910|0),($901|0),($902|0))|0); + $895 = (___muldi3(($893|0),($894|0),($885|0),($886|0))|0); + $896 = tempRet0; + $897 = $226; + $898 = $897; + $899 = HEAP32[$898>>2]|0; + $900 = (($897) + 4)|0; + $901 = $900; + $902 = HEAP32[$901>>2]|0; + $903 = (_bitshift64Ashr(0,($899|0),32)|0); + $904 = tempRet0; + $905 = $446; + $906 = $905; + $907 = HEAP32[$906>>2]|0; + $908 = (($905) + 4)|0; + $909 = $908; + $910 = HEAP32[$909>>2]|0; + $911 = (_bitshift64Ashr(0,($907|0),32)|0); $912 = tempRet0; - $913 = (_i64Add(($911|0),($912|0),($893|0),($894|0))|0); + $913 = (___muldi3(($911|0),($912|0),($903|0),($904|0))|0); $914 = tempRet0; - $915 = $160; - $916 = $915; - $917 = HEAP32[$916>>2]|0; - $918 = (($915) + 4)|0; - $919 = $918; - $920 = HEAP32[$919>>2]|0; - $921 = (_bitshift64Ashr(0,($917|0),32)|0); - $922 = tempRet0; - $923 = $594; - $924 = $923; - $925 = HEAP32[$924>>2]|0; - $926 = (($923) + 4)|0; - $927 = $926; - $928 = HEAP32[$927>>2]|0; - $929 = (_bitshift64Ashr(0,($925|0),32)|0); - $930 = tempRet0; - $931 = (___muldi3(($929|0),($930|0),($921|0),($922|0))|0); + $915 = (_i64Add(($913|0),($914|0),($895|0),($896|0))|0); + $916 = tempRet0; + $917 = $162; + $918 = $917; + $919 = HEAP32[$918>>2]|0; + $920 = (($917) + 4)|0; + $921 = $920; + $922 = HEAP32[$921>>2]|0; + $923 = (_bitshift64Ashr(0,($919|0),32)|0); + $924 = tempRet0; + $925 = $596; + $926 = $925; + $927 = HEAP32[$926>>2]|0; + $928 = (($925) + 4)|0; + $929 = $928; + $930 = HEAP32[$929>>2]|0; + $931 = (_bitshift64Ashr(0,($927|0),32)|0); $932 = tempRet0; - $933 = (_i64Add(($913|0),($914|0),($931|0),($932|0))|0); + $933 = (___muldi3(($931|0),($932|0),($923|0),($924|0))|0); $934 = tempRet0; - $935 = (_bitshift64Shl(($933|0),($934|0),1)|0); + $935 = (_i64Add(($915|0),($916|0),($933|0),($934|0))|0); $936 = tempRet0; - $937 = ((($output)) + 104|0); - $938 = $937; - $939 = $938; - HEAP32[$939>>2] = $935; - $940 = (($938) + 4)|0; + $937 = (_bitshift64Shl(($935|0),($936|0),1)|0); + $938 = tempRet0; + $939 = ((($0)) + 104|0); + $940 = $939; $941 = $940; - HEAP32[$941>>2] = $936; - $942 = $388; + HEAP32[$941>>2] = $937; + $942 = (($940) + 4)|0; $943 = $942; - $944 = HEAP32[$943>>2]|0; - $945 = (($942) + 4)|0; - $946 = $945; - $947 = HEAP32[$946>>2]|0; - $948 = (_bitshift64Ashr(0,($944|0),32)|0); - $949 = tempRet0; - $950 = (___muldi3(($948|0),($949|0),($948|0),($949|0))|0); + HEAP32[$943>>2] = $938; + $944 = $390; + $945 = $944; + $946 = HEAP32[$945>>2]|0; + $947 = (($944) + 4)|0; + $948 = $947; + $949 = HEAP32[$948>>2]|0; + $950 = (_bitshift64Ashr(0,($946|0),32)|0); $951 = tempRet0; - $952 = $282; - $953 = $952; - $954 = HEAP32[$953>>2]|0; - $955 = (($952) + 4)|0; - $956 = $955; - $957 = HEAP32[$956>>2]|0; - $958 = (_bitshift64Ashr(0,($954|0),32)|0); - $959 = tempRet0; - $960 = $444; - $961 = $960; - $962 = HEAP32[$961>>2]|0; - $963 = (($960) + 4)|0; - $964 = $963; - $965 = HEAP32[$964>>2]|0; - $966 = (_bitshift64Ashr(0,($962|0),32)|0); - $967 = tempRet0; - $968 = (___muldi3(($966|0),($967|0),($958|0),($959|0))|0); + $952 = (___muldi3(($950|0),($951|0),($950|0),($951|0))|0); + $953 = tempRet0; + $954 = $284; + $955 = $954; + $956 = HEAP32[$955>>2]|0; + $957 = (($954) + 4)|0; + $958 = $957; + $959 = HEAP32[$958>>2]|0; + $960 = (_bitshift64Ashr(0,($956|0),32)|0); + $961 = tempRet0; + $962 = $446; + $963 = $962; + $964 = HEAP32[$963>>2]|0; + $965 = (($962) + 4)|0; + $966 = $965; + $967 = HEAP32[$966>>2]|0; + $968 = (_bitshift64Ashr(0,($964|0),32)|0); $969 = tempRet0; - $970 = (_i64Add(($968|0),($969|0),($950|0),($951|0))|0); + $970 = (___muldi3(($968|0),($969|0),($960|0),($961|0))|0); $971 = tempRet0; - $972 = $224; - $973 = $972; - $974 = HEAP32[$973>>2]|0; - $975 = (($972) + 4)|0; - $976 = $975; - $977 = HEAP32[$976>>2]|0; - $978 = (_bitshift64Ashr(0,($974|0),31)|0); - $979 = tempRet0; - $980 = $594; - $981 = $980; - $982 = HEAP32[$981>>2]|0; - $983 = (($980) + 4)|0; - $984 = $983; - $985 = HEAP32[$984>>2]|0; - $986 = (_bitshift64Ashr(0,($982|0),32)|0); - $987 = tempRet0; - $988 = (___muldi3(($986|0),($987|0),($978|0),($979|0))|0); + $972 = (_i64Add(($970|0),($971|0),($952|0),($953|0))|0); + $973 = tempRet0; + $974 = $226; + $975 = $974; + $976 = HEAP32[$975>>2]|0; + $977 = (($974) + 4)|0; + $978 = $977; + $979 = HEAP32[$978>>2]|0; + $980 = (_bitshift64Ashr(0,($976|0),31)|0); + $981 = tempRet0; + $982 = $596; + $983 = $982; + $984 = HEAP32[$983>>2]|0; + $985 = (($982) + 4)|0; + $986 = $985; + $987 = HEAP32[$986>>2]|0; + $988 = (_bitshift64Ashr(0,($984|0),32)|0); $989 = tempRet0; - $990 = (_i64Add(($970|0),($971|0),($988|0),($989|0))|0); + $990 = (___muldi3(($988|0),($989|0),($980|0),($981|0))|0); $991 = tempRet0; - $992 = (_bitshift64Shl(($990|0),($991|0),1)|0); + $992 = (_i64Add(($972|0),($973|0),($990|0),($991|0))|0); $993 = tempRet0; - $994 = ((($output)) + 112|0); - $995 = $994; - $996 = $995; - HEAP32[$996>>2] = $992; - $997 = (($995) + 4)|0; + $994 = (_bitshift64Shl(($992|0),($993|0),1)|0); + $995 = tempRet0; + $996 = ((($0)) + 112|0); + $997 = $996; $998 = $997; - HEAP32[$998>>2] = $993; - $999 = $388; + HEAP32[$998>>2] = $994; + $999 = (($997) + 4)|0; $1000 = $999; - $1001 = HEAP32[$1000>>2]|0; - $1002 = (($999) + 4)|0; - $1003 = $1002; - $1004 = HEAP32[$1003>>2]|0; - $1005 = (_bitshift64Ashr(0,($1001|0),32)|0); - $1006 = tempRet0; - $1007 = $444; - $1008 = $1007; - $1009 = HEAP32[$1008>>2]|0; - $1010 = (($1007) + 4)|0; - $1011 = $1010; - $1012 = HEAP32[$1011>>2]|0; - $1013 = (_bitshift64Ashr(0,($1009|0),32)|0); - $1014 = tempRet0; - $1015 = (___muldi3(($1013|0),($1014|0),($1005|0),($1006|0))|0); + HEAP32[$1000>>2] = $995; + $1001 = $390; + $1002 = $1001; + $1003 = HEAP32[$1002>>2]|0; + $1004 = (($1001) + 4)|0; + $1005 = $1004; + $1006 = HEAP32[$1005>>2]|0; + $1007 = (_bitshift64Ashr(0,($1003|0),32)|0); + $1008 = tempRet0; + $1009 = $446; + $1010 = $1009; + $1011 = HEAP32[$1010>>2]|0; + $1012 = (($1009) + 4)|0; + $1013 = $1012; + $1014 = HEAP32[$1013>>2]|0; + $1015 = (_bitshift64Ashr(0,($1011|0),32)|0); $1016 = tempRet0; - $1017 = $282; - $1018 = $1017; - $1019 = HEAP32[$1018>>2]|0; - $1020 = (($1017) + 4)|0; - $1021 = $1020; - $1022 = HEAP32[$1021>>2]|0; - $1023 = (_bitshift64Ashr(0,($1019|0),32)|0); - $1024 = tempRet0; - $1025 = $594; - $1026 = $1025; - $1027 = HEAP32[$1026>>2]|0; - $1028 = (($1025) + 4)|0; - $1029 = $1028; - $1030 = HEAP32[$1029>>2]|0; - $1031 = (_bitshift64Ashr(0,($1027|0),32)|0); - $1032 = tempRet0; - $1033 = (___muldi3(($1031|0),($1032|0),($1023|0),($1024|0))|0); + $1017 = (___muldi3(($1015|0),($1016|0),($1007|0),($1008|0))|0); + $1018 = tempRet0; + $1019 = $284; + $1020 = $1019; + $1021 = HEAP32[$1020>>2]|0; + $1022 = (($1019) + 4)|0; + $1023 = $1022; + $1024 = HEAP32[$1023>>2]|0; + $1025 = (_bitshift64Ashr(0,($1021|0),32)|0); + $1026 = tempRet0; + $1027 = $596; + $1028 = $1027; + $1029 = HEAP32[$1028>>2]|0; + $1030 = (($1027) + 4)|0; + $1031 = $1030; + $1032 = HEAP32[$1031>>2]|0; + $1033 = (_bitshift64Ashr(0,($1029|0),32)|0); $1034 = tempRet0; - $1035 = (_i64Add(($1033|0),($1034|0),($1015|0),($1016|0))|0); + $1035 = (___muldi3(($1033|0),($1034|0),($1025|0),($1026|0))|0); $1036 = tempRet0; - $1037 = (_bitshift64Shl(($1035|0),($1036|0),1)|0); + $1037 = (_i64Add(($1035|0),($1036|0),($1017|0),($1018|0))|0); $1038 = tempRet0; - $1039 = ((($output)) + 120|0); - $1040 = $1039; - $1041 = $1040; - HEAP32[$1041>>2] = $1037; - $1042 = (($1040) + 4)|0; + $1039 = (_bitshift64Shl(($1037|0),($1038|0),1)|0); + $1040 = tempRet0; + $1041 = ((($0)) + 120|0); + $1042 = $1041; $1043 = $1042; - HEAP32[$1043>>2] = $1038; - $1044 = $444; + HEAP32[$1043>>2] = $1039; + $1044 = (($1042) + 4)|0; $1045 = $1044; - $1046 = HEAP32[$1045>>2]|0; - $1047 = (($1044) + 4)|0; - $1048 = $1047; - $1049 = HEAP32[$1048>>2]|0; - $1050 = (_bitshift64Ashr(0,($1046|0),32)|0); - $1051 = tempRet0; - $1052 = (___muldi3(($1050|0),($1051|0),($1050|0),($1051|0))|0); + HEAP32[$1045>>2] = $1040; + $1046 = $446; + $1047 = $1046; + $1048 = HEAP32[$1047>>2]|0; + $1049 = (($1046) + 4)|0; + $1050 = $1049; + $1051 = HEAP32[$1050>>2]|0; + $1052 = (_bitshift64Ashr(0,($1048|0),32)|0); $1053 = tempRet0; - $1054 = $388; - $1055 = $1054; - $1056 = HEAP32[$1055>>2]|0; - $1057 = (($1054) + 4)|0; - $1058 = $1057; - $1059 = HEAP32[$1058>>2]|0; - $1060 = (_bitshift64Ashr(0,($1056|0),30)|0); - $1061 = tempRet0; - $1062 = $594; - $1063 = $1062; - $1064 = HEAP32[$1063>>2]|0; - $1065 = (($1062) + 4)|0; - $1066 = $1065; - $1067 = HEAP32[$1066>>2]|0; - $1068 = (_bitshift64Ashr(0,($1064|0),32)|0); - $1069 = tempRet0; - $1070 = (___muldi3(($1068|0),($1069|0),($1060|0),($1061|0))|0); + $1054 = (___muldi3(($1052|0),($1053|0),($1052|0),($1053|0))|0); + $1055 = tempRet0; + $1056 = $390; + $1057 = $1056; + $1058 = HEAP32[$1057>>2]|0; + $1059 = (($1056) + 4)|0; + $1060 = $1059; + $1061 = HEAP32[$1060>>2]|0; + $1062 = (_bitshift64Ashr(0,($1058|0),30)|0); + $1063 = tempRet0; + $1064 = $596; + $1065 = $1064; + $1066 = HEAP32[$1065>>2]|0; + $1067 = (($1064) + 4)|0; + $1068 = $1067; + $1069 = HEAP32[$1068>>2]|0; + $1070 = (_bitshift64Ashr(0,($1066|0),32)|0); $1071 = tempRet0; - $1072 = (_i64Add(($1070|0),($1071|0),($1052|0),($1053|0))|0); + $1072 = (___muldi3(($1070|0),($1071|0),($1062|0),($1063|0))|0); $1073 = tempRet0; - $1074 = ((($output)) + 128|0); - $1075 = $1074; - $1076 = $1075; - HEAP32[$1076>>2] = $1072; - $1077 = (($1075) + 4)|0; + $1074 = (_i64Add(($1072|0),($1073|0),($1054|0),($1055|0))|0); + $1075 = tempRet0; + $1076 = ((($0)) + 128|0); + $1077 = $1076; $1078 = $1077; - HEAP32[$1078>>2] = $1073; - $1079 = $444; + HEAP32[$1078>>2] = $1074; + $1079 = (($1077) + 4)|0; $1080 = $1079; - $1081 = HEAP32[$1080>>2]|0; - $1082 = (($1079) + 4)|0; - $1083 = $1082; - $1084 = HEAP32[$1083>>2]|0; - $1085 = (_bitshift64Ashr(0,($1081|0),31)|0); - $1086 = tempRet0; - $1087 = $594; - $1088 = $1087; - $1089 = HEAP32[$1088>>2]|0; - $1090 = (($1087) + 4)|0; - $1091 = $1090; - $1092 = HEAP32[$1091>>2]|0; - $1093 = (_bitshift64Ashr(0,($1089|0),32)|0); - $1094 = tempRet0; - $1095 = (___muldi3(($1093|0),($1094|0),($1085|0),($1086|0))|0); + HEAP32[$1080>>2] = $1075; + $1081 = $446; + $1082 = $1081; + $1083 = HEAP32[$1082>>2]|0; + $1084 = (($1081) + 4)|0; + $1085 = $1084; + $1086 = HEAP32[$1085>>2]|0; + $1087 = (_bitshift64Ashr(0,($1083|0),31)|0); + $1088 = tempRet0; + $1089 = $596; + $1090 = $1089; + $1091 = HEAP32[$1090>>2]|0; + $1092 = (($1089) + 4)|0; + $1093 = $1092; + $1094 = HEAP32[$1093>>2]|0; + $1095 = (_bitshift64Ashr(0,($1091|0),32)|0); $1096 = tempRet0; - $1097 = ((($output)) + 136|0); - $1098 = $1097; - $1099 = $1098; - HEAP32[$1099>>2] = $1095; - $1100 = (($1098) + 4)|0; + $1097 = (___muldi3(($1095|0),($1096|0),($1087|0),($1088|0))|0); + $1098 = tempRet0; + $1099 = ((($0)) + 136|0); + $1100 = $1099; $1101 = $1100; - HEAP32[$1101>>2] = $1096; - $1102 = $594; + HEAP32[$1101>>2] = $1097; + $1102 = (($1100) + 4)|0; $1103 = $1102; - $1104 = HEAP32[$1103>>2]|0; - $1105 = (($1102) + 4)|0; - $1106 = $1105; - $1107 = HEAP32[$1106>>2]|0; - $1108 = (_bitshift64Ashr(0,($1104|0),32)|0); - $1109 = tempRet0; - $1110 = (_bitshift64Ashr(0,($1104|0),31)|0); + HEAP32[$1103>>2] = $1098; + $1104 = $596; + $1105 = $1104; + $1106 = HEAP32[$1105>>2]|0; + $1107 = (($1104) + 4)|0; + $1108 = $1107; + $1109 = HEAP32[$1108>>2]|0; + $1110 = (_bitshift64Ashr(0,($1106|0),32)|0); $1111 = tempRet0; - $1112 = (___muldi3(($1110|0),($1111|0),($1108|0),($1109|0))|0); + $1112 = (_bitshift64Ashr(0,($1106|0),31)|0); $1113 = tempRet0; - $1114 = ((($output)) + 144|0); - $1115 = $1114; - $1116 = $1115; - HEAP32[$1116>>2] = $1112; - $1117 = (($1115) + 4)|0; + $1114 = (___muldi3(($1112|0),($1113|0),($1110|0),($1111|0))|0); + $1115 = tempRet0; + $1116 = ((($0)) + 144|0); + $1117 = $1116; $1118 = $1117; - HEAP32[$1118>>2] = $1113; + HEAP32[$1118>>2] = $1114; + $1119 = (($1117) + 4)|0; + $1120 = $1119; + HEAP32[$1120>>2] = $1115; return; } -function _swap_conditional($a,$b,$0,$1) { - $a = $a|0; - $b = $b|0; +function _swap_conditional($0,$1,$2,$3) { $0 = $0|0; $1 = $1|0; - var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; - var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0; - var $9 = 0, $exitcond = 0, $i$02 = 0, label = 0, sp = 0; - sp = STACKTOP; - $2 = (_i64Subtract(0,0,($0|0),($1|0))|0); - $3 = tempRet0; - $i$02 = 0; - while(1) { - $4 = (($a) + ($i$02<<3)|0); - $5 = $4; - $6 = $5; - $7 = HEAP32[$6>>2]|0; - $8 = (($5) + 4)|0; - $9 = $8; - $10 = HEAP32[$9>>2]|0; - $11 = (($b) + ($i$02<<3)|0); - $12 = $11; - $13 = $12; - $14 = HEAP32[$13>>2]|0; - $15 = (($12) + 4)|0; - $16 = $15; - $17 = HEAP32[$16>>2]|0; - $18 = $14 ^ $7; - $19 = $17 ^ $10; - $20 = $18 & $2; - $21 = $19 & $3; - $22 = $20 ^ $7; - $21 ^ $10; - $23 = (_bitshift64Ashr(0,($22|0),32)|0); - $24 = tempRet0; - $25 = $4; - $26 = $25; - HEAP32[$26>>2] = $23; - $27 = (($25) + 4)|0; - $28 = $27; - HEAP32[$28>>2] = $24; - $29 = $11; - $30 = $29; - $31 = HEAP32[$30>>2]|0; - $32 = (($29) + 4)|0; - $33 = $32; - $34 = HEAP32[$33>>2]|0; - $35 = $20 ^ $31; - $21 ^ $34; - $36 = (_bitshift64Ashr(0,($35|0),32)|0); - $37 = tempRet0; - $38 = $11; - $39 = $38; - HEAP32[$39>>2] = $36; - $40 = (($38) + 4)|0; - $41 = $40; - HEAP32[$41>>2] = $37; - $42 = (($i$02) + 1)|0; - $exitcond = ($42|0)==(10); - if ($exitcond) { - break; - } else { - $i$02 = $42; - } - } - return; -} -function _fmonty($x2,$z2,$x3,$z3,$x,$z,$xprime,$zprime,$qmqp) { - $x2 = $x2|0; - $z2 = $z2|0; - $x3 = $x3|0; - $z3 = $z3|0; - $x = $x|0; - $z = $z|0; - $xprime = $xprime|0; - $zprime = $zprime|0; - $qmqp = $qmqp|0; - var $0 = 0, $origx = 0, $origxprime = 0, $xx = 0, $xxprime = 0, $xxxprime = 0, $zz = 0, $zzprime = 0, $zzz = 0, $zzzprime = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + $2 = $2|0; + $3 = $3|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0; + var $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0; + var $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0; + var $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0; + var $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0; + var $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0; + var $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0; + var $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0; + var $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0; + var $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0; + var $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; + var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0; + var $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0; + var $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0; + var label = 0, sp = 0; sp = STACKTOP; - STACKTOP = STACKTOP + 1232|0; - $origx = sp + 1144|0; - $origxprime = sp + 1064|0; - $zzz = sp + 912|0; - $xx = sp + 760|0; - $zz = sp + 608|0; - $xxprime = sp + 456|0; - $zzprime = sp + 304|0; - $zzzprime = sp + 152|0; - $xxxprime = sp; - dest=$origx; src=$x; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - _fsum($x,$z); - _fdifference($z,$origx); - dest=$origxprime; src=$xprime; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - _fsum($xprime,$zprime); - _fdifference($zprime,$origxprime); - _fproduct($xxprime,$xprime,$z); - _fproduct($zzprime,$x,$zprime); - _freduce_degree($xxprime); - _freduce_coefficients($xxprime); - _freduce_degree($zzprime); - _freduce_coefficients($zzprime); - dest=$origxprime; src=$xxprime; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - _fsum($xxprime,$zzprime); - _fdifference($zzprime,$origxprime); - _fsquare($xxxprime,$xxprime); - _fsquare($zzzprime,$zzprime); - _fproduct($zzprime,$zzzprime,$qmqp); - _freduce_degree($zzprime); - _freduce_coefficients($zzprime); - dest=$x3; src=$xxxprime; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - dest=$z3; src=$zzprime; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - _fsquare($xx,$x); - _fsquare($zz,$z); - _fproduct($x2,$xx,$zz); - _freduce_degree($x2); - _freduce_coefficients($x2); - _fdifference($zz,$xx); - $0 = ((($zzz)) + 80|0); - dest=$0; stop=dest+72|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); - _fscalar_product($zzz,$zz); - _freduce_coefficients($zzz); - _fsum($zzz,$xx); - _fproduct($z2,$zz,$zzz); - _freduce_degree($z2); - _freduce_coefficients($z2); - STACKTOP = sp;return; -} -function _fsum($output,$in) { - $output = $output|0; - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; - var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; - var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; - var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; - var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = $output; - $1 = $0; - $2 = HEAP32[$1>>2]|0; - $3 = (($0) + 4)|0; - $4 = $3; - $5 = HEAP32[$4>>2]|0; - $6 = $in; + $4 = (_i64Subtract(0,0,($2|0),($3|0))|0); + $5 = tempRet0; + $6 = $0; $7 = $6; $8 = HEAP32[$7>>2]|0; $9 = (($6) + 4)|0; $10 = $9; $11 = HEAP32[$10>>2]|0; - $12 = (_i64Add(($8|0),($11|0),($2|0),($5|0))|0); - $13 = tempRet0; - $14 = $output; - $15 = $14; - HEAP32[$15>>2] = $12; - $16 = (($14) + 4)|0; - $17 = $16; - HEAP32[$17>>2] = $13; - $18 = ((($output)) + 8|0); - $19 = $18; - $20 = $19; - $21 = HEAP32[$20>>2]|0; - $22 = (($19) + 4)|0; - $23 = $22; - $24 = HEAP32[$23>>2]|0; - $25 = ((($in)) + 8|0); + $12 = $1; + $13 = $12; + $14 = HEAP32[$13>>2]|0; + $15 = (($12) + 4)|0; + $16 = $15; + $17 = HEAP32[$16>>2]|0; + $18 = $14 ^ $8; + $19 = $17 ^ $11; + $20 = $18 & $4; + $21 = $19 & $5; + $22 = $20 ^ $8; + $21 ^ $11; + $23 = (_bitshift64Ashr(0,($22|0),32)|0); + $24 = tempRet0; + $25 = $0; $26 = $25; - $27 = $26; - $28 = HEAP32[$27>>2]|0; - $29 = (($26) + 4)|0; + HEAP32[$26>>2] = $23; + $27 = (($25) + 4)|0; + $28 = $27; + HEAP32[$28>>2] = $24; + $29 = $1; $30 = $29; $31 = HEAP32[$30>>2]|0; - $32 = (_i64Add(($28|0),($31|0),($21|0),($24|0))|0); - $33 = tempRet0; - $34 = $18; - $35 = $34; - HEAP32[$35>>2] = $32; - $36 = (($34) + 4)|0; - $37 = $36; - HEAP32[$37>>2] = $33; - $38 = ((($output)) + 16|0); + $32 = (($29) + 4)|0; + $33 = $32; + $34 = HEAP32[$33>>2]|0; + $35 = $31 ^ $20; + $34 ^ $21; + $36 = (_bitshift64Ashr(0,($35|0),32)|0); + $37 = tempRet0; + $38 = $1; $39 = $38; - $40 = $39; - $41 = HEAP32[$40>>2]|0; - $42 = (($39) + 4)|0; + HEAP32[$39>>2] = $36; + $40 = (($38) + 4)|0; + $41 = $40; + HEAP32[$41>>2] = $37; + $42 = ((($0)) + 8|0); $43 = $42; - $44 = HEAP32[$43>>2]|0; - $45 = ((($in)) + 16|0); - $46 = $45; + $44 = $43; + $45 = HEAP32[$44>>2]|0; + $46 = (($43) + 4)|0; $47 = $46; $48 = HEAP32[$47>>2]|0; - $49 = (($46) + 4)|0; + $49 = ((($1)) + 8|0); $50 = $49; - $51 = HEAP32[$50>>2]|0; - $52 = (_i64Add(($48|0),($51|0),($41|0),($44|0))|0); - $53 = tempRet0; - $54 = $38; - $55 = $54; - HEAP32[$55>>2] = $52; - $56 = (($54) + 4)|0; - $57 = $56; - HEAP32[$57>>2] = $53; - $58 = ((($output)) + 24|0); - $59 = $58; - $60 = $59; - $61 = HEAP32[$60>>2]|0; - $62 = (($59) + 4)|0; - $63 = $62; - $64 = HEAP32[$63>>2]|0; - $65 = ((($in)) + 24|0); + $51 = $50; + $52 = HEAP32[$51>>2]|0; + $53 = (($50) + 4)|0; + $54 = $53; + $55 = HEAP32[$54>>2]|0; + $56 = $52 ^ $45; + $57 = $55 ^ $48; + $58 = $56 & $4; + $59 = $57 & $5; + $60 = $58 ^ $45; + $59 ^ $48; + $61 = (_bitshift64Ashr(0,($60|0),32)|0); + $62 = tempRet0; + $63 = $42; + $64 = $63; + HEAP32[$64>>2] = $61; + $65 = (($63) + 4)|0; $66 = $65; - $67 = $66; - $68 = HEAP32[$67>>2]|0; - $69 = (($66) + 4)|0; - $70 = $69; - $71 = HEAP32[$70>>2]|0; - $72 = (_i64Add(($68|0),($71|0),($61|0),($64|0))|0); - $73 = tempRet0; - $74 = $58; - $75 = $74; - HEAP32[$75>>2] = $72; - $76 = (($74) + 4)|0; + HEAP32[$66>>2] = $62; + $67 = $49; + $68 = $67; + $69 = HEAP32[$68>>2]|0; + $70 = (($67) + 4)|0; + $71 = $70; + $72 = HEAP32[$71>>2]|0; + $73 = $69 ^ $58; + $72 ^ $59; + $74 = (_bitshift64Ashr(0,($73|0),32)|0); + $75 = tempRet0; + $76 = $49; $77 = $76; - HEAP32[$77>>2] = $73; - $78 = ((($output)) + 32|0); + HEAP32[$77>>2] = $74; + $78 = (($76) + 4)|0; $79 = $78; - $80 = $79; - $81 = HEAP32[$80>>2]|0; - $82 = (($79) + 4)|0; - $83 = $82; - $84 = HEAP32[$83>>2]|0; - $85 = ((($in)) + 32|0); - $86 = $85; - $87 = $86; - $88 = HEAP32[$87>>2]|0; - $89 = (($86) + 4)|0; - $90 = $89; - $91 = HEAP32[$90>>2]|0; - $92 = (_i64Add(($88|0),($91|0),($81|0),($84|0))|0); - $93 = tempRet0; - $94 = $78; - $95 = $94; - HEAP32[$95>>2] = $92; - $96 = (($94) + 4)|0; - $97 = $96; - HEAP32[$97>>2] = $93; - $98 = ((($output)) + 40|0); - $99 = $98; - $100 = $99; - $101 = HEAP32[$100>>2]|0; - $102 = (($99) + 4)|0; - $103 = $102; - $104 = HEAP32[$103>>2]|0; - $105 = ((($in)) + 40|0); + HEAP32[$79>>2] = $75; + $80 = ((($0)) + 16|0); + $81 = $80; + $82 = $81; + $83 = HEAP32[$82>>2]|0; + $84 = (($81) + 4)|0; + $85 = $84; + $86 = HEAP32[$85>>2]|0; + $87 = ((($1)) + 16|0); + $88 = $87; + $89 = $88; + $90 = HEAP32[$89>>2]|0; + $91 = (($88) + 4)|0; + $92 = $91; + $93 = HEAP32[$92>>2]|0; + $94 = $90 ^ $83; + $95 = $93 ^ $86; + $96 = $94 & $4; + $97 = $95 & $5; + $98 = $96 ^ $83; + $97 ^ $86; + $99 = (_bitshift64Ashr(0,($98|0),32)|0); + $100 = tempRet0; + $101 = $80; + $102 = $101; + HEAP32[$102>>2] = $99; + $103 = (($101) + 4)|0; + $104 = $103; + HEAP32[$104>>2] = $100; + $105 = $87; $106 = $105; - $107 = $106; - $108 = HEAP32[$107>>2]|0; - $109 = (($106) + 4)|0; - $110 = $109; - $111 = HEAP32[$110>>2]|0; - $112 = (_i64Add(($108|0),($111|0),($101|0),($104|0))|0); + $107 = HEAP32[$106>>2]|0; + $108 = (($105) + 4)|0; + $109 = $108; + $110 = HEAP32[$109>>2]|0; + $111 = $107 ^ $96; + $110 ^ $97; + $112 = (_bitshift64Ashr(0,($111|0),32)|0); $113 = tempRet0; - $114 = $98; + $114 = $87; $115 = $114; HEAP32[$115>>2] = $112; $116 = (($114) + 4)|0; $117 = $116; HEAP32[$117>>2] = $113; - $118 = ((($output)) + 48|0); + $118 = ((($0)) + 24|0); $119 = $118; $120 = $119; $121 = HEAP32[$120>>2]|0; $122 = (($119) + 4)|0; $123 = $122; $124 = HEAP32[$123>>2]|0; - $125 = ((($in)) + 48|0); + $125 = ((($1)) + 24|0); $126 = $125; $127 = $126; $128 = HEAP32[$127>>2]|0; $129 = (($126) + 4)|0; $130 = $129; $131 = HEAP32[$130>>2]|0; - $132 = (_i64Add(($128|0),($131|0),($121|0),($124|0))|0); - $133 = tempRet0; - $134 = $118; - $135 = $134; - HEAP32[$135>>2] = $132; - $136 = (($134) + 4)|0; - $137 = $136; - HEAP32[$137>>2] = $133; - $138 = ((($output)) + 56|0); - $139 = $138; + $132 = $128 ^ $121; + $133 = $131 ^ $124; + $134 = $132 & $4; + $135 = $133 & $5; + $136 = $134 ^ $121; + $135 ^ $124; + $137 = (_bitshift64Ashr(0,($136|0),32)|0); + $138 = tempRet0; + $139 = $118; $140 = $139; - $141 = HEAP32[$140>>2]|0; - $142 = (($139) + 4)|0; - $143 = $142; - $144 = HEAP32[$143>>2]|0; - $145 = ((($in)) + 56|0); - $146 = $145; + HEAP32[$140>>2] = $137; + $141 = (($139) + 4)|0; + $142 = $141; + HEAP32[$142>>2] = $138; + $143 = $125; + $144 = $143; + $145 = HEAP32[$144>>2]|0; + $146 = (($143) + 4)|0; $147 = $146; $148 = HEAP32[$147>>2]|0; - $149 = (($146) + 4)|0; - $150 = $149; - $151 = HEAP32[$150>>2]|0; - $152 = (_i64Add(($148|0),($151|0),($141|0),($144|0))|0); - $153 = tempRet0; - $154 = $138; + $149 = $145 ^ $134; + $148 ^ $135; + $150 = (_bitshift64Ashr(0,($149|0),32)|0); + $151 = tempRet0; + $152 = $125; + $153 = $152; + HEAP32[$153>>2] = $150; + $154 = (($152) + 4)|0; $155 = $154; - HEAP32[$155>>2] = $152; - $156 = (($154) + 4)|0; + HEAP32[$155>>2] = $151; + $156 = ((($0)) + 32|0); $157 = $156; - HEAP32[$157>>2] = $153; - $158 = ((($output)) + 64|0); - $159 = $158; - $160 = $159; - $161 = HEAP32[$160>>2]|0; - $162 = (($159) + 4)|0; - $163 = $162; - $164 = HEAP32[$163>>2]|0; - $165 = ((($in)) + 64|0); - $166 = $165; - $167 = $166; - $168 = HEAP32[$167>>2]|0; - $169 = (($166) + 4)|0; - $170 = $169; - $171 = HEAP32[$170>>2]|0; - $172 = (_i64Add(($168|0),($171|0),($161|0),($164|0))|0); - $173 = tempRet0; - $174 = $158; - $175 = $174; - HEAP32[$175>>2] = $172; - $176 = (($174) + 4)|0; - $177 = $176; - HEAP32[$177>>2] = $173; - $178 = ((($output)) + 72|0); - $179 = $178; + $158 = $157; + $159 = HEAP32[$158>>2]|0; + $160 = (($157) + 4)|0; + $161 = $160; + $162 = HEAP32[$161>>2]|0; + $163 = ((($1)) + 32|0); + $164 = $163; + $165 = $164; + $166 = HEAP32[$165>>2]|0; + $167 = (($164) + 4)|0; + $168 = $167; + $169 = HEAP32[$168>>2]|0; + $170 = $166 ^ $159; + $171 = $169 ^ $162; + $172 = $170 & $4; + $173 = $171 & $5; + $174 = $172 ^ $159; + $173 ^ $162; + $175 = (_bitshift64Ashr(0,($174|0),32)|0); + $176 = tempRet0; + $177 = $156; + $178 = $177; + HEAP32[$178>>2] = $175; + $179 = (($177) + 4)|0; $180 = $179; - $181 = HEAP32[$180>>2]|0; - $182 = (($179) + 4)|0; - $183 = $182; - $184 = HEAP32[$183>>2]|0; - $185 = ((($in)) + 72|0); - $186 = $185; - $187 = $186; - $188 = HEAP32[$187>>2]|0; - $189 = (($186) + 4)|0; - $190 = $189; - $191 = HEAP32[$190>>2]|0; - $192 = (_i64Add(($188|0),($191|0),($181|0),($184|0))|0); - $193 = tempRet0; - $194 = $178; + HEAP32[$180>>2] = $176; + $181 = $163; + $182 = $181; + $183 = HEAP32[$182>>2]|0; + $184 = (($181) + 4)|0; + $185 = $184; + $186 = HEAP32[$185>>2]|0; + $187 = $183 ^ $172; + $186 ^ $173; + $188 = (_bitshift64Ashr(0,($187|0),32)|0); + $189 = tempRet0; + $190 = $163; + $191 = $190; + HEAP32[$191>>2] = $188; + $192 = (($190) + 4)|0; + $193 = $192; + HEAP32[$193>>2] = $189; + $194 = ((($0)) + 40|0); $195 = $194; - HEAP32[$195>>2] = $192; - $196 = (($194) + 4)|0; - $197 = $196; - HEAP32[$197>>2] = $193; + $196 = $195; + $197 = HEAP32[$196>>2]|0; + $198 = (($195) + 4)|0; + $199 = $198; + $200 = HEAP32[$199>>2]|0; + $201 = ((($1)) + 40|0); + $202 = $201; + $203 = $202; + $204 = HEAP32[$203>>2]|0; + $205 = (($202) + 4)|0; + $206 = $205; + $207 = HEAP32[$206>>2]|0; + $208 = $204 ^ $197; + $209 = $207 ^ $200; + $210 = $208 & $4; + $211 = $209 & $5; + $212 = $210 ^ $197; + $211 ^ $200; + $213 = (_bitshift64Ashr(0,($212|0),32)|0); + $214 = tempRet0; + $215 = $194; + $216 = $215; + HEAP32[$216>>2] = $213; + $217 = (($215) + 4)|0; + $218 = $217; + HEAP32[$218>>2] = $214; + $219 = $201; + $220 = $219; + $221 = HEAP32[$220>>2]|0; + $222 = (($219) + 4)|0; + $223 = $222; + $224 = HEAP32[$223>>2]|0; + $225 = $221 ^ $210; + $224 ^ $211; + $226 = (_bitshift64Ashr(0,($225|0),32)|0); + $227 = tempRet0; + $228 = $201; + $229 = $228; + HEAP32[$229>>2] = $226; + $230 = (($228) + 4)|0; + $231 = $230; + HEAP32[$231>>2] = $227; + $232 = ((($0)) + 48|0); + $233 = $232; + $234 = $233; + $235 = HEAP32[$234>>2]|0; + $236 = (($233) + 4)|0; + $237 = $236; + $238 = HEAP32[$237>>2]|0; + $239 = ((($1)) + 48|0); + $240 = $239; + $241 = $240; + $242 = HEAP32[$241>>2]|0; + $243 = (($240) + 4)|0; + $244 = $243; + $245 = HEAP32[$244>>2]|0; + $246 = $242 ^ $235; + $247 = $245 ^ $238; + $248 = $246 & $4; + $249 = $247 & $5; + $250 = $248 ^ $235; + $249 ^ $238; + $251 = (_bitshift64Ashr(0,($250|0),32)|0); + $252 = tempRet0; + $253 = $232; + $254 = $253; + HEAP32[$254>>2] = $251; + $255 = (($253) + 4)|0; + $256 = $255; + HEAP32[$256>>2] = $252; + $257 = $239; + $258 = $257; + $259 = HEAP32[$258>>2]|0; + $260 = (($257) + 4)|0; + $261 = $260; + $262 = HEAP32[$261>>2]|0; + $263 = $259 ^ $248; + $262 ^ $249; + $264 = (_bitshift64Ashr(0,($263|0),32)|0); + $265 = tempRet0; + $266 = $239; + $267 = $266; + HEAP32[$267>>2] = $264; + $268 = (($266) + 4)|0; + $269 = $268; + HEAP32[$269>>2] = $265; + $270 = ((($0)) + 56|0); + $271 = $270; + $272 = $271; + $273 = HEAP32[$272>>2]|0; + $274 = (($271) + 4)|0; + $275 = $274; + $276 = HEAP32[$275>>2]|0; + $277 = ((($1)) + 56|0); + $278 = $277; + $279 = $278; + $280 = HEAP32[$279>>2]|0; + $281 = (($278) + 4)|0; + $282 = $281; + $283 = HEAP32[$282>>2]|0; + $284 = $280 ^ $273; + $285 = $283 ^ $276; + $286 = $284 & $4; + $287 = $285 & $5; + $288 = $286 ^ $273; + $287 ^ $276; + $289 = (_bitshift64Ashr(0,($288|0),32)|0); + $290 = tempRet0; + $291 = $270; + $292 = $291; + HEAP32[$292>>2] = $289; + $293 = (($291) + 4)|0; + $294 = $293; + HEAP32[$294>>2] = $290; + $295 = $277; + $296 = $295; + $297 = HEAP32[$296>>2]|0; + $298 = (($295) + 4)|0; + $299 = $298; + $300 = HEAP32[$299>>2]|0; + $301 = $297 ^ $286; + $300 ^ $287; + $302 = (_bitshift64Ashr(0,($301|0),32)|0); + $303 = tempRet0; + $304 = $277; + $305 = $304; + HEAP32[$305>>2] = $302; + $306 = (($304) + 4)|0; + $307 = $306; + HEAP32[$307>>2] = $303; + $308 = ((($0)) + 64|0); + $309 = $308; + $310 = $309; + $311 = HEAP32[$310>>2]|0; + $312 = (($309) + 4)|0; + $313 = $312; + $314 = HEAP32[$313>>2]|0; + $315 = ((($1)) + 64|0); + $316 = $315; + $317 = $316; + $318 = HEAP32[$317>>2]|0; + $319 = (($316) + 4)|0; + $320 = $319; + $321 = HEAP32[$320>>2]|0; + $322 = $318 ^ $311; + $323 = $321 ^ $314; + $324 = $322 & $4; + $325 = $323 & $5; + $326 = $324 ^ $311; + $325 ^ $314; + $327 = (_bitshift64Ashr(0,($326|0),32)|0); + $328 = tempRet0; + $329 = $308; + $330 = $329; + HEAP32[$330>>2] = $327; + $331 = (($329) + 4)|0; + $332 = $331; + HEAP32[$332>>2] = $328; + $333 = $315; + $334 = $333; + $335 = HEAP32[$334>>2]|0; + $336 = (($333) + 4)|0; + $337 = $336; + $338 = HEAP32[$337>>2]|0; + $339 = $335 ^ $324; + $338 ^ $325; + $340 = (_bitshift64Ashr(0,($339|0),32)|0); + $341 = tempRet0; + $342 = $315; + $343 = $342; + HEAP32[$343>>2] = $340; + $344 = (($342) + 4)|0; + $345 = $344; + HEAP32[$345>>2] = $341; + $346 = ((($0)) + 72|0); + $347 = $346; + $348 = $347; + $349 = HEAP32[$348>>2]|0; + $350 = (($347) + 4)|0; + $351 = $350; + $352 = HEAP32[$351>>2]|0; + $353 = ((($1)) + 72|0); + $354 = $353; + $355 = $354; + $356 = HEAP32[$355>>2]|0; + $357 = (($354) + 4)|0; + $358 = $357; + $359 = HEAP32[$358>>2]|0; + $360 = $356 ^ $349; + $361 = $359 ^ $352; + $362 = $360 & $4; + $363 = $361 & $5; + $364 = $362 ^ $349; + $363 ^ $352; + $365 = (_bitshift64Ashr(0,($364|0),32)|0); + $366 = tempRet0; + $367 = $346; + $368 = $367; + HEAP32[$368>>2] = $365; + $369 = (($367) + 4)|0; + $370 = $369; + HEAP32[$370>>2] = $366; + $371 = $353; + $372 = $371; + $373 = HEAP32[$372>>2]|0; + $374 = (($371) + 4)|0; + $375 = $374; + $376 = HEAP32[$375>>2]|0; + $377 = $373 ^ $362; + $376 ^ $363; + $378 = (_bitshift64Ashr(0,($377|0),32)|0); + $379 = tempRet0; + $380 = $353; + $381 = $380; + HEAP32[$381>>2] = $378; + $382 = (($380) + 4)|0; + $383 = $382; + HEAP32[$383>>2] = $379; return; } -function _fdifference($output,$in) { - $output = $output|0; - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; +function _fmonty($0,$1,$2,$3,$4,$5,$6,$7,$8) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + $4 = $4|0; + $5 = $5|0; + $6 = $6|0; + $7 = $7|0; + $8 = $8|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $9 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 1232|0; + $9 = sp + 1144|0; + $10 = sp + 1064|0; + $11 = sp + 912|0; + $12 = sp + 760|0; + $13 = sp + 608|0; + $14 = sp + 456|0; + $15 = sp + 304|0; + $16 = sp + 152|0; + $17 = sp; + dest=$9; src=$4; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsum($4,$5); + _fdifference($5,$9); + dest=$10; src=$6; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsum($6,$7); + _fdifference($7,$10); + _fproduct($14,$6,$5); + _fproduct($15,$4,$7); + _freduce_degree($14); + _freduce_coefficients($14); + _freduce_degree($15); + _freduce_coefficients($15); + dest=$10; src=$14; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsum($14,$15); + _fdifference($15,$10); + _fsquare($17,$14); + _fsquare($16,$15); + _fproduct($15,$16,$8); + _freduce_degree($15); + _freduce_coefficients($15); + dest=$2; src=$17; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + dest=$3; src=$15; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsquare($12,$4); + _fsquare($13,$5); + _fproduct($0,$12,$13); + _freduce_degree($0); + _freduce_coefficients($0); + _fdifference($13,$12); + $18 = ((($11)) + 80|0); + dest=$18; stop=dest+72|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); + _fscalar_product($11,$13); + _freduce_coefficients($11); + _fsum($11,$12); + _fproduct($1,$13,$11); + _freduce_degree($1); + _freduce_coefficients($1); + STACKTOP = sp;return; +} +function _fsum($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = $in; - $1 = $0; - $2 = HEAP32[$1>>2]|0; - $3 = (($0) + 4)|0; - $4 = $3; - $5 = HEAP32[$4>>2]|0; - $6 = $output; - $7 = $6; - $8 = HEAP32[$7>>2]|0; - $9 = (($6) + 4)|0; - $10 = $9; - $11 = HEAP32[$10>>2]|0; - $12 = (_i64Subtract(($2|0),($5|0),($8|0),($11|0))|0); - $13 = tempRet0; - $14 = $output; - $15 = $14; - HEAP32[$15>>2] = $12; - $16 = (($14) + 4)|0; + $2 = $0; + $3 = $2; + $4 = HEAP32[$3>>2]|0; + $5 = (($2) + 4)|0; + $6 = $5; + $7 = HEAP32[$6>>2]|0; + $8 = $1; + $9 = $8; + $10 = HEAP32[$9>>2]|0; + $11 = (($8) + 4)|0; + $12 = $11; + $13 = HEAP32[$12>>2]|0; + $14 = (_i64Add(($10|0),($13|0),($4|0),($7|0))|0); + $15 = tempRet0; + $16 = $0; $17 = $16; - HEAP32[$17>>2] = $13; - $18 = ((($in)) + 8|0); + HEAP32[$17>>2] = $14; + $18 = (($16) + 4)|0; $19 = $18; - $20 = $19; - $21 = HEAP32[$20>>2]|0; - $22 = (($19) + 4)|0; - $23 = $22; - $24 = HEAP32[$23>>2]|0; - $25 = ((($output)) + 8|0); - $26 = $25; - $27 = $26; - $28 = HEAP32[$27>>2]|0; - $29 = (($26) + 4)|0; - $30 = $29; - $31 = HEAP32[$30>>2]|0; - $32 = (_i64Subtract(($21|0),($24|0),($28|0),($31|0))|0); - $33 = tempRet0; - $34 = $25; - $35 = $34; - HEAP32[$35>>2] = $32; - $36 = (($34) + 4)|0; + HEAP32[$19>>2] = $15; + $20 = ((($0)) + 8|0); + $21 = $20; + $22 = $21; + $23 = HEAP32[$22>>2]|0; + $24 = (($21) + 4)|0; + $25 = $24; + $26 = HEAP32[$25>>2]|0; + $27 = ((($1)) + 8|0); + $28 = $27; + $29 = $28; + $30 = HEAP32[$29>>2]|0; + $31 = (($28) + 4)|0; + $32 = $31; + $33 = HEAP32[$32>>2]|0; + $34 = (_i64Add(($30|0),($33|0),($23|0),($26|0))|0); + $35 = tempRet0; + $36 = $20; $37 = $36; - HEAP32[$37>>2] = $33; - $38 = ((($in)) + 16|0); + HEAP32[$37>>2] = $34; + $38 = (($36) + 4)|0; $39 = $38; - $40 = $39; - $41 = HEAP32[$40>>2]|0; - $42 = (($39) + 4)|0; - $43 = $42; - $44 = HEAP32[$43>>2]|0; - $45 = ((($output)) + 16|0); - $46 = $45; - $47 = $46; - $48 = HEAP32[$47>>2]|0; - $49 = (($46) + 4)|0; - $50 = $49; - $51 = HEAP32[$50>>2]|0; - $52 = (_i64Subtract(($41|0),($44|0),($48|0),($51|0))|0); - $53 = tempRet0; - $54 = $45; - $55 = $54; - HEAP32[$55>>2] = $52; - $56 = (($54) + 4)|0; + HEAP32[$39>>2] = $35; + $40 = ((($0)) + 16|0); + $41 = $40; + $42 = $41; + $43 = HEAP32[$42>>2]|0; + $44 = (($41) + 4)|0; + $45 = $44; + $46 = HEAP32[$45>>2]|0; + $47 = ((($1)) + 16|0); + $48 = $47; + $49 = $48; + $50 = HEAP32[$49>>2]|0; + $51 = (($48) + 4)|0; + $52 = $51; + $53 = HEAP32[$52>>2]|0; + $54 = (_i64Add(($50|0),($53|0),($43|0),($46|0))|0); + $55 = tempRet0; + $56 = $40; $57 = $56; - HEAP32[$57>>2] = $53; - $58 = ((($in)) + 24|0); + HEAP32[$57>>2] = $54; + $58 = (($56) + 4)|0; $59 = $58; - $60 = $59; - $61 = HEAP32[$60>>2]|0; - $62 = (($59) + 4)|0; - $63 = $62; - $64 = HEAP32[$63>>2]|0; - $65 = ((($output)) + 24|0); - $66 = $65; - $67 = $66; - $68 = HEAP32[$67>>2]|0; - $69 = (($66) + 4)|0; - $70 = $69; - $71 = HEAP32[$70>>2]|0; - $72 = (_i64Subtract(($61|0),($64|0),($68|0),($71|0))|0); - $73 = tempRet0; - $74 = $65; - $75 = $74; - HEAP32[$75>>2] = $72; - $76 = (($74) + 4)|0; + HEAP32[$59>>2] = $55; + $60 = ((($0)) + 24|0); + $61 = $60; + $62 = $61; + $63 = HEAP32[$62>>2]|0; + $64 = (($61) + 4)|0; + $65 = $64; + $66 = HEAP32[$65>>2]|0; + $67 = ((($1)) + 24|0); + $68 = $67; + $69 = $68; + $70 = HEAP32[$69>>2]|0; + $71 = (($68) + 4)|0; + $72 = $71; + $73 = HEAP32[$72>>2]|0; + $74 = (_i64Add(($70|0),($73|0),($63|0),($66|0))|0); + $75 = tempRet0; + $76 = $60; $77 = $76; - HEAP32[$77>>2] = $73; - $78 = ((($in)) + 32|0); + HEAP32[$77>>2] = $74; + $78 = (($76) + 4)|0; $79 = $78; - $80 = $79; - $81 = HEAP32[$80>>2]|0; - $82 = (($79) + 4)|0; - $83 = $82; - $84 = HEAP32[$83>>2]|0; - $85 = ((($output)) + 32|0); - $86 = $85; - $87 = $86; - $88 = HEAP32[$87>>2]|0; - $89 = (($86) + 4)|0; - $90 = $89; - $91 = HEAP32[$90>>2]|0; - $92 = (_i64Subtract(($81|0),($84|0),($88|0),($91|0))|0); - $93 = tempRet0; - $94 = $85; - $95 = $94; - HEAP32[$95>>2] = $92; - $96 = (($94) + 4)|0; + HEAP32[$79>>2] = $75; + $80 = ((($0)) + 32|0); + $81 = $80; + $82 = $81; + $83 = HEAP32[$82>>2]|0; + $84 = (($81) + 4)|0; + $85 = $84; + $86 = HEAP32[$85>>2]|0; + $87 = ((($1)) + 32|0); + $88 = $87; + $89 = $88; + $90 = HEAP32[$89>>2]|0; + $91 = (($88) + 4)|0; + $92 = $91; + $93 = HEAP32[$92>>2]|0; + $94 = (_i64Add(($90|0),($93|0),($83|0),($86|0))|0); + $95 = tempRet0; + $96 = $80; $97 = $96; - HEAP32[$97>>2] = $93; - $98 = ((($in)) + 40|0); + HEAP32[$97>>2] = $94; + $98 = (($96) + 4)|0; $99 = $98; - $100 = $99; - $101 = HEAP32[$100>>2]|0; - $102 = (($99) + 4)|0; - $103 = $102; - $104 = HEAP32[$103>>2]|0; - $105 = ((($output)) + 40|0); - $106 = $105; - $107 = $106; - $108 = HEAP32[$107>>2]|0; - $109 = (($106) + 4)|0; - $110 = $109; - $111 = HEAP32[$110>>2]|0; - $112 = (_i64Subtract(($101|0),($104|0),($108|0),($111|0))|0); - $113 = tempRet0; - $114 = $105; - $115 = $114; - HEAP32[$115>>2] = $112; - $116 = (($114) + 4)|0; + HEAP32[$99>>2] = $95; + $100 = ((($0)) + 40|0); + $101 = $100; + $102 = $101; + $103 = HEAP32[$102>>2]|0; + $104 = (($101) + 4)|0; + $105 = $104; + $106 = HEAP32[$105>>2]|0; + $107 = ((($1)) + 40|0); + $108 = $107; + $109 = $108; + $110 = HEAP32[$109>>2]|0; + $111 = (($108) + 4)|0; + $112 = $111; + $113 = HEAP32[$112>>2]|0; + $114 = (_i64Add(($110|0),($113|0),($103|0),($106|0))|0); + $115 = tempRet0; + $116 = $100; $117 = $116; - HEAP32[$117>>2] = $113; - $118 = ((($in)) + 48|0); + HEAP32[$117>>2] = $114; + $118 = (($116) + 4)|0; $119 = $118; - $120 = $119; - $121 = HEAP32[$120>>2]|0; - $122 = (($119) + 4)|0; - $123 = $122; - $124 = HEAP32[$123>>2]|0; - $125 = ((($output)) + 48|0); - $126 = $125; - $127 = $126; - $128 = HEAP32[$127>>2]|0; - $129 = (($126) + 4)|0; - $130 = $129; - $131 = HEAP32[$130>>2]|0; - $132 = (_i64Subtract(($121|0),($124|0),($128|0),($131|0))|0); - $133 = tempRet0; - $134 = $125; - $135 = $134; - HEAP32[$135>>2] = $132; - $136 = (($134) + 4)|0; + HEAP32[$119>>2] = $115; + $120 = ((($0)) + 48|0); + $121 = $120; + $122 = $121; + $123 = HEAP32[$122>>2]|0; + $124 = (($121) + 4)|0; + $125 = $124; + $126 = HEAP32[$125>>2]|0; + $127 = ((($1)) + 48|0); + $128 = $127; + $129 = $128; + $130 = HEAP32[$129>>2]|0; + $131 = (($128) + 4)|0; + $132 = $131; + $133 = HEAP32[$132>>2]|0; + $134 = (_i64Add(($130|0),($133|0),($123|0),($126|0))|0); + $135 = tempRet0; + $136 = $120; $137 = $136; - HEAP32[$137>>2] = $133; - $138 = ((($in)) + 56|0); + HEAP32[$137>>2] = $134; + $138 = (($136) + 4)|0; $139 = $138; - $140 = $139; - $141 = HEAP32[$140>>2]|0; - $142 = (($139) + 4)|0; - $143 = $142; - $144 = HEAP32[$143>>2]|0; - $145 = ((($output)) + 56|0); - $146 = $145; - $147 = $146; - $148 = HEAP32[$147>>2]|0; - $149 = (($146) + 4)|0; - $150 = $149; - $151 = HEAP32[$150>>2]|0; - $152 = (_i64Subtract(($141|0),($144|0),($148|0),($151|0))|0); - $153 = tempRet0; - $154 = $145; - $155 = $154; - HEAP32[$155>>2] = $152; - $156 = (($154) + 4)|0; + HEAP32[$139>>2] = $135; + $140 = ((($0)) + 56|0); + $141 = $140; + $142 = $141; + $143 = HEAP32[$142>>2]|0; + $144 = (($141) + 4)|0; + $145 = $144; + $146 = HEAP32[$145>>2]|0; + $147 = ((($1)) + 56|0); + $148 = $147; + $149 = $148; + $150 = HEAP32[$149>>2]|0; + $151 = (($148) + 4)|0; + $152 = $151; + $153 = HEAP32[$152>>2]|0; + $154 = (_i64Add(($150|0),($153|0),($143|0),($146|0))|0); + $155 = tempRet0; + $156 = $140; $157 = $156; - HEAP32[$157>>2] = $153; - $158 = ((($in)) + 64|0); + HEAP32[$157>>2] = $154; + $158 = (($156) + 4)|0; $159 = $158; - $160 = $159; - $161 = HEAP32[$160>>2]|0; - $162 = (($159) + 4)|0; - $163 = $162; - $164 = HEAP32[$163>>2]|0; - $165 = ((($output)) + 64|0); - $166 = $165; - $167 = $166; - $168 = HEAP32[$167>>2]|0; - $169 = (($166) + 4)|0; - $170 = $169; - $171 = HEAP32[$170>>2]|0; - $172 = (_i64Subtract(($161|0),($164|0),($168|0),($171|0))|0); - $173 = tempRet0; - $174 = $165; - $175 = $174; - HEAP32[$175>>2] = $172; - $176 = (($174) + 4)|0; + HEAP32[$159>>2] = $155; + $160 = ((($0)) + 64|0); + $161 = $160; + $162 = $161; + $163 = HEAP32[$162>>2]|0; + $164 = (($161) + 4)|0; + $165 = $164; + $166 = HEAP32[$165>>2]|0; + $167 = ((($1)) + 64|0); + $168 = $167; + $169 = $168; + $170 = HEAP32[$169>>2]|0; + $171 = (($168) + 4)|0; + $172 = $171; + $173 = HEAP32[$172>>2]|0; + $174 = (_i64Add(($170|0),($173|0),($163|0),($166|0))|0); + $175 = tempRet0; + $176 = $160; $177 = $176; - HEAP32[$177>>2] = $173; - $178 = ((($in)) + 72|0); + HEAP32[$177>>2] = $174; + $178 = (($176) + 4)|0; $179 = $178; - $180 = $179; - $181 = HEAP32[$180>>2]|0; - $182 = (($179) + 4)|0; - $183 = $182; - $184 = HEAP32[$183>>2]|0; - $185 = ((($output)) + 72|0); - $186 = $185; - $187 = $186; - $188 = HEAP32[$187>>2]|0; - $189 = (($186) + 4)|0; - $190 = $189; - $191 = HEAP32[$190>>2]|0; - $192 = (_i64Subtract(($181|0),($184|0),($188|0),($191|0))|0); - $193 = tempRet0; - $194 = $185; - $195 = $194; - HEAP32[$195>>2] = $192; - $196 = (($194) + 4)|0; + HEAP32[$179>>2] = $175; + $180 = ((($0)) + 72|0); + $181 = $180; + $182 = $181; + $183 = HEAP32[$182>>2]|0; + $184 = (($181) + 4)|0; + $185 = $184; + $186 = HEAP32[$185>>2]|0; + $187 = ((($1)) + 72|0); + $188 = $187; + $189 = $188; + $190 = HEAP32[$189>>2]|0; + $191 = (($188) + 4)|0; + $192 = $191; + $193 = HEAP32[$192>>2]|0; + $194 = (_i64Add(($190|0),($193|0),($183|0),($186|0))|0); + $195 = tempRet0; + $196 = $180; $197 = $196; - HEAP32[$197>>2] = $193; + HEAP32[$197>>2] = $194; + $198 = (($196) + 4)|0; + $199 = $198; + HEAP32[$199>>2] = $195; return; } -function _fscalar_product($output,$in) { - $output = $output|0; - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; +function _fdifference($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = $in; - $1 = $0; - $2 = HEAP32[$1>>2]|0; - $3 = (($0) + 4)|0; - $4 = $3; - $5 = HEAP32[$4>>2]|0; - $6 = (___muldi3(($2|0),($5|0),121665,0)|0); - $7 = tempRet0; - $8 = $output; + $2 = $1; + $3 = $2; + $4 = HEAP32[$3>>2]|0; + $5 = (($2) + 4)|0; + $6 = $5; + $7 = HEAP32[$6>>2]|0; + $8 = $0; $9 = $8; - HEAP32[$9>>2] = $6; - $10 = (($8) + 4)|0; - $11 = $10; - HEAP32[$11>>2] = $7; - $12 = ((($in)) + 8|0); - $13 = $12; - $14 = $13; - $15 = HEAP32[$14>>2]|0; - $16 = (($13) + 4)|0; + $10 = HEAP32[$9>>2]|0; + $11 = (($8) + 4)|0; + $12 = $11; + $13 = HEAP32[$12>>2]|0; + $14 = (_i64Subtract(($4|0),($7|0),($10|0),($13|0))|0); + $15 = tempRet0; + $16 = $0; $17 = $16; - $18 = HEAP32[$17>>2]|0; - $19 = (___muldi3(($15|0),($18|0),121665,0)|0); - $20 = tempRet0; - $21 = ((($output)) + 8|0); + HEAP32[$17>>2] = $14; + $18 = (($16) + 4)|0; + $19 = $18; + HEAP32[$19>>2] = $15; + $20 = ((($1)) + 8|0); + $21 = $20; $22 = $21; - $23 = $22; - HEAP32[$23>>2] = $19; - $24 = (($22) + 4)|0; + $23 = HEAP32[$22>>2]|0; + $24 = (($21) + 4)|0; $25 = $24; - HEAP32[$25>>2] = $20; - $26 = ((($in)) + 16|0); - $27 = $26; + $26 = HEAP32[$25>>2]|0; + $27 = ((($0)) + 8|0); $28 = $27; - $29 = HEAP32[$28>>2]|0; - $30 = (($27) + 4)|0; - $31 = $30; - $32 = HEAP32[$31>>2]|0; - $33 = (___muldi3(($29|0),($32|0),121665,0)|0); - $34 = tempRet0; - $35 = ((($output)) + 16|0); - $36 = $35; + $29 = $28; + $30 = HEAP32[$29>>2]|0; + $31 = (($28) + 4)|0; + $32 = $31; + $33 = HEAP32[$32>>2]|0; + $34 = (_i64Subtract(($23|0),($26|0),($30|0),($33|0))|0); + $35 = tempRet0; + $36 = $27; $37 = $36; - HEAP32[$37>>2] = $33; + HEAP32[$37>>2] = $34; $38 = (($36) + 4)|0; $39 = $38; - HEAP32[$39>>2] = $34; - $40 = ((($in)) + 24|0); + HEAP32[$39>>2] = $35; + $40 = ((($1)) + 16|0); $41 = $40; $42 = $41; $43 = HEAP32[$42>>2]|0; $44 = (($41) + 4)|0; $45 = $44; $46 = HEAP32[$45>>2]|0; - $47 = (___muldi3(($43|0),($46|0),121665,0)|0); - $48 = tempRet0; - $49 = ((($output)) + 24|0); - $50 = $49; - $51 = $50; - HEAP32[$51>>2] = $47; - $52 = (($50) + 4)|0; - $53 = $52; - HEAP32[$53>>2] = $48; - $54 = ((($in)) + 32|0); - $55 = $54; - $56 = $55; - $57 = HEAP32[$56>>2]|0; - $58 = (($55) + 4)|0; + $47 = ((($0)) + 16|0); + $48 = $47; + $49 = $48; + $50 = HEAP32[$49>>2]|0; + $51 = (($48) + 4)|0; + $52 = $51; + $53 = HEAP32[$52>>2]|0; + $54 = (_i64Subtract(($43|0),($46|0),($50|0),($53|0))|0); + $55 = tempRet0; + $56 = $47; + $57 = $56; + HEAP32[$57>>2] = $54; + $58 = (($56) + 4)|0; $59 = $58; - $60 = HEAP32[$59>>2]|0; - $61 = (___muldi3(($57|0),($60|0),121665,0)|0); - $62 = tempRet0; - $63 = ((($output)) + 32|0); - $64 = $63; + HEAP32[$59>>2] = $55; + $60 = ((($1)) + 24|0); + $61 = $60; + $62 = $61; + $63 = HEAP32[$62>>2]|0; + $64 = (($61) + 4)|0; $65 = $64; - HEAP32[$65>>2] = $61; - $66 = (($64) + 4)|0; - $67 = $66; - HEAP32[$67>>2] = $62; - $68 = ((($in)) + 40|0); + $66 = HEAP32[$65>>2]|0; + $67 = ((($0)) + 24|0); + $68 = $67; $69 = $68; - $70 = $69; - $71 = HEAP32[$70>>2]|0; - $72 = (($69) + 4)|0; - $73 = $72; - $74 = HEAP32[$73>>2]|0; - $75 = (___muldi3(($71|0),($74|0),121665,0)|0); - $76 = tempRet0; - $77 = ((($output)) + 40|0); - $78 = $77; + $70 = HEAP32[$69>>2]|0; + $71 = (($68) + 4)|0; + $72 = $71; + $73 = HEAP32[$72>>2]|0; + $74 = (_i64Subtract(($63|0),($66|0),($70|0),($73|0))|0); + $75 = tempRet0; + $76 = $67; + $77 = $76; + HEAP32[$77>>2] = $74; + $78 = (($76) + 4)|0; $79 = $78; HEAP32[$79>>2] = $75; - $80 = (($78) + 4)|0; + $80 = ((($1)) + 32|0); $81 = $80; - HEAP32[$81>>2] = $76; - $82 = ((($in)) + 48|0); - $83 = $82; - $84 = $83; - $85 = HEAP32[$84>>2]|0; - $86 = (($83) + 4)|0; - $87 = $86; - $88 = HEAP32[$87>>2]|0; - $89 = (___muldi3(($85|0),($88|0),121665,0)|0); - $90 = tempRet0; - $91 = ((($output)) + 48|0); + $82 = $81; + $83 = HEAP32[$82>>2]|0; + $84 = (($81) + 4)|0; + $85 = $84; + $86 = HEAP32[$85>>2]|0; + $87 = ((($0)) + 32|0); + $88 = $87; + $89 = $88; + $90 = HEAP32[$89>>2]|0; + $91 = (($88) + 4)|0; $92 = $91; - $93 = $92; - HEAP32[$93>>2] = $89; - $94 = (($92) + 4)|0; - $95 = $94; - HEAP32[$95>>2] = $90; - $96 = ((($in)) + 56|0); + $93 = HEAP32[$92>>2]|0; + $94 = (_i64Subtract(($83|0),($86|0),($90|0),($93|0))|0); + $95 = tempRet0; + $96 = $87; $97 = $96; - $98 = $97; - $99 = HEAP32[$98>>2]|0; - $100 = (($97) + 4)|0; + HEAP32[$97>>2] = $94; + $98 = (($96) + 4)|0; + $99 = $98; + HEAP32[$99>>2] = $95; + $100 = ((($1)) + 40|0); $101 = $100; - $102 = HEAP32[$101>>2]|0; - $103 = (___muldi3(($99|0),($102|0),121665,0)|0); - $104 = tempRet0; - $105 = ((($output)) + 56|0); - $106 = $105; - $107 = $106; - HEAP32[$107>>2] = $103; - $108 = (($106) + 4)|0; + $102 = $101; + $103 = HEAP32[$102>>2]|0; + $104 = (($101) + 4)|0; + $105 = $104; + $106 = HEAP32[$105>>2]|0; + $107 = ((($0)) + 40|0); + $108 = $107; $109 = $108; - HEAP32[$109>>2] = $104; - $110 = ((($in)) + 64|0); - $111 = $110; + $110 = HEAP32[$109>>2]|0; + $111 = (($108) + 4)|0; $112 = $111; $113 = HEAP32[$112>>2]|0; - $114 = (($111) + 4)|0; - $115 = $114; - $116 = HEAP32[$115>>2]|0; - $117 = (___muldi3(($113|0),($116|0),121665,0)|0); - $118 = tempRet0; - $119 = ((($output)) + 64|0); - $120 = $119; + $114 = (_i64Subtract(($103|0),($106|0),($110|0),($113|0))|0); + $115 = tempRet0; + $116 = $107; + $117 = $116; + HEAP32[$117>>2] = $114; + $118 = (($116) + 4)|0; + $119 = $118; + HEAP32[$119>>2] = $115; + $120 = ((($1)) + 48|0); $121 = $120; - HEAP32[$121>>2] = $117; - $122 = (($120) + 4)|0; - $123 = $122; - HEAP32[$123>>2] = $118; - $124 = ((($in)) + 72|0); + $122 = $121; + $123 = HEAP32[$122>>2]|0; + $124 = (($121) + 4)|0; $125 = $124; - $126 = $125; - $127 = HEAP32[$126>>2]|0; - $128 = (($125) + 4)|0; + $126 = HEAP32[$125>>2]|0; + $127 = ((($0)) + 48|0); + $128 = $127; $129 = $128; $130 = HEAP32[$129>>2]|0; - $131 = (___muldi3(($127|0),($130|0),121665,0)|0); - $132 = tempRet0; - $133 = ((($output)) + 72|0); - $134 = $133; - $135 = $134; - HEAP32[$135>>2] = $131; - $136 = (($134) + 4)|0; + $131 = (($128) + 4)|0; + $132 = $131; + $133 = HEAP32[$132>>2]|0; + $134 = (_i64Subtract(($123|0),($126|0),($130|0),($133|0))|0); + $135 = tempRet0; + $136 = $127; + $137 = $136; + HEAP32[$137>>2] = $134; + $138 = (($136) + 4)|0; + $139 = $138; + HEAP32[$139>>2] = $135; + $140 = ((($1)) + 56|0); + $141 = $140; + $142 = $141; + $143 = HEAP32[$142>>2]|0; + $144 = (($141) + 4)|0; + $145 = $144; + $146 = HEAP32[$145>>2]|0; + $147 = ((($0)) + 56|0); + $148 = $147; + $149 = $148; + $150 = HEAP32[$149>>2]|0; + $151 = (($148) + 4)|0; + $152 = $151; + $153 = HEAP32[$152>>2]|0; + $154 = (_i64Subtract(($143|0),($146|0),($150|0),($153|0))|0); + $155 = tempRet0; + $156 = $147; + $157 = $156; + HEAP32[$157>>2] = $154; + $158 = (($156) + 4)|0; + $159 = $158; + HEAP32[$159>>2] = $155; + $160 = ((($1)) + 64|0); + $161 = $160; + $162 = $161; + $163 = HEAP32[$162>>2]|0; + $164 = (($161) + 4)|0; + $165 = $164; + $166 = HEAP32[$165>>2]|0; + $167 = ((($0)) + 64|0); + $168 = $167; + $169 = $168; + $170 = HEAP32[$169>>2]|0; + $171 = (($168) + 4)|0; + $172 = $171; + $173 = HEAP32[$172>>2]|0; + $174 = (_i64Subtract(($163|0),($166|0),($170|0),($173|0))|0); + $175 = tempRet0; + $176 = $167; + $177 = $176; + HEAP32[$177>>2] = $174; + $178 = (($176) + 4)|0; + $179 = $178; + HEAP32[$179>>2] = $175; + $180 = ((($1)) + 72|0); + $181 = $180; + $182 = $181; + $183 = HEAP32[$182>>2]|0; + $184 = (($181) + 4)|0; + $185 = $184; + $186 = HEAP32[$185>>2]|0; + $187 = ((($0)) + 72|0); + $188 = $187; + $189 = $188; + $190 = HEAP32[$189>>2]|0; + $191 = (($188) + 4)|0; + $192 = $191; + $193 = HEAP32[$192>>2]|0; + $194 = (_i64Subtract(($183|0),($186|0),($190|0),($193|0))|0); + $195 = tempRet0; + $196 = $187; + $197 = $196; + HEAP32[$197>>2] = $194; + $198 = (($196) + 4)|0; + $199 = $198; + HEAP32[$199>>2] = $195; + return; +} +function _fscalar_product($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; + var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; + var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; + var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = $1; + $3 = $2; + $4 = HEAP32[$3>>2]|0; + $5 = (($2) + 4)|0; + $6 = $5; + $7 = HEAP32[$6>>2]|0; + $8 = (___muldi3(($4|0),($7|0),121665,0)|0); + $9 = tempRet0; + $10 = $0; + $11 = $10; + HEAP32[$11>>2] = $8; + $12 = (($10) + 4)|0; + $13 = $12; + HEAP32[$13>>2] = $9; + $14 = ((($1)) + 8|0); + $15 = $14; + $16 = $15; + $17 = HEAP32[$16>>2]|0; + $18 = (($15) + 4)|0; + $19 = $18; + $20 = HEAP32[$19>>2]|0; + $21 = (___muldi3(($17|0),($20|0),121665,0)|0); + $22 = tempRet0; + $23 = ((($0)) + 8|0); + $24 = $23; + $25 = $24; + HEAP32[$25>>2] = $21; + $26 = (($24) + 4)|0; + $27 = $26; + HEAP32[$27>>2] = $22; + $28 = ((($1)) + 16|0); + $29 = $28; + $30 = $29; + $31 = HEAP32[$30>>2]|0; + $32 = (($29) + 4)|0; + $33 = $32; + $34 = HEAP32[$33>>2]|0; + $35 = (___muldi3(($31|0),($34|0),121665,0)|0); + $36 = tempRet0; + $37 = ((($0)) + 16|0); + $38 = $37; + $39 = $38; + HEAP32[$39>>2] = $35; + $40 = (($38) + 4)|0; + $41 = $40; + HEAP32[$41>>2] = $36; + $42 = ((($1)) + 24|0); + $43 = $42; + $44 = $43; + $45 = HEAP32[$44>>2]|0; + $46 = (($43) + 4)|0; + $47 = $46; + $48 = HEAP32[$47>>2]|0; + $49 = (___muldi3(($45|0),($48|0),121665,0)|0); + $50 = tempRet0; + $51 = ((($0)) + 24|0); + $52 = $51; + $53 = $52; + HEAP32[$53>>2] = $49; + $54 = (($52) + 4)|0; + $55 = $54; + HEAP32[$55>>2] = $50; + $56 = ((($1)) + 32|0); + $57 = $56; + $58 = $57; + $59 = HEAP32[$58>>2]|0; + $60 = (($57) + 4)|0; + $61 = $60; + $62 = HEAP32[$61>>2]|0; + $63 = (___muldi3(($59|0),($62|0),121665,0)|0); + $64 = tempRet0; + $65 = ((($0)) + 32|0); + $66 = $65; + $67 = $66; + HEAP32[$67>>2] = $63; + $68 = (($66) + 4)|0; + $69 = $68; + HEAP32[$69>>2] = $64; + $70 = ((($1)) + 40|0); + $71 = $70; + $72 = $71; + $73 = HEAP32[$72>>2]|0; + $74 = (($71) + 4)|0; + $75 = $74; + $76 = HEAP32[$75>>2]|0; + $77 = (___muldi3(($73|0),($76|0),121665,0)|0); + $78 = tempRet0; + $79 = ((($0)) + 40|0); + $80 = $79; + $81 = $80; + HEAP32[$81>>2] = $77; + $82 = (($80) + 4)|0; + $83 = $82; + HEAP32[$83>>2] = $78; + $84 = ((($1)) + 48|0); + $85 = $84; + $86 = $85; + $87 = HEAP32[$86>>2]|0; + $88 = (($85) + 4)|0; + $89 = $88; + $90 = HEAP32[$89>>2]|0; + $91 = (___muldi3(($87|0),($90|0),121665,0)|0); + $92 = tempRet0; + $93 = ((($0)) + 48|0); + $94 = $93; + $95 = $94; + HEAP32[$95>>2] = $91; + $96 = (($94) + 4)|0; + $97 = $96; + HEAP32[$97>>2] = $92; + $98 = ((($1)) + 56|0); + $99 = $98; + $100 = $99; + $101 = HEAP32[$100>>2]|0; + $102 = (($99) + 4)|0; + $103 = $102; + $104 = HEAP32[$103>>2]|0; + $105 = (___muldi3(($101|0),($104|0),121665,0)|0); + $106 = tempRet0; + $107 = ((($0)) + 56|0); + $108 = $107; + $109 = $108; + HEAP32[$109>>2] = $105; + $110 = (($108) + 4)|0; + $111 = $110; + HEAP32[$111>>2] = $106; + $112 = ((($1)) + 64|0); + $113 = $112; + $114 = $113; + $115 = HEAP32[$114>>2]|0; + $116 = (($113) + 4)|0; + $117 = $116; + $118 = HEAP32[$117>>2]|0; + $119 = (___muldi3(($115|0),($118|0),121665,0)|0); + $120 = tempRet0; + $121 = ((($0)) + 64|0); + $122 = $121; + $123 = $122; + HEAP32[$123>>2] = $119; + $124 = (($122) + 4)|0; + $125 = $124; + HEAP32[$125>>2] = $120; + $126 = ((($1)) + 72|0); + $127 = $126; + $128 = $127; + $129 = HEAP32[$128>>2]|0; + $130 = (($127) + 4)|0; + $131 = $130; + $132 = HEAP32[$131>>2]|0; + $133 = (___muldi3(($129|0),($132|0),121665,0)|0); + $134 = tempRet0; + $135 = ((($0)) + 72|0); + $136 = $135; $137 = $136; - HEAP32[$137>>2] = $132; + HEAP32[$137>>2] = $133; + $138 = (($136) + 4)|0; + $139 = $138; + HEAP32[$139>>2] = $134; return; } -function _crypto_sign_ed25519_ref10_fe_0($h) { - $h = $h|0; +function _crypto_sign_ed25519_ref10_fe_0($0) { + $0 = $0|0; var dest = 0, label = 0, sp = 0, stop = 0; sp = STACKTOP; - dest=$h; stop=dest+40|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); + dest=$0; stop=dest+40|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); return; } -function _crypto_sign_ed25519_ref10_fe_1($h) { - $h = $h|0; - var $0 = 0, dest = 0, label = 0, sp = 0, stop = 0; +function _crypto_sign_ed25519_ref10_fe_1($0) { + $0 = $0|0; + var $1 = 0, dest = 0, label = 0, sp = 0, stop = 0; sp = STACKTOP; - HEAP32[$h>>2] = 1; - $0 = ((($h)) + 4|0); - dest=$0; stop=dest+36|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); + HEAP32[$0>>2] = 1; + $1 = ((($0)) + 4|0); + dest=$1; stop=dest+36|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); return; } -function _crypto_sign_ed25519_ref10_fe_add($h,$f,$g) { - $h = $h|0; - $f = $f|0; - $g = $g|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; - var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_fe_add($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0; + var $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0; + var $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); - $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); - $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); - $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); - $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); - $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); - $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); - $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); - $18 = HEAP32[$17>>2]|0; - $19 = HEAP32[$g>>2]|0; - $20 = ((($g)) + 4|0); + $3 = HEAP32[$1>>2]|0; + $4 = ((($1)) + 4|0); + $5 = HEAP32[$4>>2]|0; + $6 = ((($1)) + 8|0); + $7 = HEAP32[$6>>2]|0; + $8 = ((($1)) + 12|0); + $9 = HEAP32[$8>>2]|0; + $10 = ((($1)) + 16|0); + $11 = HEAP32[$10>>2]|0; + $12 = ((($1)) + 20|0); + $13 = HEAP32[$12>>2]|0; + $14 = ((($1)) + 24|0); + $15 = HEAP32[$14>>2]|0; + $16 = ((($1)) + 28|0); + $17 = HEAP32[$16>>2]|0; + $18 = ((($1)) + 32|0); + $19 = HEAP32[$18>>2]|0; + $20 = ((($1)) + 36|0); $21 = HEAP32[$20>>2]|0; - $22 = ((($g)) + 8|0); - $23 = HEAP32[$22>>2]|0; - $24 = ((($g)) + 12|0); - $25 = HEAP32[$24>>2]|0; - $26 = ((($g)) + 16|0); - $27 = HEAP32[$26>>2]|0; - $28 = ((($g)) + 20|0); - $29 = HEAP32[$28>>2]|0; - $30 = ((($g)) + 24|0); - $31 = HEAP32[$30>>2]|0; - $32 = ((($g)) + 28|0); - $33 = HEAP32[$32>>2]|0; - $34 = ((($g)) + 32|0); - $35 = HEAP32[$34>>2]|0; - $36 = ((($g)) + 36|0); - $37 = HEAP32[$36>>2]|0; - $38 = (($19) + ($0))|0; - $39 = (($21) + ($2))|0; - $40 = (($23) + ($4))|0; - $41 = (($25) + ($6))|0; - $42 = (($27) + ($8))|0; - $43 = (($29) + ($10))|0; - $44 = (($31) + ($12))|0; - $45 = (($33) + ($14))|0; - $46 = (($35) + ($16))|0; - $47 = (($37) + ($18))|0; - HEAP32[$h>>2] = $38; - $48 = ((($h)) + 4|0); - HEAP32[$48>>2] = $39; - $49 = ((($h)) + 8|0); - HEAP32[$49>>2] = $40; - $50 = ((($h)) + 12|0); - HEAP32[$50>>2] = $41; - $51 = ((($h)) + 16|0); + $22 = HEAP32[$2>>2]|0; + $23 = ((($2)) + 4|0); + $24 = HEAP32[$23>>2]|0; + $25 = ((($2)) + 8|0); + $26 = HEAP32[$25>>2]|0; + $27 = ((($2)) + 12|0); + $28 = HEAP32[$27>>2]|0; + $29 = ((($2)) + 16|0); + $30 = HEAP32[$29>>2]|0; + $31 = ((($2)) + 20|0); + $32 = HEAP32[$31>>2]|0; + $33 = ((($2)) + 24|0); + $34 = HEAP32[$33>>2]|0; + $35 = ((($2)) + 28|0); + $36 = HEAP32[$35>>2]|0; + $37 = ((($2)) + 32|0); + $38 = HEAP32[$37>>2]|0; + $39 = ((($2)) + 36|0); + $40 = HEAP32[$39>>2]|0; + $41 = (($22) + ($3))|0; + $42 = (($24) + ($5))|0; + $43 = (($26) + ($7))|0; + $44 = (($28) + ($9))|0; + $45 = (($30) + ($11))|0; + $46 = (($32) + ($13))|0; + $47 = (($34) + ($15))|0; + $48 = (($36) + ($17))|0; + $49 = (($38) + ($19))|0; + $50 = (($40) + ($21))|0; + HEAP32[$0>>2] = $41; + $51 = ((($0)) + 4|0); HEAP32[$51>>2] = $42; - $52 = ((($h)) + 20|0); + $52 = ((($0)) + 8|0); HEAP32[$52>>2] = $43; - $53 = ((($h)) + 24|0); + $53 = ((($0)) + 12|0); HEAP32[$53>>2] = $44; - $54 = ((($h)) + 28|0); + $54 = ((($0)) + 16|0); HEAP32[$54>>2] = $45; - $55 = ((($h)) + 32|0); + $55 = ((($0)) + 20|0); HEAP32[$55>>2] = $46; - $56 = ((($h)) + 36|0); + $56 = ((($0)) + 24|0); HEAP32[$56>>2] = $47; + $57 = ((($0)) + 28|0); + HEAP32[$57>>2] = $48; + $58 = ((($0)) + 32|0); + HEAP32[$58>>2] = $49; + $59 = ((($0)) + 36|0); + HEAP32[$59>>2] = $50; return; } -function _crypto_sign_ed25519_ref10_fe_cmov($f,$g,$b) { - $f = $f|0; - $g = $g|0; - $b = $b|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; - var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0; - var $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_fe_cmov($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0; + var $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0; + var $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0; + var $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); - $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); - $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); - $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); - $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); - $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); - $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); - $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); - $18 = HEAP32[$17>>2]|0; - $19 = HEAP32[$g>>2]|0; - $20 = ((($g)) + 4|0); + $3 = HEAP32[$0>>2]|0; + $4 = ((($0)) + 4|0); + $5 = HEAP32[$4>>2]|0; + $6 = ((($0)) + 8|0); + $7 = HEAP32[$6>>2]|0; + $8 = ((($0)) + 12|0); + $9 = HEAP32[$8>>2]|0; + $10 = ((($0)) + 16|0); + $11 = HEAP32[$10>>2]|0; + $12 = ((($0)) + 20|0); + $13 = HEAP32[$12>>2]|0; + $14 = ((($0)) + 24|0); + $15 = HEAP32[$14>>2]|0; + $16 = ((($0)) + 28|0); + $17 = HEAP32[$16>>2]|0; + $18 = ((($0)) + 32|0); + $19 = HEAP32[$18>>2]|0; + $20 = ((($0)) + 36|0); $21 = HEAP32[$20>>2]|0; - $22 = ((($g)) + 8|0); - $23 = HEAP32[$22>>2]|0; - $24 = ((($g)) + 12|0); - $25 = HEAP32[$24>>2]|0; - $26 = ((($g)) + 16|0); - $27 = HEAP32[$26>>2]|0; - $28 = ((($g)) + 20|0); - $29 = HEAP32[$28>>2]|0; - $30 = ((($g)) + 24|0); - $31 = HEAP32[$30>>2]|0; - $32 = ((($g)) + 28|0); - $33 = HEAP32[$32>>2]|0; - $34 = ((($g)) + 32|0); - $35 = HEAP32[$34>>2]|0; - $36 = ((($g)) + 36|0); - $37 = HEAP32[$36>>2]|0; - $38 = $19 ^ $0; - $39 = $21 ^ $2; - $40 = $23 ^ $4; - $41 = $25 ^ $6; - $42 = $27 ^ $8; - $43 = $29 ^ $10; - $44 = $31 ^ $12; - $45 = $33 ^ $14; - $46 = $35 ^ $16; - $47 = $37 ^ $18; - $48 = (0 - ($b))|0; - $49 = $38 & $48; - $50 = $39 & $48; - $51 = $40 & $48; - $52 = $41 & $48; - $53 = $42 & $48; - $54 = $43 & $48; - $55 = $44 & $48; - $56 = $45 & $48; - $57 = $46 & $48; - $58 = $47 & $48; - $59 = $49 ^ $0; - HEAP32[$f>>2] = $59; - $60 = $50 ^ $2; - HEAP32[$1>>2] = $60; - $61 = $51 ^ $4; - HEAP32[$3>>2] = $61; - $62 = $52 ^ $6; - HEAP32[$5>>2] = $62; - $63 = $53 ^ $8; - HEAP32[$7>>2] = $63; - $64 = $54 ^ $10; - HEAP32[$9>>2] = $64; - $65 = $55 ^ $12; - HEAP32[$11>>2] = $65; - $66 = $56 ^ $14; - HEAP32[$13>>2] = $66; - $67 = $57 ^ $16; - HEAP32[$15>>2] = $67; - $68 = $58 ^ $18; - HEAP32[$17>>2] = $68; + $22 = HEAP32[$1>>2]|0; + $23 = ((($1)) + 4|0); + $24 = HEAP32[$23>>2]|0; + $25 = ((($1)) + 8|0); + $26 = HEAP32[$25>>2]|0; + $27 = ((($1)) + 12|0); + $28 = HEAP32[$27>>2]|0; + $29 = ((($1)) + 16|0); + $30 = HEAP32[$29>>2]|0; + $31 = ((($1)) + 20|0); + $32 = HEAP32[$31>>2]|0; + $33 = ((($1)) + 24|0); + $34 = HEAP32[$33>>2]|0; + $35 = ((($1)) + 28|0); + $36 = HEAP32[$35>>2]|0; + $37 = ((($1)) + 32|0); + $38 = HEAP32[$37>>2]|0; + $39 = ((($1)) + 36|0); + $40 = HEAP32[$39>>2]|0; + $41 = $22 ^ $3; + $42 = $24 ^ $5; + $43 = $26 ^ $7; + $44 = $28 ^ $9; + $45 = $30 ^ $11; + $46 = $32 ^ $13; + $47 = $34 ^ $15; + $48 = $36 ^ $17; + $49 = $38 ^ $19; + $50 = $40 ^ $21; + $51 = (0 - ($2))|0; + $52 = $41 & $51; + $53 = $42 & $51; + $54 = $43 & $51; + $55 = $44 & $51; + $56 = $45 & $51; + $57 = $46 & $51; + $58 = $47 & $51; + $59 = $48 & $51; + $60 = $49 & $51; + $61 = $50 & $51; + $62 = $52 ^ $3; + HEAP32[$0>>2] = $62; + $63 = $53 ^ $5; + HEAP32[$4>>2] = $63; + $64 = $54 ^ $7; + HEAP32[$6>>2] = $64; + $65 = $55 ^ $9; + HEAP32[$8>>2] = $65; + $66 = $56 ^ $11; + HEAP32[$10>>2] = $66; + $67 = $57 ^ $13; + HEAP32[$12>>2] = $67; + $68 = $58 ^ $15; + HEAP32[$14>>2] = $68; + $69 = $59 ^ $17; + HEAP32[$16>>2] = $69; + $70 = $60 ^ $19; + HEAP32[$18>>2] = $70; + $71 = $61 ^ $21; + HEAP32[$20>>2] = $71; return; } -function _crypto_sign_ed25519_ref10_fe_copy($h,$f) { - $h = $h|0; - $f = $f|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_fe_copy($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); + $3 = ((($1)) + 4|0); $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); + $5 = ((($1)) + 8|0); $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); + $7 = ((($1)) + 12|0); $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); + $9 = ((($1)) + 16|0); $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); + $11 = ((($1)) + 20|0); $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); + $13 = ((($1)) + 24|0); $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); + $15 = ((($1)) + 28|0); $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); + $17 = ((($1)) + 32|0); $18 = HEAP32[$17>>2]|0; - HEAP32[$h>>2] = $0; - $19 = ((($h)) + 4|0); - HEAP32[$19>>2] = $2; - $20 = ((($h)) + 8|0); - HEAP32[$20>>2] = $4; - $21 = ((($h)) + 12|0); - HEAP32[$21>>2] = $6; - $22 = ((($h)) + 16|0); - HEAP32[$22>>2] = $8; - $23 = ((($h)) + 20|0); - HEAP32[$23>>2] = $10; - $24 = ((($h)) + 24|0); - HEAP32[$24>>2] = $12; - $25 = ((($h)) + 28|0); - HEAP32[$25>>2] = $14; - $26 = ((($h)) + 32|0); - HEAP32[$26>>2] = $16; - $27 = ((($h)) + 36|0); - HEAP32[$27>>2] = $18; + $19 = ((($1)) + 36|0); + $20 = HEAP32[$19>>2]|0; + HEAP32[$0>>2] = $2; + $21 = ((($0)) + 4|0); + HEAP32[$21>>2] = $4; + $22 = ((($0)) + 8|0); + HEAP32[$22>>2] = $6; + $23 = ((($0)) + 12|0); + HEAP32[$23>>2] = $8; + $24 = ((($0)) + 16|0); + HEAP32[$24>>2] = $10; + $25 = ((($0)) + 20|0); + HEAP32[$25>>2] = $12; + $26 = ((($0)) + 24|0); + HEAP32[$26>>2] = $14; + $27 = ((($0)) + 28|0); + HEAP32[$27>>2] = $16; + $28 = ((($0)) + 32|0); + HEAP32[$28>>2] = $18; + $29 = ((($0)) + 36|0); + HEAP32[$29>>2] = $20; return; } -function _crypto_sign_ed25519_ref10_fe_frombytes($h,$s) { - $h = $h|0; - $s = $s|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; +function _crypto_sign_ed25519_ref10_fe_frombytes($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = (_load_4($s)|0); - $1 = tempRet0; - $2 = ((($s)) + 4|0); - $3 = (_load_3($2)|0); - $4 = tempRet0; - $5 = (_bitshift64Shl(($3|0),($4|0),6)|0); + $2 = (_load_4($1)|0); + $3 = tempRet0; + $4 = ((($1)) + 4|0); + $5 = (_load_3($4)|0); $6 = tempRet0; - $7 = ((($s)) + 7|0); - $8 = (_load_3($7)|0); - $9 = tempRet0; - $10 = (_bitshift64Shl(($8|0),($9|0),5)|0); + $7 = (_bitshift64Shl(($5|0),($6|0),6)|0); + $8 = tempRet0; + $9 = ((($1)) + 7|0); + $10 = (_load_3($9)|0); $11 = tempRet0; - $12 = ((($s)) + 10|0); - $13 = (_load_3($12)|0); - $14 = tempRet0; - $15 = (_bitshift64Shl(($13|0),($14|0),3)|0); + $12 = (_bitshift64Shl(($10|0),($11|0),5)|0); + $13 = tempRet0; + $14 = ((($1)) + 10|0); + $15 = (_load_3($14)|0); $16 = tempRet0; - $17 = ((($s)) + 13|0); - $18 = (_load_3($17)|0); - $19 = tempRet0; - $20 = (_bitshift64Shl(($18|0),($19|0),2)|0); + $17 = (_bitshift64Shl(($15|0),($16|0),3)|0); + $18 = tempRet0; + $19 = ((($1)) + 13|0); + $20 = (_load_3($19)|0); $21 = tempRet0; - $22 = ((($s)) + 16|0); - $23 = (_load_4($22)|0); - $24 = tempRet0; - $25 = ((($s)) + 20|0); - $26 = (_load_3($25)|0); - $27 = tempRet0; - $28 = (_bitshift64Shl(($26|0),($27|0),7)|0); + $22 = (_bitshift64Shl(($20|0),($21|0),2)|0); + $23 = tempRet0; + $24 = ((($1)) + 16|0); + $25 = (_load_4($24)|0); + $26 = tempRet0; + $27 = ((($1)) + 20|0); + $28 = (_load_3($27)|0); $29 = tempRet0; - $30 = ((($s)) + 23|0); - $31 = (_load_3($30)|0); - $32 = tempRet0; - $33 = (_bitshift64Shl(($31|0),($32|0),5)|0); + $30 = (_bitshift64Shl(($28|0),($29|0),7)|0); + $31 = tempRet0; + $32 = ((($1)) + 23|0); + $33 = (_load_3($32)|0); $34 = tempRet0; - $35 = ((($s)) + 26|0); - $36 = (_load_3($35)|0); - $37 = tempRet0; - $38 = (_bitshift64Shl(($36|0),($37|0),4)|0); + $35 = (_bitshift64Shl(($33|0),($34|0),5)|0); + $36 = tempRet0; + $37 = ((($1)) + 26|0); + $38 = (_load_3($37)|0); $39 = tempRet0; - $40 = ((($s)) + 29|0); - $41 = (_load_3($40)|0); - $42 = tempRet0; - $43 = (_bitshift64Shl(($41|0),($42|0),2)|0); + $40 = (_bitshift64Shl(($38|0),($39|0),4)|0); + $41 = tempRet0; + $42 = ((($1)) + 29|0); + $43 = (_load_3($42)|0); $44 = tempRet0; - $45 = $43 & 33554428; - $46 = (_i64Add(($45|0),0,16777216,0)|0); - $47 = tempRet0; - $48 = (_bitshift64Lshr(($46|0),($47|0),25)|0); + $45 = (_bitshift64Shl(($43|0),($44|0),2)|0); + $46 = tempRet0; + $47 = $45 & 33554428; + $48 = (_i64Add(($47|0),0,16777216,0)|0); $49 = tempRet0; - $50 = (_i64Subtract(0,0,($48|0),($49|0))|0); + $50 = (_bitshift64Lshr(($48|0),($49|0),25)|0); $51 = tempRet0; - $52 = $50 & 19; - $53 = (_i64Add(($52|0),0,($0|0),($1|0))|0); - $54 = tempRet0; - $55 = (_bitshift64Shl(($48|0),($49|0),25)|0); + $52 = (_i64Subtract(0,0,($50|0),($51|0))|0); + $53 = tempRet0; + $54 = $52 & 19; + $55 = (_i64Add(($54|0),0,($2|0),($3|0))|0); $56 = tempRet0; - $57 = (_i64Add(($5|0),($6|0),16777216,0)|0); + $57 = (_bitshift64Shl(($50|0),($51|0),25)|0); $58 = tempRet0; - $59 = (_bitshift64Ashr(($57|0),($58|0),25)|0); + $59 = (_i64Add(($7|0),($8|0),16777216,0)|0); $60 = tempRet0; - $61 = (_i64Add(($59|0),($60|0),($10|0),($11|0))|0); + $61 = (_bitshift64Ashr(($59|0),($60|0),25)|0); $62 = tempRet0; - $63 = (_bitshift64Shl(($59|0),($60|0),25)|0); + $63 = (_i64Add(($61|0),($62|0),($12|0),($13|0))|0); $64 = tempRet0; - $65 = (_i64Subtract(($5|0),($6|0),($63|0),($64|0))|0); + $65 = (_bitshift64Shl(($61|0),($62|0),25)|0); $66 = tempRet0; - $67 = (_i64Add(($15|0),($16|0),16777216,0)|0); + $67 = (_i64Subtract(($7|0),($8|0),($65|0),($66|0))|0); $68 = tempRet0; - $69 = (_bitshift64Ashr(($67|0),($68|0),25)|0); + $69 = (_i64Add(($17|0),($18|0),16777216,0)|0); $70 = tempRet0; - $71 = (_i64Add(($69|0),($70|0),($20|0),($21|0))|0); + $71 = (_bitshift64Ashr(($69|0),($70|0),25)|0); $72 = tempRet0; - $73 = (_bitshift64Shl(($69|0),($70|0),25)|0); + $73 = (_i64Add(($71|0),($72|0),($22|0),($23|0))|0); $74 = tempRet0; - $75 = (_i64Subtract(($15|0),($16|0),($73|0),($74|0))|0); + $75 = (_bitshift64Shl(($71|0),($72|0),25)|0); $76 = tempRet0; - $77 = (_i64Add(($23|0),($24|0),16777216,0)|0); + $77 = (_i64Subtract(($17|0),($18|0),($75|0),($76|0))|0); $78 = tempRet0; - $79 = (_bitshift64Ashr(($77|0),($78|0),25)|0); + $79 = (_i64Add(($25|0),($26|0),16777216,0)|0); $80 = tempRet0; - $81 = (_i64Add(($28|0),($29|0),($79|0),($80|0))|0); + $81 = (_bitshift64Ashr(($79|0),($80|0),25)|0); $82 = tempRet0; - $83 = (_bitshift64Shl(($79|0),($80|0),25)|0); + $83 = (_i64Add(($30|0),($31|0),($81|0),($82|0))|0); $84 = tempRet0; - $85 = (_i64Subtract(($23|0),($24|0),($83|0),($84|0))|0); + $85 = (_bitshift64Shl(($81|0),($82|0),25)|0); $86 = tempRet0; - $87 = (_i64Add(($33|0),($34|0),16777216,0)|0); + $87 = (_i64Subtract(($25|0),($26|0),($85|0),($86|0))|0); $88 = tempRet0; - $89 = (_bitshift64Ashr(($87|0),($88|0),25)|0); + $89 = (_i64Add(($35|0),($36|0),16777216,0)|0); $90 = tempRet0; - $91 = (_i64Add(($89|0),($90|0),($38|0),($39|0))|0); + $91 = (_bitshift64Ashr(($89|0),($90|0),25)|0); $92 = tempRet0; - $93 = (_bitshift64Shl(($89|0),($90|0),25)|0); + $93 = (_i64Add(($91|0),($92|0),($40|0),($41|0))|0); $94 = tempRet0; - $95 = (_i64Add(($53|0),($54|0),33554432,0)|0); + $95 = (_bitshift64Shl(($91|0),($92|0),25)|0); $96 = tempRet0; - $97 = (_bitshift64Ashr(($95|0),($96|0),26)|0); + $97 = (_i64Add(($55|0),($56|0),33554432,0)|0); $98 = tempRet0; - $99 = (_i64Add(($65|0),($66|0),($97|0),($98|0))|0); + $99 = (_bitshift64Ashr(($97|0),($98|0),26)|0); $100 = tempRet0; - $101 = (_bitshift64Shl(($97|0),($98|0),26)|0); + $101 = (_i64Add(($67|0),($68|0),($99|0),($100|0))|0); $102 = tempRet0; - $103 = (_i64Subtract(($53|0),($54|0),($101|0),($102|0))|0); + $103 = (_bitshift64Shl(($99|0),($100|0),26)|0); $104 = tempRet0; - $105 = (_i64Add(($61|0),($62|0),33554432,0)|0); + $105 = (_i64Subtract(($55|0),($56|0),($103|0),($104|0))|0); $106 = tempRet0; - $107 = (_bitshift64Ashr(($105|0),($106|0),26)|0); + $107 = (_i64Add(($63|0),($64|0),33554432,0)|0); $108 = tempRet0; - $109 = (_i64Add(($75|0),($76|0),($107|0),($108|0))|0); + $109 = (_bitshift64Ashr(($107|0),($108|0),26)|0); $110 = tempRet0; - $111 = (_bitshift64Shl(($107|0),($108|0),26)|0); + $111 = (_i64Add(($77|0),($78|0),($109|0),($110|0))|0); $112 = tempRet0; - $113 = (_i64Subtract(($61|0),($62|0),($111|0),($112|0))|0); + $113 = (_bitshift64Shl(($109|0),($110|0),26)|0); $114 = tempRet0; - $115 = (_i64Add(($71|0),($72|0),33554432,0)|0); + $115 = (_i64Subtract(($63|0),($64|0),($113|0),($114|0))|0); $116 = tempRet0; - $117 = (_bitshift64Ashr(($115|0),($116|0),26)|0); + $117 = (_i64Add(($73|0),($74|0),33554432,0)|0); $118 = tempRet0; - $119 = (_i64Add(($85|0),($86|0),($117|0),($118|0))|0); + $119 = (_bitshift64Ashr(($117|0),($118|0),26)|0); $120 = tempRet0; - $121 = (_bitshift64Shl(($117|0),($118|0),26)|0); + $121 = (_i64Add(($87|0),($88|0),($119|0),($120|0))|0); $122 = tempRet0; - $123 = (_i64Subtract(($71|0),($72|0),($121|0),($122|0))|0); + $123 = (_bitshift64Shl(($119|0),($120|0),26)|0); $124 = tempRet0; - $125 = (_i64Add(($81|0),($82|0),33554432,0)|0); + $125 = (_i64Subtract(($73|0),($74|0),($123|0),($124|0))|0); $126 = tempRet0; - $127 = (_bitshift64Ashr(($125|0),($126|0),26)|0); + $127 = (_i64Add(($83|0),($84|0),33554432,0)|0); $128 = tempRet0; - $129 = (_i64Add(($127|0),($128|0),($33|0),($34|0))|0); + $129 = (_bitshift64Ashr(($127|0),($128|0),26)|0); $130 = tempRet0; - $131 = (_i64Subtract(($129|0),($130|0),($93|0),($94|0))|0); + $131 = (_i64Add(($129|0),($130|0),($35|0),($36|0))|0); $132 = tempRet0; - $133 = (_bitshift64Shl(($127|0),($128|0),26)|0); + $133 = (_i64Subtract(($131|0),($132|0),($95|0),($96|0))|0); $134 = tempRet0; - $135 = (_i64Subtract(($81|0),($82|0),($133|0),($134|0))|0); + $135 = (_bitshift64Shl(($129|0),($130|0),26)|0); $136 = tempRet0; - $137 = (_i64Add(($91|0),($92|0),33554432,0)|0); + $137 = (_i64Subtract(($83|0),($84|0),($135|0),($136|0))|0); $138 = tempRet0; - $139 = (_bitshift64Ashr(($137|0),($138|0),26)|0); + $139 = (_i64Add(($93|0),($94|0),33554432,0)|0); $140 = tempRet0; - $141 = (_i64Add(($139|0),($140|0),($45|0),0)|0); + $141 = (_bitshift64Ashr(($139|0),($140|0),26)|0); $142 = tempRet0; - $143 = (_i64Subtract(($141|0),($142|0),($55|0),($56|0))|0); + $143 = (_i64Add(($141|0),($142|0),($47|0),0)|0); $144 = tempRet0; - $145 = (_bitshift64Shl(($139|0),($140|0),26)|0); + $145 = (_i64Subtract(($143|0),($144|0),($57|0),($58|0))|0); $146 = tempRet0; - $147 = (_i64Subtract(($91|0),($92|0),($145|0),($146|0))|0); + $147 = (_bitshift64Shl(($141|0),($142|0),26)|0); $148 = tempRet0; - HEAP32[$h>>2] = $103; - $149 = ((($h)) + 4|0); - HEAP32[$149>>2] = $99; - $150 = ((($h)) + 8|0); - HEAP32[$150>>2] = $113; - $151 = ((($h)) + 12|0); - HEAP32[$151>>2] = $109; - $152 = ((($h)) + 16|0); - HEAP32[$152>>2] = $123; - $153 = ((($h)) + 20|0); - HEAP32[$153>>2] = $119; - $154 = ((($h)) + 24|0); - HEAP32[$154>>2] = $135; - $155 = ((($h)) + 28|0); - HEAP32[$155>>2] = $131; - $156 = ((($h)) + 32|0); - HEAP32[$156>>2] = $147; - $157 = ((($h)) + 36|0); - HEAP32[$157>>2] = $143; + $149 = (_i64Subtract(($93|0),($94|0),($147|0),($148|0))|0); + $150 = tempRet0; + HEAP32[$0>>2] = $105; + $151 = ((($0)) + 4|0); + HEAP32[$151>>2] = $101; + $152 = ((($0)) + 8|0); + HEAP32[$152>>2] = $115; + $153 = ((($0)) + 12|0); + HEAP32[$153>>2] = $111; + $154 = ((($0)) + 16|0); + HEAP32[$154>>2] = $125; + $155 = ((($0)) + 20|0); + HEAP32[$155>>2] = $121; + $156 = ((($0)) + 24|0); + HEAP32[$156>>2] = $137; + $157 = ((($0)) + 28|0); + HEAP32[$157>>2] = $133; + $158 = ((($0)) + 32|0); + HEAP32[$158>>2] = $149; + $159 = ((($0)) + 36|0); + HEAP32[$159>>2] = $145; return; } -function _load_4($in) { - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; +function _load_4($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; var $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP8[$in>>0]|0; - $1 = $0&255; - $2 = ((($in)) + 1|0); - $3 = HEAP8[$2>>0]|0; - $4 = $3&255; - $5 = (_bitshift64Shl(($4|0),0,8)|0); - $6 = tempRet0; - $7 = $5 | $1; - $8 = ((($in)) + 2|0); - $9 = HEAP8[$8>>0]|0; - $10 = $9&255; - $11 = (_bitshift64Shl(($10|0),0,16)|0); - $12 = tempRet0; - $13 = $7 | $11; - $14 = $6 | $12; - $15 = ((($in)) + 3|0); - $16 = HEAP8[$15>>0]|0; - $17 = $16&255; - $18 = (_bitshift64Shl(($17|0),0,24)|0); - $19 = tempRet0; - $20 = $13 | $18; + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = ((($0)) + 1|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = (_bitshift64Shl(($5|0),0,8)|0); + $7 = tempRet0; + $8 = $6 | $2; + $9 = ((($0)) + 2|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = (_bitshift64Shl(($11|0),0,16)|0); + $13 = tempRet0; + $14 = $8 | $12; + $15 = $7 | $13; + $16 = ((($0)) + 3|0); + $17 = HEAP8[$16>>0]|0; + $18 = $17&255; + $19 = (_bitshift64Shl(($18|0),0,24)|0); + $20 = tempRet0; $21 = $14 | $19; - tempRet0 = ($21); - return ($20|0); + $22 = $15 | $20; + tempRet0 = ($22); + return ($21|0); } -function _load_3($in) { - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; +function _load_3($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP8[$in>>0]|0; - $1 = $0&255; - $2 = ((($in)) + 1|0); - $3 = HEAP8[$2>>0]|0; - $4 = $3&255; - $5 = (_bitshift64Shl(($4|0),0,8)|0); - $6 = tempRet0; - $7 = $5 | $1; - $8 = ((($in)) + 2|0); - $9 = HEAP8[$8>>0]|0; - $10 = $9&255; - $11 = (_bitshift64Shl(($10|0),0,16)|0); - $12 = tempRet0; - $13 = $7 | $11; - $14 = $6 | $12; - tempRet0 = ($14); - return ($13|0); -} -function _crypto_sign_ed25519_ref10_fe_invert($out,$z) { - $out = $out|0; - $z = $z|0; - var $0 = 0, $1 = 0, $2 = 0, $exitcond = 0, $exitcond10 = 0, $exitcond11 = 0, $i$74 = 0, $i$83 = 0, $i$92 = 0, $t0 = 0, $t1 = 0, $t2 = 0, $t3 = 0, label = 0, sp = 0; + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = ((($0)) + 1|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = (_bitshift64Shl(($5|0),0,8)|0); + $7 = tempRet0; + $8 = $6 | $2; + $9 = ((($0)) + 2|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = (_bitshift64Shl(($11|0),0,16)|0); + $13 = tempRet0; + $14 = $8 | $12; + $15 = $7 | $13; + tempRet0 = ($15); + return ($14|0); +} +function _crypto_sign_ed25519_ref10_fe_invert($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$728 = 0, $$827 = 0, $$926 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $exitcond = 0, $exitcond34 = 0, $exitcond35 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 160|0; - $t0 = sp + 120|0; - $t1 = sp + 80|0; - $t2 = sp + 40|0; - $t3 = sp; - _crypto_sign_ed25519_ref10_fe_sq($t0,$z); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_mul($t1,$z,$t1); - _crypto_sign_ed25519_ref10_fe_mul($t0,$t0,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t0); - _crypto_sign_ed25519_ref10_fe_mul($t1,$t1,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_mul($t2,$t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_mul($t2,$t3,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); - $i$74 = 1; + $2 = sp + 120|0; + $3 = sp + 80|0; + $4 = sp + 40|0; + $5 = sp; + _crypto_sign_ed25519_ref10_fe_sq($2,$1); + _crypto_sign_ed25519_ref10_fe_sq($3,$2); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_mul($3,$1,$3); + _crypto_sign_ed25519_ref10_fe_mul($2,$2,$3); + _crypto_sign_ed25519_ref10_fe_sq($4,$2); + _crypto_sign_ed25519_ref10_fe_mul($3,$3,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$3); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_mul($3,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($4,$3); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_mul($4,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($5,$4); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_mul($4,$5,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_mul($3,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($4,$3); + $$728 = 1; while(1) { - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - $0 = (($i$74) + 1)|0; - $exitcond11 = ($0|0)==(50); - if ($exitcond11) { + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + $6 = (($$728) + 1)|0; + $exitcond35 = ($6|0)==(50); + if ($exitcond35) { break; } else { - $i$74 = $0; + $$728 = $6; } } - _crypto_sign_ed25519_ref10_fe_mul($t2,$t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t2); - $i$83 = 1; + _crypto_sign_ed25519_ref10_fe_mul($4,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($5,$4); + $$827 = 1; while(1) { - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - $1 = (($i$83) + 1)|0; - $exitcond10 = ($1|0)==(100); - if ($exitcond10) { + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + $7 = (($$827) + 1)|0; + $exitcond34 = ($7|0)==(100); + if ($exitcond34) { break; } else { - $i$83 = $1; + $$827 = $7; } } - _crypto_sign_ed25519_ref10_fe_mul($t2,$t3,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - $i$92 = 1; + _crypto_sign_ed25519_ref10_fe_mul($4,$5,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + $$926 = 1; while(1) { - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - $2 = (($i$92) + 1)|0; - $exitcond = ($2|0)==(50); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + $8 = (($$926) + 1)|0; + $exitcond = ($8|0)==(50); if ($exitcond) { break; } else { - $i$92 = $2; + $$926 = $8; } } - _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_mul($out,$t1,$t0); + _crypto_sign_ed25519_ref10_fe_mul($3,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_mul($0,$3,$2); STACKTOP = sp;return; } -function _crypto_sign_ed25519_ref10_fe_isnegative($f) { - $f = $f|0; - var $0 = 0, $1 = 0, $2 = 0, $s = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_fe_isnegative($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 32|0; - $s = sp; - _crypto_sign_ed25519_ref10_fe_tobytes($s,$f); - $0 = HEAP8[$s>>0]|0; - $1 = $0&255; - $2 = $1 & 1; - STACKTOP = sp;return ($2|0); + $1 = sp; + _crypto_sign_ed25519_ref10_fe_tobytes($1,$0); + $2 = HEAP8[$1>>0]|0; + $3 = $2 & 1; + $4 = $3&255; + STACKTOP = sp;return ($4|0); } -function _crypto_sign_ed25519_ref10_fe_isnonzero($f) { - $f = $f|0; - var $0 = 0, $s = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_fe_isnonzero($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 32|0; - $s = sp; - _crypto_sign_ed25519_ref10_fe_tobytes($s,$f); - $0 = (_crypto_verify_32_ref($s,33172)|0); - STACKTOP = sp;return ($0|0); -} -function _crypto_sign_ed25519_ref10_fe_mul($h,$f,$g) { - $h = $h|0; - $f = $f|0; - $g = $g|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; - var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; - var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; - var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; - var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; - var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; - var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; - var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; - var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; - var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; - var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; - var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; - var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0; - var $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0; - var $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0; - var $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0; - var $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0; - var $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0; - var $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0; - var $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0; - var $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0; - var $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0; - var $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0; - var $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0; - var $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0; + $1 = sp; + _crypto_sign_ed25519_ref10_fe_tobytes($1,$0); + $2 = (_crypto_verify_32_ref($1,33460)|0); + STACKTOP = sp;return ($2|0); +} +function _crypto_sign_ed25519_ref10_fe_mul($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0; + var $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0; + var $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0; + var $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0; + var $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0; + var $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0; + var $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0; + var $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0; + var $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0; + var $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0; + var $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0; + var $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0; + var $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0; + var $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0; + var $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0; + var $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0; + var $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0; + var $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0; + var $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0; + var $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0; + var $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0; + var $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0; + var $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0; + var $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0; + var $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0; var $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0; var $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); + $3 = HEAP32[$1>>2]|0; + $4 = ((($1)) + 4|0); + $5 = HEAP32[$4>>2]|0; + $6 = ((($1)) + 8|0); + $7 = HEAP32[$6>>2]|0; + $8 = ((($1)) + 12|0); + $9 = HEAP32[$8>>2]|0; + $10 = ((($1)) + 16|0); + $11 = HEAP32[$10>>2]|0; + $12 = ((($1)) + 20|0); + $13 = HEAP32[$12>>2]|0; + $14 = ((($1)) + 24|0); + $15 = HEAP32[$14>>2]|0; + $16 = ((($1)) + 28|0); + $17 = HEAP32[$16>>2]|0; + $18 = ((($1)) + 32|0); + $19 = HEAP32[$18>>2]|0; + $20 = ((($1)) + 36|0); + $21 = HEAP32[$20>>2]|0; + $22 = HEAP32[$2>>2]|0; + $23 = ((($2)) + 4|0); + $24 = HEAP32[$23>>2]|0; + $25 = ((($2)) + 8|0); + $26 = HEAP32[$25>>2]|0; + $27 = ((($2)) + 12|0); + $28 = HEAP32[$27>>2]|0; + $29 = ((($2)) + 16|0); + $30 = HEAP32[$29>>2]|0; + $31 = ((($2)) + 20|0); + $32 = HEAP32[$31>>2]|0; + $33 = ((($2)) + 24|0); + $34 = HEAP32[$33>>2]|0; + $35 = ((($2)) + 28|0); + $36 = HEAP32[$35>>2]|0; + $37 = ((($2)) + 32|0); + $38 = HEAP32[$37>>2]|0; + $39 = ((($2)) + 36|0); + $40 = HEAP32[$39>>2]|0; + $41 = ($24*19)|0; + $42 = ($26*19)|0; + $43 = ($28*19)|0; + $44 = ($30*19)|0; + $45 = ($32*19)|0; + $46 = ($34*19)|0; + $47 = ($36*19)|0; + $48 = ($38*19)|0; + $49 = ($40*19)|0; + $50 = $5 << 1; + $51 = $9 << 1; + $52 = $13 << 1; + $53 = $17 << 1; + $54 = $21 << 1; + $55 = ($3|0)<(0); + $56 = $55 << 31 >> 31; + $57 = ($22|0)<(0); + $58 = $57 << 31 >> 31; + $59 = (___muldi3(($22|0),($58|0),($3|0),($56|0))|0); + $60 = tempRet0; + $61 = ($24|0)<(0); + $62 = $61 << 31 >> 31; + $63 = (___muldi3(($24|0),($62|0),($3|0),($56|0))|0); + $64 = tempRet0; + $65 = ($26|0)<(0); + $66 = $65 << 31 >> 31; + $67 = (___muldi3(($26|0),($66|0),($3|0),($56|0))|0); + $68 = tempRet0; + $69 = ($28|0)<(0); + $70 = $69 << 31 >> 31; + $71 = (___muldi3(($28|0),($70|0),($3|0),($56|0))|0); + $72 = tempRet0; + $73 = ($30|0)<(0); + $74 = $73 << 31 >> 31; + $75 = (___muldi3(($30|0),($74|0),($3|0),($56|0))|0); + $76 = tempRet0; + $77 = ($32|0)<(0); + $78 = $77 << 31 >> 31; + $79 = (___muldi3(($32|0),($78|0),($3|0),($56|0))|0); + $80 = tempRet0; + $81 = ($34|0)<(0); + $82 = $81 << 31 >> 31; + $83 = (___muldi3(($34|0),($82|0),($3|0),($56|0))|0); + $84 = tempRet0; + $85 = ($36|0)<(0); + $86 = $85 << 31 >> 31; + $87 = (___muldi3(($36|0),($86|0),($3|0),($56|0))|0); + $88 = tempRet0; + $89 = ($38|0)<(0); + $90 = $89 << 31 >> 31; + $91 = (___muldi3(($38|0),($90|0),($3|0),($56|0))|0); + $92 = tempRet0; + $93 = ($40|0)<(0); + $94 = $93 << 31 >> 31; + $95 = (___muldi3(($40|0),($94|0),($3|0),($56|0))|0); + $96 = tempRet0; + $97 = ($5|0)<(0); + $98 = $97 << 31 >> 31; + $99 = (___muldi3(($22|0),($58|0),($5|0),($98|0))|0); + $100 = tempRet0; + $101 = ($50|0)<(0); + $102 = $101 << 31 >> 31; + $103 = (___muldi3(($24|0),($62|0),($50|0),($102|0))|0); + $104 = tempRet0; + $105 = (___muldi3(($26|0),($66|0),($5|0),($98|0))|0); + $106 = tempRet0; + $107 = (___muldi3(($28|0),($70|0),($50|0),($102|0))|0); + $108 = tempRet0; + $109 = (___muldi3(($30|0),($74|0),($5|0),($98|0))|0); + $110 = tempRet0; + $111 = (___muldi3(($32|0),($78|0),($50|0),($102|0))|0); + $112 = tempRet0; + $113 = (___muldi3(($34|0),($82|0),($5|0),($98|0))|0); + $114 = tempRet0; + $115 = (___muldi3(($36|0),($86|0),($50|0),($102|0))|0); + $116 = tempRet0; + $117 = (___muldi3(($38|0),($90|0),($5|0),($98|0))|0); + $118 = tempRet0; + $119 = ($49|0)<(0); + $120 = $119 << 31 >> 31; + $121 = (___muldi3(($49|0),($120|0),($50|0),($102|0))|0); + $122 = tempRet0; + $123 = ($7|0)<(0); + $124 = $123 << 31 >> 31; + $125 = (___muldi3(($22|0),($58|0),($7|0),($124|0))|0); + $126 = tempRet0; + $127 = (___muldi3(($24|0),($62|0),($7|0),($124|0))|0); + $128 = tempRet0; + $129 = (___muldi3(($26|0),($66|0),($7|0),($124|0))|0); + $130 = tempRet0; + $131 = (___muldi3(($28|0),($70|0),($7|0),($124|0))|0); + $132 = tempRet0; + $133 = (___muldi3(($30|0),($74|0),($7|0),($124|0))|0); + $134 = tempRet0; + $135 = (___muldi3(($32|0),($78|0),($7|0),($124|0))|0); + $136 = tempRet0; + $137 = (___muldi3(($34|0),($82|0),($7|0),($124|0))|0); + $138 = tempRet0; + $139 = (___muldi3(($36|0),($86|0),($7|0),($124|0))|0); + $140 = tempRet0; + $141 = ($48|0)<(0); + $142 = $141 << 31 >> 31; + $143 = (___muldi3(($48|0),($142|0),($7|0),($124|0))|0); + $144 = tempRet0; + $145 = (___muldi3(($49|0),($120|0),($7|0),($124|0))|0); + $146 = tempRet0; + $147 = ($9|0)<(0); + $148 = $147 << 31 >> 31; + $149 = (___muldi3(($22|0),($58|0),($9|0),($148|0))|0); + $150 = tempRet0; + $151 = ($51|0)<(0); + $152 = $151 << 31 >> 31; + $153 = (___muldi3(($24|0),($62|0),($51|0),($152|0))|0); + $154 = tempRet0; + $155 = (___muldi3(($26|0),($66|0),($9|0),($148|0))|0); + $156 = tempRet0; + $157 = (___muldi3(($28|0),($70|0),($51|0),($152|0))|0); + $158 = tempRet0; + $159 = (___muldi3(($30|0),($74|0),($9|0),($148|0))|0); + $160 = tempRet0; + $161 = (___muldi3(($32|0),($78|0),($51|0),($152|0))|0); + $162 = tempRet0; + $163 = (___muldi3(($34|0),($82|0),($9|0),($148|0))|0); + $164 = tempRet0; + $165 = ($47|0)<(0); + $166 = $165 << 31 >> 31; + $167 = (___muldi3(($47|0),($166|0),($51|0),($152|0))|0); + $168 = tempRet0; + $169 = (___muldi3(($48|0),($142|0),($9|0),($148|0))|0); + $170 = tempRet0; + $171 = (___muldi3(($49|0),($120|0),($51|0),($152|0))|0); + $172 = tempRet0; + $173 = ($11|0)<(0); + $174 = $173 << 31 >> 31; + $175 = (___muldi3(($22|0),($58|0),($11|0),($174|0))|0); + $176 = tempRet0; + $177 = (___muldi3(($24|0),($62|0),($11|0),($174|0))|0); + $178 = tempRet0; + $179 = (___muldi3(($26|0),($66|0),($11|0),($174|0))|0); + $180 = tempRet0; + $181 = (___muldi3(($28|0),($70|0),($11|0),($174|0))|0); + $182 = tempRet0; + $183 = (___muldi3(($30|0),($74|0),($11|0),($174|0))|0); + $184 = tempRet0; + $185 = (___muldi3(($32|0),($78|0),($11|0),($174|0))|0); + $186 = tempRet0; + $187 = ($46|0)<(0); + $188 = $187 << 31 >> 31; + $189 = (___muldi3(($46|0),($188|0),($11|0),($174|0))|0); + $190 = tempRet0; + $191 = (___muldi3(($47|0),($166|0),($11|0),($174|0))|0); + $192 = tempRet0; + $193 = (___muldi3(($48|0),($142|0),($11|0),($174|0))|0); + $194 = tempRet0; + $195 = (___muldi3(($49|0),($120|0),($11|0),($174|0))|0); + $196 = tempRet0; + $197 = ($13|0)<(0); + $198 = $197 << 31 >> 31; + $199 = (___muldi3(($22|0),($58|0),($13|0),($198|0))|0); + $200 = tempRet0; + $201 = ($52|0)<(0); + $202 = $201 << 31 >> 31; + $203 = (___muldi3(($24|0),($62|0),($52|0),($202|0))|0); + $204 = tempRet0; + $205 = (___muldi3(($26|0),($66|0),($13|0),($198|0))|0); + $206 = tempRet0; + $207 = (___muldi3(($28|0),($70|0),($52|0),($202|0))|0); + $208 = tempRet0; + $209 = (___muldi3(($30|0),($74|0),($13|0),($198|0))|0); + $210 = tempRet0; + $211 = ($45|0)<(0); + $212 = $211 << 31 >> 31; + $213 = (___muldi3(($45|0),($212|0),($52|0),($202|0))|0); + $214 = tempRet0; + $215 = (___muldi3(($46|0),($188|0),($13|0),($198|0))|0); + $216 = tempRet0; + $217 = (___muldi3(($47|0),($166|0),($52|0),($202|0))|0); + $218 = tempRet0; + $219 = (___muldi3(($48|0),($142|0),($13|0),($198|0))|0); + $220 = tempRet0; + $221 = (___muldi3(($49|0),($120|0),($52|0),($202|0))|0); + $222 = tempRet0; + $223 = ($15|0)<(0); + $224 = $223 << 31 >> 31; + $225 = (___muldi3(($22|0),($58|0),($15|0),($224|0))|0); + $226 = tempRet0; + $227 = (___muldi3(($24|0),($62|0),($15|0),($224|0))|0); + $228 = tempRet0; + $229 = (___muldi3(($26|0),($66|0),($15|0),($224|0))|0); + $230 = tempRet0; + $231 = (___muldi3(($28|0),($70|0),($15|0),($224|0))|0); + $232 = tempRet0; + $233 = ($44|0)<(0); + $234 = $233 << 31 >> 31; + $235 = (___muldi3(($44|0),($234|0),($15|0),($224|0))|0); + $236 = tempRet0; + $237 = (___muldi3(($45|0),($212|0),($15|0),($224|0))|0); + $238 = tempRet0; + $239 = (___muldi3(($46|0),($188|0),($15|0),($224|0))|0); + $240 = tempRet0; + $241 = (___muldi3(($47|0),($166|0),($15|0),($224|0))|0); + $242 = tempRet0; + $243 = (___muldi3(($48|0),($142|0),($15|0),($224|0))|0); + $244 = tempRet0; + $245 = (___muldi3(($49|0),($120|0),($15|0),($224|0))|0); + $246 = tempRet0; + $247 = ($17|0)<(0); + $248 = $247 << 31 >> 31; + $249 = (___muldi3(($22|0),($58|0),($17|0),($248|0))|0); + $250 = tempRet0; + $251 = ($53|0)<(0); + $252 = $251 << 31 >> 31; + $253 = (___muldi3(($24|0),($62|0),($53|0),($252|0))|0); + $254 = tempRet0; + $255 = (___muldi3(($26|0),($66|0),($17|0),($248|0))|0); + $256 = tempRet0; + $257 = ($43|0)<(0); + $258 = $257 << 31 >> 31; + $259 = (___muldi3(($43|0),($258|0),($53|0),($252|0))|0); + $260 = tempRet0; + $261 = (___muldi3(($44|0),($234|0),($17|0),($248|0))|0); + $262 = tempRet0; + $263 = (___muldi3(($45|0),($212|0),($53|0),($252|0))|0); + $264 = tempRet0; + $265 = (___muldi3(($46|0),($188|0),($17|0),($248|0))|0); + $266 = tempRet0; + $267 = (___muldi3(($47|0),($166|0),($53|0),($252|0))|0); + $268 = tempRet0; + $269 = (___muldi3(($48|0),($142|0),($17|0),($248|0))|0); + $270 = tempRet0; + $271 = (___muldi3(($49|0),($120|0),($53|0),($252|0))|0); + $272 = tempRet0; + $273 = ($19|0)<(0); + $274 = $273 << 31 >> 31; + $275 = (___muldi3(($22|0),($58|0),($19|0),($274|0))|0); + $276 = tempRet0; + $277 = (___muldi3(($24|0),($62|0),($19|0),($274|0))|0); + $278 = tempRet0; + $279 = ($42|0)<(0); + $280 = $279 << 31 >> 31; + $281 = (___muldi3(($42|0),($280|0),($19|0),($274|0))|0); + $282 = tempRet0; + $283 = (___muldi3(($43|0),($258|0),($19|0),($274|0))|0); + $284 = tempRet0; + $285 = (___muldi3(($44|0),($234|0),($19|0),($274|0))|0); + $286 = tempRet0; + $287 = (___muldi3(($45|0),($212|0),($19|0),($274|0))|0); + $288 = tempRet0; + $289 = (___muldi3(($46|0),($188|0),($19|0),($274|0))|0); + $290 = tempRet0; + $291 = (___muldi3(($47|0),($166|0),($19|0),($274|0))|0); + $292 = tempRet0; + $293 = (___muldi3(($48|0),($142|0),($19|0),($274|0))|0); + $294 = tempRet0; + $295 = (___muldi3(($49|0),($120|0),($19|0),($274|0))|0); + $296 = tempRet0; + $297 = ($21|0)<(0); + $298 = $297 << 31 >> 31; + $299 = (___muldi3(($22|0),($58|0),($21|0),($298|0))|0); + $300 = tempRet0; + $301 = ($54|0)<(0); + $302 = $301 << 31 >> 31; + $303 = ($41|0)<(0); + $304 = $303 << 31 >> 31; + $305 = (___muldi3(($41|0),($304|0),($54|0),($302|0))|0); + $306 = tempRet0; + $307 = (___muldi3(($42|0),($280|0),($21|0),($298|0))|0); + $308 = tempRet0; + $309 = (___muldi3(($43|0),($258|0),($54|0),($302|0))|0); + $310 = tempRet0; + $311 = (___muldi3(($44|0),($234|0),($21|0),($298|0))|0); + $312 = tempRet0; + $313 = (___muldi3(($45|0),($212|0),($54|0),($302|0))|0); + $314 = tempRet0; + $315 = (___muldi3(($46|0),($188|0),($21|0),($298|0))|0); + $316 = tempRet0; + $317 = (___muldi3(($47|0),($166|0),($54|0),($302|0))|0); + $318 = tempRet0; + $319 = (___muldi3(($48|0),($142|0),($21|0),($298|0))|0); + $320 = tempRet0; + $321 = (___muldi3(($49|0),($120|0),($54|0),($302|0))|0); + $322 = tempRet0; + $323 = (_i64Add(($305|0),($306|0),($59|0),($60|0))|0); + $324 = tempRet0; + $325 = (_i64Add(($323|0),($324|0),($281|0),($282|0))|0); + $326 = tempRet0; + $327 = (_i64Add(($325|0),($326|0),($259|0),($260|0))|0); + $328 = tempRet0; + $329 = (_i64Add(($327|0),($328|0),($235|0),($236|0))|0); + $330 = tempRet0; + $331 = (_i64Add(($329|0),($330|0),($213|0),($214|0))|0); + $332 = tempRet0; + $333 = (_i64Add(($331|0),($332|0),($189|0),($190|0))|0); + $334 = tempRet0; + $335 = (_i64Add(($333|0),($334|0),($167|0),($168|0))|0); + $336 = tempRet0; + $337 = (_i64Add(($335|0),($336|0),($143|0),($144|0))|0); + $338 = tempRet0; + $339 = (_i64Add(($337|0),($338|0),($121|0),($122|0))|0); + $340 = tempRet0; + $341 = (_i64Add(($63|0),($64|0),($99|0),($100|0))|0); + $342 = tempRet0; + $343 = (_i64Add(($153|0),($154|0),($175|0),($176|0))|0); + $344 = tempRet0; + $345 = (_i64Add(($343|0),($344|0),($129|0),($130|0))|0); + $346 = tempRet0; + $347 = (_i64Add(($345|0),($346|0),($107|0),($108|0))|0); + $348 = tempRet0; + $349 = (_i64Add(($347|0),($348|0),($75|0),($76|0))|0); + $350 = tempRet0; + $351 = (_i64Add(($349|0),($350|0),($313|0),($314|0))|0); + $352 = tempRet0; + $353 = (_i64Add(($351|0),($352|0),($289|0),($290|0))|0); + $354 = tempRet0; + $355 = (_i64Add(($353|0),($354|0),($267|0),($268|0))|0); + $356 = tempRet0; + $357 = (_i64Add(($355|0),($356|0),($243|0),($244|0))|0); + $358 = tempRet0; + $359 = (_i64Add(($357|0),($358|0),($221|0),($222|0))|0); + $360 = tempRet0; + $361 = (_i64Add(($339|0),($340|0),33554432,0)|0); + $362 = tempRet0; + $363 = (_bitshift64Ashr(($361|0),($362|0),26)|0); + $364 = tempRet0; + $365 = (_i64Add(($341|0),($342|0),($307|0),($308|0))|0); + $366 = tempRet0; + $367 = (_i64Add(($365|0),($366|0),($283|0),($284|0))|0); + $368 = tempRet0; + $369 = (_i64Add(($367|0),($368|0),($261|0),($262|0))|0); + $370 = tempRet0; + $371 = (_i64Add(($369|0),($370|0),($237|0),($238|0))|0); + $372 = tempRet0; + $373 = (_i64Add(($371|0),($372|0),($215|0),($216|0))|0); + $374 = tempRet0; + $375 = (_i64Add(($373|0),($374|0),($191|0),($192|0))|0); + $376 = tempRet0; + $377 = (_i64Add(($375|0),($376|0),($169|0),($170|0))|0); + $378 = tempRet0; + $379 = (_i64Add(($377|0),($378|0),($145|0),($146|0))|0); + $380 = tempRet0; + $381 = (_i64Add(($379|0),($380|0),($363|0),($364|0))|0); + $382 = tempRet0; + $383 = (_bitshift64Shl(($363|0),($364|0),26)|0); + $384 = tempRet0; + $385 = (_i64Subtract(($339|0),($340|0),($383|0),($384|0))|0); + $386 = tempRet0; + $387 = (_i64Add(($359|0),($360|0),33554432,0)|0); + $388 = tempRet0; + $389 = (_bitshift64Ashr(($387|0),($388|0),26)|0); + $390 = tempRet0; + $391 = (_i64Add(($177|0),($178|0),($199|0),($200|0))|0); + $392 = tempRet0; + $393 = (_i64Add(($391|0),($392|0),($155|0),($156|0))|0); + $394 = tempRet0; + $395 = (_i64Add(($393|0),($394|0),($131|0),($132|0))|0); + $396 = tempRet0; + $397 = (_i64Add(($395|0),($396|0),($109|0),($110|0))|0); + $398 = tempRet0; + $399 = (_i64Add(($397|0),($398|0),($79|0),($80|0))|0); + $400 = tempRet0; + $401 = (_i64Add(($399|0),($400|0),($315|0),($316|0))|0); + $402 = tempRet0; + $403 = (_i64Add(($401|0),($402|0),($291|0),($292|0))|0); + $404 = tempRet0; + $405 = (_i64Add(($403|0),($404|0),($269|0),($270|0))|0); + $406 = tempRet0; + $407 = (_i64Add(($405|0),($406|0),($245|0),($246|0))|0); + $408 = tempRet0; + $409 = (_i64Add(($407|0),($408|0),($389|0),($390|0))|0); + $410 = tempRet0; + $411 = (_bitshift64Shl(($389|0),($390|0),26)|0); + $412 = tempRet0; + $413 = (_i64Subtract(($359|0),($360|0),($411|0),($412|0))|0); + $414 = tempRet0; + $415 = (_i64Add(($381|0),($382|0),16777216,0)|0); + $416 = tempRet0; + $417 = (_bitshift64Ashr(($415|0),($416|0),25)|0); + $418 = tempRet0; + $419 = (_i64Add(($103|0),($104|0),($125|0),($126|0))|0); + $420 = tempRet0; + $421 = (_i64Add(($419|0),($420|0),($67|0),($68|0))|0); + $422 = tempRet0; + $423 = (_i64Add(($421|0),($422|0),($309|0),($310|0))|0); + $424 = tempRet0; + $425 = (_i64Add(($423|0),($424|0),($285|0),($286|0))|0); + $426 = tempRet0; + $427 = (_i64Add(($425|0),($426|0),($263|0),($264|0))|0); + $428 = tempRet0; + $429 = (_i64Add(($427|0),($428|0),($239|0),($240|0))|0); + $430 = tempRet0; + $431 = (_i64Add(($429|0),($430|0),($217|0),($218|0))|0); + $432 = tempRet0; + $433 = (_i64Add(($431|0),($432|0),($193|0),($194|0))|0); + $434 = tempRet0; + $435 = (_i64Add(($433|0),($434|0),($171|0),($172|0))|0); + $436 = tempRet0; + $437 = (_i64Add(($435|0),($436|0),($417|0),($418|0))|0); + $438 = tempRet0; + $439 = (_bitshift64Shl(($417|0),($418|0),25)|0); + $440 = tempRet0; + $441 = (_i64Subtract(($381|0),($382|0),($439|0),($440|0))|0); + $442 = tempRet0; + $443 = (_i64Add(($409|0),($410|0),16777216,0)|0); + $444 = tempRet0; + $445 = (_bitshift64Ashr(($443|0),($444|0),25)|0); + $446 = tempRet0; + $447 = (_i64Add(($203|0),($204|0),($225|0),($226|0))|0); + $448 = tempRet0; + $449 = (_i64Add(($447|0),($448|0),($179|0),($180|0))|0); + $450 = tempRet0; + $451 = (_i64Add(($449|0),($450|0),($157|0),($158|0))|0); + $452 = tempRet0; + $453 = (_i64Add(($451|0),($452|0),($133|0),($134|0))|0); + $454 = tempRet0; + $455 = (_i64Add(($453|0),($454|0),($111|0),($112|0))|0); + $456 = tempRet0; + $457 = (_i64Add(($455|0),($456|0),($83|0),($84|0))|0); + $458 = tempRet0; + $459 = (_i64Add(($457|0),($458|0),($317|0),($318|0))|0); + $460 = tempRet0; + $461 = (_i64Add(($459|0),($460|0),($293|0),($294|0))|0); + $462 = tempRet0; + $463 = (_i64Add(($461|0),($462|0),($271|0),($272|0))|0); + $464 = tempRet0; + $465 = (_i64Add(($463|0),($464|0),($445|0),($446|0))|0); + $466 = tempRet0; + $467 = (_bitshift64Shl(($445|0),($446|0),25)|0); + $468 = tempRet0; + $469 = (_i64Subtract(($409|0),($410|0),($467|0),($468|0))|0); + $470 = tempRet0; + $471 = (_i64Add(($437|0),($438|0),33554432,0)|0); + $472 = tempRet0; + $473 = (_bitshift64Ashr(($471|0),($472|0),26)|0); + $474 = tempRet0; + $475 = (_i64Add(($127|0),($128|0),($149|0),($150|0))|0); + $476 = tempRet0; + $477 = (_i64Add(($475|0),($476|0),($105|0),($106|0))|0); + $478 = tempRet0; + $479 = (_i64Add(($477|0),($478|0),($71|0),($72|0))|0); + $480 = tempRet0; + $481 = (_i64Add(($479|0),($480|0),($311|0),($312|0))|0); + $482 = tempRet0; + $483 = (_i64Add(($481|0),($482|0),($287|0),($288|0))|0); + $484 = tempRet0; + $485 = (_i64Add(($483|0),($484|0),($265|0),($266|0))|0); + $486 = tempRet0; + $487 = (_i64Add(($485|0),($486|0),($241|0),($242|0))|0); + $488 = tempRet0; + $489 = (_i64Add(($487|0),($488|0),($219|0),($220|0))|0); + $490 = tempRet0; + $491 = (_i64Add(($489|0),($490|0),($195|0),($196|0))|0); + $492 = tempRet0; + $493 = (_i64Add(($491|0),($492|0),($473|0),($474|0))|0); + $494 = tempRet0; + $495 = (_bitshift64Shl(($473|0),($474|0),26)|0); + $496 = tempRet0; + $497 = (_i64Subtract(($437|0),($438|0),($495|0),($496|0))|0); + $498 = tempRet0; + $499 = (_i64Add(($465|0),($466|0),33554432,0)|0); + $500 = tempRet0; + $501 = (_bitshift64Ashr(($499|0),($500|0),26)|0); + $502 = tempRet0; + $503 = (_i64Add(($227|0),($228|0),($249|0),($250|0))|0); + $504 = tempRet0; + $505 = (_i64Add(($503|0),($504|0),($205|0),($206|0))|0); + $506 = tempRet0; + $507 = (_i64Add(($505|0),($506|0),($181|0),($182|0))|0); + $508 = tempRet0; + $509 = (_i64Add(($507|0),($508|0),($159|0),($160|0))|0); + $510 = tempRet0; + $511 = (_i64Add(($509|0),($510|0),($135|0),($136|0))|0); + $512 = tempRet0; + $513 = (_i64Add(($511|0),($512|0),($113|0),($114|0))|0); + $514 = tempRet0; + $515 = (_i64Add(($513|0),($514|0),($87|0),($88|0))|0); + $516 = tempRet0; + $517 = (_i64Add(($515|0),($516|0),($319|0),($320|0))|0); + $518 = tempRet0; + $519 = (_i64Add(($517|0),($518|0),($295|0),($296|0))|0); + $520 = tempRet0; + $521 = (_i64Add(($519|0),($520|0),($501|0),($502|0))|0); + $522 = tempRet0; + $523 = (_bitshift64Shl(($501|0),($502|0),26)|0); + $524 = tempRet0; + $525 = (_i64Subtract(($465|0),($466|0),($523|0),($524|0))|0); + $526 = tempRet0; + $527 = (_i64Add(($493|0),($494|0),16777216,0)|0); + $528 = tempRet0; + $529 = (_bitshift64Ashr(($527|0),($528|0),25)|0); + $530 = tempRet0; + $531 = (_i64Add(($529|0),($530|0),($413|0),($414|0))|0); + $532 = tempRet0; + $533 = (_bitshift64Shl(($529|0),($530|0),25)|0); + $534 = tempRet0; + $535 = (_i64Subtract(($493|0),($494|0),($533|0),($534|0))|0); + $536 = tempRet0; + $537 = (_i64Add(($521|0),($522|0),16777216,0)|0); + $538 = tempRet0; + $539 = (_bitshift64Ashr(($537|0),($538|0),25)|0); + $540 = tempRet0; + $541 = (_i64Add(($253|0),($254|0),($275|0),($276|0))|0); + $542 = tempRet0; + $543 = (_i64Add(($541|0),($542|0),($229|0),($230|0))|0); + $544 = tempRet0; + $545 = (_i64Add(($543|0),($544|0),($207|0),($208|0))|0); + $546 = tempRet0; + $547 = (_i64Add(($545|0),($546|0),($183|0),($184|0))|0); + $548 = tempRet0; + $549 = (_i64Add(($547|0),($548|0),($161|0),($162|0))|0); + $550 = tempRet0; + $551 = (_i64Add(($549|0),($550|0),($137|0),($138|0))|0); + $552 = tempRet0; + $553 = (_i64Add(($551|0),($552|0),($115|0),($116|0))|0); + $554 = tempRet0; + $555 = (_i64Add(($553|0),($554|0),($91|0),($92|0))|0); + $556 = tempRet0; + $557 = (_i64Add(($555|0),($556|0),($321|0),($322|0))|0); + $558 = tempRet0; + $559 = (_i64Add(($557|0),($558|0),($539|0),($540|0))|0); + $560 = tempRet0; + $561 = (_bitshift64Shl(($539|0),($540|0),25)|0); + $562 = tempRet0; + $563 = (_i64Subtract(($521|0),($522|0),($561|0),($562|0))|0); + $564 = tempRet0; + $565 = (_i64Add(($531|0),($532|0),33554432,0)|0); + $566 = tempRet0; + $567 = (_bitshift64Ashr(($565|0),($566|0),26)|0); + $568 = tempRet0; + $569 = (_i64Add(($469|0),($470|0),($567|0),($568|0))|0); + $570 = tempRet0; + $571 = (_bitshift64Shl(($567|0),($568|0),26)|0); + $572 = tempRet0; + $573 = (_i64Subtract(($531|0),($532|0),($571|0),($572|0))|0); + $574 = tempRet0; + $575 = (_i64Add(($559|0),($560|0),33554432,0)|0); + $576 = tempRet0; + $577 = (_bitshift64Ashr(($575|0),($576|0),26)|0); + $578 = tempRet0; + $579 = (_i64Add(($277|0),($278|0),($299|0),($300|0))|0); + $580 = tempRet0; + $581 = (_i64Add(($579|0),($580|0),($255|0),($256|0))|0); + $582 = tempRet0; + $583 = (_i64Add(($581|0),($582|0),($231|0),($232|0))|0); + $584 = tempRet0; + $585 = (_i64Add(($583|0),($584|0),($209|0),($210|0))|0); + $586 = tempRet0; + $587 = (_i64Add(($585|0),($586|0),($185|0),($186|0))|0); + $588 = tempRet0; + $589 = (_i64Add(($587|0),($588|0),($163|0),($164|0))|0); + $590 = tempRet0; + $591 = (_i64Add(($589|0),($590|0),($139|0),($140|0))|0); + $592 = tempRet0; + $593 = (_i64Add(($591|0),($592|0),($117|0),($118|0))|0); + $594 = tempRet0; + $595 = (_i64Add(($593|0),($594|0),($95|0),($96|0))|0); + $596 = tempRet0; + $597 = (_i64Add(($595|0),($596|0),($577|0),($578|0))|0); + $598 = tempRet0; + $599 = (_bitshift64Shl(($577|0),($578|0),26)|0); + $600 = tempRet0; + $601 = (_i64Subtract(($559|0),($560|0),($599|0),($600|0))|0); + $602 = tempRet0; + $603 = (_i64Add(($597|0),($598|0),16777216,0)|0); + $604 = tempRet0; + $605 = (_bitshift64Ashr(($603|0),($604|0),25)|0); + $606 = tempRet0; + $607 = (___muldi3(($605|0),($606|0),19,0)|0); + $608 = tempRet0; + $609 = (_i64Add(($607|0),($608|0),($385|0),($386|0))|0); + $610 = tempRet0; + $611 = (_bitshift64Shl(($605|0),($606|0),25)|0); + $612 = tempRet0; + $613 = (_i64Subtract(($597|0),($598|0),($611|0),($612|0))|0); + $614 = tempRet0; + $615 = (_i64Add(($609|0),($610|0),33554432,0)|0); + $616 = tempRet0; + $617 = (_bitshift64Ashr(($615|0),($616|0),26)|0); + $618 = tempRet0; + $619 = (_i64Add(($441|0),($442|0),($617|0),($618|0))|0); + $620 = tempRet0; + $621 = (_bitshift64Shl(($617|0),($618|0),26)|0); + $622 = tempRet0; + $623 = (_i64Subtract(($609|0),($610|0),($621|0),($622|0))|0); + $624 = tempRet0; + HEAP32[$0>>2] = $623; + $625 = ((($0)) + 4|0); + HEAP32[$625>>2] = $619; + $626 = ((($0)) + 8|0); + HEAP32[$626>>2] = $497; + $627 = ((($0)) + 12|0); + HEAP32[$627>>2] = $535; + $628 = ((($0)) + 16|0); + HEAP32[$628>>2] = $573; + $629 = ((($0)) + 20|0); + HEAP32[$629>>2] = $569; + $630 = ((($0)) + 24|0); + HEAP32[$630>>2] = $525; + $631 = ((($0)) + 28|0); + HEAP32[$631>>2] = $563; + $632 = ((($0)) + 32|0); + HEAP32[$632>>2] = $601; + $633 = ((($0)) + 36|0); + HEAP32[$633>>2] = $613; + return; +} +function _crypto_sign_ed25519_ref10_fe_neg($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); + $3 = ((($1)) + 4|0); $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); + $5 = ((($1)) + 8|0); $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); + $7 = ((($1)) + 12|0); $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); + $9 = ((($1)) + 16|0); $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); + $11 = ((($1)) + 20|0); $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); + $13 = ((($1)) + 24|0); $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); + $15 = ((($1)) + 28|0); $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); + $17 = ((($1)) + 32|0); $18 = HEAP32[$17>>2]|0; - $19 = HEAP32[$g>>2]|0; - $20 = ((($g)) + 4|0); - $21 = HEAP32[$20>>2]|0; - $22 = ((($g)) + 8|0); - $23 = HEAP32[$22>>2]|0; - $24 = ((($g)) + 12|0); - $25 = HEAP32[$24>>2]|0; - $26 = ((($g)) + 16|0); - $27 = HEAP32[$26>>2]|0; - $28 = ((($g)) + 20|0); - $29 = HEAP32[$28>>2]|0; - $30 = ((($g)) + 24|0); - $31 = HEAP32[$30>>2]|0; - $32 = ((($g)) + 28|0); - $33 = HEAP32[$32>>2]|0; - $34 = ((($g)) + 32|0); - $35 = HEAP32[$34>>2]|0; - $36 = ((($g)) + 36|0); - $37 = HEAP32[$36>>2]|0; - $38 = ($21*19)|0; - $39 = ($23*19)|0; - $40 = ($25*19)|0; - $41 = ($27*19)|0; - $42 = ($29*19)|0; - $43 = ($31*19)|0; - $44 = ($33*19)|0; - $45 = ($35*19)|0; - $46 = ($37*19)|0; - $47 = $2 << 1; - $48 = $6 << 1; - $49 = $10 << 1; - $50 = $14 << 1; - $51 = $18 << 1; - $52 = ($0|0)<(0); + $19 = ((($1)) + 36|0); + $20 = HEAP32[$19>>2]|0; + $21 = (0 - ($2))|0; + $22 = (0 - ($4))|0; + $23 = (0 - ($6))|0; + $24 = (0 - ($8))|0; + $25 = (0 - ($10))|0; + $26 = (0 - ($12))|0; + $27 = (0 - ($14))|0; + $28 = (0 - ($16))|0; + $29 = (0 - ($18))|0; + $30 = (0 - ($20))|0; + HEAP32[$0>>2] = $21; + $31 = ((($0)) + 4|0); + HEAP32[$31>>2] = $22; + $32 = ((($0)) + 8|0); + HEAP32[$32>>2] = $23; + $33 = ((($0)) + 12|0); + HEAP32[$33>>2] = $24; + $34 = ((($0)) + 16|0); + HEAP32[$34>>2] = $25; + $35 = ((($0)) + 20|0); + HEAP32[$35>>2] = $26; + $36 = ((($0)) + 24|0); + HEAP32[$36>>2] = $27; + $37 = ((($0)) + 28|0); + HEAP32[$37>>2] = $28; + $38 = ((($0)) + 32|0); + HEAP32[$38>>2] = $29; + $39 = ((($0)) + 36|0); + HEAP32[$39>>2] = $30; + return; +} +function _crypto_sign_ed25519_ref10_fe_pow22523($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$729 = 0, $$828 = 0, $$927 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $exitcond = 0, $exitcond35 = 0, $exitcond36 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 128|0; + $2 = sp + 80|0; + $3 = sp + 40|0; + $4 = sp; + _crypto_sign_ed25519_ref10_fe_sq($2,$1); + _crypto_sign_ed25519_ref10_fe_sq($3,$2); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_mul($3,$1,$3); + _crypto_sign_ed25519_ref10_fe_mul($2,$2,$3); + _crypto_sign_ed25519_ref10_fe_sq($2,$2); + _crypto_sign_ed25519_ref10_fe_mul($2,$3,$2); + _crypto_sign_ed25519_ref10_fe_sq($3,$2); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_mul($2,$3,$2); + _crypto_sign_ed25519_ref10_fe_sq($3,$2); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_mul($3,$3,$2); + _crypto_sign_ed25519_ref10_fe_sq($4,$3); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_mul($3,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_mul($2,$3,$2); + _crypto_sign_ed25519_ref10_fe_sq($3,$2); + $$729 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + $5 = (($$729) + 1)|0; + $exitcond36 = ($5|0)==(50); + if ($exitcond36) { + break; + } else { + $$729 = $5; + } + } + _crypto_sign_ed25519_ref10_fe_mul($3,$3,$2); + _crypto_sign_ed25519_ref10_fe_sq($4,$3); + $$828 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + $6 = (($$828) + 1)|0; + $exitcond35 = ($6|0)==(100); + if ($exitcond35) { + break; + } else { + $$828 = $6; + } + } + _crypto_sign_ed25519_ref10_fe_mul($3,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + $$927 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + $7 = (($$927) + 1)|0; + $exitcond = ($7|0)==(50); + if ($exitcond) { + break; + } else { + $$927 = $7; + } + } + _crypto_sign_ed25519_ref10_fe_mul($2,$3,$2); + _crypto_sign_ed25519_ref10_fe_sq($2,$2); + _crypto_sign_ed25519_ref10_fe_sq($2,$2); + _crypto_sign_ed25519_ref10_fe_mul($0,$2,$1); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_sq($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0; + var $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0; + var $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0; + var $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0; + var $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0; + var $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0; + var $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0; + var $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0; + var $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0; + var $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0; + var $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0; + var $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0; + var $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0; + var $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0; + var $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0; + var $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = HEAP32[$1>>2]|0; + $3 = ((($1)) + 4|0); + $4 = HEAP32[$3>>2]|0; + $5 = ((($1)) + 8|0); + $6 = HEAP32[$5>>2]|0; + $7 = ((($1)) + 12|0); + $8 = HEAP32[$7>>2]|0; + $9 = ((($1)) + 16|0); + $10 = HEAP32[$9>>2]|0; + $11 = ((($1)) + 20|0); + $12 = HEAP32[$11>>2]|0; + $13 = ((($1)) + 24|0); + $14 = HEAP32[$13>>2]|0; + $15 = ((($1)) + 28|0); + $16 = HEAP32[$15>>2]|0; + $17 = ((($1)) + 32|0); + $18 = HEAP32[$17>>2]|0; + $19 = ((($1)) + 36|0); + $20 = HEAP32[$19>>2]|0; + $21 = $2 << 1; + $22 = $4 << 1; + $23 = $6 << 1; + $24 = $8 << 1; + $25 = $10 << 1; + $26 = $12 << 1; + $27 = $14 << 1; + $28 = $16 << 1; + $29 = ($12*38)|0; + $30 = ($14*19)|0; + $31 = ($16*38)|0; + $32 = ($18*19)|0; + $33 = ($20*38)|0; + $34 = ($2|0)<(0); + $35 = $34 << 31 >> 31; + $36 = (___muldi3(($2|0),($35|0),($2|0),($35|0))|0); + $37 = tempRet0; + $38 = ($21|0)<(0); + $39 = $38 << 31 >> 31; + $40 = ($4|0)<(0); + $41 = $40 << 31 >> 31; + $42 = (___muldi3(($21|0),($39|0),($4|0),($41|0))|0); + $43 = tempRet0; + $44 = ($6|0)<(0); + $45 = $44 << 31 >> 31; + $46 = (___muldi3(($6|0),($45|0),($21|0),($39|0))|0); + $47 = tempRet0; + $48 = ($8|0)<(0); + $49 = $48 << 31 >> 31; + $50 = (___muldi3(($8|0),($49|0),($21|0),($39|0))|0); + $51 = tempRet0; + $52 = ($10|0)<(0); $53 = $52 << 31 >> 31; - $54 = ($19|0)<(0); - $55 = $54 << 31 >> 31; - $56 = (___muldi3(($19|0),($55|0),($0|0),($53|0))|0); - $57 = tempRet0; - $58 = ($21|0)<(0); - $59 = $58 << 31 >> 31; - $60 = (___muldi3(($21|0),($59|0),($0|0),($53|0))|0); - $61 = tempRet0; - $62 = ($23|0)<(0); - $63 = $62 << 31 >> 31; - $64 = (___muldi3(($23|0),($63|0),($0|0),($53|0))|0); - $65 = tempRet0; - $66 = ($25|0)<(0); - $67 = $66 << 31 >> 31; - $68 = (___muldi3(($25|0),($67|0),($0|0),($53|0))|0); - $69 = tempRet0; - $70 = ($27|0)<(0); - $71 = $70 << 31 >> 31; - $72 = (___muldi3(($27|0),($71|0),($0|0),($53|0))|0); - $73 = tempRet0; - $74 = ($29|0)<(0); - $75 = $74 << 31 >> 31; - $76 = (___muldi3(($29|0),($75|0),($0|0),($53|0))|0); - $77 = tempRet0; - $78 = ($31|0)<(0); - $79 = $78 << 31 >> 31; - $80 = (___muldi3(($31|0),($79|0),($0|0),($53|0))|0); + $54 = (___muldi3(($10|0),($53|0),($21|0),($39|0))|0); + $55 = tempRet0; + $56 = ($12|0)<(0); + $57 = $56 << 31 >> 31; + $58 = (___muldi3(($12|0),($57|0),($21|0),($39|0))|0); + $59 = tempRet0; + $60 = ($14|0)<(0); + $61 = $60 << 31 >> 31; + $62 = (___muldi3(($14|0),($61|0),($21|0),($39|0))|0); + $63 = tempRet0; + $64 = ($16|0)<(0); + $65 = $64 << 31 >> 31; + $66 = (___muldi3(($16|0),($65|0),($21|0),($39|0))|0); + $67 = tempRet0; + $68 = ($18|0)<(0); + $69 = $68 << 31 >> 31; + $70 = (___muldi3(($18|0),($69|0),($21|0),($39|0))|0); + $71 = tempRet0; + $72 = ($20|0)<(0); + $73 = $72 << 31 >> 31; + $74 = (___muldi3(($20|0),($73|0),($21|0),($39|0))|0); + $75 = tempRet0; + $76 = ($22|0)<(0); + $77 = $76 << 31 >> 31; + $78 = (___muldi3(($22|0),($77|0),($4|0),($41|0))|0); + $79 = tempRet0; + $80 = (___muldi3(($22|0),($77|0),($6|0),($45|0))|0); $81 = tempRet0; - $82 = ($33|0)<(0); + $82 = ($24|0)<(0); $83 = $82 << 31 >> 31; - $84 = (___muldi3(($33|0),($83|0),($0|0),($53|0))|0); + $84 = (___muldi3(($24|0),($83|0),($22|0),($77|0))|0); $85 = tempRet0; - $86 = ($35|0)<(0); - $87 = $86 << 31 >> 31; - $88 = (___muldi3(($35|0),($87|0),($0|0),($53|0))|0); - $89 = tempRet0; - $90 = ($37|0)<(0); - $91 = $90 << 31 >> 31; - $92 = (___muldi3(($37|0),($91|0),($0|0),($53|0))|0); + $86 = (___muldi3(($10|0),($53|0),($22|0),($77|0))|0); + $87 = tempRet0; + $88 = ($26|0)<(0); + $89 = $88 << 31 >> 31; + $90 = (___muldi3(($26|0),($89|0),($22|0),($77|0))|0); + $91 = tempRet0; + $92 = (___muldi3(($14|0),($61|0),($22|0),($77|0))|0); $93 = tempRet0; - $94 = ($2|0)<(0); + $94 = ($28|0)<(0); $95 = $94 << 31 >> 31; - $96 = (___muldi3(($19|0),($55|0),($2|0),($95|0))|0); + $96 = (___muldi3(($28|0),($95|0),($22|0),($77|0))|0); $97 = tempRet0; - $98 = ($47|0)<(0); - $99 = $98 << 31 >> 31; - $100 = (___muldi3(($21|0),($59|0),($47|0),($99|0))|0); - $101 = tempRet0; - $102 = (___muldi3(($23|0),($63|0),($2|0),($95|0))|0); + $98 = (___muldi3(($18|0),($69|0),($22|0),($77|0))|0); + $99 = tempRet0; + $100 = ($33|0)<(0); + $101 = $100 << 31 >> 31; + $102 = (___muldi3(($33|0),($101|0),($22|0),($77|0))|0); $103 = tempRet0; - $104 = (___muldi3(($25|0),($67|0),($47|0),($99|0))|0); + $104 = (___muldi3(($6|0),($45|0),($6|0),($45|0))|0); $105 = tempRet0; - $106 = (___muldi3(($27|0),($71|0),($2|0),($95|0))|0); - $107 = tempRet0; - $108 = (___muldi3(($29|0),($75|0),($47|0),($99|0))|0); + $106 = ($23|0)<(0); + $107 = $106 << 31 >> 31; + $108 = (___muldi3(($23|0),($107|0),($8|0),($49|0))|0); $109 = tempRet0; - $110 = (___muldi3(($31|0),($79|0),($2|0),($95|0))|0); + $110 = (___muldi3(($10|0),($53|0),($23|0),($107|0))|0); $111 = tempRet0; - $112 = (___muldi3(($33|0),($83|0),($47|0),($99|0))|0); + $112 = (___muldi3(($12|0),($57|0),($23|0),($107|0))|0); $113 = tempRet0; - $114 = (___muldi3(($35|0),($87|0),($2|0),($95|0))|0); + $114 = (___muldi3(($14|0),($61|0),($23|0),($107|0))|0); $115 = tempRet0; - $116 = ($46|0)<(0); - $117 = $116 << 31 >> 31; - $118 = (___muldi3(($46|0),($117|0),($47|0),($99|0))|0); - $119 = tempRet0; - $120 = ($4|0)<(0); - $121 = $120 << 31 >> 31; - $122 = (___muldi3(($19|0),($55|0),($4|0),($121|0))|0); + $116 = (___muldi3(($16|0),($65|0),($23|0),($107|0))|0); + $117 = tempRet0; + $118 = ($32|0)<(0); + $119 = $118 << 31 >> 31; + $120 = (___muldi3(($32|0),($119|0),($23|0),($107|0))|0); + $121 = tempRet0; + $122 = (___muldi3(($33|0),($101|0),($6|0),($45|0))|0); $123 = tempRet0; - $124 = (___muldi3(($21|0),($59|0),($4|0),($121|0))|0); + $124 = (___muldi3(($24|0),($83|0),($8|0),($49|0))|0); $125 = tempRet0; - $126 = (___muldi3(($23|0),($63|0),($4|0),($121|0))|0); + $126 = (___muldi3(($24|0),($83|0),($10|0),($53|0))|0); $127 = tempRet0; - $128 = (___muldi3(($25|0),($67|0),($4|0),($121|0))|0); + $128 = (___muldi3(($26|0),($89|0),($24|0),($83|0))|0); $129 = tempRet0; - $130 = (___muldi3(($27|0),($71|0),($4|0),($121|0))|0); + $130 = (___muldi3(($14|0),($61|0),($24|0),($83|0))|0); $131 = tempRet0; - $132 = (___muldi3(($29|0),($75|0),($4|0),($121|0))|0); - $133 = tempRet0; - $134 = (___muldi3(($31|0),($79|0),($4|0),($121|0))|0); + $132 = ($31|0)<(0); + $133 = $132 << 31 >> 31; + $134 = (___muldi3(($31|0),($133|0),($24|0),($83|0))|0); $135 = tempRet0; - $136 = (___muldi3(($33|0),($83|0),($4|0),($121|0))|0); + $136 = (___muldi3(($32|0),($119|0),($24|0),($83|0))|0); $137 = tempRet0; - $138 = ($45|0)<(0); - $139 = $138 << 31 >> 31; - $140 = (___muldi3(($45|0),($139|0),($4|0),($121|0))|0); + $138 = (___muldi3(($33|0),($101|0),($24|0),($83|0))|0); + $139 = tempRet0; + $140 = (___muldi3(($10|0),($53|0),($10|0),($53|0))|0); $141 = tempRet0; - $142 = (___muldi3(($46|0),($117|0),($4|0),($121|0))|0); - $143 = tempRet0; - $144 = ($6|0)<(0); - $145 = $144 << 31 >> 31; - $146 = (___muldi3(($19|0),($55|0),($6|0),($145|0))|0); - $147 = tempRet0; - $148 = ($48|0)<(0); - $149 = $148 << 31 >> 31; - $150 = (___muldi3(($21|0),($59|0),($48|0),($149|0))|0); + $142 = ($25|0)<(0); + $143 = $142 << 31 >> 31; + $144 = (___muldi3(($25|0),($143|0),($12|0),($57|0))|0); + $145 = tempRet0; + $146 = ($30|0)<(0); + $147 = $146 << 31 >> 31; + $148 = (___muldi3(($30|0),($147|0),($25|0),($143|0))|0); + $149 = tempRet0; + $150 = (___muldi3(($31|0),($133|0),($10|0),($53|0))|0); $151 = tempRet0; - $152 = (___muldi3(($23|0),($63|0),($6|0),($145|0))|0); + $152 = (___muldi3(($32|0),($119|0),($25|0),($143|0))|0); $153 = tempRet0; - $154 = (___muldi3(($25|0),($67|0),($48|0),($149|0))|0); + $154 = (___muldi3(($33|0),($101|0),($10|0),($53|0))|0); $155 = tempRet0; - $156 = (___muldi3(($27|0),($71|0),($6|0),($145|0))|0); - $157 = tempRet0; - $158 = (___muldi3(($29|0),($75|0),($48|0),($149|0))|0); + $156 = ($29|0)<(0); + $157 = $156 << 31 >> 31; + $158 = (___muldi3(($29|0),($157|0),($12|0),($57|0))|0); $159 = tempRet0; - $160 = (___muldi3(($31|0),($79|0),($6|0),($145|0))|0); + $160 = (___muldi3(($30|0),($147|0),($26|0),($89|0))|0); $161 = tempRet0; - $162 = ($44|0)<(0); - $163 = $162 << 31 >> 31; - $164 = (___muldi3(($44|0),($163|0),($48|0),($149|0))|0); + $162 = (___muldi3(($31|0),($133|0),($26|0),($89|0))|0); + $163 = tempRet0; + $164 = (___muldi3(($32|0),($119|0),($26|0),($89|0))|0); $165 = tempRet0; - $166 = (___muldi3(($45|0),($139|0),($6|0),($145|0))|0); + $166 = (___muldi3(($33|0),($101|0),($26|0),($89|0))|0); $167 = tempRet0; - $168 = (___muldi3(($46|0),($117|0),($48|0),($149|0))|0); + $168 = (___muldi3(($30|0),($147|0),($14|0),($61|0))|0); $169 = tempRet0; - $170 = ($8|0)<(0); - $171 = $170 << 31 >> 31; - $172 = (___muldi3(($19|0),($55|0),($8|0),($171|0))|0); - $173 = tempRet0; - $174 = (___muldi3(($21|0),($59|0),($8|0),($171|0))|0); + $170 = (___muldi3(($31|0),($133|0),($14|0),($61|0))|0); + $171 = tempRet0; + $172 = ($27|0)<(0); + $173 = $172 << 31 >> 31; + $174 = (___muldi3(($32|0),($119|0),($27|0),($173|0))|0); $175 = tempRet0; - $176 = (___muldi3(($23|0),($63|0),($8|0),($171|0))|0); + $176 = (___muldi3(($33|0),($101|0),($14|0),($61|0))|0); $177 = tempRet0; - $178 = (___muldi3(($25|0),($67|0),($8|0),($171|0))|0); + $178 = (___muldi3(($31|0),($133|0),($16|0),($65|0))|0); $179 = tempRet0; - $180 = (___muldi3(($27|0),($71|0),($8|0),($171|0))|0); + $180 = (___muldi3(($32|0),($119|0),($28|0),($95|0))|0); $181 = tempRet0; - $182 = (___muldi3(($29|0),($75|0),($8|0),($171|0))|0); + $182 = (___muldi3(($33|0),($101|0),($28|0),($95|0))|0); $183 = tempRet0; - $184 = ($43|0)<(0); - $185 = $184 << 31 >> 31; - $186 = (___muldi3(($43|0),($185|0),($8|0),($171|0))|0); + $184 = (___muldi3(($32|0),($119|0),($18|0),($69|0))|0); + $185 = tempRet0; + $186 = (___muldi3(($33|0),($101|0),($18|0),($69|0))|0); $187 = tempRet0; - $188 = (___muldi3(($44|0),($163|0),($8|0),($171|0))|0); + $188 = (___muldi3(($33|0),($101|0),($20|0),($73|0))|0); $189 = tempRet0; - $190 = (___muldi3(($45|0),($139|0),($8|0),($171|0))|0); + $190 = (_i64Add(($158|0),($159|0),($36|0),($37|0))|0); $191 = tempRet0; - $192 = (___muldi3(($46|0),($117|0),($8|0),($171|0))|0); + $192 = (_i64Add(($190|0),($191|0),($148|0),($149|0))|0); $193 = tempRet0; - $194 = ($10|0)<(0); - $195 = $194 << 31 >> 31; - $196 = (___muldi3(($19|0),($55|0),($10|0),($195|0))|0); + $194 = (_i64Add(($192|0),($193|0),($134|0),($135|0))|0); + $195 = tempRet0; + $196 = (_i64Add(($194|0),($195|0),($120|0),($121|0))|0); $197 = tempRet0; - $198 = ($49|0)<(0); - $199 = $198 << 31 >> 31; - $200 = (___muldi3(($21|0),($59|0),($49|0),($199|0))|0); + $198 = (_i64Add(($196|0),($197|0),($102|0),($103|0))|0); + $199 = tempRet0; + $200 = (_i64Add(($46|0),($47|0),($78|0),($79|0))|0); $201 = tempRet0; - $202 = (___muldi3(($23|0),($63|0),($10|0),($195|0))|0); + $202 = (_i64Add(($50|0),($51|0),($80|0),($81|0))|0); $203 = tempRet0; - $204 = (___muldi3(($25|0),($67|0),($49|0),($199|0))|0); + $204 = (_i64Add(($84|0),($85|0),($104|0),($105|0))|0); $205 = tempRet0; - $206 = (___muldi3(($27|0),($71|0),($10|0),($195|0))|0); + $206 = (_i64Add(($204|0),($205|0),($54|0),($55|0))|0); $207 = tempRet0; - $208 = ($42|0)<(0); - $209 = $208 << 31 >> 31; - $210 = (___muldi3(($42|0),($209|0),($49|0),($199|0))|0); + $208 = (_i64Add(($206|0),($207|0),($178|0),($179|0))|0); + $209 = tempRet0; + $210 = (_i64Add(($208|0),($209|0),($174|0),($175|0))|0); $211 = tempRet0; - $212 = (___muldi3(($43|0),($185|0),($10|0),($195|0))|0); + $212 = (_i64Add(($210|0),($211|0),($166|0),($167|0))|0); $213 = tempRet0; - $214 = (___muldi3(($44|0),($163|0),($49|0),($199|0))|0); + $214 = (_i64Add(($198|0),($199|0),33554432,0)|0); $215 = tempRet0; - $216 = (___muldi3(($45|0),($139|0),($10|0),($195|0))|0); + $216 = (_bitshift64Ashr(($214|0),($215|0),26)|0); $217 = tempRet0; - $218 = (___muldi3(($46|0),($117|0),($49|0),($199|0))|0); + $218 = (_i64Add(($160|0),($161|0),($42|0),($43|0))|0); $219 = tempRet0; - $220 = ($12|0)<(0); - $221 = $220 << 31 >> 31; - $222 = (___muldi3(($19|0),($55|0),($12|0),($221|0))|0); + $220 = (_i64Add(($218|0),($219|0),($150|0),($151|0))|0); + $221 = tempRet0; + $222 = (_i64Add(($220|0),($221|0),($136|0),($137|0))|0); $223 = tempRet0; - $224 = (___muldi3(($21|0),($59|0),($12|0),($221|0))|0); + $224 = (_i64Add(($222|0),($223|0),($122|0),($123|0))|0); $225 = tempRet0; - $226 = (___muldi3(($23|0),($63|0),($12|0),($221|0))|0); + $226 = (_i64Add(($224|0),($225|0),($216|0),($217|0))|0); $227 = tempRet0; - $228 = (___muldi3(($25|0),($67|0),($12|0),($221|0))|0); + $228 = (_bitshift64Shl(($216|0),($217|0),26)|0); $229 = tempRet0; - $230 = ($41|0)<(0); - $231 = $230 << 31 >> 31; - $232 = (___muldi3(($41|0),($231|0),($12|0),($221|0))|0); + $230 = (_i64Subtract(($198|0),($199|0),($228|0),($229|0))|0); + $231 = tempRet0; + $232 = (_i64Add(($212|0),($213|0),33554432,0)|0); $233 = tempRet0; - $234 = (___muldi3(($42|0),($209|0),($12|0),($221|0))|0); + $234 = (_bitshift64Ashr(($232|0),($233|0),26)|0); $235 = tempRet0; - $236 = (___muldi3(($43|0),($185|0),($12|0),($221|0))|0); + $236 = (_i64Add(($86|0),($87|0),($108|0),($109|0))|0); $237 = tempRet0; - $238 = (___muldi3(($44|0),($163|0),($12|0),($221|0))|0); + $238 = (_i64Add(($236|0),($237|0),($58|0),($59|0))|0); $239 = tempRet0; - $240 = (___muldi3(($45|0),($139|0),($12|0),($221|0))|0); + $240 = (_i64Add(($238|0),($239|0),($180|0),($181|0))|0); $241 = tempRet0; - $242 = (___muldi3(($46|0),($117|0),($12|0),($221|0))|0); + $242 = (_i64Add(($240|0),($241|0),($176|0),($177|0))|0); $243 = tempRet0; - $244 = ($14|0)<(0); - $245 = $244 << 31 >> 31; - $246 = (___muldi3(($19|0),($55|0),($14|0),($245|0))|0); + $244 = (_i64Add(($242|0),($243|0),($234|0),($235|0))|0); + $245 = tempRet0; + $246 = (_bitshift64Shl(($234|0),($235|0),26)|0); $247 = tempRet0; - $248 = ($50|0)<(0); - $249 = $248 << 31 >> 31; - $250 = (___muldi3(($21|0),($59|0),($50|0),($249|0))|0); + $248 = (_i64Subtract(($212|0),($213|0),($246|0),($247|0))|0); + $249 = tempRet0; + $250 = (_i64Add(($226|0),($227|0),16777216,0)|0); $251 = tempRet0; - $252 = (___muldi3(($23|0),($63|0),($14|0),($245|0))|0); + $252 = (_bitshift64Ashr(($250|0),($251|0),25)|0); $253 = tempRet0; - $254 = ($40|0)<(0); - $255 = $254 << 31 >> 31; - $256 = (___muldi3(($40|0),($255|0),($50|0),($249|0))|0); + $254 = (_i64Add(($200|0),($201|0),($168|0),($169|0))|0); + $255 = tempRet0; + $256 = (_i64Add(($254|0),($255|0),($162|0),($163|0))|0); $257 = tempRet0; - $258 = (___muldi3(($41|0),($231|0),($14|0),($245|0))|0); + $258 = (_i64Add(($256|0),($257|0),($152|0),($153|0))|0); $259 = tempRet0; - $260 = (___muldi3(($42|0),($209|0),($50|0),($249|0))|0); + $260 = (_i64Add(($258|0),($259|0),($138|0),($139|0))|0); $261 = tempRet0; - $262 = (___muldi3(($43|0),($185|0),($14|0),($245|0))|0); + $262 = (_i64Add(($260|0),($261|0),($252|0),($253|0))|0); $263 = tempRet0; - $264 = (___muldi3(($44|0),($163|0),($50|0),($249|0))|0); + $264 = (_bitshift64Shl(($252|0),($253|0),25)|0); $265 = tempRet0; - $266 = (___muldi3(($45|0),($139|0),($14|0),($245|0))|0); + $266 = (_i64Subtract(($226|0),($227|0),($264|0),($265|0))|0); $267 = tempRet0; - $268 = (___muldi3(($46|0),($117|0),($50|0),($249|0))|0); + $268 = (_i64Add(($244|0),($245|0),16777216,0)|0); $269 = tempRet0; - $270 = ($16|0)<(0); - $271 = $270 << 31 >> 31; - $272 = (___muldi3(($19|0),($55|0),($16|0),($271|0))|0); + $270 = (_bitshift64Ashr(($268|0),($269|0),25)|0); + $271 = tempRet0; + $272 = (_i64Add(($124|0),($125|0),($110|0),($111|0))|0); $273 = tempRet0; - $274 = (___muldi3(($21|0),($59|0),($16|0),($271|0))|0); + $274 = (_i64Add(($272|0),($273|0),($90|0),($91|0))|0); $275 = tempRet0; - $276 = ($39|0)<(0); - $277 = $276 << 31 >> 31; - $278 = (___muldi3(($39|0),($277|0),($16|0),($271|0))|0); + $276 = (_i64Add(($274|0),($275|0),($62|0),($63|0))|0); + $277 = tempRet0; + $278 = (_i64Add(($276|0),($277|0),($184|0),($185|0))|0); $279 = tempRet0; - $280 = (___muldi3(($40|0),($255|0),($16|0),($271|0))|0); + $280 = (_i64Add(($278|0),($279|0),($182|0),($183|0))|0); $281 = tempRet0; - $282 = (___muldi3(($41|0),($231|0),($16|0),($271|0))|0); + $282 = (_i64Add(($280|0),($281|0),($270|0),($271|0))|0); $283 = tempRet0; - $284 = (___muldi3(($42|0),($209|0),($16|0),($271|0))|0); + $284 = (_bitshift64Shl(($270|0),($271|0),25)|0); $285 = tempRet0; - $286 = (___muldi3(($43|0),($185|0),($16|0),($271|0))|0); + $286 = (_i64Subtract(($244|0),($245|0),($284|0),($285|0))|0); $287 = tempRet0; - $288 = (___muldi3(($44|0),($163|0),($16|0),($271|0))|0); + $288 = (_i64Add(($262|0),($263|0),33554432,0)|0); $289 = tempRet0; - $290 = (___muldi3(($45|0),($139|0),($16|0),($271|0))|0); + $290 = (_bitshift64Ashr(($288|0),($289|0),26)|0); $291 = tempRet0; - $292 = (___muldi3(($46|0),($117|0),($16|0),($271|0))|0); + $292 = (_i64Add(($202|0),($203|0),($170|0),($171|0))|0); $293 = tempRet0; - $294 = ($18|0)<(0); - $295 = $294 << 31 >> 31; - $296 = (___muldi3(($19|0),($55|0),($18|0),($295|0))|0); + $294 = (_i64Add(($292|0),($293|0),($164|0),($165|0))|0); + $295 = tempRet0; + $296 = (_i64Add(($294|0),($295|0),($154|0),($155|0))|0); $297 = tempRet0; - $298 = ($51|0)<(0); - $299 = $298 << 31 >> 31; - $300 = ($38|0)<(0); - $301 = $300 << 31 >> 31; - $302 = (___muldi3(($38|0),($301|0),($51|0),($299|0))|0); + $298 = (_i64Add(($296|0),($297|0),($290|0),($291|0))|0); + $299 = tempRet0; + $300 = (_bitshift64Shl(($290|0),($291|0),26)|0); + $301 = tempRet0; + $302 = (_i64Subtract(($262|0),($263|0),($300|0),($301|0))|0); $303 = tempRet0; - $304 = (___muldi3(($39|0),($277|0),($18|0),($295|0))|0); + $304 = (_i64Add(($282|0),($283|0),33554432,0)|0); $305 = tempRet0; - $306 = (___muldi3(($40|0),($255|0),($51|0),($299|0))|0); + $306 = (_bitshift64Ashr(($304|0),($305|0),26)|0); $307 = tempRet0; - $308 = (___muldi3(($41|0),($231|0),($18|0),($295|0))|0); + $308 = (_i64Add(($112|0),($113|0),($126|0),($127|0))|0); $309 = tempRet0; - $310 = (___muldi3(($42|0),($209|0),($51|0),($299|0))|0); + $310 = (_i64Add(($308|0),($309|0),($92|0),($93|0))|0); $311 = tempRet0; - $312 = (___muldi3(($43|0),($185|0),($18|0),($295|0))|0); + $312 = (_i64Add(($310|0),($311|0),($66|0),($67|0))|0); $313 = tempRet0; - $314 = (___muldi3(($44|0),($163|0),($51|0),($299|0))|0); + $314 = (_i64Add(($312|0),($313|0),($186|0),($187|0))|0); $315 = tempRet0; - $316 = (___muldi3(($45|0),($139|0),($18|0),($295|0))|0); + $316 = (_i64Add(($314|0),($315|0),($306|0),($307|0))|0); $317 = tempRet0; - $318 = (___muldi3(($46|0),($117|0),($51|0),($299|0))|0); + $318 = (_bitshift64Shl(($306|0),($307|0),26)|0); $319 = tempRet0; - $320 = (_i64Add(($302|0),($303|0),($56|0),($57|0))|0); + $320 = (_i64Subtract(($282|0),($283|0),($318|0),($319|0))|0); $321 = tempRet0; - $322 = (_i64Add(($320|0),($321|0),($278|0),($279|0))|0); + $322 = (_i64Add(($298|0),($299|0),16777216,0)|0); $323 = tempRet0; - $324 = (_i64Add(($322|0),($323|0),($256|0),($257|0))|0); + $324 = (_bitshift64Ashr(($322|0),($323|0),25)|0); $325 = tempRet0; - $326 = (_i64Add(($324|0),($325|0),($232|0),($233|0))|0); + $326 = (_i64Add(($324|0),($325|0),($248|0),($249|0))|0); $327 = tempRet0; - $328 = (_i64Add(($326|0),($327|0),($210|0),($211|0))|0); + $328 = (_bitshift64Shl(($324|0),($325|0),25)|0); $329 = tempRet0; - $330 = (_i64Add(($328|0),($329|0),($186|0),($187|0))|0); + $330 = (_i64Subtract(($298|0),($299|0),($328|0),($329|0))|0); $331 = tempRet0; - $332 = (_i64Add(($330|0),($331|0),($164|0),($165|0))|0); + $332 = (_i64Add(($316|0),($317|0),16777216,0)|0); $333 = tempRet0; - $334 = (_i64Add(($332|0),($333|0),($140|0),($141|0))|0); + $334 = (_bitshift64Ashr(($332|0),($333|0),25)|0); $335 = tempRet0; - $336 = (_i64Add(($334|0),($335|0),($118|0),($119|0))|0); + $336 = (_i64Add(($114|0),($115|0),($140|0),($141|0))|0); $337 = tempRet0; - $338 = (_i64Add(($60|0),($61|0),($96|0),($97|0))|0); + $338 = (_i64Add(($336|0),($337|0),($128|0),($129|0))|0); $339 = tempRet0; - $340 = (_i64Add(($150|0),($151|0),($172|0),($173|0))|0); + $340 = (_i64Add(($338|0),($339|0),($96|0),($97|0))|0); $341 = tempRet0; - $342 = (_i64Add(($340|0),($341|0),($126|0),($127|0))|0); + $342 = (_i64Add(($340|0),($341|0),($70|0),($71|0))|0); $343 = tempRet0; - $344 = (_i64Add(($342|0),($343|0),($104|0),($105|0))|0); + $344 = (_i64Add(($342|0),($343|0),($188|0),($189|0))|0); $345 = tempRet0; - $346 = (_i64Add(($344|0),($345|0),($72|0),($73|0))|0); + $346 = (_i64Add(($344|0),($345|0),($334|0),($335|0))|0); $347 = tempRet0; - $348 = (_i64Add(($346|0),($347|0),($310|0),($311|0))|0); + $348 = (_bitshift64Shl(($334|0),($335|0),25)|0); $349 = tempRet0; - $350 = (_i64Add(($348|0),($349|0),($286|0),($287|0))|0); + $350 = (_i64Subtract(($316|0),($317|0),($348|0),($349|0))|0); $351 = tempRet0; - $352 = (_i64Add(($350|0),($351|0),($264|0),($265|0))|0); + $352 = (_i64Add(($326|0),($327|0),33554432,0)|0); $353 = tempRet0; - $354 = (_i64Add(($352|0),($353|0),($240|0),($241|0))|0); + $354 = (_bitshift64Ashr(($352|0),($353|0),26)|0); $355 = tempRet0; - $356 = (_i64Add(($354|0),($355|0),($218|0),($219|0))|0); + $356 = (_i64Add(($286|0),($287|0),($354|0),($355|0))|0); $357 = tempRet0; - $358 = (_i64Add(($336|0),($337|0),33554432,0)|0); + $358 = (_bitshift64Shl(($354|0),($355|0),26)|0); $359 = tempRet0; - $360 = (_bitshift64Ashr(($358|0),($359|0),26)|0); + $360 = (_i64Subtract(($326|0),($327|0),($358|0),($359|0))|0); $361 = tempRet0; - $362 = (_i64Add(($338|0),($339|0),($304|0),($305|0))|0); + $362 = (_i64Add(($346|0),($347|0),33554432,0)|0); $363 = tempRet0; - $364 = (_i64Add(($362|0),($363|0),($280|0),($281|0))|0); + $364 = (_bitshift64Ashr(($362|0),($363|0),26)|0); $365 = tempRet0; - $366 = (_i64Add(($364|0),($365|0),($258|0),($259|0))|0); + $366 = (_i64Add(($130|0),($131|0),($144|0),($145|0))|0); $367 = tempRet0; - $368 = (_i64Add(($366|0),($367|0),($234|0),($235|0))|0); + $368 = (_i64Add(($366|0),($367|0),($116|0),($117|0))|0); $369 = tempRet0; - $370 = (_i64Add(($368|0),($369|0),($212|0),($213|0))|0); + $370 = (_i64Add(($368|0),($369|0),($98|0),($99|0))|0); $371 = tempRet0; - $372 = (_i64Add(($370|0),($371|0),($188|0),($189|0))|0); + $372 = (_i64Add(($370|0),($371|0),($74|0),($75|0))|0); $373 = tempRet0; - $374 = (_i64Add(($372|0),($373|0),($166|0),($167|0))|0); + $374 = (_i64Add(($372|0),($373|0),($364|0),($365|0))|0); $375 = tempRet0; - $376 = (_i64Add(($374|0),($375|0),($142|0),($143|0))|0); + $376 = (_bitshift64Shl(($364|0),($365|0),26)|0); $377 = tempRet0; - $378 = (_i64Add(($376|0),($377|0),($360|0),($361|0))|0); + $378 = (_i64Subtract(($346|0),($347|0),($376|0),($377|0))|0); $379 = tempRet0; - $380 = (_bitshift64Shl(($360|0),($361|0),26)|0); + $380 = (_i64Add(($374|0),($375|0),16777216,0)|0); $381 = tempRet0; - $382 = (_i64Subtract(($336|0),($337|0),($380|0),($381|0))|0); + $382 = (_bitshift64Ashr(($380|0),($381|0),25)|0); $383 = tempRet0; - $384 = (_i64Add(($356|0),($357|0),33554432,0)|0); + $384 = (___muldi3(($382|0),($383|0),19,0)|0); $385 = tempRet0; - $386 = (_bitshift64Ashr(($384|0),($385|0),26)|0); + $386 = (_i64Add(($384|0),($385|0),($230|0),($231|0))|0); $387 = tempRet0; - $388 = (_i64Add(($174|0),($175|0),($196|0),($197|0))|0); + $388 = (_bitshift64Shl(($382|0),($383|0),25)|0); $389 = tempRet0; - $390 = (_i64Add(($388|0),($389|0),($152|0),($153|0))|0); + $390 = (_i64Subtract(($374|0),($375|0),($388|0),($389|0))|0); $391 = tempRet0; - $392 = (_i64Add(($390|0),($391|0),($128|0),($129|0))|0); + $392 = (_i64Add(($386|0),($387|0),33554432,0)|0); $393 = tempRet0; - $394 = (_i64Add(($392|0),($393|0),($106|0),($107|0))|0); + $394 = (_bitshift64Ashr(($392|0),($393|0),26)|0); $395 = tempRet0; - $396 = (_i64Add(($394|0),($395|0),($76|0),($77|0))|0); + $396 = (_i64Add(($266|0),($267|0),($394|0),($395|0))|0); $397 = tempRet0; - $398 = (_i64Add(($396|0),($397|0),($312|0),($313|0))|0); + $398 = (_bitshift64Shl(($394|0),($395|0),26)|0); $399 = tempRet0; - $400 = (_i64Add(($398|0),($399|0),($288|0),($289|0))|0); + $400 = (_i64Subtract(($386|0),($387|0),($398|0),($399|0))|0); $401 = tempRet0; - $402 = (_i64Add(($400|0),($401|0),($266|0),($267|0))|0); - $403 = tempRet0; - $404 = (_i64Add(($402|0),($403|0),($242|0),($243|0))|0); - $405 = tempRet0; - $406 = (_i64Add(($404|0),($405|0),($386|0),($387|0))|0); - $407 = tempRet0; - $408 = (_bitshift64Shl(($386|0),($387|0),26)|0); - $409 = tempRet0; - $410 = (_i64Subtract(($356|0),($357|0),($408|0),($409|0))|0); - $411 = tempRet0; - $412 = (_i64Add(($378|0),($379|0),16777216,0)|0); - $413 = tempRet0; - $414 = (_bitshift64Ashr(($412|0),($413|0),25)|0); - $415 = tempRet0; - $416 = (_i64Add(($100|0),($101|0),($122|0),($123|0))|0); - $417 = tempRet0; - $418 = (_i64Add(($416|0),($417|0),($64|0),($65|0))|0); - $419 = tempRet0; - $420 = (_i64Add(($418|0),($419|0),($306|0),($307|0))|0); - $421 = tempRet0; - $422 = (_i64Add(($420|0),($421|0),($282|0),($283|0))|0); - $423 = tempRet0; - $424 = (_i64Add(($422|0),($423|0),($260|0),($261|0))|0); - $425 = tempRet0; - $426 = (_i64Add(($424|0),($425|0),($236|0),($237|0))|0); - $427 = tempRet0; - $428 = (_i64Add(($426|0),($427|0),($214|0),($215|0))|0); - $429 = tempRet0; - $430 = (_i64Add(($428|0),($429|0),($190|0),($191|0))|0); - $431 = tempRet0; - $432 = (_i64Add(($430|0),($431|0),($168|0),($169|0))|0); - $433 = tempRet0; - $434 = (_i64Add(($432|0),($433|0),($414|0),($415|0))|0); - $435 = tempRet0; - $436 = (_bitshift64Shl(($414|0),($415|0),25)|0); - $437 = tempRet0; - $438 = (_i64Subtract(($378|0),($379|0),($436|0),($437|0))|0); - $439 = tempRet0; - $440 = (_i64Add(($406|0),($407|0),16777216,0)|0); - $441 = tempRet0; - $442 = (_bitshift64Ashr(($440|0),($441|0),25)|0); - $443 = tempRet0; - $444 = (_i64Add(($200|0),($201|0),($222|0),($223|0))|0); - $445 = tempRet0; - $446 = (_i64Add(($444|0),($445|0),($176|0),($177|0))|0); - $447 = tempRet0; - $448 = (_i64Add(($446|0),($447|0),($154|0),($155|0))|0); - $449 = tempRet0; - $450 = (_i64Add(($448|0),($449|0),($130|0),($131|0))|0); - $451 = tempRet0; - $452 = (_i64Add(($450|0),($451|0),($108|0),($109|0))|0); - $453 = tempRet0; - $454 = (_i64Add(($452|0),($453|0),($80|0),($81|0))|0); - $455 = tempRet0; - $456 = (_i64Add(($454|0),($455|0),($314|0),($315|0))|0); - $457 = tempRet0; - $458 = (_i64Add(($456|0),($457|0),($290|0),($291|0))|0); - $459 = tempRet0; - $460 = (_i64Add(($458|0),($459|0),($268|0),($269|0))|0); - $461 = tempRet0; - $462 = (_i64Add(($460|0),($461|0),($442|0),($443|0))|0); - $463 = tempRet0; - $464 = (_bitshift64Shl(($442|0),($443|0),25)|0); - $465 = tempRet0; - $466 = (_i64Subtract(($406|0),($407|0),($464|0),($465|0))|0); - $467 = tempRet0; - $468 = (_i64Add(($434|0),($435|0),33554432,0)|0); - $469 = tempRet0; - $470 = (_bitshift64Ashr(($468|0),($469|0),26)|0); - $471 = tempRet0; - $472 = (_i64Add(($124|0),($125|0),($146|0),($147|0))|0); - $473 = tempRet0; - $474 = (_i64Add(($472|0),($473|0),($102|0),($103|0))|0); - $475 = tempRet0; - $476 = (_i64Add(($474|0),($475|0),($68|0),($69|0))|0); - $477 = tempRet0; - $478 = (_i64Add(($476|0),($477|0),($308|0),($309|0))|0); - $479 = tempRet0; - $480 = (_i64Add(($478|0),($479|0),($284|0),($285|0))|0); - $481 = tempRet0; - $482 = (_i64Add(($480|0),($481|0),($262|0),($263|0))|0); - $483 = tempRet0; - $484 = (_i64Add(($482|0),($483|0),($238|0),($239|0))|0); - $485 = tempRet0; - $486 = (_i64Add(($484|0),($485|0),($216|0),($217|0))|0); - $487 = tempRet0; - $488 = (_i64Add(($486|0),($487|0),($192|0),($193|0))|0); - $489 = tempRet0; - $490 = (_i64Add(($488|0),($489|0),($470|0),($471|0))|0); - $491 = tempRet0; - $492 = (_bitshift64Shl(($470|0),($471|0),26)|0); - $493 = tempRet0; - $494 = (_i64Subtract(($434|0),($435|0),($492|0),($493|0))|0); - $495 = tempRet0; - $496 = (_i64Add(($462|0),($463|0),33554432,0)|0); - $497 = tempRet0; - $498 = (_bitshift64Ashr(($496|0),($497|0),26)|0); - $499 = tempRet0; - $500 = (_i64Add(($224|0),($225|0),($246|0),($247|0))|0); - $501 = tempRet0; - $502 = (_i64Add(($500|0),($501|0),($202|0),($203|0))|0); - $503 = tempRet0; - $504 = (_i64Add(($502|0),($503|0),($178|0),($179|0))|0); - $505 = tempRet0; - $506 = (_i64Add(($504|0),($505|0),($156|0),($157|0))|0); - $507 = tempRet0; - $508 = (_i64Add(($506|0),($507|0),($132|0),($133|0))|0); - $509 = tempRet0; - $510 = (_i64Add(($508|0),($509|0),($110|0),($111|0))|0); - $511 = tempRet0; - $512 = (_i64Add(($510|0),($511|0),($84|0),($85|0))|0); - $513 = tempRet0; - $514 = (_i64Add(($512|0),($513|0),($316|0),($317|0))|0); - $515 = tempRet0; - $516 = (_i64Add(($514|0),($515|0),($292|0),($293|0))|0); - $517 = tempRet0; - $518 = (_i64Add(($516|0),($517|0),($498|0),($499|0))|0); - $519 = tempRet0; - $520 = (_bitshift64Shl(($498|0),($499|0),26)|0); - $521 = tempRet0; - $522 = (_i64Subtract(($462|0),($463|0),($520|0),($521|0))|0); - $523 = tempRet0; - $524 = (_i64Add(($490|0),($491|0),16777216,0)|0); - $525 = tempRet0; - $526 = (_bitshift64Ashr(($524|0),($525|0),25)|0); - $527 = tempRet0; - $528 = (_i64Add(($526|0),($527|0),($410|0),($411|0))|0); - $529 = tempRet0; - $530 = (_bitshift64Shl(($526|0),($527|0),25)|0); - $531 = tempRet0; - $532 = (_i64Subtract(($490|0),($491|0),($530|0),($531|0))|0); - $533 = tempRet0; - $534 = (_i64Add(($518|0),($519|0),16777216,0)|0); - $535 = tempRet0; - $536 = (_bitshift64Ashr(($534|0),($535|0),25)|0); - $537 = tempRet0; - $538 = (_i64Add(($250|0),($251|0),($272|0),($273|0))|0); - $539 = tempRet0; - $540 = (_i64Add(($538|0),($539|0),($226|0),($227|0))|0); - $541 = tempRet0; - $542 = (_i64Add(($540|0),($541|0),($204|0),($205|0))|0); - $543 = tempRet0; - $544 = (_i64Add(($542|0),($543|0),($180|0),($181|0))|0); - $545 = tempRet0; - $546 = (_i64Add(($544|0),($545|0),($158|0),($159|0))|0); - $547 = tempRet0; - $548 = (_i64Add(($546|0),($547|0),($134|0),($135|0))|0); - $549 = tempRet0; - $550 = (_i64Add(($548|0),($549|0),($112|0),($113|0))|0); - $551 = tempRet0; - $552 = (_i64Add(($550|0),($551|0),($88|0),($89|0))|0); - $553 = tempRet0; - $554 = (_i64Add(($552|0),($553|0),($318|0),($319|0))|0); - $555 = tempRet0; - $556 = (_i64Add(($554|0),($555|0),($536|0),($537|0))|0); - $557 = tempRet0; - $558 = (_bitshift64Shl(($536|0),($537|0),25)|0); - $559 = tempRet0; - $560 = (_i64Subtract(($518|0),($519|0),($558|0),($559|0))|0); - $561 = tempRet0; - $562 = (_i64Add(($528|0),($529|0),33554432,0)|0); - $563 = tempRet0; - $564 = (_bitshift64Ashr(($562|0),($563|0),26)|0); - $565 = tempRet0; - $566 = (_i64Add(($466|0),($467|0),($564|0),($565|0))|0); - $567 = tempRet0; - $568 = (_bitshift64Shl(($564|0),($565|0),26)|0); - $569 = tempRet0; - $570 = (_i64Subtract(($528|0),($529|0),($568|0),($569|0))|0); - $571 = tempRet0; - $572 = (_i64Add(($556|0),($557|0),33554432,0)|0); - $573 = tempRet0; - $574 = (_bitshift64Ashr(($572|0),($573|0),26)|0); - $575 = tempRet0; - $576 = (_i64Add(($274|0),($275|0),($296|0),($297|0))|0); - $577 = tempRet0; - $578 = (_i64Add(($576|0),($577|0),($252|0),($253|0))|0); - $579 = tempRet0; - $580 = (_i64Add(($578|0),($579|0),($228|0),($229|0))|0); - $581 = tempRet0; - $582 = (_i64Add(($580|0),($581|0),($206|0),($207|0))|0); - $583 = tempRet0; - $584 = (_i64Add(($582|0),($583|0),($182|0),($183|0))|0); - $585 = tempRet0; - $586 = (_i64Add(($584|0),($585|0),($160|0),($161|0))|0); - $587 = tempRet0; - $588 = (_i64Add(($586|0),($587|0),($136|0),($137|0))|0); - $589 = tempRet0; - $590 = (_i64Add(($588|0),($589|0),($114|0),($115|0))|0); - $591 = tempRet0; - $592 = (_i64Add(($590|0),($591|0),($92|0),($93|0))|0); - $593 = tempRet0; - $594 = (_i64Add(($592|0),($593|0),($574|0),($575|0))|0); - $595 = tempRet0; - $596 = (_bitshift64Shl(($574|0),($575|0),26)|0); - $597 = tempRet0; - $598 = (_i64Subtract(($556|0),($557|0),($596|0),($597|0))|0); - $599 = tempRet0; - $600 = (_i64Add(($594|0),($595|0),16777216,0)|0); - $601 = tempRet0; - $602 = (_bitshift64Ashr(($600|0),($601|0),25)|0); - $603 = tempRet0; - $604 = (___muldi3(($602|0),($603|0),19,0)|0); - $605 = tempRet0; - $606 = (_i64Add(($604|0),($605|0),($382|0),($383|0))|0); - $607 = tempRet0; - $608 = (_bitshift64Shl(($602|0),($603|0),25)|0); - $609 = tempRet0; - $610 = (_i64Subtract(($594|0),($595|0),($608|0),($609|0))|0); - $611 = tempRet0; - $612 = (_i64Add(($606|0),($607|0),33554432,0)|0); - $613 = tempRet0; - $614 = (_bitshift64Ashr(($612|0),($613|0),26)|0); - $615 = tempRet0; - $616 = (_i64Add(($438|0),($439|0),($614|0),($615|0))|0); - $617 = tempRet0; - $618 = (_bitshift64Shl(($614|0),($615|0),26)|0); - $619 = tempRet0; - $620 = (_i64Subtract(($606|0),($607|0),($618|0),($619|0))|0); - $621 = tempRet0; - HEAP32[$h>>2] = $620; - $622 = ((($h)) + 4|0); - HEAP32[$622>>2] = $616; - $623 = ((($h)) + 8|0); - HEAP32[$623>>2] = $494; - $624 = ((($h)) + 12|0); - HEAP32[$624>>2] = $532; - $625 = ((($h)) + 16|0); - HEAP32[$625>>2] = $570; - $626 = ((($h)) + 20|0); - HEAP32[$626>>2] = $566; - $627 = ((($h)) + 24|0); - HEAP32[$627>>2] = $522; - $628 = ((($h)) + 28|0); - HEAP32[$628>>2] = $560; - $629 = ((($h)) + 32|0); - HEAP32[$629>>2] = $598; - $630 = ((($h)) + 36|0); - HEAP32[$630>>2] = $610; - return; -} -function _crypto_sign_ed25519_ref10_fe_neg($h,$f) { - $h = $h|0; - $f = $f|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); - $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); - $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); - $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); - $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); - $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); - $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); - $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); - $18 = HEAP32[$17>>2]|0; - $19 = (0 - ($0))|0; - $20 = (0 - ($2))|0; - $21 = (0 - ($4))|0; - $22 = (0 - ($6))|0; - $23 = (0 - ($8))|0; - $24 = (0 - ($10))|0; - $25 = (0 - ($12))|0; - $26 = (0 - ($14))|0; - $27 = (0 - ($16))|0; - $28 = (0 - ($18))|0; - HEAP32[$h>>2] = $19; - $29 = ((($h)) + 4|0); - HEAP32[$29>>2] = $20; - $30 = ((($h)) + 8|0); - HEAP32[$30>>2] = $21; - $31 = ((($h)) + 12|0); - HEAP32[$31>>2] = $22; - $32 = ((($h)) + 16|0); - HEAP32[$32>>2] = $23; - $33 = ((($h)) + 20|0); - HEAP32[$33>>2] = $24; - $34 = ((($h)) + 24|0); - HEAP32[$34>>2] = $25; - $35 = ((($h)) + 28|0); - HEAP32[$35>>2] = $26; - $36 = ((($h)) + 32|0); - HEAP32[$36>>2] = $27; - $37 = ((($h)) + 36|0); - HEAP32[$37>>2] = $28; + HEAP32[$0>>2] = $400; + $402 = ((($0)) + 4|0); + HEAP32[$402>>2] = $396; + $403 = ((($0)) + 8|0); + HEAP32[$403>>2] = $302; + $404 = ((($0)) + 12|0); + HEAP32[$404>>2] = $330; + $405 = ((($0)) + 16|0); + HEAP32[$405>>2] = $360; + $406 = ((($0)) + 20|0); + HEAP32[$406>>2] = $356; + $407 = ((($0)) + 24|0); + HEAP32[$407>>2] = $320; + $408 = ((($0)) + 28|0); + HEAP32[$408>>2] = $350; + $409 = ((($0)) + 32|0); + HEAP32[$409>>2] = $378; + $410 = ((($0)) + 36|0); + HEAP32[$410>>2] = $390; return; } -function _crypto_sign_ed25519_ref10_fe_pow22523($out,$z) { - $out = $out|0; - $z = $z|0; - var $0 = 0, $1 = 0, $2 = 0, $exitcond = 0, $exitcond10 = 0, $exitcond11 = 0, $i$74 = 0, $i$83 = 0, $i$92 = 0, $t0 = 0, $t1 = 0, $t2 = 0, label = 0, sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 128|0; - $t0 = sp + 80|0; - $t1 = sp + 40|0; - $t2 = sp; - _crypto_sign_ed25519_ref10_fe_sq($t0,$z); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_mul($t1,$z,$t1); - _crypto_sign_ed25519_ref10_fe_mul($t0,$t0,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t0,$t0); - _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_mul($t1,$t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); - $i$74 = 1; - while(1) { - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - $0 = (($i$74) + 1)|0; - $exitcond11 = ($0|0)==(50); - if ($exitcond11) { - break; - } else { - $i$74 = $0; - } - } - _crypto_sign_ed25519_ref10_fe_mul($t1,$t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); - $i$83 = 1; - while(1) { - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - $1 = (($i$83) + 1)|0; - $exitcond10 = ($1|0)==(100); - if ($exitcond10) { - break; - } else { - $i$83 = $1; - } - } - _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - $i$92 = 1; - while(1) { - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - $2 = (($i$92) + 1)|0; - $exitcond = ($2|0)==(50); - if ($exitcond) { - break; - } else { - $i$92 = $2; - } - } - _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t0,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t0,$t0); - _crypto_sign_ed25519_ref10_fe_mul($out,$t0,$z); - STACKTOP = sp;return; -} -function _crypto_sign_ed25519_ref10_fe_sq($h,$f) { - $h = $h|0; - $f = $f|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; - var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; - var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; - var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; - var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; - var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; - var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; - var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; - var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; - var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; - var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; - var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; - var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0; +function _crypto_sign_ed25519_ref10_fe_sq2($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0; + var $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0; + var $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0; + var $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0; + var $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0; + var $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0; + var $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0; + var $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0; + var $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0; + var $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0; + var $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0; + var $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0; + var $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0; + var $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0; var $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0; var $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0; var $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); + $3 = ((($1)) + 4|0); $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); + $5 = ((($1)) + 8|0); $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); + $7 = ((($1)) + 12|0); $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); + $9 = ((($1)) + 16|0); $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); + $11 = ((($1)) + 20|0); $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); + $13 = ((($1)) + 24|0); $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); + $15 = ((($1)) + 28|0); $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); + $17 = ((($1)) + 32|0); $18 = HEAP32[$17>>2]|0; - $19 = $0 << 1; - $20 = $2 << 1; - $21 = $4 << 1; - $22 = $6 << 1; - $23 = $8 << 1; - $24 = $10 << 1; - $25 = $12 << 1; - $26 = $14 << 1; - $27 = ($10*38)|0; - $28 = ($12*19)|0; - $29 = ($14*38)|0; - $30 = ($16*19)|0; - $31 = ($18*38)|0; - $32 = ($0|0)<(0); - $33 = $32 << 31 >> 31; - $34 = (___muldi3(($0|0),($33|0),($0|0),($33|0))|0); - $35 = tempRet0; - $36 = ($19|0)<(0); - $37 = $36 << 31 >> 31; - $38 = ($2|0)<(0); + $19 = ((($1)) + 36|0); + $20 = HEAP32[$19>>2]|0; + $21 = $2 << 1; + $22 = $4 << 1; + $23 = $6 << 1; + $24 = $8 << 1; + $25 = $10 << 1; + $26 = $12 << 1; + $27 = $14 << 1; + $28 = $16 << 1; + $29 = ($12*38)|0; + $30 = ($14*19)|0; + $31 = ($16*38)|0; + $32 = ($18*19)|0; + $33 = ($20*38)|0; + $34 = ($2|0)<(0); + $35 = $34 << 31 >> 31; + $36 = (___muldi3(($2|0),($35|0),($2|0),($35|0))|0); + $37 = tempRet0; + $38 = ($21|0)<(0); $39 = $38 << 31 >> 31; - $40 = (___muldi3(($19|0),($37|0),($2|0),($39|0))|0); - $41 = tempRet0; - $42 = ($4|0)<(0); - $43 = $42 << 31 >> 31; - $44 = (___muldi3(($4|0),($43|0),($19|0),($37|0))|0); - $45 = tempRet0; - $46 = ($6|0)<(0); - $47 = $46 << 31 >> 31; - $48 = (___muldi3(($6|0),($47|0),($19|0),($37|0))|0); - $49 = tempRet0; - $50 = ($8|0)<(0); - $51 = $50 << 31 >> 31; - $52 = (___muldi3(($8|0),($51|0),($19|0),($37|0))|0); - $53 = tempRet0; - $54 = ($10|0)<(0); - $55 = $54 << 31 >> 31; - $56 = (___muldi3(($10|0),($55|0),($19|0),($37|0))|0); - $57 = tempRet0; - $58 = ($12|0)<(0); - $59 = $58 << 31 >> 31; - $60 = (___muldi3(($12|0),($59|0),($19|0),($37|0))|0); - $61 = tempRet0; - $62 = ($14|0)<(0); - $63 = $62 << 31 >> 31; - $64 = (___muldi3(($14|0),($63|0),($19|0),($37|0))|0); - $65 = tempRet0; - $66 = ($16|0)<(0); - $67 = $66 << 31 >> 31; - $68 = (___muldi3(($16|0),($67|0),($19|0),($37|0))|0); - $69 = tempRet0; - $70 = ($18|0)<(0); - $71 = $70 << 31 >> 31; - $72 = (___muldi3(($18|0),($71|0),($19|0),($37|0))|0); - $73 = tempRet0; - $74 = ($20|0)<(0); - $75 = $74 << 31 >> 31; - $76 = (___muldi3(($20|0),($75|0),($2|0),($39|0))|0); - $77 = tempRet0; - $78 = (___muldi3(($20|0),($75|0),($4|0),($43|0))|0); + $40 = ($4|0)<(0); + $41 = $40 << 31 >> 31; + $42 = (___muldi3(($21|0),($39|0),($4|0),($41|0))|0); + $43 = tempRet0; + $44 = ($6|0)<(0); + $45 = $44 << 31 >> 31; + $46 = (___muldi3(($6|0),($45|0),($21|0),($39|0))|0); + $47 = tempRet0; + $48 = ($8|0)<(0); + $49 = $48 << 31 >> 31; + $50 = (___muldi3(($8|0),($49|0),($21|0),($39|0))|0); + $51 = tempRet0; + $52 = ($10|0)<(0); + $53 = $52 << 31 >> 31; + $54 = (___muldi3(($10|0),($53|0),($21|0),($39|0))|0); + $55 = tempRet0; + $56 = ($12|0)<(0); + $57 = $56 << 31 >> 31; + $58 = (___muldi3(($12|0),($57|0),($21|0),($39|0))|0); + $59 = tempRet0; + $60 = ($14|0)<(0); + $61 = $60 << 31 >> 31; + $62 = (___muldi3(($14|0),($61|0),($21|0),($39|0))|0); + $63 = tempRet0; + $64 = ($16|0)<(0); + $65 = $64 << 31 >> 31; + $66 = (___muldi3(($16|0),($65|0),($21|0),($39|0))|0); + $67 = tempRet0; + $68 = ($18|0)<(0); + $69 = $68 << 31 >> 31; + $70 = (___muldi3(($18|0),($69|0),($21|0),($39|0))|0); + $71 = tempRet0; + $72 = ($20|0)<(0); + $73 = $72 << 31 >> 31; + $74 = (___muldi3(($20|0),($73|0),($21|0),($39|0))|0); + $75 = tempRet0; + $76 = ($22|0)<(0); + $77 = $76 << 31 >> 31; + $78 = (___muldi3(($22|0),($77|0),($4|0),($41|0))|0); $79 = tempRet0; - $80 = ($22|0)<(0); - $81 = $80 << 31 >> 31; - $82 = (___muldi3(($22|0),($81|0),($20|0),($75|0))|0); - $83 = tempRet0; - $84 = (___muldi3(($8|0),($51|0),($20|0),($75|0))|0); + $80 = (___muldi3(($22|0),($77|0),($6|0),($45|0))|0); + $81 = tempRet0; + $82 = ($24|0)<(0); + $83 = $82 << 31 >> 31; + $84 = (___muldi3(($24|0),($83|0),($22|0),($77|0))|0); $85 = tempRet0; - $86 = ($24|0)<(0); - $87 = $86 << 31 >> 31; - $88 = (___muldi3(($24|0),($87|0),($20|0),($75|0))|0); - $89 = tempRet0; - $90 = (___muldi3(($12|0),($59|0),($20|0),($75|0))|0); + $86 = (___muldi3(($10|0),($53|0),($22|0),($77|0))|0); + $87 = tempRet0; + $88 = ($26|0)<(0); + $89 = $88 << 31 >> 31; + $90 = (___muldi3(($26|0),($89|0),($22|0),($77|0))|0); $91 = tempRet0; - $92 = ($26|0)<(0); - $93 = $92 << 31 >> 31; - $94 = (___muldi3(($26|0),($93|0),($20|0),($75|0))|0); - $95 = tempRet0; - $96 = (___muldi3(($16|0),($67|0),($20|0),($75|0))|0); + $92 = (___muldi3(($14|0),($61|0),($22|0),($77|0))|0); + $93 = tempRet0; + $94 = ($28|0)<(0); + $95 = $94 << 31 >> 31; + $96 = (___muldi3(($28|0),($95|0),($22|0),($77|0))|0); $97 = tempRet0; - $98 = ($31|0)<(0); - $99 = $98 << 31 >> 31; - $100 = (___muldi3(($31|0),($99|0),($20|0),($75|0))|0); - $101 = tempRet0; - $102 = (___muldi3(($4|0),($43|0),($4|0),($43|0))|0); + $98 = (___muldi3(($18|0),($69|0),($22|0),($77|0))|0); + $99 = tempRet0; + $100 = ($33|0)<(0); + $101 = $100 << 31 >> 31; + $102 = (___muldi3(($33|0),($101|0),($22|0),($77|0))|0); $103 = tempRet0; - $104 = ($21|0)<(0); - $105 = $104 << 31 >> 31; - $106 = (___muldi3(($21|0),($105|0),($6|0),($47|0))|0); - $107 = tempRet0; - $108 = (___muldi3(($8|0),($51|0),($21|0),($105|0))|0); + $104 = (___muldi3(($6|0),($45|0),($6|0),($45|0))|0); + $105 = tempRet0; + $106 = ($23|0)<(0); + $107 = $106 << 31 >> 31; + $108 = (___muldi3(($23|0),($107|0),($8|0),($49|0))|0); $109 = tempRet0; - $110 = (___muldi3(($10|0),($55|0),($21|0),($105|0))|0); + $110 = (___muldi3(($10|0),($53|0),($23|0),($107|0))|0); $111 = tempRet0; - $112 = (___muldi3(($12|0),($59|0),($21|0),($105|0))|0); + $112 = (___muldi3(($12|0),($57|0),($23|0),($107|0))|0); $113 = tempRet0; - $114 = (___muldi3(($14|0),($63|0),($21|0),($105|0))|0); + $114 = (___muldi3(($14|0),($61|0),($23|0),($107|0))|0); $115 = tempRet0; - $116 = ($30|0)<(0); - $117 = $116 << 31 >> 31; - $118 = (___muldi3(($30|0),($117|0),($21|0),($105|0))|0); - $119 = tempRet0; - $120 = (___muldi3(($31|0),($99|0),($4|0),($43|0))|0); + $116 = (___muldi3(($16|0),($65|0),($23|0),($107|0))|0); + $117 = tempRet0; + $118 = ($32|0)<(0); + $119 = $118 << 31 >> 31; + $120 = (___muldi3(($32|0),($119|0),($23|0),($107|0))|0); $121 = tempRet0; - $122 = (___muldi3(($22|0),($81|0),($6|0),($47|0))|0); + $122 = (___muldi3(($33|0),($101|0),($6|0),($45|0))|0); $123 = tempRet0; - $124 = (___muldi3(($22|0),($81|0),($8|0),($51|0))|0); + $124 = (___muldi3(($24|0),($83|0),($8|0),($49|0))|0); $125 = tempRet0; - $126 = (___muldi3(($24|0),($87|0),($22|0),($81|0))|0); + $126 = (___muldi3(($24|0),($83|0),($10|0),($53|0))|0); $127 = tempRet0; - $128 = (___muldi3(($12|0),($59|0),($22|0),($81|0))|0); + $128 = (___muldi3(($26|0),($89|0),($24|0),($83|0))|0); $129 = tempRet0; - $130 = ($29|0)<(0); - $131 = $130 << 31 >> 31; - $132 = (___muldi3(($29|0),($131|0),($22|0),($81|0))|0); - $133 = tempRet0; - $134 = (___muldi3(($30|0),($117|0),($22|0),($81|0))|0); + $130 = (___muldi3(($14|0),($61|0),($24|0),($83|0))|0); + $131 = tempRet0; + $132 = ($31|0)<(0); + $133 = $132 << 31 >> 31; + $134 = (___muldi3(($31|0),($133|0),($24|0),($83|0))|0); $135 = tempRet0; - $136 = (___muldi3(($31|0),($99|0),($22|0),($81|0))|0); + $136 = (___muldi3(($32|0),($119|0),($24|0),($83|0))|0); $137 = tempRet0; - $138 = (___muldi3(($8|0),($51|0),($8|0),($51|0))|0); + $138 = (___muldi3(($33|0),($101|0),($24|0),($83|0))|0); $139 = tempRet0; - $140 = ($23|0)<(0); - $141 = $140 << 31 >> 31; - $142 = (___muldi3(($23|0),($141|0),($10|0),($55|0))|0); - $143 = tempRet0; - $144 = ($28|0)<(0); - $145 = $144 << 31 >> 31; - $146 = (___muldi3(($28|0),($145|0),($23|0),($141|0))|0); - $147 = tempRet0; - $148 = (___muldi3(($29|0),($131|0),($8|0),($51|0))|0); + $140 = (___muldi3(($10|0),($53|0),($10|0),($53|0))|0); + $141 = tempRet0; + $142 = ($25|0)<(0); + $143 = $142 << 31 >> 31; + $144 = (___muldi3(($25|0),($143|0),($12|0),($57|0))|0); + $145 = tempRet0; + $146 = ($30|0)<(0); + $147 = $146 << 31 >> 31; + $148 = (___muldi3(($30|0),($147|0),($25|0),($143|0))|0); $149 = tempRet0; - $150 = (___muldi3(($30|0),($117|0),($23|0),($141|0))|0); + $150 = (___muldi3(($31|0),($133|0),($10|0),($53|0))|0); $151 = tempRet0; - $152 = (___muldi3(($31|0),($99|0),($8|0),($51|0))|0); + $152 = (___muldi3(($32|0),($119|0),($25|0),($143|0))|0); $153 = tempRet0; - $154 = ($27|0)<(0); - $155 = $154 << 31 >> 31; - $156 = (___muldi3(($27|0),($155|0),($10|0),($55|0))|0); - $157 = tempRet0; - $158 = (___muldi3(($28|0),($145|0),($24|0),($87|0))|0); + $154 = (___muldi3(($33|0),($101|0),($10|0),($53|0))|0); + $155 = tempRet0; + $156 = ($29|0)<(0); + $157 = $156 << 31 >> 31; + $158 = (___muldi3(($29|0),($157|0),($12|0),($57|0))|0); $159 = tempRet0; - $160 = (___muldi3(($29|0),($131|0),($24|0),($87|0))|0); + $160 = (___muldi3(($30|0),($147|0),($26|0),($89|0))|0); $161 = tempRet0; - $162 = (___muldi3(($30|0),($117|0),($24|0),($87|0))|0); + $162 = (___muldi3(($31|0),($133|0),($26|0),($89|0))|0); $163 = tempRet0; - $164 = (___muldi3(($31|0),($99|0),($24|0),($87|0))|0); + $164 = (___muldi3(($32|0),($119|0),($26|0),($89|0))|0); $165 = tempRet0; - $166 = (___muldi3(($28|0),($145|0),($12|0),($59|0))|0); + $166 = (___muldi3(($33|0),($101|0),($26|0),($89|0))|0); $167 = tempRet0; - $168 = (___muldi3(($29|0),($131|0),($12|0),($59|0))|0); + $168 = (___muldi3(($30|0),($147|0),($14|0),($61|0))|0); $169 = tempRet0; - $170 = ($25|0)<(0); - $171 = $170 << 31 >> 31; - $172 = (___muldi3(($30|0),($117|0),($25|0),($171|0))|0); - $173 = tempRet0; - $174 = (___muldi3(($31|0),($99|0),($12|0),($59|0))|0); + $170 = (___muldi3(($31|0),($133|0),($14|0),($61|0))|0); + $171 = tempRet0; + $172 = ($27|0)<(0); + $173 = $172 << 31 >> 31; + $174 = (___muldi3(($32|0),($119|0),($27|0),($173|0))|0); $175 = tempRet0; - $176 = (___muldi3(($29|0),($131|0),($14|0),($63|0))|0); + $176 = (___muldi3(($33|0),($101|0),($14|0),($61|0))|0); $177 = tempRet0; - $178 = (___muldi3(($30|0),($117|0),($26|0),($93|0))|0); + $178 = (___muldi3(($31|0),($133|0),($16|0),($65|0))|0); $179 = tempRet0; - $180 = (___muldi3(($31|0),($99|0),($26|0),($93|0))|0); + $180 = (___muldi3(($32|0),($119|0),($28|0),($95|0))|0); $181 = tempRet0; - $182 = (___muldi3(($30|0),($117|0),($16|0),($67|0))|0); + $182 = (___muldi3(($33|0),($101|0),($28|0),($95|0))|0); $183 = tempRet0; - $184 = (___muldi3(($31|0),($99|0),($16|0),($67|0))|0); + $184 = (___muldi3(($32|0),($119|0),($18|0),($69|0))|0); $185 = tempRet0; - $186 = (___muldi3(($31|0),($99|0),($18|0),($71|0))|0); + $186 = (___muldi3(($33|0),($101|0),($18|0),($69|0))|0); $187 = tempRet0; - $188 = (_i64Add(($156|0),($157|0),($34|0),($35|0))|0); + $188 = (___muldi3(($33|0),($101|0),($20|0),($73|0))|0); $189 = tempRet0; - $190 = (_i64Add(($188|0),($189|0),($146|0),($147|0))|0); + $190 = (_i64Add(($158|0),($159|0),($36|0),($37|0))|0); $191 = tempRet0; - $192 = (_i64Add(($190|0),($191|0),($132|0),($133|0))|0); + $192 = (_i64Add(($190|0),($191|0),($148|0),($149|0))|0); $193 = tempRet0; - $194 = (_i64Add(($192|0),($193|0),($118|0),($119|0))|0); + $194 = (_i64Add(($192|0),($193|0),($134|0),($135|0))|0); $195 = tempRet0; - $196 = (_i64Add(($194|0),($195|0),($100|0),($101|0))|0); + $196 = (_i64Add(($194|0),($195|0),($120|0),($121|0))|0); $197 = tempRet0; - $198 = (_i64Add(($44|0),($45|0),($76|0),($77|0))|0); + $198 = (_i64Add(($196|0),($197|0),($102|0),($103|0))|0); $199 = tempRet0; - $200 = (_i64Add(($48|0),($49|0),($78|0),($79|0))|0); + $200 = (_i64Add(($160|0),($161|0),($42|0),($43|0))|0); $201 = tempRet0; - $202 = (_i64Add(($82|0),($83|0),($102|0),($103|0))|0); + $202 = (_i64Add(($200|0),($201|0),($150|0),($151|0))|0); $203 = tempRet0; - $204 = (_i64Add(($202|0),($203|0),($52|0),($53|0))|0); + $204 = (_i64Add(($202|0),($203|0),($136|0),($137|0))|0); $205 = tempRet0; - $206 = (_i64Add(($204|0),($205|0),($176|0),($177|0))|0); + $206 = (_i64Add(($204|0),($205|0),($122|0),($123|0))|0); $207 = tempRet0; - $208 = (_i64Add(($206|0),($207|0),($172|0),($173|0))|0); + $208 = (_i64Add(($46|0),($47|0),($78|0),($79|0))|0); $209 = tempRet0; - $210 = (_i64Add(($208|0),($209|0),($164|0),($165|0))|0); + $210 = (_i64Add(($208|0),($209|0),($168|0),($169|0))|0); $211 = tempRet0; - $212 = (_i64Add(($196|0),($197|0),33554432,0)|0); + $212 = (_i64Add(($210|0),($211|0),($162|0),($163|0))|0); $213 = tempRet0; - $214 = (_bitshift64Ashr(($212|0),($213|0),26)|0); + $214 = (_i64Add(($212|0),($213|0),($152|0),($153|0))|0); $215 = tempRet0; - $216 = (_i64Add(($158|0),($159|0),($40|0),($41|0))|0); + $216 = (_i64Add(($214|0),($215|0),($138|0),($139|0))|0); $217 = tempRet0; - $218 = (_i64Add(($216|0),($217|0),($148|0),($149|0))|0); + $218 = (_i64Add(($50|0),($51|0),($80|0),($81|0))|0); $219 = tempRet0; - $220 = (_i64Add(($218|0),($219|0),($134|0),($135|0))|0); + $220 = (_i64Add(($218|0),($219|0),($170|0),($171|0))|0); $221 = tempRet0; - $222 = (_i64Add(($220|0),($221|0),($120|0),($121|0))|0); + $222 = (_i64Add(($220|0),($221|0),($164|0),($165|0))|0); $223 = tempRet0; - $224 = (_i64Add(($222|0),($223|0),($214|0),($215|0))|0); + $224 = (_i64Add(($222|0),($223|0),($154|0),($155|0))|0); $225 = tempRet0; - $226 = (_bitshift64Shl(($214|0),($215|0),26)|0); + $226 = (_i64Add(($84|0),($85|0),($104|0),($105|0))|0); $227 = tempRet0; - $228 = (_i64Subtract(($196|0),($197|0),($226|0),($227|0))|0); + $228 = (_i64Add(($226|0),($227|0),($54|0),($55|0))|0); $229 = tempRet0; - $230 = (_i64Add(($210|0),($211|0),33554432,0)|0); + $230 = (_i64Add(($228|0),($229|0),($178|0),($179|0))|0); $231 = tempRet0; - $232 = (_bitshift64Ashr(($230|0),($231|0),26)|0); + $232 = (_i64Add(($230|0),($231|0),($174|0),($175|0))|0); $233 = tempRet0; - $234 = (_i64Add(($84|0),($85|0),($106|0),($107|0))|0); + $234 = (_i64Add(($232|0),($233|0),($166|0),($167|0))|0); $235 = tempRet0; - $236 = (_i64Add(($234|0),($235|0),($56|0),($57|0))|0); + $236 = (_i64Add(($86|0),($87|0),($108|0),($109|0))|0); $237 = tempRet0; - $238 = (_i64Add(($236|0),($237|0),($178|0),($179|0))|0); + $238 = (_i64Add(($236|0),($237|0),($58|0),($59|0))|0); $239 = tempRet0; - $240 = (_i64Add(($238|0),($239|0),($174|0),($175|0))|0); + $240 = (_i64Add(($238|0),($239|0),($180|0),($181|0))|0); $241 = tempRet0; - $242 = (_i64Add(($240|0),($241|0),($232|0),($233|0))|0); + $242 = (_i64Add(($240|0),($241|0),($176|0),($177|0))|0); $243 = tempRet0; - $244 = (_bitshift64Shl(($232|0),($233|0),26)|0); + $244 = (_i64Add(($124|0),($125|0),($110|0),($111|0))|0); $245 = tempRet0; - $246 = (_i64Subtract(($210|0),($211|0),($244|0),($245|0))|0); + $246 = (_i64Add(($244|0),($245|0),($90|0),($91|0))|0); $247 = tempRet0; - $248 = (_i64Add(($224|0),($225|0),16777216,0)|0); + $248 = (_i64Add(($246|0),($247|0),($62|0),($63|0))|0); $249 = tempRet0; - $250 = (_bitshift64Ashr(($248|0),($249|0),25)|0); + $250 = (_i64Add(($248|0),($249|0),($184|0),($185|0))|0); $251 = tempRet0; - $252 = (_i64Add(($198|0),($199|0),($166|0),($167|0))|0); + $252 = (_i64Add(($250|0),($251|0),($182|0),($183|0))|0); $253 = tempRet0; - $254 = (_i64Add(($252|0),($253|0),($160|0),($161|0))|0); + $254 = (_i64Add(($112|0),($113|0),($126|0),($127|0))|0); $255 = tempRet0; - $256 = (_i64Add(($254|0),($255|0),($150|0),($151|0))|0); + $256 = (_i64Add(($254|0),($255|0),($92|0),($93|0))|0); $257 = tempRet0; - $258 = (_i64Add(($256|0),($257|0),($136|0),($137|0))|0); + $258 = (_i64Add(($256|0),($257|0),($66|0),($67|0))|0); $259 = tempRet0; - $260 = (_i64Add(($258|0),($259|0),($250|0),($251|0))|0); + $260 = (_i64Add(($258|0),($259|0),($186|0),($187|0))|0); $261 = tempRet0; - $262 = (_bitshift64Shl(($250|0),($251|0),25)|0); + $262 = (_i64Add(($114|0),($115|0),($140|0),($141|0))|0); $263 = tempRet0; - $264 = (_i64Subtract(($224|0),($225|0),($262|0),($263|0))|0); + $264 = (_i64Add(($262|0),($263|0),($128|0),($129|0))|0); $265 = tempRet0; - $266 = (_i64Add(($242|0),($243|0),16777216,0)|0); + $266 = (_i64Add(($264|0),($265|0),($96|0),($97|0))|0); $267 = tempRet0; - $268 = (_bitshift64Ashr(($266|0),($267|0),25)|0); + $268 = (_i64Add(($266|0),($267|0),($70|0),($71|0))|0); $269 = tempRet0; - $270 = (_i64Add(($122|0),($123|0),($108|0),($109|0))|0); + $270 = (_i64Add(($268|0),($269|0),($188|0),($189|0))|0); $271 = tempRet0; - $272 = (_i64Add(($270|0),($271|0),($88|0),($89|0))|0); + $272 = (_i64Add(($130|0),($131|0),($144|0),($145|0))|0); $273 = tempRet0; - $274 = (_i64Add(($272|0),($273|0),($60|0),($61|0))|0); + $274 = (_i64Add(($272|0),($273|0),($116|0),($117|0))|0); $275 = tempRet0; - $276 = (_i64Add(($274|0),($275|0),($182|0),($183|0))|0); + $276 = (_i64Add(($274|0),($275|0),($98|0),($99|0))|0); $277 = tempRet0; - $278 = (_i64Add(($276|0),($277|0),($180|0),($181|0))|0); + $278 = (_i64Add(($276|0),($277|0),($74|0),($75|0))|0); $279 = tempRet0; - $280 = (_i64Add(($278|0),($279|0),($268|0),($269|0))|0); + $280 = (_bitshift64Shl(($198|0),($199|0),1)|0); $281 = tempRet0; - $282 = (_bitshift64Shl(($268|0),($269|0),25)|0); + $282 = (_bitshift64Shl(($206|0),($207|0),1)|0); $283 = tempRet0; - $284 = (_i64Subtract(($242|0),($243|0),($282|0),($283|0))|0); + $284 = (_bitshift64Shl(($216|0),($217|0),1)|0); $285 = tempRet0; - $286 = (_i64Add(($260|0),($261|0),33554432,0)|0); + $286 = (_bitshift64Shl(($224|0),($225|0),1)|0); $287 = tempRet0; - $288 = (_bitshift64Ashr(($286|0),($287|0),26)|0); + $288 = (_bitshift64Shl(($234|0),($235|0),1)|0); $289 = tempRet0; - $290 = (_i64Add(($200|0),($201|0),($168|0),($169|0))|0); + $290 = (_bitshift64Shl(($242|0),($243|0),1)|0); $291 = tempRet0; - $292 = (_i64Add(($290|0),($291|0),($162|0),($163|0))|0); + $292 = (_bitshift64Shl(($252|0),($253|0),1)|0); $293 = tempRet0; - $294 = (_i64Add(($292|0),($293|0),($152|0),($153|0))|0); + $294 = (_bitshift64Shl(($260|0),($261|0),1)|0); $295 = tempRet0; - $296 = (_i64Add(($294|0),($295|0),($288|0),($289|0))|0); + $296 = (_bitshift64Shl(($270|0),($271|0),1)|0); $297 = tempRet0; - $298 = (_bitshift64Shl(($288|0),($289|0),26)|0); + $298 = (_bitshift64Shl(($278|0),($279|0),1)|0); $299 = tempRet0; - $300 = (_i64Subtract(($260|0),($261|0),($298|0),($299|0))|0); + $300 = (_i64Add(($280|0),($281|0),33554432,0)|0); $301 = tempRet0; - $302 = (_i64Add(($280|0),($281|0),33554432,0)|0); + $302 = (_bitshift64Ashr(($300|0),($301|0),26)|0); $303 = tempRet0; - $304 = (_bitshift64Ashr(($302|0),($303|0),26)|0); + $304 = (_i64Add(($302|0),($303|0),($282|0),($283|0))|0); $305 = tempRet0; - $306 = (_i64Add(($110|0),($111|0),($124|0),($125|0))|0); + $306 = (_bitshift64Shl(($302|0),($303|0),26)|0); $307 = tempRet0; - $308 = (_i64Add(($306|0),($307|0),($90|0),($91|0))|0); + $308 = (_i64Subtract(($280|0),($281|0),($306|0),($307|0))|0); $309 = tempRet0; - $310 = (_i64Add(($308|0),($309|0),($64|0),($65|0))|0); + $310 = (_i64Add(($288|0),($289|0),33554432,0)|0); $311 = tempRet0; - $312 = (_i64Add(($310|0),($311|0),($184|0),($185|0))|0); + $312 = (_bitshift64Ashr(($310|0),($311|0),26)|0); $313 = tempRet0; - $314 = (_i64Add(($312|0),($313|0),($304|0),($305|0))|0); + $314 = (_i64Add(($312|0),($313|0),($290|0),($291|0))|0); $315 = tempRet0; - $316 = (_bitshift64Shl(($304|0),($305|0),26)|0); + $316 = (_bitshift64Shl(($312|0),($313|0),26)|0); $317 = tempRet0; - $318 = (_i64Subtract(($280|0),($281|0),($316|0),($317|0))|0); + $318 = (_i64Subtract(($288|0),($289|0),($316|0),($317|0))|0); $319 = tempRet0; - $320 = (_i64Add(($296|0),($297|0),16777216,0)|0); + $320 = (_i64Add(($304|0),($305|0),16777216,0)|0); $321 = tempRet0; $322 = (_bitshift64Ashr(($320|0),($321|0),25)|0); $323 = tempRet0; - $324 = (_i64Add(($322|0),($323|0),($246|0),($247|0))|0); + $324 = (_i64Add(($322|0),($323|0),($284|0),($285|0))|0); $325 = tempRet0; $326 = (_bitshift64Shl(($322|0),($323|0),25)|0); $327 = tempRet0; - $328 = (_i64Subtract(($296|0),($297|0),($326|0),($327|0))|0); + $328 = (_i64Subtract(($304|0),($305|0),($326|0),($327|0))|0); $329 = tempRet0; $330 = (_i64Add(($314|0),($315|0),16777216,0)|0); $331 = tempRet0; $332 = (_bitshift64Ashr(($330|0),($331|0),25)|0); $333 = tempRet0; - $334 = (_i64Add(($112|0),($113|0),($138|0),($139|0))|0); + $334 = (_i64Add(($332|0),($333|0),($292|0),($293|0))|0); $335 = tempRet0; - $336 = (_i64Add(($334|0),($335|0),($126|0),($127|0))|0); + $336 = (_bitshift64Shl(($332|0),($333|0),25)|0); $337 = tempRet0; - $338 = (_i64Add(($336|0),($337|0),($94|0),($95|0))|0); + $338 = (_i64Subtract(($314|0),($315|0),($336|0),($337|0))|0); $339 = tempRet0; - $340 = (_i64Add(($338|0),($339|0),($68|0),($69|0))|0); + $340 = (_i64Add(($324|0),($325|0),33554432,0)|0); $341 = tempRet0; - $342 = (_i64Add(($340|0),($341|0),($186|0),($187|0))|0); + $342 = (_bitshift64Ashr(($340|0),($341|0),26)|0); $343 = tempRet0; - $344 = (_i64Add(($342|0),($343|0),($332|0),($333|0))|0); + $344 = (_i64Add(($342|0),($343|0),($286|0),($287|0))|0); $345 = tempRet0; - $346 = (_bitshift64Shl(($332|0),($333|0),25)|0); + $346 = (_bitshift64Shl(($342|0),($343|0),26)|0); $347 = tempRet0; - $348 = (_i64Subtract(($314|0),($315|0),($346|0),($347|0))|0); + $348 = (_i64Subtract(($324|0),($325|0),($346|0),($347|0))|0); $349 = tempRet0; - $350 = (_i64Add(($324|0),($325|0),33554432,0)|0); + $350 = (_i64Add(($334|0),($335|0),33554432,0)|0); $351 = tempRet0; $352 = (_bitshift64Ashr(($350|0),($351|0),26)|0); $353 = tempRet0; - $354 = (_i64Add(($284|0),($285|0),($352|0),($353|0))|0); + $354 = (_i64Add(($352|0),($353|0),($294|0),($295|0))|0); $355 = tempRet0; $356 = (_bitshift64Shl(($352|0),($353|0),26)|0); $357 = tempRet0; - $358 = (_i64Subtract(($324|0),($325|0),($356|0),($357|0))|0); + $358 = (_i64Subtract(($334|0),($335|0),($356|0),($357|0))|0); $359 = tempRet0; - $360 = (_i64Add(($344|0),($345|0),33554432,0)|0); + $360 = (_i64Add(($344|0),($345|0),16777216,0)|0); $361 = tempRet0; - $362 = (_bitshift64Ashr(($360|0),($361|0),26)|0); + $362 = (_bitshift64Ashr(($360|0),($361|0),25)|0); $363 = tempRet0; - $364 = (_i64Add(($128|0),($129|0),($142|0),($143|0))|0); + $364 = (_i64Add(($362|0),($363|0),($318|0),($319|0))|0); $365 = tempRet0; - $366 = (_i64Add(($364|0),($365|0),($114|0),($115|0))|0); + $366 = (_bitshift64Shl(($362|0),($363|0),25)|0); $367 = tempRet0; - $368 = (_i64Add(($366|0),($367|0),($96|0),($97|0))|0); + $368 = (_i64Subtract(($344|0),($345|0),($366|0),($367|0))|0); $369 = tempRet0; - $370 = (_i64Add(($368|0),($369|0),($72|0),($73|0))|0); + $370 = (_i64Add(($354|0),($355|0),16777216,0)|0); $371 = tempRet0; - $372 = (_i64Add(($370|0),($371|0),($362|0),($363|0))|0); + $372 = (_bitshift64Ashr(($370|0),($371|0),25)|0); $373 = tempRet0; - $374 = (_bitshift64Shl(($362|0),($363|0),26)|0); + $374 = (_i64Add(($372|0),($373|0),($296|0),($297|0))|0); $375 = tempRet0; - $376 = (_i64Subtract(($344|0),($345|0),($374|0),($375|0))|0); + $376 = (_bitshift64Shl(($372|0),($373|0),25)|0); $377 = tempRet0; - $378 = (_i64Add(($372|0),($373|0),16777216,0)|0); + $378 = (_i64Subtract(($354|0),($355|0),($376|0),($377|0))|0); $379 = tempRet0; - $380 = (_bitshift64Ashr(($378|0),($379|0),25)|0); + $380 = (_i64Add(($364|0),($365|0),33554432,0)|0); $381 = tempRet0; - $382 = (___muldi3(($380|0),($381|0),19,0)|0); + $382 = (_bitshift64Ashr(($380|0),($381|0),26)|0); $383 = tempRet0; - $384 = (_i64Add(($382|0),($383|0),($228|0),($229|0))|0); + $384 = (_i64Add(($338|0),($339|0),($382|0),($383|0))|0); $385 = tempRet0; - $386 = (_bitshift64Shl(($380|0),($381|0),25)|0); + $386 = (_bitshift64Shl(($382|0),($383|0),26)|0); $387 = tempRet0; - $388 = (_i64Subtract(($372|0),($373|0),($386|0),($387|0))|0); + $388 = (_i64Subtract(($364|0),($365|0),($386|0),($387|0))|0); $389 = tempRet0; - $390 = (_i64Add(($384|0),($385|0),33554432,0)|0); + $390 = (_i64Add(($374|0),($375|0),33554432,0)|0); $391 = tempRet0; $392 = (_bitshift64Ashr(($390|0),($391|0),26)|0); $393 = tempRet0; - $394 = (_i64Add(($264|0),($265|0),($392|0),($393|0))|0); + $394 = (_i64Add(($392|0),($393|0),($298|0),($299|0))|0); $395 = tempRet0; $396 = (_bitshift64Shl(($392|0),($393|0),26)|0); $397 = tempRet0; - $398 = (_i64Subtract(($384|0),($385|0),($396|0),($397|0))|0); - $399 = tempRet0; - HEAP32[$h>>2] = $398; - $400 = ((($h)) + 4|0); - HEAP32[$400>>2] = $394; - $401 = ((($h)) + 8|0); - HEAP32[$401>>2] = $300; - $402 = ((($h)) + 12|0); - HEAP32[$402>>2] = $328; - $403 = ((($h)) + 16|0); - HEAP32[$403>>2] = $358; - $404 = ((($h)) + 20|0); - HEAP32[$404>>2] = $354; - $405 = ((($h)) + 24|0); - HEAP32[$405>>2] = $318; - $406 = ((($h)) + 28|0); - HEAP32[$406>>2] = $348; - $407 = ((($h)) + 32|0); - HEAP32[$407>>2] = $376; - $408 = ((($h)) + 36|0); - HEAP32[$408>>2] = $388; - return; -} -function _crypto_sign_ed25519_ref10_fe_sq2($h,$f) { - $h = $h|0; - $f = $f|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; - var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; - var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; - var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; - var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; - var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; - var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; - var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; - var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; - var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; - var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; - var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; - var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0; - var $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0; - var $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0; - var $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0; - var $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); - $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); - $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); - $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); - $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); - $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); - $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); - $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); - $18 = HEAP32[$17>>2]|0; - $19 = $0 << 1; - $20 = $2 << 1; - $21 = $4 << 1; - $22 = $6 << 1; - $23 = $8 << 1; - $24 = $10 << 1; - $25 = $12 << 1; - $26 = $14 << 1; - $27 = ($10*38)|0; - $28 = ($12*19)|0; - $29 = ($14*38)|0; - $30 = ($16*19)|0; - $31 = ($18*38)|0; - $32 = ($0|0)<(0); - $33 = $32 << 31 >> 31; - $34 = (___muldi3(($0|0),($33|0),($0|0),($33|0))|0); - $35 = tempRet0; - $36 = ($19|0)<(0); - $37 = $36 << 31 >> 31; - $38 = ($2|0)<(0); - $39 = $38 << 31 >> 31; - $40 = (___muldi3(($19|0),($37|0),($2|0),($39|0))|0); - $41 = tempRet0; - $42 = ($4|0)<(0); - $43 = $42 << 31 >> 31; - $44 = (___muldi3(($4|0),($43|0),($19|0),($37|0))|0); - $45 = tempRet0; - $46 = ($6|0)<(0); - $47 = $46 << 31 >> 31; - $48 = (___muldi3(($6|0),($47|0),($19|0),($37|0))|0); - $49 = tempRet0; - $50 = ($8|0)<(0); - $51 = $50 << 31 >> 31; - $52 = (___muldi3(($8|0),($51|0),($19|0),($37|0))|0); - $53 = tempRet0; - $54 = ($10|0)<(0); - $55 = $54 << 31 >> 31; - $56 = (___muldi3(($10|0),($55|0),($19|0),($37|0))|0); - $57 = tempRet0; - $58 = ($12|0)<(0); - $59 = $58 << 31 >> 31; - $60 = (___muldi3(($12|0),($59|0),($19|0),($37|0))|0); - $61 = tempRet0; - $62 = ($14|0)<(0); - $63 = $62 << 31 >> 31; - $64 = (___muldi3(($14|0),($63|0),($19|0),($37|0))|0); - $65 = tempRet0; - $66 = ($16|0)<(0); - $67 = $66 << 31 >> 31; - $68 = (___muldi3(($16|0),($67|0),($19|0),($37|0))|0); - $69 = tempRet0; - $70 = ($18|0)<(0); - $71 = $70 << 31 >> 31; - $72 = (___muldi3(($18|0),($71|0),($19|0),($37|0))|0); - $73 = tempRet0; - $74 = ($20|0)<(0); - $75 = $74 << 31 >> 31; - $76 = (___muldi3(($20|0),($75|0),($2|0),($39|0))|0); - $77 = tempRet0; - $78 = (___muldi3(($20|0),($75|0),($4|0),($43|0))|0); - $79 = tempRet0; - $80 = ($22|0)<(0); - $81 = $80 << 31 >> 31; - $82 = (___muldi3(($22|0),($81|0),($20|0),($75|0))|0); - $83 = tempRet0; - $84 = (___muldi3(($8|0),($51|0),($20|0),($75|0))|0); - $85 = tempRet0; - $86 = ($24|0)<(0); - $87 = $86 << 31 >> 31; - $88 = (___muldi3(($24|0),($87|0),($20|0),($75|0))|0); - $89 = tempRet0; - $90 = (___muldi3(($12|0),($59|0),($20|0),($75|0))|0); - $91 = tempRet0; - $92 = ($26|0)<(0); - $93 = $92 << 31 >> 31; - $94 = (___muldi3(($26|0),($93|0),($20|0),($75|0))|0); - $95 = tempRet0; - $96 = (___muldi3(($16|0),($67|0),($20|0),($75|0))|0); - $97 = tempRet0; - $98 = ($31|0)<(0); - $99 = $98 << 31 >> 31; - $100 = (___muldi3(($31|0),($99|0),($20|0),($75|0))|0); - $101 = tempRet0; - $102 = (___muldi3(($4|0),($43|0),($4|0),($43|0))|0); - $103 = tempRet0; - $104 = ($21|0)<(0); - $105 = $104 << 31 >> 31; - $106 = (___muldi3(($21|0),($105|0),($6|0),($47|0))|0); - $107 = tempRet0; - $108 = (___muldi3(($8|0),($51|0),($21|0),($105|0))|0); - $109 = tempRet0; - $110 = (___muldi3(($10|0),($55|0),($21|0),($105|0))|0); - $111 = tempRet0; - $112 = (___muldi3(($12|0),($59|0),($21|0),($105|0))|0); - $113 = tempRet0; - $114 = (___muldi3(($14|0),($63|0),($21|0),($105|0))|0); - $115 = tempRet0; - $116 = ($30|0)<(0); - $117 = $116 << 31 >> 31; - $118 = (___muldi3(($30|0),($117|0),($21|0),($105|0))|0); - $119 = tempRet0; - $120 = (___muldi3(($31|0),($99|0),($4|0),($43|0))|0); - $121 = tempRet0; - $122 = (___muldi3(($22|0),($81|0),($6|0),($47|0))|0); - $123 = tempRet0; - $124 = (___muldi3(($22|0),($81|0),($8|0),($51|0))|0); - $125 = tempRet0; - $126 = (___muldi3(($24|0),($87|0),($22|0),($81|0))|0); - $127 = tempRet0; - $128 = (___muldi3(($12|0),($59|0),($22|0),($81|0))|0); - $129 = tempRet0; - $130 = ($29|0)<(0); - $131 = $130 << 31 >> 31; - $132 = (___muldi3(($29|0),($131|0),($22|0),($81|0))|0); - $133 = tempRet0; - $134 = (___muldi3(($30|0),($117|0),($22|0),($81|0))|0); - $135 = tempRet0; - $136 = (___muldi3(($31|0),($99|0),($22|0),($81|0))|0); - $137 = tempRet0; - $138 = (___muldi3(($8|0),($51|0),($8|0),($51|0))|0); - $139 = tempRet0; - $140 = ($23|0)<(0); - $141 = $140 << 31 >> 31; - $142 = (___muldi3(($23|0),($141|0),($10|0),($55|0))|0); - $143 = tempRet0; - $144 = ($28|0)<(0); - $145 = $144 << 31 >> 31; - $146 = (___muldi3(($28|0),($145|0),($23|0),($141|0))|0); - $147 = tempRet0; - $148 = (___muldi3(($29|0),($131|0),($8|0),($51|0))|0); - $149 = tempRet0; - $150 = (___muldi3(($30|0),($117|0),($23|0),($141|0))|0); - $151 = tempRet0; - $152 = (___muldi3(($31|0),($99|0),($8|0),($51|0))|0); - $153 = tempRet0; - $154 = ($27|0)<(0); - $155 = $154 << 31 >> 31; - $156 = (___muldi3(($27|0),($155|0),($10|0),($55|0))|0); - $157 = tempRet0; - $158 = (___muldi3(($28|0),($145|0),($24|0),($87|0))|0); - $159 = tempRet0; - $160 = (___muldi3(($29|0),($131|0),($24|0),($87|0))|0); - $161 = tempRet0; - $162 = (___muldi3(($30|0),($117|0),($24|0),($87|0))|0); - $163 = tempRet0; - $164 = (___muldi3(($31|0),($99|0),($24|0),($87|0))|0); - $165 = tempRet0; - $166 = (___muldi3(($28|0),($145|0),($12|0),($59|0))|0); - $167 = tempRet0; - $168 = (___muldi3(($29|0),($131|0),($12|0),($59|0))|0); - $169 = tempRet0; - $170 = ($25|0)<(0); - $171 = $170 << 31 >> 31; - $172 = (___muldi3(($30|0),($117|0),($25|0),($171|0))|0); - $173 = tempRet0; - $174 = (___muldi3(($31|0),($99|0),($12|0),($59|0))|0); - $175 = tempRet0; - $176 = (___muldi3(($29|0),($131|0),($14|0),($63|0))|0); - $177 = tempRet0; - $178 = (___muldi3(($30|0),($117|0),($26|0),($93|0))|0); - $179 = tempRet0; - $180 = (___muldi3(($31|0),($99|0),($26|0),($93|0))|0); - $181 = tempRet0; - $182 = (___muldi3(($30|0),($117|0),($16|0),($67|0))|0); - $183 = tempRet0; - $184 = (___muldi3(($31|0),($99|0),($16|0),($67|0))|0); - $185 = tempRet0; - $186 = (___muldi3(($31|0),($99|0),($18|0),($71|0))|0); - $187 = tempRet0; - $188 = (_i64Add(($156|0),($157|0),($34|0),($35|0))|0); - $189 = tempRet0; - $190 = (_i64Add(($188|0),($189|0),($146|0),($147|0))|0); - $191 = tempRet0; - $192 = (_i64Add(($190|0),($191|0),($132|0),($133|0))|0); - $193 = tempRet0; - $194 = (_i64Add(($192|0),($193|0),($118|0),($119|0))|0); - $195 = tempRet0; - $196 = (_i64Add(($194|0),($195|0),($100|0),($101|0))|0); - $197 = tempRet0; - $198 = (_i64Add(($158|0),($159|0),($40|0),($41|0))|0); - $199 = tempRet0; - $200 = (_i64Add(($198|0),($199|0),($148|0),($149|0))|0); - $201 = tempRet0; - $202 = (_i64Add(($200|0),($201|0),($134|0),($135|0))|0); - $203 = tempRet0; - $204 = (_i64Add(($202|0),($203|0),($120|0),($121|0))|0); - $205 = tempRet0; - $206 = (_i64Add(($44|0),($45|0),($76|0),($77|0))|0); - $207 = tempRet0; - $208 = (_i64Add(($206|0),($207|0),($166|0),($167|0))|0); - $209 = tempRet0; - $210 = (_i64Add(($208|0),($209|0),($160|0),($161|0))|0); - $211 = tempRet0; - $212 = (_i64Add(($210|0),($211|0),($150|0),($151|0))|0); - $213 = tempRet0; - $214 = (_i64Add(($212|0),($213|0),($136|0),($137|0))|0); - $215 = tempRet0; - $216 = (_i64Add(($48|0),($49|0),($78|0),($79|0))|0); - $217 = tempRet0; - $218 = (_i64Add(($216|0),($217|0),($168|0),($169|0))|0); - $219 = tempRet0; - $220 = (_i64Add(($218|0),($219|0),($162|0),($163|0))|0); - $221 = tempRet0; - $222 = (_i64Add(($220|0),($221|0),($152|0),($153|0))|0); - $223 = tempRet0; - $224 = (_i64Add(($82|0),($83|0),($102|0),($103|0))|0); - $225 = tempRet0; - $226 = (_i64Add(($224|0),($225|0),($52|0),($53|0))|0); - $227 = tempRet0; - $228 = (_i64Add(($226|0),($227|0),($176|0),($177|0))|0); - $229 = tempRet0; - $230 = (_i64Add(($228|0),($229|0),($172|0),($173|0))|0); - $231 = tempRet0; - $232 = (_i64Add(($230|0),($231|0),($164|0),($165|0))|0); - $233 = tempRet0; - $234 = (_i64Add(($84|0),($85|0),($106|0),($107|0))|0); - $235 = tempRet0; - $236 = (_i64Add(($234|0),($235|0),($56|0),($57|0))|0); - $237 = tempRet0; - $238 = (_i64Add(($236|0),($237|0),($178|0),($179|0))|0); - $239 = tempRet0; - $240 = (_i64Add(($238|0),($239|0),($174|0),($175|0))|0); - $241 = tempRet0; - $242 = (_i64Add(($122|0),($123|0),($108|0),($109|0))|0); - $243 = tempRet0; - $244 = (_i64Add(($242|0),($243|0),($88|0),($89|0))|0); - $245 = tempRet0; - $246 = (_i64Add(($244|0),($245|0),($60|0),($61|0))|0); - $247 = tempRet0; - $248 = (_i64Add(($246|0),($247|0),($182|0),($183|0))|0); - $249 = tempRet0; - $250 = (_i64Add(($248|0),($249|0),($180|0),($181|0))|0); - $251 = tempRet0; - $252 = (_i64Add(($110|0),($111|0),($124|0),($125|0))|0); - $253 = tempRet0; - $254 = (_i64Add(($252|0),($253|0),($90|0),($91|0))|0); - $255 = tempRet0; - $256 = (_i64Add(($254|0),($255|0),($64|0),($65|0))|0); - $257 = tempRet0; - $258 = (_i64Add(($256|0),($257|0),($184|0),($185|0))|0); - $259 = tempRet0; - $260 = (_i64Add(($112|0),($113|0),($138|0),($139|0))|0); - $261 = tempRet0; - $262 = (_i64Add(($260|0),($261|0),($126|0),($127|0))|0); - $263 = tempRet0; - $264 = (_i64Add(($262|0),($263|0),($94|0),($95|0))|0); - $265 = tempRet0; - $266 = (_i64Add(($264|0),($265|0),($68|0),($69|0))|0); - $267 = tempRet0; - $268 = (_i64Add(($266|0),($267|0),($186|0),($187|0))|0); - $269 = tempRet0; - $270 = (_i64Add(($128|0),($129|0),($142|0),($143|0))|0); - $271 = tempRet0; - $272 = (_i64Add(($270|0),($271|0),($114|0),($115|0))|0); - $273 = tempRet0; - $274 = (_i64Add(($272|0),($273|0),($96|0),($97|0))|0); - $275 = tempRet0; - $276 = (_i64Add(($274|0),($275|0),($72|0),($73|0))|0); - $277 = tempRet0; - $278 = (_bitshift64Shl(($196|0),($197|0),1)|0); - $279 = tempRet0; - $280 = (_bitshift64Shl(($204|0),($205|0),1)|0); - $281 = tempRet0; - $282 = (_bitshift64Shl(($214|0),($215|0),1)|0); - $283 = tempRet0; - $284 = (_bitshift64Shl(($222|0),($223|0),1)|0); - $285 = tempRet0; - $286 = (_bitshift64Shl(($232|0),($233|0),1)|0); - $287 = tempRet0; - $288 = (_bitshift64Shl(($240|0),($241|0),1)|0); - $289 = tempRet0; - $290 = (_bitshift64Shl(($250|0),($251|0),1)|0); - $291 = tempRet0; - $292 = (_bitshift64Shl(($258|0),($259|0),1)|0); - $293 = tempRet0; - $294 = (_bitshift64Shl(($268|0),($269|0),1)|0); - $295 = tempRet0; - $296 = (_bitshift64Shl(($276|0),($277|0),1)|0); - $297 = tempRet0; - $298 = (_i64Add(($278|0),($279|0),33554432,0)|0); - $299 = tempRet0; - $300 = (_bitshift64Ashr(($298|0),($299|0),26)|0); - $301 = tempRet0; - $302 = (_i64Add(($300|0),($301|0),($280|0),($281|0))|0); - $303 = tempRet0; - $304 = (_bitshift64Shl(($300|0),($301|0),26)|0); - $305 = tempRet0; - $306 = (_i64Subtract(($278|0),($279|0),($304|0),($305|0))|0); - $307 = tempRet0; - $308 = (_i64Add(($286|0),($287|0),33554432,0)|0); - $309 = tempRet0; - $310 = (_bitshift64Ashr(($308|0),($309|0),26)|0); - $311 = tempRet0; - $312 = (_i64Add(($310|0),($311|0),($288|0),($289|0))|0); - $313 = tempRet0; - $314 = (_bitshift64Shl(($310|0),($311|0),26)|0); - $315 = tempRet0; - $316 = (_i64Subtract(($286|0),($287|0),($314|0),($315|0))|0); - $317 = tempRet0; - $318 = (_i64Add(($302|0),($303|0),16777216,0)|0); - $319 = tempRet0; - $320 = (_bitshift64Ashr(($318|0),($319|0),25)|0); - $321 = tempRet0; - $322 = (_i64Add(($320|0),($321|0),($282|0),($283|0))|0); - $323 = tempRet0; - $324 = (_bitshift64Shl(($320|0),($321|0),25)|0); - $325 = tempRet0; - $326 = (_i64Subtract(($302|0),($303|0),($324|0),($325|0))|0); - $327 = tempRet0; - $328 = (_i64Add(($312|0),($313|0),16777216,0)|0); - $329 = tempRet0; - $330 = (_bitshift64Ashr(($328|0),($329|0),25)|0); - $331 = tempRet0; - $332 = (_i64Add(($330|0),($331|0),($290|0),($291|0))|0); - $333 = tempRet0; - $334 = (_bitshift64Shl(($330|0),($331|0),25)|0); - $335 = tempRet0; - $336 = (_i64Subtract(($312|0),($313|0),($334|0),($335|0))|0); - $337 = tempRet0; - $338 = (_i64Add(($322|0),($323|0),33554432,0)|0); - $339 = tempRet0; - $340 = (_bitshift64Ashr(($338|0),($339|0),26)|0); - $341 = tempRet0; - $342 = (_i64Add(($340|0),($341|0),($284|0),($285|0))|0); - $343 = tempRet0; - $344 = (_bitshift64Shl(($340|0),($341|0),26)|0); - $345 = tempRet0; - $346 = (_i64Subtract(($322|0),($323|0),($344|0),($345|0))|0); - $347 = tempRet0; - $348 = (_i64Add(($332|0),($333|0),33554432,0)|0); - $349 = tempRet0; - $350 = (_bitshift64Ashr(($348|0),($349|0),26)|0); - $351 = tempRet0; - $352 = (_i64Add(($350|0),($351|0),($292|0),($293|0))|0); - $353 = tempRet0; - $354 = (_bitshift64Shl(($350|0),($351|0),26)|0); - $355 = tempRet0; - $356 = (_i64Subtract(($332|0),($333|0),($354|0),($355|0))|0); - $357 = tempRet0; - $358 = (_i64Add(($342|0),($343|0),16777216,0)|0); - $359 = tempRet0; - $360 = (_bitshift64Ashr(($358|0),($359|0),25)|0); - $361 = tempRet0; - $362 = (_i64Add(($360|0),($361|0),($316|0),($317|0))|0); - $363 = tempRet0; - $364 = (_bitshift64Shl(($360|0),($361|0),25)|0); - $365 = tempRet0; - $366 = (_i64Subtract(($342|0),($343|0),($364|0),($365|0))|0); - $367 = tempRet0; - $368 = (_i64Add(($352|0),($353|0),16777216,0)|0); - $369 = tempRet0; - $370 = (_bitshift64Ashr(($368|0),($369|0),25)|0); - $371 = tempRet0; - $372 = (_i64Add(($370|0),($371|0),($294|0),($295|0))|0); - $373 = tempRet0; - $374 = (_bitshift64Shl(($370|0),($371|0),25)|0); - $375 = tempRet0; - $376 = (_i64Subtract(($352|0),($353|0),($374|0),($375|0))|0); - $377 = tempRet0; - $378 = (_i64Add(($362|0),($363|0),33554432,0)|0); - $379 = tempRet0; - $380 = (_bitshift64Ashr(($378|0),($379|0),26)|0); - $381 = tempRet0; - $382 = (_i64Add(($336|0),($337|0),($380|0),($381|0))|0); - $383 = tempRet0; - $384 = (_bitshift64Shl(($380|0),($381|0),26)|0); - $385 = tempRet0; - $386 = (_i64Subtract(($362|0),($363|0),($384|0),($385|0))|0); - $387 = tempRet0; - $388 = (_i64Add(($372|0),($373|0),33554432,0)|0); - $389 = tempRet0; - $390 = (_bitshift64Ashr(($388|0),($389|0),26)|0); - $391 = tempRet0; - $392 = (_i64Add(($390|0),($391|0),($296|0),($297|0))|0); - $393 = tempRet0; - $394 = (_bitshift64Shl(($390|0),($391|0),26)|0); - $395 = tempRet0; - $396 = (_i64Subtract(($372|0),($373|0),($394|0),($395|0))|0); - $397 = tempRet0; - $398 = (_i64Add(($392|0),($393|0),16777216,0)|0); + $398 = (_i64Subtract(($374|0),($375|0),($396|0),($397|0))|0); $399 = tempRet0; - $400 = (_bitshift64Ashr(($398|0),($399|0),25)|0); + $400 = (_i64Add(($394|0),($395|0),16777216,0)|0); $401 = tempRet0; - $402 = (___muldi3(($400|0),($401|0),19,0)|0); + $402 = (_bitshift64Ashr(($400|0),($401|0),25)|0); $403 = tempRet0; - $404 = (_i64Add(($402|0),($403|0),($306|0),($307|0))|0); + $404 = (___muldi3(($402|0),($403|0),19,0)|0); $405 = tempRet0; - $406 = (_bitshift64Shl(($400|0),($401|0),25)|0); + $406 = (_i64Add(($404|0),($405|0),($308|0),($309|0))|0); $407 = tempRet0; - $408 = (_i64Subtract(($392|0),($393|0),($406|0),($407|0))|0); + $408 = (_bitshift64Shl(($402|0),($403|0),25)|0); $409 = tempRet0; - $410 = (_i64Add(($404|0),($405|0),33554432,0)|0); + $410 = (_i64Subtract(($394|0),($395|0),($408|0),($409|0))|0); $411 = tempRet0; - $412 = (_bitshift64Ashr(($410|0),($411|0),26)|0); + $412 = (_i64Add(($406|0),($407|0),33554432,0)|0); $413 = tempRet0; - $414 = (_i64Add(($326|0),($327|0),($412|0),($413|0))|0); + $414 = (_bitshift64Ashr(($412|0),($413|0),26)|0); $415 = tempRet0; - $416 = (_bitshift64Shl(($412|0),($413|0),26)|0); + $416 = (_i64Add(($328|0),($329|0),($414|0),($415|0))|0); $417 = tempRet0; - $418 = (_i64Subtract(($404|0),($405|0),($416|0),($417|0))|0); + $418 = (_bitshift64Shl(($414|0),($415|0),26)|0); $419 = tempRet0; - HEAP32[$h>>2] = $418; - $420 = ((($h)) + 4|0); - HEAP32[$420>>2] = $414; - $421 = ((($h)) + 8|0); - HEAP32[$421>>2] = $346; - $422 = ((($h)) + 12|0); - HEAP32[$422>>2] = $366; - $423 = ((($h)) + 16|0); - HEAP32[$423>>2] = $386; - $424 = ((($h)) + 20|0); - HEAP32[$424>>2] = $382; - $425 = ((($h)) + 24|0); - HEAP32[$425>>2] = $356; - $426 = ((($h)) + 28|0); - HEAP32[$426>>2] = $376; - $427 = ((($h)) + 32|0); - HEAP32[$427>>2] = $396; - $428 = ((($h)) + 36|0); - HEAP32[$428>>2] = $408; + $420 = (_i64Subtract(($406|0),($407|0),($418|0),($419|0))|0); + $421 = tempRet0; + HEAP32[$0>>2] = $420; + $422 = ((($0)) + 4|0); + HEAP32[$422>>2] = $416; + $423 = ((($0)) + 8|0); + HEAP32[$423>>2] = $348; + $424 = ((($0)) + 12|0); + HEAP32[$424>>2] = $368; + $425 = ((($0)) + 16|0); + HEAP32[$425>>2] = $388; + $426 = ((($0)) + 20|0); + HEAP32[$426>>2] = $384; + $427 = ((($0)) + 24|0); + HEAP32[$427>>2] = $358; + $428 = ((($0)) + 28|0); + HEAP32[$428>>2] = $378; + $429 = ((($0)) + 32|0); + HEAP32[$429>>2] = $398; + $430 = ((($0)) + 36|0); + HEAP32[$430>>2] = $410; return; } -function _crypto_sign_ed25519_ref10_fe_sub($h,$f,$g) { - $h = $h|0; - $f = $f|0; - $g = $g|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; - var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_fe_sub($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0; + var $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0; + var $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); - $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); - $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); - $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); - $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); - $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); - $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); - $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); - $18 = HEAP32[$17>>2]|0; - $19 = HEAP32[$g>>2]|0; - $20 = ((($g)) + 4|0); + $3 = HEAP32[$1>>2]|0; + $4 = ((($1)) + 4|0); + $5 = HEAP32[$4>>2]|0; + $6 = ((($1)) + 8|0); + $7 = HEAP32[$6>>2]|0; + $8 = ((($1)) + 12|0); + $9 = HEAP32[$8>>2]|0; + $10 = ((($1)) + 16|0); + $11 = HEAP32[$10>>2]|0; + $12 = ((($1)) + 20|0); + $13 = HEAP32[$12>>2]|0; + $14 = ((($1)) + 24|0); + $15 = HEAP32[$14>>2]|0; + $16 = ((($1)) + 28|0); + $17 = HEAP32[$16>>2]|0; + $18 = ((($1)) + 32|0); + $19 = HEAP32[$18>>2]|0; + $20 = ((($1)) + 36|0); $21 = HEAP32[$20>>2]|0; - $22 = ((($g)) + 8|0); - $23 = HEAP32[$22>>2]|0; - $24 = ((($g)) + 12|0); - $25 = HEAP32[$24>>2]|0; - $26 = ((($g)) + 16|0); - $27 = HEAP32[$26>>2]|0; - $28 = ((($g)) + 20|0); - $29 = HEAP32[$28>>2]|0; - $30 = ((($g)) + 24|0); - $31 = HEAP32[$30>>2]|0; - $32 = ((($g)) + 28|0); - $33 = HEAP32[$32>>2]|0; - $34 = ((($g)) + 32|0); - $35 = HEAP32[$34>>2]|0; - $36 = ((($g)) + 36|0); - $37 = HEAP32[$36>>2]|0; - $38 = (($0) - ($19))|0; - $39 = (($2) - ($21))|0; - $40 = (($4) - ($23))|0; - $41 = (($6) - ($25))|0; - $42 = (($8) - ($27))|0; - $43 = (($10) - ($29))|0; - $44 = (($12) - ($31))|0; - $45 = (($14) - ($33))|0; - $46 = (($16) - ($35))|0; - $47 = (($18) - ($37))|0; - HEAP32[$h>>2] = $38; - $48 = ((($h)) + 4|0); - HEAP32[$48>>2] = $39; - $49 = ((($h)) + 8|0); - HEAP32[$49>>2] = $40; - $50 = ((($h)) + 12|0); - HEAP32[$50>>2] = $41; - $51 = ((($h)) + 16|0); + $22 = HEAP32[$2>>2]|0; + $23 = ((($2)) + 4|0); + $24 = HEAP32[$23>>2]|0; + $25 = ((($2)) + 8|0); + $26 = HEAP32[$25>>2]|0; + $27 = ((($2)) + 12|0); + $28 = HEAP32[$27>>2]|0; + $29 = ((($2)) + 16|0); + $30 = HEAP32[$29>>2]|0; + $31 = ((($2)) + 20|0); + $32 = HEAP32[$31>>2]|0; + $33 = ((($2)) + 24|0); + $34 = HEAP32[$33>>2]|0; + $35 = ((($2)) + 28|0); + $36 = HEAP32[$35>>2]|0; + $37 = ((($2)) + 32|0); + $38 = HEAP32[$37>>2]|0; + $39 = ((($2)) + 36|0); + $40 = HEAP32[$39>>2]|0; + $41 = (($3) - ($22))|0; + $42 = (($5) - ($24))|0; + $43 = (($7) - ($26))|0; + $44 = (($9) - ($28))|0; + $45 = (($11) - ($30))|0; + $46 = (($13) - ($32))|0; + $47 = (($15) - ($34))|0; + $48 = (($17) - ($36))|0; + $49 = (($19) - ($38))|0; + $50 = (($21) - ($40))|0; + HEAP32[$0>>2] = $41; + $51 = ((($0)) + 4|0); HEAP32[$51>>2] = $42; - $52 = ((($h)) + 20|0); + $52 = ((($0)) + 8|0); HEAP32[$52>>2] = $43; - $53 = ((($h)) + 24|0); + $53 = ((($0)) + 12|0); HEAP32[$53>>2] = $44; - $54 = ((($h)) + 28|0); + $54 = ((($0)) + 16|0); HEAP32[$54>>2] = $45; - $55 = ((($h)) + 32|0); + $55 = ((($0)) + 20|0); HEAP32[$55>>2] = $46; - $56 = ((($h)) + 36|0); + $56 = ((($0)) + 24|0); HEAP32[$56>>2] = $47; + $57 = ((($0)) + 28|0); + HEAP32[$57>>2] = $48; + $58 = ((($0)) + 32|0); + HEAP32[$58>>2] = $49; + $59 = ((($0)) + 36|0); + HEAP32[$59>>2] = $50; return; } -function _crypto_sign_ed25519_ref10_fe_tobytes($s,$h) { - $s = $s|0; - $h = $h|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0; +function _crypto_sign_ed25519_ref10_fe_tobytes($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0; var $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0; var $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0; var $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0; var $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP32[$h>>2]|0; - $1 = ((($h)) + 4|0); $2 = HEAP32[$1>>2]|0; - $3 = ((($h)) + 8|0); + $3 = ((($1)) + 4|0); $4 = HEAP32[$3>>2]|0; - $5 = ((($h)) + 12|0); + $5 = ((($1)) + 8|0); $6 = HEAP32[$5>>2]|0; - $7 = ((($h)) + 16|0); + $7 = ((($1)) + 12|0); $8 = HEAP32[$7>>2]|0; - $9 = ((($h)) + 20|0); + $9 = ((($1)) + 16|0); $10 = HEAP32[$9>>2]|0; - $11 = ((($h)) + 24|0); + $11 = ((($1)) + 20|0); $12 = HEAP32[$11>>2]|0; - $13 = ((($h)) + 28|0); + $13 = ((($1)) + 24|0); $14 = HEAP32[$13>>2]|0; - $15 = ((($h)) + 32|0); + $15 = ((($1)) + 28|0); $16 = HEAP32[$15>>2]|0; - $17 = ((($h)) + 36|0); + $17 = ((($1)) + 32|0); $18 = HEAP32[$17>>2]|0; - $19 = ($18*19)|0; - $20 = (($19) + 16777216)|0; - $21 = $20 >> 25; - $22 = (($21) + ($0))|0; - $23 = $22 >> 26; + $19 = ((($1)) + 36|0); + $20 = HEAP32[$19>>2]|0; + $21 = ($20*19)|0; + $22 = (($21) + 16777216)|0; + $23 = $22 >> 25; $24 = (($23) + ($2))|0; - $25 = $24 >> 25; + $25 = $24 >> 26; $26 = (($25) + ($4))|0; - $27 = $26 >> 26; + $27 = $26 >> 25; $28 = (($27) + ($6))|0; - $29 = $28 >> 25; + $29 = $28 >> 26; $30 = (($29) + ($8))|0; - $31 = $30 >> 26; + $31 = $30 >> 25; $32 = (($31) + ($10))|0; - $33 = $32 >> 25; + $33 = $32 >> 26; $34 = (($33) + ($12))|0; - $35 = $34 >> 26; + $35 = $34 >> 25; $36 = (($35) + ($14))|0; - $37 = $36 >> 25; + $37 = $36 >> 26; $38 = (($37) + ($16))|0; - $39 = $38 >> 26; + $39 = $38 >> 25; $40 = (($39) + ($18))|0; - $41 = $40 >> 25; - $42 = ($41*19)|0; - $43 = (($42) + ($0))|0; - $44 = $43 >> 26; + $41 = $40 >> 26; + $42 = (($41) + ($20))|0; + $43 = $42 >> 25; + $44 = ($43*19)|0; $45 = (($44) + ($2))|0; - $46 = $44 << 26; - $47 = (($43) - ($46))|0; - $48 = $45 >> 25; - $49 = (($48) + ($4))|0; - $50 = $48 << 25; - $51 = (($45) - ($50))|0; - $52 = $49 >> 26; - $53 = (($52) + ($6))|0; - $54 = $52 << 26; - $55 = (($49) - ($54))|0; - $56 = $53 >> 25; - $57 = (($56) + ($8))|0; - $58 = $56 << 25; - $59 = (($53) - ($58))|0; - $60 = $57 >> 26; - $61 = (($60) + ($10))|0; - $62 = $60 << 26; - $63 = (($57) - ($62))|0; - $64 = $61 >> 25; - $65 = (($64) + ($12))|0; - $66 = $64 << 25; - $67 = (($61) - ($66))|0; - $68 = $65 >> 26; - $69 = (($68) + ($14))|0; - $70 = $68 << 26; - $71 = (($65) - ($70))|0; - $72 = $69 >> 25; - $73 = (($72) + ($16))|0; - $74 = $72 << 25; - $75 = (($69) - ($74))|0; - $76 = $73 >> 26; - $77 = (($76) + ($18))|0; - $78 = $76 << 26; - $79 = (($73) - ($78))|0; - $80 = $77 & 33554431; - $81 = $47&255; - HEAP8[$s>>0] = $81; - $82 = $47 >>> 8; - $83 = $82&255; - $84 = ((($s)) + 1|0); - HEAP8[$84>>0] = $83; - $85 = $47 >>> 16; - $86 = $85&255; - $87 = ((($s)) + 2|0); - HEAP8[$87>>0] = $86; - $88 = $47 >>> 24; - $89 = $51 << 2; - $90 = $89 | $88; - $91 = $90&255; - $92 = ((($s)) + 3|0); - HEAP8[$92>>0] = $91; - $93 = $51 >>> 6; - $94 = $93&255; - $95 = ((($s)) + 4|0); - HEAP8[$95>>0] = $94; - $96 = $51 >>> 14; - $97 = $96&255; - $98 = ((($s)) + 5|0); - HEAP8[$98>>0] = $97; - $99 = $51 >>> 22; - $100 = $55 << 3; - $101 = $100 | $99; - $102 = $101&255; - $103 = ((($s)) + 6|0); - HEAP8[$103>>0] = $102; - $104 = $55 >>> 5; - $105 = $104&255; - $106 = ((($s)) + 7|0); - HEAP8[$106>>0] = $105; - $107 = $55 >>> 13; - $108 = $107&255; - $109 = ((($s)) + 8|0); - HEAP8[$109>>0] = $108; - $110 = $55 >>> 21; - $111 = $59 << 5; - $112 = $111 | $110; - $113 = $112&255; - $114 = ((($s)) + 9|0); - HEAP8[$114>>0] = $113; - $115 = $59 >>> 3; - $116 = $115&255; - $117 = ((($s)) + 10|0); - HEAP8[$117>>0] = $116; - $118 = $59 >>> 11; - $119 = $118&255; - $120 = ((($s)) + 11|0); - HEAP8[$120>>0] = $119; - $121 = $59 >>> 19; - $122 = $63 << 6; - $123 = $122 | $121; - $124 = $123&255; - $125 = ((($s)) + 12|0); - HEAP8[$125>>0] = $124; - $126 = $63 >>> 2; - $127 = $126&255; - $128 = ((($s)) + 13|0); - HEAP8[$128>>0] = $127; - $129 = $63 >>> 10; - $130 = $129&255; - $131 = ((($s)) + 14|0); - HEAP8[$131>>0] = $130; - $132 = $63 >>> 18; - $133 = $132&255; - $134 = ((($s)) + 15|0); - HEAP8[$134>>0] = $133; - $135 = $67&255; - $136 = ((($s)) + 16|0); + $46 = $45 >> 26; + $47 = (($46) + ($4))|0; + $48 = $46 << 26; + $49 = (($45) - ($48))|0; + $50 = $47 >> 25; + $51 = (($50) + ($6))|0; + $52 = $50 << 25; + $53 = (($47) - ($52))|0; + $54 = $51 >> 26; + $55 = (($54) + ($8))|0; + $56 = $54 << 26; + $57 = (($51) - ($56))|0; + $58 = $55 >> 25; + $59 = (($58) + ($10))|0; + $60 = $58 << 25; + $61 = (($55) - ($60))|0; + $62 = $59 >> 26; + $63 = (($62) + ($12))|0; + $64 = $62 << 26; + $65 = (($59) - ($64))|0; + $66 = $63 >> 25; + $67 = (($66) + ($14))|0; + $68 = $66 << 25; + $69 = (($63) - ($68))|0; + $70 = $67 >> 26; + $71 = (($70) + ($16))|0; + $72 = $70 << 26; + $73 = (($67) - ($72))|0; + $74 = $71 >> 25; + $75 = (($74) + ($18))|0; + $76 = $74 << 25; + $77 = (($71) - ($76))|0; + $78 = $75 >> 26; + $79 = (($78) + ($20))|0; + $80 = $78 << 26; + $81 = (($75) - ($80))|0; + $82 = $79 & 33554431; + $83 = $49&255; + HEAP8[$0>>0] = $83; + $84 = $49 >>> 8; + $85 = $84&255; + $86 = ((($0)) + 1|0); + HEAP8[$86>>0] = $85; + $87 = $49 >>> 16; + $88 = $87&255; + $89 = ((($0)) + 2|0); + HEAP8[$89>>0] = $88; + $90 = $49 >>> 24; + $91 = $53 << 2; + $92 = $91 | $90; + $93 = $92&255; + $94 = ((($0)) + 3|0); + HEAP8[$94>>0] = $93; + $95 = $53 >>> 6; + $96 = $95&255; + $97 = ((($0)) + 4|0); + HEAP8[$97>>0] = $96; + $98 = $53 >>> 14; + $99 = $98&255; + $100 = ((($0)) + 5|0); + HEAP8[$100>>0] = $99; + $101 = $53 >>> 22; + $102 = $57 << 3; + $103 = $102 | $101; + $104 = $103&255; + $105 = ((($0)) + 6|0); + HEAP8[$105>>0] = $104; + $106 = $57 >>> 5; + $107 = $106&255; + $108 = ((($0)) + 7|0); + HEAP8[$108>>0] = $107; + $109 = $57 >>> 13; + $110 = $109&255; + $111 = ((($0)) + 8|0); + HEAP8[$111>>0] = $110; + $112 = $57 >>> 21; + $113 = $61 << 5; + $114 = $113 | $112; + $115 = $114&255; + $116 = ((($0)) + 9|0); + HEAP8[$116>>0] = $115; + $117 = $61 >>> 3; + $118 = $117&255; + $119 = ((($0)) + 10|0); + HEAP8[$119>>0] = $118; + $120 = $61 >>> 11; + $121 = $120&255; + $122 = ((($0)) + 11|0); + HEAP8[$122>>0] = $121; + $123 = $61 >>> 19; + $124 = $65 << 6; + $125 = $124 | $123; + $126 = $125&255; + $127 = ((($0)) + 12|0); + HEAP8[$127>>0] = $126; + $128 = $65 >>> 2; + $129 = $128&255; + $130 = ((($0)) + 13|0); + HEAP8[$130>>0] = $129; + $131 = $65 >>> 10; + $132 = $131&255; + $133 = ((($0)) + 14|0); + HEAP8[$133>>0] = $132; + $134 = $65 >>> 18; + $135 = $134&255; + $136 = ((($0)) + 15|0); HEAP8[$136>>0] = $135; - $137 = $67 >>> 8; - $138 = $137&255; - $139 = ((($s)) + 17|0); - HEAP8[$139>>0] = $138; - $140 = $67 >>> 16; - $141 = $140&255; - $142 = ((($s)) + 18|0); - HEAP8[$142>>0] = $141; - $143 = $67 >>> 24; - $144 = $71 << 1; - $145 = $144 | $143; - $146 = $145&255; - $147 = ((($s)) + 19|0); - HEAP8[$147>>0] = $146; - $148 = $71 >>> 7; - $149 = $148&255; - $150 = ((($s)) + 20|0); - HEAP8[$150>>0] = $149; - $151 = $71 >>> 15; - $152 = $151&255; - $153 = ((($s)) + 21|0); - HEAP8[$153>>0] = $152; - $154 = $71 >>> 23; - $155 = $75 << 3; - $156 = $155 | $154; - $157 = $156&255; - $158 = ((($s)) + 22|0); - HEAP8[$158>>0] = $157; - $159 = $75 >>> 5; - $160 = $159&255; - $161 = ((($s)) + 23|0); - HEAP8[$161>>0] = $160; - $162 = $75 >>> 13; - $163 = $162&255; - $164 = ((($s)) + 24|0); - HEAP8[$164>>0] = $163; - $165 = $75 >>> 21; - $166 = $79 << 4; - $167 = $166 | $165; - $168 = $167&255; - $169 = ((($s)) + 25|0); - HEAP8[$169>>0] = $168; - $170 = $79 >>> 4; - $171 = $170&255; - $172 = ((($s)) + 26|0); - HEAP8[$172>>0] = $171; - $173 = $79 >>> 12; - $174 = $173&255; - $175 = ((($s)) + 27|0); - HEAP8[$175>>0] = $174; - $176 = $79 >>> 20; - $177 = $80 << 6; - $178 = $176 | $177; - $179 = $178&255; - $180 = ((($s)) + 28|0); - HEAP8[$180>>0] = $179; - $181 = $77 >>> 2; - $182 = $181&255; - $183 = ((($s)) + 29|0); - HEAP8[$183>>0] = $182; - $184 = $77 >>> 10; - $185 = $184&255; - $186 = ((($s)) + 30|0); - HEAP8[$186>>0] = $185; - $187 = $80 >>> 18; - $188 = $187&255; - $189 = ((($s)) + 31|0); - HEAP8[$189>>0] = $188; + $137 = $69&255; + $138 = ((($0)) + 16|0); + HEAP8[$138>>0] = $137; + $139 = $69 >>> 8; + $140 = $139&255; + $141 = ((($0)) + 17|0); + HEAP8[$141>>0] = $140; + $142 = $69 >>> 16; + $143 = $142&255; + $144 = ((($0)) + 18|0); + HEAP8[$144>>0] = $143; + $145 = $69 >>> 24; + $146 = $73 << 1; + $147 = $146 | $145; + $148 = $147&255; + $149 = ((($0)) + 19|0); + HEAP8[$149>>0] = $148; + $150 = $73 >>> 7; + $151 = $150&255; + $152 = ((($0)) + 20|0); + HEAP8[$152>>0] = $151; + $153 = $73 >>> 15; + $154 = $153&255; + $155 = ((($0)) + 21|0); + HEAP8[$155>>0] = $154; + $156 = $73 >>> 23; + $157 = $77 << 3; + $158 = $157 | $156; + $159 = $158&255; + $160 = ((($0)) + 22|0); + HEAP8[$160>>0] = $159; + $161 = $77 >>> 5; + $162 = $161&255; + $163 = ((($0)) + 23|0); + HEAP8[$163>>0] = $162; + $164 = $77 >>> 13; + $165 = $164&255; + $166 = ((($0)) + 24|0); + HEAP8[$166>>0] = $165; + $167 = $77 >>> 21; + $168 = $81 << 4; + $169 = $168 | $167; + $170 = $169&255; + $171 = ((($0)) + 25|0); + HEAP8[$171>>0] = $170; + $172 = $81 >>> 4; + $173 = $172&255; + $174 = ((($0)) + 26|0); + HEAP8[$174>>0] = $173; + $175 = $81 >>> 12; + $176 = $175&255; + $177 = ((($0)) + 27|0); + HEAP8[$177>>0] = $176; + $178 = $81 >>> 20; + $179 = $82 << 6; + $180 = $178 | $179; + $181 = $180&255; + $182 = ((($0)) + 28|0); + HEAP8[$182>>0] = $181; + $183 = $79 >>> 2; + $184 = $183&255; + $185 = ((($0)) + 29|0); + HEAP8[$185>>0] = $184; + $186 = $79 >>> 10; + $187 = $186&255; + $188 = ((($0)) + 30|0); + HEAP8[$188>>0] = $187; + $189 = $82 >>> 18; + $190 = $189&255; + $191 = ((($0)) + 31|0); + HEAP8[$191>>0] = $190; return; } -function _crypto_sign_ed25519_ref10_ge_add($r,$p,$q) { - $r = $r|0; - $p = $p|0; - $q = $q|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $t0 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_add($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 48|0; - $t0 = sp; - $0 = ((($p)) + 40|0); - _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); - $1 = ((($r)) + 40|0); - _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); - $2 = ((($r)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($2,$r,$q); - $3 = ((($q)) + 40|0); - _crypto_sign_ed25519_ref10_fe_mul($1,$1,$3); - $4 = ((($r)) + 120|0); - $5 = ((($q)) + 120|0); - $6 = ((($p)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); - $7 = ((($p)) + 80|0); - $8 = ((($q)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($r,$7,$8); - _crypto_sign_ed25519_ref10_fe_add($t0,$r,$r); - _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); - _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); - _crypto_sign_ed25519_ref10_fe_add($2,$t0,$4); - _crypto_sign_ed25519_ref10_fe_sub($4,$t0,$4); + $3 = sp; + $4 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($0,$4,$1); + $5 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($5,$4,$1); + $6 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($6,$0,$2); + $7 = ((($2)) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($5,$5,$7); + $8 = ((($0)) + 120|0); + $9 = ((($2)) + 120|0); + $10 = ((($1)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($8,$9,$10); + $11 = ((($1)) + 80|0); + $12 = ((($2)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($0,$11,$12); + _crypto_sign_ed25519_ref10_fe_add($3,$0,$0); + _crypto_sign_ed25519_ref10_fe_sub($0,$6,$5); + _crypto_sign_ed25519_ref10_fe_add($5,$6,$5); + _crypto_sign_ed25519_ref10_fe_add($6,$3,$8); + _crypto_sign_ed25519_ref10_fe_sub($8,$3,$8); STACKTOP = sp;return; } -function _crypto_sign_ed25519_ref10_ge_double_scalarmult_vartime($r,$a,$A,$b) { - $r = $r|0; - $a = $a|0; - $A = $A|0; - $b = $b|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $5 = 0, $6 = 0, $7 = 0; - var $8 = 0, $9 = 0, $A2 = 0, $Ai = 0, $aslide = 0, $bslide = 0, $i$0$lcssa = 0, $i$02 = 0, $i$11 = 0, $t = 0, $u = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_double_scalarmult_vartime($0,$1,$2,$3) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + var $$0$lcssa = 0, $$022 = 0, $$121 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0; + var $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 2272|0; - $aslide = sp + 2016|0; - $bslide = sp + 1760|0; - $Ai = sp + 480|0; - $t = sp + 320|0; - $u = sp + 160|0; - $A2 = sp; - _slide($aslide,$a); - _slide($bslide,$b); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($Ai,$A); - _crypto_sign_ed25519_ref10_ge_p3_dbl($t,$A); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($A2,$t); - _crypto_sign_ed25519_ref10_ge_add($t,$A2,$Ai); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $0 = ((($Ai)) + 160|0); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($0,$u); - _crypto_sign_ed25519_ref10_ge_add($t,$A2,$0); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $1 = ((($Ai)) + 320|0); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($1,$u); - _crypto_sign_ed25519_ref10_ge_add($t,$A2,$1); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $2 = ((($Ai)) + 480|0); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($2,$u); - _crypto_sign_ed25519_ref10_ge_add($t,$A2,$2); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $3 = ((($Ai)) + 640|0); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($3,$u); - _crypto_sign_ed25519_ref10_ge_add($t,$A2,$3); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $4 = ((($Ai)) + 800|0); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($4,$u); - _crypto_sign_ed25519_ref10_ge_add($t,$A2,$4); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $5 = ((($Ai)) + 960|0); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($5,$u); - _crypto_sign_ed25519_ref10_ge_add($t,$A2,$5); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $6 = ((($Ai)) + 1120|0); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($6,$u); - _crypto_sign_ed25519_ref10_ge_p2_0($r); - $i$02 = 255; + $4 = sp + 2016|0; + $5 = sp + 1760|0; + $6 = sp + 480|0; + $7 = sp + 320|0; + $8 = sp + 160|0; + $9 = sp; + _slide($4,$1); + _slide($5,$3); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($6,$2); + _crypto_sign_ed25519_ref10_ge_p3_dbl($7,$2); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($9,$7); + _crypto_sign_ed25519_ref10_ge_add($7,$9,$6); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $10 = ((($6)) + 160|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($10,$8); + _crypto_sign_ed25519_ref10_ge_add($7,$9,$10); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $11 = ((($6)) + 320|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($11,$8); + _crypto_sign_ed25519_ref10_ge_add($7,$9,$11); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $12 = ((($6)) + 480|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($12,$8); + _crypto_sign_ed25519_ref10_ge_add($7,$9,$12); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $13 = ((($6)) + 640|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($13,$8); + _crypto_sign_ed25519_ref10_ge_add($7,$9,$13); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $14 = ((($6)) + 800|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($14,$8); + _crypto_sign_ed25519_ref10_ge_add($7,$9,$14); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $15 = ((($6)) + 960|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($15,$8); + _crypto_sign_ed25519_ref10_ge_add($7,$9,$15); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $16 = ((($6)) + 1120|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($16,$8); + _crypto_sign_ed25519_ref10_ge_p2_0($0); + $$022 = 255; while(1) { - $7 = (($aslide) + ($i$02)|0); - $8 = HEAP8[$7>>0]|0; - $9 = ($8<<24>>24)==(0); - if (!($9)) { - $i$0$lcssa = $i$02; + $17 = (($4) + ($$022)|0); + $18 = HEAP8[$17>>0]|0; + $19 = ($18<<24>>24)==(0); + if (!($19)) { + $$0$lcssa = $$022; break; } - $10 = (($bslide) + ($i$02)|0); - $11 = HEAP8[$10>>0]|0; - $12 = ($11<<24>>24)==(0); - if (!($12)) { - $i$0$lcssa = $i$02; + $20 = (($5) + ($$022)|0); + $21 = HEAP8[$20>>0]|0; + $22 = ($21<<24>>24)==(0); + if (!($22)) { + $$0$lcssa = $$022; break; } - $14 = (($i$02) + -1)|0; - $15 = ($i$02|0)>(0); - if ($15) { - $i$02 = $14; + $24 = (($$022) + -1)|0; + $25 = ($$022|0)>(0); + if ($25) { + $$022 = $24; } else { - $i$0$lcssa = $14; + $$0$lcssa = $24; break; } } - $13 = ($i$0$lcssa|0)>(-1); - if ($13) { - $i$11 = $i$0$lcssa; + $23 = ($$0$lcssa|0)>(-1); + if ($23) { + $$121 = $$0$lcssa; } else { STACKTOP = sp;return; } while(1) { - _crypto_sign_ed25519_ref10_ge_p2_dbl($t,$r); - $16 = (($aslide) + ($i$11)|0); - $17 = HEAP8[$16>>0]|0; - $18 = ($17<<24>>24)>(0); - if ($18) { - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $19 = HEAP8[$16>>0]|0; - $20 = $19 << 24 >> 24; - $21 = (($20|0) / 2)&-1; - $22 = (($Ai) + (($21*160)|0)|0); - _crypto_sign_ed25519_ref10_ge_add($t,$u,$22); + _crypto_sign_ed25519_ref10_ge_p2_dbl($7,$0); + $26 = (($4) + ($$121)|0); + $27 = HEAP8[$26>>0]|0; + $28 = ($27<<24>>24)>(0); + if ($28) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $29 = HEAP8[$26>>0]|0; + $30 = (($29<<24>>24) / 2)&-1; + $31 = $30 << 24 >> 24; + $32 = (($6) + (($31*160)|0)|0); + _crypto_sign_ed25519_ref10_ge_add($7,$8,$32); } else { - $23 = ($17<<24>>24)<(0); - if ($23) { - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $24 = HEAP8[$16>>0]|0; - $25 = $24 << 24 >> 24; - $26 = (($25|0) / -2)&-1; - $27 = (($Ai) + (($26*160)|0)|0); - _crypto_sign_ed25519_ref10_ge_sub($t,$u,$27); + $33 = ($27<<24>>24)<(0); + if ($33) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $34 = HEAP8[$26>>0]|0; + $35 = (($34<<24>>24) / -2)&-1; + $36 = $35 << 24 >> 24; + $37 = (($6) + (($36*160)|0)|0); + _crypto_sign_ed25519_ref10_ge_sub($7,$8,$37); } } - $28 = (($bslide) + ($i$11)|0); - $29 = HEAP8[$28>>0]|0; - $30 = ($29<<24>>24)>(0); - if ($30) { - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $31 = HEAP8[$28>>0]|0; - $32 = $31 << 24 >> 24; - $33 = (($32|0) / 2)&-1; - $34 = (712 + (($33*120)|0)|0); - _crypto_sign_ed25519_ref10_ge_madd($t,$u,$34); + $38 = (($5) + ($$121)|0); + $39 = HEAP8[$38>>0]|0; + $40 = ($39<<24>>24)>(0); + if ($40) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $41 = HEAP8[$38>>0]|0; + $42 = (($41<<24>>24) / 2)&-1; + $43 = $42 << 24 >> 24; + $44 = (712 + (($43*120)|0)|0); + _crypto_sign_ed25519_ref10_ge_madd($7,$8,$44); } else { - $35 = ($29<<24>>24)<(0); - if ($35) { - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $36 = HEAP8[$28>>0]|0; - $37 = $36 << 24 >> 24; - $38 = (($37|0) / -2)&-1; - $39 = (712 + (($38*120)|0)|0); - _crypto_sign_ed25519_ref10_ge_msub($t,$u,$39); + $45 = ($39<<24>>24)<(0); + if ($45) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $46 = HEAP8[$38>>0]|0; + $47 = (($46<<24>>24) / -2)&-1; + $48 = $47 << 24 >> 24; + $49 = (712 + (($48*120)|0)|0); + _crypto_sign_ed25519_ref10_ge_msub($7,$8,$49); } } - _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($r,$t); - $40 = (($i$11) + -1)|0; - $41 = ($i$11|0)>(0); - if ($41) { - $i$11 = $40; + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($0,$7); + $50 = (($$121) + -1)|0; + $51 = ($$121|0)>(0); + if ($51) { + $$121 = $50; } else { break; } } STACKTOP = sp;return; } -function _slide($r,$a) { - $r = $r|0; - $a = $a|0; - var $$lcssa = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0; - var $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $b$03 = 0, $exitcond = 0, $exitcond9 = 0; - var $i$07 = 0, $i$14 = 0, $k$02 = 0, label = 0, sp = 0; +function _slide($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$05559 = 0, $$05663 = 0, $$058 = 0, $$160 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0; + var $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0; + var $exitcond = 0, $exitcond65 = 0, label = 0, sp = 0; sp = STACKTOP; - $i$07 = 0; + $$05663 = 0; while(1) { - $0 = $i$07 >> 3; - $1 = (($a) + ($0)|0); - $2 = HEAP8[$1>>0]|0; - $3 = $2&255; - $4 = $i$07 & 7; - $5 = $3 >>> $4; - $6 = $5 & 1; - $7 = $6&255; - $8 = (($r) + ($i$07)|0); - HEAP8[$8>>0] = $7; - $9 = (($i$07) + 1)|0; - $exitcond9 = ($9|0)==(256); - if ($exitcond9) { - $i$14 = 0; + $2 = $$05663 >> 3; + $3 = (($1) + ($2)|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = $$05663 & 7; + $7 = $5 >>> $6; + $8 = $7 & 1; + $9 = $8&255; + $10 = (($0) + ($$05663)|0); + HEAP8[$10>>0] = $9; + $11 = (($$05663) + 1)|0; + $exitcond65 = ($11|0)==(256); + if ($exitcond65) { + $$160 = 0; break; } else { - $i$07 = $9; + $$05663 = $11; } } while(1) { - $10 = (($r) + ($i$14)|0); - $11 = HEAP8[$10>>0]|0; - $12 = ($11<<24>>24)==(0); + $12 = (($0) + ($$160)|0); + $13 = HEAP8[$12>>0]|0; + $14 = ($13<<24>>24)==(0); L5: do { - if (!($12)) { - $b$03 = 1; + if (!($14)) { + $$05559 = 1; while(1) { - $13 = (($b$03) + ($i$14))|0; - $14 = ($13|0)<(256); - if (!($14)) { + $15 = (($$05559) + ($$160))|0; + $16 = ($15|0)<(256); + if (!($16)) { break L5; } - $15 = (($r) + ($13)|0); - $16 = HEAP8[$15>>0]|0; - $17 = ($16<<24>>24)==(0); + $17 = (($0) + ($15)|0); + $18 = HEAP8[$17>>0]|0; + $19 = ($18<<24>>24)==(0); L9: do { - if (!($17)) { - $18 = HEAP8[$10>>0]|0; - $19 = $18 << 24 >> 24; - $20 = $16 << 24 >> 24; - $21 = $20 << $b$03; - $22 = (($19) + ($21))|0; - $23 = ($22|0)<(16); - if ($23) { - $24 = $22&255; - HEAP8[$10>>0] = $24; - HEAP8[$15>>0] = 0; + if (!($19)) { + $20 = HEAP8[$12>>0]|0; + $21 = $20 << 24 >> 24; + $22 = $18 << 24 >> 24; + $23 = $22 << $$05559; + $24 = (($21) + ($23))|0; + $25 = ($24|0)<(16); + if ($25) { + $26 = $24&255; + HEAP8[$12>>0] = $26; + HEAP8[$17>>0] = 0; break; } - $25 = (($19) - ($21))|0; - $26 = ($25|0)>(-16); - if (!($26)) { + $27 = (($21) - ($23))|0; + $28 = ($27|0)>(-16); + if (!($28)) { break L5; } - $27 = $25&255; - HEAP8[$10>>0] = $27; - $k$02 = $13; + $29 = $27&255; + HEAP8[$12>>0] = $29; + $$058 = $15; while(1) { - $28 = (($r) + ($k$02)|0); - $29 = HEAP8[$28>>0]|0; - $30 = ($29<<24>>24)==(0); - if ($30) { - $$lcssa = $28; + $30 = (($0) + ($$058)|0); + $31 = HEAP8[$30>>0]|0; + $32 = ($31<<24>>24)==(0); + if ($32) { break; } - HEAP8[$28>>0] = 0; - $31 = (($k$02) + 1)|0; - $32 = ($31|0)<(256); - if ($32) { - $k$02 = $31; + HEAP8[$30>>0] = 0; + $33 = (($$058) + 1)|0; + $34 = ($33|0)<(256); + if ($34) { + $$058 = $33; } else { break L9; } } - HEAP8[$$lcssa>>0] = 1; + HEAP8[$30>>0] = 1; } } while(0); - $33 = (($b$03) + 1)|0; - $34 = ($33|0)<(7); - if ($34) { - $b$03 = $33; + $35 = (($$05559) + 1)|0; + $36 = ($35|0)<(7); + if ($36) { + $$05559 = $35; } else { break; } } } } while(0); - $35 = (($i$14) + 1)|0; - $exitcond = ($35|0)==(256); + $37 = (($$160) + 1)|0; + $exitcond = ($37|0)==(256); if ($exitcond) { break; } else { - $i$14 = $35; + $$160 = $37; } } return; } -function _crypto_sign_ed25519_ref10_ge_frombytes_negate_vartime($h,$s) { - $h = $h|0; - $s = $s|0; - var $$0 = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $check = 0, $u = 0, $v = 0, $v3 = 0, $vxx = 0, label = 0; +function _crypto_sign_ed25519_ref10_ge_frombytes_negate_vartime($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$0 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0; var sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 208|0; - $u = sp + 160|0; - $v = sp + 120|0; - $v3 = sp + 80|0; - $vxx = sp + 40|0; - $check = sp; - $0 = ((($h)) + 40|0); - _crypto_sign_ed25519_ref10_fe_frombytes($0,$s); - $1 = ((($h)) + 80|0); - _crypto_sign_ed25519_ref10_fe_1($1); - _crypto_sign_ed25519_ref10_fe_sq($u,$0); - _crypto_sign_ed25519_ref10_fe_mul($v,$u,1672); - _crypto_sign_ed25519_ref10_fe_sub($u,$u,$1); - _crypto_sign_ed25519_ref10_fe_add($v,$v,$1); - _crypto_sign_ed25519_ref10_fe_sq($v3,$v); - _crypto_sign_ed25519_ref10_fe_mul($v3,$v3,$v); - _crypto_sign_ed25519_ref10_fe_sq($h,$v3); - _crypto_sign_ed25519_ref10_fe_mul($h,$h,$v); - _crypto_sign_ed25519_ref10_fe_mul($h,$h,$u); - _crypto_sign_ed25519_ref10_fe_pow22523($h,$h); - _crypto_sign_ed25519_ref10_fe_mul($h,$h,$v3); - _crypto_sign_ed25519_ref10_fe_mul($h,$h,$u); - _crypto_sign_ed25519_ref10_fe_sq($vxx,$h); - _crypto_sign_ed25519_ref10_fe_mul($vxx,$vxx,$v); - _crypto_sign_ed25519_ref10_fe_sub($check,$vxx,$u); - $2 = (_crypto_sign_ed25519_ref10_fe_isnonzero($check)|0); - $3 = ($2|0)==(0); + $2 = sp + 160|0; + $3 = sp + 120|0; + $4 = sp + 80|0; + $5 = sp + 40|0; + $6 = sp; + $7 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_frombytes($7,$1); + $8 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_1($8); + _crypto_sign_ed25519_ref10_fe_sq($2,$7); + _crypto_sign_ed25519_ref10_fe_mul($3,$2,1672); + _crypto_sign_ed25519_ref10_fe_sub($2,$2,$8); + _crypto_sign_ed25519_ref10_fe_add($3,$3,$8); + _crypto_sign_ed25519_ref10_fe_sq($4,$3); + _crypto_sign_ed25519_ref10_fe_mul($4,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($0,$4); + _crypto_sign_ed25519_ref10_fe_mul($0,$0,$3); + _crypto_sign_ed25519_ref10_fe_mul($0,$0,$2); + _crypto_sign_ed25519_ref10_fe_pow22523($0,$0); + _crypto_sign_ed25519_ref10_fe_mul($0,$0,$4); + _crypto_sign_ed25519_ref10_fe_mul($0,$0,$2); + _crypto_sign_ed25519_ref10_fe_sq($5,$0); + _crypto_sign_ed25519_ref10_fe_mul($5,$5,$3); + _crypto_sign_ed25519_ref10_fe_sub($6,$5,$2); + $9 = (_crypto_sign_ed25519_ref10_fe_isnonzero($6)|0); + $10 = ($9|0)==(0); do { - if (!($3)) { - _crypto_sign_ed25519_ref10_fe_add($check,$vxx,$u); - $4 = (_crypto_sign_ed25519_ref10_fe_isnonzero($check)|0); - $5 = ($4|0)==(0); - if ($5) { - _crypto_sign_ed25519_ref10_fe_mul($h,$h,1712); + if (!($10)) { + _crypto_sign_ed25519_ref10_fe_add($6,$5,$2); + $11 = (_crypto_sign_ed25519_ref10_fe_isnonzero($6)|0); + $12 = ($11|0)==(0); + if ($12) { + _crypto_sign_ed25519_ref10_fe_mul($0,$0,1712); break; } else { $$0 = -1; @@ -15098,621 +11568,617 @@ function _crypto_sign_ed25519_ref10_ge_frombytes_negate_vartime($h,$s) { } } } while(0); - $6 = (_crypto_sign_ed25519_ref10_fe_isnegative($h)|0); - $7 = ((($s)) + 31|0); - $8 = HEAP8[$7>>0]|0; - $9 = $8&255; - $10 = $9 >>> 7; - $11 = ($6|0)==($10|0); - if ($11) { - _crypto_sign_ed25519_ref10_fe_neg($h,$h); + $13 = (_crypto_sign_ed25519_ref10_fe_isnegative($0)|0); + $14 = ((($1)) + 31|0); + $15 = HEAP8[$14>>0]|0; + $16 = $15&255; + $17 = $16 >>> 7; + $18 = ($13|0)==($17|0); + if ($18) { + _crypto_sign_ed25519_ref10_fe_neg($0,$0); } - $12 = ((($h)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($12,$h,$0); + $19 = ((($0)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($19,$0,$7); $$0 = 0; STACKTOP = sp;return ($$0|0); } -function _crypto_sign_ed25519_ref10_ge_madd($r,$p,$q) { - $r = $r|0; - $p = $p|0; - $q = $q|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $t0 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_madd($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 48|0; - $t0 = sp; - $0 = ((($p)) + 40|0); - _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); - $1 = ((($r)) + 40|0); - _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); - $2 = ((($r)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($2,$r,$q); - $3 = ((($q)) + 40|0); - _crypto_sign_ed25519_ref10_fe_mul($1,$1,$3); - $4 = ((($r)) + 120|0); - $5 = ((($q)) + 80|0); - $6 = ((($p)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); - $7 = ((($p)) + 80|0); - _crypto_sign_ed25519_ref10_fe_add($t0,$7,$7); - _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); - _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); - _crypto_sign_ed25519_ref10_fe_add($2,$t0,$4); - _crypto_sign_ed25519_ref10_fe_sub($4,$t0,$4); + $3 = sp; + $4 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($0,$4,$1); + $5 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($5,$4,$1); + $6 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($6,$0,$2); + $7 = ((($2)) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($5,$5,$7); + $8 = ((($0)) + 120|0); + $9 = ((($2)) + 80|0); + $10 = ((($1)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($8,$9,$10); + $11 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_add($3,$11,$11); + _crypto_sign_ed25519_ref10_fe_sub($0,$6,$5); + _crypto_sign_ed25519_ref10_fe_add($5,$6,$5); + _crypto_sign_ed25519_ref10_fe_add($6,$3,$8); + _crypto_sign_ed25519_ref10_fe_sub($8,$3,$8); STACKTOP = sp;return; } -function _crypto_sign_ed25519_ref10_ge_msub($r,$p,$q) { - $r = $r|0; - $p = $p|0; - $q = $q|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $t0 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_msub($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 48|0; - $t0 = sp; - $0 = ((($p)) + 40|0); - _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); - $1 = ((($r)) + 40|0); - _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); - $2 = ((($r)) + 80|0); - $3 = ((($q)) + 40|0); - _crypto_sign_ed25519_ref10_fe_mul($2,$r,$3); - _crypto_sign_ed25519_ref10_fe_mul($1,$1,$q); - $4 = ((($r)) + 120|0); - $5 = ((($q)) + 80|0); - $6 = ((($p)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); - $7 = ((($p)) + 80|0); - _crypto_sign_ed25519_ref10_fe_add($t0,$7,$7); - _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); - _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); - _crypto_sign_ed25519_ref10_fe_sub($2,$t0,$4); - _crypto_sign_ed25519_ref10_fe_add($4,$t0,$4); + $3 = sp; + $4 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($0,$4,$1); + $5 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($5,$4,$1); + $6 = ((($0)) + 80|0); + $7 = ((($2)) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($6,$0,$7); + _crypto_sign_ed25519_ref10_fe_mul($5,$5,$2); + $8 = ((($0)) + 120|0); + $9 = ((($2)) + 80|0); + $10 = ((($1)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($8,$9,$10); + $11 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_add($3,$11,$11); + _crypto_sign_ed25519_ref10_fe_sub($0,$6,$5); + _crypto_sign_ed25519_ref10_fe_add($5,$6,$5); + _crypto_sign_ed25519_ref10_fe_sub($6,$3,$8); + _crypto_sign_ed25519_ref10_fe_add($8,$3,$8); STACKTOP = sp;return; } -function _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($r,$p) { - $r = $r|0; - $p = $p|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = ((($p)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($r,$p,$0); - $1 = ((($r)) + 40|0); - $2 = ((($p)) + 40|0); - $3 = ((($p)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($1,$2,$3); - $4 = ((($r)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($4,$3,$0); + $2 = ((($1)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($0,$1,$2); + $3 = ((($0)) + 40|0); + $4 = ((($1)) + 40|0); + $5 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($3,$4,$5); + $6 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($6,$5,$2); return; } -function _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($r,$p) { - $r = $r|0; - $p = $p|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = ((($p)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($r,$p,$0); - $1 = ((($r)) + 40|0); - $2 = ((($p)) + 40|0); - $3 = ((($p)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($1,$2,$3); - $4 = ((($r)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($4,$3,$0); - $5 = ((($r)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($5,$p,$2); + $2 = ((($1)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($0,$1,$2); + $3 = ((($0)) + 40|0); + $4 = ((($1)) + 40|0); + $5 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($3,$4,$5); + $6 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($6,$5,$2); + $7 = ((($0)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($7,$1,$4); return; } -function _crypto_sign_ed25519_ref10_ge_p2_0($h) { - $h = $h|0; - var $0 = 0, $1 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_p2_0($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, label = 0, sp = 0; sp = STACKTOP; - _crypto_sign_ed25519_ref10_fe_0($h); - $0 = ((($h)) + 40|0); - _crypto_sign_ed25519_ref10_fe_1($0); - $1 = ((($h)) + 80|0); + _crypto_sign_ed25519_ref10_fe_0($0); + $1 = ((($0)) + 40|0); _crypto_sign_ed25519_ref10_fe_1($1); + $2 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_1($2); return; } -function _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$p) { - $r = $r|0; - $p = $p|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $t0 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_p2_dbl($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 48|0; - $t0 = sp; - _crypto_sign_ed25519_ref10_fe_sq($r,$p); - $0 = ((($r)) + 80|0); - $1 = ((($p)) + 40|0); + $2 = sp; _crypto_sign_ed25519_ref10_fe_sq($0,$1); - $2 = ((($r)) + 120|0); - $3 = ((($p)) + 80|0); - _crypto_sign_ed25519_ref10_fe_sq2($2,$3); - $4 = ((($r)) + 40|0); - _crypto_sign_ed25519_ref10_fe_add($4,$p,$1); - _crypto_sign_ed25519_ref10_fe_sq($t0,$4); - _crypto_sign_ed25519_ref10_fe_add($4,$0,$r); - _crypto_sign_ed25519_ref10_fe_sub($0,$0,$r); - _crypto_sign_ed25519_ref10_fe_sub($r,$t0,$4); - _crypto_sign_ed25519_ref10_fe_sub($2,$2,$0); + $3 = ((($0)) + 80|0); + $4 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_sq($3,$4); + $5 = ((($0)) + 120|0); + $6 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_sq2($5,$6); + $7 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($7,$1,$4); + _crypto_sign_ed25519_ref10_fe_sq($2,$7); + _crypto_sign_ed25519_ref10_fe_add($7,$3,$0); + _crypto_sign_ed25519_ref10_fe_sub($3,$3,$0); + _crypto_sign_ed25519_ref10_fe_sub($0,$2,$7); + _crypto_sign_ed25519_ref10_fe_sub($5,$5,$3); STACKTOP = sp;return; } -function _crypto_sign_ed25519_ref10_ge_p3_0($h) { - $h = $h|0; - var $0 = 0, $1 = 0, $2 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_p3_0($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, $3 = 0, label = 0, sp = 0; sp = STACKTOP; - _crypto_sign_ed25519_ref10_fe_0($h); - $0 = ((($h)) + 40|0); - _crypto_sign_ed25519_ref10_fe_1($0); - $1 = ((($h)) + 80|0); + _crypto_sign_ed25519_ref10_fe_0($0); + $1 = ((($0)) + 40|0); _crypto_sign_ed25519_ref10_fe_1($1); - $2 = ((($h)) + 120|0); - _crypto_sign_ed25519_ref10_fe_0($2); + $2 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_1($2); + $3 = ((($0)) + 120|0); + _crypto_sign_ed25519_ref10_fe_0($3); return; } -function _crypto_sign_ed25519_ref10_ge_p3_dbl($r,$p) { - $r = $r|0; - $p = $p|0; - var $q = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_p3_dbl($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 128|0; - $q = sp; - _crypto_sign_ed25519_ref10_ge_p3_to_p2($q,$p); - _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$q); + $2 = sp; + _crypto_sign_ed25519_ref10_ge_p3_to_p2($2,$1); + _crypto_sign_ed25519_ref10_ge_p2_dbl($0,$2); STACKTOP = sp;return; } -function _crypto_sign_ed25519_ref10_ge_p3_to_cached($r,$p) { - $r = $r|0; - $p = $p|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_p3_to_cached($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = ((($p)) + 40|0); - _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); - $1 = ((($r)) + 40|0); - _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); - $2 = ((($r)) + 80|0); - $3 = ((($p)) + 80|0); - _crypto_sign_ed25519_ref10_fe_copy($2,$3); - $4 = ((($r)) + 120|0); - $5 = ((($p)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($4,$5,1752); + $2 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($0,$2,$1); + $3 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($3,$2,$1); + $4 = ((($0)) + 80|0); + $5 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_copy($4,$5); + $6 = ((($0)) + 120|0); + $7 = ((($1)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($6,$7,1752); return; } -function _crypto_sign_ed25519_ref10_ge_p3_to_p2($r,$p) { - $r = $r|0; - $p = $p|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_p3_to_p2($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, label = 0, sp = 0; sp = STACKTOP; - _crypto_sign_ed25519_ref10_fe_copy($r,$p); - $0 = ((($r)) + 40|0); - $1 = ((($p)) + 40|0); _crypto_sign_ed25519_ref10_fe_copy($0,$1); - $2 = ((($r)) + 80|0); - $3 = ((($p)) + 80|0); + $2 = ((($0)) + 40|0); + $3 = ((($1)) + 40|0); _crypto_sign_ed25519_ref10_fe_copy($2,$3); + $4 = ((($0)) + 80|0); + $5 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_copy($4,$5); return; } -function _crypto_sign_ed25519_ref10_ge_p3_tobytes($s,$h) { - $s = $s|0; - $h = $h|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $recip = 0, $x = 0, $y = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_p3_tobytes($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 128|0; - $recip = sp + 80|0; - $x = sp + 40|0; - $y = sp; - $0 = ((($h)) + 80|0); - _crypto_sign_ed25519_ref10_fe_invert($recip,$0); - _crypto_sign_ed25519_ref10_fe_mul($x,$h,$recip); - $1 = ((($h)) + 40|0); - _crypto_sign_ed25519_ref10_fe_mul($y,$1,$recip); - _crypto_sign_ed25519_ref10_fe_tobytes($s,$y); - $2 = (_crypto_sign_ed25519_ref10_fe_isnegative($x)|0); - $3 = $2 << 7; - $4 = ((($s)) + 31|0); - $5 = HEAP8[$4>>0]|0; - $6 = $5&255; - $7 = $6 ^ $3; - $8 = $7&255; - HEAP8[$4>>0] = $8; + $2 = sp + 80|0; + $3 = sp + 40|0; + $4 = sp; + $5 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_invert($2,$5); + _crypto_sign_ed25519_ref10_fe_mul($3,$1,$2); + $6 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$6,$2); + _crypto_sign_ed25519_ref10_fe_tobytes($0,$4); + $7 = (_crypto_sign_ed25519_ref10_fe_isnegative($3)|0); + $8 = $7 << 7; + $9 = ((($0)) + 31|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = $11 ^ $8; + $13 = $12&255; + HEAP8[$9>>0] = $13; STACKTOP = sp;return; } -function _crypto_sign_ed25519_ref10_ge_precomp_0($h) { - $h = $h|0; - var $0 = 0, $1 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_precomp_0($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, label = 0, sp = 0; sp = STACKTOP; - _crypto_sign_ed25519_ref10_fe_1($h); - $0 = ((($h)) + 40|0); _crypto_sign_ed25519_ref10_fe_1($0); - $1 = ((($h)) + 80|0); - _crypto_sign_ed25519_ref10_fe_0($1); + $1 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_1($1); + $2 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_0($2); return; } -function _crypto_sign_ed25519_ref10_ge_scalarmult_base($h,$a) { - $h = $h|0; - $a = $a|0; - var $$lcssa = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0; - var $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $carry$04 = 0, $e = 0, $exitcond = 0; - var $exitcond7 = 0, $i$06 = 0, $i$15 = 0, $i$23 = 0, $i$32 = 0, $r = 0, $s = 0, $sext = 0, $sext1 = 0, $t = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_scalarmult_base($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$03135 = 0, $$037 = 0, $$136 = 0, $$234 = 0, $$333 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0; + var $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; + var $8 = 0, $9 = 0, $exitcond = 0, $exitcond38 = 0, $sext = 0, $sext32 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 464|0; - $e = sp + 400|0; - $r = sp + 240|0; - $s = sp + 120|0; - $t = sp; - $i$06 = 0; + $2 = sp + 400|0; + $3 = sp + 240|0; + $4 = sp + 120|0; + $5 = sp; + $$037 = 0; while(1) { - $0 = (($a) + ($i$06)|0); - $1 = HEAP8[$0>>0]|0; - $2 = $1&255; - $3 = $2 & 15; - $4 = $3&255; - $5 = $i$06 << 1; - $6 = (($e) + ($5)|0); - HEAP8[$6>>0] = $4; - $7 = HEAP8[$0>>0]|0; - $8 = ($7&255) >>> 4; - $9 = $5 | 1; - $10 = (($e) + ($9)|0); + $6 = (($1) + ($$037)|0); + $7 = HEAP8[$6>>0]|0; + $8 = $7 & 15; + $9 = $$037 << 1; + $10 = (($2) + ($9)|0); HEAP8[$10>>0] = $8; - $11 = (($i$06) + 1)|0; - $exitcond7 = ($11|0)==(32); - if ($exitcond7) { - $carry$04 = 0;$i$15 = 0; + $11 = ($7&255) >>> 4; + $12 = $9 | 1; + $13 = (($2) + ($12)|0); + HEAP8[$13>>0] = $11; + $14 = (($$037) + 1)|0; + $exitcond38 = ($14|0)==(32); + if ($exitcond38) { + $$03135 = 0;$$136 = 0; break; } else { - $i$06 = $11; + $$037 = $14; } } while(1) { - $12 = (($e) + ($i$15)|0); - $13 = HEAP8[$12>>0]|0; - $14 = $13&255; - $15 = (($14) + ($carry$04))|0; - $sext = $15 << 24; - $sext1 = (($sext) + 134217728)|0; - $16 = $sext1 >> 28; - $17 = $16 << 4; - $18 = (($15) - ($17))|0; - $19 = $18&255; - HEAP8[$12>>0] = $19; - $20 = (($i$15) + 1)|0; - $exitcond = ($20|0)==(63); + $15 = (($2) + ($$136)|0); + $16 = HEAP8[$15>>0]|0; + $17 = $16&255; + $18 = (($17) + ($$03135))|0; + $sext = $18 << 24; + $sext32 = (($sext) + 134217728)|0; + $19 = $sext32 >> 28; + $20 = $19 << 4; + $21 = (($18) - ($20))|0; + $22 = $21&255; + HEAP8[$15>>0] = $22; + $23 = (($$136) + 1)|0; + $exitcond = ($23|0)==(63); if ($exitcond) { - $$lcssa = $16; break; } else { - $carry$04 = $16;$i$15 = $20; + $$03135 = $19;$$136 = $23; } } - $21 = ((($e)) + 63|0); - $22 = HEAP8[$21>>0]|0; - $23 = $22&255; - $24 = (($23) + ($$lcssa))|0; - $25 = $24&255; - HEAP8[$21>>0] = $25; - _crypto_sign_ed25519_ref10_ge_p3_0($h); - $i$23 = 1; + $24 = ((($2)) + 63|0); + $25 = HEAP8[$24>>0]|0; + $26 = $25&255; + $27 = (($26) + ($19))|0; + $28 = $27&255; + HEAP8[$24>>0] = $28; + _crypto_sign_ed25519_ref10_ge_p3_0($0); + $$234 = 1; while(1) { - $26 = (($i$23|0) / 2)&-1; - $27 = (($e) + ($i$23)|0); - $28 = HEAP8[$27>>0]|0; - _select60($t,$26,$28); - _crypto_sign_ed25519_ref10_ge_madd($r,$h,$t); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($h,$r); - $29 = (($i$23) + 2)|0; - $30 = ($29|0)<(64); - if ($30) { - $i$23 = $29; + $29 = (($$234|0) / 2)&-1; + $30 = (($2) + ($$234)|0); + $31 = HEAP8[$30>>0]|0; + _select_60($5,$29,$31); + _crypto_sign_ed25519_ref10_ge_madd($3,$0,$5); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($0,$3); + $32 = (($$234) + 2)|0; + $33 = ($32|0)<(64); + if ($33) { + $$234 = $32; } else { break; } } - _crypto_sign_ed25519_ref10_ge_p3_dbl($r,$h); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($s,$r); - _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$s); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($s,$r); - _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$s); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($s,$r); - _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$s); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($h,$r); - $i$32 = 0; + _crypto_sign_ed25519_ref10_ge_p3_dbl($3,$0); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($4,$3); + _crypto_sign_ed25519_ref10_ge_p2_dbl($3,$4); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($4,$3); + _crypto_sign_ed25519_ref10_ge_p2_dbl($3,$4); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($4,$3); + _crypto_sign_ed25519_ref10_ge_p2_dbl($3,$4); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($0,$3); + $$333 = 0; while(1) { - $31 = (($i$32|0) / 2)&-1; - $32 = (($e) + ($i$32)|0); - $33 = HEAP8[$32>>0]|0; - _select60($t,$31,$33); - _crypto_sign_ed25519_ref10_ge_madd($r,$h,$t); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($h,$r); - $34 = (($i$32) + 2)|0; - $35 = ($34|0)<(64); - if ($35) { - $i$32 = $34; + $34 = (($$333|0) / 2)&-1; + $35 = (($2) + ($$333)|0); + $36 = HEAP8[$35>>0]|0; + _select_60($5,$34,$36); + _crypto_sign_ed25519_ref10_ge_madd($3,$0,$5); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($0,$3); + $37 = (($$333) + 2)|0; + $38 = ($37|0)<(64); + if ($38) { + $$333 = $37; } else { break; } } STACKTOP = sp;return; } -function _select60($t,$pos,$b) { - $t = $t|0; - $pos = $pos|0; - $b = $b|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $minust = 0, label = 0, sp = 0; +function _select_60($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0; + var $3 = 0, $30 = 0, $31 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 128|0; - $minust = sp; - $0 = (_negative($b)|0); - $1 = $b << 24 >> 24; - $2 = $0&255; - $3 = (0 - ($2))|0; - $4 = $1 & $3; - $5 = $4 << 1; - $6 = (($1) - ($5))|0; - $7 = $6&255; - _crypto_sign_ed25519_ref10_ge_precomp_0($t); - $8 = (1792 + (($pos*960)|0)|0); - $9 = (_equal($7,1)|0); - _cmov($t,$8,$9); - $10 = (((1792 + (($pos*960)|0)|0)) + 120|0); - $11 = (_equal($7,2)|0); - _cmov($t,$10,$11); - $12 = (((1792 + (($pos*960)|0)|0)) + 240|0); - $13 = (_equal($7,3)|0); - _cmov($t,$12,$13); - $14 = (((1792 + (($pos*960)|0)|0)) + 360|0); - $15 = (_equal($7,4)|0); - _cmov($t,$14,$15); - $16 = (((1792 + (($pos*960)|0)|0)) + 480|0); - $17 = (_equal($7,5)|0); - _cmov($t,$16,$17); - $18 = (((1792 + (($pos*960)|0)|0)) + 600|0); - $19 = (_equal($7,6)|0); - _cmov($t,$18,$19); - $20 = (((1792 + (($pos*960)|0)|0)) + 720|0); - $21 = (_equal($7,7)|0); - _cmov($t,$20,$21); - $22 = (((1792 + (($pos*960)|0)|0)) + 840|0); - $23 = (_equal($7,8)|0); - _cmov($t,$22,$23); - $24 = ((($t)) + 40|0); - _crypto_sign_ed25519_ref10_fe_copy($minust,$24); - $25 = ((($minust)) + 40|0); - _crypto_sign_ed25519_ref10_fe_copy($25,$t); - $26 = ((($minust)) + 80|0); - $27 = ((($t)) + 80|0); - _crypto_sign_ed25519_ref10_fe_neg($26,$27); - _cmov($t,$minust,$0); + $3 = sp; + $4 = (_negative($2)|0); + $5 = $2 << 24 >> 24; + $6 = $4&255; + $7 = (0 - ($6))|0; + $8 = $5 & $7; + $9 = $8 << 1; + $10 = (($5) - ($9))|0; + $11 = $10&255; + _crypto_sign_ed25519_ref10_ge_precomp_0($0); + $12 = (1792 + (($1*960)|0)|0); + $13 = (_equal($11,1)|0); + _cmov($0,$12,$13); + $14 = (((1792 + (($1*960)|0)|0)) + 120|0); + $15 = (_equal($11,2)|0); + _cmov($0,$14,$15); + $16 = (((1792 + (($1*960)|0)|0)) + 240|0); + $17 = (_equal($11,3)|0); + _cmov($0,$16,$17); + $18 = (((1792 + (($1*960)|0)|0)) + 360|0); + $19 = (_equal($11,4)|0); + _cmov($0,$18,$19); + $20 = (((1792 + (($1*960)|0)|0)) + 480|0); + $21 = (_equal($11,5)|0); + _cmov($0,$20,$21); + $22 = (((1792 + (($1*960)|0)|0)) + 600|0); + $23 = (_equal($11,6)|0); + _cmov($0,$22,$23); + $24 = (((1792 + (($1*960)|0)|0)) + 720|0); + $25 = (_equal($11,7)|0); + _cmov($0,$24,$25); + $26 = (((1792 + (($1*960)|0)|0)) + 840|0); + $27 = (_equal($11,8)|0); + _cmov($0,$26,$27); + $28 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_copy($3,$28); + $29 = ((($3)) + 40|0); + _crypto_sign_ed25519_ref10_fe_copy($29,$0); + $30 = ((($3)) + 80|0); + $31 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_neg($30,$31); + _cmov($0,$3,$4); STACKTOP = sp;return; } -function _negative($b) { - $b = $b|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, label = 0, sp = 0; +function _negative($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = $b << 24 >> 24; - $1 = ($0|0)<(0); - $2 = $1 << 31 >> 31; - $3 = (_bitshift64Lshr(($0|0),($2|0),63)|0); - $4 = tempRet0; - $5 = $3&255; - return ($5|0); + $1 = $0 << 24 >> 24; + $2 = ($1|0)<(0); + $3 = $2 << 31 >> 31; + $4 = (_bitshift64Lshr(($1|0),($3|0),63)|0); + $5 = tempRet0; + $6 = $4&255; + return ($6|0); } -function _equal($b,$c) { - $b = $b|0; - $c = $c|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; +function _equal($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = $c ^ $b; - $1 = $0&255; - $2 = (($1) + -1)|0; - $3 = $2 >>> 31; - $4 = $3&255; - return ($4|0); + $2 = $1 ^ $0; + $3 = $2&255; + $4 = (($3) + -1)|0; + $5 = $4 >>> 31; + $6 = $5&255; + return ($6|0); } -function _cmov($t,$u,$b) { - $t = $t|0; - $u = $u|0; - $b = $b|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; +function _cmov($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = $b&255; - _crypto_sign_ed25519_ref10_fe_cmov($t,$u,$0); - $1 = ((($t)) + 40|0); - $2 = ((($u)) + 40|0); - _crypto_sign_ed25519_ref10_fe_cmov($1,$2,$0); - $3 = ((($t)) + 80|0); - $4 = ((($u)) + 80|0); - _crypto_sign_ed25519_ref10_fe_cmov($3,$4,$0); + $3 = $2&255; + _crypto_sign_ed25519_ref10_fe_cmov($0,$1,$3); + $4 = ((($0)) + 40|0); + $5 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_cmov($4,$5,$3); + $6 = ((($0)) + 80|0); + $7 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_cmov($6,$7,$3); return; } -function _crypto_sign_ed25519_ref10_ge_sub($r,$p,$q) { - $r = $r|0; - $p = $p|0; - $q = $q|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $t0 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_sub($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 48|0; - $t0 = sp; - $0 = ((($p)) + 40|0); - _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); - $1 = ((($r)) + 40|0); - _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); - $2 = ((($r)) + 80|0); - $3 = ((($q)) + 40|0); - _crypto_sign_ed25519_ref10_fe_mul($2,$r,$3); - _crypto_sign_ed25519_ref10_fe_mul($1,$1,$q); - $4 = ((($r)) + 120|0); - $5 = ((($q)) + 120|0); - $6 = ((($p)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); - $7 = ((($p)) + 80|0); - $8 = ((($q)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($r,$7,$8); - _crypto_sign_ed25519_ref10_fe_add($t0,$r,$r); - _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); - _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); - _crypto_sign_ed25519_ref10_fe_sub($2,$t0,$4); - _crypto_sign_ed25519_ref10_fe_add($4,$t0,$4); + $3 = sp; + $4 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($0,$4,$1); + $5 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($5,$4,$1); + $6 = ((($0)) + 80|0); + $7 = ((($2)) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($6,$0,$7); + _crypto_sign_ed25519_ref10_fe_mul($5,$5,$2); + $8 = ((($0)) + 120|0); + $9 = ((($2)) + 120|0); + $10 = ((($1)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($8,$9,$10); + $11 = ((($1)) + 80|0); + $12 = ((($2)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($0,$11,$12); + _crypto_sign_ed25519_ref10_fe_add($3,$0,$0); + _crypto_sign_ed25519_ref10_fe_sub($0,$6,$5); + _crypto_sign_ed25519_ref10_fe_add($5,$6,$5); + _crypto_sign_ed25519_ref10_fe_sub($6,$3,$8); + _crypto_sign_ed25519_ref10_fe_add($8,$3,$8); STACKTOP = sp;return; } -function _crypto_sign_ed25519_ref10_ge_tobytes($s,$h) { - $s = $s|0; - $h = $h|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $recip = 0, $x = 0, $y = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_tobytes($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 128|0; - $recip = sp + 80|0; - $x = sp + 40|0; - $y = sp; - $0 = ((($h)) + 80|0); - _crypto_sign_ed25519_ref10_fe_invert($recip,$0); - _crypto_sign_ed25519_ref10_fe_mul($x,$h,$recip); - $1 = ((($h)) + 40|0); - _crypto_sign_ed25519_ref10_fe_mul($y,$1,$recip); - _crypto_sign_ed25519_ref10_fe_tobytes($s,$y); - $2 = (_crypto_sign_ed25519_ref10_fe_isnegative($x)|0); - $3 = $2 << 7; - $4 = ((($s)) + 31|0); - $5 = HEAP8[$4>>0]|0; - $6 = $5&255; - $7 = $6 ^ $3; - $8 = $7&255; - HEAP8[$4>>0] = $8; + $2 = sp + 80|0; + $3 = sp + 40|0; + $4 = sp; + $5 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_invert($2,$5); + _crypto_sign_ed25519_ref10_fe_mul($3,$1,$2); + $6 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$6,$2); + _crypto_sign_ed25519_ref10_fe_tobytes($0,$4); + $7 = (_crypto_sign_ed25519_ref10_fe_isnegative($3)|0); + $8 = $7 << 7; + $9 = ((($0)) + 31|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = $11 ^ $8; + $13 = $12&255; + HEAP8[$9>>0] = $13; STACKTOP = sp;return; } -function _crypto_sign_edwards25519sha512batch_ref10_open($m,$mlen,$sm,$0,$1,$pk) { - $m = $m|0; - $mlen = $mlen|0; - $sm = $sm|0; +function _crypto_sign_edwards25519sha512batch_ref10_open($0,$1,$2,$3,$4,$5) { $0 = $0|0; $1 = $1|0; - $pk = $pk|0; - var $$0 = 0, $$sum = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $A = 0, $R = 0, $h = 0, $pkcopy1 = 0, $rcheck = 0, $rcopy = 0, $scopy = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + $2 = $2|0; + $3 = $3|0; + $4 = $4|0; + $5 = $5|0; + var $$0 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; sp = STACKTOP; STACKTOP = STACKTOP + 480|0; - $pkcopy1 = sp + 440|0; - $rcopy = sp + 344|0; - $scopy = sp + 312|0; - $h = sp + 376|0; - $rcheck = sp + 280|0; - $A = sp + 120|0; - $R = sp; - $2 = ($1>>>0)<(0); - $3 = ($0>>>0)<(64); - $4 = ($1|0)==(0); - $5 = $4 & $3; - $6 = $2 | $5; - if (!($6)) { - $7 = ((($sm)) + 63|0); - $8 = HEAP8[$7>>0]|0; - $9 = ($8&255)>(31); - if (!($9)) { - $10 = (_crypto_sign_ed25519_ref10_ge_frombytes_negate_vartime($A,$pk)|0); - $11 = ($10|0)==(0); - if ($11) { - dest=$pkcopy1; src=$pk; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - dest=$rcopy; src=$sm; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - $12 = ((($sm)) + 32|0); - dest=$scopy; src=$12; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - _memmove(($m|0),($sm|0),($0|0))|0; - $13 = ((($m)) + 32|0); - dest=$13; src=$pkcopy1; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - (_crypto_hash_sha512_ref($h,$m,$0,$1)|0); - _crypto_sign_ed25519_ref10_sc_reduce($h); - _crypto_sign_ed25519_ref10_ge_double_scalarmult_vartime($R,$h,$A,$scopy); - _crypto_sign_ed25519_ref10_ge_tobytes($rcheck,$R); - $14 = (_crypto_verify_32_ref($rcheck,$rcopy)|0); - $15 = ($14|0)==(0); - if ($15) { - $16 = ((($m)) + 64|0); - $17 = (_i64Add(($0|0),($1|0),-64,-1)|0); - $18 = tempRet0; - _memmove(($m|0),($16|0),($17|0))|0; - $$sum = (($0) + -64)|0; - $19 = (($m) + ($$sum)|0); - dest=$19; stop=dest+64|0; do { HEAP8[dest>>0]=0|0; dest=dest+1|0; } while ((dest|0) < (stop|0)); - $20 = $mlen; - $21 = $20; - HEAP32[$21>>2] = $17; - $22 = (($20) + 4)|0; - $23 = $22; - HEAP32[$23>>2] = $18; + $6 = sp + 440|0; + $7 = sp + 408|0; + $8 = sp + 376|0; + $9 = sp + 312|0; + $10 = sp + 280|0; + $11 = sp + 120|0; + $12 = sp; + $13 = ($4>>>0)<(0); + $14 = ($3>>>0)<(64); + $15 = ($4|0)==(0); + $16 = $15 & $14; + $17 = $13 | $16; + if (!($17)) { + $18 = ((($2)) + 63|0); + $19 = HEAP8[$18>>0]|0; + $20 = ($19&255)>(31); + if (!($20)) { + $21 = (_crypto_sign_ed25519_ref10_ge_frombytes_negate_vartime($11,$5)|0); + $22 = ($21|0)==(0); + if ($22) { + dest=$6; src=$5; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + dest=$7; src=$2; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $23 = ((($2)) + 32|0); + dest=$8; src=$23; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _memmove(($0|0),($2|0),($3|0))|0; + $24 = ((($0)) + 32|0); + dest=$24; src=$6; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + (_crypto_hash_sha512_ref($9,$0,$3,$4)|0); + _crypto_sign_ed25519_ref10_sc_reduce($9); + _crypto_sign_ed25519_ref10_ge_double_scalarmult_vartime($12,$9,$11,$8); + _crypto_sign_ed25519_ref10_ge_tobytes($10,$12); + $25 = (_crypto_verify_32_ref($10,$7)|0); + $26 = ($25|0)==(0); + if ($26) { + $27 = ((($0)) + 64|0); + $28 = (_i64Add(($3|0),($4|0),-64,-1)|0); + $29 = tempRet0; + _memmove(($0|0),($27|0),($28|0))|0; + $30 = (($0) + ($3)|0); + $31 = ((($30)) + -64|0); + dest=$31; stop=dest+64|0; do { HEAP8[dest>>0]=0|0; dest=dest+1|0; } while ((dest|0) < (stop|0)); + $32 = $1; + $33 = $32; + HEAP32[$33>>2] = $28; + $34 = (($32) + 4)|0; + $35 = $34; + HEAP32[$35>>2] = $29; $$0 = 0; STACKTOP = sp;return ($$0|0); } } } } - $24 = $mlen; - $25 = $24; - HEAP32[$25>>2] = -1; - $26 = (($24) + 4)|0; - $27 = $26; - HEAP32[$27>>2] = -1; - _memset(($m|0),0,($0|0))|0; + $36 = $1; + $37 = $36; + HEAP32[$37>>2] = -1; + $38 = (($36) + 4)|0; + $39 = $38; + HEAP32[$39>>2] = -1; + _memset(($0|0),0,($3|0))|0; $$0 = -1; STACKTOP = sp;return ($$0|0); } -function _crypto_sign_ed25519_ref10_sc_muladd($s,$a,$b,$c) { - $s = $s|0; - $a = $a|0; - $b = $b|0; - $c = $c|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; - var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0; - var $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0; - var $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0; - var $107 = 0, $1070 = 0, $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0; - var $1088 = 0, $1089 = 0, $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0; - var $1105 = 0, $1106 = 0, $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $1119 = 0, $112 = 0, $1120 = 0, $1121 = 0, $1122 = 0; - var $1123 = 0, $1124 = 0, $1125 = 0, $1126 = 0, $1127 = 0, $1128 = 0, $1129 = 0, $113 = 0, $1130 = 0, $1131 = 0, $1132 = 0, $1133 = 0, $1134 = 0, $1135 = 0, $1136 = 0, $1137 = 0, $1138 = 0, $1139 = 0, $114 = 0, $1140 = 0; - var $1141 = 0, $1142 = 0, $1143 = 0, $1144 = 0, $1145 = 0, $1146 = 0, $1147 = 0, $1148 = 0, $1149 = 0, $115 = 0, $1150 = 0, $1151 = 0, $1152 = 0, $1153 = 0, $1154 = 0, $1155 = 0, $1156 = 0, $1157 = 0, $1158 = 0, $1159 = 0; - var $116 = 0, $1160 = 0, $1161 = 0, $1162 = 0, $1163 = 0, $1164 = 0, $1165 = 0, $1166 = 0, $1167 = 0, $1168 = 0, $1169 = 0, $117 = 0, $1170 = 0, $1171 = 0, $1172 = 0, $1173 = 0, $1174 = 0, $1175 = 0, $1176 = 0, $1177 = 0; - var $1178 = 0, $1179 = 0, $118 = 0, $1180 = 0, $1181 = 0, $1182 = 0, $1183 = 0, $1184 = 0, $1185 = 0, $1186 = 0, $1187 = 0, $1188 = 0, $1189 = 0, $119 = 0, $1190 = 0, $1191 = 0, $1192 = 0, $1193 = 0, $1194 = 0, $1195 = 0; - var $1196 = 0, $1197 = 0, $1198 = 0, $1199 = 0, $12 = 0, $120 = 0, $1200 = 0, $1201 = 0, $1202 = 0, $1203 = 0, $1204 = 0, $1205 = 0, $1206 = 0, $1207 = 0, $1208 = 0, $1209 = 0, $121 = 0, $1210 = 0, $1211 = 0, $1212 = 0; - var $1213 = 0, $1214 = 0, $1215 = 0, $1216 = 0, $1217 = 0, $1218 = 0, $1219 = 0, $122 = 0, $1220 = 0, $1221 = 0, $1222 = 0, $1223 = 0, $1224 = 0, $1225 = 0, $1226 = 0, $1227 = 0, $1228 = 0, $1229 = 0, $123 = 0, $1230 = 0; - var $1231 = 0, $1232 = 0, $1233 = 0, $1234 = 0, $1235 = 0, $1236 = 0, $1237 = 0, $1238 = 0, $1239 = 0, $124 = 0, $1240 = 0, $1241 = 0, $1242 = 0, $1243 = 0, $1244 = 0, $1245 = 0, $1246 = 0, $1247 = 0, $1248 = 0, $1249 = 0; - var $125 = 0, $1250 = 0, $1251 = 0, $1252 = 0, $1253 = 0, $1254 = 0, $1255 = 0, $1256 = 0, $1257 = 0, $1258 = 0, $1259 = 0, $126 = 0, $1260 = 0, $1261 = 0, $1262 = 0, $1263 = 0, $1264 = 0, $1265 = 0, $1266 = 0, $1267 = 0; - var $1268 = 0, $1269 = 0, $127 = 0, $1270 = 0, $1271 = 0, $1272 = 0, $1273 = 0, $1274 = 0, $1275 = 0, $1276 = 0, $1277 = 0, $1278 = 0, $1279 = 0, $128 = 0, $1280 = 0, $1281 = 0, $1282 = 0, $1283 = 0, $1284 = 0, $1285 = 0; - var $1286 = 0, $1287 = 0, $1288 = 0, $1289 = 0, $129 = 0, $1290 = 0, $1291 = 0, $1292 = 0, $1293 = 0, $1294 = 0, $1295 = 0, $1296 = 0, $1297 = 0, $1298 = 0, $1299 = 0, $13 = 0, $130 = 0, $1300 = 0, $1301 = 0, $1302 = 0; - var $1303 = 0, $1304 = 0, $1305 = 0, $1306 = 0, $1307 = 0, $1308 = 0, $1309 = 0, $131 = 0, $1310 = 0, $1311 = 0, $1312 = 0, $1313 = 0, $1314 = 0, $1315 = 0, $1316 = 0, $1317 = 0, $1318 = 0, $1319 = 0, $132 = 0, $1320 = 0; - var $1321 = 0, $1322 = 0, $1323 = 0, $1324 = 0, $1325 = 0, $1326 = 0, $1327 = 0, $1328 = 0, $1329 = 0, $133 = 0, $1330 = 0, $1331 = 0, $1332 = 0, $1333 = 0, $1334 = 0, $1335 = 0, $1336 = 0, $1337 = 0, $1338 = 0, $1339 = 0; - var $134 = 0, $1340 = 0, $1341 = 0, $1342 = 0, $1343 = 0, $1344 = 0, $1345 = 0, $1346 = 0, $1347 = 0, $1348 = 0, $1349 = 0, $135 = 0, $1350 = 0, $1351 = 0, $1352 = 0, $1353 = 0, $1354 = 0, $1355 = 0, $1356 = 0, $1357 = 0; - var $1358 = 0, $1359 = 0, $136 = 0, $1360 = 0, $1361 = 0, $1362 = 0, $1363 = 0, $1364 = 0, $1365 = 0, $1366 = 0, $1367 = 0, $1368 = 0, $1369 = 0, $137 = 0, $1370 = 0, $1371 = 0, $1372 = 0, $1373 = 0, $1374 = 0, $1375 = 0; - var $1376 = 0, $1377 = 0, $1378 = 0, $1379 = 0, $138 = 0, $1380 = 0, $1381 = 0, $1382 = 0, $1383 = 0, $1384 = 0, $1385 = 0, $1386 = 0, $1387 = 0, $1388 = 0, $1389 = 0, $139 = 0, $1390 = 0, $1391 = 0, $1392 = 0, $1393 = 0; - var $1394 = 0, $1395 = 0, $1396 = 0, $1397 = 0, $1398 = 0, $1399 = 0, $14 = 0, $140 = 0, $1400 = 0, $1401 = 0, $1402 = 0, $1403 = 0, $1404 = 0, $1405 = 0, $1406 = 0, $1407 = 0, $1408 = 0, $1409 = 0, $141 = 0, $1410 = 0; - var $1411 = 0, $1412 = 0, $1413 = 0, $1414 = 0, $1415 = 0, $1416 = 0, $1417 = 0, $1418 = 0, $1419 = 0, $142 = 0, $1420 = 0, $1421 = 0, $1422 = 0, $1423 = 0, $1424 = 0, $1425 = 0, $1426 = 0, $1427 = 0, $1428 = 0, $1429 = 0; - var $143 = 0, $1430 = 0, $1431 = 0, $1432 = 0, $1433 = 0, $1434 = 0, $1435 = 0, $1436 = 0, $1437 = 0, $1438 = 0, $1439 = 0, $144 = 0, $1440 = 0, $1441 = 0, $1442 = 0, $1443 = 0, $1444 = 0, $1445 = 0, $1446 = 0, $1447 = 0; - var $1448 = 0, $1449 = 0, $145 = 0, $1450 = 0, $1451 = 0, $1452 = 0, $1453 = 0, $1454 = 0, $1455 = 0, $1456 = 0, $1457 = 0, $1458 = 0, $1459 = 0, $146 = 0, $1460 = 0, $1461 = 0, $1462 = 0, $1463 = 0, $1464 = 0, $1465 = 0; - var $1466 = 0, $1467 = 0, $1468 = 0, $1469 = 0, $147 = 0, $1470 = 0, $1471 = 0, $1472 = 0, $1473 = 0, $1474 = 0, $1475 = 0, $1476 = 0, $1477 = 0, $1478 = 0, $1479 = 0, $148 = 0, $1480 = 0, $1481 = 0, $1482 = 0, $1483 = 0; - var $1484 = 0, $1485 = 0, $1486 = 0, $1487 = 0, $1488 = 0, $1489 = 0, $149 = 0, $1490 = 0, $1491 = 0, $1492 = 0, $1493 = 0, $1494 = 0, $1495 = 0, $1496 = 0, $1497 = 0, $1498 = 0, $1499 = 0, $15 = 0, $150 = 0, $1500 = 0; - var $1501 = 0, $1502 = 0, $1503 = 0, $1504 = 0, $1505 = 0, $1506 = 0, $1507 = 0, $1508 = 0, $1509 = 0, $151 = 0, $1510 = 0, $1511 = 0, $1512 = 0, $1513 = 0, $1514 = 0, $1515 = 0, $1516 = 0, $1517 = 0, $1518 = 0, $1519 = 0; - var $152 = 0, $1520 = 0, $1521 = 0, $1522 = 0, $1523 = 0, $1524 = 0, $1525 = 0, $1526 = 0, $1527 = 0, $1528 = 0, $1529 = 0, $153 = 0, $1530 = 0, $1531 = 0, $1532 = 0, $1533 = 0, $1534 = 0, $1535 = 0, $1536 = 0, $1537 = 0; - var $1538 = 0, $1539 = 0, $154 = 0, $1540 = 0, $1541 = 0, $1542 = 0, $1543 = 0, $1544 = 0, $1545 = 0, $1546 = 0, $1547 = 0, $1548 = 0, $1549 = 0, $155 = 0, $1550 = 0, $1551 = 0, $1552 = 0, $1553 = 0, $1554 = 0, $1555 = 0; - var $1556 = 0, $1557 = 0, $1558 = 0, $1559 = 0, $156 = 0, $1560 = 0, $1561 = 0, $1562 = 0, $1563 = 0, $1564 = 0, $1565 = 0, $1566 = 0, $1567 = 0, $1568 = 0, $1569 = 0, $157 = 0, $1570 = 0, $1571 = 0, $1572 = 0, $1573 = 0; - var $1574 = 0, $1575 = 0, $1576 = 0, $1577 = 0, $1578 = 0, $1579 = 0, $158 = 0, $1580 = 0, $1581 = 0, $1582 = 0, $1583 = 0, $1584 = 0, $1585 = 0, $1586 = 0, $1587 = 0, $1588 = 0, $1589 = 0, $159 = 0, $1590 = 0, $1591 = 0; - var $1592 = 0, $1593 = 0, $1594 = 0, $1595 = 0, $1596 = 0, $1597 = 0, $1598 = 0, $1599 = 0, $16 = 0, $160 = 0, $1600 = 0, $1601 = 0, $1602 = 0, $1603 = 0, $1604 = 0, $1605 = 0, $1606 = 0, $1607 = 0, $1608 = 0, $1609 = 0; - var $161 = 0, $1610 = 0, $1611 = 0, $1612 = 0, $1613 = 0, $1614 = 0, $1615 = 0, $1616 = 0, $1617 = 0, $1618 = 0, $1619 = 0, $162 = 0, $1620 = 0, $1621 = 0, $1622 = 0, $1623 = 0, $1624 = 0, $1625 = 0, $1626 = 0, $1627 = 0; - var $1628 = 0, $1629 = 0, $163 = 0, $1630 = 0, $1631 = 0, $1632 = 0, $1633 = 0, $1634 = 0, $1635 = 0, $1636 = 0, $1637 = 0, $1638 = 0, $1639 = 0, $164 = 0, $1640 = 0, $1641 = 0, $1642 = 0, $1643 = 0, $1644 = 0, $1645 = 0; - var $1646 = 0, $1647 = 0, $1648 = 0, $1649 = 0, $165 = 0, $1650 = 0, $1651 = 0, $1652 = 0, $1653 = 0, $1654 = 0, $1655 = 0, $1656 = 0, $1657 = 0, $1658 = 0, $1659 = 0, $166 = 0, $1660 = 0, $1661 = 0, $1662 = 0, $1663 = 0; - var $1664 = 0, $1665 = 0, $1666 = 0, $1667 = 0, $1668 = 0, $1669 = 0, $167 = 0, $1670 = 0, $1671 = 0, $1672 = 0, $1673 = 0, $1674 = 0, $1675 = 0, $1676 = 0, $1677 = 0, $1678 = 0, $1679 = 0, $168 = 0, $1680 = 0, $1681 = 0; - var $1682 = 0, $1683 = 0, $1684 = 0, $1685 = 0, $1686 = 0, $1687 = 0, $1688 = 0, $1689 = 0, $169 = 0, $1690 = 0, $1691 = 0, $1692 = 0, $1693 = 0, $1694 = 0, $1695 = 0, $1696 = 0, $1697 = 0, $1698 = 0, $1699 = 0, $17 = 0; - var $170 = 0, $1700 = 0, $1701 = 0, $1702 = 0, $1703 = 0, $1704 = 0, $1705 = 0, $1706 = 0, $1707 = 0, $1708 = 0, $1709 = 0, $171 = 0, $1710 = 0, $1711 = 0, $1712 = 0, $1713 = 0, $1714 = 0, $1715 = 0, $1716 = 0, $1717 = 0; - var $1718 = 0, $1719 = 0, $172 = 0, $1720 = 0, $1721 = 0, $1722 = 0, $1723 = 0, $1724 = 0, $1725 = 0, $1726 = 0, $1727 = 0, $1728 = 0, $1729 = 0, $173 = 0, $1730 = 0, $1731 = 0, $1732 = 0, $1733 = 0, $1734 = 0, $1735 = 0; - var $1736 = 0, $1737 = 0, $1738 = 0, $1739 = 0, $174 = 0, $1740 = 0, $1741 = 0, $1742 = 0, $1743 = 0, $1744 = 0, $1745 = 0, $1746 = 0, $1747 = 0, $1748 = 0, $1749 = 0, $175 = 0, $1750 = 0, $1751 = 0, $1752 = 0, $1753 = 0; - var $1754 = 0, $1755 = 0, $1756 = 0, $1757 = 0, $1758 = 0, $1759 = 0, $176 = 0, $1760 = 0, $1761 = 0, $1762 = 0, $1763 = 0, $1764 = 0, $1765 = 0, $1766 = 0, $1767 = 0, $1768 = 0, $1769 = 0, $177 = 0, $1770 = 0, $1771 = 0; - var $1772 = 0, $1773 = 0, $1774 = 0, $1775 = 0, $1776 = 0, $1777 = 0, $1778 = 0, $1779 = 0, $178 = 0, $1780 = 0, $1781 = 0, $1782 = 0, $1783 = 0, $1784 = 0, $1785 = 0, $1786 = 0, $1787 = 0, $1788 = 0, $1789 = 0, $179 = 0; - var $1790 = 0, $1791 = 0, $1792 = 0, $1793 = 0, $1794 = 0, $1795 = 0, $1796 = 0, $1797 = 0, $1798 = 0, $1799 = 0, $18 = 0, $180 = 0, $1800 = 0, $1801 = 0, $1802 = 0, $1803 = 0, $1804 = 0, $1805 = 0, $1806 = 0, $1807 = 0; - var $1808 = 0, $1809 = 0, $181 = 0, $1810 = 0, $1811 = 0, $1812 = 0, $1813 = 0, $1814 = 0, $1815 = 0, $1816 = 0, $1817 = 0, $1818 = 0, $1819 = 0, $182 = 0, $1820 = 0, $1821 = 0, $1822 = 0, $1823 = 0, $1824 = 0, $1825 = 0; - var $1826 = 0, $1827 = 0, $1828 = 0, $1829 = 0, $183 = 0, $1830 = 0, $1831 = 0, $1832 = 0, $1833 = 0, $1834 = 0, $1835 = 0, $1836 = 0, $1837 = 0, $1838 = 0, $1839 = 0, $184 = 0, $1840 = 0, $1841 = 0, $1842 = 0, $1843 = 0; - var $1844 = 0, $1845 = 0, $1846 = 0, $1847 = 0, $1848 = 0, $1849 = 0, $185 = 0, $1850 = 0, $1851 = 0, $1852 = 0, $1853 = 0, $1854 = 0, $1855 = 0, $1856 = 0, $1857 = 0, $1858 = 0, $1859 = 0, $186 = 0, $1860 = 0, $1861 = 0; - var $1862 = 0, $1863 = 0, $1864 = 0, $1865 = 0, $1866 = 0, $1867 = 0, $1868 = 0, $1869 = 0, $187 = 0, $1870 = 0, $1871 = 0, $1872 = 0, $1873 = 0, $1874 = 0, $1875 = 0, $1876 = 0, $1877 = 0, $1878 = 0, $188 = 0, $189 = 0; - var $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0; - var $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0; - var $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0; - var $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0; - var $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0; - var $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0; - var $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0; +function _crypto_sign_ed25519_ref10_sc_muladd($0,$1,$2,$3) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + var $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0, $1015 = 0, $1016 = 0; + var $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0, $1033 = 0, $1034 = 0; + var $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0, $1051 = 0, $1052 = 0; + var $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0, $107 = 0, $1070 = 0; + var $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0, $1088 = 0, $1089 = 0; + var $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0, $1105 = 0, $1106 = 0; + var $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $1119 = 0, $112 = 0, $1120 = 0, $1121 = 0, $1122 = 0, $1123 = 0, $1124 = 0; + var $1125 = 0, $1126 = 0, $1127 = 0, $1128 = 0, $1129 = 0, $113 = 0, $1130 = 0, $1131 = 0, $1132 = 0, $1133 = 0, $1134 = 0, $1135 = 0, $1136 = 0, $1137 = 0, $1138 = 0, $1139 = 0, $114 = 0, $1140 = 0, $1141 = 0, $1142 = 0; + var $1143 = 0, $1144 = 0, $1145 = 0, $1146 = 0, $1147 = 0, $1148 = 0, $1149 = 0, $115 = 0, $1150 = 0, $1151 = 0, $1152 = 0, $1153 = 0, $1154 = 0, $1155 = 0, $1156 = 0, $1157 = 0, $1158 = 0, $1159 = 0, $116 = 0, $1160 = 0; + var $1161 = 0, $1162 = 0, $1163 = 0, $1164 = 0, $1165 = 0, $1166 = 0, $1167 = 0, $1168 = 0, $1169 = 0, $117 = 0, $1170 = 0, $1171 = 0, $1172 = 0, $1173 = 0, $1174 = 0, $1175 = 0, $1176 = 0, $1177 = 0, $1178 = 0, $1179 = 0; + var $118 = 0, $1180 = 0, $1181 = 0, $1182 = 0, $1183 = 0, $1184 = 0, $1185 = 0, $1186 = 0, $1187 = 0, $1188 = 0, $1189 = 0, $119 = 0, $1190 = 0, $1191 = 0, $1192 = 0, $1193 = 0, $1194 = 0, $1195 = 0, $1196 = 0, $1197 = 0; + var $1198 = 0, $1199 = 0, $12 = 0, $120 = 0, $1200 = 0, $1201 = 0, $1202 = 0, $1203 = 0, $1204 = 0, $1205 = 0, $1206 = 0, $1207 = 0, $1208 = 0, $1209 = 0, $121 = 0, $1210 = 0, $1211 = 0, $1212 = 0, $1213 = 0, $1214 = 0; + var $1215 = 0, $1216 = 0, $1217 = 0, $1218 = 0, $1219 = 0, $122 = 0, $1220 = 0, $1221 = 0, $1222 = 0, $1223 = 0, $1224 = 0, $1225 = 0, $1226 = 0, $1227 = 0, $1228 = 0, $1229 = 0, $123 = 0, $1230 = 0, $1231 = 0, $1232 = 0; + var $1233 = 0, $1234 = 0, $1235 = 0, $1236 = 0, $1237 = 0, $1238 = 0, $1239 = 0, $124 = 0, $1240 = 0, $1241 = 0, $1242 = 0, $1243 = 0, $1244 = 0, $1245 = 0, $1246 = 0, $1247 = 0, $1248 = 0, $1249 = 0, $125 = 0, $1250 = 0; + var $1251 = 0, $1252 = 0, $1253 = 0, $1254 = 0, $1255 = 0, $1256 = 0, $1257 = 0, $1258 = 0, $1259 = 0, $126 = 0, $1260 = 0, $1261 = 0, $1262 = 0, $1263 = 0, $1264 = 0, $1265 = 0, $1266 = 0, $1267 = 0, $1268 = 0, $1269 = 0; + var $127 = 0, $1270 = 0, $1271 = 0, $1272 = 0, $1273 = 0, $1274 = 0, $1275 = 0, $1276 = 0, $1277 = 0, $1278 = 0, $1279 = 0, $128 = 0, $1280 = 0, $1281 = 0, $1282 = 0, $1283 = 0, $1284 = 0, $1285 = 0, $1286 = 0, $1287 = 0; + var $1288 = 0, $1289 = 0, $129 = 0, $1290 = 0, $1291 = 0, $1292 = 0, $1293 = 0, $1294 = 0, $1295 = 0, $1296 = 0, $1297 = 0, $1298 = 0, $1299 = 0, $13 = 0, $130 = 0, $1300 = 0, $1301 = 0, $1302 = 0, $1303 = 0, $1304 = 0; + var $1305 = 0, $1306 = 0, $1307 = 0, $1308 = 0, $1309 = 0, $131 = 0, $1310 = 0, $1311 = 0, $1312 = 0, $1313 = 0, $1314 = 0, $1315 = 0, $1316 = 0, $1317 = 0, $1318 = 0, $1319 = 0, $132 = 0, $1320 = 0, $1321 = 0, $1322 = 0; + var $1323 = 0, $1324 = 0, $1325 = 0, $1326 = 0, $1327 = 0, $1328 = 0, $1329 = 0, $133 = 0, $1330 = 0, $1331 = 0, $1332 = 0, $1333 = 0, $1334 = 0, $1335 = 0, $1336 = 0, $1337 = 0, $1338 = 0, $1339 = 0, $134 = 0, $1340 = 0; + var $1341 = 0, $1342 = 0, $1343 = 0, $1344 = 0, $1345 = 0, $1346 = 0, $1347 = 0, $1348 = 0, $1349 = 0, $135 = 0, $1350 = 0, $1351 = 0, $1352 = 0, $1353 = 0, $1354 = 0, $1355 = 0, $1356 = 0, $1357 = 0, $1358 = 0, $1359 = 0; + var $136 = 0, $1360 = 0, $1361 = 0, $1362 = 0, $1363 = 0, $1364 = 0, $1365 = 0, $1366 = 0, $1367 = 0, $1368 = 0, $1369 = 0, $137 = 0, $1370 = 0, $1371 = 0, $1372 = 0, $1373 = 0, $1374 = 0, $1375 = 0, $1376 = 0, $1377 = 0; + var $1378 = 0, $1379 = 0, $138 = 0, $1380 = 0, $1381 = 0, $1382 = 0, $1383 = 0, $1384 = 0, $1385 = 0, $1386 = 0, $1387 = 0, $1388 = 0, $1389 = 0, $139 = 0, $1390 = 0, $1391 = 0, $1392 = 0, $1393 = 0, $1394 = 0, $1395 = 0; + var $1396 = 0, $1397 = 0, $1398 = 0, $1399 = 0, $14 = 0, $140 = 0, $1400 = 0, $1401 = 0, $1402 = 0, $1403 = 0, $1404 = 0, $1405 = 0, $1406 = 0, $1407 = 0, $1408 = 0, $1409 = 0, $141 = 0, $1410 = 0, $1411 = 0, $1412 = 0; + var $1413 = 0, $1414 = 0, $1415 = 0, $1416 = 0, $1417 = 0, $1418 = 0, $1419 = 0, $142 = 0, $1420 = 0, $1421 = 0, $1422 = 0, $1423 = 0, $1424 = 0, $1425 = 0, $1426 = 0, $1427 = 0, $1428 = 0, $1429 = 0, $143 = 0, $1430 = 0; + var $1431 = 0, $1432 = 0, $1433 = 0, $1434 = 0, $1435 = 0, $1436 = 0, $1437 = 0, $1438 = 0, $1439 = 0, $144 = 0, $1440 = 0, $1441 = 0, $1442 = 0, $1443 = 0, $1444 = 0, $1445 = 0, $1446 = 0, $1447 = 0, $1448 = 0, $1449 = 0; + var $145 = 0, $1450 = 0, $1451 = 0, $1452 = 0, $1453 = 0, $1454 = 0, $1455 = 0, $1456 = 0, $1457 = 0, $1458 = 0, $1459 = 0, $146 = 0, $1460 = 0, $1461 = 0, $1462 = 0, $1463 = 0, $1464 = 0, $1465 = 0, $1466 = 0, $1467 = 0; + var $1468 = 0, $1469 = 0, $147 = 0, $1470 = 0, $1471 = 0, $1472 = 0, $1473 = 0, $1474 = 0, $1475 = 0, $1476 = 0, $1477 = 0, $1478 = 0, $1479 = 0, $148 = 0, $1480 = 0, $1481 = 0, $1482 = 0, $1483 = 0, $1484 = 0, $1485 = 0; + var $1486 = 0, $1487 = 0, $1488 = 0, $1489 = 0, $149 = 0, $1490 = 0, $1491 = 0, $1492 = 0, $1493 = 0, $1494 = 0, $1495 = 0, $1496 = 0, $1497 = 0, $1498 = 0, $1499 = 0, $15 = 0, $150 = 0, $1500 = 0, $1501 = 0, $1502 = 0; + var $1503 = 0, $1504 = 0, $1505 = 0, $1506 = 0, $1507 = 0, $1508 = 0, $1509 = 0, $151 = 0, $1510 = 0, $1511 = 0, $1512 = 0, $1513 = 0, $1514 = 0, $1515 = 0, $1516 = 0, $1517 = 0, $1518 = 0, $1519 = 0, $152 = 0, $1520 = 0; + var $1521 = 0, $1522 = 0, $1523 = 0, $1524 = 0, $1525 = 0, $1526 = 0, $1527 = 0, $1528 = 0, $1529 = 0, $153 = 0, $1530 = 0, $1531 = 0, $1532 = 0, $1533 = 0, $1534 = 0, $1535 = 0, $1536 = 0, $1537 = 0, $1538 = 0, $1539 = 0; + var $154 = 0, $1540 = 0, $1541 = 0, $1542 = 0, $1543 = 0, $1544 = 0, $1545 = 0, $1546 = 0, $1547 = 0, $1548 = 0, $1549 = 0, $155 = 0, $1550 = 0, $1551 = 0, $1552 = 0, $1553 = 0, $1554 = 0, $1555 = 0, $1556 = 0, $1557 = 0; + var $1558 = 0, $1559 = 0, $156 = 0, $1560 = 0, $1561 = 0, $1562 = 0, $1563 = 0, $1564 = 0, $1565 = 0, $1566 = 0, $1567 = 0, $1568 = 0, $1569 = 0, $157 = 0, $1570 = 0, $1571 = 0, $1572 = 0, $1573 = 0, $1574 = 0, $1575 = 0; + var $1576 = 0, $1577 = 0, $1578 = 0, $1579 = 0, $158 = 0, $1580 = 0, $1581 = 0, $1582 = 0, $1583 = 0, $1584 = 0, $1585 = 0, $1586 = 0, $1587 = 0, $1588 = 0, $1589 = 0, $159 = 0, $1590 = 0, $1591 = 0, $1592 = 0, $1593 = 0; + var $1594 = 0, $1595 = 0, $1596 = 0, $1597 = 0, $1598 = 0, $1599 = 0, $16 = 0, $160 = 0, $1600 = 0, $1601 = 0, $1602 = 0, $1603 = 0, $1604 = 0, $1605 = 0, $1606 = 0, $1607 = 0, $1608 = 0, $1609 = 0, $161 = 0, $1610 = 0; + var $1611 = 0, $1612 = 0, $1613 = 0, $1614 = 0, $1615 = 0, $1616 = 0, $1617 = 0, $1618 = 0, $1619 = 0, $162 = 0, $1620 = 0, $1621 = 0, $1622 = 0, $1623 = 0, $1624 = 0, $1625 = 0, $1626 = 0, $1627 = 0, $1628 = 0, $1629 = 0; + var $163 = 0, $1630 = 0, $1631 = 0, $1632 = 0, $1633 = 0, $1634 = 0, $1635 = 0, $1636 = 0, $1637 = 0, $1638 = 0, $1639 = 0, $164 = 0, $1640 = 0, $1641 = 0, $1642 = 0, $1643 = 0, $1644 = 0, $1645 = 0, $1646 = 0, $1647 = 0; + var $1648 = 0, $1649 = 0, $165 = 0, $1650 = 0, $1651 = 0, $1652 = 0, $1653 = 0, $1654 = 0, $1655 = 0, $1656 = 0, $1657 = 0, $1658 = 0, $1659 = 0, $166 = 0, $1660 = 0, $1661 = 0, $1662 = 0, $1663 = 0, $1664 = 0, $1665 = 0; + var $1666 = 0, $1667 = 0, $1668 = 0, $1669 = 0, $167 = 0, $1670 = 0, $1671 = 0, $1672 = 0, $1673 = 0, $1674 = 0, $1675 = 0, $1676 = 0, $1677 = 0, $1678 = 0, $1679 = 0, $168 = 0, $1680 = 0, $1681 = 0, $1682 = 0, $1683 = 0; + var $1684 = 0, $1685 = 0, $1686 = 0, $1687 = 0, $1688 = 0, $1689 = 0, $169 = 0, $1690 = 0, $1691 = 0, $1692 = 0, $1693 = 0, $1694 = 0, $1695 = 0, $1696 = 0, $1697 = 0, $1698 = 0, $1699 = 0, $17 = 0, $170 = 0, $1700 = 0; + var $1701 = 0, $1702 = 0, $1703 = 0, $1704 = 0, $1705 = 0, $1706 = 0, $1707 = 0, $1708 = 0, $1709 = 0, $171 = 0, $1710 = 0, $1711 = 0, $1712 = 0, $1713 = 0, $1714 = 0, $1715 = 0, $1716 = 0, $1717 = 0, $1718 = 0, $1719 = 0; + var $172 = 0, $1720 = 0, $1721 = 0, $1722 = 0, $1723 = 0, $1724 = 0, $1725 = 0, $1726 = 0, $1727 = 0, $1728 = 0, $1729 = 0, $173 = 0, $1730 = 0, $1731 = 0, $1732 = 0, $1733 = 0, $1734 = 0, $1735 = 0, $1736 = 0, $1737 = 0; + var $1738 = 0, $1739 = 0, $174 = 0, $1740 = 0, $1741 = 0, $1742 = 0, $1743 = 0, $1744 = 0, $1745 = 0, $1746 = 0, $1747 = 0, $1748 = 0, $1749 = 0, $175 = 0, $1750 = 0, $1751 = 0, $1752 = 0, $1753 = 0, $1754 = 0, $1755 = 0; + var $1756 = 0, $1757 = 0, $1758 = 0, $1759 = 0, $176 = 0, $1760 = 0, $1761 = 0, $1762 = 0, $1763 = 0, $1764 = 0, $1765 = 0, $1766 = 0, $1767 = 0, $1768 = 0, $1769 = 0, $177 = 0, $1770 = 0, $1771 = 0, $1772 = 0, $1773 = 0; + var $1774 = 0, $1775 = 0, $1776 = 0, $1777 = 0, $1778 = 0, $1779 = 0, $178 = 0, $1780 = 0, $1781 = 0, $1782 = 0, $1783 = 0, $1784 = 0, $1785 = 0, $1786 = 0, $1787 = 0, $1788 = 0, $1789 = 0, $179 = 0, $1790 = 0, $1791 = 0; + var $1792 = 0, $1793 = 0, $1794 = 0, $1795 = 0, $1796 = 0, $1797 = 0, $1798 = 0, $1799 = 0, $18 = 0, $180 = 0, $1800 = 0, $1801 = 0, $1802 = 0, $1803 = 0, $1804 = 0, $1805 = 0, $1806 = 0, $1807 = 0, $1808 = 0, $1809 = 0; + var $181 = 0, $1810 = 0, $1811 = 0, $1812 = 0, $1813 = 0, $1814 = 0, $1815 = 0, $1816 = 0, $1817 = 0, $1818 = 0, $1819 = 0, $182 = 0, $1820 = 0, $1821 = 0, $1822 = 0, $1823 = 0, $1824 = 0, $1825 = 0, $1826 = 0, $1827 = 0; + var $1828 = 0, $1829 = 0, $183 = 0, $1830 = 0, $1831 = 0, $1832 = 0, $1833 = 0, $1834 = 0, $1835 = 0, $1836 = 0, $1837 = 0, $1838 = 0, $1839 = 0, $184 = 0, $1840 = 0, $1841 = 0, $1842 = 0, $1843 = 0, $1844 = 0, $1845 = 0; + var $1846 = 0, $1847 = 0, $1848 = 0, $1849 = 0, $185 = 0, $1850 = 0, $1851 = 0, $1852 = 0, $1853 = 0, $1854 = 0, $1855 = 0, $1856 = 0, $1857 = 0, $1858 = 0, $1859 = 0, $186 = 0, $1860 = 0, $1861 = 0, $1862 = 0, $1863 = 0; + var $1864 = 0, $1865 = 0, $1866 = 0, $1867 = 0, $1868 = 0, $1869 = 0, $187 = 0, $1870 = 0, $1871 = 0, $1872 = 0, $1873 = 0, $1874 = 0, $1875 = 0, $1876 = 0, $1877 = 0, $1878 = 0, $1879 = 0, $188 = 0, $1880 = 0, $1881 = 0; + var $1882 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; + var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; + var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; + var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; + var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; + var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; + var $297 = 0, $298 = 0, $299 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0; var $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0; var $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0; var $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0; @@ -15753,1491 +12219,1487 @@ function _crypto_sign_ed25519_ref10_sc_muladd($s,$a,$b,$c) { var $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, label = 0; var sp = 0; sp = STACKTOP; - $0 = (_load_347($a)|0); - $1 = tempRet0; - $2 = $0 & 2097151; - $3 = ((($a)) + 2|0); - $4 = (_load_448($3)|0); + $4 = (_load_3_47($1)|0); $5 = tempRet0; - $6 = (_bitshift64Lshr(($4|0),($5|0),5)|0); - $7 = tempRet0; - $8 = $6 & 2097151; - $9 = ((($a)) + 5|0); - $10 = (_load_347($9)|0); + $6 = $4 & 2097151; + $7 = ((($1)) + 2|0); + $8 = (_load_4_48($7)|0); + $9 = tempRet0; + $10 = (_bitshift64Lshr(($8|0),($9|0),5)|0); $11 = tempRet0; - $12 = (_bitshift64Lshr(($10|0),($11|0),2)|0); - $13 = tempRet0; - $14 = $12 & 2097151; - $15 = ((($a)) + 7|0); - $16 = (_load_448($15)|0); + $12 = $10 & 2097151; + $13 = ((($1)) + 5|0); + $14 = (_load_3_47($13)|0); + $15 = tempRet0; + $16 = (_bitshift64Lshr(($14|0),($15|0),2)|0); $17 = tempRet0; - $18 = (_bitshift64Lshr(($16|0),($17|0),7)|0); - $19 = tempRet0; - $20 = $18 & 2097151; - $21 = ((($a)) + 10|0); - $22 = (_load_448($21)|0); + $18 = $16 & 2097151; + $19 = ((($1)) + 7|0); + $20 = (_load_4_48($19)|0); + $21 = tempRet0; + $22 = (_bitshift64Lshr(($20|0),($21|0),7)|0); $23 = tempRet0; - $24 = (_bitshift64Lshr(($22|0),($23|0),4)|0); - $25 = tempRet0; - $26 = $24 & 2097151; - $27 = ((($a)) + 13|0); - $28 = (_load_347($27)|0); + $24 = $22 & 2097151; + $25 = ((($1)) + 10|0); + $26 = (_load_4_48($25)|0); + $27 = tempRet0; + $28 = (_bitshift64Lshr(($26|0),($27|0),4)|0); $29 = tempRet0; - $30 = (_bitshift64Lshr(($28|0),($29|0),1)|0); - $31 = tempRet0; - $32 = $30 & 2097151; - $33 = ((($a)) + 15|0); - $34 = (_load_448($33)|0); + $30 = $28 & 2097151; + $31 = ((($1)) + 13|0); + $32 = (_load_3_47($31)|0); + $33 = tempRet0; + $34 = (_bitshift64Lshr(($32|0),($33|0),1)|0); $35 = tempRet0; - $36 = (_bitshift64Lshr(($34|0),($35|0),6)|0); - $37 = tempRet0; - $38 = $36 & 2097151; - $39 = ((($a)) + 18|0); - $40 = (_load_347($39)|0); + $36 = $34 & 2097151; + $37 = ((($1)) + 15|0); + $38 = (_load_4_48($37)|0); + $39 = tempRet0; + $40 = (_bitshift64Lshr(($38|0),($39|0),6)|0); $41 = tempRet0; - $42 = (_bitshift64Lshr(($40|0),($41|0),3)|0); - $43 = tempRet0; - $44 = $42 & 2097151; - $45 = ((($a)) + 21|0); - $46 = (_load_347($45)|0); + $42 = $40 & 2097151; + $43 = ((($1)) + 18|0); + $44 = (_load_3_47($43)|0); + $45 = tempRet0; + $46 = (_bitshift64Lshr(($44|0),($45|0),3)|0); $47 = tempRet0; $48 = $46 & 2097151; - $49 = ((($a)) + 23|0); - $50 = (_load_448($49)|0); + $49 = ((($1)) + 21|0); + $50 = (_load_3_47($49)|0); $51 = tempRet0; - $52 = (_bitshift64Lshr(($50|0),($51|0),5)|0); - $53 = tempRet0; - $54 = $52 & 2097151; - $55 = ((($a)) + 26|0); - $56 = (_load_347($55)|0); + $52 = $50 & 2097151; + $53 = ((($1)) + 23|0); + $54 = (_load_4_48($53)|0); + $55 = tempRet0; + $56 = (_bitshift64Lshr(($54|0),($55|0),5)|0); $57 = tempRet0; - $58 = (_bitshift64Lshr(($56|0),($57|0),2)|0); - $59 = tempRet0; - $60 = $58 & 2097151; - $61 = ((($a)) + 28|0); - $62 = (_load_448($61)|0); + $58 = $56 & 2097151; + $59 = ((($1)) + 26|0); + $60 = (_load_3_47($59)|0); + $61 = tempRet0; + $62 = (_bitshift64Lshr(($60|0),($61|0),2)|0); $63 = tempRet0; - $64 = (_bitshift64Lshr(($62|0),($63|0),7)|0); - $65 = tempRet0; - $66 = (_load_347($b)|0); + $64 = $62 & 2097151; + $65 = ((($1)) + 28|0); + $66 = (_load_4_48($65)|0); $67 = tempRet0; - $68 = $66 & 2097151; - $69 = ((($b)) + 2|0); - $70 = (_load_448($69)|0); + $68 = (_bitshift64Lshr(($66|0),($67|0),7)|0); + $69 = tempRet0; + $70 = (_load_3_47($2)|0); $71 = tempRet0; - $72 = (_bitshift64Lshr(($70|0),($71|0),5)|0); - $73 = tempRet0; - $74 = $72 & 2097151; - $75 = ((($b)) + 5|0); - $76 = (_load_347($75)|0); + $72 = $70 & 2097151; + $73 = ((($2)) + 2|0); + $74 = (_load_4_48($73)|0); + $75 = tempRet0; + $76 = (_bitshift64Lshr(($74|0),($75|0),5)|0); $77 = tempRet0; - $78 = (_bitshift64Lshr(($76|0),($77|0),2)|0); - $79 = tempRet0; - $80 = $78 & 2097151; - $81 = ((($b)) + 7|0); - $82 = (_load_448($81)|0); + $78 = $76 & 2097151; + $79 = ((($2)) + 5|0); + $80 = (_load_3_47($79)|0); + $81 = tempRet0; + $82 = (_bitshift64Lshr(($80|0),($81|0),2)|0); $83 = tempRet0; - $84 = (_bitshift64Lshr(($82|0),($83|0),7)|0); - $85 = tempRet0; - $86 = $84 & 2097151; - $87 = ((($b)) + 10|0); - $88 = (_load_448($87)|0); + $84 = $82 & 2097151; + $85 = ((($2)) + 7|0); + $86 = (_load_4_48($85)|0); + $87 = tempRet0; + $88 = (_bitshift64Lshr(($86|0),($87|0),7)|0); $89 = tempRet0; - $90 = (_bitshift64Lshr(($88|0),($89|0),4)|0); - $91 = tempRet0; - $92 = $90 & 2097151; - $93 = ((($b)) + 13|0); - $94 = (_load_347($93)|0); + $90 = $88 & 2097151; + $91 = ((($2)) + 10|0); + $92 = (_load_4_48($91)|0); + $93 = tempRet0; + $94 = (_bitshift64Lshr(($92|0),($93|0),4)|0); $95 = tempRet0; - $96 = (_bitshift64Lshr(($94|0),($95|0),1)|0); - $97 = tempRet0; - $98 = $96 & 2097151; - $99 = ((($b)) + 15|0); - $100 = (_load_448($99)|0); + $96 = $94 & 2097151; + $97 = ((($2)) + 13|0); + $98 = (_load_3_47($97)|0); + $99 = tempRet0; + $100 = (_bitshift64Lshr(($98|0),($99|0),1)|0); $101 = tempRet0; - $102 = (_bitshift64Lshr(($100|0),($101|0),6)|0); - $103 = tempRet0; - $104 = $102 & 2097151; - $105 = ((($b)) + 18|0); - $106 = (_load_347($105)|0); + $102 = $100 & 2097151; + $103 = ((($2)) + 15|0); + $104 = (_load_4_48($103)|0); + $105 = tempRet0; + $106 = (_bitshift64Lshr(($104|0),($105|0),6)|0); $107 = tempRet0; - $108 = (_bitshift64Lshr(($106|0),($107|0),3)|0); - $109 = tempRet0; - $110 = $108 & 2097151; - $111 = ((($b)) + 21|0); - $112 = (_load_347($111)|0); + $108 = $106 & 2097151; + $109 = ((($2)) + 18|0); + $110 = (_load_3_47($109)|0); + $111 = tempRet0; + $112 = (_bitshift64Lshr(($110|0),($111|0),3)|0); $113 = tempRet0; $114 = $112 & 2097151; - $115 = ((($b)) + 23|0); - $116 = (_load_448($115)|0); + $115 = ((($2)) + 21|0); + $116 = (_load_3_47($115)|0); $117 = tempRet0; - $118 = (_bitshift64Lshr(($116|0),($117|0),5)|0); - $119 = tempRet0; - $120 = $118 & 2097151; - $121 = ((($b)) + 26|0); - $122 = (_load_347($121)|0); + $118 = $116 & 2097151; + $119 = ((($2)) + 23|0); + $120 = (_load_4_48($119)|0); + $121 = tempRet0; + $122 = (_bitshift64Lshr(($120|0),($121|0),5)|0); $123 = tempRet0; - $124 = (_bitshift64Lshr(($122|0),($123|0),2)|0); - $125 = tempRet0; - $126 = $124 & 2097151; - $127 = ((($b)) + 28|0); - $128 = (_load_448($127)|0); + $124 = $122 & 2097151; + $125 = ((($2)) + 26|0); + $126 = (_load_3_47($125)|0); + $127 = tempRet0; + $128 = (_bitshift64Lshr(($126|0),($127|0),2)|0); $129 = tempRet0; - $130 = (_bitshift64Lshr(($128|0),($129|0),7)|0); - $131 = tempRet0; - $132 = (_load_347($c)|0); + $130 = $128 & 2097151; + $131 = ((($2)) + 28|0); + $132 = (_load_4_48($131)|0); $133 = tempRet0; - $134 = $132 & 2097151; - $135 = ((($c)) + 2|0); - $136 = (_load_448($135)|0); + $134 = (_bitshift64Lshr(($132|0),($133|0),7)|0); + $135 = tempRet0; + $136 = (_load_3_47($3)|0); $137 = tempRet0; - $138 = (_bitshift64Lshr(($136|0),($137|0),5)|0); - $139 = tempRet0; - $140 = $138 & 2097151; - $141 = ((($c)) + 5|0); - $142 = (_load_347($141)|0); + $138 = $136 & 2097151; + $139 = ((($3)) + 2|0); + $140 = (_load_4_48($139)|0); + $141 = tempRet0; + $142 = (_bitshift64Lshr(($140|0),($141|0),5)|0); $143 = tempRet0; - $144 = (_bitshift64Lshr(($142|0),($143|0),2)|0); - $145 = tempRet0; - $146 = $144 & 2097151; - $147 = ((($c)) + 7|0); - $148 = (_load_448($147)|0); + $144 = $142 & 2097151; + $145 = ((($3)) + 5|0); + $146 = (_load_3_47($145)|0); + $147 = tempRet0; + $148 = (_bitshift64Lshr(($146|0),($147|0),2)|0); $149 = tempRet0; - $150 = (_bitshift64Lshr(($148|0),($149|0),7)|0); - $151 = tempRet0; - $152 = $150 & 2097151; - $153 = ((($c)) + 10|0); - $154 = (_load_448($153)|0); + $150 = $148 & 2097151; + $151 = ((($3)) + 7|0); + $152 = (_load_4_48($151)|0); + $153 = tempRet0; + $154 = (_bitshift64Lshr(($152|0),($153|0),7)|0); $155 = tempRet0; - $156 = (_bitshift64Lshr(($154|0),($155|0),4)|0); - $157 = tempRet0; - $158 = $156 & 2097151; - $159 = ((($c)) + 13|0); - $160 = (_load_347($159)|0); + $156 = $154 & 2097151; + $157 = ((($3)) + 10|0); + $158 = (_load_4_48($157)|0); + $159 = tempRet0; + $160 = (_bitshift64Lshr(($158|0),($159|0),4)|0); $161 = tempRet0; - $162 = (_bitshift64Lshr(($160|0),($161|0),1)|0); - $163 = tempRet0; - $164 = $162 & 2097151; - $165 = ((($c)) + 15|0); - $166 = (_load_448($165)|0); + $162 = $160 & 2097151; + $163 = ((($3)) + 13|0); + $164 = (_load_3_47($163)|0); + $165 = tempRet0; + $166 = (_bitshift64Lshr(($164|0),($165|0),1)|0); $167 = tempRet0; - $168 = (_bitshift64Lshr(($166|0),($167|0),6)|0); - $169 = tempRet0; - $170 = $168 & 2097151; - $171 = ((($c)) + 18|0); - $172 = (_load_347($171)|0); + $168 = $166 & 2097151; + $169 = ((($3)) + 15|0); + $170 = (_load_4_48($169)|0); + $171 = tempRet0; + $172 = (_bitshift64Lshr(($170|0),($171|0),6)|0); $173 = tempRet0; - $174 = (_bitshift64Lshr(($172|0),($173|0),3)|0); - $175 = tempRet0; - $176 = $174 & 2097151; - $177 = ((($c)) + 21|0); - $178 = (_load_347($177)|0); + $174 = $172 & 2097151; + $175 = ((($3)) + 18|0); + $176 = (_load_3_47($175)|0); + $177 = tempRet0; + $178 = (_bitshift64Lshr(($176|0),($177|0),3)|0); $179 = tempRet0; $180 = $178 & 2097151; - $181 = ((($c)) + 23|0); - $182 = (_load_448($181)|0); + $181 = ((($3)) + 21|0); + $182 = (_load_3_47($181)|0); $183 = tempRet0; - $184 = (_bitshift64Lshr(($182|0),($183|0),5)|0); - $185 = tempRet0; - $186 = $184 & 2097151; - $187 = ((($c)) + 26|0); - $188 = (_load_347($187)|0); + $184 = $182 & 2097151; + $185 = ((($3)) + 23|0); + $186 = (_load_4_48($185)|0); + $187 = tempRet0; + $188 = (_bitshift64Lshr(($186|0),($187|0),5)|0); $189 = tempRet0; - $190 = (_bitshift64Lshr(($188|0),($189|0),2)|0); - $191 = tempRet0; - $192 = $190 & 2097151; - $193 = ((($c)) + 28|0); - $194 = (_load_448($193)|0); + $190 = $188 & 2097151; + $191 = ((($3)) + 26|0); + $192 = (_load_3_47($191)|0); + $193 = tempRet0; + $194 = (_bitshift64Lshr(($192|0),($193|0),2)|0); $195 = tempRet0; - $196 = (_bitshift64Lshr(($194|0),($195|0),7)|0); - $197 = tempRet0; - $198 = (___muldi3(($68|0),0,($2|0),0)|0); + $196 = $194 & 2097151; + $197 = ((($3)) + 28|0); + $198 = (_load_4_48($197)|0); $199 = tempRet0; - $200 = (_i64Add(($134|0),0,($198|0),($199|0))|0); + $200 = (_bitshift64Lshr(($198|0),($199|0),7)|0); $201 = tempRet0; - $202 = (___muldi3(($74|0),0,($2|0),0)|0); + $202 = (___muldi3(($72|0),0,($6|0),0)|0); $203 = tempRet0; - $204 = (___muldi3(($68|0),0,($8|0),0)|0); + $204 = (_i64Add(($138|0),0,($202|0),($203|0))|0); $205 = tempRet0; - $206 = (___muldi3(($80|0),0,($2|0),0)|0); + $206 = (___muldi3(($78|0),0,($6|0),0)|0); $207 = tempRet0; - $208 = (___muldi3(($74|0),0,($8|0),0)|0); + $208 = (___muldi3(($72|0),0,($12|0),0)|0); $209 = tempRet0; - $210 = (___muldi3(($68|0),0,($14|0),0)|0); + $210 = (___muldi3(($84|0),0,($6|0),0)|0); $211 = tempRet0; - $212 = (_i64Add(($208|0),($209|0),($210|0),($211|0))|0); + $212 = (___muldi3(($78|0),0,($12|0),0)|0); $213 = tempRet0; - $214 = (_i64Add(($212|0),($213|0),($206|0),($207|0))|0); + $214 = (___muldi3(($72|0),0,($18|0),0)|0); $215 = tempRet0; - $216 = (_i64Add(($214|0),($215|0),($146|0),0)|0); + $216 = (_i64Add(($212|0),($213|0),($214|0),($215|0))|0); $217 = tempRet0; - $218 = (___muldi3(($86|0),0,($2|0),0)|0); + $218 = (_i64Add(($216|0),($217|0),($210|0),($211|0))|0); $219 = tempRet0; - $220 = (___muldi3(($80|0),0,($8|0),0)|0); + $220 = (_i64Add(($218|0),($219|0),($150|0),0)|0); $221 = tempRet0; - $222 = (___muldi3(($74|0),0,($14|0),0)|0); + $222 = (___muldi3(($90|0),0,($6|0),0)|0); $223 = tempRet0; - $224 = (___muldi3(($68|0),0,($20|0),0)|0); + $224 = (___muldi3(($84|0),0,($12|0),0)|0); $225 = tempRet0; - $226 = (___muldi3(($92|0),0,($2|0),0)|0); + $226 = (___muldi3(($78|0),0,($18|0),0)|0); $227 = tempRet0; - $228 = (___muldi3(($86|0),0,($8|0),0)|0); + $228 = (___muldi3(($72|0),0,($24|0),0)|0); $229 = tempRet0; - $230 = (___muldi3(($80|0),0,($14|0),0)|0); + $230 = (___muldi3(($96|0),0,($6|0),0)|0); $231 = tempRet0; - $232 = (___muldi3(($74|0),0,($20|0),0)|0); + $232 = (___muldi3(($90|0),0,($12|0),0)|0); $233 = tempRet0; - $234 = (___muldi3(($68|0),0,($26|0),0)|0); + $234 = (___muldi3(($84|0),0,($18|0),0)|0); $235 = tempRet0; - $236 = (_i64Add(($232|0),($233|0),($234|0),($235|0))|0); + $236 = (___muldi3(($78|0),0,($24|0),0)|0); $237 = tempRet0; - $238 = (_i64Add(($236|0),($237|0),($230|0),($231|0))|0); + $238 = (___muldi3(($72|0),0,($30|0),0)|0); $239 = tempRet0; - $240 = (_i64Add(($238|0),($239|0),($228|0),($229|0))|0); + $240 = (_i64Add(($236|0),($237|0),($238|0),($239|0))|0); $241 = tempRet0; - $242 = (_i64Add(($240|0),($241|0),($226|0),($227|0))|0); + $242 = (_i64Add(($240|0),($241|0),($234|0),($235|0))|0); $243 = tempRet0; - $244 = (_i64Add(($242|0),($243|0),($158|0),0)|0); + $244 = (_i64Add(($242|0),($243|0),($232|0),($233|0))|0); $245 = tempRet0; - $246 = (___muldi3(($98|0),0,($2|0),0)|0); + $246 = (_i64Add(($244|0),($245|0),($230|0),($231|0))|0); $247 = tempRet0; - $248 = (___muldi3(($92|0),0,($8|0),0)|0); + $248 = (_i64Add(($246|0),($247|0),($162|0),0)|0); $249 = tempRet0; - $250 = (___muldi3(($86|0),0,($14|0),0)|0); + $250 = (___muldi3(($102|0),0,($6|0),0)|0); $251 = tempRet0; - $252 = (___muldi3(($80|0),0,($20|0),0)|0); + $252 = (___muldi3(($96|0),0,($12|0),0)|0); $253 = tempRet0; - $254 = (___muldi3(($74|0),0,($26|0),0)|0); + $254 = (___muldi3(($90|0),0,($18|0),0)|0); $255 = tempRet0; - $256 = (___muldi3(($68|0),0,($32|0),0)|0); + $256 = (___muldi3(($84|0),0,($24|0),0)|0); $257 = tempRet0; - $258 = (___muldi3(($104|0),0,($2|0),0)|0); + $258 = (___muldi3(($78|0),0,($30|0),0)|0); $259 = tempRet0; - $260 = (___muldi3(($98|0),0,($8|0),0)|0); + $260 = (___muldi3(($72|0),0,($36|0),0)|0); $261 = tempRet0; - $262 = (___muldi3(($92|0),0,($14|0),0)|0); + $262 = (___muldi3(($108|0),0,($6|0),0)|0); $263 = tempRet0; - $264 = (___muldi3(($86|0),0,($20|0),0)|0); + $264 = (___muldi3(($102|0),0,($12|0),0)|0); $265 = tempRet0; - $266 = (___muldi3(($80|0),0,($26|0),0)|0); + $266 = (___muldi3(($96|0),0,($18|0),0)|0); $267 = tempRet0; - $268 = (___muldi3(($74|0),0,($32|0),0)|0); + $268 = (___muldi3(($90|0),0,($24|0),0)|0); $269 = tempRet0; - $270 = (___muldi3(($68|0),0,($38|0),0)|0); + $270 = (___muldi3(($84|0),0,($30|0),0)|0); $271 = tempRet0; - $272 = (_i64Add(($268|0),($269|0),($270|0),($271|0))|0); + $272 = (___muldi3(($78|0),0,($36|0),0)|0); $273 = tempRet0; - $274 = (_i64Add(($272|0),($273|0),($266|0),($267|0))|0); + $274 = (___muldi3(($72|0),0,($42|0),0)|0); $275 = tempRet0; - $276 = (_i64Add(($274|0),($275|0),($264|0),($265|0))|0); + $276 = (_i64Add(($272|0),($273|0),($274|0),($275|0))|0); $277 = tempRet0; - $278 = (_i64Add(($276|0),($277|0),($262|0),($263|0))|0); + $278 = (_i64Add(($276|0),($277|0),($270|0),($271|0))|0); $279 = tempRet0; - $280 = (_i64Add(($278|0),($279|0),($260|0),($261|0))|0); + $280 = (_i64Add(($278|0),($279|0),($268|0),($269|0))|0); $281 = tempRet0; - $282 = (_i64Add(($280|0),($281|0),($258|0),($259|0))|0); + $282 = (_i64Add(($280|0),($281|0),($266|0),($267|0))|0); $283 = tempRet0; - $284 = (_i64Add(($282|0),($283|0),($170|0),0)|0); + $284 = (_i64Add(($282|0),($283|0),($264|0),($265|0))|0); $285 = tempRet0; - $286 = (___muldi3(($110|0),0,($2|0),0)|0); + $286 = (_i64Add(($284|0),($285|0),($262|0),($263|0))|0); $287 = tempRet0; - $288 = (___muldi3(($104|0),0,($8|0),0)|0); + $288 = (_i64Add(($286|0),($287|0),($174|0),0)|0); $289 = tempRet0; - $290 = (___muldi3(($98|0),0,($14|0),0)|0); + $290 = (___muldi3(($114|0),0,($6|0),0)|0); $291 = tempRet0; - $292 = (___muldi3(($92|0),0,($20|0),0)|0); + $292 = (___muldi3(($108|0),0,($12|0),0)|0); $293 = tempRet0; - $294 = (___muldi3(($86|0),0,($26|0),0)|0); + $294 = (___muldi3(($102|0),0,($18|0),0)|0); $295 = tempRet0; - $296 = (___muldi3(($80|0),0,($32|0),0)|0); + $296 = (___muldi3(($96|0),0,($24|0),0)|0); $297 = tempRet0; - $298 = (___muldi3(($74|0),0,($38|0),0)|0); + $298 = (___muldi3(($90|0),0,($30|0),0)|0); $299 = tempRet0; - $300 = (___muldi3(($68|0),0,($44|0),0)|0); + $300 = (___muldi3(($84|0),0,($36|0),0)|0); $301 = tempRet0; - $302 = (___muldi3(($114|0),0,($2|0),0)|0); + $302 = (___muldi3(($78|0),0,($42|0),0)|0); $303 = tempRet0; - $304 = (___muldi3(($110|0),0,($8|0),0)|0); + $304 = (___muldi3(($72|0),0,($48|0),0)|0); $305 = tempRet0; - $306 = (___muldi3(($104|0),0,($14|0),0)|0); + $306 = (___muldi3(($118|0),0,($6|0),0)|0); $307 = tempRet0; - $308 = (___muldi3(($98|0),0,($20|0),0)|0); + $308 = (___muldi3(($114|0),0,($12|0),0)|0); $309 = tempRet0; - $310 = (___muldi3(($92|0),0,($26|0),0)|0); + $310 = (___muldi3(($108|0),0,($18|0),0)|0); $311 = tempRet0; - $312 = (___muldi3(($86|0),0,($32|0),0)|0); + $312 = (___muldi3(($102|0),0,($24|0),0)|0); $313 = tempRet0; - $314 = (___muldi3(($80|0),0,($38|0),0)|0); + $314 = (___muldi3(($96|0),0,($30|0),0)|0); $315 = tempRet0; - $316 = (___muldi3(($74|0),0,($44|0),0)|0); + $316 = (___muldi3(($90|0),0,($36|0),0)|0); $317 = tempRet0; - $318 = (___muldi3(($68|0),0,($48|0),0)|0); + $318 = (___muldi3(($84|0),0,($42|0),0)|0); $319 = tempRet0; - $320 = (_i64Add(($316|0),($317|0),($318|0),($319|0))|0); + $320 = (___muldi3(($78|0),0,($48|0),0)|0); $321 = tempRet0; - $322 = (_i64Add(($320|0),($321|0),($314|0),($315|0))|0); + $322 = (___muldi3(($72|0),0,($52|0),0)|0); $323 = tempRet0; - $324 = (_i64Add(($322|0),($323|0),($312|0),($313|0))|0); + $324 = (_i64Add(($320|0),($321|0),($322|0),($323|0))|0); $325 = tempRet0; - $326 = (_i64Add(($324|0),($325|0),($310|0),($311|0))|0); + $326 = (_i64Add(($324|0),($325|0),($318|0),($319|0))|0); $327 = tempRet0; - $328 = (_i64Add(($326|0),($327|0),($308|0),($309|0))|0); + $328 = (_i64Add(($326|0),($327|0),($316|0),($317|0))|0); $329 = tempRet0; - $330 = (_i64Add(($328|0),($329|0),($306|0),($307|0))|0); + $330 = (_i64Add(($328|0),($329|0),($314|0),($315|0))|0); $331 = tempRet0; - $332 = (_i64Add(($330|0),($331|0),($302|0),($303|0))|0); + $332 = (_i64Add(($330|0),($331|0),($312|0),($313|0))|0); $333 = tempRet0; - $334 = (_i64Add(($332|0),($333|0),($304|0),($305|0))|0); + $334 = (_i64Add(($332|0),($333|0),($310|0),($311|0))|0); $335 = tempRet0; - $336 = (_i64Add(($334|0),($335|0),($180|0),0)|0); + $336 = (_i64Add(($334|0),($335|0),($306|0),($307|0))|0); $337 = tempRet0; - $338 = (___muldi3(($120|0),0,($2|0),0)|0); + $338 = (_i64Add(($336|0),($337|0),($308|0),($309|0))|0); $339 = tempRet0; - $340 = (___muldi3(($114|0),0,($8|0),0)|0); + $340 = (_i64Add(($338|0),($339|0),($184|0),0)|0); $341 = tempRet0; - $342 = (___muldi3(($110|0),0,($14|0),0)|0); + $342 = (___muldi3(($124|0),0,($6|0),0)|0); $343 = tempRet0; - $344 = (___muldi3(($104|0),0,($20|0),0)|0); + $344 = (___muldi3(($118|0),0,($12|0),0)|0); $345 = tempRet0; - $346 = (___muldi3(($98|0),0,($26|0),0)|0); + $346 = (___muldi3(($114|0),0,($18|0),0)|0); $347 = tempRet0; - $348 = (___muldi3(($92|0),0,($32|0),0)|0); + $348 = (___muldi3(($108|0),0,($24|0),0)|0); $349 = tempRet0; - $350 = (___muldi3(($86|0),0,($38|0),0)|0); + $350 = (___muldi3(($102|0),0,($30|0),0)|0); $351 = tempRet0; - $352 = (___muldi3(($80|0),0,($44|0),0)|0); + $352 = (___muldi3(($96|0),0,($36|0),0)|0); $353 = tempRet0; - $354 = (___muldi3(($74|0),0,($48|0),0)|0); + $354 = (___muldi3(($90|0),0,($42|0),0)|0); $355 = tempRet0; - $356 = (___muldi3(($68|0),0,($54|0),0)|0); + $356 = (___muldi3(($84|0),0,($48|0),0)|0); $357 = tempRet0; - $358 = (___muldi3(($126|0),0,($2|0),0)|0); + $358 = (___muldi3(($78|0),0,($52|0),0)|0); $359 = tempRet0; - $360 = (___muldi3(($120|0),0,($8|0),0)|0); + $360 = (___muldi3(($72|0),0,($58|0),0)|0); $361 = tempRet0; - $362 = (___muldi3(($114|0),0,($14|0),0)|0); + $362 = (___muldi3(($130|0),0,($6|0),0)|0); $363 = tempRet0; - $364 = (___muldi3(($110|0),0,($20|0),0)|0); + $364 = (___muldi3(($124|0),0,($12|0),0)|0); $365 = tempRet0; - $366 = (___muldi3(($104|0),0,($26|0),0)|0); + $366 = (___muldi3(($118|0),0,($18|0),0)|0); $367 = tempRet0; - $368 = (___muldi3(($98|0),0,($32|0),0)|0); + $368 = (___muldi3(($114|0),0,($24|0),0)|0); $369 = tempRet0; - $370 = (___muldi3(($92|0),0,($38|0),0)|0); + $370 = (___muldi3(($108|0),0,($30|0),0)|0); $371 = tempRet0; - $372 = (___muldi3(($86|0),0,($44|0),0)|0); + $372 = (___muldi3(($102|0),0,($36|0),0)|0); $373 = tempRet0; - $374 = (___muldi3(($80|0),0,($48|0),0)|0); + $374 = (___muldi3(($96|0),0,($42|0),0)|0); $375 = tempRet0; - $376 = (___muldi3(($74|0),0,($54|0),0)|0); + $376 = (___muldi3(($90|0),0,($48|0),0)|0); $377 = tempRet0; - $378 = (___muldi3(($68|0),0,($60|0),0)|0); + $378 = (___muldi3(($84|0),0,($52|0),0)|0); $379 = tempRet0; - $380 = (_i64Add(($376|0),($377|0),($378|0),($379|0))|0); + $380 = (___muldi3(($78|0),0,($58|0),0)|0); $381 = tempRet0; - $382 = (_i64Add(($380|0),($381|0),($374|0),($375|0))|0); + $382 = (___muldi3(($72|0),0,($64|0),0)|0); $383 = tempRet0; - $384 = (_i64Add(($382|0),($383|0),($372|0),($373|0))|0); + $384 = (_i64Add(($380|0),($381|0),($382|0),($383|0))|0); $385 = tempRet0; - $386 = (_i64Add(($384|0),($385|0),($370|0),($371|0))|0); + $386 = (_i64Add(($384|0),($385|0),($378|0),($379|0))|0); $387 = tempRet0; - $388 = (_i64Add(($386|0),($387|0),($368|0),($369|0))|0); + $388 = (_i64Add(($386|0),($387|0),($376|0),($377|0))|0); $389 = tempRet0; - $390 = (_i64Add(($388|0),($389|0),($366|0),($367|0))|0); + $390 = (_i64Add(($388|0),($389|0),($374|0),($375|0))|0); $391 = tempRet0; - $392 = (_i64Add(($390|0),($391|0),($362|0),($363|0))|0); + $392 = (_i64Add(($390|0),($391|0),($372|0),($373|0))|0); $393 = tempRet0; - $394 = (_i64Add(($392|0),($393|0),($364|0),($365|0))|0); + $394 = (_i64Add(($392|0),($393|0),($370|0),($371|0))|0); $395 = tempRet0; - $396 = (_i64Add(($394|0),($395|0),($360|0),($361|0))|0); + $396 = (_i64Add(($394|0),($395|0),($366|0),($367|0))|0); $397 = tempRet0; - $398 = (_i64Add(($396|0),($397|0),($358|0),($359|0))|0); + $398 = (_i64Add(($396|0),($397|0),($368|0),($369|0))|0); $399 = tempRet0; - $400 = (_i64Add(($398|0),($399|0),($192|0),0)|0); + $400 = (_i64Add(($398|0),($399|0),($364|0),($365|0))|0); $401 = tempRet0; - $402 = (___muldi3(($130|0),($131|0),($2|0),0)|0); + $402 = (_i64Add(($400|0),($401|0),($362|0),($363|0))|0); $403 = tempRet0; - $404 = (___muldi3(($126|0),0,($8|0),0)|0); + $404 = (_i64Add(($402|0),($403|0),($196|0),0)|0); $405 = tempRet0; - $406 = (___muldi3(($120|0),0,($14|0),0)|0); + $406 = (___muldi3(($134|0),($135|0),($6|0),0)|0); $407 = tempRet0; - $408 = (___muldi3(($114|0),0,($20|0),0)|0); + $408 = (___muldi3(($130|0),0,($12|0),0)|0); $409 = tempRet0; - $410 = (___muldi3(($110|0),0,($26|0),0)|0); + $410 = (___muldi3(($124|0),0,($18|0),0)|0); $411 = tempRet0; - $412 = (___muldi3(($104|0),0,($32|0),0)|0); + $412 = (___muldi3(($118|0),0,($24|0),0)|0); $413 = tempRet0; - $414 = (___muldi3(($98|0),0,($38|0),0)|0); + $414 = (___muldi3(($114|0),0,($30|0),0)|0); $415 = tempRet0; - $416 = (___muldi3(($92|0),0,($44|0),0)|0); + $416 = (___muldi3(($108|0),0,($36|0),0)|0); $417 = tempRet0; - $418 = (___muldi3(($86|0),0,($48|0),0)|0); + $418 = (___muldi3(($102|0),0,($42|0),0)|0); $419 = tempRet0; - $420 = (___muldi3(($80|0),0,($54|0),0)|0); + $420 = (___muldi3(($96|0),0,($48|0),0)|0); $421 = tempRet0; - $422 = (___muldi3(($74|0),0,($60|0),0)|0); + $422 = (___muldi3(($90|0),0,($52|0),0)|0); $423 = tempRet0; - $424 = (___muldi3(($68|0),0,($64|0),($65|0))|0); + $424 = (___muldi3(($84|0),0,($58|0),0)|0); $425 = tempRet0; - $426 = (___muldi3(($130|0),($131|0),($8|0),0)|0); + $426 = (___muldi3(($78|0),0,($64|0),0)|0); $427 = tempRet0; - $428 = (___muldi3(($126|0),0,($14|0),0)|0); + $428 = (___muldi3(($72|0),0,($68|0),($69|0))|0); $429 = tempRet0; - $430 = (___muldi3(($120|0),0,($20|0),0)|0); + $430 = (___muldi3(($134|0),($135|0),($12|0),0)|0); $431 = tempRet0; - $432 = (___muldi3(($114|0),0,($26|0),0)|0); + $432 = (___muldi3(($130|0),0,($18|0),0)|0); $433 = tempRet0; - $434 = (___muldi3(($110|0),0,($32|0),0)|0); + $434 = (___muldi3(($124|0),0,($24|0),0)|0); $435 = tempRet0; - $436 = (___muldi3(($104|0),0,($38|0),0)|0); + $436 = (___muldi3(($118|0),0,($30|0),0)|0); $437 = tempRet0; - $438 = (___muldi3(($98|0),0,($44|0),0)|0); + $438 = (___muldi3(($114|0),0,($36|0),0)|0); $439 = tempRet0; - $440 = (___muldi3(($92|0),0,($48|0),0)|0); + $440 = (___muldi3(($108|0),0,($42|0),0)|0); $441 = tempRet0; - $442 = (___muldi3(($86|0),0,($54|0),0)|0); + $442 = (___muldi3(($102|0),0,($48|0),0)|0); $443 = tempRet0; - $444 = (___muldi3(($80|0),0,($60|0),0)|0); + $444 = (___muldi3(($96|0),0,($52|0),0)|0); $445 = tempRet0; - $446 = (___muldi3(($74|0),0,($64|0),($65|0))|0); + $446 = (___muldi3(($90|0),0,($58|0),0)|0); $447 = tempRet0; - $448 = (_i64Add(($444|0),($445|0),($446|0),($447|0))|0); + $448 = (___muldi3(($84|0),0,($64|0),0)|0); $449 = tempRet0; - $450 = (_i64Add(($448|0),($449|0),($442|0),($443|0))|0); + $450 = (___muldi3(($78|0),0,($68|0),($69|0))|0); $451 = tempRet0; - $452 = (_i64Add(($450|0),($451|0),($440|0),($441|0))|0); + $452 = (_i64Add(($448|0),($449|0),($450|0),($451|0))|0); $453 = tempRet0; - $454 = (_i64Add(($452|0),($453|0),($438|0),($439|0))|0); + $454 = (_i64Add(($452|0),($453|0),($446|0),($447|0))|0); $455 = tempRet0; - $456 = (_i64Add(($454|0),($455|0),($436|0),($437|0))|0); + $456 = (_i64Add(($454|0),($455|0),($444|0),($445|0))|0); $457 = tempRet0; - $458 = (_i64Add(($456|0),($457|0),($432|0),($433|0))|0); + $458 = (_i64Add(($456|0),($457|0),($442|0),($443|0))|0); $459 = tempRet0; - $460 = (_i64Add(($458|0),($459|0),($434|0),($435|0))|0); + $460 = (_i64Add(($458|0),($459|0),($440|0),($441|0))|0); $461 = tempRet0; - $462 = (_i64Add(($460|0),($461|0),($430|0),($431|0))|0); + $462 = (_i64Add(($460|0),($461|0),($436|0),($437|0))|0); $463 = tempRet0; - $464 = (_i64Add(($462|0),($463|0),($428|0),($429|0))|0); + $464 = (_i64Add(($462|0),($463|0),($438|0),($439|0))|0); $465 = tempRet0; - $466 = (_i64Add(($464|0),($465|0),($426|0),($427|0))|0); + $466 = (_i64Add(($464|0),($465|0),($434|0),($435|0))|0); $467 = tempRet0; - $468 = (___muldi3(($130|0),($131|0),($14|0),0)|0); + $468 = (_i64Add(($466|0),($467|0),($432|0),($433|0))|0); $469 = tempRet0; - $470 = (___muldi3(($126|0),0,($20|0),0)|0); + $470 = (_i64Add(($468|0),($469|0),($430|0),($431|0))|0); $471 = tempRet0; - $472 = (___muldi3(($120|0),0,($26|0),0)|0); + $472 = (___muldi3(($134|0),($135|0),($18|0),0)|0); $473 = tempRet0; - $474 = (___muldi3(($114|0),0,($32|0),0)|0); + $474 = (___muldi3(($130|0),0,($24|0),0)|0); $475 = tempRet0; - $476 = (___muldi3(($110|0),0,($38|0),0)|0); + $476 = (___muldi3(($124|0),0,($30|0),0)|0); $477 = tempRet0; - $478 = (___muldi3(($104|0),0,($44|0),0)|0); + $478 = (___muldi3(($118|0),0,($36|0),0)|0); $479 = tempRet0; - $480 = (___muldi3(($98|0),0,($48|0),0)|0); + $480 = (___muldi3(($114|0),0,($42|0),0)|0); $481 = tempRet0; - $482 = (___muldi3(($92|0),0,($54|0),0)|0); + $482 = (___muldi3(($108|0),0,($48|0),0)|0); $483 = tempRet0; - $484 = (___muldi3(($86|0),0,($60|0),0)|0); + $484 = (___muldi3(($102|0),0,($52|0),0)|0); $485 = tempRet0; - $486 = (___muldi3(($80|0),0,($64|0),($65|0))|0); + $486 = (___muldi3(($96|0),0,($58|0),0)|0); $487 = tempRet0; - $488 = (___muldi3(($130|0),($131|0),($20|0),0)|0); + $488 = (___muldi3(($90|0),0,($64|0),0)|0); $489 = tempRet0; - $490 = (___muldi3(($126|0),0,($26|0),0)|0); + $490 = (___muldi3(($84|0),0,($68|0),($69|0))|0); $491 = tempRet0; - $492 = (___muldi3(($120|0),0,($32|0),0)|0); + $492 = (___muldi3(($134|0),($135|0),($24|0),0)|0); $493 = tempRet0; - $494 = (___muldi3(($114|0),0,($38|0),0)|0); + $494 = (___muldi3(($130|0),0,($30|0),0)|0); $495 = tempRet0; - $496 = (___muldi3(($110|0),0,($44|0),0)|0); + $496 = (___muldi3(($124|0),0,($36|0),0)|0); $497 = tempRet0; - $498 = (___muldi3(($104|0),0,($48|0),0)|0); + $498 = (___muldi3(($118|0),0,($42|0),0)|0); $499 = tempRet0; - $500 = (___muldi3(($98|0),0,($54|0),0)|0); + $500 = (___muldi3(($114|0),0,($48|0),0)|0); $501 = tempRet0; - $502 = (___muldi3(($92|0),0,($60|0),0)|0); + $502 = (___muldi3(($108|0),0,($52|0),0)|0); $503 = tempRet0; - $504 = (___muldi3(($86|0),0,($64|0),($65|0))|0); + $504 = (___muldi3(($102|0),0,($58|0),0)|0); $505 = tempRet0; - $506 = (_i64Add(($502|0),($503|0),($504|0),($505|0))|0); + $506 = (___muldi3(($96|0),0,($64|0),0)|0); $507 = tempRet0; - $508 = (_i64Add(($506|0),($507|0),($500|0),($501|0))|0); + $508 = (___muldi3(($90|0),0,($68|0),($69|0))|0); $509 = tempRet0; - $510 = (_i64Add(($508|0),($509|0),($498|0),($499|0))|0); + $510 = (_i64Add(($506|0),($507|0),($508|0),($509|0))|0); $511 = tempRet0; - $512 = (_i64Add(($510|0),($511|0),($494|0),($495|0))|0); + $512 = (_i64Add(($510|0),($511|0),($504|0),($505|0))|0); $513 = tempRet0; - $514 = (_i64Add(($512|0),($513|0),($496|0),($497|0))|0); + $514 = (_i64Add(($512|0),($513|0),($502|0),($503|0))|0); $515 = tempRet0; - $516 = (_i64Add(($514|0),($515|0),($492|0),($493|0))|0); + $516 = (_i64Add(($514|0),($515|0),($498|0),($499|0))|0); $517 = tempRet0; - $518 = (_i64Add(($516|0),($517|0),($490|0),($491|0))|0); + $518 = (_i64Add(($516|0),($517|0),($500|0),($501|0))|0); $519 = tempRet0; - $520 = (_i64Add(($518|0),($519|0),($488|0),($489|0))|0); + $520 = (_i64Add(($518|0),($519|0),($496|0),($497|0))|0); $521 = tempRet0; - $522 = (___muldi3(($130|0),($131|0),($26|0),0)|0); + $522 = (_i64Add(($520|0),($521|0),($494|0),($495|0))|0); $523 = tempRet0; - $524 = (___muldi3(($126|0),0,($32|0),0)|0); + $524 = (_i64Add(($522|0),($523|0),($492|0),($493|0))|0); $525 = tempRet0; - $526 = (___muldi3(($120|0),0,($38|0),0)|0); + $526 = (___muldi3(($134|0),($135|0),($30|0),0)|0); $527 = tempRet0; - $528 = (___muldi3(($114|0),0,($44|0),0)|0); + $528 = (___muldi3(($130|0),0,($36|0),0)|0); $529 = tempRet0; - $530 = (___muldi3(($110|0),0,($48|0),0)|0); + $530 = (___muldi3(($124|0),0,($42|0),0)|0); $531 = tempRet0; - $532 = (___muldi3(($104|0),0,($54|0),0)|0); + $532 = (___muldi3(($118|0),0,($48|0),0)|0); $533 = tempRet0; - $534 = (___muldi3(($98|0),0,($60|0),0)|0); + $534 = (___muldi3(($114|0),0,($52|0),0)|0); $535 = tempRet0; - $536 = (___muldi3(($92|0),0,($64|0),($65|0))|0); + $536 = (___muldi3(($108|0),0,($58|0),0)|0); $537 = tempRet0; - $538 = (___muldi3(($130|0),($131|0),($32|0),0)|0); + $538 = (___muldi3(($102|0),0,($64|0),0)|0); $539 = tempRet0; - $540 = (___muldi3(($126|0),0,($38|0),0)|0); + $540 = (___muldi3(($96|0),0,($68|0),($69|0))|0); $541 = tempRet0; - $542 = (___muldi3(($120|0),0,($44|0),0)|0); + $542 = (___muldi3(($134|0),($135|0),($36|0),0)|0); $543 = tempRet0; - $544 = (___muldi3(($114|0),0,($48|0),0)|0); + $544 = (___muldi3(($130|0),0,($42|0),0)|0); $545 = tempRet0; - $546 = (___muldi3(($110|0),0,($54|0),0)|0); + $546 = (___muldi3(($124|0),0,($48|0),0)|0); $547 = tempRet0; - $548 = (___muldi3(($104|0),0,($60|0),0)|0); + $548 = (___muldi3(($118|0),0,($52|0),0)|0); $549 = tempRet0; - $550 = (___muldi3(($98|0),0,($64|0),($65|0))|0); + $550 = (___muldi3(($114|0),0,($58|0),0)|0); $551 = tempRet0; - $552 = (_i64Add(($548|0),($549|0),($550|0),($551|0))|0); + $552 = (___muldi3(($108|0),0,($64|0),0)|0); $553 = tempRet0; - $554 = (_i64Add(($552|0),($553|0),($544|0),($545|0))|0); + $554 = (___muldi3(($102|0),0,($68|0),($69|0))|0); $555 = tempRet0; - $556 = (_i64Add(($554|0),($555|0),($546|0),($547|0))|0); + $556 = (_i64Add(($552|0),($553|0),($554|0),($555|0))|0); $557 = tempRet0; - $558 = (_i64Add(($556|0),($557|0),($542|0),($543|0))|0); + $558 = (_i64Add(($556|0),($557|0),($548|0),($549|0))|0); $559 = tempRet0; - $560 = (_i64Add(($558|0),($559|0),($540|0),($541|0))|0); + $560 = (_i64Add(($558|0),($559|0),($550|0),($551|0))|0); $561 = tempRet0; - $562 = (_i64Add(($560|0),($561|0),($538|0),($539|0))|0); + $562 = (_i64Add(($560|0),($561|0),($546|0),($547|0))|0); $563 = tempRet0; - $564 = (___muldi3(($130|0),($131|0),($38|0),0)|0); + $564 = (_i64Add(($562|0),($563|0),($544|0),($545|0))|0); $565 = tempRet0; - $566 = (___muldi3(($126|0),0,($44|0),0)|0); + $566 = (_i64Add(($564|0),($565|0),($542|0),($543|0))|0); $567 = tempRet0; - $568 = (___muldi3(($120|0),0,($48|0),0)|0); + $568 = (___muldi3(($134|0),($135|0),($42|0),0)|0); $569 = tempRet0; - $570 = (___muldi3(($114|0),0,($54|0),0)|0); + $570 = (___muldi3(($130|0),0,($48|0),0)|0); $571 = tempRet0; - $572 = (___muldi3(($110|0),0,($60|0),0)|0); + $572 = (___muldi3(($124|0),0,($52|0),0)|0); $573 = tempRet0; - $574 = (___muldi3(($104|0),0,($64|0),($65|0))|0); + $574 = (___muldi3(($118|0),0,($58|0),0)|0); $575 = tempRet0; - $576 = (___muldi3(($130|0),($131|0),($44|0),0)|0); + $576 = (___muldi3(($114|0),0,($64|0),0)|0); $577 = tempRet0; - $578 = (___muldi3(($126|0),0,($48|0),0)|0); + $578 = (___muldi3(($108|0),0,($68|0),($69|0))|0); $579 = tempRet0; - $580 = (___muldi3(($120|0),0,($54|0),0)|0); + $580 = (___muldi3(($134|0),($135|0),($48|0),0)|0); $581 = tempRet0; - $582 = (___muldi3(($114|0),0,($60|0),0)|0); + $582 = (___muldi3(($130|0),0,($52|0),0)|0); $583 = tempRet0; - $584 = (___muldi3(($110|0),0,($64|0),($65|0))|0); + $584 = (___muldi3(($124|0),0,($58|0),0)|0); $585 = tempRet0; - $586 = (_i64Add(($584|0),($585|0),($582|0),($583|0))|0); + $586 = (___muldi3(($118|0),0,($64|0),0)|0); $587 = tempRet0; - $588 = (_i64Add(($586|0),($587|0),($580|0),($581|0))|0); + $588 = (___muldi3(($114|0),0,($68|0),($69|0))|0); $589 = tempRet0; - $590 = (_i64Add(($588|0),($589|0),($578|0),($579|0))|0); + $590 = (_i64Add(($588|0),($589|0),($586|0),($587|0))|0); $591 = tempRet0; - $592 = (_i64Add(($590|0),($591|0),($576|0),($577|0))|0); + $592 = (_i64Add(($590|0),($591|0),($584|0),($585|0))|0); $593 = tempRet0; - $594 = (___muldi3(($130|0),($131|0),($48|0),0)|0); + $594 = (_i64Add(($592|0),($593|0),($582|0),($583|0))|0); $595 = tempRet0; - $596 = (___muldi3(($126|0),0,($54|0),0)|0); + $596 = (_i64Add(($594|0),($595|0),($580|0),($581|0))|0); $597 = tempRet0; - $598 = (___muldi3(($120|0),0,($60|0),0)|0); + $598 = (___muldi3(($134|0),($135|0),($52|0),0)|0); $599 = tempRet0; - $600 = (___muldi3(($114|0),0,($64|0),($65|0))|0); + $600 = (___muldi3(($130|0),0,($58|0),0)|0); $601 = tempRet0; - $602 = (___muldi3(($130|0),($131|0),($54|0),0)|0); + $602 = (___muldi3(($124|0),0,($64|0),0)|0); $603 = tempRet0; - $604 = (___muldi3(($126|0),0,($60|0),0)|0); + $604 = (___muldi3(($118|0),0,($68|0),($69|0))|0); $605 = tempRet0; - $606 = (___muldi3(($120|0),0,($64|0),($65|0))|0); + $606 = (___muldi3(($134|0),($135|0),($58|0),0)|0); $607 = tempRet0; - $608 = (_i64Add(($604|0),($605|0),($606|0),($607|0))|0); + $608 = (___muldi3(($130|0),0,($64|0),0)|0); $609 = tempRet0; - $610 = (_i64Add(($608|0),($609|0),($602|0),($603|0))|0); + $610 = (___muldi3(($124|0),0,($68|0),($69|0))|0); $611 = tempRet0; - $612 = (___muldi3(($130|0),($131|0),($60|0),0)|0); + $612 = (_i64Add(($608|0),($609|0),($610|0),($611|0))|0); $613 = tempRet0; - $614 = (___muldi3(($126|0),0,($64|0),($65|0))|0); + $614 = (_i64Add(($612|0),($613|0),($606|0),($607|0))|0); $615 = tempRet0; - $616 = (_i64Add(($612|0),($613|0),($614|0),($615|0))|0); + $616 = (___muldi3(($134|0),($135|0),($64|0),0)|0); $617 = tempRet0; - $618 = (___muldi3(($130|0),($131|0),($64|0),($65|0))|0); + $618 = (___muldi3(($130|0),0,($68|0),($69|0))|0); $619 = tempRet0; - $620 = (_i64Add(($200|0),($201|0),1048576,0)|0); + $620 = (_i64Add(($616|0),($617|0),($618|0),($619|0))|0); $621 = tempRet0; - $622 = (_bitshift64Lshr(($620|0),($621|0),21)|0); + $622 = (___muldi3(($134|0),($135|0),($68|0),($69|0))|0); $623 = tempRet0; - $624 = (_i64Add(($202|0),($203|0),($204|0),($205|0))|0); + $624 = (_i64Add(($204|0),($205|0),1048576,0)|0); $625 = tempRet0; - $626 = (_i64Add(($624|0),($625|0),($140|0),0)|0); + $626 = (_bitshift64Lshr(($624|0),($625|0),21)|0); $627 = tempRet0; - $628 = (_i64Add(($626|0),($627|0),($622|0),($623|0))|0); + $628 = (_i64Add(($206|0),($207|0),($208|0),($209|0))|0); $629 = tempRet0; - $630 = (_bitshift64Shl(($622|0),($623|0),21)|0); + $630 = (_i64Add(($628|0),($629|0),($144|0),0)|0); $631 = tempRet0; - $632 = (_i64Subtract(($200|0),($201|0),($630|0),($631|0))|0); + $632 = (_i64Add(($630|0),($631|0),($626|0),($627|0))|0); $633 = tempRet0; - $634 = (_i64Add(($216|0),($217|0),1048576,0)|0); + $634 = (_bitshift64Shl(($626|0),($627|0),21)|0); $635 = tempRet0; - $636 = (_bitshift64Lshr(($634|0),($635|0),21)|0); + $636 = (_i64Subtract(($204|0),($205|0),($634|0),($635|0))|0); $637 = tempRet0; - $638 = (_i64Add(($222|0),($223|0),($224|0),($225|0))|0); + $638 = (_i64Add(($220|0),($221|0),1048576,0)|0); $639 = tempRet0; - $640 = (_i64Add(($638|0),($639|0),($220|0),($221|0))|0); + $640 = (_bitshift64Lshr(($638|0),($639|0),21)|0); $641 = tempRet0; - $642 = (_i64Add(($640|0),($641|0),($218|0),($219|0))|0); + $642 = (_i64Add(($226|0),($227|0),($228|0),($229|0))|0); $643 = tempRet0; - $644 = (_i64Add(($642|0),($643|0),($152|0),0)|0); + $644 = (_i64Add(($642|0),($643|0),($224|0),($225|0))|0); $645 = tempRet0; - $646 = (_i64Add(($644|0),($645|0),($636|0),($637|0))|0); + $646 = (_i64Add(($644|0),($645|0),($222|0),($223|0))|0); $647 = tempRet0; - $648 = (_bitshift64Shl(($636|0),($637|0),21)|0); + $648 = (_i64Add(($646|0),($647|0),($156|0),0)|0); $649 = tempRet0; - $650 = (_i64Add(($244|0),($245|0),1048576,0)|0); + $650 = (_i64Add(($648|0),($649|0),($640|0),($641|0))|0); $651 = tempRet0; - $652 = (_bitshift64Ashr(($650|0),($651|0),21)|0); + $652 = (_bitshift64Shl(($640|0),($641|0),21)|0); $653 = tempRet0; - $654 = (_i64Add(($254|0),($255|0),($256|0),($257|0))|0); + $654 = (_i64Add(($248|0),($249|0),1048576,0)|0); $655 = tempRet0; - $656 = (_i64Add(($654|0),($655|0),($252|0),($253|0))|0); + $656 = (_bitshift64Ashr(($654|0),($655|0),21)|0); $657 = tempRet0; - $658 = (_i64Add(($656|0),($657|0),($250|0),($251|0))|0); + $658 = (_i64Add(($258|0),($259|0),($260|0),($261|0))|0); $659 = tempRet0; - $660 = (_i64Add(($658|0),($659|0),($248|0),($249|0))|0); + $660 = (_i64Add(($658|0),($659|0),($256|0),($257|0))|0); $661 = tempRet0; - $662 = (_i64Add(($660|0),($661|0),($246|0),($247|0))|0); + $662 = (_i64Add(($660|0),($661|0),($254|0),($255|0))|0); $663 = tempRet0; - $664 = (_i64Add(($662|0),($663|0),($164|0),0)|0); + $664 = (_i64Add(($662|0),($663|0),($252|0),($253|0))|0); $665 = tempRet0; - $666 = (_i64Add(($664|0),($665|0),($652|0),($653|0))|0); + $666 = (_i64Add(($664|0),($665|0),($250|0),($251|0))|0); $667 = tempRet0; - $668 = (_bitshift64Shl(($652|0),($653|0),21)|0); + $668 = (_i64Add(($666|0),($667|0),($168|0),0)|0); $669 = tempRet0; - $670 = (_i64Subtract(($244|0),($245|0),($668|0),($669|0))|0); + $670 = (_i64Add(($668|0),($669|0),($656|0),($657|0))|0); $671 = tempRet0; - $672 = (_i64Add(($284|0),($285|0),1048576,0)|0); + $672 = (_bitshift64Shl(($656|0),($657|0),21)|0); $673 = tempRet0; - $674 = (_bitshift64Ashr(($672|0),($673|0),21)|0); + $674 = (_i64Add(($288|0),($289|0),1048576,0)|0); $675 = tempRet0; - $676 = (_i64Add(($298|0),($299|0),($300|0),($301|0))|0); + $676 = (_bitshift64Ashr(($674|0),($675|0),21)|0); $677 = tempRet0; - $678 = (_i64Add(($676|0),($677|0),($296|0),($297|0))|0); + $678 = (_i64Add(($302|0),($303|0),($304|0),($305|0))|0); $679 = tempRet0; - $680 = (_i64Add(($678|0),($679|0),($294|0),($295|0))|0); + $680 = (_i64Add(($678|0),($679|0),($300|0),($301|0))|0); $681 = tempRet0; - $682 = (_i64Add(($680|0),($681|0),($292|0),($293|0))|0); + $682 = (_i64Add(($680|0),($681|0),($298|0),($299|0))|0); $683 = tempRet0; - $684 = (_i64Add(($682|0),($683|0),($290|0),($291|0))|0); + $684 = (_i64Add(($682|0),($683|0),($296|0),($297|0))|0); $685 = tempRet0; - $686 = (_i64Add(($684|0),($685|0),($288|0),($289|0))|0); + $686 = (_i64Add(($684|0),($685|0),($294|0),($295|0))|0); $687 = tempRet0; - $688 = (_i64Add(($686|0),($687|0),($286|0),($287|0))|0); + $688 = (_i64Add(($686|0),($687|0),($292|0),($293|0))|0); $689 = tempRet0; - $690 = (_i64Add(($688|0),($689|0),($176|0),0)|0); + $690 = (_i64Add(($688|0),($689|0),($290|0),($291|0))|0); $691 = tempRet0; - $692 = (_i64Add(($690|0),($691|0),($674|0),($675|0))|0); + $692 = (_i64Add(($690|0),($691|0),($180|0),0)|0); $693 = tempRet0; - $694 = (_bitshift64Shl(($674|0),($675|0),21)|0); + $694 = (_i64Add(($692|0),($693|0),($676|0),($677|0))|0); $695 = tempRet0; - $696 = (_i64Add(($336|0),($337|0),1048576,0)|0); + $696 = (_bitshift64Shl(($676|0),($677|0),21)|0); $697 = tempRet0; - $698 = (_bitshift64Ashr(($696|0),($697|0),21)|0); + $698 = (_i64Add(($340|0),($341|0),1048576,0)|0); $699 = tempRet0; - $700 = (_i64Add(($354|0),($355|0),($356|0),($357|0))|0); + $700 = (_bitshift64Ashr(($698|0),($699|0),21)|0); $701 = tempRet0; - $702 = (_i64Add(($700|0),($701|0),($352|0),($353|0))|0); + $702 = (_i64Add(($358|0),($359|0),($360|0),($361|0))|0); $703 = tempRet0; - $704 = (_i64Add(($702|0),($703|0),($350|0),($351|0))|0); + $704 = (_i64Add(($702|0),($703|0),($356|0),($357|0))|0); $705 = tempRet0; - $706 = (_i64Add(($704|0),($705|0),($348|0),($349|0))|0); + $706 = (_i64Add(($704|0),($705|0),($354|0),($355|0))|0); $707 = tempRet0; - $708 = (_i64Add(($706|0),($707|0),($346|0),($347|0))|0); + $708 = (_i64Add(($706|0),($707|0),($352|0),($353|0))|0); $709 = tempRet0; - $710 = (_i64Add(($708|0),($709|0),($344|0),($345|0))|0); + $710 = (_i64Add(($708|0),($709|0),($350|0),($351|0))|0); $711 = tempRet0; - $712 = (_i64Add(($710|0),($711|0),($340|0),($341|0))|0); + $712 = (_i64Add(($710|0),($711|0),($348|0),($349|0))|0); $713 = tempRet0; - $714 = (_i64Add(($712|0),($713|0),($342|0),($343|0))|0); + $714 = (_i64Add(($712|0),($713|0),($344|0),($345|0))|0); $715 = tempRet0; - $716 = (_i64Add(($714|0),($715|0),($338|0),($339|0))|0); + $716 = (_i64Add(($714|0),($715|0),($346|0),($347|0))|0); $717 = tempRet0; - $718 = (_i64Add(($716|0),($717|0),($186|0),0)|0); + $718 = (_i64Add(($716|0),($717|0),($342|0),($343|0))|0); $719 = tempRet0; - $720 = (_i64Add(($718|0),($719|0),($698|0),($699|0))|0); + $720 = (_i64Add(($718|0),($719|0),($190|0),0)|0); $721 = tempRet0; - $722 = (_bitshift64Shl(($698|0),($699|0),21)|0); + $722 = (_i64Add(($720|0),($721|0),($700|0),($701|0))|0); $723 = tempRet0; - $724 = (_i64Add(($400|0),($401|0),1048576,0)|0); + $724 = (_bitshift64Shl(($700|0),($701|0),21)|0); $725 = tempRet0; - $726 = (_bitshift64Ashr(($724|0),($725|0),21)|0); + $726 = (_i64Add(($404|0),($405|0),1048576,0)|0); $727 = tempRet0; - $728 = (_i64Add(($422|0),($423|0),($424|0),($425|0))|0); + $728 = (_bitshift64Ashr(($726|0),($727|0),21)|0); $729 = tempRet0; - $730 = (_i64Add(($728|0),($729|0),($420|0),($421|0))|0); + $730 = (_i64Add(($426|0),($427|0),($428|0),($429|0))|0); $731 = tempRet0; - $732 = (_i64Add(($730|0),($731|0),($418|0),($419|0))|0); + $732 = (_i64Add(($730|0),($731|0),($424|0),($425|0))|0); $733 = tempRet0; - $734 = (_i64Add(($732|0),($733|0),($416|0),($417|0))|0); + $734 = (_i64Add(($732|0),($733|0),($422|0),($423|0))|0); $735 = tempRet0; - $736 = (_i64Add(($734|0),($735|0),($414|0),($415|0))|0); + $736 = (_i64Add(($734|0),($735|0),($420|0),($421|0))|0); $737 = tempRet0; - $738 = (_i64Add(($736|0),($737|0),($412|0),($413|0))|0); + $738 = (_i64Add(($736|0),($737|0),($418|0),($419|0))|0); $739 = tempRet0; - $740 = (_i64Add(($738|0),($739|0),($408|0),($409|0))|0); + $740 = (_i64Add(($738|0),($739|0),($416|0),($417|0))|0); $741 = tempRet0; - $742 = (_i64Add(($740|0),($741|0),($410|0),($411|0))|0); + $742 = (_i64Add(($740|0),($741|0),($412|0),($413|0))|0); $743 = tempRet0; - $744 = (_i64Add(($742|0),($743|0),($406|0),($407|0))|0); + $744 = (_i64Add(($742|0),($743|0),($414|0),($415|0))|0); $745 = tempRet0; - $746 = (_i64Add(($744|0),($745|0),($402|0),($403|0))|0); + $746 = (_i64Add(($744|0),($745|0),($410|0),($411|0))|0); $747 = tempRet0; - $748 = (_i64Add(($746|0),($747|0),($404|0),($405|0))|0); + $748 = (_i64Add(($746|0),($747|0),($406|0),($407|0))|0); $749 = tempRet0; - $750 = (_i64Add(($748|0),($749|0),($196|0),($197|0))|0); + $750 = (_i64Add(($748|0),($749|0),($408|0),($409|0))|0); $751 = tempRet0; - $752 = (_i64Add(($750|0),($751|0),($726|0),($727|0))|0); + $752 = (_i64Add(($750|0),($751|0),($200|0),($201|0))|0); $753 = tempRet0; - $754 = (_bitshift64Shl(($726|0),($727|0),21)|0); + $754 = (_i64Add(($752|0),($753|0),($728|0),($729|0))|0); $755 = tempRet0; - $756 = (_i64Subtract(($400|0),($401|0),($754|0),($755|0))|0); + $756 = (_bitshift64Shl(($728|0),($729|0),21)|0); $757 = tempRet0; - $758 = (_i64Add(($466|0),($467|0),1048576,0)|0); + $758 = (_i64Add(($470|0),($471|0),1048576,0)|0); $759 = tempRet0; $760 = (_bitshift64Ashr(($758|0),($759|0),21)|0); $761 = tempRet0; - $762 = (_i64Add(($484|0),($485|0),($486|0),($487|0))|0); + $762 = (_i64Add(($488|0),($489|0),($490|0),($491|0))|0); $763 = tempRet0; - $764 = (_i64Add(($762|0),($763|0),($482|0),($483|0))|0); + $764 = (_i64Add(($762|0),($763|0),($486|0),($487|0))|0); $765 = tempRet0; - $766 = (_i64Add(($764|0),($765|0),($480|0),($481|0))|0); + $766 = (_i64Add(($764|0),($765|0),($484|0),($485|0))|0); $767 = tempRet0; - $768 = (_i64Add(($766|0),($767|0),($478|0),($479|0))|0); + $768 = (_i64Add(($766|0),($767|0),($482|0),($483|0))|0); $769 = tempRet0; - $770 = (_i64Add(($768|0),($769|0),($474|0),($475|0))|0); + $770 = (_i64Add(($768|0),($769|0),($478|0),($479|0))|0); $771 = tempRet0; - $772 = (_i64Add(($770|0),($771|0),($476|0),($477|0))|0); + $772 = (_i64Add(($770|0),($771|0),($480|0),($481|0))|0); $773 = tempRet0; - $774 = (_i64Add(($772|0),($773|0),($472|0),($473|0))|0); + $774 = (_i64Add(($772|0),($773|0),($476|0),($477|0))|0); $775 = tempRet0; - $776 = (_i64Add(($774|0),($775|0),($470|0),($471|0))|0); + $776 = (_i64Add(($774|0),($775|0),($474|0),($475|0))|0); $777 = tempRet0; - $778 = (_i64Add(($776|0),($777|0),($468|0),($469|0))|0); + $778 = (_i64Add(($776|0),($777|0),($472|0),($473|0))|0); $779 = tempRet0; $780 = (_i64Add(($778|0),($779|0),($760|0),($761|0))|0); $781 = tempRet0; $782 = (_bitshift64Shl(($760|0),($761|0),21)|0); $783 = tempRet0; - $784 = (_i64Subtract(($466|0),($467|0),($782|0),($783|0))|0); + $784 = (_i64Add(($524|0),($525|0),1048576,0)|0); $785 = tempRet0; - $786 = (_i64Add(($520|0),($521|0),1048576,0)|0); + $786 = (_bitshift64Ashr(($784|0),($785|0),21)|0); $787 = tempRet0; - $788 = (_bitshift64Ashr(($786|0),($787|0),21)|0); + $788 = (_i64Add(($538|0),($539|0),($540|0),($541|0))|0); $789 = tempRet0; - $790 = (_i64Add(($534|0),($535|0),($536|0),($537|0))|0); + $790 = (_i64Add(($788|0),($789|0),($536|0),($537|0))|0); $791 = tempRet0; $792 = (_i64Add(($790|0),($791|0),($532|0),($533|0))|0); $793 = tempRet0; - $794 = (_i64Add(($792|0),($793|0),($528|0),($529|0))|0); + $794 = (_i64Add(($792|0),($793|0),($534|0),($535|0))|0); $795 = tempRet0; $796 = (_i64Add(($794|0),($795|0),($530|0),($531|0))|0); $797 = tempRet0; - $798 = (_i64Add(($796|0),($797|0),($526|0),($527|0))|0); + $798 = (_i64Add(($796|0),($797|0),($528|0),($529|0))|0); $799 = tempRet0; - $800 = (_i64Add(($798|0),($799|0),($524|0),($525|0))|0); + $800 = (_i64Add(($798|0),($799|0),($526|0),($527|0))|0); $801 = tempRet0; - $802 = (_i64Add(($800|0),($801|0),($522|0),($523|0))|0); + $802 = (_i64Add(($800|0),($801|0),($786|0),($787|0))|0); $803 = tempRet0; - $804 = (_i64Add(($802|0),($803|0),($788|0),($789|0))|0); + $804 = (_bitshift64Shl(($786|0),($787|0),21)|0); $805 = tempRet0; - $806 = (_bitshift64Shl(($788|0),($789|0),21)|0); + $806 = (_i64Add(($566|0),($567|0),1048576,0)|0); $807 = tempRet0; - $808 = (_i64Subtract(($520|0),($521|0),($806|0),($807|0))|0); + $808 = (_bitshift64Ashr(($806|0),($807|0),21)|0); $809 = tempRet0; - $810 = (_i64Add(($562|0),($563|0),1048576,0)|0); + $810 = (_i64Add(($574|0),($575|0),($578|0),($579|0))|0); $811 = tempRet0; - $812 = (_bitshift64Ashr(($810|0),($811|0),21)|0); + $812 = (_i64Add(($810|0),($811|0),($576|0),($577|0))|0); $813 = tempRet0; - $814 = (_i64Add(($570|0),($571|0),($574|0),($575|0))|0); + $814 = (_i64Add(($812|0),($813|0),($572|0),($573|0))|0); $815 = tempRet0; - $816 = (_i64Add(($814|0),($815|0),($572|0),($573|0))|0); + $816 = (_i64Add(($814|0),($815|0),($570|0),($571|0))|0); $817 = tempRet0; $818 = (_i64Add(($816|0),($817|0),($568|0),($569|0))|0); $819 = tempRet0; - $820 = (_i64Add(($818|0),($819|0),($566|0),($567|0))|0); + $820 = (_i64Add(($818|0),($819|0),($808|0),($809|0))|0); $821 = tempRet0; - $822 = (_i64Add(($820|0),($821|0),($564|0),($565|0))|0); + $822 = (_bitshift64Shl(($808|0),($809|0),21)|0); $823 = tempRet0; - $824 = (_i64Add(($822|0),($823|0),($812|0),($813|0))|0); + $824 = (_i64Add(($596|0),($597|0),1048576,0)|0); $825 = tempRet0; - $826 = (_bitshift64Shl(($812|0),($813|0),21)|0); + $826 = (_bitshift64Ashr(($824|0),($825|0),21)|0); $827 = tempRet0; - $828 = (_i64Subtract(($562|0),($563|0),($826|0),($827|0))|0); + $828 = (_i64Add(($602|0),($603|0),($604|0),($605|0))|0); $829 = tempRet0; - $830 = (_i64Add(($592|0),($593|0),1048576,0)|0); + $830 = (_i64Add(($828|0),($829|0),($600|0),($601|0))|0); $831 = tempRet0; - $832 = (_bitshift64Ashr(($830|0),($831|0),21)|0); + $832 = (_i64Add(($830|0),($831|0),($598|0),($599|0))|0); $833 = tempRet0; - $834 = (_i64Add(($598|0),($599|0),($600|0),($601|0))|0); + $834 = (_i64Add(($832|0),($833|0),($826|0),($827|0))|0); $835 = tempRet0; - $836 = (_i64Add(($834|0),($835|0),($596|0),($597|0))|0); + $836 = (_bitshift64Shl(($826|0),($827|0),21)|0); $837 = tempRet0; - $838 = (_i64Add(($836|0),($837|0),($594|0),($595|0))|0); + $838 = (_i64Subtract(($596|0),($597|0),($836|0),($837|0))|0); $839 = tempRet0; - $840 = (_i64Add(($838|0),($839|0),($832|0),($833|0))|0); + $840 = (_i64Add(($614|0),($615|0),1048576,0)|0); $841 = tempRet0; - $842 = (_bitshift64Shl(($832|0),($833|0),21)|0); + $842 = (_bitshift64Lshr(($840|0),($841|0),21)|0); $843 = tempRet0; - $844 = (_i64Subtract(($592|0),($593|0),($842|0),($843|0))|0); + $844 = (_i64Add(($620|0),($621|0),($842|0),($843|0))|0); $845 = tempRet0; - $846 = (_i64Add(($610|0),($611|0),1048576,0)|0); + $846 = (_bitshift64Shl(($842|0),($843|0),21)|0); $847 = tempRet0; - $848 = (_bitshift64Lshr(($846|0),($847|0),21)|0); + $848 = (_i64Subtract(($614|0),($615|0),($846|0),($847|0))|0); $849 = tempRet0; - $850 = (_i64Add(($616|0),($617|0),($848|0),($849|0))|0); + $850 = (_i64Add(($622|0),($623|0),1048576,0)|0); $851 = tempRet0; - $852 = (_bitshift64Shl(($848|0),($849|0),21)|0); + $852 = (_bitshift64Lshr(($850|0),($851|0),21)|0); $853 = tempRet0; - $854 = (_i64Subtract(($610|0),($611|0),($852|0),($853|0))|0); + $854 = (_bitshift64Shl(($852|0),($853|0),21)|0); $855 = tempRet0; - $856 = (_i64Add(($618|0),($619|0),1048576,0)|0); + $856 = (_i64Subtract(($622|0),($623|0),($854|0),($855|0))|0); $857 = tempRet0; - $858 = (_bitshift64Lshr(($856|0),($857|0),21)|0); + $858 = (_i64Add(($632|0),($633|0),1048576,0)|0); $859 = tempRet0; - $860 = (_bitshift64Shl(($858|0),($859|0),21)|0); + $860 = (_bitshift64Lshr(($858|0),($859|0),21)|0); $861 = tempRet0; - $862 = (_i64Subtract(($618|0),($619|0),($860|0),($861|0))|0); + $862 = (_bitshift64Shl(($860|0),($861|0),21)|0); $863 = tempRet0; - $864 = (_i64Add(($628|0),($629|0),1048576,0)|0); + $864 = (_i64Subtract(($632|0),($633|0),($862|0),($863|0))|0); $865 = tempRet0; - $866 = (_bitshift64Lshr(($864|0),($865|0),21)|0); + $866 = (_i64Add(($650|0),($651|0),1048576,0)|0); $867 = tempRet0; - $868 = (_bitshift64Shl(($866|0),($867|0),21)|0); + $868 = (_bitshift64Ashr(($866|0),($867|0),21)|0); $869 = tempRet0; - $870 = (_i64Subtract(($628|0),($629|0),($868|0),($869|0))|0); + $870 = (_bitshift64Shl(($868|0),($869|0),21)|0); $871 = tempRet0; - $872 = (_i64Add(($646|0),($647|0),1048576,0)|0); + $872 = (_i64Subtract(($650|0),($651|0),($870|0),($871|0))|0); $873 = tempRet0; - $874 = (_bitshift64Ashr(($872|0),($873|0),21)|0); + $874 = (_i64Add(($670|0),($671|0),1048576,0)|0); $875 = tempRet0; - $876 = (_i64Add(($874|0),($875|0),($670|0),($671|0))|0); + $876 = (_bitshift64Ashr(($874|0),($875|0),21)|0); $877 = tempRet0; - $878 = (_bitshift64Shl(($874|0),($875|0),21)|0); + $878 = (_bitshift64Shl(($876|0),($877|0),21)|0); $879 = tempRet0; - $880 = (_i64Subtract(($646|0),($647|0),($878|0),($879|0))|0); + $880 = (_i64Subtract(($670|0),($671|0),($878|0),($879|0))|0); $881 = tempRet0; - $882 = (_i64Add(($666|0),($667|0),1048576,0)|0); + $882 = (_i64Add(($694|0),($695|0),1048576,0)|0); $883 = tempRet0; $884 = (_bitshift64Ashr(($882|0),($883|0),21)|0); $885 = tempRet0; $886 = (_bitshift64Shl(($884|0),($885|0),21)|0); $887 = tempRet0; - $888 = (_i64Subtract(($666|0),($667|0),($886|0),($887|0))|0); + $888 = (_i64Add(($722|0),($723|0),1048576,0)|0); $889 = tempRet0; - $890 = (_i64Add(($692|0),($693|0),1048576,0)|0); + $890 = (_bitshift64Ashr(($888|0),($889|0),21)|0); $891 = tempRet0; - $892 = (_bitshift64Ashr(($890|0),($891|0),21)|0); + $892 = (_bitshift64Shl(($890|0),($891|0),21)|0); $893 = tempRet0; - $894 = (_bitshift64Shl(($892|0),($893|0),21)|0); + $894 = (_i64Add(($754|0),($755|0),1048576,0)|0); $895 = tempRet0; - $896 = (_i64Add(($720|0),($721|0),1048576,0)|0); + $896 = (_bitshift64Ashr(($894|0),($895|0),21)|0); $897 = tempRet0; - $898 = (_bitshift64Ashr(($896|0),($897|0),21)|0); + $898 = (_bitshift64Shl(($896|0),($897|0),21)|0); $899 = tempRet0; - $900 = (_i64Add(($898|0),($899|0),($756|0),($757|0))|0); + $900 = (_i64Add(($780|0),($781|0),1048576,0)|0); $901 = tempRet0; - $902 = (_bitshift64Shl(($898|0),($899|0),21)|0); + $902 = (_bitshift64Ashr(($900|0),($901|0),21)|0); $903 = tempRet0; - $904 = (_i64Subtract(($720|0),($721|0),($902|0),($903|0))|0); + $904 = (_bitshift64Shl(($902|0),($903|0),21)|0); $905 = tempRet0; - $906 = (_i64Add(($752|0),($753|0),1048576,0)|0); + $906 = (_i64Add(($802|0),($803|0),1048576,0)|0); $907 = tempRet0; $908 = (_bitshift64Ashr(($906|0),($907|0),21)|0); $909 = tempRet0; - $910 = (_i64Add(($784|0),($785|0),($908|0),($909|0))|0); + $910 = (_bitshift64Shl(($908|0),($909|0),21)|0); $911 = tempRet0; - $912 = (_bitshift64Shl(($908|0),($909|0),21)|0); + $912 = (_i64Add(($820|0),($821|0),1048576,0)|0); $913 = tempRet0; - $914 = (_i64Subtract(($752|0),($753|0),($912|0),($913|0))|0); + $914 = (_bitshift64Ashr(($912|0),($913|0),21)|0); $915 = tempRet0; - $916 = (_i64Add(($780|0),($781|0),1048576,0)|0); + $916 = (_i64Add(($914|0),($915|0),($838|0),($839|0))|0); $917 = tempRet0; - $918 = (_bitshift64Ashr(($916|0),($917|0),21)|0); + $918 = (_bitshift64Shl(($914|0),($915|0),21)|0); $919 = tempRet0; - $920 = (_i64Add(($808|0),($809|0),($918|0),($919|0))|0); + $920 = (_i64Subtract(($820|0),($821|0),($918|0),($919|0))|0); $921 = tempRet0; - $922 = (_bitshift64Shl(($918|0),($919|0),21)|0); + $922 = (_i64Add(($834|0),($835|0),1048576,0)|0); $923 = tempRet0; - $924 = (_i64Subtract(($780|0),($781|0),($922|0),($923|0))|0); + $924 = (_bitshift64Ashr(($922|0),($923|0),21)|0); $925 = tempRet0; - $926 = (_i64Add(($804|0),($805|0),1048576,0)|0); + $926 = (_i64Add(($924|0),($925|0),($848|0),($849|0))|0); $927 = tempRet0; - $928 = (_bitshift64Ashr(($926|0),($927|0),21)|0); + $928 = (_bitshift64Shl(($924|0),($925|0),21)|0); $929 = tempRet0; - $930 = (_i64Add(($828|0),($829|0),($928|0),($929|0))|0); + $930 = (_i64Subtract(($834|0),($835|0),($928|0),($929|0))|0); $931 = tempRet0; - $932 = (_bitshift64Shl(($928|0),($929|0),21)|0); + $932 = (_i64Add(($844|0),($845|0),1048576,0)|0); $933 = tempRet0; - $934 = (_i64Subtract(($804|0),($805|0),($932|0),($933|0))|0); + $934 = (_bitshift64Lshr(($932|0),($933|0),21)|0); $935 = tempRet0; - $936 = (_i64Add(($824|0),($825|0),1048576,0)|0); + $936 = (_i64Add(($934|0),($935|0),($856|0),($857|0))|0); $937 = tempRet0; - $938 = (_bitshift64Ashr(($936|0),($937|0),21)|0); + $938 = (_bitshift64Shl(($934|0),($935|0),21)|0); $939 = tempRet0; - $940 = (_i64Add(($938|0),($939|0),($844|0),($845|0))|0); + $940 = (_i64Subtract(($844|0),($845|0),($938|0),($939|0))|0); $941 = tempRet0; - $942 = (_bitshift64Shl(($938|0),($939|0),21)|0); + $942 = (___muldi3(($852|0),($853|0),666643,0)|0); $943 = tempRet0; - $944 = (_i64Subtract(($824|0),($825|0),($942|0),($943|0))|0); + $944 = (___muldi3(($852|0),($853|0),470296,0)|0); $945 = tempRet0; - $946 = (_i64Add(($840|0),($841|0),1048576,0)|0); + $946 = (___muldi3(($852|0),($853|0),654183,0)|0); $947 = tempRet0; - $948 = (_bitshift64Ashr(($946|0),($947|0),21)|0); + $948 = (___muldi3(($852|0),($853|0),-997805,-1)|0); $949 = tempRet0; - $950 = (_i64Add(($948|0),($949|0),($854|0),($855|0))|0); + $950 = (___muldi3(($852|0),($853|0),136657,0)|0); $951 = tempRet0; - $952 = (_bitshift64Shl(($948|0),($949|0),21)|0); + $952 = (___muldi3(($852|0),($853|0),-683901,-1)|0); $953 = tempRet0; - $954 = (_i64Subtract(($840|0),($841|0),($952|0),($953|0))|0); + $954 = (_i64Add(($566|0),($567|0),($952|0),($953|0))|0); $955 = tempRet0; - $956 = (_i64Add(($850|0),($851|0),1048576,0)|0); + $956 = (_i64Subtract(($954|0),($955|0),($822|0),($823|0))|0); $957 = tempRet0; - $958 = (_bitshift64Lshr(($956|0),($957|0),21)|0); + $958 = (_i64Add(($956|0),($957|0),($908|0),($909|0))|0); $959 = tempRet0; - $960 = (_i64Add(($958|0),($959|0),($862|0),($863|0))|0); + $960 = (___muldi3(($936|0),($937|0),666643,0)|0); $961 = tempRet0; - $962 = (_bitshift64Shl(($958|0),($959|0),21)|0); + $962 = (___muldi3(($936|0),($937|0),470296,0)|0); $963 = tempRet0; - $964 = (_i64Subtract(($850|0),($851|0),($962|0),($963|0))|0); + $964 = (___muldi3(($936|0),($937|0),654183,0)|0); $965 = tempRet0; - $966 = (___muldi3(($858|0),($859|0),666643,0)|0); + $966 = (___muldi3(($936|0),($937|0),-997805,-1)|0); $967 = tempRet0; - $968 = (_i64Add(($966|0),($967|0),($914|0),($915|0))|0); + $968 = (___muldi3(($936|0),($937|0),136657,0)|0); $969 = tempRet0; - $970 = (___muldi3(($858|0),($859|0),470296,0)|0); + $970 = (___muldi3(($936|0),($937|0),-683901,-1)|0); $971 = tempRet0; - $972 = (_i64Add(($970|0),($971|0),($910|0),($911|0))|0); + $972 = (___muldi3(($940|0),($941|0),666643,0)|0); $973 = tempRet0; - $974 = (___muldi3(($858|0),($859|0),654183,0)|0); + $974 = (___muldi3(($940|0),($941|0),470296,0)|0); $975 = tempRet0; - $976 = (_i64Add(($974|0),($975|0),($924|0),($925|0))|0); + $976 = (___muldi3(($940|0),($941|0),654183,0)|0); $977 = tempRet0; - $978 = (___muldi3(($858|0),($859|0),-997805,-1)|0); + $978 = (___muldi3(($940|0),($941|0),-997805,-1)|0); $979 = tempRet0; - $980 = (_i64Add(($978|0),($979|0),($920|0),($921|0))|0); + $980 = (___muldi3(($940|0),($941|0),136657,0)|0); $981 = tempRet0; - $982 = (___muldi3(($858|0),($859|0),136657,0)|0); + $982 = (___muldi3(($940|0),($941|0),-683901,-1)|0); $983 = tempRet0; - $984 = (_i64Add(($982|0),($983|0),($934|0),($935|0))|0); + $984 = (_i64Add(($524|0),($525|0),($948|0),($949|0))|0); $985 = tempRet0; - $986 = (___muldi3(($858|0),($859|0),-683901,-1)|0); + $986 = (_i64Add(($984|0),($985|0),($968|0),($969|0))|0); $987 = tempRet0; - $988 = (_i64Add(($930|0),($931|0),($986|0),($987|0))|0); + $988 = (_i64Add(($986|0),($987|0),($982|0),($983|0))|0); $989 = tempRet0; - $990 = (___muldi3(($960|0),($961|0),666643,0)|0); + $990 = (_i64Subtract(($988|0),($989|0),($804|0),($805|0))|0); $991 = tempRet0; - $992 = (_i64Add(($990|0),($991|0),($900|0),($901|0))|0); + $992 = (_i64Add(($990|0),($991|0),($902|0),($903|0))|0); $993 = tempRet0; - $994 = (___muldi3(($960|0),($961|0),470296,0)|0); + $994 = (___muldi3(($926|0),($927|0),666643,0)|0); $995 = tempRet0; - $996 = (_i64Add(($994|0),($995|0),($968|0),($969|0))|0); + $996 = (___muldi3(($926|0),($927|0),470296,0)|0); $997 = tempRet0; - $998 = (___muldi3(($960|0),($961|0),654183,0)|0); + $998 = (___muldi3(($926|0),($927|0),654183,0)|0); $999 = tempRet0; - $1000 = (_i64Add(($998|0),($999|0),($972|0),($973|0))|0); + $1000 = (___muldi3(($926|0),($927|0),-997805,-1)|0); $1001 = tempRet0; - $1002 = (___muldi3(($960|0),($961|0),-997805,-1)|0); + $1002 = (___muldi3(($926|0),($927|0),136657,0)|0); $1003 = tempRet0; - $1004 = (_i64Add(($1002|0),($1003|0),($976|0),($977|0))|0); + $1004 = (___muldi3(($926|0),($927|0),-683901,-1)|0); $1005 = tempRet0; - $1006 = (___muldi3(($960|0),($961|0),136657,0)|0); + $1006 = (___muldi3(($930|0),($931|0),666643,0)|0); $1007 = tempRet0; - $1008 = (_i64Add(($1006|0),($1007|0),($980|0),($981|0))|0); + $1008 = (___muldi3(($930|0),($931|0),470296,0)|0); $1009 = tempRet0; - $1010 = (___muldi3(($960|0),($961|0),-683901,-1)|0); + $1010 = (___muldi3(($930|0),($931|0),654183,0)|0); $1011 = tempRet0; - $1012 = (_i64Add(($984|0),($985|0),($1010|0),($1011|0))|0); + $1012 = (___muldi3(($930|0),($931|0),-997805,-1)|0); $1013 = tempRet0; - $1014 = (___muldi3(($964|0),($965|0),666643,0)|0); + $1014 = (___muldi3(($930|0),($931|0),136657,0)|0); $1015 = tempRet0; - $1016 = (_i64Add(($1014|0),($1015|0),($904|0),($905|0))|0); + $1016 = (___muldi3(($930|0),($931|0),-683901,-1)|0); $1017 = tempRet0; - $1018 = (___muldi3(($964|0),($965|0),470296,0)|0); + $1018 = (_i64Add(($964|0),($965|0),($944|0),($945|0))|0); $1019 = tempRet0; - $1020 = (_i64Add(($1018|0),($1019|0),($992|0),($993|0))|0); + $1020 = (_i64Add(($1018|0),($1019|0),($470|0),($471|0))|0); $1021 = tempRet0; - $1022 = (___muldi3(($964|0),($965|0),654183,0)|0); + $1022 = (_i64Add(($1020|0),($1021|0),($978|0),($979|0))|0); $1023 = tempRet0; - $1024 = (_i64Add(($1022|0),($1023|0),($996|0),($997|0))|0); + $1024 = (_i64Add(($1022|0),($1023|0),($1002|0),($1003|0))|0); $1025 = tempRet0; - $1026 = (___muldi3(($964|0),($965|0),-997805,-1)|0); + $1026 = (_i64Add(($1024|0),($1025|0),($1016|0),($1017|0))|0); $1027 = tempRet0; - $1028 = (_i64Add(($1026|0),($1027|0),($1000|0),($1001|0))|0); + $1028 = (_i64Subtract(($1026|0),($1027|0),($782|0),($783|0))|0); $1029 = tempRet0; - $1030 = (___muldi3(($964|0),($965|0),136657,0)|0); + $1030 = (_i64Add(($1028|0),($1029|0),($896|0),($897|0))|0); $1031 = tempRet0; - $1032 = (_i64Add(($1030|0),($1031|0),($1004|0),($1005|0))|0); + $1032 = (___muldi3(($916|0),($917|0),666643,0)|0); $1033 = tempRet0; - $1034 = (___muldi3(($964|0),($965|0),-683901,-1)|0); + $1034 = (_i64Add(($288|0),($289|0),($1032|0),($1033|0))|0); $1035 = tempRet0; - $1036 = (_i64Add(($1008|0),($1009|0),($1034|0),($1035|0))|0); + $1036 = (_i64Add(($1034|0),($1035|0),($876|0),($877|0))|0); $1037 = tempRet0; - $1038 = (___muldi3(($950|0),($951|0),666643,0)|0); + $1038 = (_i64Subtract(($1036|0),($1037|0),($696|0),($697|0))|0); $1039 = tempRet0; - $1040 = (___muldi3(($950|0),($951|0),470296,0)|0); + $1040 = (___muldi3(($916|0),($917|0),470296,0)|0); $1041 = tempRet0; - $1042 = (_i64Add(($1040|0),($1041|0),($1016|0),($1017|0))|0); + $1042 = (___muldi3(($916|0),($917|0),654183,0)|0); $1043 = tempRet0; - $1044 = (___muldi3(($950|0),($951|0),654183,0)|0); + $1044 = (_i64Add(($1008|0),($1009|0),($994|0),($995|0))|0); $1045 = tempRet0; - $1046 = (_i64Add(($1044|0),($1045|0),($1020|0),($1021|0))|0); + $1046 = (_i64Add(($1044|0),($1045|0),($1042|0),($1043|0))|0); $1047 = tempRet0; - $1048 = (___muldi3(($950|0),($951|0),-997805,-1)|0); + $1048 = (_i64Add(($1046|0),($1047|0),($340|0),($341|0))|0); $1049 = tempRet0; - $1050 = (_i64Add(($1048|0),($1049|0),($1024|0),($1025|0))|0); + $1050 = (_i64Add(($1048|0),($1049|0),($884|0),($885|0))|0); $1051 = tempRet0; - $1052 = (___muldi3(($950|0),($951|0),136657,0)|0); + $1052 = (_i64Subtract(($1050|0),($1051|0),($724|0),($725|0))|0); $1053 = tempRet0; - $1054 = (_i64Add(($1052|0),($1053|0),($1028|0),($1029|0))|0); + $1054 = (___muldi3(($916|0),($917|0),-997805,-1)|0); $1055 = tempRet0; - $1056 = (___muldi3(($950|0),($951|0),-683901,-1)|0); + $1056 = (___muldi3(($916|0),($917|0),136657,0)|0); $1057 = tempRet0; - $1058 = (_i64Add(($1032|0),($1033|0),($1056|0),($1057|0))|0); + $1058 = (_i64Add(($974|0),($975|0),($960|0),($961|0))|0); $1059 = tempRet0; - $1060 = (___muldi3(($954|0),($955|0),666643,0)|0); + $1060 = (_i64Add(($1058|0),($1059|0),($998|0),($999|0))|0); $1061 = tempRet0; - $1062 = (___muldi3(($954|0),($955|0),470296,0)|0); + $1062 = (_i64Add(($1060|0),($1061|0),($1012|0),($1013|0))|0); $1063 = tempRet0; - $1064 = (___muldi3(($954|0),($955|0),654183,0)|0); + $1064 = (_i64Add(($1062|0),($1063|0),($1056|0),($1057|0))|0); $1065 = tempRet0; - $1066 = (_i64Add(($1064|0),($1065|0),($1042|0),($1043|0))|0); + $1066 = (_i64Add(($1064|0),($1065|0),($404|0),($405|0))|0); $1067 = tempRet0; - $1068 = (___muldi3(($954|0),($955|0),-997805,-1)|0); + $1068 = (_i64Add(($1066|0),($1067|0),($890|0),($891|0))|0); $1069 = tempRet0; - $1070 = (_i64Add(($1046|0),($1047|0),($1068|0),($1069|0))|0); + $1070 = (_i64Subtract(($1068|0),($1069|0),($756|0),($757|0))|0); $1071 = tempRet0; - $1072 = (___muldi3(($954|0),($955|0),136657,0)|0); + $1072 = (___muldi3(($916|0),($917|0),-683901,-1)|0); $1073 = tempRet0; - $1074 = (_i64Add(($1072|0),($1073|0),($1050|0),($1051|0))|0); + $1074 = (_i64Add(($1038|0),($1039|0),1048576,0)|0); $1075 = tempRet0; - $1076 = (___muldi3(($954|0),($955|0),-683901,-1)|0); + $1076 = (_bitshift64Ashr(($1074|0),($1075|0),21)|0); $1077 = tempRet0; - $1078 = (_i64Add(($1054|0),($1055|0),($1076|0),($1077|0))|0); + $1078 = (_i64Add(($1040|0),($1041|0),($1006|0),($1007|0))|0); $1079 = tempRet0; - $1080 = (___muldi3(($940|0),($941|0),666643,0)|0); + $1080 = (_i64Add(($1078|0),($1079|0),($694|0),($695|0))|0); $1081 = tempRet0; - $1082 = (_i64Add(($284|0),($285|0),($1080|0),($1081|0))|0); + $1082 = (_i64Subtract(($1080|0),($1081|0),($886|0),($887|0))|0); $1083 = tempRet0; - $1084 = (_i64Add(($1082|0),($1083|0),($884|0),($885|0))|0); + $1084 = (_i64Add(($1082|0),($1083|0),($1076|0),($1077|0))|0); $1085 = tempRet0; - $1086 = (_i64Subtract(($1084|0),($1085|0),($694|0),($695|0))|0); + $1086 = (_bitshift64Shl(($1076|0),($1077|0),21)|0); $1087 = tempRet0; - $1088 = (___muldi3(($940|0),($941|0),470296,0)|0); + $1088 = (_i64Add(($1052|0),($1053|0),1048576,0)|0); $1089 = tempRet0; - $1090 = (___muldi3(($940|0),($941|0),654183,0)|0); + $1090 = (_bitshift64Ashr(($1088|0),($1089|0),21)|0); $1091 = tempRet0; - $1092 = (_i64Add(($1062|0),($1063|0),($1038|0),($1039|0))|0); + $1092 = (_i64Add(($996|0),($997|0),($972|0),($973|0))|0); $1093 = tempRet0; - $1094 = (_i64Add(($1092|0),($1093|0),($1090|0),($1091|0))|0); + $1094 = (_i64Add(($1092|0),($1093|0),($1010|0),($1011|0))|0); $1095 = tempRet0; - $1096 = (_i64Add(($1094|0),($1095|0),($336|0),($337|0))|0); + $1096 = (_i64Add(($1094|0),($1095|0),($1054|0),($1055|0))|0); $1097 = tempRet0; - $1098 = (_i64Add(($1096|0),($1097|0),($892|0),($893|0))|0); + $1098 = (_i64Add(($1096|0),($1097|0),($722|0),($723|0))|0); $1099 = tempRet0; - $1100 = (_i64Subtract(($1098|0),($1099|0),($722|0),($723|0))|0); + $1100 = (_i64Subtract(($1098|0),($1099|0),($892|0),($893|0))|0); $1101 = tempRet0; - $1102 = (___muldi3(($940|0),($941|0),-997805,-1)|0); + $1102 = (_i64Add(($1100|0),($1101|0),($1090|0),($1091|0))|0); $1103 = tempRet0; - $1104 = (_i64Add(($1066|0),($1067|0),($1102|0),($1103|0))|0); + $1104 = (_bitshift64Shl(($1090|0),($1091|0),21)|0); $1105 = tempRet0; - $1106 = (___muldi3(($940|0),($941|0),136657,0)|0); + $1106 = (_i64Add(($1070|0),($1071|0),1048576,0)|0); $1107 = tempRet0; - $1108 = (_i64Add(($1070|0),($1071|0),($1106|0),($1107|0))|0); + $1108 = (_bitshift64Ashr(($1106|0),($1107|0),21)|0); $1109 = tempRet0; - $1110 = (___muldi3(($940|0),($941|0),-683901,-1)|0); + $1110 = (_i64Add(($962|0),($963|0),($942|0),($943|0))|0); $1111 = tempRet0; - $1112 = (_i64Add(($1074|0),($1075|0),($1110|0),($1111|0))|0); + $1112 = (_i64Add(($1110|0),($1111|0),($976|0),($977|0))|0); $1113 = tempRet0; - $1114 = (_i64Add(($1086|0),($1087|0),1048576,0)|0); + $1114 = (_i64Add(($1112|0),($1113|0),($1000|0),($1001|0))|0); $1115 = tempRet0; - $1116 = (_bitshift64Ashr(($1114|0),($1115|0),21)|0); + $1116 = (_i64Add(($1114|0),($1115|0),($1014|0),($1015|0))|0); $1117 = tempRet0; - $1118 = (_i64Add(($1088|0),($1089|0),($1060|0),($1061|0))|0); + $1118 = (_i64Add(($1116|0),($1117|0),($1072|0),($1073|0))|0); $1119 = tempRet0; - $1120 = (_i64Add(($1118|0),($1119|0),($692|0),($693|0))|0); + $1120 = (_i64Add(($1118|0),($1119|0),($754|0),($755|0))|0); $1121 = tempRet0; - $1122 = (_i64Subtract(($1120|0),($1121|0),($894|0),($895|0))|0); + $1122 = (_i64Subtract(($1120|0),($1121|0),($898|0),($899|0))|0); $1123 = tempRet0; - $1124 = (_i64Add(($1122|0),($1123|0),($1116|0),($1117|0))|0); + $1124 = (_i64Add(($1122|0),($1123|0),($1108|0),($1109|0))|0); $1125 = tempRet0; - $1126 = (_bitshift64Shl(($1116|0),($1117|0),21)|0); + $1126 = (_bitshift64Shl(($1108|0),($1109|0),21)|0); $1127 = tempRet0; - $1128 = (_i64Subtract(($1086|0),($1087|0),($1126|0),($1127|0))|0); + $1128 = (_i64Add(($1030|0),($1031|0),1048576,0)|0); $1129 = tempRet0; - $1130 = (_i64Add(($1100|0),($1101|0),1048576,0)|0); + $1130 = (_bitshift64Ashr(($1128|0),($1129|0),21)|0); $1131 = tempRet0; - $1132 = (_bitshift64Ashr(($1130|0),($1131|0),21)|0); + $1132 = (_i64Add(($966|0),($967|0),($946|0),($947|0))|0); $1133 = tempRet0; - $1134 = (_i64Add(($1104|0),($1105|0),($1132|0),($1133|0))|0); + $1134 = (_i64Add(($1132|0),($1133|0),($980|0),($981|0))|0); $1135 = tempRet0; - $1136 = (_bitshift64Shl(($1132|0),($1133|0),21)|0); + $1136 = (_i64Add(($1134|0),($1135|0),($1004|0),($1005|0))|0); $1137 = tempRet0; - $1138 = (_i64Subtract(($1100|0),($1101|0),($1136|0),($1137|0))|0); + $1138 = (_i64Add(($1136|0),($1137|0),($780|0),($781|0))|0); $1139 = tempRet0; - $1140 = (_i64Add(($1108|0),($1109|0),1048576,0)|0); + $1140 = (_i64Subtract(($1138|0),($1139|0),($904|0),($905|0))|0); $1141 = tempRet0; - $1142 = (_bitshift64Ashr(($1140|0),($1141|0),21)|0); + $1142 = (_i64Add(($1140|0),($1141|0),($1130|0),($1131|0))|0); $1143 = tempRet0; - $1144 = (_i64Add(($1112|0),($1113|0),($1142|0),($1143|0))|0); + $1144 = (_bitshift64Shl(($1130|0),($1131|0),21)|0); $1145 = tempRet0; - $1146 = (_bitshift64Shl(($1142|0),($1143|0),21)|0); + $1146 = (_i64Subtract(($1030|0),($1031|0),($1144|0),($1145|0))|0); $1147 = tempRet0; - $1148 = (_i64Subtract(($1108|0),($1109|0),($1146|0),($1147|0))|0); + $1148 = (_i64Add(($992|0),($993|0),1048576,0)|0); $1149 = tempRet0; - $1150 = (_i64Add(($1078|0),($1079|0),1048576,0)|0); + $1150 = (_bitshift64Ashr(($1148|0),($1149|0),21)|0); $1151 = tempRet0; - $1152 = (_bitshift64Ashr(($1150|0),($1151|0),21)|0); + $1152 = (_i64Add(($970|0),($971|0),($950|0),($951|0))|0); $1153 = tempRet0; - $1154 = (_i64Add(($1152|0),($1153|0),($1058|0),($1059|0))|0); + $1154 = (_i64Add(($1152|0),($1153|0),($802|0),($803|0))|0); $1155 = tempRet0; - $1156 = (_bitshift64Shl(($1152|0),($1153|0),21)|0); + $1156 = (_i64Subtract(($1154|0),($1155|0),($910|0),($911|0))|0); $1157 = tempRet0; - $1158 = (_i64Subtract(($1078|0),($1079|0),($1156|0),($1157|0))|0); + $1158 = (_i64Add(($1156|0),($1157|0),($1150|0),($1151|0))|0); $1159 = tempRet0; - $1160 = (_i64Add(($1036|0),($1037|0),1048576,0)|0); + $1160 = (_bitshift64Shl(($1150|0),($1151|0),21)|0); $1161 = tempRet0; - $1162 = (_bitshift64Ashr(($1160|0),($1161|0),21)|0); + $1162 = (_i64Subtract(($992|0),($993|0),($1160|0),($1161|0))|0); $1163 = tempRet0; - $1164 = (_i64Add(($1162|0),($1163|0),($1012|0),($1013|0))|0); + $1164 = (_i64Add(($958|0),($959|0),1048576,0)|0); $1165 = tempRet0; - $1166 = (_bitshift64Shl(($1162|0),($1163|0),21)|0); + $1166 = (_bitshift64Ashr(($1164|0),($1165|0),21)|0); $1167 = tempRet0; - $1168 = (_i64Subtract(($1036|0),($1037|0),($1166|0),($1167|0))|0); + $1168 = (_i64Add(($1166|0),($1167|0),($920|0),($921|0))|0); $1169 = tempRet0; - $1170 = (_i64Add(($988|0),($989|0),1048576,0)|0); + $1170 = (_bitshift64Shl(($1166|0),($1167|0),21)|0); $1171 = tempRet0; - $1172 = (_bitshift64Ashr(($1170|0),($1171|0),21)|0); + $1172 = (_i64Subtract(($958|0),($959|0),($1170|0),($1171|0))|0); $1173 = tempRet0; - $1174 = (_i64Add(($1172|0),($1173|0),($944|0),($945|0))|0); + $1174 = (_i64Add(($1084|0),($1085|0),1048576,0)|0); $1175 = tempRet0; - $1176 = (_bitshift64Shl(($1172|0),($1173|0),21)|0); + $1176 = (_bitshift64Ashr(($1174|0),($1175|0),21)|0); $1177 = tempRet0; - $1178 = (_i64Subtract(($988|0),($989|0),($1176|0),($1177|0))|0); + $1178 = (_bitshift64Shl(($1176|0),($1177|0),21)|0); $1179 = tempRet0; - $1180 = (_i64Add(($1124|0),($1125|0),1048576,0)|0); + $1180 = (_i64Add(($1102|0),($1103|0),1048576,0)|0); $1181 = tempRet0; $1182 = (_bitshift64Ashr(($1180|0),($1181|0),21)|0); $1183 = tempRet0; - $1184 = (_i64Add(($1182|0),($1183|0),($1138|0),($1139|0))|0); + $1184 = (_bitshift64Shl(($1182|0),($1183|0),21)|0); $1185 = tempRet0; - $1186 = (_bitshift64Shl(($1182|0),($1183|0),21)|0); + $1186 = (_i64Add(($1124|0),($1125|0),1048576,0)|0); $1187 = tempRet0; - $1188 = (_i64Subtract(($1124|0),($1125|0),($1186|0),($1187|0))|0); + $1188 = (_bitshift64Ashr(($1186|0),($1187|0),21)|0); $1189 = tempRet0; - $1190 = (_i64Add(($1134|0),($1135|0),1048576,0)|0); + $1190 = (_i64Add(($1188|0),($1189|0),($1146|0),($1147|0))|0); $1191 = tempRet0; - $1192 = (_bitshift64Ashr(($1190|0),($1191|0),21)|0); + $1192 = (_bitshift64Shl(($1188|0),($1189|0),21)|0); $1193 = tempRet0; - $1194 = (_i64Add(($1192|0),($1193|0),($1148|0),($1149|0))|0); + $1194 = (_i64Subtract(($1124|0),($1125|0),($1192|0),($1193|0))|0); $1195 = tempRet0; - $1196 = (_bitshift64Shl(($1192|0),($1193|0),21)|0); + $1196 = (_i64Add(($1142|0),($1143|0),1048576,0)|0); $1197 = tempRet0; - $1198 = (_i64Subtract(($1134|0),($1135|0),($1196|0),($1197|0))|0); + $1198 = (_bitshift64Ashr(($1196|0),($1197|0),21)|0); $1199 = tempRet0; - $1200 = (_i64Add(($1144|0),($1145|0),1048576,0)|0); + $1200 = (_i64Add(($1198|0),($1199|0),($1162|0),($1163|0))|0); $1201 = tempRet0; - $1202 = (_bitshift64Ashr(($1200|0),($1201|0),21)|0); + $1202 = (_bitshift64Shl(($1198|0),($1199|0),21)|0); $1203 = tempRet0; - $1204 = (_i64Add(($1202|0),($1203|0),($1158|0),($1159|0))|0); + $1204 = (_i64Subtract(($1142|0),($1143|0),($1202|0),($1203|0))|0); $1205 = tempRet0; - $1206 = (_bitshift64Shl(($1202|0),($1203|0),21)|0); + $1206 = (_i64Add(($1158|0),($1159|0),1048576,0)|0); $1207 = tempRet0; - $1208 = (_i64Subtract(($1144|0),($1145|0),($1206|0),($1207|0))|0); + $1208 = (_bitshift64Ashr(($1206|0),($1207|0),21)|0); $1209 = tempRet0; - $1210 = (_i64Add(($1154|0),($1155|0),1048576,0)|0); + $1210 = (_i64Add(($1208|0),($1209|0),($1172|0),($1173|0))|0); $1211 = tempRet0; - $1212 = (_bitshift64Ashr(($1210|0),($1211|0),21)|0); + $1212 = (_bitshift64Shl(($1208|0),($1209|0),21)|0); $1213 = tempRet0; - $1214 = (_i64Add(($1212|0),($1213|0),($1168|0),($1169|0))|0); + $1214 = (_i64Subtract(($1158|0),($1159|0),($1212|0),($1213|0))|0); $1215 = tempRet0; - $1216 = (_bitshift64Shl(($1212|0),($1213|0),21)|0); + $1216 = (___muldi3(($1168|0),($1169|0),666643,0)|0); $1217 = tempRet0; - $1218 = (_i64Subtract(($1154|0),($1155|0),($1216|0),($1217|0))|0); + $1218 = (_i64Add(($880|0),($881|0),($1216|0),($1217|0))|0); $1219 = tempRet0; - $1220 = (_i64Add(($1164|0),($1165|0),1048576,0)|0); + $1220 = (___muldi3(($1168|0),($1169|0),470296,0)|0); $1221 = tempRet0; - $1222 = (_bitshift64Ashr(($1220|0),($1221|0),21)|0); + $1222 = (___muldi3(($1168|0),($1169|0),654183,0)|0); $1223 = tempRet0; - $1224 = (_i64Add(($1222|0),($1223|0),($1178|0),($1179|0))|0); + $1224 = (___muldi3(($1168|0),($1169|0),-997805,-1)|0); $1225 = tempRet0; - $1226 = (_bitshift64Shl(($1222|0),($1223|0),21)|0); + $1226 = (___muldi3(($1168|0),($1169|0),136657,0)|0); $1227 = tempRet0; - $1228 = (_i64Subtract(($1164|0),($1165|0),($1226|0),($1227|0))|0); + $1228 = (___muldi3(($1168|0),($1169|0),-683901,-1)|0); $1229 = tempRet0; - $1230 = (___muldi3(($1174|0),($1175|0),666643,0)|0); + $1230 = (_i64Add(($1070|0),($1071|0),($1228|0),($1229|0))|0); $1231 = tempRet0; - $1232 = (_i64Add(($888|0),($889|0),($1230|0),($1231|0))|0); + $1232 = (_i64Add(($1230|0),($1231|0),($1182|0),($1183|0))|0); $1233 = tempRet0; - $1234 = (___muldi3(($1174|0),($1175|0),470296,0)|0); + $1234 = (_i64Subtract(($1232|0),($1233|0),($1126|0),($1127|0))|0); $1235 = tempRet0; - $1236 = (_i64Add(($1234|0),($1235|0),($1128|0),($1129|0))|0); + $1236 = (___muldi3(($1210|0),($1211|0),666643,0)|0); $1237 = tempRet0; - $1238 = (___muldi3(($1174|0),($1175|0),654183,0)|0); + $1238 = (___muldi3(($1210|0),($1211|0),470296,0)|0); $1239 = tempRet0; - $1240 = (_i64Add(($1238|0),($1239|0),($1188|0),($1189|0))|0); + $1240 = (_i64Add(($1218|0),($1219|0),($1238|0),($1239|0))|0); $1241 = tempRet0; - $1242 = (___muldi3(($1174|0),($1175|0),-997805,-1)|0); + $1242 = (___muldi3(($1210|0),($1211|0),654183,0)|0); $1243 = tempRet0; - $1244 = (_i64Add(($1242|0),($1243|0),($1184|0),($1185|0))|0); + $1244 = (___muldi3(($1210|0),($1211|0),-997805,-1)|0); $1245 = tempRet0; - $1246 = (___muldi3(($1174|0),($1175|0),136657,0)|0); + $1246 = (___muldi3(($1210|0),($1211|0),136657,0)|0); $1247 = tempRet0; - $1248 = (_i64Add(($1246|0),($1247|0),($1198|0),($1199|0))|0); + $1248 = (___muldi3(($1210|0),($1211|0),-683901,-1)|0); $1249 = tempRet0; - $1250 = (___muldi3(($1174|0),($1175|0),-683901,-1)|0); + $1250 = (___muldi3(($1214|0),($1215|0),666643,0)|0); $1251 = tempRet0; - $1252 = (_i64Add(($1194|0),($1195|0),($1250|0),($1251|0))|0); + $1252 = (_i64Add(($872|0),($873|0),($1250|0),($1251|0))|0); $1253 = tempRet0; - $1254 = (___muldi3(($1224|0),($1225|0),666643,0)|0); + $1254 = (___muldi3(($1214|0),($1215|0),470296,0)|0); $1255 = tempRet0; - $1256 = (_i64Add(($876|0),($877|0),($1254|0),($1255|0))|0); + $1256 = (___muldi3(($1214|0),($1215|0),654183,0)|0); $1257 = tempRet0; - $1258 = (___muldi3(($1224|0),($1225|0),470296,0)|0); + $1258 = (_i64Add(($1240|0),($1241|0),($1256|0),($1257|0))|0); $1259 = tempRet0; - $1260 = (_i64Add(($1232|0),($1233|0),($1258|0),($1259|0))|0); + $1260 = (___muldi3(($1214|0),($1215|0),-997805,-1)|0); $1261 = tempRet0; - $1262 = (___muldi3(($1224|0),($1225|0),654183,0)|0); + $1262 = (___muldi3(($1214|0),($1215|0),136657,0)|0); $1263 = tempRet0; - $1264 = (_i64Add(($1236|0),($1237|0),($1262|0),($1263|0))|0); + $1264 = (___muldi3(($1214|0),($1215|0),-683901,-1)|0); $1265 = tempRet0; - $1266 = (___muldi3(($1224|0),($1225|0),-997805,-1)|0); + $1266 = (_i64Add(($1052|0),($1053|0),($1224|0),($1225|0))|0); $1267 = tempRet0; - $1268 = (_i64Add(($1266|0),($1267|0),($1240|0),($1241|0))|0); + $1268 = (_i64Add(($1266|0),($1267|0),($1176|0),($1177|0))|0); $1269 = tempRet0; - $1270 = (___muldi3(($1224|0),($1225|0),136657,0)|0); + $1270 = (_i64Add(($1268|0),($1269|0),($1246|0),($1247|0))|0); $1271 = tempRet0; - $1272 = (_i64Add(($1270|0),($1271|0),($1244|0),($1245|0))|0); + $1272 = (_i64Add(($1270|0),($1271|0),($1264|0),($1265|0))|0); $1273 = tempRet0; - $1274 = (___muldi3(($1224|0),($1225|0),-683901,-1)|0); + $1274 = (_i64Subtract(($1272|0),($1273|0),($1104|0),($1105|0))|0); $1275 = tempRet0; - $1276 = (_i64Add(($1248|0),($1249|0),($1274|0),($1275|0))|0); + $1276 = (___muldi3(($1200|0),($1201|0),666643,0)|0); $1277 = tempRet0; - $1278 = (___muldi3(($1228|0),($1229|0),666643,0)|0); + $1278 = (___muldi3(($1200|0),($1201|0),470296,0)|0); $1279 = tempRet0; - $1280 = (_i64Add(($880|0),($881|0),($1278|0),($1279|0))|0); + $1280 = (_i64Add(($1252|0),($1253|0),($1278|0),($1279|0))|0); $1281 = tempRet0; - $1282 = (___muldi3(($1228|0),($1229|0),470296,0)|0); + $1282 = (___muldi3(($1200|0),($1201|0),654183,0)|0); $1283 = tempRet0; - $1284 = (_i64Add(($1256|0),($1257|0),($1282|0),($1283|0))|0); + $1284 = (___muldi3(($1200|0),($1201|0),-997805,-1)|0); $1285 = tempRet0; - $1286 = (___muldi3(($1228|0),($1229|0),654183,0)|0); + $1286 = (_i64Add(($1258|0),($1259|0),($1284|0),($1285|0))|0); $1287 = tempRet0; - $1288 = (_i64Add(($1260|0),($1261|0),($1286|0),($1287|0))|0); + $1288 = (___muldi3(($1200|0),($1201|0),136657,0)|0); $1289 = tempRet0; - $1290 = (___muldi3(($1228|0),($1229|0),-997805,-1)|0); + $1290 = (___muldi3(($1200|0),($1201|0),-683901,-1)|0); $1291 = tempRet0; - $1292 = (_i64Add(($1264|0),($1265|0),($1290|0),($1291|0))|0); + $1292 = (___muldi3(($1204|0),($1205|0),666643,0)|0); $1293 = tempRet0; - $1294 = (___muldi3(($1228|0),($1229|0),136657,0)|0); + $1294 = (___muldi3(($1204|0),($1205|0),470296,0)|0); $1295 = tempRet0; - $1296 = (_i64Add(($1294|0),($1295|0),($1268|0),($1269|0))|0); + $1296 = (___muldi3(($1204|0),($1205|0),654183,0)|0); $1297 = tempRet0; - $1298 = (___muldi3(($1228|0),($1229|0),-683901,-1)|0); + $1298 = (___muldi3(($1204|0),($1205|0),-997805,-1)|0); $1299 = tempRet0; - $1300 = (_i64Add(($1272|0),($1273|0),($1298|0),($1299|0))|0); + $1300 = (___muldi3(($1204|0),($1205|0),136657,0)|0); $1301 = tempRet0; - $1302 = (___muldi3(($1214|0),($1215|0),666643,0)|0); + $1302 = (___muldi3(($1204|0),($1205|0),-683901,-1)|0); $1303 = tempRet0; - $1304 = (___muldi3(($1214|0),($1215|0),470296,0)|0); + $1304 = (_i64Add(($1038|0),($1039|0),($1220|0),($1221|0))|0); $1305 = tempRet0; - $1306 = (_i64Add(($1280|0),($1281|0),($1304|0),($1305|0))|0); + $1306 = (_i64Subtract(($1304|0),($1305|0),($1086|0),($1087|0))|0); $1307 = tempRet0; - $1308 = (___muldi3(($1214|0),($1215|0),654183,0)|0); + $1308 = (_i64Add(($1306|0),($1307|0),($1242|0),($1243|0))|0); $1309 = tempRet0; - $1310 = (_i64Add(($1284|0),($1285|0),($1308|0),($1309|0))|0); + $1310 = (_i64Add(($1308|0),($1309|0),($1260|0),($1261|0))|0); $1311 = tempRet0; - $1312 = (___muldi3(($1214|0),($1215|0),-997805,-1)|0); + $1312 = (_i64Add(($1310|0),($1311|0),($1288|0),($1289|0))|0); $1313 = tempRet0; - $1314 = (_i64Add(($1288|0),($1289|0),($1312|0),($1313|0))|0); + $1314 = (_i64Add(($1312|0),($1313|0),($1302|0),($1303|0))|0); $1315 = tempRet0; - $1316 = (___muldi3(($1214|0),($1215|0),136657,0)|0); + $1316 = (___muldi3(($1190|0),($1191|0),666643,0)|0); $1317 = tempRet0; - $1318 = (_i64Add(($1292|0),($1293|0),($1316|0),($1317|0))|0); + $1318 = (_i64Add(($1316|0),($1317|0),($636|0),($637|0))|0); $1319 = tempRet0; - $1320 = (___muldi3(($1214|0),($1215|0),-683901,-1)|0); + $1320 = (___muldi3(($1190|0),($1191|0),470296,0)|0); $1321 = tempRet0; - $1322 = (_i64Add(($1296|0),($1297|0),($1320|0),($1321|0))|0); + $1322 = (___muldi3(($1190|0),($1191|0),654183,0)|0); $1323 = tempRet0; - $1324 = (___muldi3(($1218|0),($1219|0),666643,0)|0); + $1324 = (_i64Add(($860|0),($861|0),($220|0),($221|0))|0); $1325 = tempRet0; - $1326 = (___muldi3(($1218|0),($1219|0),470296,0)|0); + $1326 = (_i64Subtract(($1324|0),($1325|0),($652|0),($653|0))|0); $1327 = tempRet0; - $1328 = (___muldi3(($1218|0),($1219|0),654183,0)|0); + $1328 = (_i64Add(($1326|0),($1327|0),($1276|0),($1277|0))|0); $1329 = tempRet0; - $1330 = (_i64Add(($1306|0),($1307|0),($1328|0),($1329|0))|0); + $1330 = (_i64Add(($1328|0),($1329|0),($1322|0),($1323|0))|0); $1331 = tempRet0; - $1332 = (___muldi3(($1218|0),($1219|0),-997805,-1)|0); + $1332 = (_i64Add(($1330|0),($1331|0),($1294|0),($1295|0))|0); $1333 = tempRet0; - $1334 = (_i64Add(($1310|0),($1311|0),($1332|0),($1333|0))|0); + $1334 = (___muldi3(($1190|0),($1191|0),-997805,-1)|0); $1335 = tempRet0; - $1336 = (___muldi3(($1218|0),($1219|0),136657,0)|0); + $1336 = (___muldi3(($1190|0),($1191|0),136657,0)|0); $1337 = tempRet0; - $1338 = (_i64Add(($1314|0),($1315|0),($1336|0),($1337|0))|0); + $1338 = (_i64Add(($868|0),($869|0),($248|0),($249|0))|0); $1339 = tempRet0; - $1340 = (___muldi3(($1218|0),($1219|0),-683901,-1)|0); + $1340 = (_i64Subtract(($1338|0),($1339|0),($672|0),($673|0))|0); $1341 = tempRet0; - $1342 = (_i64Add(($1318|0),($1319|0),($1340|0),($1341|0))|0); + $1342 = (_i64Add(($1340|0),($1341|0),($1236|0),($1237|0))|0); $1343 = tempRet0; - $1344 = (___muldi3(($1204|0),($1205|0),666643,0)|0); + $1344 = (_i64Add(($1342|0),($1343|0),($1254|0),($1255|0))|0); $1345 = tempRet0; - $1346 = (_i64Add(($1344|0),($1345|0),($632|0),($633|0))|0); + $1346 = (_i64Add(($1344|0),($1345|0),($1282|0),($1283|0))|0); $1347 = tempRet0; - $1348 = (___muldi3(($1204|0),($1205|0),470296,0)|0); + $1348 = (_i64Add(($1346|0),($1347|0),($1336|0),($1337|0))|0); $1349 = tempRet0; - $1350 = (___muldi3(($1204|0),($1205|0),654183,0)|0); + $1350 = (_i64Add(($1348|0),($1349|0),($1298|0),($1299|0))|0); $1351 = tempRet0; - $1352 = (_i64Add(($866|0),($867|0),($216|0),($217|0))|0); + $1352 = (___muldi3(($1190|0),($1191|0),-683901,-1)|0); $1353 = tempRet0; - $1354 = (_i64Subtract(($1352|0),($1353|0),($648|0),($649|0))|0); + $1354 = (_i64Add(($1318|0),($1319|0),1048576,0)|0); $1355 = tempRet0; - $1356 = (_i64Add(($1354|0),($1355|0),($1302|0),($1303|0))|0); + $1356 = (_bitshift64Ashr(($1354|0),($1355|0),21)|0); $1357 = tempRet0; - $1358 = (_i64Add(($1356|0),($1357|0),($1350|0),($1351|0))|0); + $1358 = (_i64Add(($864|0),($865|0),($1320|0),($1321|0))|0); $1359 = tempRet0; - $1360 = (_i64Add(($1358|0),($1359|0),($1326|0),($1327|0))|0); + $1360 = (_i64Add(($1358|0),($1359|0),($1292|0),($1293|0))|0); $1361 = tempRet0; - $1362 = (___muldi3(($1204|0),($1205|0),-997805,-1)|0); + $1362 = (_i64Add(($1360|0),($1361|0),($1356|0),($1357|0))|0); $1363 = tempRet0; - $1364 = (_i64Add(($1330|0),($1331|0),($1362|0),($1363|0))|0); + $1364 = (_bitshift64Shl(($1356|0),($1357|0),21)|0); $1365 = tempRet0; - $1366 = (___muldi3(($1204|0),($1205|0),136657,0)|0); + $1366 = (_i64Subtract(($1318|0),($1319|0),($1364|0),($1365|0))|0); $1367 = tempRet0; - $1368 = (_i64Add(($1334|0),($1335|0),($1366|0),($1367|0))|0); + $1368 = (_i64Add(($1332|0),($1333|0),1048576,0)|0); $1369 = tempRet0; - $1370 = (___muldi3(($1204|0),($1205|0),-683901,-1)|0); + $1370 = (_bitshift64Ashr(($1368|0),($1369|0),21)|0); $1371 = tempRet0; - $1372 = (_i64Add(($1338|0),($1339|0),($1370|0),($1371|0))|0); + $1372 = (_i64Add(($1280|0),($1281|0),($1334|0),($1335|0))|0); $1373 = tempRet0; - $1374 = (_i64Add(($1346|0),($1347|0),1048576,0)|0); + $1374 = (_i64Add(($1372|0),($1373|0),($1296|0),($1297|0))|0); $1375 = tempRet0; - $1376 = (_bitshift64Ashr(($1374|0),($1375|0),21)|0); + $1376 = (_i64Add(($1374|0),($1375|0),($1370|0),($1371|0))|0); $1377 = tempRet0; - $1378 = (_i64Add(($870|0),($871|0),($1348|0),($1349|0))|0); + $1378 = (_bitshift64Shl(($1370|0),($1371|0),21)|0); $1379 = tempRet0; - $1380 = (_i64Add(($1378|0),($1379|0),($1324|0),($1325|0))|0); + $1380 = (_i64Add(($1350|0),($1351|0),1048576,0)|0); $1381 = tempRet0; - $1382 = (_i64Add(($1380|0),($1381|0),($1376|0),($1377|0))|0); + $1382 = (_bitshift64Ashr(($1380|0),($1381|0),21)|0); $1383 = tempRet0; - $1384 = (_bitshift64Shl(($1376|0),($1377|0),21)|0); + $1384 = (_i64Add(($1286|0),($1287|0),($1352|0),($1353|0))|0); $1385 = tempRet0; - $1386 = (_i64Subtract(($1346|0),($1347|0),($1384|0),($1385|0))|0); + $1386 = (_i64Add(($1384|0),($1385|0),($1300|0),($1301|0))|0); $1387 = tempRet0; - $1388 = (_i64Add(($1360|0),($1361|0),1048576,0)|0); + $1388 = (_i64Add(($1386|0),($1387|0),($1382|0),($1383|0))|0); $1389 = tempRet0; - $1390 = (_bitshift64Ashr(($1388|0),($1389|0),21)|0); + $1390 = (_bitshift64Shl(($1382|0),($1383|0),21)|0); $1391 = tempRet0; - $1392 = (_i64Add(($1390|0),($1391|0),($1364|0),($1365|0))|0); + $1392 = (_i64Add(($1314|0),($1315|0),1048576,0)|0); $1393 = tempRet0; - $1394 = (_bitshift64Shl(($1390|0),($1391|0),21)|0); + $1394 = (_bitshift64Ashr(($1392|0),($1393|0),21)|0); $1395 = tempRet0; - $1396 = (_i64Add(($1368|0),($1369|0),1048576,0)|0); + $1396 = (_i64Add(($1084|0),($1085|0),($1222|0),($1223|0))|0); $1397 = tempRet0; - $1398 = (_bitshift64Ashr(($1396|0),($1397|0),21)|0); + $1398 = (_i64Add(($1396|0),($1397|0),($1244|0),($1245|0))|0); $1399 = tempRet0; - $1400 = (_i64Add(($1398|0),($1399|0),($1372|0),($1373|0))|0); + $1400 = (_i64Subtract(($1398|0),($1399|0),($1178|0),($1179|0))|0); $1401 = tempRet0; - $1402 = (_bitshift64Shl(($1398|0),($1399|0),21)|0); + $1402 = (_i64Add(($1400|0),($1401|0),($1262|0),($1263|0))|0); $1403 = tempRet0; - $1404 = (_i64Add(($1342|0),($1343|0),1048576,0)|0); + $1404 = (_i64Add(($1402|0),($1403|0),($1290|0),($1291|0))|0); $1405 = tempRet0; - $1406 = (_bitshift64Ashr(($1404|0),($1405|0),21)|0); + $1406 = (_i64Add(($1404|0),($1405|0),($1394|0),($1395|0))|0); $1407 = tempRet0; - $1408 = (_i64Add(($1406|0),($1407|0),($1322|0),($1323|0))|0); + $1408 = (_bitshift64Shl(($1394|0),($1395|0),21)|0); $1409 = tempRet0; - $1410 = (_bitshift64Shl(($1406|0),($1407|0),21)|0); + $1410 = (_i64Subtract(($1314|0),($1315|0),($1408|0),($1409|0))|0); $1411 = tempRet0; - $1412 = (_i64Subtract(($1342|0),($1343|0),($1410|0),($1411|0))|0); + $1412 = (_i64Add(($1274|0),($1275|0),1048576,0)|0); $1413 = tempRet0; - $1414 = (_i64Add(($1300|0),($1301|0),1048576,0)|0); + $1414 = (_bitshift64Ashr(($1412|0),($1413|0),21)|0); $1415 = tempRet0; - $1416 = (_bitshift64Ashr(($1414|0),($1415|0),21)|0); + $1416 = (_i64Add(($1248|0),($1249|0),($1226|0),($1227|0))|0); $1417 = tempRet0; - $1418 = (_i64Add(($1276|0),($1277|0),($1416|0),($1417|0))|0); + $1418 = (_i64Add(($1416|0),($1417|0),($1102|0),($1103|0))|0); $1419 = tempRet0; - $1420 = (_bitshift64Shl(($1416|0),($1417|0),21)|0); + $1420 = (_i64Subtract(($1418|0),($1419|0),($1184|0),($1185|0))|0); $1421 = tempRet0; - $1422 = (_i64Subtract(($1300|0),($1301|0),($1420|0),($1421|0))|0); + $1422 = (_i64Add(($1420|0),($1421|0),($1414|0),($1415|0))|0); $1423 = tempRet0; - $1424 = (_i64Add(($1252|0),($1253|0),1048576,0)|0); + $1424 = (_bitshift64Shl(($1414|0),($1415|0),21)|0); $1425 = tempRet0; - $1426 = (_bitshift64Ashr(($1424|0),($1425|0),21)|0); + $1426 = (_i64Subtract(($1274|0),($1275|0),($1424|0),($1425|0))|0); $1427 = tempRet0; - $1428 = (_i64Add(($1208|0),($1209|0),($1426|0),($1427|0))|0); + $1428 = (_i64Add(($1234|0),($1235|0),1048576,0)|0); $1429 = tempRet0; - $1430 = (_bitshift64Shl(($1426|0),($1427|0),21)|0); + $1430 = (_bitshift64Ashr(($1428|0),($1429|0),21)|0); $1431 = tempRet0; - $1432 = (_i64Add(($1382|0),($1383|0),1048576,0)|0); + $1432 = (_i64Add(($1194|0),($1195|0),($1430|0),($1431|0))|0); $1433 = tempRet0; - $1434 = (_bitshift64Ashr(($1432|0),($1433|0),21)|0); + $1434 = (_bitshift64Shl(($1430|0),($1431|0),21)|0); $1435 = tempRet0; - $1436 = (_bitshift64Shl(($1434|0),($1435|0),21)|0); + $1436 = (_i64Add(($1362|0),($1363|0),1048576,0)|0); $1437 = tempRet0; - $1438 = (_i64Add(($1392|0),($1393|0),1048576,0)|0); + $1438 = (_bitshift64Ashr(($1436|0),($1437|0),21)|0); $1439 = tempRet0; - $1440 = (_bitshift64Ashr(($1438|0),($1439|0),21)|0); + $1440 = (_bitshift64Shl(($1438|0),($1439|0),21)|0); $1441 = tempRet0; - $1442 = (_bitshift64Shl(($1440|0),($1441|0),21)|0); + $1442 = (_i64Add(($1376|0),($1377|0),1048576,0)|0); $1443 = tempRet0; - $1444 = (_i64Subtract(($1392|0),($1393|0),($1442|0),($1443|0))|0); + $1444 = (_bitshift64Ashr(($1442|0),($1443|0),21)|0); $1445 = tempRet0; - $1446 = (_i64Add(($1400|0),($1401|0),1048576,0)|0); + $1446 = (_bitshift64Shl(($1444|0),($1445|0),21)|0); $1447 = tempRet0; - $1448 = (_bitshift64Ashr(($1446|0),($1447|0),21)|0); + $1448 = (_i64Add(($1388|0),($1389|0),1048576,0)|0); $1449 = tempRet0; - $1450 = (_i64Add(($1412|0),($1413|0),($1448|0),($1449|0))|0); + $1450 = (_bitshift64Ashr(($1448|0),($1449|0),21)|0); $1451 = tempRet0; - $1452 = (_bitshift64Shl(($1448|0),($1449|0),21)|0); + $1452 = (_i64Add(($1410|0),($1411|0),($1450|0),($1451|0))|0); $1453 = tempRet0; - $1454 = (_i64Subtract(($1400|0),($1401|0),($1452|0),($1453|0))|0); + $1454 = (_bitshift64Shl(($1450|0),($1451|0),21)|0); $1455 = tempRet0; - $1456 = (_i64Add(($1408|0),($1409|0),1048576,0)|0); + $1456 = (_i64Add(($1406|0),($1407|0),1048576,0)|0); $1457 = tempRet0; $1458 = (_bitshift64Ashr(($1456|0),($1457|0),21)|0); $1459 = tempRet0; - $1460 = (_i64Add(($1422|0),($1423|0),($1458|0),($1459|0))|0); + $1460 = (_i64Add(($1426|0),($1427|0),($1458|0),($1459|0))|0); $1461 = tempRet0; $1462 = (_bitshift64Shl(($1458|0),($1459|0),21)|0); $1463 = tempRet0; - $1464 = (_i64Subtract(($1408|0),($1409|0),($1462|0),($1463|0))|0); + $1464 = (_i64Subtract(($1406|0),($1407|0),($1462|0),($1463|0))|0); $1465 = tempRet0; - $1466 = (_i64Add(($1418|0),($1419|0),1048576,0)|0); + $1466 = (_i64Add(($1422|0),($1423|0),1048576,0)|0); $1467 = tempRet0; $1468 = (_bitshift64Ashr(($1466|0),($1467|0),21)|0); $1469 = tempRet0; $1470 = (_bitshift64Shl(($1468|0),($1469|0),21)|0); $1471 = tempRet0; - $1472 = (_i64Subtract(($1418|0),($1419|0),($1470|0),($1471|0))|0); + $1472 = (_i64Subtract(($1422|0),($1423|0),($1470|0),($1471|0))|0); $1473 = tempRet0; - $1474 = (_i64Add(($1428|0),($1429|0),1048576,0)|0); + $1474 = (_i64Add(($1432|0),($1433|0),1048576,0)|0); $1475 = tempRet0; $1476 = (_bitshift64Ashr(($1474|0),($1475|0),21)|0); $1477 = tempRet0; $1478 = (_bitshift64Shl(($1476|0),($1477|0),21)|0); $1479 = tempRet0; - $1480 = (_i64Subtract(($1428|0),($1429|0),($1478|0),($1479|0))|0); + $1480 = (_i64Subtract(($1432|0),($1433|0),($1478|0),($1479|0))|0); $1481 = tempRet0; $1482 = (___muldi3(($1476|0),($1477|0),666643,0)|0); $1483 = tempRet0; - $1484 = (_i64Add(($1386|0),($1387|0),($1482|0),($1483|0))|0); + $1484 = (_i64Add(($1366|0),($1367|0),($1482|0),($1483|0))|0); $1485 = tempRet0; $1486 = (___muldi3(($1476|0),($1477|0),470296,0)|0); $1487 = tempRet0; @@ -17245,55 +13707,55 @@ function _crypto_sign_ed25519_ref10_sc_muladd($s,$a,$b,$c) { $1489 = tempRet0; $1490 = (___muldi3(($1476|0),($1477|0),-997805,-1)|0); $1491 = tempRet0; - $1492 = (_i64Add(($1444|0),($1445|0),($1490|0),($1491|0))|0); + $1492 = (___muldi3(($1476|0),($1477|0),136657,0)|0); $1493 = tempRet0; - $1494 = (___muldi3(($1476|0),($1477|0),136657,0)|0); + $1494 = (___muldi3(($1476|0),($1477|0),-683901,-1)|0); $1495 = tempRet0; - $1496 = (___muldi3(($1476|0),($1477|0),-683901,-1)|0); + $1496 = (_bitshift64Ashr(($1484|0),($1485|0),21)|0); $1497 = tempRet0; - $1498 = (_i64Add(($1454|0),($1455|0),($1496|0),($1497|0))|0); + $1498 = (_i64Add(($1486|0),($1487|0),($1362|0),($1363|0))|0); $1499 = tempRet0; - $1500 = (_bitshift64Ashr(($1484|0),($1485|0),21)|0); + $1500 = (_i64Subtract(($1498|0),($1499|0),($1440|0),($1441|0))|0); $1501 = tempRet0; - $1502 = (_i64Add(($1486|0),($1487|0),($1382|0),($1383|0))|0); + $1502 = (_i64Add(($1500|0),($1501|0),($1496|0),($1497|0))|0); $1503 = tempRet0; - $1504 = (_i64Subtract(($1502|0),($1503|0),($1436|0),($1437|0))|0); + $1504 = (_bitshift64Shl(($1496|0),($1497|0),21)|0); $1505 = tempRet0; - $1506 = (_i64Add(($1504|0),($1505|0),($1500|0),($1501|0))|0); + $1506 = (_i64Subtract(($1484|0),($1485|0),($1504|0),($1505|0))|0); $1507 = tempRet0; - $1508 = (_bitshift64Shl(($1500|0),($1501|0),21)|0); + $1508 = (_bitshift64Ashr(($1502|0),($1503|0),21)|0); $1509 = tempRet0; - $1510 = (_i64Subtract(($1484|0),($1485|0),($1508|0),($1509|0))|0); + $1510 = (_i64Add(($1488|0),($1489|0),($1332|0),($1333|0))|0); $1511 = tempRet0; - $1512 = (_bitshift64Ashr(($1506|0),($1507|0),21)|0); + $1512 = (_i64Subtract(($1510|0),($1511|0),($1378|0),($1379|0))|0); $1513 = tempRet0; - $1514 = (_i64Add(($1488|0),($1489|0),($1360|0),($1361|0))|0); + $1514 = (_i64Add(($1512|0),($1513|0),($1438|0),($1439|0))|0); $1515 = tempRet0; - $1516 = (_i64Subtract(($1514|0),($1515|0),($1394|0),($1395|0))|0); + $1516 = (_i64Add(($1514|0),($1515|0),($1508|0),($1509|0))|0); $1517 = tempRet0; - $1518 = (_i64Add(($1516|0),($1517|0),($1434|0),($1435|0))|0); + $1518 = (_bitshift64Shl(($1508|0),($1509|0),21)|0); $1519 = tempRet0; - $1520 = (_i64Add(($1518|0),($1519|0),($1512|0),($1513|0))|0); + $1520 = (_i64Subtract(($1502|0),($1503|0),($1518|0),($1519|0))|0); $1521 = tempRet0; - $1522 = (_bitshift64Shl(($1512|0),($1513|0),21)|0); + $1522 = (_bitshift64Ashr(($1516|0),($1517|0),21)|0); $1523 = tempRet0; - $1524 = (_i64Subtract(($1506|0),($1507|0),($1522|0),($1523|0))|0); + $1524 = (_i64Add(($1376|0),($1377|0),($1490|0),($1491|0))|0); $1525 = tempRet0; - $1526 = (_bitshift64Ashr(($1520|0),($1521|0),21)|0); + $1526 = (_i64Subtract(($1524|0),($1525|0),($1446|0),($1447|0))|0); $1527 = tempRet0; - $1528 = (_i64Add(($1526|0),($1527|0),($1492|0),($1493|0))|0); + $1528 = (_i64Add(($1526|0),($1527|0),($1522|0),($1523|0))|0); $1529 = tempRet0; - $1530 = (_bitshift64Shl(($1526|0),($1527|0),21)|0); + $1530 = (_bitshift64Shl(($1522|0),($1523|0),21)|0); $1531 = tempRet0; - $1532 = (_i64Subtract(($1520|0),($1521|0),($1530|0),($1531|0))|0); + $1532 = (_i64Subtract(($1516|0),($1517|0),($1530|0),($1531|0))|0); $1533 = tempRet0; $1534 = (_bitshift64Ashr(($1528|0),($1529|0),21)|0); $1535 = tempRet0; - $1536 = (_i64Add(($1494|0),($1495|0),($1368|0),($1369|0))|0); + $1536 = (_i64Add(($1492|0),($1493|0),($1350|0),($1351|0))|0); $1537 = tempRet0; - $1538 = (_i64Subtract(($1536|0),($1537|0),($1402|0),($1403|0))|0); + $1538 = (_i64Subtract(($1536|0),($1537|0),($1390|0),($1391|0))|0); $1539 = tempRet0; - $1540 = (_i64Add(($1538|0),($1539|0),($1440|0),($1441|0))|0); + $1540 = (_i64Add(($1538|0),($1539|0),($1444|0),($1445|0))|0); $1541 = tempRet0; $1542 = (_i64Add(($1540|0),($1541|0),($1534|0),($1535|0))|0); $1543 = tempRet0; @@ -17303,435 +13765,439 @@ function _crypto_sign_ed25519_ref10_sc_muladd($s,$a,$b,$c) { $1547 = tempRet0; $1548 = (_bitshift64Ashr(($1542|0),($1543|0),21)|0); $1549 = tempRet0; - $1550 = (_i64Add(($1548|0),($1549|0),($1498|0),($1499|0))|0); + $1550 = (_i64Add(($1388|0),($1389|0),($1494|0),($1495|0))|0); $1551 = tempRet0; - $1552 = (_bitshift64Shl(($1548|0),($1549|0),21)|0); + $1552 = (_i64Subtract(($1550|0),($1551|0),($1454|0),($1455|0))|0); $1553 = tempRet0; - $1554 = (_i64Subtract(($1542|0),($1543|0),($1552|0),($1553|0))|0); + $1554 = (_i64Add(($1552|0),($1553|0),($1548|0),($1549|0))|0); $1555 = tempRet0; - $1556 = (_bitshift64Ashr(($1550|0),($1551|0),21)|0); + $1556 = (_bitshift64Shl(($1548|0),($1549|0),21)|0); $1557 = tempRet0; - $1558 = (_i64Add(($1450|0),($1451|0),($1556|0),($1557|0))|0); + $1558 = (_i64Subtract(($1542|0),($1543|0),($1556|0),($1557|0))|0); $1559 = tempRet0; - $1560 = (_bitshift64Shl(($1556|0),($1557|0),21)|0); + $1560 = (_bitshift64Ashr(($1554|0),($1555|0),21)|0); $1561 = tempRet0; - $1562 = (_i64Subtract(($1550|0),($1551|0),($1560|0),($1561|0))|0); + $1562 = (_i64Add(($1452|0),($1453|0),($1560|0),($1561|0))|0); $1563 = tempRet0; - $1564 = (_bitshift64Ashr(($1558|0),($1559|0),21)|0); + $1564 = (_bitshift64Shl(($1560|0),($1561|0),21)|0); $1565 = tempRet0; - $1566 = (_i64Add(($1564|0),($1565|0),($1464|0),($1465|0))|0); + $1566 = (_i64Subtract(($1554|0),($1555|0),($1564|0),($1565|0))|0); $1567 = tempRet0; - $1568 = (_bitshift64Shl(($1564|0),($1565|0),21)|0); + $1568 = (_bitshift64Ashr(($1562|0),($1563|0),21)|0); $1569 = tempRet0; - $1570 = (_i64Subtract(($1558|0),($1559|0),($1568|0),($1569|0))|0); + $1570 = (_i64Add(($1568|0),($1569|0),($1464|0),($1465|0))|0); $1571 = tempRet0; - $1572 = (_bitshift64Ashr(($1566|0),($1567|0),21)|0); + $1572 = (_bitshift64Shl(($1568|0),($1569|0),21)|0); $1573 = tempRet0; - $1574 = (_i64Add(($1460|0),($1461|0),($1572|0),($1573|0))|0); + $1574 = (_i64Subtract(($1562|0),($1563|0),($1572|0),($1573|0))|0); $1575 = tempRet0; - $1576 = (_bitshift64Shl(($1572|0),($1573|0),21)|0); + $1576 = (_bitshift64Ashr(($1570|0),($1571|0),21)|0); $1577 = tempRet0; - $1578 = (_i64Subtract(($1566|0),($1567|0),($1576|0),($1577|0))|0); + $1578 = (_i64Add(($1460|0),($1461|0),($1576|0),($1577|0))|0); $1579 = tempRet0; - $1580 = (_bitshift64Ashr(($1574|0),($1575|0),21)|0); + $1580 = (_bitshift64Shl(($1576|0),($1577|0),21)|0); $1581 = tempRet0; - $1582 = (_i64Add(($1580|0),($1581|0),($1472|0),($1473|0))|0); + $1582 = (_i64Subtract(($1570|0),($1571|0),($1580|0),($1581|0))|0); $1583 = tempRet0; - $1584 = (_bitshift64Shl(($1580|0),($1581|0),21)|0); + $1584 = (_bitshift64Ashr(($1578|0),($1579|0),21)|0); $1585 = tempRet0; - $1586 = (_i64Subtract(($1574|0),($1575|0),($1584|0),($1585|0))|0); + $1586 = (_i64Add(($1584|0),($1585|0),($1472|0),($1473|0))|0); $1587 = tempRet0; - $1588 = (_bitshift64Ashr(($1582|0),($1583|0),21)|0); + $1588 = (_bitshift64Shl(($1584|0),($1585|0),21)|0); $1589 = tempRet0; - $1590 = (_i64Add(($1468|0),($1469|0),($1252|0),($1253|0))|0); + $1590 = (_i64Subtract(($1578|0),($1579|0),($1588|0),($1589|0))|0); $1591 = tempRet0; - $1592 = (_i64Subtract(($1590|0),($1591|0),($1430|0),($1431|0))|0); + $1592 = (_bitshift64Ashr(($1586|0),($1587|0),21)|0); $1593 = tempRet0; - $1594 = (_i64Add(($1592|0),($1593|0),($1588|0),($1589|0))|0); + $1594 = (_i64Add(($1468|0),($1469|0),($1234|0),($1235|0))|0); $1595 = tempRet0; - $1596 = (_bitshift64Shl(($1588|0),($1589|0),21)|0); + $1596 = (_i64Subtract(($1594|0),($1595|0),($1434|0),($1435|0))|0); $1597 = tempRet0; - $1598 = (_i64Subtract(($1582|0),($1583|0),($1596|0),($1597|0))|0); + $1598 = (_i64Add(($1596|0),($1597|0),($1592|0),($1593|0))|0); $1599 = tempRet0; - $1600 = (_bitshift64Ashr(($1594|0),($1595|0),21)|0); + $1600 = (_bitshift64Shl(($1592|0),($1593|0),21)|0); $1601 = tempRet0; - $1602 = (_i64Add(($1600|0),($1601|0),($1480|0),($1481|0))|0); + $1602 = (_i64Subtract(($1586|0),($1587|0),($1600|0),($1601|0))|0); $1603 = tempRet0; - $1604 = (_bitshift64Shl(($1600|0),($1601|0),21)|0); + $1604 = (_bitshift64Ashr(($1598|0),($1599|0),21)|0); $1605 = tempRet0; - $1606 = (_i64Subtract(($1594|0),($1595|0),($1604|0),($1605|0))|0); + $1606 = (_i64Add(($1604|0),($1605|0),($1480|0),($1481|0))|0); $1607 = tempRet0; - $1608 = (_bitshift64Ashr(($1602|0),($1603|0),21)|0); + $1608 = (_bitshift64Shl(($1604|0),($1605|0),21)|0); $1609 = tempRet0; - $1610 = (_bitshift64Shl(($1608|0),($1609|0),21)|0); + $1610 = (_i64Subtract(($1598|0),($1599|0),($1608|0),($1609|0))|0); $1611 = tempRet0; - $1612 = (_i64Subtract(($1602|0),($1603|0),($1610|0),($1611|0))|0); + $1612 = (_bitshift64Ashr(($1606|0),($1607|0),21)|0); $1613 = tempRet0; - $1614 = (___muldi3(($1608|0),($1609|0),666643,0)|0); + $1614 = (_bitshift64Shl(($1612|0),($1613|0),21)|0); $1615 = tempRet0; - $1616 = (_i64Add(($1614|0),($1615|0),($1510|0),($1511|0))|0); + $1616 = (_i64Subtract(($1606|0),($1607|0),($1614|0),($1615|0))|0); $1617 = tempRet0; - $1618 = (___muldi3(($1608|0),($1609|0),470296,0)|0); + $1618 = (___muldi3(($1612|0),($1613|0),666643,0)|0); $1619 = tempRet0; - $1620 = (_i64Add(($1524|0),($1525|0),($1618|0),($1619|0))|0); + $1620 = (_i64Add(($1618|0),($1619|0),($1506|0),($1507|0))|0); $1621 = tempRet0; - $1622 = (___muldi3(($1608|0),($1609|0),654183,0)|0); + $1622 = (___muldi3(($1612|0),($1613|0),470296,0)|0); $1623 = tempRet0; - $1624 = (_i64Add(($1532|0),($1533|0),($1622|0),($1623|0))|0); + $1624 = (_i64Add(($1520|0),($1521|0),($1622|0),($1623|0))|0); $1625 = tempRet0; - $1626 = (___muldi3(($1608|0),($1609|0),-997805,-1)|0); + $1626 = (___muldi3(($1612|0),($1613|0),654183,0)|0); $1627 = tempRet0; - $1628 = (_i64Add(($1546|0),($1547|0),($1626|0),($1627|0))|0); + $1628 = (_i64Add(($1532|0),($1533|0),($1626|0),($1627|0))|0); $1629 = tempRet0; - $1630 = (___muldi3(($1608|0),($1609|0),136657,0)|0); + $1630 = (___muldi3(($1612|0),($1613|0),-997805,-1)|0); $1631 = tempRet0; - $1632 = (_i64Add(($1554|0),($1555|0),($1630|0),($1631|0))|0); + $1632 = (_i64Add(($1546|0),($1547|0),($1630|0),($1631|0))|0); $1633 = tempRet0; - $1634 = (___muldi3(($1608|0),($1609|0),-683901,-1)|0); + $1634 = (___muldi3(($1612|0),($1613|0),136657,0)|0); $1635 = tempRet0; - $1636 = (_i64Add(($1562|0),($1563|0),($1634|0),($1635|0))|0); + $1636 = (_i64Add(($1558|0),($1559|0),($1634|0),($1635|0))|0); $1637 = tempRet0; - $1638 = (_bitshift64Ashr(($1616|0),($1617|0),21)|0); + $1638 = (___muldi3(($1612|0),($1613|0),-683901,-1)|0); $1639 = tempRet0; - $1640 = (_i64Add(($1620|0),($1621|0),($1638|0),($1639|0))|0); + $1640 = (_i64Add(($1566|0),($1567|0),($1638|0),($1639|0))|0); $1641 = tempRet0; - $1642 = (_bitshift64Shl(($1638|0),($1639|0),21)|0); + $1642 = (_bitshift64Ashr(($1620|0),($1621|0),21)|0); $1643 = tempRet0; - $1644 = (_i64Subtract(($1616|0),($1617|0),($1642|0),($1643|0))|0); + $1644 = (_i64Add(($1624|0),($1625|0),($1642|0),($1643|0))|0); $1645 = tempRet0; - $1646 = (_bitshift64Ashr(($1640|0),($1641|0),21)|0); + $1646 = (_bitshift64Shl(($1642|0),($1643|0),21)|0); $1647 = tempRet0; - $1648 = (_i64Add(($1624|0),($1625|0),($1646|0),($1647|0))|0); + $1648 = (_i64Subtract(($1620|0),($1621|0),($1646|0),($1647|0))|0); $1649 = tempRet0; - $1650 = (_bitshift64Shl(($1646|0),($1647|0),21)|0); + $1650 = (_bitshift64Ashr(($1644|0),($1645|0),21)|0); $1651 = tempRet0; - $1652 = (_i64Subtract(($1640|0),($1641|0),($1650|0),($1651|0))|0); + $1652 = (_i64Add(($1628|0),($1629|0),($1650|0),($1651|0))|0); $1653 = tempRet0; - $1654 = (_bitshift64Ashr(($1648|0),($1649|0),21)|0); + $1654 = (_bitshift64Shl(($1650|0),($1651|0),21)|0); $1655 = tempRet0; - $1656 = (_i64Add(($1654|0),($1655|0),($1628|0),($1629|0))|0); + $1656 = (_i64Subtract(($1644|0),($1645|0),($1654|0),($1655|0))|0); $1657 = tempRet0; - $1658 = (_bitshift64Shl(($1654|0),($1655|0),21)|0); + $1658 = (_bitshift64Ashr(($1652|0),($1653|0),21)|0); $1659 = tempRet0; - $1660 = (_i64Subtract(($1648|0),($1649|0),($1658|0),($1659|0))|0); + $1660 = (_i64Add(($1632|0),($1633|0),($1658|0),($1659|0))|0); $1661 = tempRet0; - $1662 = (_bitshift64Ashr(($1656|0),($1657|0),21)|0); + $1662 = (_bitshift64Shl(($1658|0),($1659|0),21)|0); $1663 = tempRet0; - $1664 = (_i64Add(($1632|0),($1633|0),($1662|0),($1663|0))|0); + $1664 = (_i64Subtract(($1652|0),($1653|0),($1662|0),($1663|0))|0); $1665 = tempRet0; - $1666 = (_bitshift64Shl(($1662|0),($1663|0),21)|0); + $1666 = (_bitshift64Ashr(($1660|0),($1661|0),21)|0); $1667 = tempRet0; - $1668 = (_i64Subtract(($1656|0),($1657|0),($1666|0),($1667|0))|0); + $1668 = (_i64Add(($1636|0),($1637|0),($1666|0),($1667|0))|0); $1669 = tempRet0; - $1670 = (_bitshift64Ashr(($1664|0),($1665|0),21)|0); + $1670 = (_bitshift64Shl(($1666|0),($1667|0),21)|0); $1671 = tempRet0; - $1672 = (_i64Add(($1670|0),($1671|0),($1636|0),($1637|0))|0); + $1672 = (_i64Subtract(($1660|0),($1661|0),($1670|0),($1671|0))|0); $1673 = tempRet0; - $1674 = (_bitshift64Shl(($1670|0),($1671|0),21)|0); + $1674 = (_bitshift64Ashr(($1668|0),($1669|0),21)|0); $1675 = tempRet0; - $1676 = (_i64Subtract(($1664|0),($1665|0),($1674|0),($1675|0))|0); + $1676 = (_i64Add(($1640|0),($1641|0),($1674|0),($1675|0))|0); $1677 = tempRet0; - $1678 = (_bitshift64Ashr(($1672|0),($1673|0),21)|0); + $1678 = (_bitshift64Shl(($1674|0),($1675|0),21)|0); $1679 = tempRet0; - $1680 = (_i64Add(($1678|0),($1679|0),($1570|0),($1571|0))|0); + $1680 = (_i64Subtract(($1668|0),($1669|0),($1678|0),($1679|0))|0); $1681 = tempRet0; - $1682 = (_bitshift64Shl(($1678|0),($1679|0),21)|0); + $1682 = (_bitshift64Ashr(($1676|0),($1677|0),21)|0); $1683 = tempRet0; - $1684 = (_i64Subtract(($1672|0),($1673|0),($1682|0),($1683|0))|0); + $1684 = (_i64Add(($1682|0),($1683|0),($1574|0),($1575|0))|0); $1685 = tempRet0; - $1686 = (_bitshift64Ashr(($1680|0),($1681|0),21)|0); + $1686 = (_bitshift64Shl(($1682|0),($1683|0),21)|0); $1687 = tempRet0; - $1688 = (_i64Add(($1686|0),($1687|0),($1578|0),($1579|0))|0); + $1688 = (_i64Subtract(($1676|0),($1677|0),($1686|0),($1687|0))|0); $1689 = tempRet0; - $1690 = (_bitshift64Shl(($1686|0),($1687|0),21)|0); + $1690 = (_bitshift64Ashr(($1684|0),($1685|0),21)|0); $1691 = tempRet0; - $1692 = (_i64Subtract(($1680|0),($1681|0),($1690|0),($1691|0))|0); + $1692 = (_i64Add(($1690|0),($1691|0),($1582|0),($1583|0))|0); $1693 = tempRet0; - $1694 = (_bitshift64Ashr(($1688|0),($1689|0),21)|0); + $1694 = (_bitshift64Shl(($1690|0),($1691|0),21)|0); $1695 = tempRet0; - $1696 = (_i64Add(($1694|0),($1695|0),($1586|0),($1587|0))|0); + $1696 = (_i64Subtract(($1684|0),($1685|0),($1694|0),($1695|0))|0); $1697 = tempRet0; - $1698 = (_bitshift64Shl(($1694|0),($1695|0),21)|0); + $1698 = (_bitshift64Ashr(($1692|0),($1693|0),21)|0); $1699 = tempRet0; - $1700 = (_i64Subtract(($1688|0),($1689|0),($1698|0),($1699|0))|0); + $1700 = (_i64Add(($1698|0),($1699|0),($1590|0),($1591|0))|0); $1701 = tempRet0; - $1702 = (_bitshift64Ashr(($1696|0),($1697|0),21)|0); + $1702 = (_bitshift64Shl(($1698|0),($1699|0),21)|0); $1703 = tempRet0; - $1704 = (_i64Add(($1702|0),($1703|0),($1598|0),($1599|0))|0); + $1704 = (_i64Subtract(($1692|0),($1693|0),($1702|0),($1703|0))|0); $1705 = tempRet0; - $1706 = (_bitshift64Shl(($1702|0),($1703|0),21)|0); + $1706 = (_bitshift64Ashr(($1700|0),($1701|0),21)|0); $1707 = tempRet0; - $1708 = (_i64Subtract(($1696|0),($1697|0),($1706|0),($1707|0))|0); + $1708 = (_i64Add(($1706|0),($1707|0),($1602|0),($1603|0))|0); $1709 = tempRet0; - $1710 = (_bitshift64Ashr(($1704|0),($1705|0),21)|0); + $1710 = (_bitshift64Shl(($1706|0),($1707|0),21)|0); $1711 = tempRet0; - $1712 = (_i64Add(($1710|0),($1711|0),($1606|0),($1607|0))|0); + $1712 = (_i64Subtract(($1700|0),($1701|0),($1710|0),($1711|0))|0); $1713 = tempRet0; - $1714 = (_bitshift64Shl(($1710|0),($1711|0),21)|0); + $1714 = (_bitshift64Ashr(($1708|0),($1709|0),21)|0); $1715 = tempRet0; - $1716 = (_i64Subtract(($1704|0),($1705|0),($1714|0),($1715|0))|0); + $1716 = (_i64Add(($1714|0),($1715|0),($1610|0),($1611|0))|0); $1717 = tempRet0; - $1718 = (_bitshift64Ashr(($1712|0),($1713|0),21)|0); + $1718 = (_bitshift64Shl(($1714|0),($1715|0),21)|0); $1719 = tempRet0; - $1720 = (_i64Add(($1718|0),($1719|0),($1612|0),($1613|0))|0); + $1720 = (_i64Subtract(($1708|0),($1709|0),($1718|0),($1719|0))|0); $1721 = tempRet0; - $1722 = (_bitshift64Shl(($1718|0),($1719|0),21)|0); + $1722 = (_bitshift64Ashr(($1716|0),($1717|0),21)|0); $1723 = tempRet0; - $1724 = (_i64Subtract(($1712|0),($1713|0),($1722|0),($1723|0))|0); + $1724 = (_i64Add(($1722|0),($1723|0),($1616|0),($1617|0))|0); $1725 = tempRet0; - $1726 = $1644&255; - HEAP8[$s>>0] = $1726; - $1727 = (_bitshift64Lshr(($1644|0),($1645|0),8)|0); - $1728 = tempRet0; - $1729 = $1727&255; - $1730 = ((($s)) + 1|0); - HEAP8[$1730>>0] = $1729; - $1731 = (_bitshift64Lshr(($1644|0),($1645|0),16)|0); + $1726 = (_bitshift64Shl(($1722|0),($1723|0),21)|0); + $1727 = tempRet0; + $1728 = (_i64Subtract(($1716|0),($1717|0),($1726|0),($1727|0))|0); + $1729 = tempRet0; + $1730 = $1648&255; + HEAP8[$0>>0] = $1730; + $1731 = (_bitshift64Lshr(($1648|0),($1649|0),8)|0); $1732 = tempRet0; - $1733 = (_bitshift64Shl(($1652|0),($1653|0),5)|0); - $1734 = tempRet0; - $1735 = $1733 | $1731; - $1734 | $1732; - $1736 = $1735&255; - $1737 = ((($s)) + 2|0); - HEAP8[$1737>>0] = $1736; - $1738 = (_bitshift64Lshr(($1652|0),($1653|0),3)|0); - $1739 = tempRet0; - $1740 = $1738&255; - $1741 = ((($s)) + 3|0); + $1733 = $1731&255; + $1734 = ((($0)) + 1|0); + HEAP8[$1734>>0] = $1733; + $1735 = (_bitshift64Lshr(($1648|0),($1649|0),16)|0); + $1736 = tempRet0; + $1737 = (_bitshift64Shl(($1656|0),($1657|0),5)|0); + $1738 = tempRet0; + $1739 = $1737 | $1735; + $1738 | $1736; + $1740 = $1739&255; + $1741 = ((($0)) + 2|0); HEAP8[$1741>>0] = $1740; - $1742 = (_bitshift64Lshr(($1652|0),($1653|0),11)|0); + $1742 = (_bitshift64Lshr(($1656|0),($1657|0),3)|0); $1743 = tempRet0; $1744 = $1742&255; - $1745 = ((($s)) + 4|0); + $1745 = ((($0)) + 3|0); HEAP8[$1745>>0] = $1744; - $1746 = (_bitshift64Lshr(($1652|0),($1653|0),19)|0); + $1746 = (_bitshift64Lshr(($1656|0),($1657|0),11)|0); $1747 = tempRet0; - $1748 = (_bitshift64Shl(($1660|0),($1661|0),2)|0); - $1749 = tempRet0; - $1750 = $1748 | $1746; - $1749 | $1747; - $1751 = $1750&255; - $1752 = ((($s)) + 5|0); - HEAP8[$1752>>0] = $1751; - $1753 = (_bitshift64Lshr(($1660|0),($1661|0),6)|0); - $1754 = tempRet0; - $1755 = $1753&255; - $1756 = ((($s)) + 6|0); + $1748 = $1746&255; + $1749 = ((($0)) + 4|0); + HEAP8[$1749>>0] = $1748; + $1750 = (_bitshift64Lshr(($1656|0),($1657|0),19)|0); + $1751 = tempRet0; + $1752 = (_bitshift64Shl(($1664|0),($1665|0),2)|0); + $1753 = tempRet0; + $1754 = $1752 | $1750; + $1753 | $1751; + $1755 = $1754&255; + $1756 = ((($0)) + 5|0); HEAP8[$1756>>0] = $1755; - $1757 = (_bitshift64Lshr(($1660|0),($1661|0),14)|0); + $1757 = (_bitshift64Lshr(($1664|0),($1665|0),6)|0); $1758 = tempRet0; - $1759 = (_bitshift64Shl(($1668|0),($1669|0),7)|0); - $1760 = tempRet0; - $1761 = $1759 | $1757; - $1760 | $1758; - $1762 = $1761&255; - $1763 = ((($s)) + 7|0); - HEAP8[$1763>>0] = $1762; - $1764 = (_bitshift64Lshr(($1668|0),($1669|0),1)|0); - $1765 = tempRet0; - $1766 = $1764&255; - $1767 = ((($s)) + 8|0); + $1759 = $1757&255; + $1760 = ((($0)) + 6|0); + HEAP8[$1760>>0] = $1759; + $1761 = (_bitshift64Lshr(($1664|0),($1665|0),14)|0); + $1762 = tempRet0; + $1763 = (_bitshift64Shl(($1672|0),($1673|0),7)|0); + $1764 = tempRet0; + $1765 = $1763 | $1761; + $1764 | $1762; + $1766 = $1765&255; + $1767 = ((($0)) + 7|0); HEAP8[$1767>>0] = $1766; - $1768 = (_bitshift64Lshr(($1668|0),($1669|0),9)|0); + $1768 = (_bitshift64Lshr(($1672|0),($1673|0),1)|0); $1769 = tempRet0; $1770 = $1768&255; - $1771 = ((($s)) + 9|0); + $1771 = ((($0)) + 8|0); HEAP8[$1771>>0] = $1770; - $1772 = (_bitshift64Lshr(($1668|0),($1669|0),17)|0); + $1772 = (_bitshift64Lshr(($1672|0),($1673|0),9)|0); $1773 = tempRet0; - $1774 = (_bitshift64Shl(($1676|0),($1677|0),4)|0); - $1775 = tempRet0; - $1776 = $1774 | $1772; - $1775 | $1773; - $1777 = $1776&255; - $1778 = ((($s)) + 10|0); - HEAP8[$1778>>0] = $1777; - $1779 = (_bitshift64Lshr(($1676|0),($1677|0),4)|0); - $1780 = tempRet0; - $1781 = $1779&255; - $1782 = ((($s)) + 11|0); + $1774 = $1772&255; + $1775 = ((($0)) + 9|0); + HEAP8[$1775>>0] = $1774; + $1776 = (_bitshift64Lshr(($1672|0),($1673|0),17)|0); + $1777 = tempRet0; + $1778 = (_bitshift64Shl(($1680|0),($1681|0),4)|0); + $1779 = tempRet0; + $1780 = $1778 | $1776; + $1779 | $1777; + $1781 = $1780&255; + $1782 = ((($0)) + 10|0); HEAP8[$1782>>0] = $1781; - $1783 = (_bitshift64Lshr(($1676|0),($1677|0),12)|0); + $1783 = (_bitshift64Lshr(($1680|0),($1681|0),4)|0); $1784 = tempRet0; $1785 = $1783&255; - $1786 = ((($s)) + 12|0); + $1786 = ((($0)) + 11|0); HEAP8[$1786>>0] = $1785; - $1787 = (_bitshift64Lshr(($1676|0),($1677|0),20)|0); + $1787 = (_bitshift64Lshr(($1680|0),($1681|0),12)|0); $1788 = tempRet0; - $1789 = (_bitshift64Shl(($1684|0),($1685|0),1)|0); - $1790 = tempRet0; - $1791 = $1789 | $1787; - $1790 | $1788; - $1792 = $1791&255; - $1793 = ((($s)) + 13|0); - HEAP8[$1793>>0] = $1792; - $1794 = (_bitshift64Lshr(($1684|0),($1685|0),7)|0); - $1795 = tempRet0; - $1796 = $1794&255; - $1797 = ((($s)) + 14|0); + $1789 = $1787&255; + $1790 = ((($0)) + 12|0); + HEAP8[$1790>>0] = $1789; + $1791 = (_bitshift64Lshr(($1680|0),($1681|0),20)|0); + $1792 = tempRet0; + $1793 = (_bitshift64Shl(($1688|0),($1689|0),1)|0); + $1794 = tempRet0; + $1795 = $1793 | $1791; + $1794 | $1792; + $1796 = $1795&255; + $1797 = ((($0)) + 13|0); HEAP8[$1797>>0] = $1796; - $1798 = (_bitshift64Lshr(($1684|0),($1685|0),15)|0); + $1798 = (_bitshift64Lshr(($1688|0),($1689|0),7)|0); $1799 = tempRet0; - $1800 = (_bitshift64Shl(($1692|0),($1693|0),6)|0); - $1801 = tempRet0; - $1802 = $1800 | $1798; - $1801 | $1799; - $1803 = $1802&255; - $1804 = ((($s)) + 15|0); - HEAP8[$1804>>0] = $1803; - $1805 = (_bitshift64Lshr(($1692|0),($1693|0),2)|0); - $1806 = tempRet0; - $1807 = $1805&255; - $1808 = ((($s)) + 16|0); + $1800 = $1798&255; + $1801 = ((($0)) + 14|0); + HEAP8[$1801>>0] = $1800; + $1802 = (_bitshift64Lshr(($1688|0),($1689|0),15)|0); + $1803 = tempRet0; + $1804 = (_bitshift64Shl(($1696|0),($1697|0),6)|0); + $1805 = tempRet0; + $1806 = $1804 | $1802; + $1805 | $1803; + $1807 = $1806&255; + $1808 = ((($0)) + 15|0); HEAP8[$1808>>0] = $1807; - $1809 = (_bitshift64Lshr(($1692|0),($1693|0),10)|0); + $1809 = (_bitshift64Lshr(($1696|0),($1697|0),2)|0); $1810 = tempRet0; $1811 = $1809&255; - $1812 = ((($s)) + 17|0); + $1812 = ((($0)) + 16|0); HEAP8[$1812>>0] = $1811; - $1813 = (_bitshift64Lshr(($1692|0),($1693|0),18)|0); + $1813 = (_bitshift64Lshr(($1696|0),($1697|0),10)|0); $1814 = tempRet0; - $1815 = (_bitshift64Shl(($1700|0),($1701|0),3)|0); - $1816 = tempRet0; - $1817 = $1815 | $1813; - $1816 | $1814; - $1818 = $1817&255; - $1819 = ((($s)) + 18|0); - HEAP8[$1819>>0] = $1818; - $1820 = (_bitshift64Lshr(($1700|0),($1701|0),5)|0); - $1821 = tempRet0; - $1822 = $1820&255; - $1823 = ((($s)) + 19|0); + $1815 = $1813&255; + $1816 = ((($0)) + 17|0); + HEAP8[$1816>>0] = $1815; + $1817 = (_bitshift64Lshr(($1696|0),($1697|0),18)|0); + $1818 = tempRet0; + $1819 = (_bitshift64Shl(($1704|0),($1705|0),3)|0); + $1820 = tempRet0; + $1821 = $1819 | $1817; + $1820 | $1818; + $1822 = $1821&255; + $1823 = ((($0)) + 18|0); HEAP8[$1823>>0] = $1822; - $1824 = (_bitshift64Lshr(($1700|0),($1701|0),13)|0); + $1824 = (_bitshift64Lshr(($1704|0),($1705|0),5)|0); $1825 = tempRet0; $1826 = $1824&255; - $1827 = ((($s)) + 20|0); + $1827 = ((($0)) + 19|0); HEAP8[$1827>>0] = $1826; - $1828 = $1708&255; - $1829 = ((($s)) + 21|0); - HEAP8[$1829>>0] = $1828; - $1830 = (_bitshift64Lshr(($1708|0),($1709|0),8)|0); - $1831 = tempRet0; - $1832 = $1830&255; - $1833 = ((($s)) + 22|0); + $1828 = (_bitshift64Lshr(($1704|0),($1705|0),13)|0); + $1829 = tempRet0; + $1830 = $1828&255; + $1831 = ((($0)) + 20|0); + HEAP8[$1831>>0] = $1830; + $1832 = $1712&255; + $1833 = ((($0)) + 21|0); HEAP8[$1833>>0] = $1832; - $1834 = (_bitshift64Lshr(($1708|0),($1709|0),16)|0); + $1834 = (_bitshift64Lshr(($1712|0),($1713|0),8)|0); $1835 = tempRet0; - $1836 = (_bitshift64Shl(($1716|0),($1717|0),5)|0); - $1837 = tempRet0; - $1838 = $1836 | $1834; - $1837 | $1835; - $1839 = $1838&255; - $1840 = ((($s)) + 23|0); - HEAP8[$1840>>0] = $1839; - $1841 = (_bitshift64Lshr(($1716|0),($1717|0),3)|0); - $1842 = tempRet0; - $1843 = $1841&255; - $1844 = ((($s)) + 24|0); + $1836 = $1834&255; + $1837 = ((($0)) + 22|0); + HEAP8[$1837>>0] = $1836; + $1838 = (_bitshift64Lshr(($1712|0),($1713|0),16)|0); + $1839 = tempRet0; + $1840 = (_bitshift64Shl(($1720|0),($1721|0),5)|0); + $1841 = tempRet0; + $1842 = $1840 | $1838; + $1841 | $1839; + $1843 = $1842&255; + $1844 = ((($0)) + 23|0); HEAP8[$1844>>0] = $1843; - $1845 = (_bitshift64Lshr(($1716|0),($1717|0),11)|0); + $1845 = (_bitshift64Lshr(($1720|0),($1721|0),3)|0); $1846 = tempRet0; $1847 = $1845&255; - $1848 = ((($s)) + 25|0); + $1848 = ((($0)) + 24|0); HEAP8[$1848>>0] = $1847; - $1849 = (_bitshift64Lshr(($1716|0),($1717|0),19)|0); + $1849 = (_bitshift64Lshr(($1720|0),($1721|0),11)|0); $1850 = tempRet0; - $1851 = (_bitshift64Shl(($1724|0),($1725|0),2)|0); - $1852 = tempRet0; - $1853 = $1851 | $1849; - $1852 | $1850; - $1854 = $1853&255; - $1855 = ((($s)) + 26|0); - HEAP8[$1855>>0] = $1854; - $1856 = (_bitshift64Lshr(($1724|0),($1725|0),6)|0); - $1857 = tempRet0; - $1858 = $1856&255; - $1859 = ((($s)) + 27|0); + $1851 = $1849&255; + $1852 = ((($0)) + 25|0); + HEAP8[$1852>>0] = $1851; + $1853 = (_bitshift64Lshr(($1720|0),($1721|0),19)|0); + $1854 = tempRet0; + $1855 = (_bitshift64Shl(($1728|0),($1729|0),2)|0); + $1856 = tempRet0; + $1857 = $1855 | $1853; + $1856 | $1854; + $1858 = $1857&255; + $1859 = ((($0)) + 26|0); HEAP8[$1859>>0] = $1858; - $1860 = (_bitshift64Lshr(($1724|0),($1725|0),14)|0); + $1860 = (_bitshift64Lshr(($1728|0),($1729|0),6)|0); $1861 = tempRet0; - $1862 = (_bitshift64Shl(($1720|0),($1721|0),7)|0); - $1863 = tempRet0; - $1864 = $1860 | $1862; - $1861 | $1863; - $1865 = $1864&255; - $1866 = ((($s)) + 28|0); - HEAP8[$1866>>0] = $1865; - $1867 = (_bitshift64Lshr(($1720|0),($1721|0),1)|0); - $1868 = tempRet0; - $1869 = $1867&255; - $1870 = ((($s)) + 29|0); + $1862 = $1860&255; + $1863 = ((($0)) + 27|0); + HEAP8[$1863>>0] = $1862; + $1864 = (_bitshift64Lshr(($1728|0),($1729|0),14)|0); + $1865 = tempRet0; + $1866 = (_bitshift64Shl(($1724|0),($1725|0),7)|0); + $1867 = tempRet0; + $1868 = $1864 | $1866; + $1865 | $1867; + $1869 = $1868&255; + $1870 = ((($0)) + 28|0); HEAP8[$1870>>0] = $1869; - $1871 = (_bitshift64Lshr(($1720|0),($1721|0),9)|0); + $1871 = (_bitshift64Lshr(($1724|0),($1725|0),1)|0); $1872 = tempRet0; $1873 = $1871&255; - $1874 = ((($s)) + 30|0); + $1874 = ((($0)) + 29|0); HEAP8[$1874>>0] = $1873; - $1875 = (_bitshift64Lshr(($1720|0),($1721|0),17)|0); + $1875 = (_bitshift64Lshr(($1724|0),($1725|0),9)|0); $1876 = tempRet0; $1877 = $1875&255; - $1878 = ((($s)) + 31|0); + $1878 = ((($0)) + 30|0); HEAP8[$1878>>0] = $1877; + $1879 = (_bitshift64Lshr(($1724|0),($1725|0),17)|0); + $1880 = tempRet0; + $1881 = $1879&255; + $1882 = ((($0)) + 31|0); + HEAP8[$1882>>0] = $1881; return; } -function _load_347($in) { - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; +function _load_3_47($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP8[$in>>0]|0; - $1 = $0&255; - $2 = ((($in)) + 1|0); - $3 = HEAP8[$2>>0]|0; - $4 = $3&255; - $5 = (_bitshift64Shl(($4|0),0,8)|0); - $6 = tempRet0; - $7 = $5 | $1; - $8 = ((($in)) + 2|0); - $9 = HEAP8[$8>>0]|0; - $10 = $9&255; - $11 = (_bitshift64Shl(($10|0),0,16)|0); - $12 = tempRet0; - $13 = $7 | $11; - $14 = $6 | $12; - tempRet0 = ($14); - return ($13|0); -} -function _load_448($in) { - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = ((($0)) + 1|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = (_bitshift64Shl(($5|0),0,8)|0); + $7 = tempRet0; + $8 = $6 | $2; + $9 = ((($0)) + 2|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = (_bitshift64Shl(($11|0),0,16)|0); + $13 = tempRet0; + $14 = $8 | $12; + $15 = $7 | $13; + tempRet0 = ($15); + return ($14|0); +} +function _load_4_48($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; var $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP8[$in>>0]|0; - $1 = $0&255; - $2 = ((($in)) + 1|0); - $3 = HEAP8[$2>>0]|0; - $4 = $3&255; - $5 = (_bitshift64Shl(($4|0),0,8)|0); - $6 = tempRet0; - $7 = $5 | $1; - $8 = ((($in)) + 2|0); - $9 = HEAP8[$8>>0]|0; - $10 = $9&255; - $11 = (_bitshift64Shl(($10|0),0,16)|0); - $12 = tempRet0; - $13 = $7 | $11; - $14 = $6 | $12; - $15 = ((($in)) + 3|0); - $16 = HEAP8[$15>>0]|0; - $17 = $16&255; - $18 = (_bitshift64Shl(($17|0),0,24)|0); - $19 = tempRet0; - $20 = $13 | $18; + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = ((($0)) + 1|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = (_bitshift64Shl(($5|0),0,8)|0); + $7 = tempRet0; + $8 = $6 | $2; + $9 = ((($0)) + 2|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = (_bitshift64Shl(($11|0),0,16)|0); + $13 = tempRet0; + $14 = $8 | $12; + $15 = $7 | $13; + $16 = ((($0)) + 3|0); + $17 = HEAP8[$16>>0]|0; + $18 = $17&255; + $19 = (_bitshift64Shl(($18|0),0,24)|0); + $20 = tempRet0; $21 = $14 | $19; - tempRet0 = ($21); - return ($20|0); + $22 = $15 | $20; + tempRet0 = ($22); + return ($21|0); } -function _crypto_sign_ed25519_ref10_sc_reduce($s) { - $s = $s|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; - var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0; +function _crypto_sign_ed25519_ref10_sc_reduce($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0, $1015 = 0; + var $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0; var $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0; var $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0; var $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0; @@ -17783,2858 +14249,2804 @@ function _crypto_sign_ed25519_ref10_sc_reduce($s) { var $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0; var $997 = 0, $998 = 0, $999 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = (_load_351($s)|0); - $1 = tempRet0; - $2 = $0 & 2097151; - $3 = ((($s)) + 2|0); - $4 = (_load_452($3)|0); - $5 = tempRet0; - $6 = (_bitshift64Lshr(($4|0),($5|0),5)|0); - $7 = tempRet0; - $8 = $6 & 2097151; - $9 = ((($s)) + 5|0); - $10 = (_load_351($9)|0); - $11 = tempRet0; - $12 = (_bitshift64Lshr(($10|0),($11|0),2)|0); - $13 = tempRet0; - $14 = $12 & 2097151; - $15 = ((($s)) + 7|0); - $16 = (_load_452($15)|0); - $17 = tempRet0; - $18 = (_bitshift64Lshr(($16|0),($17|0),7)|0); - $19 = tempRet0; - $20 = $18 & 2097151; - $21 = ((($s)) + 10|0); - $22 = (_load_452($21)|0); - $23 = tempRet0; - $24 = (_bitshift64Lshr(($22|0),($23|0),4)|0); - $25 = tempRet0; - $26 = $24 & 2097151; - $27 = ((($s)) + 13|0); - $28 = (_load_351($27)|0); - $29 = tempRet0; - $30 = (_bitshift64Lshr(($28|0),($29|0),1)|0); - $31 = tempRet0; - $32 = $30 & 2097151; - $33 = ((($s)) + 15|0); - $34 = (_load_452($33)|0); - $35 = tempRet0; - $36 = (_bitshift64Lshr(($34|0),($35|0),6)|0); - $37 = tempRet0; - $38 = $36 & 2097151; - $39 = ((($s)) + 18|0); - $40 = (_load_351($39)|0); - $41 = tempRet0; - $42 = (_bitshift64Lshr(($40|0),($41|0),3)|0); - $43 = tempRet0; - $44 = $42 & 2097151; - $45 = ((($s)) + 21|0); - $46 = (_load_351($45)|0); - $47 = tempRet0; - $48 = $46 & 2097151; - $49 = ((($s)) + 23|0); - $50 = (_load_452($49)|0); - $51 = tempRet0; - $52 = (_bitshift64Lshr(($50|0),($51|0),5)|0); - $53 = tempRet0; - $54 = $52 & 2097151; - $55 = ((($s)) + 26|0); - $56 = (_load_351($55)|0); - $57 = tempRet0; - $58 = (_bitshift64Lshr(($56|0),($57|0),2)|0); - $59 = tempRet0; - $60 = $58 & 2097151; - $61 = ((($s)) + 28|0); - $62 = (_load_452($61)|0); - $63 = tempRet0; - $64 = (_bitshift64Lshr(($62|0),($63|0),7)|0); - $65 = tempRet0; - $66 = $64 & 2097151; - $67 = ((($s)) + 31|0); - $68 = (_load_452($67)|0); - $69 = tempRet0; - $70 = (_bitshift64Lshr(($68|0),($69|0),4)|0); - $71 = tempRet0; - $72 = $70 & 2097151; - $73 = ((($s)) + 34|0); - $74 = (_load_351($73)|0); - $75 = tempRet0; - $76 = (_bitshift64Lshr(($74|0),($75|0),1)|0); - $77 = tempRet0; - $78 = $76 & 2097151; - $79 = ((($s)) + 36|0); - $80 = (_load_452($79)|0); - $81 = tempRet0; - $82 = (_bitshift64Lshr(($80|0),($81|0),6)|0); - $83 = tempRet0; - $84 = $82 & 2097151; - $85 = ((($s)) + 39|0); - $86 = (_load_351($85)|0); - $87 = tempRet0; - $88 = (_bitshift64Lshr(($86|0),($87|0),3)|0); - $89 = tempRet0; - $90 = $88 & 2097151; - $91 = ((($s)) + 42|0); - $92 = (_load_351($91)|0); - $93 = tempRet0; - $94 = $92 & 2097151; - $95 = ((($s)) + 44|0); - $96 = (_load_452($95)|0); - $97 = tempRet0; - $98 = (_bitshift64Lshr(($96|0),($97|0),5)|0); - $99 = tempRet0; - $100 = $98 & 2097151; - $101 = ((($s)) + 47|0); - $102 = (_load_351($101)|0); - $103 = tempRet0; - $104 = (_bitshift64Lshr(($102|0),($103|0),2)|0); - $105 = tempRet0; - $106 = $104 & 2097151; - $107 = ((($s)) + 49|0); - $108 = (_load_452($107)|0); - $109 = tempRet0; - $110 = (_bitshift64Lshr(($108|0),($109|0),7)|0); - $111 = tempRet0; - $112 = $110 & 2097151; - $113 = ((($s)) + 52|0); - $114 = (_load_452($113)|0); - $115 = tempRet0; - $116 = (_bitshift64Lshr(($114|0),($115|0),4)|0); - $117 = tempRet0; - $118 = $116 & 2097151; - $119 = ((($s)) + 55|0); - $120 = (_load_351($119)|0); - $121 = tempRet0; - $122 = (_bitshift64Lshr(($120|0),($121|0),1)|0); - $123 = tempRet0; - $124 = $122 & 2097151; - $125 = ((($s)) + 57|0); - $126 = (_load_452($125)|0); - $127 = tempRet0; - $128 = (_bitshift64Lshr(($126|0),($127|0),6)|0); - $129 = tempRet0; - $130 = $128 & 2097151; - $131 = ((($s)) + 60|0); - $132 = (_load_452($131)|0); - $133 = tempRet0; - $134 = (_bitshift64Lshr(($132|0),($133|0),3)|0); - $135 = tempRet0; - $136 = (___muldi3(($134|0),($135|0),666643,0)|0); - $137 = tempRet0; - $138 = (_i64Add(($66|0),0,($136|0),($137|0))|0); - $139 = tempRet0; - $140 = (___muldi3(($134|0),($135|0),470296,0)|0); - $141 = tempRet0; - $142 = (_i64Add(($72|0),0,($140|0),($141|0))|0); - $143 = tempRet0; - $144 = (___muldi3(($134|0),($135|0),654183,0)|0); - $145 = tempRet0; - $146 = (_i64Add(($78|0),0,($144|0),($145|0))|0); - $147 = tempRet0; - $148 = (___muldi3(($134|0),($135|0),-997805,-1)|0); - $149 = tempRet0; - $150 = (_i64Add(($84|0),0,($148|0),($149|0))|0); - $151 = tempRet0; - $152 = (___muldi3(($134|0),($135|0),136657,0)|0); - $153 = tempRet0; - $154 = (_i64Add(($90|0),0,($152|0),($153|0))|0); - $155 = tempRet0; - $156 = (___muldi3(($134|0),($135|0),-683901,-1)|0); - $157 = tempRet0; - $158 = (_i64Add(($94|0),0,($156|0),($157|0))|0); - $159 = tempRet0; - $160 = (___muldi3(($130|0),0,666643,0)|0); - $161 = tempRet0; - $162 = (_i64Add(($60|0),0,($160|0),($161|0))|0); - $163 = tempRet0; - $164 = (___muldi3(($130|0),0,470296,0)|0); - $165 = tempRet0; - $166 = (_i64Add(($164|0),($165|0),($138|0),($139|0))|0); - $167 = tempRet0; - $168 = (___muldi3(($130|0),0,654183,0)|0); - $169 = tempRet0; - $170 = (_i64Add(($168|0),($169|0),($142|0),($143|0))|0); - $171 = tempRet0; - $172 = (___muldi3(($130|0),0,-997805,-1)|0); - $173 = tempRet0; - $174 = (_i64Add(($172|0),($173|0),($146|0),($147|0))|0); - $175 = tempRet0; - $176 = (___muldi3(($130|0),0,136657,0)|0); - $177 = tempRet0; - $178 = (_i64Add(($176|0),($177|0),($150|0),($151|0))|0); - $179 = tempRet0; - $180 = (___muldi3(($130|0),0,-683901,-1)|0); - $181 = tempRet0; - $182 = (_i64Add(($154|0),($155|0),($180|0),($181|0))|0); - $183 = tempRet0; - $184 = (___muldi3(($124|0),0,666643,0)|0); - $185 = tempRet0; - $186 = (_i64Add(($54|0),0,($184|0),($185|0))|0); - $187 = tempRet0; - $188 = (___muldi3(($124|0),0,470296,0)|0); - $189 = tempRet0; - $190 = (_i64Add(($188|0),($189|0),($162|0),($163|0))|0); - $191 = tempRet0; - $192 = (___muldi3(($124|0),0,654183,0)|0); - $193 = tempRet0; - $194 = (_i64Add(($192|0),($193|0),($166|0),($167|0))|0); - $195 = tempRet0; - $196 = (___muldi3(($124|0),0,-997805,-1)|0); - $197 = tempRet0; - $198 = (_i64Add(($196|0),($197|0),($170|0),($171|0))|0); - $199 = tempRet0; - $200 = (___muldi3(($124|0),0,136657,0)|0); - $201 = tempRet0; - $202 = (_i64Add(($200|0),($201|0),($174|0),($175|0))|0); - $203 = tempRet0; - $204 = (___muldi3(($124|0),0,-683901,-1)|0); - $205 = tempRet0; - $206 = (_i64Add(($178|0),($179|0),($204|0),($205|0))|0); - $207 = tempRet0; - $208 = (___muldi3(($118|0),0,666643,0)|0); - $209 = tempRet0; - $210 = (___muldi3(($118|0),0,470296,0)|0); - $211 = tempRet0; - $212 = (_i64Add(($210|0),($211|0),($186|0),($187|0))|0); - $213 = tempRet0; - $214 = (___muldi3(($118|0),0,654183,0)|0); - $215 = tempRet0; - $216 = (_i64Add(($214|0),($215|0),($190|0),($191|0))|0); - $217 = tempRet0; - $218 = (___muldi3(($118|0),0,-997805,-1)|0); - $219 = tempRet0; - $220 = (_i64Add(($218|0),($219|0),($194|0),($195|0))|0); - $221 = tempRet0; - $222 = (___muldi3(($118|0),0,136657,0)|0); - $223 = tempRet0; - $224 = (_i64Add(($222|0),($223|0),($198|0),($199|0))|0); - $225 = tempRet0; - $226 = (___muldi3(($118|0),0,-683901,-1)|0); - $227 = tempRet0; - $228 = (_i64Add(($202|0),($203|0),($226|0),($227|0))|0); - $229 = tempRet0; - $230 = (___muldi3(($112|0),0,666643,0)|0); - $231 = tempRet0; - $232 = (___muldi3(($112|0),0,470296,0)|0); - $233 = tempRet0; - $234 = (___muldi3(($112|0),0,654183,0)|0); - $235 = tempRet0; - $236 = (_i64Add(($234|0),($235|0),($212|0),($213|0))|0); - $237 = tempRet0; - $238 = (___muldi3(($112|0),0,-997805,-1)|0); - $239 = tempRet0; - $240 = (_i64Add(($216|0),($217|0),($238|0),($239|0))|0); - $241 = tempRet0; - $242 = (___muldi3(($112|0),0,136657,0)|0); - $243 = tempRet0; - $244 = (_i64Add(($242|0),($243|0),($220|0),($221|0))|0); - $245 = tempRet0; - $246 = (___muldi3(($112|0),0,-683901,-1)|0); - $247 = tempRet0; - $248 = (_i64Add(($224|0),($225|0),($246|0),($247|0))|0); - $249 = tempRet0; - $250 = (___muldi3(($106|0),0,666643,0)|0); - $251 = tempRet0; - $252 = (_i64Add(($250|0),($251|0),($38|0),0)|0); - $253 = tempRet0; - $254 = (___muldi3(($106|0),0,470296,0)|0); - $255 = tempRet0; - $256 = (___muldi3(($106|0),0,654183,0)|0); - $257 = tempRet0; - $258 = (_i64Add(($256|0),($257|0),($48|0),0)|0); - $259 = tempRet0; - $260 = (_i64Add(($258|0),($259|0),($232|0),($233|0))|0); - $261 = tempRet0; - $262 = (_i64Add(($260|0),($261|0),($208|0),($209|0))|0); - $263 = tempRet0; - $264 = (___muldi3(($106|0),0,-997805,-1)|0); - $265 = tempRet0; - $266 = (_i64Add(($236|0),($237|0),($264|0),($265|0))|0); - $267 = tempRet0; - $268 = (___muldi3(($106|0),0,136657,0)|0); - $269 = tempRet0; - $270 = (_i64Add(($240|0),($241|0),($268|0),($269|0))|0); - $271 = tempRet0; - $272 = (___muldi3(($106|0),0,-683901,-1)|0); - $273 = tempRet0; - $274 = (_i64Add(($244|0),($245|0),($272|0),($273|0))|0); - $275 = tempRet0; - $276 = (_i64Add(($252|0),($253|0),1048576,0)|0); - $277 = tempRet0; - $278 = (_bitshift64Lshr(($276|0),($277|0),21)|0); - $279 = tempRet0; - $280 = (_i64Add(($254|0),($255|0),($44|0),0)|0); - $281 = tempRet0; - $282 = (_i64Add(($280|0),($281|0),($230|0),($231|0))|0); - $283 = tempRet0; - $284 = (_i64Add(($282|0),($283|0),($278|0),($279|0))|0); - $285 = tempRet0; - $286 = (_bitshift64Shl(($278|0),($279|0),21)|0); - $287 = tempRet0; - $288 = (_i64Subtract(($252|0),($253|0),($286|0),($287|0))|0); - $289 = tempRet0; - $290 = (_i64Add(($262|0),($263|0),1048576,0)|0); - $291 = tempRet0; - $292 = (_bitshift64Lshr(($290|0),($291|0),21)|0); - $293 = tempRet0; - $294 = (_i64Add(($266|0),($267|0),($292|0),($293|0))|0); - $295 = tempRet0; - $296 = (_bitshift64Shl(($292|0),($293|0),21)|0); - $297 = tempRet0; - $298 = (_i64Subtract(($262|0),($263|0),($296|0),($297|0))|0); - $299 = tempRet0; - $300 = (_i64Add(($270|0),($271|0),1048576,0)|0); - $301 = tempRet0; - $302 = (_bitshift64Ashr(($300|0),($301|0),21)|0); - $303 = tempRet0; - $304 = (_i64Add(($302|0),($303|0),($274|0),($275|0))|0); - $305 = tempRet0; - $306 = (_bitshift64Shl(($302|0),($303|0),21)|0); - $307 = tempRet0; - $308 = (_i64Subtract(($270|0),($271|0),($306|0),($307|0))|0); - $309 = tempRet0; - $310 = (_i64Add(($248|0),($249|0),1048576,0)|0); - $311 = tempRet0; - $312 = (_bitshift64Ashr(($310|0),($311|0),21)|0); - $313 = tempRet0; - $314 = (_i64Add(($312|0),($313|0),($228|0),($229|0))|0); - $315 = tempRet0; - $316 = (_bitshift64Shl(($312|0),($313|0),21)|0); - $317 = tempRet0; - $318 = (_i64Subtract(($248|0),($249|0),($316|0),($317|0))|0); - $319 = tempRet0; - $320 = (_i64Add(($206|0),($207|0),1048576,0)|0); - $321 = tempRet0; - $322 = (_bitshift64Ashr(($320|0),($321|0),21)|0); - $323 = tempRet0; - $324 = (_i64Add(($322|0),($323|0),($182|0),($183|0))|0); - $325 = tempRet0; - $326 = (_bitshift64Shl(($322|0),($323|0),21)|0); - $327 = tempRet0; - $328 = (_i64Subtract(($206|0),($207|0),($326|0),($327|0))|0); - $329 = tempRet0; - $330 = (_i64Add(($158|0),($159|0),1048576,0)|0); - $331 = tempRet0; - $332 = (_bitshift64Ashr(($330|0),($331|0),21)|0); - $333 = tempRet0; - $334 = (_i64Add(($332|0),($333|0),($100|0),0)|0); - $335 = tempRet0; - $336 = (_bitshift64Shl(($332|0),($333|0),21)|0); - $337 = tempRet0; - $338 = (_i64Subtract(($158|0),($159|0),($336|0),($337|0))|0); - $339 = tempRet0; - $340 = (_i64Add(($284|0),($285|0),1048576,0)|0); - $341 = tempRet0; - $342 = (_bitshift64Lshr(($340|0),($341|0),21)|0); - $343 = tempRet0; - $344 = (_i64Add(($342|0),($343|0),($298|0),($299|0))|0); - $345 = tempRet0; - $346 = (_bitshift64Shl(($342|0),($343|0),21)|0); - $347 = tempRet0; - $348 = (_i64Subtract(($284|0),($285|0),($346|0),($347|0))|0); - $349 = tempRet0; - $350 = (_i64Add(($294|0),($295|0),1048576,0)|0); - $351 = tempRet0; - $352 = (_bitshift64Ashr(($350|0),($351|0),21)|0); - $353 = tempRet0; - $354 = (_i64Add(($352|0),($353|0),($308|0),($309|0))|0); - $355 = tempRet0; - $356 = (_bitshift64Shl(($352|0),($353|0),21)|0); - $357 = tempRet0; - $358 = (_i64Subtract(($294|0),($295|0),($356|0),($357|0))|0); - $359 = tempRet0; - $360 = (_i64Add(($304|0),($305|0),1048576,0)|0); - $361 = tempRet0; - $362 = (_bitshift64Ashr(($360|0),($361|0),21)|0); - $363 = tempRet0; - $364 = (_i64Add(($362|0),($363|0),($318|0),($319|0))|0); - $365 = tempRet0; - $366 = (_bitshift64Shl(($362|0),($363|0),21)|0); - $367 = tempRet0; - $368 = (_i64Subtract(($304|0),($305|0),($366|0),($367|0))|0); - $369 = tempRet0; - $370 = (_i64Add(($314|0),($315|0),1048576,0)|0); - $371 = tempRet0; - $372 = (_bitshift64Ashr(($370|0),($371|0),21)|0); - $373 = tempRet0; - $374 = (_i64Add(($372|0),($373|0),($328|0),($329|0))|0); - $375 = tempRet0; - $376 = (_bitshift64Shl(($372|0),($373|0),21)|0); - $377 = tempRet0; - $378 = (_i64Subtract(($314|0),($315|0),($376|0),($377|0))|0); - $379 = tempRet0; - $380 = (_i64Add(($324|0),($325|0),1048576,0)|0); - $381 = tempRet0; - $382 = (_bitshift64Ashr(($380|0),($381|0),21)|0); - $383 = tempRet0; - $384 = (_i64Add(($382|0),($383|0),($338|0),($339|0))|0); - $385 = tempRet0; - $386 = (_bitshift64Shl(($382|0),($383|0),21)|0); - $387 = tempRet0; - $388 = (_i64Subtract(($324|0),($325|0),($386|0),($387|0))|0); - $389 = tempRet0; - $390 = (___muldi3(($334|0),($335|0),666643,0)|0); - $391 = tempRet0; - $392 = (_i64Add(($32|0),0,($390|0),($391|0))|0); - $393 = tempRet0; - $394 = (___muldi3(($334|0),($335|0),470296,0)|0); - $395 = tempRet0; - $396 = (_i64Add(($288|0),($289|0),($394|0),($395|0))|0); - $397 = tempRet0; - $398 = (___muldi3(($334|0),($335|0),654183,0)|0); - $399 = tempRet0; - $400 = (_i64Add(($348|0),($349|0),($398|0),($399|0))|0); - $401 = tempRet0; - $402 = (___muldi3(($334|0),($335|0),-997805,-1)|0); - $403 = tempRet0; - $404 = (_i64Add(($402|0),($403|0),($344|0),($345|0))|0); - $405 = tempRet0; - $406 = (___muldi3(($334|0),($335|0),136657,0)|0); - $407 = tempRet0; - $408 = (_i64Add(($406|0),($407|0),($358|0),($359|0))|0); - $409 = tempRet0; - $410 = (___muldi3(($334|0),($335|0),-683901,-1)|0); - $411 = tempRet0; - $412 = (_i64Add(($354|0),($355|0),($410|0),($411|0))|0); - $413 = tempRet0; - $414 = (___muldi3(($384|0),($385|0),666643,0)|0); - $415 = tempRet0; - $416 = (_i64Add(($26|0),0,($414|0),($415|0))|0); - $417 = tempRet0; - $418 = (___muldi3(($384|0),($385|0),470296,0)|0); - $419 = tempRet0; - $420 = (_i64Add(($392|0),($393|0),($418|0),($419|0))|0); - $421 = tempRet0; - $422 = (___muldi3(($384|0),($385|0),654183,0)|0); - $423 = tempRet0; - $424 = (_i64Add(($396|0),($397|0),($422|0),($423|0))|0); - $425 = tempRet0; - $426 = (___muldi3(($384|0),($385|0),-997805,-1)|0); - $427 = tempRet0; - $428 = (_i64Add(($400|0),($401|0),($426|0),($427|0))|0); - $429 = tempRet0; - $430 = (___muldi3(($384|0),($385|0),136657,0)|0); - $431 = tempRet0; - $432 = (_i64Add(($404|0),($405|0),($430|0),($431|0))|0); - $433 = tempRet0; - $434 = (___muldi3(($384|0),($385|0),-683901,-1)|0); - $435 = tempRet0; - $436 = (_i64Add(($408|0),($409|0),($434|0),($435|0))|0); - $437 = tempRet0; - $438 = (___muldi3(($388|0),($389|0),666643,0)|0); - $439 = tempRet0; - $440 = (_i64Add(($20|0),0,($438|0),($439|0))|0); - $441 = tempRet0; - $442 = (___muldi3(($388|0),($389|0),470296,0)|0); - $443 = tempRet0; - $444 = (_i64Add(($416|0),($417|0),($442|0),($443|0))|0); - $445 = tempRet0; - $446 = (___muldi3(($388|0),($389|0),654183,0)|0); - $447 = tempRet0; - $448 = (_i64Add(($420|0),($421|0),($446|0),($447|0))|0); - $449 = tempRet0; - $450 = (___muldi3(($388|0),($389|0),-997805,-1)|0); - $451 = tempRet0; - $452 = (_i64Add(($424|0),($425|0),($450|0),($451|0))|0); - $453 = tempRet0; - $454 = (___muldi3(($388|0),($389|0),136657,0)|0); - $455 = tempRet0; - $456 = (_i64Add(($428|0),($429|0),($454|0),($455|0))|0); - $457 = tempRet0; - $458 = (___muldi3(($388|0),($389|0),-683901,-1)|0); - $459 = tempRet0; - $460 = (_i64Add(($432|0),($433|0),($458|0),($459|0))|0); - $461 = tempRet0; - $462 = (___muldi3(($374|0),($375|0),666643,0)|0); - $463 = tempRet0; - $464 = (_i64Add(($462|0),($463|0),($14|0),0)|0); - $465 = tempRet0; - $466 = (___muldi3(($374|0),($375|0),470296,0)|0); - $467 = tempRet0; - $468 = (_i64Add(($440|0),($441|0),($466|0),($467|0))|0); - $469 = tempRet0; - $470 = (___muldi3(($374|0),($375|0),654183,0)|0); - $471 = tempRet0; - $472 = (_i64Add(($444|0),($445|0),($470|0),($471|0))|0); - $473 = tempRet0; - $474 = (___muldi3(($374|0),($375|0),-997805,-1)|0); - $475 = tempRet0; - $476 = (_i64Add(($448|0),($449|0),($474|0),($475|0))|0); - $477 = tempRet0; - $478 = (___muldi3(($374|0),($375|0),136657,0)|0); - $479 = tempRet0; - $480 = (_i64Add(($452|0),($453|0),($478|0),($479|0))|0); - $481 = tempRet0; - $482 = (___muldi3(($374|0),($375|0),-683901,-1)|0); - $483 = tempRet0; - $484 = (_i64Add(($456|0),($457|0),($482|0),($483|0))|0); - $485 = tempRet0; - $486 = (___muldi3(($378|0),($379|0),666643,0)|0); - $487 = tempRet0; - $488 = (___muldi3(($378|0),($379|0),470296,0)|0); - $489 = tempRet0; - $490 = (___muldi3(($378|0),($379|0),654183,0)|0); - $491 = tempRet0; - $492 = (_i64Add(($468|0),($469|0),($490|0),($491|0))|0); - $493 = tempRet0; - $494 = (___muldi3(($378|0),($379|0),-997805,-1)|0); - $495 = tempRet0; - $496 = (_i64Add(($472|0),($473|0),($494|0),($495|0))|0); - $497 = tempRet0; - $498 = (___muldi3(($378|0),($379|0),136657,0)|0); - $499 = tempRet0; - $500 = (_i64Add(($476|0),($477|0),($498|0),($499|0))|0); - $501 = tempRet0; - $502 = (___muldi3(($378|0),($379|0),-683901,-1)|0); - $503 = tempRet0; - $504 = (_i64Add(($480|0),($481|0),($502|0),($503|0))|0); - $505 = tempRet0; - $506 = (___muldi3(($364|0),($365|0),666643,0)|0); - $507 = tempRet0; - $508 = (_i64Add(($506|0),($507|0),($2|0),0)|0); - $509 = tempRet0; - $510 = (___muldi3(($364|0),($365|0),470296,0)|0); - $511 = tempRet0; - $512 = (___muldi3(($364|0),($365|0),654183,0)|0); - $513 = tempRet0; - $514 = (_i64Add(($464|0),($465|0),($512|0),($513|0))|0); - $515 = tempRet0; - $516 = (_i64Add(($514|0),($515|0),($488|0),($489|0))|0); - $517 = tempRet0; - $518 = (___muldi3(($364|0),($365|0),-997805,-1)|0); - $519 = tempRet0; - $520 = (_i64Add(($492|0),($493|0),($518|0),($519|0))|0); - $521 = tempRet0; - $522 = (___muldi3(($364|0),($365|0),136657,0)|0); - $523 = tempRet0; - $524 = (_i64Add(($496|0),($497|0),($522|0),($523|0))|0); - $525 = tempRet0; - $526 = (___muldi3(($364|0),($365|0),-683901,-1)|0); - $527 = tempRet0; - $528 = (_i64Add(($500|0),($501|0),($526|0),($527|0))|0); - $529 = tempRet0; - $530 = (_i64Add(($508|0),($509|0),1048576,0)|0); - $531 = tempRet0; - $532 = (_bitshift64Ashr(($530|0),($531|0),21)|0); - $533 = tempRet0; - $534 = (_i64Add(($510|0),($511|0),($8|0),0)|0); - $535 = tempRet0; - $536 = (_i64Add(($534|0),($535|0),($486|0),($487|0))|0); - $537 = tempRet0; - $538 = (_i64Add(($536|0),($537|0),($532|0),($533|0))|0); - $539 = tempRet0; - $540 = (_bitshift64Shl(($532|0),($533|0),21)|0); - $541 = tempRet0; - $542 = (_i64Subtract(($508|0),($509|0),($540|0),($541|0))|0); - $543 = tempRet0; - $544 = (_i64Add(($516|0),($517|0),1048576,0)|0); - $545 = tempRet0; - $546 = (_bitshift64Ashr(($544|0),($545|0),21)|0); - $547 = tempRet0; - $548 = (_i64Add(($546|0),($547|0),($520|0),($521|0))|0); - $549 = tempRet0; - $550 = (_bitshift64Shl(($546|0),($547|0),21)|0); - $551 = tempRet0; - $552 = (_i64Add(($524|0),($525|0),1048576,0)|0); - $553 = tempRet0; - $554 = (_bitshift64Ashr(($552|0),($553|0),21)|0); - $555 = tempRet0; - $556 = (_i64Add(($554|0),($555|0),($528|0),($529|0))|0); - $557 = tempRet0; - $558 = (_bitshift64Shl(($554|0),($555|0),21)|0); - $559 = tempRet0; - $560 = (_i64Add(($504|0),($505|0),1048576,0)|0); - $561 = tempRet0; - $562 = (_bitshift64Ashr(($560|0),($561|0),21)|0); - $563 = tempRet0; - $564 = (_i64Add(($562|0),($563|0),($484|0),($485|0))|0); - $565 = tempRet0; - $566 = (_bitshift64Shl(($562|0),($563|0),21)|0); - $567 = tempRet0; - $568 = (_i64Subtract(($504|0),($505|0),($566|0),($567|0))|0); - $569 = tempRet0; - $570 = (_i64Add(($460|0),($461|0),1048576,0)|0); - $571 = tempRet0; - $572 = (_bitshift64Ashr(($570|0),($571|0),21)|0); - $573 = tempRet0; - $574 = (_i64Add(($572|0),($573|0),($436|0),($437|0))|0); - $575 = tempRet0; - $576 = (_bitshift64Shl(($572|0),($573|0),21)|0); - $577 = tempRet0; - $578 = (_i64Subtract(($460|0),($461|0),($576|0),($577|0))|0); - $579 = tempRet0; - $580 = (_i64Add(($412|0),($413|0),1048576,0)|0); - $581 = tempRet0; - $582 = (_bitshift64Ashr(($580|0),($581|0),21)|0); - $583 = tempRet0; - $584 = (_i64Add(($582|0),($583|0),($368|0),($369|0))|0); - $585 = tempRet0; - $586 = (_bitshift64Shl(($582|0),($583|0),21)|0); - $587 = tempRet0; - $588 = (_i64Subtract(($412|0),($413|0),($586|0),($587|0))|0); - $589 = tempRet0; - $590 = (_i64Add(($538|0),($539|0),1048576,0)|0); - $591 = tempRet0; - $592 = (_bitshift64Ashr(($590|0),($591|0),21)|0); - $593 = tempRet0; - $594 = (_bitshift64Shl(($592|0),($593|0),21)|0); - $595 = tempRet0; - $596 = (_i64Add(($548|0),($549|0),1048576,0)|0); - $597 = tempRet0; - $598 = (_bitshift64Ashr(($596|0),($597|0),21)|0); - $599 = tempRet0; - $600 = (_bitshift64Shl(($598|0),($599|0),21)|0); - $601 = tempRet0; - $602 = (_i64Subtract(($548|0),($549|0),($600|0),($601|0))|0); - $603 = tempRet0; - $604 = (_i64Add(($556|0),($557|0),1048576,0)|0); - $605 = tempRet0; - $606 = (_bitshift64Ashr(($604|0),($605|0),21)|0); - $607 = tempRet0; - $608 = (_i64Add(($568|0),($569|0),($606|0),($607|0))|0); - $609 = tempRet0; - $610 = (_bitshift64Shl(($606|0),($607|0),21)|0); - $611 = tempRet0; - $612 = (_i64Subtract(($556|0),($557|0),($610|0),($611|0))|0); - $613 = tempRet0; - $614 = (_i64Add(($564|0),($565|0),1048576,0)|0); - $615 = tempRet0; - $616 = (_bitshift64Ashr(($614|0),($615|0),21)|0); - $617 = tempRet0; - $618 = (_i64Add(($578|0),($579|0),($616|0),($617|0))|0); - $619 = tempRet0; - $620 = (_bitshift64Shl(($616|0),($617|0),21)|0); - $621 = tempRet0; - $622 = (_i64Subtract(($564|0),($565|0),($620|0),($621|0))|0); - $623 = tempRet0; - $624 = (_i64Add(($574|0),($575|0),1048576,0)|0); - $625 = tempRet0; - $626 = (_bitshift64Ashr(($624|0),($625|0),21)|0); - $627 = tempRet0; - $628 = (_i64Add(($588|0),($589|0),($626|0),($627|0))|0); - $629 = tempRet0; - $630 = (_bitshift64Shl(($626|0),($627|0),21)|0); - $631 = tempRet0; - $632 = (_i64Subtract(($574|0),($575|0),($630|0),($631|0))|0); - $633 = tempRet0; - $634 = (_i64Add(($584|0),($585|0),1048576,0)|0); - $635 = tempRet0; - $636 = (_bitshift64Ashr(($634|0),($635|0),21)|0); - $637 = tempRet0; - $638 = (_bitshift64Shl(($636|0),($637|0),21)|0); - $639 = tempRet0; - $640 = (_i64Subtract(($584|0),($585|0),($638|0),($639|0))|0); - $641 = tempRet0; - $642 = (___muldi3(($636|0),($637|0),666643,0)|0); - $643 = tempRet0; - $644 = (_i64Add(($542|0),($543|0),($642|0),($643|0))|0); - $645 = tempRet0; - $646 = (___muldi3(($636|0),($637|0),470296,0)|0); - $647 = tempRet0; - $648 = (___muldi3(($636|0),($637|0),654183,0)|0); - $649 = tempRet0; - $650 = (___muldi3(($636|0),($637|0),-997805,-1)|0); - $651 = tempRet0; - $652 = (_i64Add(($602|0),($603|0),($650|0),($651|0))|0); - $653 = tempRet0; - $654 = (___muldi3(($636|0),($637|0),136657,0)|0); - $655 = tempRet0; - $656 = (___muldi3(($636|0),($637|0),-683901,-1)|0); - $657 = tempRet0; - $658 = (_i64Add(($612|0),($613|0),($656|0),($657|0))|0); - $659 = tempRet0; - $660 = (_bitshift64Ashr(($644|0),($645|0),21)|0); - $661 = tempRet0; - $662 = (_i64Add(($646|0),($647|0),($538|0),($539|0))|0); - $663 = tempRet0; - $664 = (_i64Subtract(($662|0),($663|0),($594|0),($595|0))|0); - $665 = tempRet0; - $666 = (_i64Add(($664|0),($665|0),($660|0),($661|0))|0); - $667 = tempRet0; - $668 = (_bitshift64Shl(($660|0),($661|0),21)|0); - $669 = tempRet0; - $670 = (_i64Subtract(($644|0),($645|0),($668|0),($669|0))|0); - $671 = tempRet0; - $672 = (_bitshift64Ashr(($666|0),($667|0),21)|0); - $673 = tempRet0; - $674 = (_i64Add(($648|0),($649|0),($516|0),($517|0))|0); - $675 = tempRet0; - $676 = (_i64Subtract(($674|0),($675|0),($550|0),($551|0))|0); - $677 = tempRet0; - $678 = (_i64Add(($676|0),($677|0),($592|0),($593|0))|0); - $679 = tempRet0; - $680 = (_i64Add(($678|0),($679|0),($672|0),($673|0))|0); - $681 = tempRet0; - $682 = (_bitshift64Shl(($672|0),($673|0),21)|0); - $683 = tempRet0; - $684 = (_i64Subtract(($666|0),($667|0),($682|0),($683|0))|0); - $685 = tempRet0; - $686 = (_bitshift64Ashr(($680|0),($681|0),21)|0); - $687 = tempRet0; - $688 = (_i64Add(($686|0),($687|0),($652|0),($653|0))|0); - $689 = tempRet0; - $690 = (_bitshift64Shl(($686|0),($687|0),21)|0); - $691 = tempRet0; - $692 = (_i64Subtract(($680|0),($681|0),($690|0),($691|0))|0); - $693 = tempRet0; - $694 = (_bitshift64Ashr(($688|0),($689|0),21)|0); - $695 = tempRet0; - $696 = (_i64Add(($654|0),($655|0),($524|0),($525|0))|0); - $697 = tempRet0; - $698 = (_i64Subtract(($696|0),($697|0),($558|0),($559|0))|0); - $699 = tempRet0; - $700 = (_i64Add(($698|0),($699|0),($598|0),($599|0))|0); - $701 = tempRet0; - $702 = (_i64Add(($700|0),($701|0),($694|0),($695|0))|0); - $703 = tempRet0; - $704 = (_bitshift64Shl(($694|0),($695|0),21)|0); - $705 = tempRet0; - $706 = (_i64Subtract(($688|0),($689|0),($704|0),($705|0))|0); - $707 = tempRet0; - $708 = (_bitshift64Ashr(($702|0),($703|0),21)|0); - $709 = tempRet0; - $710 = (_i64Add(($708|0),($709|0),($658|0),($659|0))|0); - $711 = tempRet0; - $712 = (_bitshift64Shl(($708|0),($709|0),21)|0); - $713 = tempRet0; - $714 = (_i64Subtract(($702|0),($703|0),($712|0),($713|0))|0); - $715 = tempRet0; - $716 = (_bitshift64Ashr(($710|0),($711|0),21)|0); - $717 = tempRet0; - $718 = (_i64Add(($608|0),($609|0),($716|0),($717|0))|0); - $719 = tempRet0; - $720 = (_bitshift64Shl(($716|0),($717|0),21)|0); - $721 = tempRet0; - $722 = (_i64Subtract(($710|0),($711|0),($720|0),($721|0))|0); - $723 = tempRet0; - $724 = (_bitshift64Ashr(($718|0),($719|0),21)|0); - $725 = tempRet0; - $726 = (_i64Add(($724|0),($725|0),($622|0),($623|0))|0); - $727 = tempRet0; - $728 = (_bitshift64Shl(($724|0),($725|0),21)|0); - $729 = tempRet0; - $730 = (_i64Subtract(($718|0),($719|0),($728|0),($729|0))|0); - $731 = tempRet0; - $732 = (_bitshift64Ashr(($726|0),($727|0),21)|0); - $733 = tempRet0; - $734 = (_i64Add(($618|0),($619|0),($732|0),($733|0))|0); - $735 = tempRet0; - $736 = (_bitshift64Shl(($732|0),($733|0),21)|0); - $737 = tempRet0; - $738 = (_i64Subtract(($726|0),($727|0),($736|0),($737|0))|0); - $739 = tempRet0; - $740 = (_bitshift64Ashr(($734|0),($735|0),21)|0); - $741 = tempRet0; - $742 = (_i64Add(($740|0),($741|0),($632|0),($633|0))|0); - $743 = tempRet0; - $744 = (_bitshift64Shl(($740|0),($741|0),21)|0); - $745 = tempRet0; - $746 = (_i64Subtract(($734|0),($735|0),($744|0),($745|0))|0); - $747 = tempRet0; - $748 = (_bitshift64Ashr(($742|0),($743|0),21)|0); - $749 = tempRet0; - $750 = (_i64Add(($628|0),($629|0),($748|0),($749|0))|0); - $751 = tempRet0; - $752 = (_bitshift64Shl(($748|0),($749|0),21)|0); - $753 = tempRet0; - $754 = (_i64Subtract(($742|0),($743|0),($752|0),($753|0))|0); - $755 = tempRet0; - $756 = (_bitshift64Ashr(($750|0),($751|0),21)|0); - $757 = tempRet0; - $758 = (_i64Add(($756|0),($757|0),($640|0),($641|0))|0); - $759 = tempRet0; - $760 = (_bitshift64Shl(($756|0),($757|0),21)|0); - $761 = tempRet0; - $762 = (_i64Subtract(($750|0),($751|0),($760|0),($761|0))|0); - $763 = tempRet0; - $764 = (_bitshift64Ashr(($758|0),($759|0),21)|0); - $765 = tempRet0; - $766 = (_bitshift64Shl(($764|0),($765|0),21)|0); - $767 = tempRet0; - $768 = (_i64Subtract(($758|0),($759|0),($766|0),($767|0))|0); - $769 = tempRet0; - $770 = (___muldi3(($764|0),($765|0),666643,0)|0); - $771 = tempRet0; - $772 = (_i64Add(($770|0),($771|0),($670|0),($671|0))|0); - $773 = tempRet0; - $774 = (___muldi3(($764|0),($765|0),470296,0)|0); - $775 = tempRet0; - $776 = (_i64Add(($684|0),($685|0),($774|0),($775|0))|0); - $777 = tempRet0; - $778 = (___muldi3(($764|0),($765|0),654183,0)|0); - $779 = tempRet0; - $780 = (_i64Add(($692|0),($693|0),($778|0),($779|0))|0); - $781 = tempRet0; - $782 = (___muldi3(($764|0),($765|0),-997805,-1)|0); - $783 = tempRet0; - $784 = (_i64Add(($706|0),($707|0),($782|0),($783|0))|0); - $785 = tempRet0; - $786 = (___muldi3(($764|0),($765|0),136657,0)|0); - $787 = tempRet0; - $788 = (_i64Add(($714|0),($715|0),($786|0),($787|0))|0); - $789 = tempRet0; - $790 = (___muldi3(($764|0),($765|0),-683901,-1)|0); - $791 = tempRet0; - $792 = (_i64Add(($722|0),($723|0),($790|0),($791|0))|0); - $793 = tempRet0; - $794 = (_bitshift64Ashr(($772|0),($773|0),21)|0); - $795 = tempRet0; - $796 = (_i64Add(($776|0),($777|0),($794|0),($795|0))|0); - $797 = tempRet0; - $798 = (_bitshift64Shl(($794|0),($795|0),21)|0); - $799 = tempRet0; - $800 = (_i64Subtract(($772|0),($773|0),($798|0),($799|0))|0); - $801 = tempRet0; - $802 = (_bitshift64Ashr(($796|0),($797|0),21)|0); - $803 = tempRet0; - $804 = (_i64Add(($780|0),($781|0),($802|0),($803|0))|0); - $805 = tempRet0; - $806 = (_bitshift64Shl(($802|0),($803|0),21)|0); - $807 = tempRet0; - $808 = (_i64Subtract(($796|0),($797|0),($806|0),($807|0))|0); - $809 = tempRet0; - $810 = (_bitshift64Ashr(($804|0),($805|0),21)|0); - $811 = tempRet0; - $812 = (_i64Add(($810|0),($811|0),($784|0),($785|0))|0); - $813 = tempRet0; - $814 = (_bitshift64Shl(($810|0),($811|0),21)|0); - $815 = tempRet0; - $816 = (_i64Subtract(($804|0),($805|0),($814|0),($815|0))|0); - $817 = tempRet0; - $818 = (_bitshift64Ashr(($812|0),($813|0),21)|0); - $819 = tempRet0; - $820 = (_i64Add(($788|0),($789|0),($818|0),($819|0))|0); - $821 = tempRet0; - $822 = (_bitshift64Shl(($818|0),($819|0),21)|0); - $823 = tempRet0; - $824 = (_i64Subtract(($812|0),($813|0),($822|0),($823|0))|0); - $825 = tempRet0; - $826 = (_bitshift64Ashr(($820|0),($821|0),21)|0); - $827 = tempRet0; - $828 = (_i64Add(($826|0),($827|0),($792|0),($793|0))|0); - $829 = tempRet0; - $830 = (_bitshift64Shl(($826|0),($827|0),21)|0); - $831 = tempRet0; - $832 = (_i64Subtract(($820|0),($821|0),($830|0),($831|0))|0); - $833 = tempRet0; - $834 = (_bitshift64Ashr(($828|0),($829|0),21)|0); - $835 = tempRet0; - $836 = (_i64Add(($834|0),($835|0),($730|0),($731|0))|0); - $837 = tempRet0; - $838 = (_bitshift64Shl(($834|0),($835|0),21)|0); - $839 = tempRet0; - $840 = (_i64Subtract(($828|0),($829|0),($838|0),($839|0))|0); - $841 = tempRet0; - $842 = (_bitshift64Ashr(($836|0),($837|0),21)|0); - $843 = tempRet0; - $844 = (_i64Add(($842|0),($843|0),($738|0),($739|0))|0); - $845 = tempRet0; - $846 = (_bitshift64Shl(($842|0),($843|0),21)|0); - $847 = tempRet0; - $848 = (_i64Subtract(($836|0),($837|0),($846|0),($847|0))|0); - $849 = tempRet0; - $850 = (_bitshift64Ashr(($844|0),($845|0),21)|0); - $851 = tempRet0; - $852 = (_i64Add(($850|0),($851|0),($746|0),($747|0))|0); - $853 = tempRet0; - $854 = (_bitshift64Shl(($850|0),($851|0),21)|0); - $855 = tempRet0; - $856 = (_i64Subtract(($844|0),($845|0),($854|0),($855|0))|0); - $857 = tempRet0; - $858 = (_bitshift64Ashr(($852|0),($853|0),21)|0); - $859 = tempRet0; - $860 = (_i64Add(($858|0),($859|0),($754|0),($755|0))|0); - $861 = tempRet0; - $862 = (_bitshift64Shl(($858|0),($859|0),21)|0); - $863 = tempRet0; - $864 = (_i64Subtract(($852|0),($853|0),($862|0),($863|0))|0); - $865 = tempRet0; - $866 = (_bitshift64Ashr(($860|0),($861|0),21)|0); - $867 = tempRet0; - $868 = (_i64Add(($866|0),($867|0),($762|0),($763|0))|0); - $869 = tempRet0; - $870 = (_bitshift64Shl(($866|0),($867|0),21)|0); - $871 = tempRet0; - $872 = (_i64Subtract(($860|0),($861|0),($870|0),($871|0))|0); - $873 = tempRet0; - $874 = (_bitshift64Ashr(($868|0),($869|0),21)|0); - $875 = tempRet0; - $876 = (_i64Add(($874|0),($875|0),($768|0),($769|0))|0); - $877 = tempRet0; - $878 = (_bitshift64Shl(($874|0),($875|0),21)|0); - $879 = tempRet0; - $880 = (_i64Subtract(($868|0),($869|0),($878|0),($879|0))|0); - $881 = tempRet0; - $882 = $800&255; - HEAP8[$s>>0] = $882; - $883 = (_bitshift64Lshr(($800|0),($801|0),8)|0); - $884 = tempRet0; - $885 = $883&255; - $886 = ((($s)) + 1|0); - HEAP8[$886>>0] = $885; - $887 = (_bitshift64Lshr(($800|0),($801|0),16)|0); - $888 = tempRet0; - $889 = (_bitshift64Shl(($808|0),($809|0),5)|0); - $890 = tempRet0; - $891 = $889 | $887; - $890 | $888; - $892 = $891&255; - HEAP8[$3>>0] = $892; - $893 = (_bitshift64Lshr(($808|0),($809|0),3)|0); - $894 = tempRet0; - $895 = $893&255; - $896 = ((($s)) + 3|0); - HEAP8[$896>>0] = $895; - $897 = (_bitshift64Lshr(($808|0),($809|0),11)|0); - $898 = tempRet0; - $899 = $897&255; - $900 = ((($s)) + 4|0); - HEAP8[$900>>0] = $899; - $901 = (_bitshift64Lshr(($808|0),($809|0),19)|0); - $902 = tempRet0; - $903 = (_bitshift64Shl(($816|0),($817|0),2)|0); - $904 = tempRet0; - $905 = $903 | $901; - $904 | $902; - $906 = $905&255; - HEAP8[$9>>0] = $906; - $907 = (_bitshift64Lshr(($816|0),($817|0),6)|0); - $908 = tempRet0; - $909 = $907&255; - $910 = ((($s)) + 6|0); - HEAP8[$910>>0] = $909; - $911 = (_bitshift64Lshr(($816|0),($817|0),14)|0); - $912 = tempRet0; - $913 = (_bitshift64Shl(($824|0),($825|0),7)|0); - $914 = tempRet0; - $915 = $913 | $911; - $914 | $912; - $916 = $915&255; - HEAP8[$15>>0] = $916; - $917 = (_bitshift64Lshr(($824|0),($825|0),1)|0); - $918 = tempRet0; - $919 = $917&255; - $920 = ((($s)) + 8|0); - HEAP8[$920>>0] = $919; - $921 = (_bitshift64Lshr(($824|0),($825|0),9)|0); - $922 = tempRet0; - $923 = $921&255; - $924 = ((($s)) + 9|0); - HEAP8[$924>>0] = $923; - $925 = (_bitshift64Lshr(($824|0),($825|0),17)|0); - $926 = tempRet0; - $927 = (_bitshift64Shl(($832|0),($833|0),4)|0); - $928 = tempRet0; - $929 = $927 | $925; - $928 | $926; - $930 = $929&255; - HEAP8[$21>>0] = $930; - $931 = (_bitshift64Lshr(($832|0),($833|0),4)|0); - $932 = tempRet0; - $933 = $931&255; - $934 = ((($s)) + 11|0); - HEAP8[$934>>0] = $933; - $935 = (_bitshift64Lshr(($832|0),($833|0),12)|0); - $936 = tempRet0; - $937 = $935&255; - $938 = ((($s)) + 12|0); - HEAP8[$938>>0] = $937; - $939 = (_bitshift64Lshr(($832|0),($833|0),20)|0); - $940 = tempRet0; - $941 = (_bitshift64Shl(($840|0),($841|0),1)|0); - $942 = tempRet0; - $943 = $941 | $939; - $942 | $940; - $944 = $943&255; - HEAP8[$27>>0] = $944; - $945 = (_bitshift64Lshr(($840|0),($841|0),7)|0); - $946 = tempRet0; - $947 = $945&255; - $948 = ((($s)) + 14|0); - HEAP8[$948>>0] = $947; - $949 = (_bitshift64Lshr(($840|0),($841|0),15)|0); - $950 = tempRet0; - $951 = (_bitshift64Shl(($848|0),($849|0),6)|0); - $952 = tempRet0; - $953 = $951 | $949; - $952 | $950; - $954 = $953&255; - HEAP8[$33>>0] = $954; - $955 = (_bitshift64Lshr(($848|0),($849|0),2)|0); - $956 = tempRet0; - $957 = $955&255; - $958 = ((($s)) + 16|0); - HEAP8[$958>>0] = $957; - $959 = (_bitshift64Lshr(($848|0),($849|0),10)|0); - $960 = tempRet0; - $961 = $959&255; - $962 = ((($s)) + 17|0); - HEAP8[$962>>0] = $961; - $963 = (_bitshift64Lshr(($848|0),($849|0),18)|0); - $964 = tempRet0; - $965 = (_bitshift64Shl(($856|0),($857|0),3)|0); - $966 = tempRet0; - $967 = $965 | $963; - $966 | $964; - $968 = $967&255; - HEAP8[$39>>0] = $968; - $969 = (_bitshift64Lshr(($856|0),($857|0),5)|0); - $970 = tempRet0; - $971 = $969&255; - $972 = ((($s)) + 19|0); - HEAP8[$972>>0] = $971; - $973 = (_bitshift64Lshr(($856|0),($857|0),13)|0); - $974 = tempRet0; - $975 = $973&255; - $976 = ((($s)) + 20|0); - HEAP8[$976>>0] = $975; - $977 = $864&255; - HEAP8[$45>>0] = $977; - $978 = (_bitshift64Lshr(($864|0),($865|0),8)|0); - $979 = tempRet0; - $980 = $978&255; - $981 = ((($s)) + 22|0); - HEAP8[$981>>0] = $980; - $982 = (_bitshift64Lshr(($864|0),($865|0),16)|0); - $983 = tempRet0; - $984 = (_bitshift64Shl(($872|0),($873|0),5)|0); - $985 = tempRet0; - $986 = $984 | $982; - $985 | $983; - $987 = $986&255; - HEAP8[$49>>0] = $987; - $988 = (_bitshift64Lshr(($872|0),($873|0),3)|0); - $989 = tempRet0; - $990 = $988&255; - $991 = ((($s)) + 24|0); - HEAP8[$991>>0] = $990; - $992 = (_bitshift64Lshr(($872|0),($873|0),11)|0); - $993 = tempRet0; - $994 = $992&255; - $995 = ((($s)) + 25|0); - HEAP8[$995>>0] = $994; - $996 = (_bitshift64Lshr(($872|0),($873|0),19)|0); - $997 = tempRet0; - $998 = (_bitshift64Shl(($880|0),($881|0),2)|0); - $999 = tempRet0; - $1000 = $998 | $996; - $999 | $997; - $1001 = $1000&255; - HEAP8[$55>>0] = $1001; - $1002 = (_bitshift64Lshr(($880|0),($881|0),6)|0); - $1003 = tempRet0; - $1004 = $1002&255; - $1005 = ((($s)) + 27|0); - HEAP8[$1005>>0] = $1004; - $1006 = (_bitshift64Lshr(($880|0),($881|0),14)|0); - $1007 = tempRet0; - $1008 = (_bitshift64Shl(($876|0),($877|0),7)|0); - $1009 = tempRet0; - $1010 = $1006 | $1008; - $1007 | $1009; - $1011 = $1010&255; - HEAP8[$61>>0] = $1011; - $1012 = (_bitshift64Lshr(($876|0),($877|0),1)|0); - $1013 = tempRet0; - $1014 = $1012&255; - $1015 = ((($s)) + 29|0); - HEAP8[$1015>>0] = $1014; - $1016 = (_bitshift64Lshr(($876|0),($877|0),9)|0); - $1017 = tempRet0; - $1018 = $1016&255; - $1019 = ((($s)) + 30|0); - HEAP8[$1019>>0] = $1018; - $1020 = (_bitshift64Lshr(($876|0),($877|0),17)|0); - $1021 = tempRet0; - $1022 = $1020&255; - HEAP8[$67>>0] = $1022; + $1 = (_load_3_51($0)|0); + $2 = tempRet0; + $3 = $1 & 2097151; + $4 = ((($0)) + 2|0); + $5 = (_load_4_52($4)|0); + $6 = tempRet0; + $7 = (_bitshift64Lshr(($5|0),($6|0),5)|0); + $8 = tempRet0; + $9 = $7 & 2097151; + $10 = ((($0)) + 5|0); + $11 = (_load_3_51($10)|0); + $12 = tempRet0; + $13 = (_bitshift64Lshr(($11|0),($12|0),2)|0); + $14 = tempRet0; + $15 = $13 & 2097151; + $16 = ((($0)) + 7|0); + $17 = (_load_4_52($16)|0); + $18 = tempRet0; + $19 = (_bitshift64Lshr(($17|0),($18|0),7)|0); + $20 = tempRet0; + $21 = $19 & 2097151; + $22 = ((($0)) + 10|0); + $23 = (_load_4_52($22)|0); + $24 = tempRet0; + $25 = (_bitshift64Lshr(($23|0),($24|0),4)|0); + $26 = tempRet0; + $27 = $25 & 2097151; + $28 = ((($0)) + 13|0); + $29 = (_load_3_51($28)|0); + $30 = tempRet0; + $31 = (_bitshift64Lshr(($29|0),($30|0),1)|0); + $32 = tempRet0; + $33 = $31 & 2097151; + $34 = ((($0)) + 15|0); + $35 = (_load_4_52($34)|0); + $36 = tempRet0; + $37 = (_bitshift64Lshr(($35|0),($36|0),6)|0); + $38 = tempRet0; + $39 = $37 & 2097151; + $40 = ((($0)) + 18|0); + $41 = (_load_3_51($40)|0); + $42 = tempRet0; + $43 = (_bitshift64Lshr(($41|0),($42|0),3)|0); + $44 = tempRet0; + $45 = $43 & 2097151; + $46 = ((($0)) + 21|0); + $47 = (_load_3_51($46)|0); + $48 = tempRet0; + $49 = $47 & 2097151; + $50 = ((($0)) + 23|0); + $51 = (_load_4_52($50)|0); + $52 = tempRet0; + $53 = (_bitshift64Lshr(($51|0),($52|0),5)|0); + $54 = tempRet0; + $55 = $53 & 2097151; + $56 = ((($0)) + 26|0); + $57 = (_load_3_51($56)|0); + $58 = tempRet0; + $59 = (_bitshift64Lshr(($57|0),($58|0),2)|0); + $60 = tempRet0; + $61 = $59 & 2097151; + $62 = ((($0)) + 28|0); + $63 = (_load_4_52($62)|0); + $64 = tempRet0; + $65 = (_bitshift64Lshr(($63|0),($64|0),7)|0); + $66 = tempRet0; + $67 = $65 & 2097151; + $68 = ((($0)) + 31|0); + $69 = (_load_4_52($68)|0); + $70 = tempRet0; + $71 = (_bitshift64Lshr(($69|0),($70|0),4)|0); + $72 = tempRet0; + $73 = $71 & 2097151; + $74 = ((($0)) + 34|0); + $75 = (_load_3_51($74)|0); + $76 = tempRet0; + $77 = (_bitshift64Lshr(($75|0),($76|0),1)|0); + $78 = tempRet0; + $79 = $77 & 2097151; + $80 = ((($0)) + 36|0); + $81 = (_load_4_52($80)|0); + $82 = tempRet0; + $83 = (_bitshift64Lshr(($81|0),($82|0),6)|0); + $84 = tempRet0; + $85 = $83 & 2097151; + $86 = ((($0)) + 39|0); + $87 = (_load_3_51($86)|0); + $88 = tempRet0; + $89 = (_bitshift64Lshr(($87|0),($88|0),3)|0); + $90 = tempRet0; + $91 = $89 & 2097151; + $92 = ((($0)) + 42|0); + $93 = (_load_3_51($92)|0); + $94 = tempRet0; + $95 = $93 & 2097151; + $96 = ((($0)) + 44|0); + $97 = (_load_4_52($96)|0); + $98 = tempRet0; + $99 = (_bitshift64Lshr(($97|0),($98|0),5)|0); + $100 = tempRet0; + $101 = $99 & 2097151; + $102 = ((($0)) + 47|0); + $103 = (_load_3_51($102)|0); + $104 = tempRet0; + $105 = (_bitshift64Lshr(($103|0),($104|0),2)|0); + $106 = tempRet0; + $107 = $105 & 2097151; + $108 = ((($0)) + 49|0); + $109 = (_load_4_52($108)|0); + $110 = tempRet0; + $111 = (_bitshift64Lshr(($109|0),($110|0),7)|0); + $112 = tempRet0; + $113 = $111 & 2097151; + $114 = ((($0)) + 52|0); + $115 = (_load_4_52($114)|0); + $116 = tempRet0; + $117 = (_bitshift64Lshr(($115|0),($116|0),4)|0); + $118 = tempRet0; + $119 = $117 & 2097151; + $120 = ((($0)) + 55|0); + $121 = (_load_3_51($120)|0); + $122 = tempRet0; + $123 = (_bitshift64Lshr(($121|0),($122|0),1)|0); + $124 = tempRet0; + $125 = $123 & 2097151; + $126 = ((($0)) + 57|0); + $127 = (_load_4_52($126)|0); + $128 = tempRet0; + $129 = (_bitshift64Lshr(($127|0),($128|0),6)|0); + $130 = tempRet0; + $131 = $129 & 2097151; + $132 = ((($0)) + 60|0); + $133 = (_load_4_52($132)|0); + $134 = tempRet0; + $135 = (_bitshift64Lshr(($133|0),($134|0),3)|0); + $136 = tempRet0; + $137 = (___muldi3(($135|0),($136|0),666643,0)|0); + $138 = tempRet0; + $139 = (___muldi3(($135|0),($136|0),470296,0)|0); + $140 = tempRet0; + $141 = (___muldi3(($135|0),($136|0),654183,0)|0); + $142 = tempRet0; + $143 = (___muldi3(($135|0),($136|0),-997805,-1)|0); + $144 = tempRet0; + $145 = (___muldi3(($135|0),($136|0),136657,0)|0); + $146 = tempRet0; + $147 = (_i64Add(($145|0),($146|0),($91|0),0)|0); + $148 = tempRet0; + $149 = (___muldi3(($135|0),($136|0),-683901,-1)|0); + $150 = tempRet0; + $151 = (_i64Add(($149|0),($150|0),($95|0),0)|0); + $152 = tempRet0; + $153 = (___muldi3(($131|0),0,666643,0)|0); + $154 = tempRet0; + $155 = (___muldi3(($131|0),0,470296,0)|0); + $156 = tempRet0; + $157 = (___muldi3(($131|0),0,654183,0)|0); + $158 = tempRet0; + $159 = (___muldi3(($131|0),0,-997805,-1)|0); + $160 = tempRet0; + $161 = (___muldi3(($131|0),0,136657,0)|0); + $162 = tempRet0; + $163 = (___muldi3(($131|0),0,-683901,-1)|0); + $164 = tempRet0; + $165 = (_i64Add(($147|0),($148|0),($163|0),($164|0))|0); + $166 = tempRet0; + $167 = (___muldi3(($125|0),0,666643,0)|0); + $168 = tempRet0; + $169 = (___muldi3(($125|0),0,470296,0)|0); + $170 = tempRet0; + $171 = (___muldi3(($125|0),0,654183,0)|0); + $172 = tempRet0; + $173 = (___muldi3(($125|0),0,-997805,-1)|0); + $174 = tempRet0; + $175 = (___muldi3(($125|0),0,136657,0)|0); + $176 = tempRet0; + $177 = (___muldi3(($125|0),0,-683901,-1)|0); + $178 = tempRet0; + $179 = (_i64Add(($177|0),($178|0),($85|0),0)|0); + $180 = tempRet0; + $181 = (_i64Add(($179|0),($180|0),($143|0),($144|0))|0); + $182 = tempRet0; + $183 = (_i64Add(($181|0),($182|0),($161|0),($162|0))|0); + $184 = tempRet0; + $185 = (___muldi3(($119|0),0,666643,0)|0); + $186 = tempRet0; + $187 = (___muldi3(($119|0),0,470296,0)|0); + $188 = tempRet0; + $189 = (___muldi3(($119|0),0,654183,0)|0); + $190 = tempRet0; + $191 = (___muldi3(($119|0),0,-997805,-1)|0); + $192 = tempRet0; + $193 = (___muldi3(($119|0),0,136657,0)|0); + $194 = tempRet0; + $195 = (___muldi3(($119|0),0,-683901,-1)|0); + $196 = tempRet0; + $197 = (___muldi3(($113|0),0,666643,0)|0); + $198 = tempRet0; + $199 = (___muldi3(($113|0),0,470296,0)|0); + $200 = tempRet0; + $201 = (___muldi3(($113|0),0,654183,0)|0); + $202 = tempRet0; + $203 = (___muldi3(($113|0),0,-997805,-1)|0); + $204 = tempRet0; + $205 = (___muldi3(($113|0),0,136657,0)|0); + $206 = tempRet0; + $207 = (___muldi3(($113|0),0,-683901,-1)|0); + $208 = tempRet0; + $209 = (_i64Add(($207|0),($208|0),($73|0),0)|0); + $210 = tempRet0; + $211 = (_i64Add(($209|0),($210|0),($193|0),($194|0))|0); + $212 = tempRet0; + $213 = (_i64Add(($211|0),($212|0),($173|0),($174|0))|0); + $214 = tempRet0; + $215 = (_i64Add(($213|0),($214|0),($139|0),($140|0))|0); + $216 = tempRet0; + $217 = (_i64Add(($215|0),($216|0),($157|0),($158|0))|0); + $218 = tempRet0; + $219 = (___muldi3(($107|0),0,666643,0)|0); + $220 = tempRet0; + $221 = (_i64Add(($219|0),($220|0),($39|0),0)|0); + $222 = tempRet0; + $223 = (___muldi3(($107|0),0,470296,0)|0); + $224 = tempRet0; + $225 = (___muldi3(($107|0),0,654183,0)|0); + $226 = tempRet0; + $227 = (_i64Add(($225|0),($226|0),($49|0),0)|0); + $228 = tempRet0; + $229 = (_i64Add(($227|0),($228|0),($199|0),($200|0))|0); + $230 = tempRet0; + $231 = (_i64Add(($229|0),($230|0),($185|0),($186|0))|0); + $232 = tempRet0; + $233 = (___muldi3(($107|0),0,-997805,-1)|0); + $234 = tempRet0; + $235 = (___muldi3(($107|0),0,136657,0)|0); + $236 = tempRet0; + $237 = (_i64Add(($235|0),($236|0),($61|0),0)|0); + $238 = tempRet0; + $239 = (_i64Add(($237|0),($238|0),($203|0),($204|0))|0); + $240 = tempRet0; + $241 = (_i64Add(($239|0),($240|0),($189|0),($190|0))|0); + $242 = tempRet0; + $243 = (_i64Add(($241|0),($242|0),($169|0),($170|0))|0); + $244 = tempRet0; + $245 = (_i64Add(($243|0),($244|0),($153|0),($154|0))|0); + $246 = tempRet0; + $247 = (___muldi3(($107|0),0,-683901,-1)|0); + $248 = tempRet0; + $249 = (_i64Add(($221|0),($222|0),1048576,0)|0); + $250 = tempRet0; + $251 = (_bitshift64Lshr(($249|0),($250|0),21)|0); + $252 = tempRet0; + $253 = (_i64Add(($223|0),($224|0),($45|0),0)|0); + $254 = tempRet0; + $255 = (_i64Add(($253|0),($254|0),($197|0),($198|0))|0); + $256 = tempRet0; + $257 = (_i64Add(($255|0),($256|0),($251|0),($252|0))|0); + $258 = tempRet0; + $259 = (_bitshift64Shl(($251|0),($252|0),21)|0); + $260 = tempRet0; + $261 = (_i64Subtract(($221|0),($222|0),($259|0),($260|0))|0); + $262 = tempRet0; + $263 = (_i64Add(($231|0),($232|0),1048576,0)|0); + $264 = tempRet0; + $265 = (_bitshift64Lshr(($263|0),($264|0),21)|0); + $266 = tempRet0; + $267 = (_i64Add(($233|0),($234|0),($55|0),0)|0); + $268 = tempRet0; + $269 = (_i64Add(($267|0),($268|0),($201|0),($202|0))|0); + $270 = tempRet0; + $271 = (_i64Add(($269|0),($270|0),($187|0),($188|0))|0); + $272 = tempRet0; + $273 = (_i64Add(($271|0),($272|0),($167|0),($168|0))|0); + $274 = tempRet0; + $275 = (_i64Add(($273|0),($274|0),($265|0),($266|0))|0); + $276 = tempRet0; + $277 = (_bitshift64Shl(($265|0),($266|0),21)|0); + $278 = tempRet0; + $279 = (_i64Add(($245|0),($246|0),1048576,0)|0); + $280 = tempRet0; + $281 = (_bitshift64Ashr(($279|0),($280|0),21)|0); + $282 = tempRet0; + $283 = (_i64Add(($247|0),($248|0),($67|0),0)|0); + $284 = tempRet0; + $285 = (_i64Add(($283|0),($284|0),($205|0),($206|0))|0); + $286 = tempRet0; + $287 = (_i64Add(($285|0),($286|0),($191|0),($192|0))|0); + $288 = tempRet0; + $289 = (_i64Add(($287|0),($288|0),($171|0),($172|0))|0); + $290 = tempRet0; + $291 = (_i64Add(($289|0),($290|0),($137|0),($138|0))|0); + $292 = tempRet0; + $293 = (_i64Add(($291|0),($292|0),($155|0),($156|0))|0); + $294 = tempRet0; + $295 = (_i64Add(($293|0),($294|0),($281|0),($282|0))|0); + $296 = tempRet0; + $297 = (_bitshift64Shl(($281|0),($282|0),21)|0); + $298 = tempRet0; + $299 = (_i64Add(($217|0),($218|0),1048576,0)|0); + $300 = tempRet0; + $301 = (_bitshift64Ashr(($299|0),($300|0),21)|0); + $302 = tempRet0; + $303 = (_i64Add(($195|0),($196|0),($79|0),0)|0); + $304 = tempRet0; + $305 = (_i64Add(($303|0),($304|0),($175|0),($176|0))|0); + $306 = tempRet0; + $307 = (_i64Add(($305|0),($306|0),($141|0),($142|0))|0); + $308 = tempRet0; + $309 = (_i64Add(($307|0),($308|0),($159|0),($160|0))|0); + $310 = tempRet0; + $311 = (_i64Add(($309|0),($310|0),($301|0),($302|0))|0); + $312 = tempRet0; + $313 = (_bitshift64Shl(($301|0),($302|0),21)|0); + $314 = tempRet0; + $315 = (_i64Subtract(($217|0),($218|0),($313|0),($314|0))|0); + $316 = tempRet0; + $317 = (_i64Add(($183|0),($184|0),1048576,0)|0); + $318 = tempRet0; + $319 = (_bitshift64Ashr(($317|0),($318|0),21)|0); + $320 = tempRet0; + $321 = (_i64Add(($165|0),($166|0),($319|0),($320|0))|0); + $322 = tempRet0; + $323 = (_bitshift64Shl(($319|0),($320|0),21)|0); + $324 = tempRet0; + $325 = (_i64Subtract(($183|0),($184|0),($323|0),($324|0))|0); + $326 = tempRet0; + $327 = (_i64Add(($151|0),($152|0),1048576,0)|0); + $328 = tempRet0; + $329 = (_bitshift64Ashr(($327|0),($328|0),21)|0); + $330 = tempRet0; + $331 = (_i64Add(($329|0),($330|0),($101|0),0)|0); + $332 = tempRet0; + $333 = (_bitshift64Shl(($329|0),($330|0),21)|0); + $334 = tempRet0; + $335 = (_i64Subtract(($151|0),($152|0),($333|0),($334|0))|0); + $336 = tempRet0; + $337 = (_i64Add(($257|0),($258|0),1048576,0)|0); + $338 = tempRet0; + $339 = (_bitshift64Lshr(($337|0),($338|0),21)|0); + $340 = tempRet0; + $341 = (_bitshift64Shl(($339|0),($340|0),21)|0); + $342 = tempRet0; + $343 = (_i64Subtract(($257|0),($258|0),($341|0),($342|0))|0); + $344 = tempRet0; + $345 = (_i64Add(($275|0),($276|0),1048576,0)|0); + $346 = tempRet0; + $347 = (_bitshift64Ashr(($345|0),($346|0),21)|0); + $348 = tempRet0; + $349 = (_bitshift64Shl(($347|0),($348|0),21)|0); + $350 = tempRet0; + $351 = (_i64Add(($295|0),($296|0),1048576,0)|0); + $352 = tempRet0; + $353 = (_bitshift64Ashr(($351|0),($352|0),21)|0); + $354 = tempRet0; + $355 = (_i64Add(($353|0),($354|0),($315|0),($316|0))|0); + $356 = tempRet0; + $357 = (_bitshift64Shl(($353|0),($354|0),21)|0); + $358 = tempRet0; + $359 = (_i64Subtract(($295|0),($296|0),($357|0),($358|0))|0); + $360 = tempRet0; + $361 = (_i64Add(($311|0),($312|0),1048576,0)|0); + $362 = tempRet0; + $363 = (_bitshift64Ashr(($361|0),($362|0),21)|0); + $364 = tempRet0; + $365 = (_i64Add(($363|0),($364|0),($325|0),($326|0))|0); + $366 = tempRet0; + $367 = (_bitshift64Shl(($363|0),($364|0),21)|0); + $368 = tempRet0; + $369 = (_i64Subtract(($311|0),($312|0),($367|0),($368|0))|0); + $370 = tempRet0; + $371 = (_i64Add(($321|0),($322|0),1048576,0)|0); + $372 = tempRet0; + $373 = (_bitshift64Ashr(($371|0),($372|0),21)|0); + $374 = tempRet0; + $375 = (_i64Add(($373|0),($374|0),($335|0),($336|0))|0); + $376 = tempRet0; + $377 = (_bitshift64Shl(($373|0),($374|0),21)|0); + $378 = tempRet0; + $379 = (_i64Subtract(($321|0),($322|0),($377|0),($378|0))|0); + $380 = tempRet0; + $381 = (___muldi3(($331|0),($332|0),666643,0)|0); + $382 = tempRet0; + $383 = (_i64Add(($381|0),($382|0),($33|0),0)|0); + $384 = tempRet0; + $385 = (___muldi3(($331|0),($332|0),470296,0)|0); + $386 = tempRet0; + $387 = (_i64Add(($261|0),($262|0),($385|0),($386|0))|0); + $388 = tempRet0; + $389 = (___muldi3(($331|0),($332|0),654183,0)|0); + $390 = tempRet0; + $391 = (_i64Add(($343|0),($344|0),($389|0),($390|0))|0); + $392 = tempRet0; + $393 = (___muldi3(($331|0),($332|0),-997805,-1)|0); + $394 = tempRet0; + $395 = (___muldi3(($331|0),($332|0),136657,0)|0); + $396 = tempRet0; + $397 = (___muldi3(($331|0),($332|0),-683901,-1)|0); + $398 = tempRet0; + $399 = (_i64Add(($397|0),($398|0),($245|0),($246|0))|0); + $400 = tempRet0; + $401 = (_i64Add(($399|0),($400|0),($347|0),($348|0))|0); + $402 = tempRet0; + $403 = (_i64Subtract(($401|0),($402|0),($297|0),($298|0))|0); + $404 = tempRet0; + $405 = (___muldi3(($375|0),($376|0),666643,0)|0); + $406 = tempRet0; + $407 = (_i64Add(($405|0),($406|0),($27|0),0)|0); + $408 = tempRet0; + $409 = (___muldi3(($375|0),($376|0),470296,0)|0); + $410 = tempRet0; + $411 = (_i64Add(($383|0),($384|0),($409|0),($410|0))|0); + $412 = tempRet0; + $413 = (___muldi3(($375|0),($376|0),654183,0)|0); + $414 = tempRet0; + $415 = (_i64Add(($387|0),($388|0),($413|0),($414|0))|0); + $416 = tempRet0; + $417 = (___muldi3(($375|0),($376|0),-997805,-1)|0); + $418 = tempRet0; + $419 = (_i64Add(($391|0),($392|0),($417|0),($418|0))|0); + $420 = tempRet0; + $421 = (___muldi3(($375|0),($376|0),136657,0)|0); + $422 = tempRet0; + $423 = (___muldi3(($375|0),($376|0),-683901,-1)|0); + $424 = tempRet0; + $425 = (___muldi3(($379|0),($380|0),666643,0)|0); + $426 = tempRet0; + $427 = (_i64Add(($425|0),($426|0),($21|0),0)|0); + $428 = tempRet0; + $429 = (___muldi3(($379|0),($380|0),470296,0)|0); + $430 = tempRet0; + $431 = (_i64Add(($407|0),($408|0),($429|0),($430|0))|0); + $432 = tempRet0; + $433 = (___muldi3(($379|0),($380|0),654183,0)|0); + $434 = tempRet0; + $435 = (_i64Add(($411|0),($412|0),($433|0),($434|0))|0); + $436 = tempRet0; + $437 = (___muldi3(($379|0),($380|0),-997805,-1)|0); + $438 = tempRet0; + $439 = (_i64Add(($415|0),($416|0),($437|0),($438|0))|0); + $440 = tempRet0; + $441 = (___muldi3(($379|0),($380|0),136657,0)|0); + $442 = tempRet0; + $443 = (_i64Add(($419|0),($420|0),($441|0),($442|0))|0); + $444 = tempRet0; + $445 = (___muldi3(($379|0),($380|0),-683901,-1)|0); + $446 = tempRet0; + $447 = (_i64Add(($339|0),($340|0),($231|0),($232|0))|0); + $448 = tempRet0; + $449 = (_i64Subtract(($447|0),($448|0),($277|0),($278|0))|0); + $450 = tempRet0; + $451 = (_i64Add(($449|0),($450|0),($393|0),($394|0))|0); + $452 = tempRet0; + $453 = (_i64Add(($451|0),($452|0),($421|0),($422|0))|0); + $454 = tempRet0; + $455 = (_i64Add(($453|0),($454|0),($445|0),($446|0))|0); + $456 = tempRet0; + $457 = (___muldi3(($365|0),($366|0),666643,0)|0); + $458 = tempRet0; + $459 = (_i64Add(($457|0),($458|0),($15|0),0)|0); + $460 = tempRet0; + $461 = (___muldi3(($365|0),($366|0),470296,0)|0); + $462 = tempRet0; + $463 = (_i64Add(($427|0),($428|0),($461|0),($462|0))|0); + $464 = tempRet0; + $465 = (___muldi3(($365|0),($366|0),654183,0)|0); + $466 = tempRet0; + $467 = (_i64Add(($431|0),($432|0),($465|0),($466|0))|0); + $468 = tempRet0; + $469 = (___muldi3(($365|0),($366|0),-997805,-1)|0); + $470 = tempRet0; + $471 = (_i64Add(($435|0),($436|0),($469|0),($470|0))|0); + $472 = tempRet0; + $473 = (___muldi3(($365|0),($366|0),136657,0)|0); + $474 = tempRet0; + $475 = (_i64Add(($439|0),($440|0),($473|0),($474|0))|0); + $476 = tempRet0; + $477 = (___muldi3(($365|0),($366|0),-683901,-1)|0); + $478 = tempRet0; + $479 = (_i64Add(($443|0),($444|0),($477|0),($478|0))|0); + $480 = tempRet0; + $481 = (___muldi3(($369|0),($370|0),666643,0)|0); + $482 = tempRet0; + $483 = (___muldi3(($369|0),($370|0),470296,0)|0); + $484 = tempRet0; + $485 = (___muldi3(($369|0),($370|0),654183,0)|0); + $486 = tempRet0; + $487 = (___muldi3(($369|0),($370|0),-997805,-1)|0); + $488 = tempRet0; + $489 = (___muldi3(($369|0),($370|0),136657,0)|0); + $490 = tempRet0; + $491 = (___muldi3(($369|0),($370|0),-683901,-1)|0); + $492 = tempRet0; + $493 = (_i64Add(($475|0),($476|0),($491|0),($492|0))|0); + $494 = tempRet0; + $495 = (___muldi3(($355|0),($356|0),666643,0)|0); + $496 = tempRet0; + $497 = (_i64Add(($495|0),($496|0),($3|0),0)|0); + $498 = tempRet0; + $499 = (___muldi3(($355|0),($356|0),470296,0)|0); + $500 = tempRet0; + $501 = (___muldi3(($355|0),($356|0),654183,0)|0); + $502 = tempRet0; + $503 = (_i64Add(($459|0),($460|0),($501|0),($502|0))|0); + $504 = tempRet0; + $505 = (_i64Add(($503|0),($504|0),($483|0),($484|0))|0); + $506 = tempRet0; + $507 = (___muldi3(($355|0),($356|0),-997805,-1)|0); + $508 = tempRet0; + $509 = (___muldi3(($355|0),($356|0),136657,0)|0); + $510 = tempRet0; + $511 = (_i64Add(($467|0),($468|0),($509|0),($510|0))|0); + $512 = tempRet0; + $513 = (_i64Add(($511|0),($512|0),($487|0),($488|0))|0); + $514 = tempRet0; + $515 = (___muldi3(($355|0),($356|0),-683901,-1)|0); + $516 = tempRet0; + $517 = (_i64Add(($497|0),($498|0),1048576,0)|0); + $518 = tempRet0; + $519 = (_bitshift64Ashr(($517|0),($518|0),21)|0); + $520 = tempRet0; + $521 = (_i64Add(($499|0),($500|0),($9|0),0)|0); + $522 = tempRet0; + $523 = (_i64Add(($521|0),($522|0),($481|0),($482|0))|0); + $524 = tempRet0; + $525 = (_i64Add(($523|0),($524|0),($519|0),($520|0))|0); + $526 = tempRet0; + $527 = (_bitshift64Shl(($519|0),($520|0),21)|0); + $528 = tempRet0; + $529 = (_i64Subtract(($497|0),($498|0),($527|0),($528|0))|0); + $530 = tempRet0; + $531 = (_i64Add(($505|0),($506|0),1048576,0)|0); + $532 = tempRet0; + $533 = (_bitshift64Ashr(($531|0),($532|0),21)|0); + $534 = tempRet0; + $535 = (_i64Add(($463|0),($464|0),($507|0),($508|0))|0); + $536 = tempRet0; + $537 = (_i64Add(($535|0),($536|0),($485|0),($486|0))|0); + $538 = tempRet0; + $539 = (_i64Add(($537|0),($538|0),($533|0),($534|0))|0); + $540 = tempRet0; + $541 = (_bitshift64Shl(($533|0),($534|0),21)|0); + $542 = tempRet0; + $543 = (_i64Add(($513|0),($514|0),1048576,0)|0); + $544 = tempRet0; + $545 = (_bitshift64Ashr(($543|0),($544|0),21)|0); + $546 = tempRet0; + $547 = (_i64Add(($471|0),($472|0),($515|0),($516|0))|0); + $548 = tempRet0; + $549 = (_i64Add(($547|0),($548|0),($489|0),($490|0))|0); + $550 = tempRet0; + $551 = (_i64Add(($549|0),($550|0),($545|0),($546|0))|0); + $552 = tempRet0; + $553 = (_bitshift64Shl(($545|0),($546|0),21)|0); + $554 = tempRet0; + $555 = (_i64Add(($493|0),($494|0),1048576,0)|0); + $556 = tempRet0; + $557 = (_bitshift64Ashr(($555|0),($556|0),21)|0); + $558 = tempRet0; + $559 = (_i64Add(($479|0),($480|0),($557|0),($558|0))|0); + $560 = tempRet0; + $561 = (_bitshift64Shl(($557|0),($558|0),21)|0); + $562 = tempRet0; + $563 = (_i64Subtract(($493|0),($494|0),($561|0),($562|0))|0); + $564 = tempRet0; + $565 = (_i64Add(($455|0),($456|0),1048576,0)|0); + $566 = tempRet0; + $567 = (_bitshift64Ashr(($565|0),($566|0),21)|0); + $568 = tempRet0; + $569 = (_i64Add(($395|0),($396|0),($275|0),($276|0))|0); + $570 = tempRet0; + $571 = (_i64Subtract(($569|0),($570|0),($349|0),($350|0))|0); + $572 = tempRet0; + $573 = (_i64Add(($571|0),($572|0),($423|0),($424|0))|0); + $574 = tempRet0; + $575 = (_i64Add(($573|0),($574|0),($567|0),($568|0))|0); + $576 = tempRet0; + $577 = (_bitshift64Shl(($567|0),($568|0),21)|0); + $578 = tempRet0; + $579 = (_i64Subtract(($455|0),($456|0),($577|0),($578|0))|0); + $580 = tempRet0; + $581 = (_i64Add(($403|0),($404|0),1048576,0)|0); + $582 = tempRet0; + $583 = (_bitshift64Ashr(($581|0),($582|0),21)|0); + $584 = tempRet0; + $585 = (_i64Add(($583|0),($584|0),($359|0),($360|0))|0); + $586 = tempRet0; + $587 = (_bitshift64Shl(($583|0),($584|0),21)|0); + $588 = tempRet0; + $589 = (_i64Subtract(($403|0),($404|0),($587|0),($588|0))|0); + $590 = tempRet0; + $591 = (_i64Add(($525|0),($526|0),1048576,0)|0); + $592 = tempRet0; + $593 = (_bitshift64Ashr(($591|0),($592|0),21)|0); + $594 = tempRet0; + $595 = (_bitshift64Shl(($593|0),($594|0),21)|0); + $596 = tempRet0; + $597 = (_i64Add(($539|0),($540|0),1048576,0)|0); + $598 = tempRet0; + $599 = (_bitshift64Ashr(($597|0),($598|0),21)|0); + $600 = tempRet0; + $601 = (_bitshift64Shl(($599|0),($600|0),21)|0); + $602 = tempRet0; + $603 = (_i64Add(($551|0),($552|0),1048576,0)|0); + $604 = tempRet0; + $605 = (_bitshift64Ashr(($603|0),($604|0),21)|0); + $606 = tempRet0; + $607 = (_i64Add(($563|0),($564|0),($605|0),($606|0))|0); + $608 = tempRet0; + $609 = (_bitshift64Shl(($605|0),($606|0),21)|0); + $610 = tempRet0; + $611 = (_i64Add(($559|0),($560|0),1048576,0)|0); + $612 = tempRet0; + $613 = (_bitshift64Ashr(($611|0),($612|0),21)|0); + $614 = tempRet0; + $615 = (_i64Add(($579|0),($580|0),($613|0),($614|0))|0); + $616 = tempRet0; + $617 = (_bitshift64Shl(($613|0),($614|0),21)|0); + $618 = tempRet0; + $619 = (_i64Subtract(($559|0),($560|0),($617|0),($618|0))|0); + $620 = tempRet0; + $621 = (_i64Add(($575|0),($576|0),1048576,0)|0); + $622 = tempRet0; + $623 = (_bitshift64Ashr(($621|0),($622|0),21)|0); + $624 = tempRet0; + $625 = (_i64Add(($589|0),($590|0),($623|0),($624|0))|0); + $626 = tempRet0; + $627 = (_bitshift64Shl(($623|0),($624|0),21)|0); + $628 = tempRet0; + $629 = (_i64Subtract(($575|0),($576|0),($627|0),($628|0))|0); + $630 = tempRet0; + $631 = (_i64Add(($585|0),($586|0),1048576,0)|0); + $632 = tempRet0; + $633 = (_bitshift64Ashr(($631|0),($632|0),21)|0); + $634 = tempRet0; + $635 = (_bitshift64Shl(($633|0),($634|0),21)|0); + $636 = tempRet0; + $637 = (_i64Subtract(($585|0),($586|0),($635|0),($636|0))|0); + $638 = tempRet0; + $639 = (___muldi3(($633|0),($634|0),666643,0)|0); + $640 = tempRet0; + $641 = (_i64Add(($529|0),($530|0),($639|0),($640|0))|0); + $642 = tempRet0; + $643 = (___muldi3(($633|0),($634|0),470296,0)|0); + $644 = tempRet0; + $645 = (___muldi3(($633|0),($634|0),654183,0)|0); + $646 = tempRet0; + $647 = (___muldi3(($633|0),($634|0),-997805,-1)|0); + $648 = tempRet0; + $649 = (___muldi3(($633|0),($634|0),136657,0)|0); + $650 = tempRet0; + $651 = (___muldi3(($633|0),($634|0),-683901,-1)|0); + $652 = tempRet0; + $653 = (_bitshift64Ashr(($641|0),($642|0),21)|0); + $654 = tempRet0; + $655 = (_i64Add(($643|0),($644|0),($525|0),($526|0))|0); + $656 = tempRet0; + $657 = (_i64Subtract(($655|0),($656|0),($595|0),($596|0))|0); + $658 = tempRet0; + $659 = (_i64Add(($657|0),($658|0),($653|0),($654|0))|0); + $660 = tempRet0; + $661 = (_bitshift64Shl(($653|0),($654|0),21)|0); + $662 = tempRet0; + $663 = (_i64Subtract(($641|0),($642|0),($661|0),($662|0))|0); + $664 = tempRet0; + $665 = (_bitshift64Ashr(($659|0),($660|0),21)|0); + $666 = tempRet0; + $667 = (_i64Add(($645|0),($646|0),($505|0),($506|0))|0); + $668 = tempRet0; + $669 = (_i64Subtract(($667|0),($668|0),($541|0),($542|0))|0); + $670 = tempRet0; + $671 = (_i64Add(($669|0),($670|0),($593|0),($594|0))|0); + $672 = tempRet0; + $673 = (_i64Add(($671|0),($672|0),($665|0),($666|0))|0); + $674 = tempRet0; + $675 = (_bitshift64Shl(($665|0),($666|0),21)|0); + $676 = tempRet0; + $677 = (_i64Subtract(($659|0),($660|0),($675|0),($676|0))|0); + $678 = tempRet0; + $679 = (_bitshift64Ashr(($673|0),($674|0),21)|0); + $680 = tempRet0; + $681 = (_i64Add(($539|0),($540|0),($647|0),($648|0))|0); + $682 = tempRet0; + $683 = (_i64Subtract(($681|0),($682|0),($601|0),($602|0))|0); + $684 = tempRet0; + $685 = (_i64Add(($683|0),($684|0),($679|0),($680|0))|0); + $686 = tempRet0; + $687 = (_bitshift64Shl(($679|0),($680|0),21)|0); + $688 = tempRet0; + $689 = (_i64Subtract(($673|0),($674|0),($687|0),($688|0))|0); + $690 = tempRet0; + $691 = (_bitshift64Ashr(($685|0),($686|0),21)|0); + $692 = tempRet0; + $693 = (_i64Add(($649|0),($650|0),($513|0),($514|0))|0); + $694 = tempRet0; + $695 = (_i64Subtract(($693|0),($694|0),($553|0),($554|0))|0); + $696 = tempRet0; + $697 = (_i64Add(($695|0),($696|0),($599|0),($600|0))|0); + $698 = tempRet0; + $699 = (_i64Add(($697|0),($698|0),($691|0),($692|0))|0); + $700 = tempRet0; + $701 = (_bitshift64Shl(($691|0),($692|0),21)|0); + $702 = tempRet0; + $703 = (_i64Subtract(($685|0),($686|0),($701|0),($702|0))|0); + $704 = tempRet0; + $705 = (_bitshift64Ashr(($699|0),($700|0),21)|0); + $706 = tempRet0; + $707 = (_i64Add(($551|0),($552|0),($651|0),($652|0))|0); + $708 = tempRet0; + $709 = (_i64Subtract(($707|0),($708|0),($609|0),($610|0))|0); + $710 = tempRet0; + $711 = (_i64Add(($709|0),($710|0),($705|0),($706|0))|0); + $712 = tempRet0; + $713 = (_bitshift64Shl(($705|0),($706|0),21)|0); + $714 = tempRet0; + $715 = (_i64Subtract(($699|0),($700|0),($713|0),($714|0))|0); + $716 = tempRet0; + $717 = (_bitshift64Ashr(($711|0),($712|0),21)|0); + $718 = tempRet0; + $719 = (_i64Add(($607|0),($608|0),($717|0),($718|0))|0); + $720 = tempRet0; + $721 = (_bitshift64Shl(($717|0),($718|0),21)|0); + $722 = tempRet0; + $723 = (_i64Subtract(($711|0),($712|0),($721|0),($722|0))|0); + $724 = tempRet0; + $725 = (_bitshift64Ashr(($719|0),($720|0),21)|0); + $726 = tempRet0; + $727 = (_i64Add(($725|0),($726|0),($619|0),($620|0))|0); + $728 = tempRet0; + $729 = (_bitshift64Shl(($725|0),($726|0),21)|0); + $730 = tempRet0; + $731 = (_i64Subtract(($719|0),($720|0),($729|0),($730|0))|0); + $732 = tempRet0; + $733 = (_bitshift64Ashr(($727|0),($728|0),21)|0); + $734 = tempRet0; + $735 = (_i64Add(($615|0),($616|0),($733|0),($734|0))|0); + $736 = tempRet0; + $737 = (_bitshift64Shl(($733|0),($734|0),21)|0); + $738 = tempRet0; + $739 = (_i64Subtract(($727|0),($728|0),($737|0),($738|0))|0); + $740 = tempRet0; + $741 = (_bitshift64Ashr(($735|0),($736|0),21)|0); + $742 = tempRet0; + $743 = (_i64Add(($741|0),($742|0),($629|0),($630|0))|0); + $744 = tempRet0; + $745 = (_bitshift64Shl(($741|0),($742|0),21)|0); + $746 = tempRet0; + $747 = (_i64Subtract(($735|0),($736|0),($745|0),($746|0))|0); + $748 = tempRet0; + $749 = (_bitshift64Ashr(($743|0),($744|0),21)|0); + $750 = tempRet0; + $751 = (_i64Add(($625|0),($626|0),($749|0),($750|0))|0); + $752 = tempRet0; + $753 = (_bitshift64Shl(($749|0),($750|0),21)|0); + $754 = tempRet0; + $755 = (_i64Subtract(($743|0),($744|0),($753|0),($754|0))|0); + $756 = tempRet0; + $757 = (_bitshift64Ashr(($751|0),($752|0),21)|0); + $758 = tempRet0; + $759 = (_i64Add(($757|0),($758|0),($637|0),($638|0))|0); + $760 = tempRet0; + $761 = (_bitshift64Shl(($757|0),($758|0),21)|0); + $762 = tempRet0; + $763 = (_i64Subtract(($751|0),($752|0),($761|0),($762|0))|0); + $764 = tempRet0; + $765 = (_bitshift64Ashr(($759|0),($760|0),21)|0); + $766 = tempRet0; + $767 = (_bitshift64Shl(($765|0),($766|0),21)|0); + $768 = tempRet0; + $769 = (_i64Subtract(($759|0),($760|0),($767|0),($768|0))|0); + $770 = tempRet0; + $771 = (___muldi3(($765|0),($766|0),666643,0)|0); + $772 = tempRet0; + $773 = (_i64Add(($771|0),($772|0),($663|0),($664|0))|0); + $774 = tempRet0; + $775 = (___muldi3(($765|0),($766|0),470296,0)|0); + $776 = tempRet0; + $777 = (_i64Add(($677|0),($678|0),($775|0),($776|0))|0); + $778 = tempRet0; + $779 = (___muldi3(($765|0),($766|0),654183,0)|0); + $780 = tempRet0; + $781 = (_i64Add(($689|0),($690|0),($779|0),($780|0))|0); + $782 = tempRet0; + $783 = (___muldi3(($765|0),($766|0),-997805,-1)|0); + $784 = tempRet0; + $785 = (_i64Add(($703|0),($704|0),($783|0),($784|0))|0); + $786 = tempRet0; + $787 = (___muldi3(($765|0),($766|0),136657,0)|0); + $788 = tempRet0; + $789 = (_i64Add(($715|0),($716|0),($787|0),($788|0))|0); + $790 = tempRet0; + $791 = (___muldi3(($765|0),($766|0),-683901,-1)|0); + $792 = tempRet0; + $793 = (_i64Add(($723|0),($724|0),($791|0),($792|0))|0); + $794 = tempRet0; + $795 = (_bitshift64Ashr(($773|0),($774|0),21)|0); + $796 = tempRet0; + $797 = (_i64Add(($777|0),($778|0),($795|0),($796|0))|0); + $798 = tempRet0; + $799 = (_bitshift64Shl(($795|0),($796|0),21)|0); + $800 = tempRet0; + $801 = (_i64Subtract(($773|0),($774|0),($799|0),($800|0))|0); + $802 = tempRet0; + $803 = (_bitshift64Ashr(($797|0),($798|0),21)|0); + $804 = tempRet0; + $805 = (_i64Add(($781|0),($782|0),($803|0),($804|0))|0); + $806 = tempRet0; + $807 = (_bitshift64Shl(($803|0),($804|0),21)|0); + $808 = tempRet0; + $809 = (_i64Subtract(($797|0),($798|0),($807|0),($808|0))|0); + $810 = tempRet0; + $811 = (_bitshift64Ashr(($805|0),($806|0),21)|0); + $812 = tempRet0; + $813 = (_i64Add(($785|0),($786|0),($811|0),($812|0))|0); + $814 = tempRet0; + $815 = (_bitshift64Shl(($811|0),($812|0),21)|0); + $816 = tempRet0; + $817 = (_i64Subtract(($805|0),($806|0),($815|0),($816|0))|0); + $818 = tempRet0; + $819 = (_bitshift64Ashr(($813|0),($814|0),21)|0); + $820 = tempRet0; + $821 = (_i64Add(($789|0),($790|0),($819|0),($820|0))|0); + $822 = tempRet0; + $823 = (_bitshift64Shl(($819|0),($820|0),21)|0); + $824 = tempRet0; + $825 = (_i64Subtract(($813|0),($814|0),($823|0),($824|0))|0); + $826 = tempRet0; + $827 = (_bitshift64Ashr(($821|0),($822|0),21)|0); + $828 = tempRet0; + $829 = (_i64Add(($793|0),($794|0),($827|0),($828|0))|0); + $830 = tempRet0; + $831 = (_bitshift64Shl(($827|0),($828|0),21)|0); + $832 = tempRet0; + $833 = (_i64Subtract(($821|0),($822|0),($831|0),($832|0))|0); + $834 = tempRet0; + $835 = (_bitshift64Ashr(($829|0),($830|0),21)|0); + $836 = tempRet0; + $837 = (_i64Add(($835|0),($836|0),($731|0),($732|0))|0); + $838 = tempRet0; + $839 = (_bitshift64Shl(($835|0),($836|0),21)|0); + $840 = tempRet0; + $841 = (_i64Subtract(($829|0),($830|0),($839|0),($840|0))|0); + $842 = tempRet0; + $843 = (_bitshift64Ashr(($837|0),($838|0),21)|0); + $844 = tempRet0; + $845 = (_i64Add(($843|0),($844|0),($739|0),($740|0))|0); + $846 = tempRet0; + $847 = (_bitshift64Shl(($843|0),($844|0),21)|0); + $848 = tempRet0; + $849 = (_i64Subtract(($837|0),($838|0),($847|0),($848|0))|0); + $850 = tempRet0; + $851 = (_bitshift64Ashr(($845|0),($846|0),21)|0); + $852 = tempRet0; + $853 = (_i64Add(($851|0),($852|0),($747|0),($748|0))|0); + $854 = tempRet0; + $855 = (_bitshift64Shl(($851|0),($852|0),21)|0); + $856 = tempRet0; + $857 = (_i64Subtract(($845|0),($846|0),($855|0),($856|0))|0); + $858 = tempRet0; + $859 = (_bitshift64Ashr(($853|0),($854|0),21)|0); + $860 = tempRet0; + $861 = (_i64Add(($859|0),($860|0),($755|0),($756|0))|0); + $862 = tempRet0; + $863 = (_bitshift64Shl(($859|0),($860|0),21)|0); + $864 = tempRet0; + $865 = (_i64Subtract(($853|0),($854|0),($863|0),($864|0))|0); + $866 = tempRet0; + $867 = (_bitshift64Ashr(($861|0),($862|0),21)|0); + $868 = tempRet0; + $869 = (_i64Add(($867|0),($868|0),($763|0),($764|0))|0); + $870 = tempRet0; + $871 = (_bitshift64Shl(($867|0),($868|0),21)|0); + $872 = tempRet0; + $873 = (_i64Subtract(($861|0),($862|0),($871|0),($872|0))|0); + $874 = tempRet0; + $875 = (_bitshift64Ashr(($869|0),($870|0),21)|0); + $876 = tempRet0; + $877 = (_i64Add(($875|0),($876|0),($769|0),($770|0))|0); + $878 = tempRet0; + $879 = (_bitshift64Shl(($875|0),($876|0),21)|0); + $880 = tempRet0; + $881 = (_i64Subtract(($869|0),($870|0),($879|0),($880|0))|0); + $882 = tempRet0; + $883 = $801&255; + HEAP8[$0>>0] = $883; + $884 = (_bitshift64Lshr(($801|0),($802|0),8)|0); + $885 = tempRet0; + $886 = $884&255; + $887 = ((($0)) + 1|0); + HEAP8[$887>>0] = $886; + $888 = (_bitshift64Lshr(($801|0),($802|0),16)|0); + $889 = tempRet0; + $890 = (_bitshift64Shl(($809|0),($810|0),5)|0); + $891 = tempRet0; + $892 = $890 | $888; + $891 | $889; + $893 = $892&255; + HEAP8[$4>>0] = $893; + $894 = (_bitshift64Lshr(($809|0),($810|0),3)|0); + $895 = tempRet0; + $896 = $894&255; + $897 = ((($0)) + 3|0); + HEAP8[$897>>0] = $896; + $898 = (_bitshift64Lshr(($809|0),($810|0),11)|0); + $899 = tempRet0; + $900 = $898&255; + $901 = ((($0)) + 4|0); + HEAP8[$901>>0] = $900; + $902 = (_bitshift64Lshr(($809|0),($810|0),19)|0); + $903 = tempRet0; + $904 = (_bitshift64Shl(($817|0),($818|0),2)|0); + $905 = tempRet0; + $906 = $904 | $902; + $905 | $903; + $907 = $906&255; + HEAP8[$10>>0] = $907; + $908 = (_bitshift64Lshr(($817|0),($818|0),6)|0); + $909 = tempRet0; + $910 = $908&255; + $911 = ((($0)) + 6|0); + HEAP8[$911>>0] = $910; + $912 = (_bitshift64Lshr(($817|0),($818|0),14)|0); + $913 = tempRet0; + $914 = (_bitshift64Shl(($825|0),($826|0),7)|0); + $915 = tempRet0; + $916 = $914 | $912; + $915 | $913; + $917 = $916&255; + HEAP8[$16>>0] = $917; + $918 = (_bitshift64Lshr(($825|0),($826|0),1)|0); + $919 = tempRet0; + $920 = $918&255; + $921 = ((($0)) + 8|0); + HEAP8[$921>>0] = $920; + $922 = (_bitshift64Lshr(($825|0),($826|0),9)|0); + $923 = tempRet0; + $924 = $922&255; + $925 = ((($0)) + 9|0); + HEAP8[$925>>0] = $924; + $926 = (_bitshift64Lshr(($825|0),($826|0),17)|0); + $927 = tempRet0; + $928 = (_bitshift64Shl(($833|0),($834|0),4)|0); + $929 = tempRet0; + $930 = $928 | $926; + $929 | $927; + $931 = $930&255; + HEAP8[$22>>0] = $931; + $932 = (_bitshift64Lshr(($833|0),($834|0),4)|0); + $933 = tempRet0; + $934 = $932&255; + $935 = ((($0)) + 11|0); + HEAP8[$935>>0] = $934; + $936 = (_bitshift64Lshr(($833|0),($834|0),12)|0); + $937 = tempRet0; + $938 = $936&255; + $939 = ((($0)) + 12|0); + HEAP8[$939>>0] = $938; + $940 = (_bitshift64Lshr(($833|0),($834|0),20)|0); + $941 = tempRet0; + $942 = (_bitshift64Shl(($841|0),($842|0),1)|0); + $943 = tempRet0; + $944 = $942 | $940; + $943 | $941; + $945 = $944&255; + HEAP8[$28>>0] = $945; + $946 = (_bitshift64Lshr(($841|0),($842|0),7)|0); + $947 = tempRet0; + $948 = $946&255; + $949 = ((($0)) + 14|0); + HEAP8[$949>>0] = $948; + $950 = (_bitshift64Lshr(($841|0),($842|0),15)|0); + $951 = tempRet0; + $952 = (_bitshift64Shl(($849|0),($850|0),6)|0); + $953 = tempRet0; + $954 = $952 | $950; + $953 | $951; + $955 = $954&255; + HEAP8[$34>>0] = $955; + $956 = (_bitshift64Lshr(($849|0),($850|0),2)|0); + $957 = tempRet0; + $958 = $956&255; + $959 = ((($0)) + 16|0); + HEAP8[$959>>0] = $958; + $960 = (_bitshift64Lshr(($849|0),($850|0),10)|0); + $961 = tempRet0; + $962 = $960&255; + $963 = ((($0)) + 17|0); + HEAP8[$963>>0] = $962; + $964 = (_bitshift64Lshr(($849|0),($850|0),18)|0); + $965 = tempRet0; + $966 = (_bitshift64Shl(($857|0),($858|0),3)|0); + $967 = tempRet0; + $968 = $966 | $964; + $967 | $965; + $969 = $968&255; + HEAP8[$40>>0] = $969; + $970 = (_bitshift64Lshr(($857|0),($858|0),5)|0); + $971 = tempRet0; + $972 = $970&255; + $973 = ((($0)) + 19|0); + HEAP8[$973>>0] = $972; + $974 = (_bitshift64Lshr(($857|0),($858|0),13)|0); + $975 = tempRet0; + $976 = $974&255; + $977 = ((($0)) + 20|0); + HEAP8[$977>>0] = $976; + $978 = $865&255; + HEAP8[$46>>0] = $978; + $979 = (_bitshift64Lshr(($865|0),($866|0),8)|0); + $980 = tempRet0; + $981 = $979&255; + $982 = ((($0)) + 22|0); + HEAP8[$982>>0] = $981; + $983 = (_bitshift64Lshr(($865|0),($866|0),16)|0); + $984 = tempRet0; + $985 = (_bitshift64Shl(($873|0),($874|0),5)|0); + $986 = tempRet0; + $987 = $985 | $983; + $986 | $984; + $988 = $987&255; + HEAP8[$50>>0] = $988; + $989 = (_bitshift64Lshr(($873|0),($874|0),3)|0); + $990 = tempRet0; + $991 = $989&255; + $992 = ((($0)) + 24|0); + HEAP8[$992>>0] = $991; + $993 = (_bitshift64Lshr(($873|0),($874|0),11)|0); + $994 = tempRet0; + $995 = $993&255; + $996 = ((($0)) + 25|0); + HEAP8[$996>>0] = $995; + $997 = (_bitshift64Lshr(($873|0),($874|0),19)|0); + $998 = tempRet0; + $999 = (_bitshift64Shl(($881|0),($882|0),2)|0); + $1000 = tempRet0; + $1001 = $999 | $997; + $1000 | $998; + $1002 = $1001&255; + HEAP8[$56>>0] = $1002; + $1003 = (_bitshift64Lshr(($881|0),($882|0),6)|0); + $1004 = tempRet0; + $1005 = $1003&255; + $1006 = ((($0)) + 27|0); + HEAP8[$1006>>0] = $1005; + $1007 = (_bitshift64Lshr(($881|0),($882|0),14)|0); + $1008 = tempRet0; + $1009 = (_bitshift64Shl(($877|0),($878|0),7)|0); + $1010 = tempRet0; + $1011 = $1007 | $1009; + $1008 | $1010; + $1012 = $1011&255; + HEAP8[$62>>0] = $1012; + $1013 = (_bitshift64Lshr(($877|0),($878|0),1)|0); + $1014 = tempRet0; + $1015 = $1013&255; + $1016 = ((($0)) + 29|0); + HEAP8[$1016>>0] = $1015; + $1017 = (_bitshift64Lshr(($877|0),($878|0),9)|0); + $1018 = tempRet0; + $1019 = $1017&255; + $1020 = ((($0)) + 30|0); + HEAP8[$1020>>0] = $1019; + $1021 = (_bitshift64Lshr(($877|0),($878|0),17)|0); + $1022 = tempRet0; + $1023 = $1021&255; + HEAP8[$68>>0] = $1023; return; } -function _load_351($in) { - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; +function _load_3_51($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP8[$in>>0]|0; - $1 = $0&255; - $2 = ((($in)) + 1|0); - $3 = HEAP8[$2>>0]|0; - $4 = $3&255; - $5 = (_bitshift64Shl(($4|0),0,8)|0); - $6 = tempRet0; - $7 = $5 | $1; - $8 = ((($in)) + 2|0); - $9 = HEAP8[$8>>0]|0; - $10 = $9&255; - $11 = (_bitshift64Shl(($10|0),0,16)|0); - $12 = tempRet0; - $13 = $7 | $11; - $14 = $6 | $12; - tempRet0 = ($14); - return ($13|0); -} -function _load_452($in) { - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = ((($0)) + 1|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = (_bitshift64Shl(($5|0),0,8)|0); + $7 = tempRet0; + $8 = $6 | $2; + $9 = ((($0)) + 2|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = (_bitshift64Shl(($11|0),0,16)|0); + $13 = tempRet0; + $14 = $8 | $12; + $15 = $7 | $13; + tempRet0 = ($15); + return ($14|0); +} +function _load_4_52($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; var $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP8[$in>>0]|0; - $1 = $0&255; - $2 = ((($in)) + 1|0); - $3 = HEAP8[$2>>0]|0; - $4 = $3&255; - $5 = (_bitshift64Shl(($4|0),0,8)|0); - $6 = tempRet0; - $7 = $5 | $1; - $8 = ((($in)) + 2|0); - $9 = HEAP8[$8>>0]|0; - $10 = $9&255; - $11 = (_bitshift64Shl(($10|0),0,16)|0); - $12 = tempRet0; - $13 = $7 | $11; - $14 = $6 | $12; - $15 = ((($in)) + 3|0); - $16 = HEAP8[$15>>0]|0; - $17 = $16&255; - $18 = (_bitshift64Shl(($17|0),0,24)|0); - $19 = tempRet0; - $20 = $13 | $18; + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = ((($0)) + 1|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = (_bitshift64Shl(($5|0),0,8)|0); + $7 = tempRet0; + $8 = $6 | $2; + $9 = ((($0)) + 2|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = (_bitshift64Shl(($11|0),0,16)|0); + $13 = tempRet0; + $14 = $8 | $12; + $15 = $7 | $13; + $16 = ((($0)) + 3|0); + $17 = HEAP8[$16>>0]|0; + $18 = $17&255; + $19 = (_bitshift64Shl(($18|0),0,24)|0); + $20 = tempRet0; $21 = $14 | $19; - tempRet0 = ($21); - return ($20|0); + $22 = $15 | $20; + tempRet0 = ($22); + return ($21|0); } -function _sph_sha512_init($cc) { - $cc = $cc|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; +function _sph_sha512_init($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; sp = STACKTOP; - $0 = ((($cc)) + 128|0); - dest=$0; src=8; stop=dest+64|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - $1 = ((($cc)) + 192|0); - $2 = $1; + $1 = ((($0)) + 128|0); + dest=$1; src=8; stop=dest+64|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + $2 = ((($0)) + 192|0); $3 = $2; - HEAP32[$3>>2] = 0; - $4 = (($2) + 4)|0; - $5 = $4; - HEAP32[$5>>2] = 0; + $4 = $3; + HEAP32[$4>>2] = 0; + $5 = (($3) + 4)|0; + $6 = $5; + HEAP32[$6>>2] = 0; return; } -function _sph_sha384($cc,$data,$len) { - $cc = $cc|0; - $data = $data|0; - $len = $len|0; - var $$01$ = 0, $$012 = 0, $$03 = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0; - var $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $current$04 = 0, $current$1 = 0, label = 0, sp = 0; +function _sph_sha384($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $$02631 = 0, $$02730 = 0, $$028$ = 0, $$02829 = 0, $$1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0; + var $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = ((($cc)) + 192|0); - $1 = ($len|0)==(0); - if ($1) { + $3 = ((($0)) + 192|0); + $4 = ($2|0)==(0); + if ($4) { return; } - $2 = $0; - $3 = $2; - $4 = HEAP32[$3>>2]|0; - $5 = (($2) + 4)|0; + $5 = $3; $6 = $5; $7 = HEAP32[$6>>2]|0; - $8 = $4 & 127; - $9 = ((($cc)) + 128|0); - $$012 = $len;$$03 = $data;$current$04 = $8; + $8 = (($5) + 4)|0; + $9 = $8; + $10 = HEAP32[$9>>2]|0; + $11 = $7 & 127; + $12 = ((($0)) + 128|0); + $$02631 = $11;$$02730 = $1;$$02829 = $2; while(1) { - $10 = (128 - ($current$04))|0; - $11 = ($10>>>0)>($$012>>>0); - $$01$ = $11 ? $$012 : $10; - $12 = (($cc) + ($current$04)|0); - _memcpy(($12|0),($$03|0),($$01$|0))|0; - $13 = (($$03) + ($$01$)|0); - $14 = (($$01$) + ($current$04))|0; - $15 = (($$012) - ($$01$))|0; - $16 = ($14|0)==(128); - if ($16) { - _sha3_round($cc,$9); - $current$1 = 0; + $13 = (128 - ($$02631))|0; + $14 = ($13>>>0)>($$02829>>>0); + $$028$ = $14 ? $$02829 : $13; + $15 = (($0) + ($$02631)|0); + _memcpy(($15|0),($$02730|0),($$028$|0))|0; + $16 = (($$02730) + ($$028$)|0); + $17 = (($$028$) + ($$02631))|0; + $18 = (($$02829) - ($$028$))|0; + $19 = ($17|0)==(128); + if ($19) { + _sha3_round($0,$12); + $$1 = 0; } else { - $current$1 = $14; + $$1 = $17; } - $17 = $0; - $18 = $17; - $19 = HEAP32[$18>>2]|0; - $20 = (($17) + 4)|0; + $20 = $3; $21 = $20; $22 = HEAP32[$21>>2]|0; - $23 = (_i64Add(($19|0),($22|0),($$01$|0),0)|0); - $24 = tempRet0; - $25 = $0; - $26 = $25; - HEAP32[$26>>2] = $23; - $27 = (($25) + 4)|0; - $28 = $27; - HEAP32[$28>>2] = $24; - $29 = ($$012|0)==($$01$|0); - if ($29) { + $23 = (($20) + 4)|0; + $24 = $23; + $25 = HEAP32[$24>>2]|0; + $26 = (_i64Add(($22|0),($25|0),($$028$|0),0)|0); + $27 = tempRet0; + $28 = $3; + $29 = $28; + HEAP32[$29>>2] = $26; + $30 = (($28) + 4)|0; + $31 = $30; + HEAP32[$31>>2] = $27; + $32 = ($18|0)==(0); + if ($32) { break; } else { - $$012 = $15;$$03 = $13;$current$04 = $current$1; + $$02631 = $$1;$$02730 = $16;$$02829 = $18; } } return; } -function _sph_sha512_close($cc,$dst) { - $cc = $cc|0; - $dst = $dst|0; - var label = 0, sp = 0; - sp = STACKTOP; - _sha384_close($cc,$dst,8); - _sph_sha512_init($cc); - return; -} -function _sha3_round($data,$r) { - $data = $data|0; - $r = $r|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; - var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; - var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; - var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; - var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; - var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; - var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; - var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; - var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; - var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; - var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; - var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; - var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0; - var $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0; - var $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0; - var $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0; - var $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0; - var $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0; - var $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0; - var $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0; - var $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0; - var $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0; - var $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0; - var $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0; - var $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0; - var $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0; - var $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0; - var $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0; - var $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0; - var $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0; - var $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0; - var $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0; - var $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0; - var $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0; - var $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0; - var $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0; - var $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0; - var $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0; - var $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0; - var $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0; - var $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0; - var $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0; - var $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0; - var $963 = 0, $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $98 = 0, $99 = 0, $W = 0, $exitcond = 0, $exitcond19 = 0, $i$011 = 0, $i$110 = 0, $i$29 = 0, label = 0, sp = 0; +function _sha3_round($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$0344 = 0, $$1343 = 0, $$2342 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0; + var $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0; + var $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0; + var $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0; + var $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0; + var $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0; + var $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0; + var $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0; + var $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0; + var $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0; + var $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0; + var $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0; + var $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0; + var $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0; + var $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0; + var $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0; + var $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0; + var $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0; + var $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0; + var $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0; + var $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0; + var $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0; + var $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0; + var $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0; + var $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0; + var $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0; + var $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0; + var $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0; + var $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0; + var $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0; + var $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0; + var $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0; + var $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0; + var $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0; + var $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0; + var $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0; + var $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0; + var $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0; + var $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0; + var $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0; + var $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0; + var $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0; + var $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0; + var $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0; + var $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0; + var $908 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $exitcond = 0, $exitcond352 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 640|0; - $W = sp; - $i$011 = 0; + $2 = sp; + $$0344 = 0; while(1) { - $0 = $i$011 << 3; - $1 = (($data) + ($0)|0); - $2 = (_sph_dec64be_aligned($1)|0); - $3 = tempRet0; - $4 = (($W) + ($i$011<<3)|0); - $5 = $4; - $6 = $5; - HEAP32[$6>>2] = $2; - $7 = (($5) + 4)|0; + $3 = $$0344 << 3; + $4 = (($0) + ($3)|0); + $5 = (_sph_dec64be_aligned($4)|0); + $6 = tempRet0; + $7 = (($2) + ($$0344<<3)|0); $8 = $7; - HEAP32[$8>>2] = $3; - $9 = (($i$011) + 1)|0; - $exitcond19 = ($9|0)==(16); - if ($exitcond19) { - $i$110 = 16; + $9 = $8; + HEAP32[$9>>2] = $5; + $10 = (($8) + 4)|0; + $11 = $10; + HEAP32[$11>>2] = $6; + $12 = (($$0344) + 1)|0; + $exitcond352 = ($12|0)==(16); + if ($exitcond352) { + $$1343 = 16; break; } else { - $i$011 = $9; + $$0344 = $12; } } while(1) { - $10 = (($i$110) + -2)|0; - $11 = (($W) + ($10<<3)|0); - $12 = $11; - $13 = $12; - $14 = HEAP32[$13>>2]|0; - $15 = (($12) + 4)|0; + $13 = (($$1343) + -2)|0; + $14 = (($2) + ($13<<3)|0); + $15 = $14; $16 = $15; $17 = HEAP32[$16>>2]|0; - $18 = (_bitshift64Shl(($14|0),($17|0),45)|0); - $19 = tempRet0; - $20 = (_bitshift64Lshr(($14|0),($17|0),19)|0); - $21 = tempRet0; - $22 = $18 | $20; - $23 = $19 | $21; - $24 = (_bitshift64Shl(($14|0),($17|0),3)|0); - $25 = tempRet0; - $26 = (_bitshift64Lshr(($14|0),($17|0),61)|0); - $27 = tempRet0; - $28 = $24 | $26; - $29 = $25 | $27; - $30 = (_bitshift64Lshr(($14|0),($17|0),6)|0); - $31 = tempRet0; - $32 = $28 ^ $30; - $33 = $29 ^ $31; - $34 = $32 ^ $22; - $35 = $33 ^ $23; - $36 = (($i$110) + -7)|0; - $37 = (($W) + ($36<<3)|0); - $38 = $37; - $39 = $38; - $40 = HEAP32[$39>>2]|0; - $41 = (($38) + 4)|0; + $18 = (($15) + 4)|0; + $19 = $18; + $20 = HEAP32[$19>>2]|0; + $21 = (_bitshift64Shl(($17|0),($20|0),45)|0); + $22 = tempRet0; + $23 = (_bitshift64Lshr(($17|0),($20|0),19)|0); + $24 = tempRet0; + $25 = $21 | $23; + $26 = $22 | $24; + $27 = (_bitshift64Shl(($17|0),($20|0),3)|0); + $28 = tempRet0; + $29 = (_bitshift64Lshr(($17|0),($20|0),61)|0); + $30 = tempRet0; + $31 = $27 | $29; + $32 = $28 | $30; + $33 = (_bitshift64Lshr(($17|0),($20|0),6)|0); + $34 = tempRet0; + $35 = $31 ^ $33; + $36 = $32 ^ $34; + $37 = $35 ^ $25; + $38 = $36 ^ $26; + $39 = (($$1343) + -7)|0; + $40 = (($2) + ($39<<3)|0); + $41 = $40; $42 = $41; $43 = HEAP32[$42>>2]|0; - $44 = (($i$110) + -15)|0; - $45 = (($W) + ($44<<3)|0); - $46 = $45; - $47 = $46; - $48 = HEAP32[$47>>2]|0; - $49 = (($46) + 4)|0; + $44 = (($41) + 4)|0; + $45 = $44; + $46 = HEAP32[$45>>2]|0; + $47 = (($$1343) + -15)|0; + $48 = (($2) + ($47<<3)|0); + $49 = $48; $50 = $49; $51 = HEAP32[$50>>2]|0; - $52 = (_bitshift64Shl(($48|0),($51|0),63)|0); - $53 = tempRet0; - $54 = (_bitshift64Lshr(($48|0),($51|0),1)|0); - $55 = tempRet0; - $56 = $52 | $54; - $57 = $53 | $55; - $58 = (_bitshift64Shl(($48|0),($51|0),56)|0); - $59 = tempRet0; - $60 = (_bitshift64Lshr(($48|0),($51|0),8)|0); - $61 = tempRet0; - $62 = $58 | $60; - $63 = $59 | $61; - $64 = (_bitshift64Lshr(($48|0),($51|0),7)|0); - $65 = tempRet0; - $66 = $62 ^ $64; - $67 = $63 ^ $65; - $68 = $66 ^ $56; - $69 = $67 ^ $57; - $70 = (($i$110) + -16)|0; - $71 = (($W) + ($70<<3)|0); - $72 = $71; - $73 = $72; - $74 = HEAP32[$73>>2]|0; - $75 = (($72) + 4)|0; + $52 = (($49) + 4)|0; + $53 = $52; + $54 = HEAP32[$53>>2]|0; + $55 = (_bitshift64Shl(($51|0),($54|0),63)|0); + $56 = tempRet0; + $57 = (_bitshift64Lshr(($51|0),($54|0),1)|0); + $58 = tempRet0; + $59 = $55 | $57; + $60 = $56 | $58; + $61 = (_bitshift64Shl(($51|0),($54|0),56)|0); + $62 = tempRet0; + $63 = (_bitshift64Lshr(($51|0),($54|0),8)|0); + $64 = tempRet0; + $65 = $61 | $63; + $66 = $62 | $64; + $67 = (_bitshift64Lshr(($51|0),($54|0),7)|0); + $68 = tempRet0; + $69 = $65 ^ $67; + $70 = $66 ^ $68; + $71 = $69 ^ $59; + $72 = $70 ^ $60; + $73 = (($$1343) + -16)|0; + $74 = (($2) + ($73<<3)|0); + $75 = $74; $76 = $75; $77 = HEAP32[$76>>2]|0; - $78 = (_i64Add(($74|0),($77|0),($40|0),($43|0))|0); - $79 = tempRet0; - $80 = (_i64Add(($78|0),($79|0),($34|0),($35|0))|0); - $81 = tempRet0; - $82 = (_i64Add(($80|0),($81|0),($68|0),($69|0))|0); - $83 = tempRet0; - $84 = (($W) + ($i$110<<3)|0); - $85 = $84; - $86 = $85; - HEAP32[$86>>2] = $82; - $87 = (($85) + 4)|0; + $78 = (($75) + 4)|0; + $79 = $78; + $80 = HEAP32[$79>>2]|0; + $81 = (_i64Add(($77|0),($80|0),($43|0),($46|0))|0); + $82 = tempRet0; + $83 = (_i64Add(($81|0),($82|0),($37|0),($38|0))|0); + $84 = tempRet0; + $85 = (_i64Add(($83|0),($84|0),($71|0),($72|0))|0); + $86 = tempRet0; + $87 = (($2) + ($$1343<<3)|0); $88 = $87; - HEAP32[$88>>2] = $83; - $89 = (($i$110) + 1)|0; - $exitcond = ($89|0)==(80); + $89 = $88; + HEAP32[$89>>2] = $85; + $90 = (($88) + 4)|0; + $91 = $90; + HEAP32[$91>>2] = $86; + $92 = (($$1343) + 1)|0; + $exitcond = ($92|0)==(80); if ($exitcond) { break; } else { - $i$110 = $89; + $$1343 = $92; } } - $90 = $r; - $91 = $90; - $92 = HEAP32[$91>>2]|0; - $93 = (($90) + 4)|0; + $93 = $1; $94 = $93; $95 = HEAP32[$94>>2]|0; - $96 = ((($r)) + 8|0); + $96 = (($93) + 4)|0; $97 = $96; - $98 = $97; - $99 = HEAP32[$98>>2]|0; - $100 = (($97) + 4)|0; + $98 = HEAP32[$97>>2]|0; + $99 = ((($1)) + 8|0); + $100 = $99; $101 = $100; $102 = HEAP32[$101>>2]|0; - $103 = ((($r)) + 16|0); + $103 = (($100) + 4)|0; $104 = $103; - $105 = $104; - $106 = HEAP32[$105>>2]|0; - $107 = (($104) + 4)|0; + $105 = HEAP32[$104>>2]|0; + $106 = ((($1)) + 16|0); + $107 = $106; $108 = $107; $109 = HEAP32[$108>>2]|0; - $110 = ((($r)) + 24|0); + $110 = (($107) + 4)|0; $111 = $110; - $112 = $111; - $113 = HEAP32[$112>>2]|0; - $114 = (($111) + 4)|0; + $112 = HEAP32[$111>>2]|0; + $113 = ((($1)) + 24|0); + $114 = $113; $115 = $114; $116 = HEAP32[$115>>2]|0; - $117 = ((($r)) + 32|0); + $117 = (($114) + 4)|0; $118 = $117; - $119 = $118; - $120 = HEAP32[$119>>2]|0; - $121 = (($118) + 4)|0; + $119 = HEAP32[$118>>2]|0; + $120 = ((($1)) + 32|0); + $121 = $120; $122 = $121; $123 = HEAP32[$122>>2]|0; - $124 = ((($r)) + 40|0); + $124 = (($121) + 4)|0; $125 = $124; - $126 = $125; - $127 = HEAP32[$126>>2]|0; - $128 = (($125) + 4)|0; + $126 = HEAP32[$125>>2]|0; + $127 = ((($1)) + 40|0); + $128 = $127; $129 = $128; $130 = HEAP32[$129>>2]|0; - $131 = ((($r)) + 48|0); + $131 = (($128) + 4)|0; $132 = $131; - $133 = $132; - $134 = HEAP32[$133>>2]|0; - $135 = (($132) + 4)|0; + $133 = HEAP32[$132>>2]|0; + $134 = ((($1)) + 48|0); + $135 = $134; $136 = $135; $137 = HEAP32[$136>>2]|0; - $138 = ((($r)) + 56|0); + $138 = (($135) + 4)|0; $139 = $138; - $140 = $139; - $141 = HEAP32[$140>>2]|0; - $142 = (($139) + 4)|0; + $140 = HEAP32[$139>>2]|0; + $141 = ((($1)) + 56|0); + $142 = $141; $143 = $142; $144 = HEAP32[$143>>2]|0; - $145 = $120;$146 = $123;$170 = $127;$171 = $134;$173 = $130;$174 = $137;$193 = $141;$194 = $144;$203 = $92;$204 = $95;$228 = $99;$230 = $102;$234 = $106;$236 = $109;$241 = $113;$242 = $116;$i$29 = 0; + $145 = (($142) + 4)|0; + $146 = $145; + $147 = HEAP32[$146>>2]|0; + $$2342 = 0;$148 = $123;$149 = $126;$173 = $130;$174 = $137;$176 = $133;$177 = $140;$196 = $144;$197 = $147;$206 = $95;$207 = $98;$231 = $102;$233 = $105;$237 = $109;$239 = $112;$244 = $116;$245 = $119; while(1) { - $147 = (_bitshift64Shl(($145|0),($146|0),50)|0); - $148 = tempRet0; - $149 = (_bitshift64Lshr(($145|0),($146|0),14)|0); - $150 = tempRet0; - $151 = $147 | $149; - $152 = $148 | $150; - $153 = (_bitshift64Shl(($145|0),($146|0),46)|0); - $154 = tempRet0; - $155 = (_bitshift64Lshr(($145|0),($146|0),18)|0); - $156 = tempRet0; - $157 = $153 | $155; - $158 = $154 | $156; - $159 = $151 ^ $157; - $160 = $152 ^ $158; - $161 = (_bitshift64Shl(($145|0),($146|0),23)|0); - $162 = tempRet0; - $163 = (_bitshift64Lshr(($145|0),($146|0),41)|0); - $164 = tempRet0; - $165 = $161 | $163; - $166 = $162 | $164; - $167 = $159 ^ $165; - $168 = $160 ^ $166; - $169 = $170 ^ $171; + $150 = (_bitshift64Shl(($148|0),($149|0),50)|0); + $151 = tempRet0; + $152 = (_bitshift64Lshr(($148|0),($149|0),14)|0); + $153 = tempRet0; + $154 = $150 | $152; + $155 = $151 | $153; + $156 = (_bitshift64Shl(($148|0),($149|0),46)|0); + $157 = tempRet0; + $158 = (_bitshift64Lshr(($148|0),($149|0),18)|0); + $159 = tempRet0; + $160 = $156 | $158; + $161 = $157 | $159; + $162 = $154 ^ $160; + $163 = $155 ^ $161; + $164 = (_bitshift64Shl(($148|0),($149|0),23)|0); + $165 = tempRet0; + $166 = (_bitshift64Lshr(($148|0),($149|0),41)|0); + $167 = tempRet0; + $168 = $164 | $166; + $169 = $165 | $167; + $170 = $162 ^ $168; + $171 = $163 ^ $169; $172 = $173 ^ $174; - $175 = $169 & $145; - $176 = $172 & $146; - $177 = $175 ^ $171; - $178 = $176 ^ $174; - $179 = (72 + ($i$29<<3)|0); - $180 = $179; - $181 = $180; - $182 = HEAP32[$181>>2]|0; - $183 = (($180) + 4)|0; + $175 = $176 ^ $177; + $178 = $172 & $148; + $179 = $175 & $149; + $180 = $178 ^ $174; + $181 = $179 ^ $177; + $182 = (72 + ($$2342<<3)|0); + $183 = $182; $184 = $183; $185 = HEAP32[$184>>2]|0; - $186 = (($W) + ($i$29<<3)|0); + $186 = (($183) + 4)|0; $187 = $186; - $188 = $187; - $189 = HEAP32[$188>>2]|0; - $190 = (($187) + 4)|0; + $188 = HEAP32[$187>>2]|0; + $189 = (($2) + ($$2342<<3)|0); + $190 = $189; $191 = $190; $192 = HEAP32[$191>>2]|0; - $195 = (_i64Add(($177|0),($178|0),($193|0),($194|0))|0); - $196 = tempRet0; - $197 = (_i64Add(($195|0),($196|0),($167|0),($168|0))|0); - $198 = tempRet0; - $199 = (_i64Add(($197|0),($198|0),($182|0),($185|0))|0); - $200 = tempRet0; - $201 = (_i64Add(($199|0),($200|0),($189|0),($192|0))|0); - $202 = tempRet0; - $205 = (_bitshift64Shl(($203|0),($204|0),36)|0); - $206 = tempRet0; - $207 = (_bitshift64Lshr(($203|0),($204|0),28)|0); - $208 = tempRet0; - $209 = $205 | $207; - $210 = $206 | $208; - $211 = (_bitshift64Shl(($203|0),($204|0),30)|0); - $212 = tempRet0; - $213 = (_bitshift64Lshr(($203|0),($204|0),34)|0); - $214 = tempRet0; - $215 = $211 | $213; - $216 = $212 | $214; - $217 = $209 ^ $215; - $218 = $210 ^ $216; - $219 = (_bitshift64Shl(($203|0),($204|0),25)|0); - $220 = tempRet0; - $221 = (_bitshift64Lshr(($203|0),($204|0),39)|0); - $222 = tempRet0; - $223 = $219 | $221; - $224 = $220 | $222; - $225 = $217 ^ $223; - $226 = $218 ^ $224; - $227 = $203 & $228; - $229 = $204 & $230; - $231 = $203 | $228; - $232 = $204 | $230; - $233 = $231 & $234; - $235 = $232 & $236; - $237 = $233 | $227; - $238 = $235 | $229; - $239 = (_i64Add(($225|0),($226|0),($237|0),($238|0))|0); - $240 = tempRet0; - $243 = (_i64Add(($201|0),($202|0),($241|0),($242|0))|0); - $244 = tempRet0; - $245 = (_i64Add(($239|0),($240|0),($201|0),($202|0))|0); - $246 = tempRet0; - $247 = (_bitshift64Shl(($243|0),($244|0),50)|0); - $248 = tempRet0; - $249 = (_bitshift64Lshr(($243|0),($244|0),14)|0); - $250 = tempRet0; - $251 = $247 | $249; - $252 = $248 | $250; - $253 = (_bitshift64Shl(($243|0),($244|0),46)|0); - $254 = tempRet0; - $255 = (_bitshift64Lshr(($243|0),($244|0),18)|0); - $256 = tempRet0; - $257 = $253 | $255; - $258 = $254 | $256; - $259 = $251 ^ $257; - $260 = $252 ^ $258; - $261 = (_bitshift64Shl(($243|0),($244|0),23)|0); - $262 = tempRet0; - $263 = (_bitshift64Lshr(($243|0),($244|0),41)|0); - $264 = tempRet0; - $265 = $261 | $263; - $266 = $262 | $264; - $267 = $259 ^ $265; - $268 = $260 ^ $266; - $269 = $145 ^ $170; - $270 = $146 ^ $173; - $271 = $243 & $269; - $272 = $244 & $270; - $273 = $271 ^ $170; - $274 = $272 ^ $173; - $275 = $i$29 | 1; - $276 = (72 + ($275<<3)|0); - $277 = $276; - $278 = $277; - $279 = HEAP32[$278>>2]|0; - $280 = (($277) + 4)|0; + $193 = (($190) + 4)|0; + $194 = $193; + $195 = HEAP32[$194>>2]|0; + $198 = (_i64Add(($180|0),($181|0),($196|0),($197|0))|0); + $199 = tempRet0; + $200 = (_i64Add(($198|0),($199|0),($170|0),($171|0))|0); + $201 = tempRet0; + $202 = (_i64Add(($200|0),($201|0),($185|0),($188|0))|0); + $203 = tempRet0; + $204 = (_i64Add(($202|0),($203|0),($192|0),($195|0))|0); + $205 = tempRet0; + $208 = (_bitshift64Shl(($206|0),($207|0),36)|0); + $209 = tempRet0; + $210 = (_bitshift64Lshr(($206|0),($207|0),28)|0); + $211 = tempRet0; + $212 = $208 | $210; + $213 = $209 | $211; + $214 = (_bitshift64Shl(($206|0),($207|0),30)|0); + $215 = tempRet0; + $216 = (_bitshift64Lshr(($206|0),($207|0),34)|0); + $217 = tempRet0; + $218 = $214 | $216; + $219 = $215 | $217; + $220 = $212 ^ $218; + $221 = $213 ^ $219; + $222 = (_bitshift64Shl(($206|0),($207|0),25)|0); + $223 = tempRet0; + $224 = (_bitshift64Lshr(($206|0),($207|0),39)|0); + $225 = tempRet0; + $226 = $222 | $224; + $227 = $223 | $225; + $228 = $220 ^ $226; + $229 = $221 ^ $227; + $230 = $206 & $231; + $232 = $207 & $233; + $234 = $206 | $231; + $235 = $207 | $233; + $236 = $234 & $237; + $238 = $235 & $239; + $240 = $236 | $230; + $241 = $238 | $232; + $242 = (_i64Add(($228|0),($229|0),($240|0),($241|0))|0); + $243 = tempRet0; + $246 = (_i64Add(($204|0),($205|0),($244|0),($245|0))|0); + $247 = tempRet0; + $248 = (_i64Add(($242|0),($243|0),($204|0),($205|0))|0); + $249 = tempRet0; + $250 = (_bitshift64Shl(($246|0),($247|0),50)|0); + $251 = tempRet0; + $252 = (_bitshift64Lshr(($246|0),($247|0),14)|0); + $253 = tempRet0; + $254 = $250 | $252; + $255 = $251 | $253; + $256 = (_bitshift64Shl(($246|0),($247|0),46)|0); + $257 = tempRet0; + $258 = (_bitshift64Lshr(($246|0),($247|0),18)|0); + $259 = tempRet0; + $260 = $256 | $258; + $261 = $257 | $259; + $262 = $254 ^ $260; + $263 = $255 ^ $261; + $264 = (_bitshift64Shl(($246|0),($247|0),23)|0); + $265 = tempRet0; + $266 = (_bitshift64Lshr(($246|0),($247|0),41)|0); + $267 = tempRet0; + $268 = $264 | $266; + $269 = $265 | $267; + $270 = $262 ^ $268; + $271 = $263 ^ $269; + $272 = $148 ^ $173; + $273 = $149 ^ $176; + $274 = $246 & $272; + $275 = $247 & $273; + $276 = $274 ^ $173; + $277 = $275 ^ $176; + $278 = $$2342 | 1; + $279 = (72 + ($278<<3)|0); + $280 = $279; $281 = $280; $282 = HEAP32[$281>>2]|0; - $283 = (($W) + ($275<<3)|0); + $283 = (($280) + 4)|0; $284 = $283; - $285 = $284; - $286 = HEAP32[$285>>2]|0; - $287 = (($284) + 4)|0; + $285 = HEAP32[$284>>2]|0; + $286 = (($2) + ($278<<3)|0); + $287 = $286; $288 = $287; $289 = HEAP32[$288>>2]|0; - $290 = (_i64Add(($279|0),($282|0),($171|0),($174|0))|0); - $291 = tempRet0; - $292 = (_i64Add(($290|0),($291|0),($286|0),($289|0))|0); - $293 = tempRet0; - $294 = (_i64Add(($292|0),($293|0),($273|0),($274|0))|0); - $295 = tempRet0; - $296 = (_i64Add(($294|0),($295|0),($267|0),($268|0))|0); - $297 = tempRet0; - $298 = (_bitshift64Shl(($245|0),($246|0),36)|0); - $299 = tempRet0; - $300 = (_bitshift64Lshr(($245|0),($246|0),28)|0); - $301 = tempRet0; - $302 = $298 | $300; - $303 = $299 | $301; - $304 = (_bitshift64Shl(($245|0),($246|0),30)|0); - $305 = tempRet0; - $306 = (_bitshift64Lshr(($245|0),($246|0),34)|0); - $307 = tempRet0; - $308 = $304 | $306; - $309 = $305 | $307; - $310 = $302 ^ $308; - $311 = $303 ^ $309; - $312 = (_bitshift64Shl(($245|0),($246|0),25)|0); - $313 = tempRet0; - $314 = (_bitshift64Lshr(($245|0),($246|0),39)|0); - $315 = tempRet0; - $316 = $312 | $314; - $317 = $313 | $315; - $318 = $310 ^ $316; - $319 = $311 ^ $317; - $320 = $245 & $203; - $321 = $246 & $204; - $322 = $245 | $203; - $323 = $246 | $204; - $324 = $322 & $228; - $325 = $323 & $230; - $326 = $324 | $320; - $327 = $325 | $321; - $328 = (_i64Add(($318|0),($319|0),($326|0),($327|0))|0); - $329 = tempRet0; - $330 = (_i64Add(($296|0),($297|0),($234|0),($236|0))|0); - $331 = tempRet0; - $332 = (_i64Add(($328|0),($329|0),($296|0),($297|0))|0); - $333 = tempRet0; - $334 = (_bitshift64Shl(($330|0),($331|0),50)|0); - $335 = tempRet0; - $336 = (_bitshift64Lshr(($330|0),($331|0),14)|0); - $337 = tempRet0; - $338 = $334 | $336; - $339 = $335 | $337; - $340 = (_bitshift64Shl(($330|0),($331|0),46)|0); - $341 = tempRet0; - $342 = (_bitshift64Lshr(($330|0),($331|0),18)|0); - $343 = tempRet0; - $344 = $340 | $342; - $345 = $341 | $343; - $346 = $338 ^ $344; - $347 = $339 ^ $345; - $348 = (_bitshift64Shl(($330|0),($331|0),23)|0); - $349 = tempRet0; - $350 = (_bitshift64Lshr(($330|0),($331|0),41)|0); - $351 = tempRet0; - $352 = $348 | $350; - $353 = $349 | $351; - $354 = $346 ^ $352; - $355 = $347 ^ $353; - $356 = $243 ^ $145; - $357 = $244 ^ $146; - $358 = $330 & $356; - $359 = $331 & $357; - $360 = $358 ^ $145; - $361 = $359 ^ $146; - $362 = $i$29 | 2; - $363 = (72 + ($362<<3)|0); - $364 = $363; - $365 = $364; - $366 = HEAP32[$365>>2]|0; - $367 = (($364) + 4)|0; + $290 = (($287) + 4)|0; + $291 = $290; + $292 = HEAP32[$291>>2]|0; + $293 = (_i64Add(($282|0),($285|0),($174|0),($177|0))|0); + $294 = tempRet0; + $295 = (_i64Add(($293|0),($294|0),($289|0),($292|0))|0); + $296 = tempRet0; + $297 = (_i64Add(($295|0),($296|0),($276|0),($277|0))|0); + $298 = tempRet0; + $299 = (_i64Add(($297|0),($298|0),($270|0),($271|0))|0); + $300 = tempRet0; + $301 = (_bitshift64Shl(($248|0),($249|0),36)|0); + $302 = tempRet0; + $303 = (_bitshift64Lshr(($248|0),($249|0),28)|0); + $304 = tempRet0; + $305 = $301 | $303; + $306 = $302 | $304; + $307 = (_bitshift64Shl(($248|0),($249|0),30)|0); + $308 = tempRet0; + $309 = (_bitshift64Lshr(($248|0),($249|0),34)|0); + $310 = tempRet0; + $311 = $307 | $309; + $312 = $308 | $310; + $313 = $305 ^ $311; + $314 = $306 ^ $312; + $315 = (_bitshift64Shl(($248|0),($249|0),25)|0); + $316 = tempRet0; + $317 = (_bitshift64Lshr(($248|0),($249|0),39)|0); + $318 = tempRet0; + $319 = $315 | $317; + $320 = $316 | $318; + $321 = $313 ^ $319; + $322 = $314 ^ $320; + $323 = $248 & $206; + $324 = $249 & $207; + $325 = $248 | $206; + $326 = $249 | $207; + $327 = $325 & $231; + $328 = $326 & $233; + $329 = $327 | $323; + $330 = $328 | $324; + $331 = (_i64Add(($321|0),($322|0),($329|0),($330|0))|0); + $332 = tempRet0; + $333 = (_i64Add(($299|0),($300|0),($237|0),($239|0))|0); + $334 = tempRet0; + $335 = (_i64Add(($331|0),($332|0),($299|0),($300|0))|0); + $336 = tempRet0; + $337 = (_bitshift64Shl(($333|0),($334|0),50)|0); + $338 = tempRet0; + $339 = (_bitshift64Lshr(($333|0),($334|0),14)|0); + $340 = tempRet0; + $341 = $337 | $339; + $342 = $338 | $340; + $343 = (_bitshift64Shl(($333|0),($334|0),46)|0); + $344 = tempRet0; + $345 = (_bitshift64Lshr(($333|0),($334|0),18)|0); + $346 = tempRet0; + $347 = $343 | $345; + $348 = $344 | $346; + $349 = $341 ^ $347; + $350 = $342 ^ $348; + $351 = (_bitshift64Shl(($333|0),($334|0),23)|0); + $352 = tempRet0; + $353 = (_bitshift64Lshr(($333|0),($334|0),41)|0); + $354 = tempRet0; + $355 = $351 | $353; + $356 = $352 | $354; + $357 = $349 ^ $355; + $358 = $350 ^ $356; + $359 = $246 ^ $148; + $360 = $247 ^ $149; + $361 = $333 & $359; + $362 = $334 & $360; + $363 = $361 ^ $148; + $364 = $362 ^ $149; + $365 = $$2342 | 2; + $366 = (72 + ($365<<3)|0); + $367 = $366; $368 = $367; $369 = HEAP32[$368>>2]|0; - $370 = (($W) + ($362<<3)|0); + $370 = (($367) + 4)|0; $371 = $370; - $372 = $371; - $373 = HEAP32[$372>>2]|0; - $374 = (($371) + 4)|0; + $372 = HEAP32[$371>>2]|0; + $373 = (($2) + ($365<<3)|0); + $374 = $373; $375 = $374; $376 = HEAP32[$375>>2]|0; - $377 = (_i64Add(($366|0),($369|0),($170|0),($173|0))|0); - $378 = tempRet0; - $379 = (_i64Add(($377|0),($378|0),($373|0),($376|0))|0); - $380 = tempRet0; - $381 = (_i64Add(($379|0),($380|0),($360|0),($361|0))|0); - $382 = tempRet0; - $383 = (_i64Add(($381|0),($382|0),($354|0),($355|0))|0); - $384 = tempRet0; - $385 = (_bitshift64Shl(($332|0),($333|0),36)|0); - $386 = tempRet0; - $387 = (_bitshift64Lshr(($332|0),($333|0),28)|0); - $388 = tempRet0; - $389 = $385 | $387; - $390 = $386 | $388; - $391 = (_bitshift64Shl(($332|0),($333|0),30)|0); - $392 = tempRet0; - $393 = (_bitshift64Lshr(($332|0),($333|0),34)|0); - $394 = tempRet0; - $395 = $391 | $393; - $396 = $392 | $394; - $397 = $389 ^ $395; - $398 = $390 ^ $396; - $399 = (_bitshift64Shl(($332|0),($333|0),25)|0); - $400 = tempRet0; - $401 = (_bitshift64Lshr(($332|0),($333|0),39)|0); - $402 = tempRet0; - $403 = $399 | $401; - $404 = $400 | $402; - $405 = $397 ^ $403; - $406 = $398 ^ $404; - $407 = $332 & $245; - $408 = $333 & $246; - $409 = $332 | $245; - $410 = $333 | $246; - $411 = $409 & $203; - $412 = $410 & $204; - $413 = $411 | $407; - $414 = $412 | $408; - $415 = (_i64Add(($405|0),($406|0),($413|0),($414|0))|0); - $416 = tempRet0; - $417 = (_i64Add(($383|0),($384|0),($228|0),($230|0))|0); - $418 = tempRet0; - $419 = (_i64Add(($415|0),($416|0),($383|0),($384|0))|0); - $420 = tempRet0; - $421 = (_bitshift64Shl(($417|0),($418|0),50)|0); - $422 = tempRet0; - $423 = (_bitshift64Lshr(($417|0),($418|0),14)|0); - $424 = tempRet0; - $425 = $421 | $423; - $426 = $422 | $424; - $427 = (_bitshift64Shl(($417|0),($418|0),46)|0); - $428 = tempRet0; - $429 = (_bitshift64Lshr(($417|0),($418|0),18)|0); - $430 = tempRet0; - $431 = $427 | $429; - $432 = $428 | $430; - $433 = $425 ^ $431; - $434 = $426 ^ $432; - $435 = (_bitshift64Shl(($417|0),($418|0),23)|0); - $436 = tempRet0; - $437 = (_bitshift64Lshr(($417|0),($418|0),41)|0); - $438 = tempRet0; - $439 = $435 | $437; - $440 = $436 | $438; - $441 = $433 ^ $439; - $442 = $434 ^ $440; - $443 = $330 ^ $243; - $444 = $331 ^ $244; - $445 = $417 & $443; - $446 = $418 & $444; - $447 = $445 ^ $243; - $448 = $446 ^ $244; - $449 = $i$29 | 3; - $450 = (72 + ($449<<3)|0); - $451 = $450; - $452 = $451; - $453 = HEAP32[$452>>2]|0; - $454 = (($451) + 4)|0; + $377 = (($374) + 4)|0; + $378 = $377; + $379 = HEAP32[$378>>2]|0; + $380 = (_i64Add(($369|0),($372|0),($173|0),($176|0))|0); + $381 = tempRet0; + $382 = (_i64Add(($380|0),($381|0),($376|0),($379|0))|0); + $383 = tempRet0; + $384 = (_i64Add(($382|0),($383|0),($363|0),($364|0))|0); + $385 = tempRet0; + $386 = (_i64Add(($384|0),($385|0),($357|0),($358|0))|0); + $387 = tempRet0; + $388 = (_bitshift64Shl(($335|0),($336|0),36)|0); + $389 = tempRet0; + $390 = (_bitshift64Lshr(($335|0),($336|0),28)|0); + $391 = tempRet0; + $392 = $388 | $390; + $393 = $389 | $391; + $394 = (_bitshift64Shl(($335|0),($336|0),30)|0); + $395 = tempRet0; + $396 = (_bitshift64Lshr(($335|0),($336|0),34)|0); + $397 = tempRet0; + $398 = $394 | $396; + $399 = $395 | $397; + $400 = $392 ^ $398; + $401 = $393 ^ $399; + $402 = (_bitshift64Shl(($335|0),($336|0),25)|0); + $403 = tempRet0; + $404 = (_bitshift64Lshr(($335|0),($336|0),39)|0); + $405 = tempRet0; + $406 = $402 | $404; + $407 = $403 | $405; + $408 = $400 ^ $406; + $409 = $401 ^ $407; + $410 = $335 & $248; + $411 = $336 & $249; + $412 = $335 | $248; + $413 = $336 | $249; + $414 = $412 & $206; + $415 = $413 & $207; + $416 = $414 | $410; + $417 = $415 | $411; + $418 = (_i64Add(($408|0),($409|0),($416|0),($417|0))|0); + $419 = tempRet0; + $420 = (_i64Add(($386|0),($387|0),($231|0),($233|0))|0); + $421 = tempRet0; + $422 = (_i64Add(($418|0),($419|0),($386|0),($387|0))|0); + $423 = tempRet0; + $424 = (_bitshift64Shl(($420|0),($421|0),50)|0); + $425 = tempRet0; + $426 = (_bitshift64Lshr(($420|0),($421|0),14)|0); + $427 = tempRet0; + $428 = $424 | $426; + $429 = $425 | $427; + $430 = (_bitshift64Shl(($420|0),($421|0),46)|0); + $431 = tempRet0; + $432 = (_bitshift64Lshr(($420|0),($421|0),18)|0); + $433 = tempRet0; + $434 = $430 | $432; + $435 = $431 | $433; + $436 = $428 ^ $434; + $437 = $429 ^ $435; + $438 = (_bitshift64Shl(($420|0),($421|0),23)|0); + $439 = tempRet0; + $440 = (_bitshift64Lshr(($420|0),($421|0),41)|0); + $441 = tempRet0; + $442 = $438 | $440; + $443 = $439 | $441; + $444 = $436 ^ $442; + $445 = $437 ^ $443; + $446 = $333 ^ $246; + $447 = $334 ^ $247; + $448 = $420 & $446; + $449 = $421 & $447; + $450 = $448 ^ $246; + $451 = $449 ^ $247; + $452 = $$2342 | 3; + $453 = (72 + ($452<<3)|0); + $454 = $453; $455 = $454; $456 = HEAP32[$455>>2]|0; - $457 = (($W) + ($449<<3)|0); + $457 = (($454) + 4)|0; $458 = $457; - $459 = $458; - $460 = HEAP32[$459>>2]|0; - $461 = (($458) + 4)|0; + $459 = HEAP32[$458>>2]|0; + $460 = (($2) + ($452<<3)|0); + $461 = $460; $462 = $461; $463 = HEAP32[$462>>2]|0; - $464 = (_i64Add(($453|0),($456|0),($145|0),($146|0))|0); - $465 = tempRet0; - $466 = (_i64Add(($464|0),($465|0),($460|0),($463|0))|0); - $467 = tempRet0; - $468 = (_i64Add(($466|0),($467|0),($447|0),($448|0))|0); - $469 = tempRet0; - $470 = (_i64Add(($468|0),($469|0),($441|0),($442|0))|0); - $471 = tempRet0; - $472 = (_bitshift64Shl(($419|0),($420|0),36)|0); - $473 = tempRet0; - $474 = (_bitshift64Lshr(($419|0),($420|0),28)|0); - $475 = tempRet0; - $476 = $472 | $474; - $477 = $473 | $475; - $478 = (_bitshift64Shl(($419|0),($420|0),30)|0); - $479 = tempRet0; - $480 = (_bitshift64Lshr(($419|0),($420|0),34)|0); - $481 = tempRet0; - $482 = $478 | $480; - $483 = $479 | $481; - $484 = $476 ^ $482; - $485 = $477 ^ $483; - $486 = (_bitshift64Shl(($419|0),($420|0),25)|0); - $487 = tempRet0; - $488 = (_bitshift64Lshr(($419|0),($420|0),39)|0); - $489 = tempRet0; - $490 = $486 | $488; - $491 = $487 | $489; - $492 = $484 ^ $490; - $493 = $485 ^ $491; - $494 = $419 & $332; - $495 = $420 & $333; - $496 = $419 | $332; - $497 = $420 | $333; - $498 = $496 & $245; - $499 = $497 & $246; - $500 = $498 | $494; - $501 = $499 | $495; - $502 = (_i64Add(($492|0),($493|0),($500|0),($501|0))|0); - $503 = tempRet0; - $504 = (_i64Add(($470|0),($471|0),($203|0),($204|0))|0); - $505 = tempRet0; - $506 = (_i64Add(($502|0),($503|0),($470|0),($471|0))|0); - $507 = tempRet0; - $508 = (_bitshift64Shl(($504|0),($505|0),50)|0); - $509 = tempRet0; - $510 = (_bitshift64Lshr(($504|0),($505|0),14)|0); - $511 = tempRet0; - $512 = $508 | $510; - $513 = $509 | $511; - $514 = (_bitshift64Shl(($504|0),($505|0),46)|0); - $515 = tempRet0; - $516 = (_bitshift64Lshr(($504|0),($505|0),18)|0); - $517 = tempRet0; - $518 = $514 | $516; - $519 = $515 | $517; - $520 = $512 ^ $518; - $521 = $513 ^ $519; - $522 = (_bitshift64Shl(($504|0),($505|0),23)|0); - $523 = tempRet0; - $524 = (_bitshift64Lshr(($504|0),($505|0),41)|0); - $525 = tempRet0; - $526 = $522 | $524; - $527 = $523 | $525; - $528 = $520 ^ $526; - $529 = $521 ^ $527; - $530 = $417 ^ $330; - $531 = $418 ^ $331; - $532 = $504 & $530; - $533 = $505 & $531; - $534 = $532 ^ $330; - $535 = $533 ^ $331; - $536 = $i$29 | 4; - $537 = (72 + ($536<<3)|0); - $538 = $537; - $539 = $538; - $540 = HEAP32[$539>>2]|0; - $541 = (($538) + 4)|0; + $464 = (($461) + 4)|0; + $465 = $464; + $466 = HEAP32[$465>>2]|0; + $467 = (_i64Add(($456|0),($459|0),($148|0),($149|0))|0); + $468 = tempRet0; + $469 = (_i64Add(($467|0),($468|0),($463|0),($466|0))|0); + $470 = tempRet0; + $471 = (_i64Add(($469|0),($470|0),($450|0),($451|0))|0); + $472 = tempRet0; + $473 = (_i64Add(($471|0),($472|0),($444|0),($445|0))|0); + $474 = tempRet0; + $475 = (_bitshift64Shl(($422|0),($423|0),36)|0); + $476 = tempRet0; + $477 = (_bitshift64Lshr(($422|0),($423|0),28)|0); + $478 = tempRet0; + $479 = $475 | $477; + $480 = $476 | $478; + $481 = (_bitshift64Shl(($422|0),($423|0),30)|0); + $482 = tempRet0; + $483 = (_bitshift64Lshr(($422|0),($423|0),34)|0); + $484 = tempRet0; + $485 = $481 | $483; + $486 = $482 | $484; + $487 = $479 ^ $485; + $488 = $480 ^ $486; + $489 = (_bitshift64Shl(($422|0),($423|0),25)|0); + $490 = tempRet0; + $491 = (_bitshift64Lshr(($422|0),($423|0),39)|0); + $492 = tempRet0; + $493 = $489 | $491; + $494 = $490 | $492; + $495 = $487 ^ $493; + $496 = $488 ^ $494; + $497 = $422 & $335; + $498 = $423 & $336; + $499 = $422 | $335; + $500 = $423 | $336; + $501 = $499 & $248; + $502 = $500 & $249; + $503 = $501 | $497; + $504 = $502 | $498; + $505 = (_i64Add(($495|0),($496|0),($503|0),($504|0))|0); + $506 = tempRet0; + $507 = (_i64Add(($473|0),($474|0),($206|0),($207|0))|0); + $508 = tempRet0; + $509 = (_i64Add(($505|0),($506|0),($473|0),($474|0))|0); + $510 = tempRet0; + $511 = (_bitshift64Shl(($507|0),($508|0),50)|0); + $512 = tempRet0; + $513 = (_bitshift64Lshr(($507|0),($508|0),14)|0); + $514 = tempRet0; + $515 = $511 | $513; + $516 = $512 | $514; + $517 = (_bitshift64Shl(($507|0),($508|0),46)|0); + $518 = tempRet0; + $519 = (_bitshift64Lshr(($507|0),($508|0),18)|0); + $520 = tempRet0; + $521 = $517 | $519; + $522 = $518 | $520; + $523 = $515 ^ $521; + $524 = $516 ^ $522; + $525 = (_bitshift64Shl(($507|0),($508|0),23)|0); + $526 = tempRet0; + $527 = (_bitshift64Lshr(($507|0),($508|0),41)|0); + $528 = tempRet0; + $529 = $525 | $527; + $530 = $526 | $528; + $531 = $523 ^ $529; + $532 = $524 ^ $530; + $533 = $420 ^ $333; + $534 = $421 ^ $334; + $535 = $507 & $533; + $536 = $508 & $534; + $537 = $535 ^ $333; + $538 = $536 ^ $334; + $539 = $$2342 | 4; + $540 = (72 + ($539<<3)|0); + $541 = $540; $542 = $541; $543 = HEAP32[$542>>2]|0; - $544 = (($W) + ($536<<3)|0); + $544 = (($541) + 4)|0; $545 = $544; - $546 = $545; - $547 = HEAP32[$546>>2]|0; - $548 = (($545) + 4)|0; + $546 = HEAP32[$545>>2]|0; + $547 = (($2) + ($539<<3)|0); + $548 = $547; $549 = $548; $550 = HEAP32[$549>>2]|0; - $551 = (_i64Add(($540|0),($543|0),($243|0),($244|0))|0); - $552 = tempRet0; - $553 = (_i64Add(($551|0),($552|0),($547|0),($550|0))|0); - $554 = tempRet0; - $555 = (_i64Add(($553|0),($554|0),($534|0),($535|0))|0); - $556 = tempRet0; - $557 = (_i64Add(($555|0),($556|0),($528|0),($529|0))|0); - $558 = tempRet0; - $559 = (_bitshift64Shl(($506|0),($507|0),36)|0); - $560 = tempRet0; - $561 = (_bitshift64Lshr(($506|0),($507|0),28)|0); - $562 = tempRet0; - $563 = $559 | $561; - $564 = $560 | $562; - $565 = (_bitshift64Shl(($506|0),($507|0),30)|0); - $566 = tempRet0; - $567 = (_bitshift64Lshr(($506|0),($507|0),34)|0); - $568 = tempRet0; - $569 = $565 | $567; - $570 = $566 | $568; - $571 = $563 ^ $569; - $572 = $564 ^ $570; - $573 = (_bitshift64Shl(($506|0),($507|0),25)|0); - $574 = tempRet0; - $575 = (_bitshift64Lshr(($506|0),($507|0),39)|0); - $576 = tempRet0; - $577 = $573 | $575; - $578 = $574 | $576; - $579 = $571 ^ $577; - $580 = $572 ^ $578; - $581 = $506 & $419; - $582 = $507 & $420; - $583 = $506 | $419; - $584 = $507 | $420; - $585 = $583 & $332; - $586 = $584 & $333; - $587 = $585 | $581; - $588 = $586 | $582; - $589 = (_i64Add(($579|0),($580|0),($587|0),($588|0))|0); - $590 = tempRet0; - $591 = (_i64Add(($557|0),($558|0),($245|0),($246|0))|0); - $592 = tempRet0; - $593 = (_i64Add(($589|0),($590|0),($557|0),($558|0))|0); - $594 = tempRet0; - $595 = (_bitshift64Shl(($591|0),($592|0),50)|0); - $596 = tempRet0; - $597 = (_bitshift64Lshr(($591|0),($592|0),14)|0); - $598 = tempRet0; - $599 = $595 | $597; - $600 = $596 | $598; - $601 = (_bitshift64Shl(($591|0),($592|0),46)|0); - $602 = tempRet0; - $603 = (_bitshift64Lshr(($591|0),($592|0),18)|0); - $604 = tempRet0; - $605 = $601 | $603; - $606 = $602 | $604; - $607 = $599 ^ $605; - $608 = $600 ^ $606; - $609 = (_bitshift64Shl(($591|0),($592|0),23)|0); - $610 = tempRet0; - $611 = (_bitshift64Lshr(($591|0),($592|0),41)|0); - $612 = tempRet0; - $613 = $609 | $611; - $614 = $610 | $612; - $615 = $607 ^ $613; - $616 = $608 ^ $614; - $617 = $504 ^ $417; - $618 = $505 ^ $418; - $619 = $591 & $617; - $620 = $592 & $618; - $621 = $619 ^ $417; - $622 = $620 ^ $418; - $623 = $i$29 | 5; - $624 = (72 + ($623<<3)|0); - $625 = $624; - $626 = $625; - $627 = HEAP32[$626>>2]|0; - $628 = (($625) + 4)|0; + $551 = (($548) + 4)|0; + $552 = $551; + $553 = HEAP32[$552>>2]|0; + $554 = (_i64Add(($543|0),($546|0),($246|0),($247|0))|0); + $555 = tempRet0; + $556 = (_i64Add(($554|0),($555|0),($550|0),($553|0))|0); + $557 = tempRet0; + $558 = (_i64Add(($556|0),($557|0),($537|0),($538|0))|0); + $559 = tempRet0; + $560 = (_i64Add(($558|0),($559|0),($531|0),($532|0))|0); + $561 = tempRet0; + $562 = (_bitshift64Shl(($509|0),($510|0),36)|0); + $563 = tempRet0; + $564 = (_bitshift64Lshr(($509|0),($510|0),28)|0); + $565 = tempRet0; + $566 = $562 | $564; + $567 = $563 | $565; + $568 = (_bitshift64Shl(($509|0),($510|0),30)|0); + $569 = tempRet0; + $570 = (_bitshift64Lshr(($509|0),($510|0),34)|0); + $571 = tempRet0; + $572 = $568 | $570; + $573 = $569 | $571; + $574 = $566 ^ $572; + $575 = $567 ^ $573; + $576 = (_bitshift64Shl(($509|0),($510|0),25)|0); + $577 = tempRet0; + $578 = (_bitshift64Lshr(($509|0),($510|0),39)|0); + $579 = tempRet0; + $580 = $576 | $578; + $581 = $577 | $579; + $582 = $574 ^ $580; + $583 = $575 ^ $581; + $584 = $509 & $422; + $585 = $510 & $423; + $586 = $509 | $422; + $587 = $510 | $423; + $588 = $586 & $335; + $589 = $587 & $336; + $590 = $588 | $584; + $591 = $589 | $585; + $592 = (_i64Add(($582|0),($583|0),($590|0),($591|0))|0); + $593 = tempRet0; + $594 = (_i64Add(($560|0),($561|0),($248|0),($249|0))|0); + $595 = tempRet0; + $596 = (_i64Add(($592|0),($593|0),($560|0),($561|0))|0); + $597 = tempRet0; + $598 = (_bitshift64Shl(($594|0),($595|0),50)|0); + $599 = tempRet0; + $600 = (_bitshift64Lshr(($594|0),($595|0),14)|0); + $601 = tempRet0; + $602 = $598 | $600; + $603 = $599 | $601; + $604 = (_bitshift64Shl(($594|0),($595|0),46)|0); + $605 = tempRet0; + $606 = (_bitshift64Lshr(($594|0),($595|0),18)|0); + $607 = tempRet0; + $608 = $604 | $606; + $609 = $605 | $607; + $610 = $602 ^ $608; + $611 = $603 ^ $609; + $612 = (_bitshift64Shl(($594|0),($595|0),23)|0); + $613 = tempRet0; + $614 = (_bitshift64Lshr(($594|0),($595|0),41)|0); + $615 = tempRet0; + $616 = $612 | $614; + $617 = $613 | $615; + $618 = $610 ^ $616; + $619 = $611 ^ $617; + $620 = $507 ^ $420; + $621 = $508 ^ $421; + $622 = $594 & $620; + $623 = $595 & $621; + $624 = $622 ^ $420; + $625 = $623 ^ $421; + $626 = $$2342 | 5; + $627 = (72 + ($626<<3)|0); + $628 = $627; $629 = $628; $630 = HEAP32[$629>>2]|0; - $631 = (($W) + ($623<<3)|0); + $631 = (($628) + 4)|0; $632 = $631; - $633 = $632; - $634 = HEAP32[$633>>2]|0; - $635 = (($632) + 4)|0; + $633 = HEAP32[$632>>2]|0; + $634 = (($2) + ($626<<3)|0); + $635 = $634; $636 = $635; $637 = HEAP32[$636>>2]|0; - $638 = (_i64Add(($634|0),($637|0),($627|0),($630|0))|0); - $639 = tempRet0; - $640 = (_i64Add(($638|0),($639|0),($330|0),($331|0))|0); - $641 = tempRet0; - $642 = (_i64Add(($640|0),($641|0),($621|0),($622|0))|0); - $643 = tempRet0; - $644 = (_i64Add(($642|0),($643|0),($615|0),($616|0))|0); - $645 = tempRet0; - $646 = (_bitshift64Shl(($593|0),($594|0),36)|0); - $647 = tempRet0; - $648 = (_bitshift64Lshr(($593|0),($594|0),28)|0); - $649 = tempRet0; - $650 = $646 | $648; - $651 = $647 | $649; - $652 = (_bitshift64Shl(($593|0),($594|0),30)|0); - $653 = tempRet0; - $654 = (_bitshift64Lshr(($593|0),($594|0),34)|0); - $655 = tempRet0; - $656 = $652 | $654; - $657 = $653 | $655; - $658 = $650 ^ $656; - $659 = $651 ^ $657; - $660 = (_bitshift64Shl(($593|0),($594|0),25)|0); - $661 = tempRet0; - $662 = (_bitshift64Lshr(($593|0),($594|0),39)|0); - $663 = tempRet0; - $664 = $660 | $662; - $665 = $661 | $663; - $666 = $658 ^ $664; - $667 = $659 ^ $665; - $668 = $593 & $506; - $669 = $594 & $507; - $670 = $593 | $506; - $671 = $594 | $507; - $672 = $670 & $419; - $673 = $671 & $420; - $674 = $672 | $668; - $675 = $673 | $669; - $676 = (_i64Add(($666|0),($667|0),($674|0),($675|0))|0); - $677 = tempRet0; - $678 = (_i64Add(($644|0),($645|0),($332|0),($333|0))|0); - $679 = tempRet0; - $680 = (_i64Add(($676|0),($677|0),($644|0),($645|0))|0); - $681 = tempRet0; - $682 = (_bitshift64Shl(($678|0),($679|0),50)|0); - $683 = tempRet0; - $684 = (_bitshift64Lshr(($678|0),($679|0),14)|0); - $685 = tempRet0; - $686 = $682 | $684; - $687 = $683 | $685; - $688 = (_bitshift64Shl(($678|0),($679|0),46)|0); - $689 = tempRet0; - $690 = (_bitshift64Lshr(($678|0),($679|0),18)|0); - $691 = tempRet0; - $692 = $688 | $690; - $693 = $689 | $691; - $694 = $686 ^ $692; - $695 = $687 ^ $693; - $696 = (_bitshift64Shl(($678|0),($679|0),23)|0); - $697 = tempRet0; - $698 = (_bitshift64Lshr(($678|0),($679|0),41)|0); - $699 = tempRet0; - $700 = $696 | $698; - $701 = $697 | $699; - $702 = $694 ^ $700; - $703 = $695 ^ $701; - $704 = $591 ^ $504; - $705 = $592 ^ $505; - $706 = $678 & $704; - $707 = $679 & $705; - $708 = $706 ^ $504; - $709 = $707 ^ $505; - $710 = $i$29 | 6; - $711 = (72 + ($710<<3)|0); - $712 = $711; - $713 = $712; - $714 = HEAP32[$713>>2]|0; - $715 = (($712) + 4)|0; + $638 = (($635) + 4)|0; + $639 = $638; + $640 = HEAP32[$639>>2]|0; + $641 = (_i64Add(($637|0),($640|0),($630|0),($633|0))|0); + $642 = tempRet0; + $643 = (_i64Add(($641|0),($642|0),($333|0),($334|0))|0); + $644 = tempRet0; + $645 = (_i64Add(($643|0),($644|0),($624|0),($625|0))|0); + $646 = tempRet0; + $647 = (_i64Add(($645|0),($646|0),($618|0),($619|0))|0); + $648 = tempRet0; + $649 = (_bitshift64Shl(($596|0),($597|0),36)|0); + $650 = tempRet0; + $651 = (_bitshift64Lshr(($596|0),($597|0),28)|0); + $652 = tempRet0; + $653 = $649 | $651; + $654 = $650 | $652; + $655 = (_bitshift64Shl(($596|0),($597|0),30)|0); + $656 = tempRet0; + $657 = (_bitshift64Lshr(($596|0),($597|0),34)|0); + $658 = tempRet0; + $659 = $655 | $657; + $660 = $656 | $658; + $661 = $653 ^ $659; + $662 = $654 ^ $660; + $663 = (_bitshift64Shl(($596|0),($597|0),25)|0); + $664 = tempRet0; + $665 = (_bitshift64Lshr(($596|0),($597|0),39)|0); + $666 = tempRet0; + $667 = $663 | $665; + $668 = $664 | $666; + $669 = $661 ^ $667; + $670 = $662 ^ $668; + $671 = $596 & $509; + $672 = $597 & $510; + $673 = $596 | $509; + $674 = $597 | $510; + $675 = $673 & $422; + $676 = $674 & $423; + $677 = $675 | $671; + $678 = $676 | $672; + $679 = (_i64Add(($669|0),($670|0),($677|0),($678|0))|0); + $680 = tempRet0; + $681 = (_i64Add(($647|0),($648|0),($335|0),($336|0))|0); + $682 = tempRet0; + $683 = (_i64Add(($679|0),($680|0),($647|0),($648|0))|0); + $684 = tempRet0; + $685 = (_bitshift64Shl(($681|0),($682|0),50)|0); + $686 = tempRet0; + $687 = (_bitshift64Lshr(($681|0),($682|0),14)|0); + $688 = tempRet0; + $689 = $685 | $687; + $690 = $686 | $688; + $691 = (_bitshift64Shl(($681|0),($682|0),46)|0); + $692 = tempRet0; + $693 = (_bitshift64Lshr(($681|0),($682|0),18)|0); + $694 = tempRet0; + $695 = $691 | $693; + $696 = $692 | $694; + $697 = $689 ^ $695; + $698 = $690 ^ $696; + $699 = (_bitshift64Shl(($681|0),($682|0),23)|0); + $700 = tempRet0; + $701 = (_bitshift64Lshr(($681|0),($682|0),41)|0); + $702 = tempRet0; + $703 = $699 | $701; + $704 = $700 | $702; + $705 = $697 ^ $703; + $706 = $698 ^ $704; + $707 = $594 ^ $507; + $708 = $595 ^ $508; + $709 = $681 & $707; + $710 = $682 & $708; + $711 = $709 ^ $507; + $712 = $710 ^ $508; + $713 = $$2342 | 6; + $714 = (72 + ($713<<3)|0); + $715 = $714; $716 = $715; $717 = HEAP32[$716>>2]|0; - $718 = (($W) + ($710<<3)|0); + $718 = (($715) + 4)|0; $719 = $718; - $720 = $719; - $721 = HEAP32[$720>>2]|0; - $722 = (($719) + 4)|0; + $720 = HEAP32[$719>>2]|0; + $721 = (($2) + ($713<<3)|0); + $722 = $721; $723 = $722; $724 = HEAP32[$723>>2]|0; - $725 = (_i64Add(($721|0),($724|0),($714|0),($717|0))|0); - $726 = tempRet0; - $727 = (_i64Add(($725|0),($726|0),($417|0),($418|0))|0); - $728 = tempRet0; - $729 = (_i64Add(($727|0),($728|0),($708|0),($709|0))|0); - $730 = tempRet0; - $731 = (_i64Add(($729|0),($730|0),($702|0),($703|0))|0); - $732 = tempRet0; - $733 = (_bitshift64Shl(($680|0),($681|0),36)|0); - $734 = tempRet0; - $735 = (_bitshift64Lshr(($680|0),($681|0),28)|0); - $736 = tempRet0; - $737 = $733 | $735; - $738 = $734 | $736; - $739 = (_bitshift64Shl(($680|0),($681|0),30)|0); - $740 = tempRet0; - $741 = (_bitshift64Lshr(($680|0),($681|0),34)|0); - $742 = tempRet0; - $743 = $739 | $741; - $744 = $740 | $742; - $745 = $737 ^ $743; - $746 = $738 ^ $744; - $747 = (_bitshift64Shl(($680|0),($681|0),25)|0); - $748 = tempRet0; - $749 = (_bitshift64Lshr(($680|0),($681|0),39)|0); - $750 = tempRet0; - $751 = $747 | $749; - $752 = $748 | $750; - $753 = $745 ^ $751; - $754 = $746 ^ $752; - $755 = $680 & $593; - $756 = $681 & $594; - $757 = $680 | $593; - $758 = $681 | $594; - $759 = $757 & $506; - $760 = $758 & $507; - $761 = $759 | $755; - $762 = $760 | $756; - $763 = (_i64Add(($753|0),($754|0),($761|0),($762|0))|0); - $764 = tempRet0; - $765 = (_i64Add(($731|0),($732|0),($419|0),($420|0))|0); - $766 = tempRet0; - $767 = (_i64Add(($763|0),($764|0),($731|0),($732|0))|0); - $768 = tempRet0; - $769 = (_bitshift64Shl(($765|0),($766|0),50)|0); - $770 = tempRet0; - $771 = (_bitshift64Lshr(($765|0),($766|0),14)|0); - $772 = tempRet0; - $773 = $769 | $771; - $774 = $770 | $772; - $775 = (_bitshift64Shl(($765|0),($766|0),46)|0); - $776 = tempRet0; - $777 = (_bitshift64Lshr(($765|0),($766|0),18)|0); - $778 = tempRet0; - $779 = $775 | $777; - $780 = $776 | $778; - $781 = $773 ^ $779; - $782 = $774 ^ $780; - $783 = (_bitshift64Shl(($765|0),($766|0),23)|0); - $784 = tempRet0; - $785 = (_bitshift64Lshr(($765|0),($766|0),41)|0); - $786 = tempRet0; - $787 = $783 | $785; - $788 = $784 | $786; - $789 = $781 ^ $787; - $790 = $782 ^ $788; - $791 = $678 ^ $591; - $792 = $679 ^ $592; - $793 = $765 & $791; - $794 = $766 & $792; - $795 = $793 ^ $591; - $796 = $794 ^ $592; - $797 = $i$29 | 7; - $798 = (72 + ($797<<3)|0); - $799 = $798; - $800 = $799; - $801 = HEAP32[$800>>2]|0; - $802 = (($799) + 4)|0; + $725 = (($722) + 4)|0; + $726 = $725; + $727 = HEAP32[$726>>2]|0; + $728 = (_i64Add(($724|0),($727|0),($717|0),($720|0))|0); + $729 = tempRet0; + $730 = (_i64Add(($728|0),($729|0),($420|0),($421|0))|0); + $731 = tempRet0; + $732 = (_i64Add(($730|0),($731|0),($711|0),($712|0))|0); + $733 = tempRet0; + $734 = (_i64Add(($732|0),($733|0),($705|0),($706|0))|0); + $735 = tempRet0; + $736 = (_bitshift64Shl(($683|0),($684|0),36)|0); + $737 = tempRet0; + $738 = (_bitshift64Lshr(($683|0),($684|0),28)|0); + $739 = tempRet0; + $740 = $736 | $738; + $741 = $737 | $739; + $742 = (_bitshift64Shl(($683|0),($684|0),30)|0); + $743 = tempRet0; + $744 = (_bitshift64Lshr(($683|0),($684|0),34)|0); + $745 = tempRet0; + $746 = $742 | $744; + $747 = $743 | $745; + $748 = $740 ^ $746; + $749 = $741 ^ $747; + $750 = (_bitshift64Shl(($683|0),($684|0),25)|0); + $751 = tempRet0; + $752 = (_bitshift64Lshr(($683|0),($684|0),39)|0); + $753 = tempRet0; + $754 = $750 | $752; + $755 = $751 | $753; + $756 = $748 ^ $754; + $757 = $749 ^ $755; + $758 = $683 & $596; + $759 = $684 & $597; + $760 = $683 | $596; + $761 = $684 | $597; + $762 = $760 & $509; + $763 = $761 & $510; + $764 = $762 | $758; + $765 = $763 | $759; + $766 = (_i64Add(($756|0),($757|0),($764|0),($765|0))|0); + $767 = tempRet0; + $768 = (_i64Add(($734|0),($735|0),($422|0),($423|0))|0); + $769 = tempRet0; + $770 = (_i64Add(($766|0),($767|0),($734|0),($735|0))|0); + $771 = tempRet0; + $772 = (_bitshift64Shl(($768|0),($769|0),50)|0); + $773 = tempRet0; + $774 = (_bitshift64Lshr(($768|0),($769|0),14)|0); + $775 = tempRet0; + $776 = $772 | $774; + $777 = $773 | $775; + $778 = (_bitshift64Shl(($768|0),($769|0),46)|0); + $779 = tempRet0; + $780 = (_bitshift64Lshr(($768|0),($769|0),18)|0); + $781 = tempRet0; + $782 = $778 | $780; + $783 = $779 | $781; + $784 = $776 ^ $782; + $785 = $777 ^ $783; + $786 = (_bitshift64Shl(($768|0),($769|0),23)|0); + $787 = tempRet0; + $788 = (_bitshift64Lshr(($768|0),($769|0),41)|0); + $789 = tempRet0; + $790 = $786 | $788; + $791 = $787 | $789; + $792 = $784 ^ $790; + $793 = $785 ^ $791; + $794 = $681 ^ $594; + $795 = $682 ^ $595; + $796 = $768 & $794; + $797 = $769 & $795; + $798 = $796 ^ $594; + $799 = $797 ^ $595; + $800 = $$2342 | 7; + $801 = (72 + ($800<<3)|0); + $802 = $801; $803 = $802; $804 = HEAP32[$803>>2]|0; - $805 = (($W) + ($797<<3)|0); + $805 = (($802) + 4)|0; $806 = $805; - $807 = $806; - $808 = HEAP32[$807>>2]|0; - $809 = (($806) + 4)|0; + $807 = HEAP32[$806>>2]|0; + $808 = (($2) + ($800<<3)|0); + $809 = $808; $810 = $809; $811 = HEAP32[$810>>2]|0; - $812 = (_i64Add(($808|0),($811|0),($801|0),($804|0))|0); - $813 = tempRet0; - $814 = (_i64Add(($812|0),($813|0),($504|0),($505|0))|0); - $815 = tempRet0; - $816 = (_i64Add(($814|0),($815|0),($795|0),($796|0))|0); - $817 = tempRet0; - $818 = (_i64Add(($816|0),($817|0),($789|0),($790|0))|0); - $819 = tempRet0; - $820 = (_bitshift64Shl(($767|0),($768|0),36)|0); - $821 = tempRet0; - $822 = (_bitshift64Lshr(($767|0),($768|0),28)|0); - $823 = tempRet0; - $824 = $820 | $822; - $825 = $821 | $823; - $826 = (_bitshift64Shl(($767|0),($768|0),30)|0); - $827 = tempRet0; - $828 = (_bitshift64Lshr(($767|0),($768|0),34)|0); - $829 = tempRet0; - $830 = $826 | $828; - $831 = $827 | $829; - $832 = $824 ^ $830; - $833 = $825 ^ $831; - $834 = (_bitshift64Shl(($767|0),($768|0),25)|0); - $835 = tempRet0; - $836 = (_bitshift64Lshr(($767|0),($768|0),39)|0); - $837 = tempRet0; - $838 = $834 | $836; - $839 = $835 | $837; - $840 = $832 ^ $838; - $841 = $833 ^ $839; - $842 = $767 & $680; - $843 = $768 & $681; - $844 = $767 | $680; - $845 = $768 | $681; - $846 = $844 & $593; - $847 = $845 & $594; - $848 = $846 | $842; - $849 = $847 | $843; - $850 = (_i64Add(($840|0),($841|0),($848|0),($849|0))|0); - $851 = tempRet0; - $852 = (_i64Add(($818|0),($819|0),($506|0),($507|0))|0); - $853 = tempRet0; - $854 = (_i64Add(($850|0),($851|0),($818|0),($819|0))|0); - $855 = tempRet0; - $856 = (($i$29) + 8)|0; - $857 = ($856|0)<(80); - if ($857) { - $145 = $852;$146 = $853;$170 = $765;$171 = $678;$173 = $766;$174 = $679;$193 = $591;$194 = $592;$203 = $854;$204 = $855;$228 = $767;$230 = $768;$234 = $680;$236 = $681;$241 = $593;$242 = $594;$i$29 = $856; + $812 = (($809) + 4)|0; + $813 = $812; + $814 = HEAP32[$813>>2]|0; + $815 = (_i64Add(($811|0),($814|0),($804|0),($807|0))|0); + $816 = tempRet0; + $817 = (_i64Add(($815|0),($816|0),($507|0),($508|0))|0); + $818 = tempRet0; + $819 = (_i64Add(($817|0),($818|0),($798|0),($799|0))|0); + $820 = tempRet0; + $821 = (_i64Add(($819|0),($820|0),($792|0),($793|0))|0); + $822 = tempRet0; + $823 = (_bitshift64Shl(($770|0),($771|0),36)|0); + $824 = tempRet0; + $825 = (_bitshift64Lshr(($770|0),($771|0),28)|0); + $826 = tempRet0; + $827 = $823 | $825; + $828 = $824 | $826; + $829 = (_bitshift64Shl(($770|0),($771|0),30)|0); + $830 = tempRet0; + $831 = (_bitshift64Lshr(($770|0),($771|0),34)|0); + $832 = tempRet0; + $833 = $829 | $831; + $834 = $830 | $832; + $835 = $827 ^ $833; + $836 = $828 ^ $834; + $837 = (_bitshift64Shl(($770|0),($771|0),25)|0); + $838 = tempRet0; + $839 = (_bitshift64Lshr(($770|0),($771|0),39)|0); + $840 = tempRet0; + $841 = $837 | $839; + $842 = $838 | $840; + $843 = $835 ^ $841; + $844 = $836 ^ $842; + $845 = $770 & $683; + $846 = $771 & $684; + $847 = $770 | $683; + $848 = $771 | $684; + $849 = $847 & $596; + $850 = $848 & $597; + $851 = $849 | $845; + $852 = $850 | $846; + $853 = (_i64Add(($843|0),($844|0),($851|0),($852|0))|0); + $854 = tempRet0; + $855 = (_i64Add(($821|0),($822|0),($509|0),($510|0))|0); + $856 = tempRet0; + $857 = (_i64Add(($853|0),($854|0),($821|0),($822|0))|0); + $858 = tempRet0; + $859 = (($$2342) + 8)|0; + $860 = ($859|0)<(80); + if ($860) { + $$2342 = $859;$148 = $855;$149 = $856;$173 = $768;$174 = $681;$176 = $769;$177 = $682;$196 = $594;$197 = $595;$206 = $857;$207 = $858;$231 = $770;$233 = $771;$237 = $683;$239 = $684;$244 = $596;$245 = $597; } else { - $864 = $854;$865 = $855;$878 = $767;$879 = $768;$892 = $680;$893 = $681;$906 = $593;$907 = $594;$920 = $852;$921 = $853;$934 = $765;$935 = $766;$948 = $678;$949 = $679;$962 = $591;$963 = $592; break; } } - $858 = $r; - $859 = $858; - $860 = HEAP32[$859>>2]|0; - $861 = (($858) + 4)|0; - $862 = $861; - $863 = HEAP32[$862>>2]|0; - $866 = (_i64Add(($860|0),($863|0),($864|0),($865|0))|0); - $867 = tempRet0; - $868 = $r; - $869 = $868; - HEAP32[$869>>2] = $866; - $870 = (($868) + 4)|0; - $871 = $870; - HEAP32[$871>>2] = $867; - $872 = $96; - $873 = $872; - $874 = HEAP32[$873>>2]|0; - $875 = (($872) + 4)|0; + $861 = (_i64Add(($857|0),($858|0),($95|0),($98|0))|0); + $862 = tempRet0; + $863 = $1; + $864 = $863; + HEAP32[$864>>2] = $861; + $865 = (($863) + 4)|0; + $866 = $865; + HEAP32[$866>>2] = $862; + $867 = (_i64Add(($770|0),($771|0),($102|0),($105|0))|0); + $868 = tempRet0; + $869 = $99; + $870 = $869; + HEAP32[$870>>2] = $867; + $871 = (($869) + 4)|0; + $872 = $871; + HEAP32[$872>>2] = $868; + $873 = (_i64Add(($683|0),($684|0),($109|0),($112|0))|0); + $874 = tempRet0; + $875 = $106; $876 = $875; - $877 = HEAP32[$876>>2]|0; - $880 = (_i64Add(($874|0),($877|0),($878|0),($879|0))|0); - $881 = tempRet0; - $882 = $96; - $883 = $882; - HEAP32[$883>>2] = $880; - $884 = (($882) + 4)|0; - $885 = $884; - HEAP32[$885>>2] = $881; - $886 = $103; - $887 = $886; - $888 = HEAP32[$887>>2]|0; - $889 = (($886) + 4)|0; + HEAP32[$876>>2] = $873; + $877 = (($875) + 4)|0; + $878 = $877; + HEAP32[$878>>2] = $874; + $879 = (_i64Add(($596|0),($597|0),($116|0),($119|0))|0); + $880 = tempRet0; + $881 = $113; + $882 = $881; + HEAP32[$882>>2] = $879; + $883 = (($881) + 4)|0; + $884 = $883; + HEAP32[$884>>2] = $880; + $885 = (_i64Add(($855|0),($856|0),($123|0),($126|0))|0); + $886 = tempRet0; + $887 = $120; + $888 = $887; + HEAP32[$888>>2] = $885; + $889 = (($887) + 4)|0; $890 = $889; - $891 = HEAP32[$890>>2]|0; - $894 = (_i64Add(($888|0),($891|0),($892|0),($893|0))|0); - $895 = tempRet0; - $896 = $103; - $897 = $896; - HEAP32[$897>>2] = $894; - $898 = (($896) + 4)|0; - $899 = $898; - HEAP32[$899>>2] = $895; - $900 = $110; - $901 = $900; - $902 = HEAP32[$901>>2]|0; - $903 = (($900) + 4)|0; - $904 = $903; - $905 = HEAP32[$904>>2]|0; - $908 = (_i64Add(($902|0),($905|0),($906|0),($907|0))|0); - $909 = tempRet0; - $910 = $110; - $911 = $910; - HEAP32[$911>>2] = $908; - $912 = (($910) + 4)|0; - $913 = $912; - HEAP32[$913>>2] = $909; - $914 = $117; - $915 = $914; - $916 = HEAP32[$915>>2]|0; - $917 = (($914) + 4)|0; - $918 = $917; - $919 = HEAP32[$918>>2]|0; - $922 = (_i64Add(($916|0),($919|0),($920|0),($921|0))|0); - $923 = tempRet0; - $924 = $117; - $925 = $924; - HEAP32[$925>>2] = $922; - $926 = (($924) + 4)|0; - $927 = $926; - HEAP32[$927>>2] = $923; - $928 = $124; - $929 = $928; - $930 = HEAP32[$929>>2]|0; - $931 = (($928) + 4)|0; - $932 = $931; - $933 = HEAP32[$932>>2]|0; - $936 = (_i64Add(($930|0),($933|0),($934|0),($935|0))|0); - $937 = tempRet0; - $938 = $124; - $939 = $938; - HEAP32[$939>>2] = $936; - $940 = (($938) + 4)|0; - $941 = $940; - HEAP32[$941>>2] = $937; - $942 = $131; - $943 = $942; - $944 = HEAP32[$943>>2]|0; - $945 = (($942) + 4)|0; - $946 = $945; - $947 = HEAP32[$946>>2]|0; - $950 = (_i64Add(($944|0),($947|0),($948|0),($949|0))|0); - $951 = tempRet0; - $952 = $131; - $953 = $952; - HEAP32[$953>>2] = $950; - $954 = (($952) + 4)|0; - $955 = $954; - HEAP32[$955>>2] = $951; - $956 = $138; - $957 = $956; - $958 = HEAP32[$957>>2]|0; - $959 = (($956) + 4)|0; - $960 = $959; - $961 = HEAP32[$960>>2]|0; - $964 = (_i64Add(($958|0),($961|0),($962|0),($963|0))|0); - $965 = tempRet0; - $966 = $138; - $967 = $966; - HEAP32[$967>>2] = $964; - $968 = (($966) + 4)|0; - $969 = $968; - HEAP32[$969>>2] = $965; + HEAP32[$890>>2] = $886; + $891 = (_i64Add(($768|0),($769|0),($130|0),($133|0))|0); + $892 = tempRet0; + $893 = $127; + $894 = $893; + HEAP32[$894>>2] = $891; + $895 = (($893) + 4)|0; + $896 = $895; + HEAP32[$896>>2] = $892; + $897 = (_i64Add(($681|0),($682|0),($137|0),($140|0))|0); + $898 = tempRet0; + $899 = $134; + $900 = $899; + HEAP32[$900>>2] = $897; + $901 = (($899) + 4)|0; + $902 = $901; + HEAP32[$902>>2] = $898; + $903 = (_i64Add(($594|0),($595|0),($144|0),($147|0))|0); + $904 = tempRet0; + $905 = $141; + $906 = $905; + HEAP32[$906>>2] = $903; + $907 = (($905) + 4)|0; + $908 = $907; + HEAP32[$908>>2] = $904; STACKTOP = sp;return; } -function _sha384_close($cc,$dst,$rnum) { - $cc = $cc|0; - $dst = $dst|0; - $rnum = $rnum|0; +function _sph_dec64be_aligned($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0; + var $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0; + var $46 = 0, $47 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = (_bitshift64Shl(($2|0),0,56)|0); + $4 = tempRet0; + $5 = ((($0)) + 1|0); + $6 = HEAP8[$5>>0]|0; + $7 = $6&255; + $8 = (_bitshift64Shl(($7|0),0,48)|0); + $9 = tempRet0; + $10 = $8 | $3; + $11 = $9 | $4; + $12 = ((($0)) + 2|0); + $13 = HEAP8[$12>>0]|0; + $14 = $13&255; + $15 = (_bitshift64Shl(($14|0),0,40)|0); + $16 = tempRet0; + $17 = $10 | $15; + $18 = $11 | $16; + $19 = ((($0)) + 3|0); + $20 = HEAP8[$19>>0]|0; + $21 = $20&255; + $22 = $18 | $21; + $23 = ((($0)) + 4|0); + $24 = HEAP8[$23>>0]|0; + $25 = $24&255; + $26 = (_bitshift64Shl(($25|0),0,24)|0); + $27 = tempRet0; + $28 = $17 | $26; + $29 = $22 | $27; + $30 = ((($0)) + 5|0); + $31 = HEAP8[$30>>0]|0; + $32 = $31&255; + $33 = (_bitshift64Shl(($32|0),0,16)|0); + $34 = tempRet0; + $35 = $28 | $33; + $36 = $29 | $34; + $37 = ((($0)) + 6|0); + $38 = HEAP8[$37>>0]|0; + $39 = $38&255; + $40 = (_bitshift64Shl(($39|0),0,8)|0); + $41 = tempRet0; + $42 = $35 | $40; + $43 = $36 | $41; + $44 = ((($0)) + 7|0); + $45 = HEAP8[$44>>0]|0; + $46 = $45&255; + $47 = $42 | $46; + tempRet0 = ($43); + return ($47|0); +} +function _sha384_close($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; var label = 0, sp = 0; sp = STACKTOP; - _sha384_addbits_and_close($cc,0,0,$dst,$rnum); + _sha384_addbits_and_close($0,0,0,$1,$2); return; } -function _sha384_addbits_and_close($cc,$ub,$n,$dst,$rnum) { - $cc = $cc|0; - $ub = $ub|0; - $n = $n|0; - $dst = $dst|0; - $rnum = $rnum|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; - var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $exitcond = 0, $u$01 = 0, dest = 0, label = 0, sp = 0, stop = 0; +function _sha384_addbits_and_close($0,$1,$2,$3,$4) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + $4 = $4|0; + var $$035 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0; + var $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $exitcond = 0, dest = 0, label = 0, sp = 0, stop = 0; sp = STACKTOP; - $0 = ((($cc)) + 192|0); - $1 = $0; - $2 = $1; - $3 = HEAP32[$2>>2]|0; - $4 = (($1) + 4)|0; - $5 = $4; - $6 = HEAP32[$5>>2]|0; - $7 = $3 & 127; - $8 = 128 >>> $n; - $9 = (0 - ($8))|0; - $10 = $9 & $ub; - $11 = $10 | $8; - $12 = $11&255; - $13 = (($7) + 1)|0; - $14 = (($cc) + ($7)|0); - HEAP8[$14>>0] = $12; - $15 = ($13>>>0)>(112); - $16 = (($cc) + ($13)|0); - if ($15) { - $17 = $7 ^ 127; - _memset(($16|0),0,($17|0))|0; - $18 = ((($cc)) + 128|0); - _sha3_round($cc,$18); - dest=$cc; stop=dest+112|0; do { HEAP8[dest>>0]=0|0; dest=dest+1|0; } while ((dest|0) < (stop|0)); + $5 = ((($0)) + 192|0); + $6 = $5; + $7 = $6; + $8 = HEAP32[$7>>2]|0; + $9 = (($6) + 4)|0; + $10 = $9; + $11 = HEAP32[$10>>2]|0; + $12 = $8 & 127; + $13 = 128 >>> $2; + $14 = (0 - ($13))|0; + $15 = $14 & $1; + $16 = $15 | $13; + $17 = $16&255; + $18 = (($12) + 1)|0; + $19 = (($0) + ($12)|0); + HEAP8[$19>>0] = $17; + $20 = ($18>>>0)>(112); + $21 = (($0) + ($18)|0); + if ($20) { + $22 = $12 ^ 127; + _memset(($21|0),0,($22|0))|0; + $23 = ((($0)) + 128|0); + _sha3_round($0,$23); + dest=$0; stop=dest+112|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); } else { - $19 = (111 - ($7))|0; - _memset(($16|0),0,($19|0))|0; + $24 = (111 - ($12))|0; + _memset(($21|0),0,($24|0))|0; } - $20 = ((($cc)) + 112|0); - $21 = $0; - $22 = $21; - $23 = HEAP32[$22>>2]|0; - $24 = (($21) + 4)|0; - $25 = $24; - $26 = HEAP32[$25>>2]|0; - $27 = (_bitshift64Lshr(($23|0),($26|0),61)|0); - $28 = tempRet0; - _sph_enc64be_aligned($20,$27,$28); - $29 = ((($cc)) + 120|0); - $30 = $0; - $31 = $30; - $32 = HEAP32[$31>>2]|0; - $33 = (($30) + 4)|0; - $34 = $33; - $35 = HEAP32[$34>>2]|0; - $36 = (_bitshift64Shl(($32|0),($35|0),3)|0); - $37 = tempRet0; - $38 = (_i64Add(($36|0),($37|0),($n|0),0)|0); - $39 = tempRet0; - _sph_enc64be_aligned($29,$38,$39); - $40 = ((($cc)) + 128|0); - _sha3_round($cc,$40); - $41 = ($rnum|0)==(0); - if ($41) { + $25 = ((($0)) + 112|0); + $26 = $5; + $27 = $26; + $28 = HEAP32[$27>>2]|0; + $29 = (($26) + 4)|0; + $30 = $29; + $31 = HEAP32[$30>>2]|0; + $32 = (_bitshift64Lshr(($28|0),($31|0),61)|0); + $33 = tempRet0; + _sph_enc64be_aligned($25,$32,$33); + $34 = ((($0)) + 120|0); + $35 = $5; + $36 = $35; + $37 = HEAP32[$36>>2]|0; + $38 = (($35) + 4)|0; + $39 = $38; + $40 = HEAP32[$39>>2]|0; + $41 = (_bitshift64Shl(($37|0),($40|0),3)|0); + $42 = tempRet0; + $43 = (_i64Add(($41|0),($42|0),($2|0),0)|0); + $44 = tempRet0; + _sph_enc64be_aligned($34,$43,$44); + $45 = ((($0)) + 128|0); + _sha3_round($0,$45); + $46 = ($4|0)==(0); + if ($46) { return; } else { - $u$01 = 0; + $$035 = 0; } while(1) { - $42 = $u$01 << 3; - $43 = (($dst) + ($42)|0); - $44 = (($40) + ($u$01<<3)|0); - $45 = $44; - $46 = $45; - $47 = HEAP32[$46>>2]|0; - $48 = (($45) + 4)|0; - $49 = $48; - $50 = HEAP32[$49>>2]|0; - _sph_enc64be($43,$47,$50); - $51 = (($u$01) + 1)|0; - $exitcond = ($51|0)==($rnum|0); + $47 = $$035 << 3; + $48 = (($3) + ($47)|0); + $49 = (($45) + ($$035<<3)|0); + $50 = $49; + $51 = $50; + $52 = HEAP32[$51>>2]|0; + $53 = (($50) + 4)|0; + $54 = $53; + $55 = HEAP32[$54>>2]|0; + _sph_enc64be($48,$52,$55); + $56 = (($$035) + 1)|0; + $exitcond = ($56|0)==($4|0); if ($exitcond) { break; } else { - $u$01 = $51; + $$035 = $56; } } return; } -function _sph_enc64be_aligned($dst,$0,$1) { - $dst = $dst|0; +function _sph_enc64be_aligned($0,$1,$2) { $0 = $0|0; $1 = $1|0; - var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0; var $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $2 = (_bitshift64Lshr(($0|0),($1|0),56)|0); - $3 = tempRet0; - $4 = $2&255; - HEAP8[$dst>>0] = $4; - $5 = (_bitshift64Lshr(($0|0),($1|0),48)|0); - $6 = tempRet0; - $7 = $5&255; - $8 = ((($dst)) + 1|0); - HEAP8[$8>>0] = $7; - $9 = (_bitshift64Lshr(($0|0),($1|0),40)|0); - $10 = tempRet0; - $11 = $9&255; - $12 = ((($dst)) + 2|0); - HEAP8[$12>>0] = $11; - $13 = $1&255; - $14 = ((($dst)) + 3|0); - HEAP8[$14>>0] = $13; - $15 = (_bitshift64Lshr(($0|0),($1|0),24)|0); - $16 = tempRet0; - $17 = $15&255; - $18 = ((($dst)) + 4|0); - HEAP8[$18>>0] = $17; - $19 = (_bitshift64Lshr(($0|0),($1|0),16)|0); - $20 = tempRet0; - $21 = $19&255; - $22 = ((($dst)) + 5|0); - HEAP8[$22>>0] = $21; - $23 = (_bitshift64Lshr(($0|0),($1|0),8)|0); - $24 = tempRet0; - $25 = $23&255; - $26 = ((($dst)) + 6|0); - HEAP8[$26>>0] = $25; - $27 = $0&255; - $28 = ((($dst)) + 7|0); - HEAP8[$28>>0] = $27; + $3 = (_bitshift64Lshr(($1|0),($2|0),56)|0); + $4 = tempRet0; + $5 = $3&255; + HEAP8[$0>>0] = $5; + $6 = (_bitshift64Lshr(($1|0),($2|0),48)|0); + $7 = tempRet0; + $8 = $6&255; + $9 = ((($0)) + 1|0); + HEAP8[$9>>0] = $8; + $10 = (_bitshift64Lshr(($1|0),($2|0),40)|0); + $11 = tempRet0; + $12 = $10&255; + $13 = ((($0)) + 2|0); + HEAP8[$13>>0] = $12; + $14 = $2&255; + $15 = ((($0)) + 3|0); + HEAP8[$15>>0] = $14; + $16 = (_bitshift64Lshr(($1|0),($2|0),24)|0); + $17 = tempRet0; + $18 = $16&255; + $19 = ((($0)) + 4|0); + HEAP8[$19>>0] = $18; + $20 = (_bitshift64Lshr(($1|0),($2|0),16)|0); + $21 = tempRet0; + $22 = $20&255; + $23 = ((($0)) + 5|0); + HEAP8[$23>>0] = $22; + $24 = (_bitshift64Lshr(($1|0),($2|0),8)|0); + $25 = tempRet0; + $26 = $24&255; + $27 = ((($0)) + 6|0); + HEAP8[$27>>0] = $26; + $28 = $1&255; + $29 = ((($0)) + 7|0); + HEAP8[$29>>0] = $28; return; } -function _sph_enc64be($dst,$0,$1) { - $dst = $dst|0; +function _sph_enc64be($0,$1,$2) { $0 = $0|0; $1 = $1|0; - var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0; var $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $2 = (_bitshift64Lshr(($0|0),($1|0),56)|0); - $3 = tempRet0; - $4 = $2&255; - HEAP8[$dst>>0] = $4; - $5 = (_bitshift64Lshr(($0|0),($1|0),48)|0); - $6 = tempRet0; - $7 = $5&255; - $8 = ((($dst)) + 1|0); - HEAP8[$8>>0] = $7; - $9 = (_bitshift64Lshr(($0|0),($1|0),40)|0); - $10 = tempRet0; - $11 = $9&255; - $12 = ((($dst)) + 2|0); - HEAP8[$12>>0] = $11; - $13 = $1&255; - $14 = ((($dst)) + 3|0); - HEAP8[$14>>0] = $13; - $15 = (_bitshift64Lshr(($0|0),($1|0),24)|0); - $16 = tempRet0; - $17 = $15&255; - $18 = ((($dst)) + 4|0); - HEAP8[$18>>0] = $17; - $19 = (_bitshift64Lshr(($0|0),($1|0),16)|0); - $20 = tempRet0; - $21 = $19&255; - $22 = ((($dst)) + 5|0); - HEAP8[$22>>0] = $21; - $23 = (_bitshift64Lshr(($0|0),($1|0),8)|0); - $24 = tempRet0; - $25 = $23&255; - $26 = ((($dst)) + 6|0); - HEAP8[$26>>0] = $25; - $27 = $0&255; - $28 = ((($dst)) + 7|0); - HEAP8[$28>>0] = $27; + $3 = (_bitshift64Lshr(($1|0),($2|0),56)|0); + $4 = tempRet0; + $5 = $3&255; + HEAP8[$0>>0] = $5; + $6 = (_bitshift64Lshr(($1|0),($2|0),48)|0); + $7 = tempRet0; + $8 = $6&255; + $9 = ((($0)) + 1|0); + HEAP8[$9>>0] = $8; + $10 = (_bitshift64Lshr(($1|0),($2|0),40)|0); + $11 = tempRet0; + $12 = $10&255; + $13 = ((($0)) + 2|0); + HEAP8[$13>>0] = $12; + $14 = $2&255; + $15 = ((($0)) + 3|0); + HEAP8[$15>>0] = $14; + $16 = (_bitshift64Lshr(($1|0),($2|0),24)|0); + $17 = tempRet0; + $18 = $16&255; + $19 = ((($0)) + 4|0); + HEAP8[$19>>0] = $18; + $20 = (_bitshift64Lshr(($1|0),($2|0),16)|0); + $21 = tempRet0; + $22 = $20&255; + $23 = ((($0)) + 5|0); + HEAP8[$23>>0] = $22; + $24 = (_bitshift64Lshr(($1|0),($2|0),8)|0); + $25 = tempRet0; + $26 = $24&255; + $27 = ((($0)) + 6|0); + HEAP8[$27>>0] = $26; + $28 = $1&255; + $29 = ((($0)) + 7|0); + HEAP8[$29>>0] = $28; return; } -function _sph_dec64be_aligned($src) { - $src = $src|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; - var $45 = 0, $46 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP8[$src>>0]|0; - $1 = $0&255; - $2 = (_bitshift64Shl(($1|0),0,56)|0); - $3 = tempRet0; - $4 = ((($src)) + 1|0); - $5 = HEAP8[$4>>0]|0; - $6 = $5&255; - $7 = (_bitshift64Shl(($6|0),0,48)|0); - $8 = tempRet0; - $9 = $7 | $2; - $10 = $8 | $3; - $11 = ((($src)) + 2|0); - $12 = HEAP8[$11>>0]|0; - $13 = $12&255; - $14 = (_bitshift64Shl(($13|0),0,40)|0); - $15 = tempRet0; - $16 = $9 | $14; - $17 = $10 | $15; - $18 = ((($src)) + 3|0); - $19 = HEAP8[$18>>0]|0; - $20 = $19&255; - $21 = $17 | $20; - $22 = ((($src)) + 4|0); - $23 = HEAP8[$22>>0]|0; - $24 = $23&255; - $25 = (_bitshift64Shl(($24|0),0,24)|0); - $26 = tempRet0; - $27 = $16 | $25; - $28 = $21 | $26; - $29 = ((($src)) + 5|0); - $30 = HEAP8[$29>>0]|0; - $31 = $30&255; - $32 = (_bitshift64Shl(($31|0),0,16)|0); - $33 = tempRet0; - $34 = $27 | $32; - $35 = $28 | $33; - $36 = ((($src)) + 6|0); - $37 = HEAP8[$36>>0]|0; - $38 = $37&255; - $39 = (_bitshift64Shl(($38|0),0,8)|0); - $40 = tempRet0; - $41 = $34 | $39; - $42 = $35 | $40; - $43 = ((($src)) + 7|0); - $44 = HEAP8[$43>>0]|0; - $45 = $44&255; - $46 = $41 | $45; - tempRet0 = ($42); - return ($46|0); -} -function ___errno_location() { - var $$0 = 0, $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP32[32512>>2]|0; - $1 = ($0|0)==(0|0); - if ($1) { - $$0 = 32560; - } else { - $2 = (_pthread_self()|0); - $3 = ((($2)) + 60|0); - $4 = HEAP32[$3>>2]|0; - $$0 = $4; - } - return ($$0|0); -} -function ___syscall_ret($r) { - $r = $r|0; - var $$0 = 0, $0 = 0, $1 = 0, $2 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = ($r>>>0)>(4294963200); - if ($0) { - $1 = (0 - ($r))|0; - $2 = (___errno_location()|0); - HEAP32[$2>>2] = $1; - $$0 = -1; - } else { - $$0 = $r; - } - return ($$0|0); -} -function ___lockfile($f) { - $f = $f|0; +function _sph_sha512_close($0,$1) { + $0 = $0|0; + $1 = $1|0; var label = 0, sp = 0; sp = STACKTOP; - return 0; + _sha384_close($0,$1,8); + _sph_sha512_init($0); + return; } -function ___unlockfile($f) { - $f = $f|0; +function _emscripten_get_global_libc() { var label = 0, sp = 0; sp = STACKTOP; - return; + return (32888|0); } -function ___stdio_close($f) { - $f = $f|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $vararg_buffer = 0, label = 0, sp = 0; +function ___stdio_close($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $vararg_buffer = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 16|0; $vararg_buffer = sp; - $0 = ((($f)) + 60|0); - $1 = HEAP32[$0>>2]|0; - HEAP32[$vararg_buffer>>2] = $1; - $2 = (___syscall6(6,($vararg_buffer|0))|0); - $3 = (___syscall_ret($2)|0); - STACKTOP = sp;return ($3|0); -} -function ___stdio_seek($f,$off,$whence) { - $f = $f|0; - $off = $off|0; - $whence = $whence|0; - var $$pre = 0, $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $ret = 0, $vararg_buffer = 0, $vararg_ptr1 = 0, $vararg_ptr2 = 0, $vararg_ptr3 = 0, $vararg_ptr4 = 0, label = 0, sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 32|0; - $vararg_buffer = sp; - $ret = sp + 20|0; - $0 = ((($f)) + 60|0); - $1 = HEAP32[$0>>2]|0; - HEAP32[$vararg_buffer>>2] = $1; - $vararg_ptr1 = ((($vararg_buffer)) + 4|0); - HEAP32[$vararg_ptr1>>2] = 0; - $vararg_ptr2 = ((($vararg_buffer)) + 8|0); - HEAP32[$vararg_ptr2>>2] = $off; - $vararg_ptr3 = ((($vararg_buffer)) + 12|0); - HEAP32[$vararg_ptr3>>2] = $ret; - $vararg_ptr4 = ((($vararg_buffer)) + 16|0); - HEAP32[$vararg_ptr4>>2] = $whence; - $2 = (___syscall140(140,($vararg_buffer|0))|0); - $3 = (___syscall_ret($2)|0); - $4 = ($3|0)<(0); - if ($4) { - HEAP32[$ret>>2] = -1; - $5 = -1; - } else { - $$pre = HEAP32[$ret>>2]|0; - $5 = $$pre; - } + $1 = ((($0)) + 60|0); + $2 = HEAP32[$1>>2]|0; + $3 = (_dummy_570($2)|0); + HEAP32[$vararg_buffer>>2] = $3; + $4 = (___syscall6(6,($vararg_buffer|0))|0); + $5 = (___syscall_ret($4)|0); STACKTOP = sp;return ($5|0); } -function ___stdio_write($f,$buf,$len) { - $f = $f|0; - $buf = $buf|0; - $len = $len|0; - var $$0 = 0, $$phi$trans$insert = 0, $$pre = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0; - var $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0; - var $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $cnt$0 = 0, $cnt$1 = 0, $iov$0 = 0, $iov$0$lcssa11 = 0, $iov$1 = 0, $iovcnt$0 = 0; - var $iovcnt$0$lcssa12 = 0, $iovcnt$1 = 0, $iovs = 0, $rem$0 = 0, $vararg_buffer = 0, $vararg_buffer3 = 0, $vararg_ptr1 = 0, $vararg_ptr2 = 0, $vararg_ptr6 = 0, $vararg_ptr7 = 0, label = 0, sp = 0; +function ___stdio_write($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $$0 = 0, $$04756 = 0, $$04855 = 0, $$04954 = 0, $$051 = 0, $$1 = 0, $$150 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0; + var $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0; + var $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $vararg_buffer = 0, $vararg_buffer3 = 0, $vararg_ptr1 = 0, $vararg_ptr2 = 0, $vararg_ptr6 = 0; + var $vararg_ptr7 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 48|0; $vararg_buffer3 = sp + 16|0; $vararg_buffer = sp; - $iovs = sp + 32|0; - $0 = ((($f)) + 28|0); - $1 = HEAP32[$0>>2]|0; - HEAP32[$iovs>>2] = $1; - $2 = ((($iovs)) + 4|0); - $3 = ((($f)) + 20|0); - $4 = HEAP32[$3>>2]|0; - $5 = $4; - $6 = (($5) - ($1))|0; - HEAP32[$2>>2] = $6; - $7 = ((($iovs)) + 8|0); - HEAP32[$7>>2] = $buf; - $8 = ((($iovs)) + 12|0); - HEAP32[$8>>2] = $len; - $9 = (($6) + ($len))|0; - $10 = ((($f)) + 60|0); - $11 = ((($f)) + 44|0); - $iov$0 = $iovs;$iovcnt$0 = 2;$rem$0 = $9; - while(1) { - $12 = HEAP32[32512>>2]|0; - $13 = ($12|0)==(0|0); - if ($13) { - $17 = HEAP32[$10>>2]|0; - HEAP32[$vararg_buffer3>>2] = $17; - $vararg_ptr6 = ((($vararg_buffer3)) + 4|0); - HEAP32[$vararg_ptr6>>2] = $iov$0; - $vararg_ptr7 = ((($vararg_buffer3)) + 8|0); - HEAP32[$vararg_ptr7>>2] = $iovcnt$0; - $18 = (___syscall146(146,($vararg_buffer3|0))|0); - $19 = (___syscall_ret($18)|0); - $cnt$0 = $19; - } else { - _pthread_cleanup_push((1|0),($f|0)); - $14 = HEAP32[$10>>2]|0; - HEAP32[$vararg_buffer>>2] = $14; - $vararg_ptr1 = ((($vararg_buffer)) + 4|0); - HEAP32[$vararg_ptr1>>2] = $iov$0; - $vararg_ptr2 = ((($vararg_buffer)) + 8|0); - HEAP32[$vararg_ptr2>>2] = $iovcnt$0; - $15 = (___syscall146(146,($vararg_buffer|0))|0); - $16 = (___syscall_ret($15)|0); - _pthread_cleanup_pop(0); - $cnt$0 = $16; - } - $20 = ($rem$0|0)==($cnt$0|0); - if ($20) { - label = 6; - break; - } - $27 = ($cnt$0|0)<(0); - if ($27) { - $iov$0$lcssa11 = $iov$0;$iovcnt$0$lcssa12 = $iovcnt$0; - label = 8; - break; - } - $35 = (($rem$0) - ($cnt$0))|0; - $36 = ((($iov$0)) + 4|0); - $37 = HEAP32[$36>>2]|0; - $38 = ($cnt$0>>>0)>($37>>>0); - if ($38) { - $39 = HEAP32[$11>>2]|0; - HEAP32[$0>>2] = $39; - HEAP32[$3>>2] = $39; - $40 = (($cnt$0) - ($37))|0; - $41 = ((($iov$0)) + 8|0); - $42 = (($iovcnt$0) + -1)|0; - $$phi$trans$insert = ((($iov$0)) + 12|0); - $$pre = HEAP32[$$phi$trans$insert>>2]|0; - $50 = $$pre;$cnt$1 = $40;$iov$1 = $41;$iovcnt$1 = $42; + $3 = sp + 32|0; + $4 = ((($0)) + 28|0); + $5 = HEAP32[$4>>2]|0; + HEAP32[$3>>2] = $5; + $6 = ((($3)) + 4|0); + $7 = ((($0)) + 20|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($8) - ($5))|0; + HEAP32[$6>>2] = $9; + $10 = ((($3)) + 8|0); + HEAP32[$10>>2] = $1; + $11 = ((($3)) + 12|0); + HEAP32[$11>>2] = $2; + $12 = (($9) + ($2))|0; + $13 = ((($0)) + 60|0); + $14 = HEAP32[$13>>2]|0; + $15 = $3; + HEAP32[$vararg_buffer>>2] = $14; + $vararg_ptr1 = ((($vararg_buffer)) + 4|0); + HEAP32[$vararg_ptr1>>2] = $15; + $vararg_ptr2 = ((($vararg_buffer)) + 8|0); + HEAP32[$vararg_ptr2>>2] = 2; + $16 = (___syscall146(146,($vararg_buffer|0))|0); + $17 = (___syscall_ret($16)|0); + $18 = ($12|0)==($17|0); + L1: do { + if ($18) { + label = 3; } else { - $43 = ($iovcnt$0|0)==(2); - if ($43) { - $44 = HEAP32[$0>>2]|0; - $45 = (($44) + ($cnt$0)|0); - HEAP32[$0>>2] = $45; - $50 = $37;$cnt$1 = $cnt$0;$iov$1 = $iov$0;$iovcnt$1 = 2; + $$04756 = 2;$$04855 = $12;$$04954 = $3;$26 = $17; + while(1) { + $25 = ($26|0)<(0); + if ($25) { + break; + } + $34 = (($$04855) - ($26))|0; + $35 = ((($$04954)) + 4|0); + $36 = HEAP32[$35>>2]|0; + $37 = ($26>>>0)>($36>>>0); + $38 = ((($$04954)) + 8|0); + $$150 = $37 ? $38 : $$04954; + $39 = $37 << 31 >> 31; + $$1 = (($39) + ($$04756))|0; + $40 = $37 ? $36 : 0; + $$0 = (($26) - ($40))|0; + $41 = HEAP32[$$150>>2]|0; + $42 = (($41) + ($$0)|0); + HEAP32[$$150>>2] = $42; + $43 = ((($$150)) + 4|0); + $44 = HEAP32[$43>>2]|0; + $45 = (($44) - ($$0))|0; + HEAP32[$43>>2] = $45; + $46 = HEAP32[$13>>2]|0; + $47 = $$150; + HEAP32[$vararg_buffer3>>2] = $46; + $vararg_ptr6 = ((($vararg_buffer3)) + 4|0); + HEAP32[$vararg_ptr6>>2] = $47; + $vararg_ptr7 = ((($vararg_buffer3)) + 8|0); + HEAP32[$vararg_ptr7>>2] = $$1; + $48 = (___syscall146(146,($vararg_buffer3|0))|0); + $49 = (___syscall_ret($48)|0); + $50 = ($34|0)==($49|0); + if ($50) { + label = 3; + break L1; + } else { + $$04756 = $$1;$$04855 = $34;$$04954 = $$150;$26 = $49; + } + } + $27 = ((($0)) + 16|0); + HEAP32[$27>>2] = 0; + HEAP32[$4>>2] = 0; + HEAP32[$7>>2] = 0; + $28 = HEAP32[$0>>2]|0; + $29 = $28 | 32; + HEAP32[$0>>2] = $29; + $30 = ($$04756|0)==(2); + if ($30) { + $$051 = 0; } else { - $50 = $37;$cnt$1 = $cnt$0;$iov$1 = $iov$0;$iovcnt$1 = $iovcnt$0; + $31 = ((($$04954)) + 4|0); + $32 = HEAP32[$31>>2]|0; + $33 = (($2) - ($32))|0; + $$051 = $33; } } - $46 = HEAP32[$iov$1>>2]|0; - $47 = (($46) + ($cnt$1)|0); - HEAP32[$iov$1>>2] = $47; - $48 = ((($iov$1)) + 4|0); - $49 = (($50) - ($cnt$1))|0; - HEAP32[$48>>2] = $49; - $iov$0 = $iov$1;$iovcnt$0 = $iovcnt$1;$rem$0 = $35; + } while(0); + if ((label|0) == 3) { + $19 = ((($0)) + 44|0); + $20 = HEAP32[$19>>2]|0; + $21 = ((($0)) + 48|0); + $22 = HEAP32[$21>>2]|0; + $23 = (($20) + ($22)|0); + $24 = ((($0)) + 16|0); + HEAP32[$24>>2] = $23; + HEAP32[$4>>2] = $20; + HEAP32[$7>>2] = $20; + $$051 = $2; } - if ((label|0) == 6) { - $21 = HEAP32[$11>>2]|0; - $22 = ((($f)) + 48|0); - $23 = HEAP32[$22>>2]|0; - $24 = (($21) + ($23)|0); - $25 = ((($f)) + 16|0); - HEAP32[$25>>2] = $24; - $26 = $21; - HEAP32[$0>>2] = $26; - HEAP32[$3>>2] = $26; - $$0 = $len; + STACKTOP = sp;return ($$051|0); +} +function ___stdio_seek($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $$pre = 0, $10 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $vararg_buffer = 0, $vararg_ptr1 = 0, $vararg_ptr2 = 0, $vararg_ptr3 = 0, $vararg_ptr4 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 32|0; + $vararg_buffer = sp; + $3 = sp + 20|0; + $4 = ((($0)) + 60|0); + $5 = HEAP32[$4>>2]|0; + $6 = $3; + HEAP32[$vararg_buffer>>2] = $5; + $vararg_ptr1 = ((($vararg_buffer)) + 4|0); + HEAP32[$vararg_ptr1>>2] = 0; + $vararg_ptr2 = ((($vararg_buffer)) + 8|0); + HEAP32[$vararg_ptr2>>2] = $1; + $vararg_ptr3 = ((($vararg_buffer)) + 12|0); + HEAP32[$vararg_ptr3>>2] = $6; + $vararg_ptr4 = ((($vararg_buffer)) + 16|0); + HEAP32[$vararg_ptr4>>2] = $2; + $7 = (___syscall140(140,($vararg_buffer|0))|0); + $8 = (___syscall_ret($7)|0); + $9 = ($8|0)<(0); + if ($9) { + HEAP32[$3>>2] = -1; + $10 = -1; + } else { + $$pre = HEAP32[$3>>2]|0; + $10 = $$pre; } - else if ((label|0) == 8) { - $28 = ((($f)) + 16|0); - HEAP32[$28>>2] = 0; - HEAP32[$0>>2] = 0; - HEAP32[$3>>2] = 0; - $29 = HEAP32[$f>>2]|0; - $30 = $29 | 32; - HEAP32[$f>>2] = $30; - $31 = ($iovcnt$0$lcssa12|0)==(2); - if ($31) { - $$0 = 0; - } else { - $32 = ((($iov$0$lcssa11)) + 4|0); - $33 = HEAP32[$32>>2]|0; - $34 = (($len) - ($33))|0; - $$0 = $34; - } + STACKTOP = sp;return ($10|0); +} +function ___syscall_ret($0) { + $0 = $0|0; + var $$0 = 0, $1 = 0, $2 = 0, $3 = 0, label = 0, sp = 0; + sp = STACKTOP; + $1 = ($0>>>0)>(4294963200); + if ($1) { + $2 = (0 - ($0))|0; + $3 = (___errno_location()|0); + HEAP32[$3>>2] = $2; + $$0 = -1; + } else { + $$0 = $0; } - STACKTOP = sp;return ($$0|0); + return ($$0|0); +} +function ___errno_location() { + var $0 = 0, $1 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (___pthread_self_103()|0); + $1 = ((($0)) + 64|0); + return ($1|0); } -function ___stdout_write($f,$buf,$len) { - $f = $f|0; - $buf = $buf|0; - $len = $len|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $tio = 0, $vararg_buffer = 0, $vararg_ptr1 = 0, $vararg_ptr2 = 0, label = 0, sp = 0; +function ___pthread_self_103() { + var $0 = 0, label = 0, sp = 0; sp = STACKTOP; - STACKTOP = STACKTOP + 80|0; + $0 = (_pthread_self()|0); + return ($0|0); +} +function _pthread_self() { + var label = 0, sp = 0; + sp = STACKTOP; + return (32512|0); +} +function _dummy_570($0) { + $0 = $0|0; + var label = 0, sp = 0; + sp = STACKTOP; + return ($0|0); +} +function ___stdout_write($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $vararg_buffer = 0, $vararg_ptr1 = 0, $vararg_ptr2 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 32|0; $vararg_buffer = sp; - $tio = sp + 12|0; - $0 = ((($f)) + 36|0); - HEAP32[$0>>2] = 3; - $1 = HEAP32[$f>>2]|0; - $2 = $1 & 64; - $3 = ($2|0)==(0); - if ($3) { - $4 = ((($f)) + 60|0); - $5 = HEAP32[$4>>2]|0; - HEAP32[$vararg_buffer>>2] = $5; + $3 = sp + 16|0; + $4 = ((($0)) + 36|0); + HEAP32[$4>>2] = 3; + $5 = HEAP32[$0>>2]|0; + $6 = $5 & 64; + $7 = ($6|0)==(0); + if ($7) { + $8 = ((($0)) + 60|0); + $9 = HEAP32[$8>>2]|0; + $10 = $3; + HEAP32[$vararg_buffer>>2] = $9; $vararg_ptr1 = ((($vararg_buffer)) + 4|0); - HEAP32[$vararg_ptr1>>2] = 21505; + HEAP32[$vararg_ptr1>>2] = 21523; $vararg_ptr2 = ((($vararg_buffer)) + 8|0); - HEAP32[$vararg_ptr2>>2] = $tio; - $6 = (___syscall54(54,($vararg_buffer|0))|0); - $7 = ($6|0)==(0); - if (!($7)) { - $8 = ((($f)) + 75|0); - HEAP8[$8>>0] = -1; + HEAP32[$vararg_ptr2>>2] = $10; + $11 = (___syscall54(54,($vararg_buffer|0))|0); + $12 = ($11|0)==(0); + if (!($12)) { + $13 = ((($0)) + 75|0); + HEAP8[$13>>0] = -1; } } - $9 = (___stdio_write($f,$buf,$len)|0); - STACKTOP = sp;return ($9|0); + $14 = (___stdio_write($0,$1,$2)|0); + STACKTOP = sp;return ($14|0); +} +function ___lockfile($0) { + $0 = $0|0; + var label = 0, sp = 0; + sp = STACKTOP; + return 0; +} +function ___unlockfile($0) { + $0 = $0|0; + var label = 0, sp = 0; + sp = STACKTOP; + return; } -function _fflush($f) { - $f = $f|0; - var $$0 = 0, $$01 = 0, $$012 = 0, $$014 = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0; - var $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $phitmp = 0, $r$0$lcssa = 0, $r$03 = 0, $r$1 = 0, label = 0, sp = 0; +function ___ofl_lock() { + var label = 0, sp = 0; + sp = STACKTOP; + ___lock((32952|0)); + return (32960|0); +} +function ___ofl_unlock() { + var label = 0, sp = 0; + sp = STACKTOP; + ___unlock((32952|0)); + return; +} +function _fflush($0) { + $0 = $0|0; + var $$0 = 0, $$023 = 0, $$02325 = 0, $$02327 = 0, $$024$lcssa = 0, $$02426 = 0, $$1 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0; + var $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $phitmp = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = ($f|0)==(0|0); + $1 = ($0|0)==(0|0); do { - if ($0) { - $7 = HEAP32[32556>>2]|0; - $8 = ($7|0)==(0|0); - if ($8) { - $27 = 0; + if ($1) { + $8 = HEAP32[8220]|0; + $9 = ($8|0)==(0|0); + if ($9) { + $29 = 0; } else { - $9 = HEAP32[32556>>2]|0; - $10 = (_fflush($9)|0); - $27 = $10; + $10 = HEAP32[8220]|0; + $11 = (_fflush($10)|0); + $29 = $11; } - ___lock(((32540)|0)); - $$012 = HEAP32[(32536)>>2]|0; - $11 = ($$012|0)==(0|0); - if ($11) { - $r$0$lcssa = $27; + $12 = (___ofl_lock()|0); + $$02325 = HEAP32[$12>>2]|0; + $13 = ($$02325|0)==(0|0); + if ($13) { + $$024$lcssa = $29; } else { - $$014 = $$012;$r$03 = $27; + $$02327 = $$02325;$$02426 = $29; while(1) { - $12 = ((($$014)) + 76|0); - $13 = HEAP32[$12>>2]|0; - $14 = ($13|0)>(-1); - if ($14) { - $15 = (___lockfile($$014)|0); - $24 = $15; + $14 = ((($$02327)) + 76|0); + $15 = HEAP32[$14>>2]|0; + $16 = ($15|0)>(-1); + if ($16) { + $17 = (___lockfile($$02327)|0); + $26 = $17; } else { - $24 = 0; + $26 = 0; } - $16 = ((($$014)) + 20|0); - $17 = HEAP32[$16>>2]|0; - $18 = ((($$014)) + 28|0); + $18 = ((($$02327)) + 20|0); $19 = HEAP32[$18>>2]|0; - $20 = ($17>>>0)>($19>>>0); - if ($20) { - $21 = (___fflush_unlocked($$014)|0); - $22 = $21 | $r$03; - $r$1 = $22; + $20 = ((($$02327)) + 28|0); + $21 = HEAP32[$20>>2]|0; + $22 = ($19>>>0)>($21>>>0); + if ($22) { + $23 = (___fflush_unlocked($$02327)|0); + $24 = $23 | $$02426; + $$1 = $24; } else { - $r$1 = $r$03; + $$1 = $$02426; } - $23 = ($24|0)==(0); - if (!($23)) { - ___unlockfile($$014); + $25 = ($26|0)==(0); + if (!($25)) { + ___unlockfile($$02327); } - $25 = ((($$014)) + 56|0); - $$01 = HEAP32[$25>>2]|0; - $26 = ($$01|0)==(0|0); - if ($26) { - $r$0$lcssa = $r$1; + $27 = ((($$02327)) + 56|0); + $$023 = HEAP32[$27>>2]|0; + $28 = ($$023|0)==(0|0); + if ($28) { + $$024$lcssa = $$1; break; } else { - $$014 = $$01;$r$03 = $r$1; + $$02327 = $$023;$$02426 = $$1; } } } - ___unlock(((32540)|0)); - $$0 = $r$0$lcssa; + ___ofl_unlock(); + $$0 = $$024$lcssa; } else { - $1 = ((($f)) + 76|0); - $2 = HEAP32[$1>>2]|0; - $3 = ($2|0)>(-1); - if (!($3)) { - $4 = (___fflush_unlocked($f)|0); - $$0 = $4; + $2 = ((($0)) + 76|0); + $3 = HEAP32[$2>>2]|0; + $4 = ($3|0)>(-1); + if (!($4)) { + $5 = (___fflush_unlocked($0)|0); + $$0 = $5; break; } - $5 = (___lockfile($f)|0); - $phitmp = ($5|0)==(0); - $6 = (___fflush_unlocked($f)|0); + $6 = (___lockfile($0)|0); + $phitmp = ($6|0)==(0); + $7 = (___fflush_unlocked($0)|0); if ($phitmp) { - $$0 = $6; + $$0 = $7; } else { - ___unlockfile($f); - $$0 = $6; + ___unlockfile($0); + $$0 = $7; } } } while(0); return ($$0|0); } -function _cleanup392($p) { - $p = $p|0; - var $0 = 0, $1 = 0, $2 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = ((($p)) + 68|0); - $1 = HEAP32[$0>>2]|0; - $2 = ($1|0)==(0); - if ($2) { - ___unlockfile($p); - } - return; -} -function ___fflush_unlocked($f) { - $f = $f|0; - var $$0 = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0; +function ___fflush_unlocked($0) { + $0 = $0|0; + var $$0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0; var $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = ((($f)) + 20|0); - $1 = HEAP32[$0>>2]|0; - $2 = ((($f)) + 28|0); - $3 = HEAP32[$2>>2]|0; - $4 = ($1>>>0)>($3>>>0); - if ($4) { - $5 = ((($f)) + 36|0); - $6 = HEAP32[$5>>2]|0; - (FUNCTION_TABLE_iiii[$6 & 3]($f,0,0)|0); - $7 = HEAP32[$0>>2]|0; - $8 = ($7|0)==(0|0); - if ($8) { + $1 = ((($0)) + 20|0); + $2 = HEAP32[$1>>2]|0; + $3 = ((($0)) + 28|0); + $4 = HEAP32[$3>>2]|0; + $5 = ($2>>>0)>($4>>>0); + if ($5) { + $6 = ((($0)) + 36|0); + $7 = HEAP32[$6>>2]|0; + (FUNCTION_TABLE_iiii[$7 & 3]($0,0,0)|0); + $8 = HEAP32[$1>>2]|0; + $9 = ($8|0)==(0|0); + if ($9) { $$0 = -1; } else { label = 3; @@ -20643,140 +17055,135 @@ function ___fflush_unlocked($f) { label = 3; } if ((label|0) == 3) { - $9 = ((($f)) + 4|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 8|0); - $12 = HEAP32[$11>>2]|0; - $13 = ($10>>>0)<($12>>>0); - if ($13) { - $14 = ((($f)) + 40|0); - $15 = HEAP32[$14>>2]|0; - $16 = $10; - $17 = $12; - $18 = (($16) - ($17))|0; - (FUNCTION_TABLE_iiii[$15 & 3]($f,$18,1)|0); - } - $19 = ((($f)) + 16|0); - HEAP32[$19>>2] = 0; - HEAP32[$2>>2] = 0; - HEAP32[$0>>2] = 0; - HEAP32[$11>>2] = 0; - HEAP32[$9>>2] = 0; + $10 = ((($0)) + 4|0); + $11 = HEAP32[$10>>2]|0; + $12 = ((($0)) + 8|0); + $13 = HEAP32[$12>>2]|0; + $14 = ($11>>>0)<($13>>>0); + if ($14) { + $15 = $11; + $16 = $13; + $17 = (($15) - ($16))|0; + $18 = ((($0)) + 40|0); + $19 = HEAP32[$18>>2]|0; + (FUNCTION_TABLE_iiii[$19 & 3]($0,$17,1)|0); + } + $20 = ((($0)) + 16|0); + HEAP32[$20>>2] = 0; + HEAP32[$3>>2] = 0; + HEAP32[$1>>2] = 0; + HEAP32[$12>>2] = 0; + HEAP32[$10>>2] = 0; $$0 = 0; } return ($$0|0); } -function _malloc($bytes) { - $bytes = $bytes|0; - var $$3$i = 0, $$lcssa = 0, $$lcssa211 = 0, $$lcssa215 = 0, $$lcssa216 = 0, $$lcssa217 = 0, $$lcssa219 = 0, $$lcssa222 = 0, $$lcssa224 = 0, $$lcssa226 = 0, $$lcssa228 = 0, $$lcssa230 = 0, $$lcssa232 = 0, $$pre = 0, $$pre$i = 0, $$pre$i$i = 0, $$pre$i22$i = 0, $$pre$i25 = 0, $$pre$phi$i$iZ2D = 0, $$pre$phi$i23$iZ2D = 0; - var $$pre$phi$i26Z2D = 0, $$pre$phi$iZ2D = 0, $$pre$phi58$i$iZ2D = 0, $$pre$phiZ2D = 0, $$pre105 = 0, $$pre106 = 0, $$pre14$i$i = 0, $$pre43$i = 0, $$pre56$i$i = 0, $$pre57$i$i = 0, $$pre8$i = 0, $$rsize$0$i = 0, $$rsize$3$i = 0, $$sum = 0, $$sum$i$i = 0, $$sum$i$i$i = 0, $$sum$i13$i = 0, $$sum$i14$i = 0, $$sum$i17$i = 0, $$sum$i19$i = 0; - var $$sum$i2334 = 0, $$sum$i32 = 0, $$sum$i35 = 0, $$sum1 = 0, $$sum1$i = 0, $$sum1$i$i = 0, $$sum1$i15$i = 0, $$sum1$i20$i = 0, $$sum1$i24 = 0, $$sum10 = 0, $$sum10$i = 0, $$sum10$i$i = 0, $$sum11$i = 0, $$sum11$i$i = 0, $$sum1112 = 0, $$sum112$i = 0, $$sum113$i = 0, $$sum114$i = 0, $$sum115$i = 0, $$sum116$i = 0; - var $$sum117$i = 0, $$sum118$i = 0, $$sum119$i = 0, $$sum12$i = 0, $$sum12$i$i = 0, $$sum120$i = 0, $$sum121$i = 0, $$sum122$i = 0, $$sum123$i = 0, $$sum124$i = 0, $$sum125$i = 0, $$sum13$i = 0, $$sum13$i$i = 0, $$sum14$i$i = 0, $$sum15$i = 0, $$sum15$i$i = 0, $$sum16$i = 0, $$sum16$i$i = 0, $$sum17$i = 0, $$sum17$i$i = 0; - var $$sum18$i = 0, $$sum1819$i$i = 0, $$sum2 = 0, $$sum2$i = 0, $$sum2$i$i = 0, $$sum2$i$i$i = 0, $$sum2$i16$i = 0, $$sum2$i18$i = 0, $$sum2$i21$i = 0, $$sum20$i$i = 0, $$sum21$i$i = 0, $$sum22$i$i = 0, $$sum23$i$i = 0, $$sum24$i$i = 0, $$sum25$i$i = 0, $$sum27$i$i = 0, $$sum28$i$i = 0, $$sum29$i$i = 0, $$sum3$i = 0, $$sum3$i27 = 0; - var $$sum30$i$i = 0, $$sum3132$i$i = 0, $$sum34$i$i = 0, $$sum3536$i$i = 0, $$sum3738$i$i = 0, $$sum39$i$i = 0, $$sum4 = 0, $$sum4$i = 0, $$sum4$i$i = 0, $$sum4$i28 = 0, $$sum40$i$i = 0, $$sum41$i$i = 0, $$sum42$i$i = 0, $$sum5$i = 0, $$sum5$i$i = 0, $$sum56 = 0, $$sum6$i = 0, $$sum67$i$i = 0, $$sum7$i = 0, $$sum8$i = 0; - var $$sum9 = 0, $$sum9$i = 0, $$sum9$i$i = 0, $$tsize$1$i = 0, $$v$0$i = 0, $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0; - var $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0, $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0; - var $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0, $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0; - var $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0, $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0; - var $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0, $107 = 0, $1070 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0; - var $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0; - var $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0; - var $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0; - var $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0; - var $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0; - var $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0; - var $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0; - var $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0; - var $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0; - var $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0; - var $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0; - var $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0; - var $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0; - var $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0; - var $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0; - var $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0; - var $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0; - var $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0; - var $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0; - var $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0; - var $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0; - var $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0; - var $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0; - var $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0; - var $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0; - var $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0; - var $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0; - var $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0; - var $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0; - var $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0; - var $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0; - var $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0; - var $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0; - var $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0; - var $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0; - var $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0; - var $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0; - var $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0; - var $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0; - var $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0; - var $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0; - var $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0; - var $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0; - var $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0, $91 = 0, $910 = 0, $911 = 0; - var $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0, $928 = 0, $929 = 0, $93 = 0; - var $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0, $946 = 0, $947 = 0, $948 = 0; - var $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0, $964 = 0, $965 = 0, $966 = 0; - var $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0; - var $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, $F$0$i$i = 0, $F1$0$i = 0, $F4$0 = 0, $F4$0$i$i = 0; - var $F5$0$i = 0, $I1$0$i$i = 0, $I7$0$i = 0, $I7$0$i$i = 0, $K12$029$i = 0, $K2$07$i$i = 0, $K8$051$i$i = 0, $R$0$i = 0, $R$0$i$i = 0, $R$0$i$i$lcssa = 0, $R$0$i$lcssa = 0, $R$0$i18 = 0, $R$0$i18$lcssa = 0, $R$1$i = 0, $R$1$i$i = 0, $R$1$i20 = 0, $RP$0$i = 0, $RP$0$i$i = 0, $RP$0$i$i$lcssa = 0, $RP$0$i$lcssa = 0; - var $RP$0$i17 = 0, $RP$0$i17$lcssa = 0, $T$0$lcssa$i = 0, $T$0$lcssa$i$i = 0, $T$0$lcssa$i25$i = 0, $T$028$i = 0, $T$028$i$lcssa = 0, $T$050$i$i = 0, $T$050$i$i$lcssa = 0, $T$06$i$i = 0, $T$06$i$i$lcssa = 0, $br$0$ph$i = 0, $cond$i = 0, $cond$i$i = 0, $cond$i21 = 0, $exitcond$i$i = 0, $i$02$i$i = 0, $idx$0$i = 0, $mem$0 = 0, $nb$0 = 0; - var $not$$i = 0, $not$$i$i = 0, $not$$i26$i = 0, $oldfirst$0$i$i = 0, $or$cond$i = 0, $or$cond$i30 = 0, $or$cond1$i = 0, $or$cond19$i = 0, $or$cond2$i = 0, $or$cond3$i = 0, $or$cond5$i = 0, $or$cond57$i = 0, $or$cond6$i = 0, $or$cond8$i = 0, $or$cond9$i = 0, $qsize$0$i$i = 0, $rsize$0$i = 0, $rsize$0$i$lcssa = 0, $rsize$0$i15 = 0, $rsize$1$i = 0; - var $rsize$2$i = 0, $rsize$3$lcssa$i = 0, $rsize$331$i = 0, $rst$0$i = 0, $rst$1$i = 0, $sizebits$0$i = 0, $sp$0$i$i = 0, $sp$0$i$i$i = 0, $sp$084$i = 0, $sp$084$i$lcssa = 0, $sp$183$i = 0, $sp$183$i$lcssa = 0, $ssize$0$$i = 0, $ssize$0$i = 0, $ssize$1$ph$i = 0, $ssize$2$i = 0, $t$0$i = 0, $t$0$i14 = 0, $t$1$i = 0, $t$2$ph$i = 0; - var $t$2$v$3$i = 0, $t$230$i = 0, $tbase$255$i = 0, $tsize$0$ph$i = 0, $tsize$0323944$i = 0, $tsize$1$i = 0, $tsize$254$i = 0, $v$0$i = 0, $v$0$i$lcssa = 0, $v$0$i16 = 0, $v$1$i = 0, $v$2$i = 0, $v$3$lcssa$i = 0, $v$3$ph$i = 0, $v$332$i = 0, label = 0, sp = 0; +function _malloc($0) { + $0 = $0|0; + var $$$0192$i = 0, $$$0193$i = 0, $$$4236$i = 0, $$$4351$i = 0, $$$i = 0, $$0 = 0, $$0$i$i = 0, $$0$i$i$i = 0, $$0$i18$i = 0, $$01$i$i = 0, $$0189$i = 0, $$0192$lcssa$i = 0, $$01928$i = 0, $$0193$lcssa$i = 0, $$01937$i = 0, $$0197 = 0, $$0199 = 0, $$0206$i$i = 0, $$0207$i$i = 0, $$0211$i$i = 0; + var $$0212$i$i = 0, $$024371$i = 0, $$0287$i$i = 0, $$0288$i$i = 0, $$0289$i$i = 0, $$0295$i$i = 0, $$0296$i$i = 0, $$0342$i = 0, $$0344$i = 0, $$0345$i = 0, $$0347$i = 0, $$0353$i = 0, $$0358$i = 0, $$0359$$i = 0, $$0359$i = 0, $$0361$i = 0, $$0362$i = 0, $$0368$i = 0, $$1196$i = 0, $$1198$i = 0; + var $$124470$i = 0, $$1291$i$i = 0, $$1293$i$i = 0, $$1343$i = 0, $$1348$i = 0, $$1363$i = 0, $$1370$i = 0, $$1374$i = 0, $$2234253237$i = 0, $$2247$ph$i = 0, $$2253$ph$i = 0, $$2355$i = 0, $$3$i = 0, $$3$i$i = 0, $$3$i201 = 0, $$3350$i = 0, $$3372$i = 0, $$4$lcssa$i = 0, $$4$ph$i = 0, $$415$i = 0; + var $$4236$i = 0, $$4351$lcssa$i = 0, $$435114$i = 0, $$4357$$4$i = 0, $$4357$ph$i = 0, $$435713$i = 0, $$723948$i = 0, $$749$i = 0, $$pre = 0, $$pre$i = 0, $$pre$i$i = 0, $$pre$i19$i = 0, $$pre$i210 = 0, $$pre$i212 = 0, $$pre$phi$i$iZ2D = 0, $$pre$phi$i20$iZ2D = 0, $$pre$phi$i211Z2D = 0, $$pre$phi$iZ2D = 0, $$pre$phi11$i$iZ2D = 0, $$pre$phiZ2D = 0; + var $$pre10$i$i = 0, $$sink1$i = 0, $$sink1$i$i = 0, $$sink16$i = 0, $$sink2$i = 0, $$sink2$i204 = 0, $$sink3$i = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0; + var $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0, $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0; + var $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0, $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0; + var $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0, $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0; + var $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0; + var $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0; + var $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0; + var $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0; + var $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0; + var $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0; + var $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0; + var $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0; + var $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0; + var $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0; + var $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0; + var $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0; + var $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0; + var $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0; + var $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0; + var $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0; + var $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0; + var $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0; + var $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0; + var $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0; + var $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0; + var $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0; + var $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0; + var $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0; + var $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0; + var $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0; + var $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0; + var $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0; + var $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0; + var $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0; + var $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0; + var $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0; + var $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0; + var $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0; + var $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0; + var $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0; + var $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0; + var $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0; + var $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0; + var $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0; + var $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0; + var $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0; + var $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0; + var $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0; + var $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0; + var $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0; + var $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0; + var $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0, $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0; + var $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0; + var $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, $cond$i = 0, $cond$i$i = 0, $cond$i208 = 0, $exitcond$i$i = 0, $not$$i = 0, $not$$i$i = 0, $not$$i17$i = 0, $not$$i209 = 0, $not$$i216 = 0, $not$1$i = 0, $not$1$i203 = 0, $not$5$i = 0, $not$7$i$i = 0, $not$8$i = 0, $not$9$i = 0; + var $or$cond$i = 0, $or$cond$i214 = 0, $or$cond1$i = 0, $or$cond10$i = 0, $or$cond11$i = 0, $or$cond11$not$i = 0, $or$cond12$i = 0, $or$cond2$i = 0, $or$cond2$i215 = 0, $or$cond5$i = 0, $or$cond50$i = 0, $or$cond51$i = 0, $or$cond7$i = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = ($bytes>>>0)<(245); + STACKTOP = STACKTOP + 16|0; + $1 = sp; + $2 = ($0>>>0)<(245); do { - if ($0) { - $1 = ($bytes>>>0)<(11); - $2 = (($bytes) + 11)|0; - $3 = $2 & -8; - $4 = $1 ? 16 : $3; - $5 = $4 >>> 3; - $6 = HEAP32[32676>>2]|0; - $7 = $6 >>> $5; - $8 = $7 & 3; - $9 = ($8|0)==(0); - if (!($9)) { - $10 = $7 & 1; - $11 = $10 ^ 1; - $12 = (($11) + ($5))|0; - $13 = $12 << 1; - $14 = (32716 + ($13<<2)|0); - $$sum10 = (($13) + 2)|0; - $15 = (32716 + ($$sum10<<2)|0); - $16 = HEAP32[$15>>2]|0; + if ($2) { + $3 = ($0>>>0)<(11); + $4 = (($0) + 11)|0; + $5 = $4 & -8; + $6 = $3 ? 16 : $5; + $7 = $6 >>> 3; + $8 = HEAP32[8241]|0; + $9 = $8 >>> $7; + $10 = $9 & 3; + $11 = ($10|0)==(0); + if (!($11)) { + $12 = $9 & 1; + $13 = $12 ^ 1; + $14 = (($13) + ($7))|0; + $15 = $14 << 1; + $16 = (33004 + ($15<<2)|0); $17 = ((($16)) + 8|0); $18 = HEAP32[$17>>2]|0; - $19 = ($14|0)==($18|0); + $19 = ((($18)) + 8|0); + $20 = HEAP32[$19>>2]|0; + $21 = ($16|0)==($20|0); do { - if ($19) { - $20 = 1 << $12; - $21 = $20 ^ -1; - $22 = $6 & $21; - HEAP32[32676>>2] = $22; + if ($21) { + $22 = 1 << $14; + $23 = $22 ^ -1; + $24 = $8 & $23; + HEAP32[8241] = $24; } else { - $23 = HEAP32[(32692)>>2]|0; - $24 = ($18>>>0)<($23>>>0); - if ($24) { + $25 = HEAP32[(32980)>>2]|0; + $26 = ($20>>>0)<($25>>>0); + if ($26) { _abort(); // unreachable; } - $25 = ((($18)) + 12|0); - $26 = HEAP32[$25>>2]|0; - $27 = ($26|0)==($16|0); - if ($27) { - HEAP32[$25>>2] = $14; - HEAP32[$15>>2] = $18; + $27 = ((($20)) + 12|0); + $28 = HEAP32[$27>>2]|0; + $29 = ($28|0)==($18|0); + if ($29) { + HEAP32[$27>>2] = $16; + HEAP32[$17>>2] = $20; break; } else { _abort(); @@ -20784,81 +17191,79 @@ function _malloc($bytes) { } } } while(0); - $28 = $12 << 3; - $29 = $28 | 3; - $30 = ((($16)) + 4|0); - HEAP32[$30>>2] = $29; - $$sum1112 = $28 | 4; - $31 = (($16) + ($$sum1112)|0); - $32 = HEAP32[$31>>2]|0; - $33 = $32 | 1; - HEAP32[$31>>2] = $33; - $mem$0 = $17; - return ($mem$0|0); + $30 = $14 << 3; + $31 = $30 | 3; + $32 = ((($18)) + 4|0); + HEAP32[$32>>2] = $31; + $33 = (($18) + ($30)|0); + $34 = ((($33)) + 4|0); + $35 = HEAP32[$34>>2]|0; + $36 = $35 | 1; + HEAP32[$34>>2] = $36; + $$0 = $19; + STACKTOP = sp;return ($$0|0); } - $34 = HEAP32[(32684)>>2]|0; - $35 = ($4>>>0)>($34>>>0); - if ($35) { - $36 = ($7|0)==(0); - if (!($36)) { - $37 = $7 << $5; - $38 = 2 << $5; - $39 = (0 - ($38))|0; - $40 = $38 | $39; - $41 = $37 & $40; + $37 = HEAP32[(32972)>>2]|0; + $38 = ($6>>>0)>($37>>>0); + if ($38) { + $39 = ($9|0)==(0); + if (!($39)) { + $40 = $9 << $7; + $41 = 2 << $7; $42 = (0 - ($41))|0; - $43 = $41 & $42; - $44 = (($43) + -1)|0; - $45 = $44 >>> 12; - $46 = $45 & 16; - $47 = $44 >>> $46; - $48 = $47 >>> 5; - $49 = $48 & 8; - $50 = $49 | $46; - $51 = $47 >>> $49; - $52 = $51 >>> 2; - $53 = $52 & 4; - $54 = $50 | $53; - $55 = $51 >>> $53; - $56 = $55 >>> 1; - $57 = $56 & 2; - $58 = $54 | $57; - $59 = $55 >>> $57; - $60 = $59 >>> 1; - $61 = $60 & 1; - $62 = $58 | $61; - $63 = $59 >>> $61; - $64 = (($62) + ($63))|0; - $65 = $64 << 1; - $66 = (32716 + ($65<<2)|0); - $$sum4 = (($65) + 2)|0; - $67 = (32716 + ($$sum4<<2)|0); - $68 = HEAP32[$67>>2]|0; - $69 = ((($68)) + 8|0); - $70 = HEAP32[$69>>2]|0; - $71 = ($66|0)==($70|0); + $43 = $41 | $42; + $44 = $40 & $43; + $45 = (0 - ($44))|0; + $46 = $44 & $45; + $47 = (($46) + -1)|0; + $48 = $47 >>> 12; + $49 = $48 & 16; + $50 = $47 >>> $49; + $51 = $50 >>> 5; + $52 = $51 & 8; + $53 = $52 | $49; + $54 = $50 >>> $52; + $55 = $54 >>> 2; + $56 = $55 & 4; + $57 = $53 | $56; + $58 = $54 >>> $56; + $59 = $58 >>> 1; + $60 = $59 & 2; + $61 = $57 | $60; + $62 = $58 >>> $60; + $63 = $62 >>> 1; + $64 = $63 & 1; + $65 = $61 | $64; + $66 = $62 >>> $64; + $67 = (($65) + ($66))|0; + $68 = $67 << 1; + $69 = (33004 + ($68<<2)|0); + $70 = ((($69)) + 8|0); + $71 = HEAP32[$70>>2]|0; + $72 = ((($71)) + 8|0); + $73 = HEAP32[$72>>2]|0; + $74 = ($69|0)==($73|0); do { - if ($71) { - $72 = 1 << $64; - $73 = $72 ^ -1; - $74 = $6 & $73; - HEAP32[32676>>2] = $74; - $89 = $34; + if ($74) { + $75 = 1 << $67; + $76 = $75 ^ -1; + $77 = $8 & $76; + HEAP32[8241] = $77; + $98 = $77; } else { - $75 = HEAP32[(32692)>>2]|0; - $76 = ($70>>>0)<($75>>>0); - if ($76) { + $78 = HEAP32[(32980)>>2]|0; + $79 = ($73>>>0)<($78>>>0); + if ($79) { _abort(); // unreachable; } - $77 = ((($70)) + 12|0); - $78 = HEAP32[$77>>2]|0; - $79 = ($78|0)==($68|0); - if ($79) { - HEAP32[$77>>2] = $66; - HEAP32[$67>>2] = $70; - $$pre = HEAP32[(32684)>>2]|0; - $89 = $$pre; + $80 = ((($73)) + 12|0); + $81 = HEAP32[$80>>2]|0; + $82 = ($81|0)==($71|0); + if ($82) { + HEAP32[$80>>2] = $69; + HEAP32[$70>>2] = $73; + $98 = $8; break; } else { _abort(); @@ -20866,205 +17271,207 @@ function _malloc($bytes) { } } } while(0); - $80 = $64 << 3; - $81 = (($80) - ($4))|0; - $82 = $4 | 3; - $83 = ((($68)) + 4|0); - HEAP32[$83>>2] = $82; - $84 = (($68) + ($4)|0); - $85 = $81 | 1; - $$sum56 = $4 | 4; - $86 = (($68) + ($$sum56)|0); + $83 = $67 << 3; + $84 = (($83) - ($6))|0; + $85 = $6 | 3; + $86 = ((($71)) + 4|0); HEAP32[$86>>2] = $85; - $87 = (($68) + ($80)|0); - HEAP32[$87>>2] = $81; - $88 = ($89|0)==(0); - if (!($88)) { - $90 = HEAP32[(32696)>>2]|0; - $91 = $89 >>> 3; - $92 = $91 << 1; - $93 = (32716 + ($92<<2)|0); - $94 = HEAP32[32676>>2]|0; - $95 = 1 << $91; - $96 = $94 & $95; - $97 = ($96|0)==(0); - if ($97) { - $98 = $94 | $95; - HEAP32[32676>>2] = $98; - $$pre105 = (($92) + 2)|0; - $$pre106 = (32716 + ($$pre105<<2)|0); - $$pre$phiZ2D = $$pre106;$F4$0 = $93; + $87 = (($71) + ($6)|0); + $88 = $84 | 1; + $89 = ((($87)) + 4|0); + HEAP32[$89>>2] = $88; + $90 = (($87) + ($84)|0); + HEAP32[$90>>2] = $84; + $91 = ($37|0)==(0); + if (!($91)) { + $92 = HEAP32[(32984)>>2]|0; + $93 = $37 >>> 3; + $94 = $93 << 1; + $95 = (33004 + ($94<<2)|0); + $96 = 1 << $93; + $97 = $98 & $96; + $99 = ($97|0)==(0); + if ($99) { + $100 = $98 | $96; + HEAP32[8241] = $100; + $$pre = ((($95)) + 8|0); + $$0199 = $95;$$pre$phiZ2D = $$pre; } else { - $$sum9 = (($92) + 2)|0; - $99 = (32716 + ($$sum9<<2)|0); - $100 = HEAP32[$99>>2]|0; - $101 = HEAP32[(32692)>>2]|0; - $102 = ($100>>>0)<($101>>>0); - if ($102) { + $101 = ((($95)) + 8|0); + $102 = HEAP32[$101>>2]|0; + $103 = HEAP32[(32980)>>2]|0; + $104 = ($102>>>0)<($103>>>0); + if ($104) { _abort(); // unreachable; } else { - $$pre$phiZ2D = $99;$F4$0 = $100; + $$0199 = $102;$$pre$phiZ2D = $101; } } - HEAP32[$$pre$phiZ2D>>2] = $90; - $103 = ((($F4$0)) + 12|0); - HEAP32[$103>>2] = $90; - $104 = ((($90)) + 8|0); - HEAP32[$104>>2] = $F4$0; - $105 = ((($90)) + 12|0); - HEAP32[$105>>2] = $93; + HEAP32[$$pre$phiZ2D>>2] = $92; + $105 = ((($$0199)) + 12|0); + HEAP32[$105>>2] = $92; + $106 = ((($92)) + 8|0); + HEAP32[$106>>2] = $$0199; + $107 = ((($92)) + 12|0); + HEAP32[$107>>2] = $95; } - HEAP32[(32684)>>2] = $81; - HEAP32[(32696)>>2] = $84; - $mem$0 = $69; - return ($mem$0|0); - } - $106 = HEAP32[(32680)>>2]|0; - $107 = ($106|0)==(0); - if ($107) { - $nb$0 = $4; + HEAP32[(32972)>>2] = $84; + HEAP32[(32984)>>2] = $87; + $$0 = $72; + STACKTOP = sp;return ($$0|0); + } + $108 = HEAP32[(32968)>>2]|0; + $109 = ($108|0)==(0); + if ($109) { + $$0197 = $6; } else { - $108 = (0 - ($106))|0; - $109 = $106 & $108; - $110 = (($109) + -1)|0; - $111 = $110 >>> 12; - $112 = $111 & 16; - $113 = $110 >>> $112; - $114 = $113 >>> 5; - $115 = $114 & 8; - $116 = $115 | $112; - $117 = $113 >>> $115; - $118 = $117 >>> 2; - $119 = $118 & 4; - $120 = $116 | $119; - $121 = $117 >>> $119; - $122 = $121 >>> 1; - $123 = $122 & 2; - $124 = $120 | $123; - $125 = $121 >>> $123; - $126 = $125 >>> 1; - $127 = $126 & 1; - $128 = $124 | $127; - $129 = $125 >>> $127; - $130 = (($128) + ($129))|0; - $131 = (32980 + ($130<<2)|0); - $132 = HEAP32[$131>>2]|0; - $133 = ((($132)) + 4|0); + $110 = (0 - ($108))|0; + $111 = $108 & $110; + $112 = (($111) + -1)|0; + $113 = $112 >>> 12; + $114 = $113 & 16; + $115 = $112 >>> $114; + $116 = $115 >>> 5; + $117 = $116 & 8; + $118 = $117 | $114; + $119 = $115 >>> $117; + $120 = $119 >>> 2; + $121 = $120 & 4; + $122 = $118 | $121; + $123 = $119 >>> $121; + $124 = $123 >>> 1; + $125 = $124 & 2; + $126 = $122 | $125; + $127 = $123 >>> $125; + $128 = $127 >>> 1; + $129 = $128 & 1; + $130 = $126 | $129; + $131 = $127 >>> $129; + $132 = (($130) + ($131))|0; + $133 = (33268 + ($132<<2)|0); $134 = HEAP32[$133>>2]|0; - $135 = $134 & -8; - $136 = (($135) - ($4))|0; - $rsize$0$i = $136;$t$0$i = $132;$v$0$i = $132; - while(1) { - $137 = ((($t$0$i)) + 16|0); - $138 = HEAP32[$137>>2]|0; - $139 = ($138|0)==(0|0); - if ($139) { - $140 = ((($t$0$i)) + 20|0); - $141 = HEAP32[$140>>2]|0; - $142 = ($141|0)==(0|0); - if ($142) { - $rsize$0$i$lcssa = $rsize$0$i;$v$0$i$lcssa = $v$0$i; + $135 = ((($134)) + 4|0); + $136 = HEAP32[$135>>2]|0; + $137 = $136 & -8; + $138 = (($137) - ($6))|0; + $139 = ((($134)) + 16|0); + $140 = HEAP32[$139>>2]|0; + $not$5$i = ($140|0)==(0|0); + $$sink16$i = $not$5$i&1; + $141 = (((($134)) + 16|0) + ($$sink16$i<<2)|0); + $142 = HEAP32[$141>>2]|0; + $143 = ($142|0)==(0|0); + if ($143) { + $$0192$lcssa$i = $134;$$0193$lcssa$i = $138; + } else { + $$01928$i = $134;$$01937$i = $138;$145 = $142; + while(1) { + $144 = ((($145)) + 4|0); + $146 = HEAP32[$144>>2]|0; + $147 = $146 & -8; + $148 = (($147) - ($6))|0; + $149 = ($148>>>0)<($$01937$i>>>0); + $$$0193$i = $149 ? $148 : $$01937$i; + $$$0192$i = $149 ? $145 : $$01928$i; + $150 = ((($145)) + 16|0); + $151 = HEAP32[$150>>2]|0; + $not$$i = ($151|0)==(0|0); + $$sink1$i = $not$$i&1; + $152 = (((($145)) + 16|0) + ($$sink1$i<<2)|0); + $153 = HEAP32[$152>>2]|0; + $154 = ($153|0)==(0|0); + if ($154) { + $$0192$lcssa$i = $$$0192$i;$$0193$lcssa$i = $$$0193$i; break; } else { - $144 = $141; + $$01928$i = $$$0192$i;$$01937$i = $$$0193$i;$145 = $153; } - } else { - $144 = $138; } - $143 = ((($144)) + 4|0); - $145 = HEAP32[$143>>2]|0; - $146 = $145 & -8; - $147 = (($146) - ($4))|0; - $148 = ($147>>>0)<($rsize$0$i>>>0); - $$rsize$0$i = $148 ? $147 : $rsize$0$i; - $$v$0$i = $148 ? $144 : $v$0$i; - $rsize$0$i = $$rsize$0$i;$t$0$i = $144;$v$0$i = $$v$0$i; } - $149 = HEAP32[(32692)>>2]|0; - $150 = ($v$0$i$lcssa>>>0)<($149>>>0); - if ($150) { + $155 = HEAP32[(32980)>>2]|0; + $156 = ($$0192$lcssa$i>>>0)<($155>>>0); + if ($156) { _abort(); // unreachable; } - $151 = (($v$0$i$lcssa) + ($4)|0); - $152 = ($v$0$i$lcssa>>>0)<($151>>>0); - if (!($152)) { + $157 = (($$0192$lcssa$i) + ($6)|0); + $158 = ($$0192$lcssa$i>>>0)<($157>>>0); + if (!($158)) { _abort(); // unreachable; } - $153 = ((($v$0$i$lcssa)) + 24|0); - $154 = HEAP32[$153>>2]|0; - $155 = ((($v$0$i$lcssa)) + 12|0); - $156 = HEAP32[$155>>2]|0; - $157 = ($156|0)==($v$0$i$lcssa|0); + $159 = ((($$0192$lcssa$i)) + 24|0); + $160 = HEAP32[$159>>2]|0; + $161 = ((($$0192$lcssa$i)) + 12|0); + $162 = HEAP32[$161>>2]|0; + $163 = ($162|0)==($$0192$lcssa$i|0); do { - if ($157) { - $167 = ((($v$0$i$lcssa)) + 20|0); - $168 = HEAP32[$167>>2]|0; - $169 = ($168|0)==(0|0); - if ($169) { - $170 = ((($v$0$i$lcssa)) + 16|0); - $171 = HEAP32[$170>>2]|0; - $172 = ($171|0)==(0|0); - if ($172) { - $R$1$i = 0; + if ($163) { + $173 = ((($$0192$lcssa$i)) + 20|0); + $174 = HEAP32[$173>>2]|0; + $175 = ($174|0)==(0|0); + if ($175) { + $176 = ((($$0192$lcssa$i)) + 16|0); + $177 = HEAP32[$176>>2]|0; + $178 = ($177|0)==(0|0); + if ($178) { + $$3$i = 0; break; } else { - $R$0$i = $171;$RP$0$i = $170; + $$1196$i = $177;$$1198$i = $176; } } else { - $R$0$i = $168;$RP$0$i = $167; + $$1196$i = $174;$$1198$i = $173; } while(1) { - $173 = ((($R$0$i)) + 20|0); - $174 = HEAP32[$173>>2]|0; - $175 = ($174|0)==(0|0); - if (!($175)) { - $R$0$i = $174;$RP$0$i = $173; + $179 = ((($$1196$i)) + 20|0); + $180 = HEAP32[$179>>2]|0; + $181 = ($180|0)==(0|0); + if (!($181)) { + $$1196$i = $180;$$1198$i = $179; continue; } - $176 = ((($R$0$i)) + 16|0); - $177 = HEAP32[$176>>2]|0; - $178 = ($177|0)==(0|0); - if ($178) { - $R$0$i$lcssa = $R$0$i;$RP$0$i$lcssa = $RP$0$i; + $182 = ((($$1196$i)) + 16|0); + $183 = HEAP32[$182>>2]|0; + $184 = ($183|0)==(0|0); + if ($184) { break; } else { - $R$0$i = $177;$RP$0$i = $176; + $$1196$i = $183;$$1198$i = $182; } } - $179 = ($RP$0$i$lcssa>>>0)<($149>>>0); - if ($179) { + $185 = ($$1198$i>>>0)<($155>>>0); + if ($185) { _abort(); // unreachable; } else { - HEAP32[$RP$0$i$lcssa>>2] = 0; - $R$1$i = $R$0$i$lcssa; + HEAP32[$$1198$i>>2] = 0; + $$3$i = $$1196$i; break; } } else { - $158 = ((($v$0$i$lcssa)) + 8|0); - $159 = HEAP32[$158>>2]|0; - $160 = ($159>>>0)<($149>>>0); - if ($160) { + $164 = ((($$0192$lcssa$i)) + 8|0); + $165 = HEAP32[$164>>2]|0; + $166 = ($165>>>0)<($155>>>0); + if ($166) { _abort(); // unreachable; } - $161 = ((($159)) + 12|0); - $162 = HEAP32[$161>>2]|0; - $163 = ($162|0)==($v$0$i$lcssa|0); - if (!($163)) { + $167 = ((($165)) + 12|0); + $168 = HEAP32[$167>>2]|0; + $169 = ($168|0)==($$0192$lcssa$i|0); + if (!($169)) { _abort(); // unreachable; } - $164 = ((($156)) + 8|0); - $165 = HEAP32[$164>>2]|0; - $166 = ($165|0)==($v$0$i$lcssa|0); - if ($166) { - HEAP32[$161>>2] = $156; - HEAP32[$164>>2] = $159; - $R$1$i = $156; + $170 = ((($162)) + 8|0); + $171 = HEAP32[$170>>2]|0; + $172 = ($171|0)==($$0192$lcssa$i|0); + if ($172) { + HEAP32[$167>>2] = $162; + HEAP32[$170>>2] = $165; + $$3$i = $162; break; } else { _abort(); @@ -21072,434 +17479,426 @@ function _malloc($bytes) { } } } while(0); - $180 = ($154|0)==(0|0); - do { - if (!($180)) { - $181 = ((($v$0$i$lcssa)) + 28|0); - $182 = HEAP32[$181>>2]|0; - $183 = (32980 + ($182<<2)|0); - $184 = HEAP32[$183>>2]|0; - $185 = ($v$0$i$lcssa|0)==($184|0); - if ($185) { - HEAP32[$183>>2] = $R$1$i; - $cond$i = ($R$1$i|0)==(0|0); - if ($cond$i) { - $186 = 1 << $182; - $187 = $186 ^ -1; - $188 = HEAP32[(32680)>>2]|0; - $189 = $188 & $187; - HEAP32[(32680)>>2] = $189; - break; - } - } else { - $190 = HEAP32[(32692)>>2]|0; - $191 = ($154>>>0)<($190>>>0); + $186 = ($160|0)==(0|0); + L73: do { + if (!($186)) { + $187 = ((($$0192$lcssa$i)) + 28|0); + $188 = HEAP32[$187>>2]|0; + $189 = (33268 + ($188<<2)|0); + $190 = HEAP32[$189>>2]|0; + $191 = ($$0192$lcssa$i|0)==($190|0); + do { if ($191) { - _abort(); - // unreachable; - } - $192 = ((($154)) + 16|0); - $193 = HEAP32[$192>>2]|0; - $194 = ($193|0)==($v$0$i$lcssa|0); - if ($194) { - HEAP32[$192>>2] = $R$1$i; + HEAP32[$189>>2] = $$3$i; + $cond$i = ($$3$i|0)==(0|0); + if ($cond$i) { + $192 = 1 << $188; + $193 = $192 ^ -1; + $194 = $108 & $193; + HEAP32[(32968)>>2] = $194; + break L73; + } } else { - $195 = ((($154)) + 20|0); - HEAP32[$195>>2] = $R$1$i; - } - $196 = ($R$1$i|0)==(0|0); - if ($196) { - break; + $195 = HEAP32[(32980)>>2]|0; + $196 = ($160>>>0)<($195>>>0); + if ($196) { + _abort(); + // unreachable; + } else { + $197 = ((($160)) + 16|0); + $198 = HEAP32[$197>>2]|0; + $not$1$i = ($198|0)!=($$0192$lcssa$i|0); + $$sink2$i = $not$1$i&1; + $199 = (((($160)) + 16|0) + ($$sink2$i<<2)|0); + HEAP32[$199>>2] = $$3$i; + $200 = ($$3$i|0)==(0|0); + if ($200) { + break L73; + } else { + break; + } + } } - } - $197 = HEAP32[(32692)>>2]|0; - $198 = ($R$1$i>>>0)<($197>>>0); - if ($198) { + } while(0); + $201 = HEAP32[(32980)>>2]|0; + $202 = ($$3$i>>>0)<($201>>>0); + if ($202) { _abort(); // unreachable; } - $199 = ((($R$1$i)) + 24|0); - HEAP32[$199>>2] = $154; - $200 = ((($v$0$i$lcssa)) + 16|0); - $201 = HEAP32[$200>>2]|0; - $202 = ($201|0)==(0|0); + $203 = ((($$3$i)) + 24|0); + HEAP32[$203>>2] = $160; + $204 = ((($$0192$lcssa$i)) + 16|0); + $205 = HEAP32[$204>>2]|0; + $206 = ($205|0)==(0|0); do { - if (!($202)) { - $203 = ($201>>>0)<($197>>>0); - if ($203) { + if (!($206)) { + $207 = ($205>>>0)<($201>>>0); + if ($207) { _abort(); // unreachable; } else { - $204 = ((($R$1$i)) + 16|0); - HEAP32[$204>>2] = $201; - $205 = ((($201)) + 24|0); - HEAP32[$205>>2] = $R$1$i; + $208 = ((($$3$i)) + 16|0); + HEAP32[$208>>2] = $205; + $209 = ((($205)) + 24|0); + HEAP32[$209>>2] = $$3$i; break; } } } while(0); - $206 = ((($v$0$i$lcssa)) + 20|0); - $207 = HEAP32[$206>>2]|0; - $208 = ($207|0)==(0|0); - if (!($208)) { - $209 = HEAP32[(32692)>>2]|0; - $210 = ($207>>>0)<($209>>>0); - if ($210) { + $210 = ((($$0192$lcssa$i)) + 20|0); + $211 = HEAP32[$210>>2]|0; + $212 = ($211|0)==(0|0); + if (!($212)) { + $213 = HEAP32[(32980)>>2]|0; + $214 = ($211>>>0)<($213>>>0); + if ($214) { _abort(); // unreachable; } else { - $211 = ((($R$1$i)) + 20|0); - HEAP32[$211>>2] = $207; - $212 = ((($207)) + 24|0); - HEAP32[$212>>2] = $R$1$i; + $215 = ((($$3$i)) + 20|0); + HEAP32[$215>>2] = $211; + $216 = ((($211)) + 24|0); + HEAP32[$216>>2] = $$3$i; break; } } } } while(0); - $213 = ($rsize$0$i$lcssa>>>0)<(16); - if ($213) { - $214 = (($rsize$0$i$lcssa) + ($4))|0; - $215 = $214 | 3; - $216 = ((($v$0$i$lcssa)) + 4|0); - HEAP32[$216>>2] = $215; - $$sum4$i = (($214) + 4)|0; - $217 = (($v$0$i$lcssa) + ($$sum4$i)|0); - $218 = HEAP32[$217>>2]|0; - $219 = $218 | 1; - HEAP32[$217>>2] = $219; + $217 = ($$0193$lcssa$i>>>0)<(16); + if ($217) { + $218 = (($$0193$lcssa$i) + ($6))|0; + $219 = $218 | 3; + $220 = ((($$0192$lcssa$i)) + 4|0); + HEAP32[$220>>2] = $219; + $221 = (($$0192$lcssa$i) + ($218)|0); + $222 = ((($221)) + 4|0); + $223 = HEAP32[$222>>2]|0; + $224 = $223 | 1; + HEAP32[$222>>2] = $224; } else { - $220 = $4 | 3; - $221 = ((($v$0$i$lcssa)) + 4|0); - HEAP32[$221>>2] = $220; - $222 = $rsize$0$i$lcssa | 1; - $$sum$i35 = $4 | 4; - $223 = (($v$0$i$lcssa) + ($$sum$i35)|0); - HEAP32[$223>>2] = $222; - $$sum1$i = (($rsize$0$i$lcssa) + ($4))|0; - $224 = (($v$0$i$lcssa) + ($$sum1$i)|0); - HEAP32[$224>>2] = $rsize$0$i$lcssa; - $225 = HEAP32[(32684)>>2]|0; - $226 = ($225|0)==(0); - if (!($226)) { - $227 = HEAP32[(32696)>>2]|0; - $228 = $225 >>> 3; - $229 = $228 << 1; - $230 = (32716 + ($229<<2)|0); - $231 = HEAP32[32676>>2]|0; - $232 = 1 << $228; - $233 = $231 & $232; - $234 = ($233|0)==(0); - if ($234) { - $235 = $231 | $232; - HEAP32[32676>>2] = $235; - $$pre$i = (($229) + 2)|0; - $$pre8$i = (32716 + ($$pre$i<<2)|0); - $$pre$phi$iZ2D = $$pre8$i;$F1$0$i = $230; + $225 = $6 | 3; + $226 = ((($$0192$lcssa$i)) + 4|0); + HEAP32[$226>>2] = $225; + $227 = $$0193$lcssa$i | 1; + $228 = ((($157)) + 4|0); + HEAP32[$228>>2] = $227; + $229 = (($157) + ($$0193$lcssa$i)|0); + HEAP32[$229>>2] = $$0193$lcssa$i; + $230 = ($37|0)==(0); + if (!($230)) { + $231 = HEAP32[(32984)>>2]|0; + $232 = $37 >>> 3; + $233 = $232 << 1; + $234 = (33004 + ($233<<2)|0); + $235 = 1 << $232; + $236 = $8 & $235; + $237 = ($236|0)==(0); + if ($237) { + $238 = $8 | $235; + HEAP32[8241] = $238; + $$pre$i = ((($234)) + 8|0); + $$0189$i = $234;$$pre$phi$iZ2D = $$pre$i; } else { - $$sum3$i = (($229) + 2)|0; - $236 = (32716 + ($$sum3$i<<2)|0); - $237 = HEAP32[$236>>2]|0; - $238 = HEAP32[(32692)>>2]|0; - $239 = ($237>>>0)<($238>>>0); - if ($239) { + $239 = ((($234)) + 8|0); + $240 = HEAP32[$239>>2]|0; + $241 = HEAP32[(32980)>>2]|0; + $242 = ($240>>>0)<($241>>>0); + if ($242) { _abort(); // unreachable; } else { - $$pre$phi$iZ2D = $236;$F1$0$i = $237; + $$0189$i = $240;$$pre$phi$iZ2D = $239; } } - HEAP32[$$pre$phi$iZ2D>>2] = $227; - $240 = ((($F1$0$i)) + 12|0); - HEAP32[$240>>2] = $227; - $241 = ((($227)) + 8|0); - HEAP32[$241>>2] = $F1$0$i; - $242 = ((($227)) + 12|0); - HEAP32[$242>>2] = $230; + HEAP32[$$pre$phi$iZ2D>>2] = $231; + $243 = ((($$0189$i)) + 12|0); + HEAP32[$243>>2] = $231; + $244 = ((($231)) + 8|0); + HEAP32[$244>>2] = $$0189$i; + $245 = ((($231)) + 12|0); + HEAP32[$245>>2] = $234; } - HEAP32[(32684)>>2] = $rsize$0$i$lcssa; - HEAP32[(32696)>>2] = $151; + HEAP32[(32972)>>2] = $$0193$lcssa$i; + HEAP32[(32984)>>2] = $157; } - $243 = ((($v$0$i$lcssa)) + 8|0); - $mem$0 = $243; - return ($mem$0|0); + $246 = ((($$0192$lcssa$i)) + 8|0); + $$0 = $246; + STACKTOP = sp;return ($$0|0); } } else { - $nb$0 = $4; + $$0197 = $6; } } else { - $244 = ($bytes>>>0)>(4294967231); - if ($244) { - $nb$0 = -1; + $247 = ($0>>>0)>(4294967231); + if ($247) { + $$0197 = -1; } else { - $245 = (($bytes) + 11)|0; - $246 = $245 & -8; - $247 = HEAP32[(32680)>>2]|0; - $248 = ($247|0)==(0); - if ($248) { - $nb$0 = $246; + $248 = (($0) + 11)|0; + $249 = $248 & -8; + $250 = HEAP32[(32968)>>2]|0; + $251 = ($250|0)==(0); + if ($251) { + $$0197 = $249; } else { - $249 = (0 - ($246))|0; - $250 = $245 >>> 8; - $251 = ($250|0)==(0); - if ($251) { - $idx$0$i = 0; + $252 = (0 - ($249))|0; + $253 = $248 >>> 8; + $254 = ($253|0)==(0); + if ($254) { + $$0358$i = 0; } else { - $252 = ($246>>>0)>(16777215); - if ($252) { - $idx$0$i = 31; + $255 = ($249>>>0)>(16777215); + if ($255) { + $$0358$i = 31; } else { - $253 = (($250) + 1048320)|0; - $254 = $253 >>> 16; - $255 = $254 & 8; - $256 = $250 << $255; - $257 = (($256) + 520192)|0; - $258 = $257 >>> 16; - $259 = $258 & 4; - $260 = $259 | $255; - $261 = $256 << $259; - $262 = (($261) + 245760)|0; - $263 = $262 >>> 16; - $264 = $263 & 2; - $265 = $260 | $264; - $266 = (14 - ($265))|0; - $267 = $261 << $264; - $268 = $267 >>> 15; - $269 = (($266) + ($268))|0; - $270 = $269 << 1; - $271 = (($269) + 7)|0; - $272 = $246 >>> $271; - $273 = $272 & 1; - $274 = $273 | $270; - $idx$0$i = $274; + $256 = (($253) + 1048320)|0; + $257 = $256 >>> 16; + $258 = $257 & 8; + $259 = $253 << $258; + $260 = (($259) + 520192)|0; + $261 = $260 >>> 16; + $262 = $261 & 4; + $263 = $262 | $258; + $264 = $259 << $262; + $265 = (($264) + 245760)|0; + $266 = $265 >>> 16; + $267 = $266 & 2; + $268 = $263 | $267; + $269 = (14 - ($268))|0; + $270 = $264 << $267; + $271 = $270 >>> 15; + $272 = (($269) + ($271))|0; + $273 = $272 << 1; + $274 = (($272) + 7)|0; + $275 = $249 >>> $274; + $276 = $275 & 1; + $277 = $276 | $273; + $$0358$i = $277; } } - $275 = (32980 + ($idx$0$i<<2)|0); - $276 = HEAP32[$275>>2]|0; - $277 = ($276|0)==(0|0); - L123: do { - if ($277) { - $rsize$2$i = $249;$t$1$i = 0;$v$2$i = 0; - label = 86; + $278 = (33268 + ($$0358$i<<2)|0); + $279 = HEAP32[$278>>2]|0; + $280 = ($279|0)==(0|0); + L117: do { + if ($280) { + $$2355$i = 0;$$3$i201 = 0;$$3350$i = $252; + label = 81; } else { - $278 = ($idx$0$i|0)==(31); - $279 = $idx$0$i >>> 1; - $280 = (25 - ($279))|0; - $281 = $278 ? 0 : $280; - $282 = $246 << $281; - $rsize$0$i15 = $249;$rst$0$i = 0;$sizebits$0$i = $282;$t$0$i14 = $276;$v$0$i16 = 0; + $281 = ($$0358$i|0)==(31); + $282 = $$0358$i >>> 1; + $283 = (25 - ($282))|0; + $284 = $281 ? 0 : $283; + $285 = $249 << $284; + $$0342$i = 0;$$0347$i = $252;$$0353$i = $279;$$0359$i = $285;$$0362$i = 0; while(1) { - $283 = ((($t$0$i14)) + 4|0); - $284 = HEAP32[$283>>2]|0; - $285 = $284 & -8; - $286 = (($285) - ($246))|0; - $287 = ($286>>>0)<($rsize$0$i15>>>0); - if ($287) { - $288 = ($285|0)==($246|0); - if ($288) { - $rsize$331$i = $286;$t$230$i = $t$0$i14;$v$332$i = $t$0$i14; - label = 90; - break L123; + $286 = ((($$0353$i)) + 4|0); + $287 = HEAP32[$286>>2]|0; + $288 = $287 & -8; + $289 = (($288) - ($249))|0; + $290 = ($289>>>0)<($$0347$i>>>0); + if ($290) { + $291 = ($289|0)==(0); + if ($291) { + $$415$i = $$0353$i;$$435114$i = 0;$$435713$i = $$0353$i; + label = 85; + break L117; } else { - $rsize$1$i = $286;$v$1$i = $t$0$i14; + $$1343$i = $$0353$i;$$1348$i = $289; } } else { - $rsize$1$i = $rsize$0$i15;$v$1$i = $v$0$i16; + $$1343$i = $$0342$i;$$1348$i = $$0347$i; } - $289 = ((($t$0$i14)) + 20|0); - $290 = HEAP32[$289>>2]|0; - $291 = $sizebits$0$i >>> 31; - $292 = (((($t$0$i14)) + 16|0) + ($291<<2)|0); + $292 = ((($$0353$i)) + 20|0); $293 = HEAP32[$292>>2]|0; - $294 = ($290|0)==(0|0); - $295 = ($290|0)==($293|0); - $or$cond19$i = $294 | $295; - $rst$1$i = $or$cond19$i ? $rst$0$i : $290; - $296 = ($293|0)==(0|0); - $297 = $sizebits$0$i << 1; - if ($296) { - $rsize$2$i = $rsize$1$i;$t$1$i = $rst$1$i;$v$2$i = $v$1$i; - label = 86; + $294 = $$0359$i >>> 31; + $295 = (((($$0353$i)) + 16|0) + ($294<<2)|0); + $296 = HEAP32[$295>>2]|0; + $297 = ($293|0)==(0|0); + $298 = ($293|0)==($296|0); + $or$cond2$i = $297 | $298; + $$1363$i = $or$cond2$i ? $$0362$i : $293; + $299 = ($296|0)==(0|0); + $not$8$i = $299 ^ 1; + $300 = $not$8$i&1; + $$0359$$i = $$0359$i << $300; + if ($299) { + $$2355$i = $$1363$i;$$3$i201 = $$1343$i;$$3350$i = $$1348$i; + label = 81; break; } else { - $rsize$0$i15 = $rsize$1$i;$rst$0$i = $rst$1$i;$sizebits$0$i = $297;$t$0$i14 = $293;$v$0$i16 = $v$1$i; + $$0342$i = $$1343$i;$$0347$i = $$1348$i;$$0353$i = $296;$$0359$i = $$0359$$i;$$0362$i = $$1363$i; } } } } while(0); - if ((label|0) == 86) { - $298 = ($t$1$i|0)==(0|0); - $299 = ($v$2$i|0)==(0|0); - $or$cond$i = $298 & $299; + if ((label|0) == 81) { + $301 = ($$2355$i|0)==(0|0); + $302 = ($$3$i201|0)==(0|0); + $or$cond$i = $301 & $302; if ($or$cond$i) { - $300 = 2 << $idx$0$i; - $301 = (0 - ($300))|0; - $302 = $300 | $301; - $303 = $247 & $302; - $304 = ($303|0)==(0); - if ($304) { - $nb$0 = $246; + $303 = 2 << $$0358$i; + $304 = (0 - ($303))|0; + $305 = $303 | $304; + $306 = $250 & $305; + $307 = ($306|0)==(0); + if ($307) { + $$0197 = $249; break; } - $305 = (0 - ($303))|0; - $306 = $303 & $305; - $307 = (($306) + -1)|0; - $308 = $307 >>> 12; - $309 = $308 & 16; - $310 = $307 >>> $309; - $311 = $310 >>> 5; - $312 = $311 & 8; - $313 = $312 | $309; - $314 = $310 >>> $312; - $315 = $314 >>> 2; - $316 = $315 & 4; - $317 = $313 | $316; - $318 = $314 >>> $316; - $319 = $318 >>> 1; - $320 = $319 & 2; - $321 = $317 | $320; - $322 = $318 >>> $320; - $323 = $322 >>> 1; - $324 = $323 & 1; - $325 = $321 | $324; - $326 = $322 >>> $324; - $327 = (($325) + ($326))|0; - $328 = (32980 + ($327<<2)|0); - $329 = HEAP32[$328>>2]|0; - $t$2$ph$i = $329;$v$3$ph$i = 0; + $308 = (0 - ($306))|0; + $309 = $306 & $308; + $310 = (($309) + -1)|0; + $311 = $310 >>> 12; + $312 = $311 & 16; + $313 = $310 >>> $312; + $314 = $313 >>> 5; + $315 = $314 & 8; + $316 = $315 | $312; + $317 = $313 >>> $315; + $318 = $317 >>> 2; + $319 = $318 & 4; + $320 = $316 | $319; + $321 = $317 >>> $319; + $322 = $321 >>> 1; + $323 = $322 & 2; + $324 = $320 | $323; + $325 = $321 >>> $323; + $326 = $325 >>> 1; + $327 = $326 & 1; + $328 = $324 | $327; + $329 = $325 >>> $327; + $330 = (($328) + ($329))|0; + $331 = (33268 + ($330<<2)|0); + $332 = HEAP32[$331>>2]|0; + $$4$ph$i = 0;$$4357$ph$i = $332; } else { - $t$2$ph$i = $t$1$i;$v$3$ph$i = $v$2$i; + $$4$ph$i = $$3$i201;$$4357$ph$i = $$2355$i; } - $330 = ($t$2$ph$i|0)==(0|0); - if ($330) { - $rsize$3$lcssa$i = $rsize$2$i;$v$3$lcssa$i = $v$3$ph$i; + $333 = ($$4357$ph$i|0)==(0|0); + if ($333) { + $$4$lcssa$i = $$4$ph$i;$$4351$lcssa$i = $$3350$i; } else { - $rsize$331$i = $rsize$2$i;$t$230$i = $t$2$ph$i;$v$332$i = $v$3$ph$i; - label = 90; + $$415$i = $$4$ph$i;$$435114$i = $$3350$i;$$435713$i = $$4357$ph$i; + label = 85; } } - if ((label|0) == 90) { + if ((label|0) == 85) { while(1) { label = 0; - $331 = ((($t$230$i)) + 4|0); - $332 = HEAP32[$331>>2]|0; - $333 = $332 & -8; - $334 = (($333) - ($246))|0; - $335 = ($334>>>0)<($rsize$331$i>>>0); - $$rsize$3$i = $335 ? $334 : $rsize$331$i; - $t$2$v$3$i = $335 ? $t$230$i : $v$332$i; - $336 = ((($t$230$i)) + 16|0); - $337 = HEAP32[$336>>2]|0; - $338 = ($337|0)==(0|0); - if (!($338)) { - $rsize$331$i = $$rsize$3$i;$t$230$i = $337;$v$332$i = $t$2$v$3$i; - label = 90; - continue; - } - $339 = ((($t$230$i)) + 20|0); + $334 = ((($$435713$i)) + 4|0); + $335 = HEAP32[$334>>2]|0; + $336 = $335 & -8; + $337 = (($336) - ($249))|0; + $338 = ($337>>>0)<($$435114$i>>>0); + $$$4351$i = $338 ? $337 : $$435114$i; + $$4357$$4$i = $338 ? $$435713$i : $$415$i; + $339 = ((($$435713$i)) + 16|0); $340 = HEAP32[$339>>2]|0; - $341 = ($340|0)==(0|0); - if ($341) { - $rsize$3$lcssa$i = $$rsize$3$i;$v$3$lcssa$i = $t$2$v$3$i; + $not$1$i203 = ($340|0)==(0|0); + $$sink2$i204 = $not$1$i203&1; + $341 = (((($$435713$i)) + 16|0) + ($$sink2$i204<<2)|0); + $342 = HEAP32[$341>>2]|0; + $343 = ($342|0)==(0|0); + if ($343) { + $$4$lcssa$i = $$4357$$4$i;$$4351$lcssa$i = $$$4351$i; break; } else { - $rsize$331$i = $$rsize$3$i;$t$230$i = $340;$v$332$i = $t$2$v$3$i; - label = 90; + $$415$i = $$4357$$4$i;$$435114$i = $$$4351$i;$$435713$i = $342; + label = 85; } } } - $342 = ($v$3$lcssa$i|0)==(0|0); - if ($342) { - $nb$0 = $246; + $344 = ($$4$lcssa$i|0)==(0|0); + if ($344) { + $$0197 = $249; } else { - $343 = HEAP32[(32684)>>2]|0; - $344 = (($343) - ($246))|0; - $345 = ($rsize$3$lcssa$i>>>0)<($344>>>0); - if ($345) { - $346 = HEAP32[(32692)>>2]|0; - $347 = ($v$3$lcssa$i>>>0)<($346>>>0); - if ($347) { + $345 = HEAP32[(32972)>>2]|0; + $346 = (($345) - ($249))|0; + $347 = ($$4351$lcssa$i>>>0)<($346>>>0); + if ($347) { + $348 = HEAP32[(32980)>>2]|0; + $349 = ($$4$lcssa$i>>>0)<($348>>>0); + if ($349) { _abort(); // unreachable; } - $348 = (($v$3$lcssa$i) + ($246)|0); - $349 = ($v$3$lcssa$i>>>0)<($348>>>0); - if (!($349)) { + $350 = (($$4$lcssa$i) + ($249)|0); + $351 = ($$4$lcssa$i>>>0)<($350>>>0); + if (!($351)) { _abort(); // unreachable; } - $350 = ((($v$3$lcssa$i)) + 24|0); - $351 = HEAP32[$350>>2]|0; - $352 = ((($v$3$lcssa$i)) + 12|0); + $352 = ((($$4$lcssa$i)) + 24|0); $353 = HEAP32[$352>>2]|0; - $354 = ($353|0)==($v$3$lcssa$i|0); + $354 = ((($$4$lcssa$i)) + 12|0); + $355 = HEAP32[$354>>2]|0; + $356 = ($355|0)==($$4$lcssa$i|0); do { - if ($354) { - $364 = ((($v$3$lcssa$i)) + 20|0); - $365 = HEAP32[$364>>2]|0; - $366 = ($365|0)==(0|0); - if ($366) { - $367 = ((($v$3$lcssa$i)) + 16|0); - $368 = HEAP32[$367>>2]|0; - $369 = ($368|0)==(0|0); - if ($369) { - $R$1$i20 = 0; + if ($356) { + $366 = ((($$4$lcssa$i)) + 20|0); + $367 = HEAP32[$366>>2]|0; + $368 = ($367|0)==(0|0); + if ($368) { + $369 = ((($$4$lcssa$i)) + 16|0); + $370 = HEAP32[$369>>2]|0; + $371 = ($370|0)==(0|0); + if ($371) { + $$3372$i = 0; break; } else { - $R$0$i18 = $368;$RP$0$i17 = $367; + $$1370$i = $370;$$1374$i = $369; } } else { - $R$0$i18 = $365;$RP$0$i17 = $364; + $$1370$i = $367;$$1374$i = $366; } while(1) { - $370 = ((($R$0$i18)) + 20|0); - $371 = HEAP32[$370>>2]|0; - $372 = ($371|0)==(0|0); - if (!($372)) { - $R$0$i18 = $371;$RP$0$i17 = $370; + $372 = ((($$1370$i)) + 20|0); + $373 = HEAP32[$372>>2]|0; + $374 = ($373|0)==(0|0); + if (!($374)) { + $$1370$i = $373;$$1374$i = $372; continue; } - $373 = ((($R$0$i18)) + 16|0); - $374 = HEAP32[$373>>2]|0; - $375 = ($374|0)==(0|0); - if ($375) { - $R$0$i18$lcssa = $R$0$i18;$RP$0$i17$lcssa = $RP$0$i17; + $375 = ((($$1370$i)) + 16|0); + $376 = HEAP32[$375>>2]|0; + $377 = ($376|0)==(0|0); + if ($377) { break; } else { - $R$0$i18 = $374;$RP$0$i17 = $373; + $$1370$i = $376;$$1374$i = $375; } } - $376 = ($RP$0$i17$lcssa>>>0)<($346>>>0); - if ($376) { + $378 = ($$1374$i>>>0)<($348>>>0); + if ($378) { _abort(); // unreachable; } else { - HEAP32[$RP$0$i17$lcssa>>2] = 0; - $R$1$i20 = $R$0$i18$lcssa; + HEAP32[$$1374$i>>2] = 0; + $$3372$i = $$1370$i; break; } } else { - $355 = ((($v$3$lcssa$i)) + 8|0); - $356 = HEAP32[$355>>2]|0; - $357 = ($356>>>0)<($346>>>0); - if ($357) { + $357 = ((($$4$lcssa$i)) + 8|0); + $358 = HEAP32[$357>>2]|0; + $359 = ($358>>>0)<($348>>>0); + if ($359) { _abort(); // unreachable; } - $358 = ((($356)) + 12|0); - $359 = HEAP32[$358>>2]|0; - $360 = ($359|0)==($v$3$lcssa$i|0); - if (!($360)) { + $360 = ((($358)) + 12|0); + $361 = HEAP32[$360>>2]|0; + $362 = ($361|0)==($$4$lcssa$i|0); + if (!($362)) { _abort(); // unreachable; } - $361 = ((($353)) + 8|0); - $362 = HEAP32[$361>>2]|0; - $363 = ($362|0)==($v$3$lcssa$i|0); - if ($363) { - HEAP32[$358>>2] = $353; - HEAP32[$361>>2] = $356; - $R$1$i20 = $353; + $363 = ((($355)) + 8|0); + $364 = HEAP32[$363>>2]|0; + $365 = ($364|0)==($$4$lcssa$i|0); + if ($365) { + HEAP32[$360>>2] = $355; + HEAP32[$363>>2] = $358; + $$3372$i = $355; break; } else { _abort(); @@ -21507,55 +17906,60 @@ function _malloc($bytes) { } } } while(0); - $377 = ($351|0)==(0|0); - do { - if (!($377)) { - $378 = ((($v$3$lcssa$i)) + 28|0); - $379 = HEAP32[$378>>2]|0; - $380 = (32980 + ($379<<2)|0); + $379 = ($353|0)==(0|0); + L164: do { + if ($379) { + $470 = $250; + } else { + $380 = ((($$4$lcssa$i)) + 28|0); $381 = HEAP32[$380>>2]|0; - $382 = ($v$3$lcssa$i|0)==($381|0); - if ($382) { - HEAP32[$380>>2] = $R$1$i20; - $cond$i21 = ($R$1$i20|0)==(0|0); - if ($cond$i21) { - $383 = 1 << $379; - $384 = $383 ^ -1; - $385 = HEAP32[(32680)>>2]|0; - $386 = $385 & $384; - HEAP32[(32680)>>2] = $386; - break; - } - } else { - $387 = HEAP32[(32692)>>2]|0; - $388 = ($351>>>0)<($387>>>0); - if ($388) { - _abort(); - // unreachable; - } - $389 = ((($351)) + 16|0); - $390 = HEAP32[$389>>2]|0; - $391 = ($390|0)==($v$3$lcssa$i|0); - if ($391) { - HEAP32[$389>>2] = $R$1$i20; + $382 = (33268 + ($381<<2)|0); + $383 = HEAP32[$382>>2]|0; + $384 = ($$4$lcssa$i|0)==($383|0); + do { + if ($384) { + HEAP32[$382>>2] = $$3372$i; + $cond$i208 = ($$3372$i|0)==(0|0); + if ($cond$i208) { + $385 = 1 << $381; + $386 = $385 ^ -1; + $387 = $250 & $386; + HEAP32[(32968)>>2] = $387; + $470 = $387; + break L164; + } } else { - $392 = ((($351)) + 20|0); - HEAP32[$392>>2] = $R$1$i20; - } - $393 = ($R$1$i20|0)==(0|0); - if ($393) { - break; + $388 = HEAP32[(32980)>>2]|0; + $389 = ($353>>>0)<($388>>>0); + if ($389) { + _abort(); + // unreachable; + } else { + $390 = ((($353)) + 16|0); + $391 = HEAP32[$390>>2]|0; + $not$$i209 = ($391|0)!=($$4$lcssa$i|0); + $$sink3$i = $not$$i209&1; + $392 = (((($353)) + 16|0) + ($$sink3$i<<2)|0); + HEAP32[$392>>2] = $$3372$i; + $393 = ($$3372$i|0)==(0|0); + if ($393) { + $470 = $250; + break L164; + } else { + break; + } + } } - } - $394 = HEAP32[(32692)>>2]|0; - $395 = ($R$1$i20>>>0)<($394>>>0); + } while(0); + $394 = HEAP32[(32980)>>2]|0; + $395 = ($$3372$i>>>0)<($394>>>0); if ($395) { _abort(); // unreachable; } - $396 = ((($R$1$i20)) + 24|0); - HEAP32[$396>>2] = $351; - $397 = ((($v$3$lcssa$i)) + 16|0); + $396 = ((($$3372$i)) + 24|0); + HEAP32[$396>>2] = $353; + $397 = ((($$4$lcssa$i)) + 16|0); $398 = HEAP32[$397>>2]|0; $399 = ($398|0)==(0|0); do { @@ -21565,930 +17969,862 @@ function _malloc($bytes) { _abort(); // unreachable; } else { - $401 = ((($R$1$i20)) + 16|0); + $401 = ((($$3372$i)) + 16|0); HEAP32[$401>>2] = $398; $402 = ((($398)) + 24|0); - HEAP32[$402>>2] = $R$1$i20; + HEAP32[$402>>2] = $$3372$i; break; } } } while(0); - $403 = ((($v$3$lcssa$i)) + 20|0); + $403 = ((($$4$lcssa$i)) + 20|0); $404 = HEAP32[$403>>2]|0; $405 = ($404|0)==(0|0); - if (!($405)) { - $406 = HEAP32[(32692)>>2]|0; + if ($405) { + $470 = $250; + } else { + $406 = HEAP32[(32980)>>2]|0; $407 = ($404>>>0)<($406>>>0); if ($407) { _abort(); // unreachable; } else { - $408 = ((($R$1$i20)) + 20|0); + $408 = ((($$3372$i)) + 20|0); HEAP32[$408>>2] = $404; $409 = ((($404)) + 24|0); - HEAP32[$409>>2] = $R$1$i20; + HEAP32[$409>>2] = $$3372$i; + $470 = $250; break; } } } } while(0); - $410 = ($rsize$3$lcssa$i>>>0)<(16); - L199: do { + $410 = ($$4351$lcssa$i>>>0)<(16); + do { if ($410) { - $411 = (($rsize$3$lcssa$i) + ($246))|0; + $411 = (($$4351$lcssa$i) + ($249))|0; $412 = $411 | 3; - $413 = ((($v$3$lcssa$i)) + 4|0); + $413 = ((($$4$lcssa$i)) + 4|0); HEAP32[$413>>2] = $412; - $$sum18$i = (($411) + 4)|0; - $414 = (($v$3$lcssa$i) + ($$sum18$i)|0); - $415 = HEAP32[$414>>2]|0; - $416 = $415 | 1; - HEAP32[$414>>2] = $416; + $414 = (($$4$lcssa$i) + ($411)|0); + $415 = ((($414)) + 4|0); + $416 = HEAP32[$415>>2]|0; + $417 = $416 | 1; + HEAP32[$415>>2] = $417; } else { - $417 = $246 | 3; - $418 = ((($v$3$lcssa$i)) + 4|0); - HEAP32[$418>>2] = $417; - $419 = $rsize$3$lcssa$i | 1; - $$sum$i2334 = $246 | 4; - $420 = (($v$3$lcssa$i) + ($$sum$i2334)|0); - HEAP32[$420>>2] = $419; - $$sum1$i24 = (($rsize$3$lcssa$i) + ($246))|0; - $421 = (($v$3$lcssa$i) + ($$sum1$i24)|0); - HEAP32[$421>>2] = $rsize$3$lcssa$i; - $422 = $rsize$3$lcssa$i >>> 3; - $423 = ($rsize$3$lcssa$i>>>0)<(256); - if ($423) { - $424 = $422 << 1; - $425 = (32716 + ($424<<2)|0); - $426 = HEAP32[32676>>2]|0; - $427 = 1 << $422; - $428 = $426 & $427; - $429 = ($428|0)==(0); - if ($429) { - $430 = $426 | $427; - HEAP32[32676>>2] = $430; - $$pre$i25 = (($424) + 2)|0; - $$pre43$i = (32716 + ($$pre$i25<<2)|0); - $$pre$phi$i26Z2D = $$pre43$i;$F5$0$i = $425; + $418 = $249 | 3; + $419 = ((($$4$lcssa$i)) + 4|0); + HEAP32[$419>>2] = $418; + $420 = $$4351$lcssa$i | 1; + $421 = ((($350)) + 4|0); + HEAP32[$421>>2] = $420; + $422 = (($350) + ($$4351$lcssa$i)|0); + HEAP32[$422>>2] = $$4351$lcssa$i; + $423 = $$4351$lcssa$i >>> 3; + $424 = ($$4351$lcssa$i>>>0)<(256); + if ($424) { + $425 = $423 << 1; + $426 = (33004 + ($425<<2)|0); + $427 = HEAP32[8241]|0; + $428 = 1 << $423; + $429 = $427 & $428; + $430 = ($429|0)==(0); + if ($430) { + $431 = $427 | $428; + HEAP32[8241] = $431; + $$pre$i210 = ((($426)) + 8|0); + $$0368$i = $426;$$pre$phi$i211Z2D = $$pre$i210; } else { - $$sum17$i = (($424) + 2)|0; - $431 = (32716 + ($$sum17$i<<2)|0); - $432 = HEAP32[$431>>2]|0; - $433 = HEAP32[(32692)>>2]|0; - $434 = ($432>>>0)<($433>>>0); - if ($434) { + $432 = ((($426)) + 8|0); + $433 = HEAP32[$432>>2]|0; + $434 = HEAP32[(32980)>>2]|0; + $435 = ($433>>>0)<($434>>>0); + if ($435) { _abort(); // unreachable; } else { - $$pre$phi$i26Z2D = $431;$F5$0$i = $432; + $$0368$i = $433;$$pre$phi$i211Z2D = $432; } } - HEAP32[$$pre$phi$i26Z2D>>2] = $348; - $435 = ((($F5$0$i)) + 12|0); - HEAP32[$435>>2] = $348; - $$sum15$i = (($246) + 8)|0; - $436 = (($v$3$lcssa$i) + ($$sum15$i)|0); - HEAP32[$436>>2] = $F5$0$i; - $$sum16$i = (($246) + 12)|0; - $437 = (($v$3$lcssa$i) + ($$sum16$i)|0); - HEAP32[$437>>2] = $425; + HEAP32[$$pre$phi$i211Z2D>>2] = $350; + $436 = ((($$0368$i)) + 12|0); + HEAP32[$436>>2] = $350; + $437 = ((($350)) + 8|0); + HEAP32[$437>>2] = $$0368$i; + $438 = ((($350)) + 12|0); + HEAP32[$438>>2] = $426; break; } - $438 = $rsize$3$lcssa$i >>> 8; - $439 = ($438|0)==(0); - if ($439) { - $I7$0$i = 0; + $439 = $$4351$lcssa$i >>> 8; + $440 = ($439|0)==(0); + if ($440) { + $$0361$i = 0; } else { - $440 = ($rsize$3$lcssa$i>>>0)>(16777215); - if ($440) { - $I7$0$i = 31; + $441 = ($$4351$lcssa$i>>>0)>(16777215); + if ($441) { + $$0361$i = 31; } else { - $441 = (($438) + 1048320)|0; - $442 = $441 >>> 16; - $443 = $442 & 8; - $444 = $438 << $443; - $445 = (($444) + 520192)|0; - $446 = $445 >>> 16; - $447 = $446 & 4; - $448 = $447 | $443; - $449 = $444 << $447; - $450 = (($449) + 245760)|0; - $451 = $450 >>> 16; - $452 = $451 & 2; - $453 = $448 | $452; - $454 = (14 - ($453))|0; - $455 = $449 << $452; - $456 = $455 >>> 15; - $457 = (($454) + ($456))|0; - $458 = $457 << 1; - $459 = (($457) + 7)|0; - $460 = $rsize$3$lcssa$i >>> $459; - $461 = $460 & 1; - $462 = $461 | $458; - $I7$0$i = $462; + $442 = (($439) + 1048320)|0; + $443 = $442 >>> 16; + $444 = $443 & 8; + $445 = $439 << $444; + $446 = (($445) + 520192)|0; + $447 = $446 >>> 16; + $448 = $447 & 4; + $449 = $448 | $444; + $450 = $445 << $448; + $451 = (($450) + 245760)|0; + $452 = $451 >>> 16; + $453 = $452 & 2; + $454 = $449 | $453; + $455 = (14 - ($454))|0; + $456 = $450 << $453; + $457 = $456 >>> 15; + $458 = (($455) + ($457))|0; + $459 = $458 << 1; + $460 = (($458) + 7)|0; + $461 = $$4351$lcssa$i >>> $460; + $462 = $461 & 1; + $463 = $462 | $459; + $$0361$i = $463; } } - $463 = (32980 + ($I7$0$i<<2)|0); - $$sum2$i = (($246) + 28)|0; - $464 = (($v$3$lcssa$i) + ($$sum2$i)|0); - HEAP32[$464>>2] = $I7$0$i; - $$sum3$i27 = (($246) + 16)|0; - $465 = (($v$3$lcssa$i) + ($$sum3$i27)|0); - $$sum4$i28 = (($246) + 20)|0; - $466 = (($v$3$lcssa$i) + ($$sum4$i28)|0); + $464 = (33268 + ($$0361$i<<2)|0); + $465 = ((($350)) + 28|0); + HEAP32[$465>>2] = $$0361$i; + $466 = ((($350)) + 16|0); + $467 = ((($466)) + 4|0); + HEAP32[$467>>2] = 0; HEAP32[$466>>2] = 0; - HEAP32[$465>>2] = 0; - $467 = HEAP32[(32680)>>2]|0; - $468 = 1 << $I7$0$i; - $469 = $467 & $468; - $470 = ($469|0)==(0); - if ($470) { - $471 = $467 | $468; - HEAP32[(32680)>>2] = $471; - HEAP32[$463>>2] = $348; - $$sum5$i = (($246) + 24)|0; - $472 = (($v$3$lcssa$i) + ($$sum5$i)|0); - HEAP32[$472>>2] = $463; - $$sum6$i = (($246) + 12)|0; - $473 = (($v$3$lcssa$i) + ($$sum6$i)|0); - HEAP32[$473>>2] = $348; - $$sum7$i = (($246) + 8)|0; - $474 = (($v$3$lcssa$i) + ($$sum7$i)|0); - HEAP32[$474>>2] = $348; + $468 = 1 << $$0361$i; + $469 = $470 & $468; + $471 = ($469|0)==(0); + if ($471) { + $472 = $470 | $468; + HEAP32[(32968)>>2] = $472; + HEAP32[$464>>2] = $350; + $473 = ((($350)) + 24|0); + HEAP32[$473>>2] = $464; + $474 = ((($350)) + 12|0); + HEAP32[$474>>2] = $350; + $475 = ((($350)) + 8|0); + HEAP32[$475>>2] = $350; break; } - $475 = HEAP32[$463>>2]|0; - $476 = ((($475)) + 4|0); - $477 = HEAP32[$476>>2]|0; - $478 = $477 & -8; - $479 = ($478|0)==($rsize$3$lcssa$i|0); - L217: do { - if ($479) { - $T$0$lcssa$i = $475; + $476 = HEAP32[$464>>2]|0; + $477 = ($$0361$i|0)==(31); + $478 = $$0361$i >>> 1; + $479 = (25 - ($478))|0; + $480 = $477 ? 0 : $479; + $481 = $$4351$lcssa$i << $480; + $$0344$i = $481;$$0345$i = $476; + while(1) { + $482 = ((($$0345$i)) + 4|0); + $483 = HEAP32[$482>>2]|0; + $484 = $483 & -8; + $485 = ($484|0)==($$4351$lcssa$i|0); + if ($485) { + label = 139; + break; + } + $486 = $$0344$i >>> 31; + $487 = (((($$0345$i)) + 16|0) + ($486<<2)|0); + $488 = $$0344$i << 1; + $489 = HEAP32[$487>>2]|0; + $490 = ($489|0)==(0|0); + if ($490) { + label = 136; + break; } else { - $480 = ($I7$0$i|0)==(31); - $481 = $I7$0$i >>> 1; - $482 = (25 - ($481))|0; - $483 = $480 ? 0 : $482; - $484 = $rsize$3$lcssa$i << $483; - $K12$029$i = $484;$T$028$i = $475; - while(1) { - $491 = $K12$029$i >>> 31; - $492 = (((($T$028$i)) + 16|0) + ($491<<2)|0); - $487 = HEAP32[$492>>2]|0; - $493 = ($487|0)==(0|0); - if ($493) { - $$lcssa232 = $492;$T$028$i$lcssa = $T$028$i; - break; - } - $485 = $K12$029$i << 1; - $486 = ((($487)) + 4|0); - $488 = HEAP32[$486>>2]|0; - $489 = $488 & -8; - $490 = ($489|0)==($rsize$3$lcssa$i|0); - if ($490) { - $T$0$lcssa$i = $487; - break L217; - } else { - $K12$029$i = $485;$T$028$i = $487; - } - } - $494 = HEAP32[(32692)>>2]|0; - $495 = ($$lcssa232>>>0)<($494>>>0); - if ($495) { - _abort(); - // unreachable; - } else { - HEAP32[$$lcssa232>>2] = $348; - $$sum11$i = (($246) + 24)|0; - $496 = (($v$3$lcssa$i) + ($$sum11$i)|0); - HEAP32[$496>>2] = $T$028$i$lcssa; - $$sum12$i = (($246) + 12)|0; - $497 = (($v$3$lcssa$i) + ($$sum12$i)|0); - HEAP32[$497>>2] = $348; - $$sum13$i = (($246) + 8)|0; - $498 = (($v$3$lcssa$i) + ($$sum13$i)|0); - HEAP32[$498>>2] = $348; - break L199; - } + $$0344$i = $488;$$0345$i = $489; + } + } + if ((label|0) == 136) { + $491 = HEAP32[(32980)>>2]|0; + $492 = ($487>>>0)<($491>>>0); + if ($492) { + _abort(); + // unreachable; + } else { + HEAP32[$487>>2] = $350; + $493 = ((($350)) + 24|0); + HEAP32[$493>>2] = $$0345$i; + $494 = ((($350)) + 12|0); + HEAP32[$494>>2] = $350; + $495 = ((($350)) + 8|0); + HEAP32[$495>>2] = $350; + break; + } + } + else if ((label|0) == 139) { + $496 = ((($$0345$i)) + 8|0); + $497 = HEAP32[$496>>2]|0; + $498 = HEAP32[(32980)>>2]|0; + $499 = ($497>>>0)>=($498>>>0); + $not$9$i = ($$0345$i>>>0)>=($498>>>0); + $500 = $499 & $not$9$i; + if ($500) { + $501 = ((($497)) + 12|0); + HEAP32[$501>>2] = $350; + HEAP32[$496>>2] = $350; + $502 = ((($350)) + 8|0); + HEAP32[$502>>2] = $497; + $503 = ((($350)) + 12|0); + HEAP32[$503>>2] = $$0345$i; + $504 = ((($350)) + 24|0); + HEAP32[$504>>2] = 0; + break; + } else { + _abort(); + // unreachable; } - } while(0); - $499 = ((($T$0$lcssa$i)) + 8|0); - $500 = HEAP32[$499>>2]|0; - $501 = HEAP32[(32692)>>2]|0; - $502 = ($500>>>0)>=($501>>>0); - $not$$i = ($T$0$lcssa$i>>>0)>=($501>>>0); - $503 = $502 & $not$$i; - if ($503) { - $504 = ((($500)) + 12|0); - HEAP32[$504>>2] = $348; - HEAP32[$499>>2] = $348; - $$sum8$i = (($246) + 8)|0; - $505 = (($v$3$lcssa$i) + ($$sum8$i)|0); - HEAP32[$505>>2] = $500; - $$sum9$i = (($246) + 12)|0; - $506 = (($v$3$lcssa$i) + ($$sum9$i)|0); - HEAP32[$506>>2] = $T$0$lcssa$i; - $$sum10$i = (($246) + 24)|0; - $507 = (($v$3$lcssa$i) + ($$sum10$i)|0); - HEAP32[$507>>2] = 0; - break; - } else { - _abort(); - // unreachable; } } } while(0); - $508 = ((($v$3$lcssa$i)) + 8|0); - $mem$0 = $508; - return ($mem$0|0); + $505 = ((($$4$lcssa$i)) + 8|0); + $$0 = $505; + STACKTOP = sp;return ($$0|0); } else { - $nb$0 = $246; + $$0197 = $249; } } } } } } while(0); - $509 = HEAP32[(32684)>>2]|0; - $510 = ($509>>>0)<($nb$0>>>0); - if (!($510)) { - $511 = (($509) - ($nb$0))|0; - $512 = HEAP32[(32696)>>2]|0; - $513 = ($511>>>0)>(15); - if ($513) { - $514 = (($512) + ($nb$0)|0); - HEAP32[(32696)>>2] = $514; - HEAP32[(32684)>>2] = $511; - $515 = $511 | 1; - $$sum2 = (($nb$0) + 4)|0; - $516 = (($512) + ($$sum2)|0); + $506 = HEAP32[(32972)>>2]|0; + $507 = ($506>>>0)<($$0197>>>0); + if (!($507)) { + $508 = (($506) - ($$0197))|0; + $509 = HEAP32[(32984)>>2]|0; + $510 = ($508>>>0)>(15); + if ($510) { + $511 = (($509) + ($$0197)|0); + HEAP32[(32984)>>2] = $511; + HEAP32[(32972)>>2] = $508; + $512 = $508 | 1; + $513 = ((($511)) + 4|0); + HEAP32[$513>>2] = $512; + $514 = (($511) + ($508)|0); + HEAP32[$514>>2] = $508; + $515 = $$0197 | 3; + $516 = ((($509)) + 4|0); HEAP32[$516>>2] = $515; - $517 = (($512) + ($509)|0); - HEAP32[$517>>2] = $511; - $518 = $nb$0 | 3; - $519 = ((($512)) + 4|0); - HEAP32[$519>>2] = $518; } else { - HEAP32[(32684)>>2] = 0; - HEAP32[(32696)>>2] = 0; - $520 = $509 | 3; - $521 = ((($512)) + 4|0); - HEAP32[$521>>2] = $520; - $$sum1 = (($509) + 4)|0; - $522 = (($512) + ($$sum1)|0); - $523 = HEAP32[$522>>2]|0; - $524 = $523 | 1; - HEAP32[$522>>2] = $524; - } - $525 = ((($512)) + 8|0); - $mem$0 = $525; - return ($mem$0|0); + HEAP32[(32972)>>2] = 0; + HEAP32[(32984)>>2] = 0; + $517 = $506 | 3; + $518 = ((($509)) + 4|0); + HEAP32[$518>>2] = $517; + $519 = (($509) + ($506)|0); + $520 = ((($519)) + 4|0); + $521 = HEAP32[$520>>2]|0; + $522 = $521 | 1; + HEAP32[$520>>2] = $522; + } + $523 = ((($509)) + 8|0); + $$0 = $523; + STACKTOP = sp;return ($$0|0); } - $526 = HEAP32[(32688)>>2]|0; - $527 = ($526>>>0)>($nb$0>>>0); - if ($527) { - $528 = (($526) - ($nb$0))|0; - HEAP32[(32688)>>2] = $528; - $529 = HEAP32[(32700)>>2]|0; - $530 = (($529) + ($nb$0)|0); - HEAP32[(32700)>>2] = $530; - $531 = $528 | 1; - $$sum = (($nb$0) + 4)|0; - $532 = (($529) + ($$sum)|0); + $524 = HEAP32[(32976)>>2]|0; + $525 = ($524>>>0)>($$0197>>>0); + if ($525) { + $526 = (($524) - ($$0197))|0; + HEAP32[(32976)>>2] = $526; + $527 = HEAP32[(32988)>>2]|0; + $528 = (($527) + ($$0197)|0); + HEAP32[(32988)>>2] = $528; + $529 = $526 | 1; + $530 = ((($528)) + 4|0); + HEAP32[$530>>2] = $529; + $531 = $$0197 | 3; + $532 = ((($527)) + 4|0); HEAP32[$532>>2] = $531; - $533 = $nb$0 | 3; - $534 = ((($529)) + 4|0); - HEAP32[$534>>2] = $533; - $535 = ((($529)) + 8|0); - $mem$0 = $535; - return ($mem$0|0); + $533 = ((($527)) + 8|0); + $$0 = $533; + STACKTOP = sp;return ($$0|0); } - $536 = HEAP32[33148>>2]|0; - $537 = ($536|0)==(0); - do { - if ($537) { - $538 = (_sysconf(30)|0); - $539 = (($538) + -1)|0; - $540 = $539 & $538; - $541 = ($540|0)==(0); - if ($541) { - HEAP32[(33156)>>2] = $538; - HEAP32[(33152)>>2] = $538; - HEAP32[(33160)>>2] = -1; - HEAP32[(33164)>>2] = -1; - HEAP32[(33168)>>2] = 0; - HEAP32[(33120)>>2] = 0; - $542 = (_time((0|0))|0); - $543 = $542 & -16; - $544 = $543 ^ 1431655768; - HEAP32[33148>>2] = $544; - break; - } else { - _abort(); - // unreachable; - } - } - } while(0); - $545 = (($nb$0) + 48)|0; - $546 = HEAP32[(33156)>>2]|0; - $547 = (($nb$0) + 47)|0; - $548 = (($546) + ($547))|0; - $549 = (0 - ($546))|0; - $550 = $548 & $549; - $551 = ($550>>>0)>($nb$0>>>0); - if (!($551)) { - $mem$0 = 0; - return ($mem$0|0); + $534 = HEAP32[8359]|0; + $535 = ($534|0)==(0); + if ($535) { + HEAP32[(33444)>>2] = 4096; + HEAP32[(33440)>>2] = 4096; + HEAP32[(33448)>>2] = -1; + HEAP32[(33452)>>2] = -1; + HEAP32[(33456)>>2] = 0; + HEAP32[(33408)>>2] = 0; + $536 = $1; + $537 = $536 & -16; + $538 = $537 ^ 1431655768; + HEAP32[$1>>2] = $538; + HEAP32[8359] = $538; + $542 = 4096; + } else { + $$pre$i212 = HEAP32[(33444)>>2]|0; + $542 = $$pre$i212; + } + $539 = (($$0197) + 48)|0; + $540 = (($$0197) + 47)|0; + $541 = (($542) + ($540))|0; + $543 = (0 - ($542))|0; + $544 = $541 & $543; + $545 = ($544>>>0)>($$0197>>>0); + if (!($545)) { + $$0 = 0; + STACKTOP = sp;return ($$0|0); } - $552 = HEAP32[(33116)>>2]|0; - $553 = ($552|0)==(0); - if (!($553)) { - $554 = HEAP32[(33108)>>2]|0; - $555 = (($554) + ($550))|0; - $556 = ($555>>>0)<=($554>>>0); - $557 = ($555>>>0)>($552>>>0); - $or$cond1$i = $556 | $557; + $546 = HEAP32[(33404)>>2]|0; + $547 = ($546|0)==(0); + if (!($547)) { + $548 = HEAP32[(33396)>>2]|0; + $549 = (($548) + ($544))|0; + $550 = ($549>>>0)<=($548>>>0); + $551 = ($549>>>0)>($546>>>0); + $or$cond1$i = $550 | $551; if ($or$cond1$i) { - $mem$0 = 0; - return ($mem$0|0); + $$0 = 0; + STACKTOP = sp;return ($$0|0); } } - $558 = HEAP32[(33120)>>2]|0; - $559 = $558 & 4; - $560 = ($559|0)==(0); - L258: do { - if ($560) { - $561 = HEAP32[(32700)>>2]|0; - $562 = ($561|0)==(0|0); - L260: do { - if ($562) { - label = 174; + $552 = HEAP32[(33408)>>2]|0; + $553 = $552 & 4; + $554 = ($553|0)==(0); + L244: do { + if ($554) { + $555 = HEAP32[(32988)>>2]|0; + $556 = ($555|0)==(0|0); + L246: do { + if ($556) { + label = 163; } else { - $sp$0$i$i = (33124); + $$0$i$i = (33412); while(1) { - $563 = HEAP32[$sp$0$i$i>>2]|0; - $564 = ($563>>>0)>($561>>>0); - if (!($564)) { - $565 = ((($sp$0$i$i)) + 4|0); - $566 = HEAP32[$565>>2]|0; - $567 = (($563) + ($566)|0); - $568 = ($567>>>0)>($561>>>0); - if ($568) { - $$lcssa228 = $sp$0$i$i;$$lcssa230 = $565; + $557 = HEAP32[$$0$i$i>>2]|0; + $558 = ($557>>>0)>($555>>>0); + if (!($558)) { + $559 = ((($$0$i$i)) + 4|0); + $560 = HEAP32[$559>>2]|0; + $561 = (($557) + ($560)|0); + $562 = ($561>>>0)>($555>>>0); + if ($562) { break; } } - $569 = ((($sp$0$i$i)) + 8|0); - $570 = HEAP32[$569>>2]|0; - $571 = ($570|0)==(0|0); - if ($571) { - label = 174; - break L260; + $563 = ((($$0$i$i)) + 8|0); + $564 = HEAP32[$563>>2]|0; + $565 = ($564|0)==(0|0); + if ($565) { + label = 163; + break L246; } else { - $sp$0$i$i = $570; + $$0$i$i = $564; } } - $594 = HEAP32[(32688)>>2]|0; - $595 = (($548) - ($594))|0; - $596 = $595 & $549; - $597 = ($596>>>0)<(2147483647); - if ($597) { - $598 = (_sbrk(($596|0))|0); - $599 = HEAP32[$$lcssa228>>2]|0; - $600 = HEAP32[$$lcssa230>>2]|0; - $601 = (($599) + ($600)|0); - $602 = ($598|0)==($601|0); - $$3$i = $602 ? $596 : 0; - if ($602) { - $603 = ($598|0)==((-1)|0); - if ($603) { - $tsize$0323944$i = $$3$i; + $588 = (($541) - ($524))|0; + $589 = $588 & $543; + $590 = ($589>>>0)<(2147483647); + if ($590) { + $591 = (_sbrk(($589|0))|0); + $592 = HEAP32[$$0$i$i>>2]|0; + $593 = HEAP32[$559>>2]|0; + $594 = (($592) + ($593)|0); + $595 = ($591|0)==($594|0); + if ($595) { + $596 = ($591|0)==((-1)|0); + if ($596) { + $$2234253237$i = $589; } else { - $tbase$255$i = $598;$tsize$254$i = $$3$i; - label = 194; - break L258; + $$723948$i = $589;$$749$i = $591; + label = 180; + break L244; } } else { - $br$0$ph$i = $598;$ssize$1$ph$i = $596;$tsize$0$ph$i = $$3$i; - label = 184; + $$2247$ph$i = $591;$$2253$ph$i = $589; + label = 171; } } else { - $tsize$0323944$i = 0; + $$2234253237$i = 0; } } } while(0); do { - if ((label|0) == 174) { - $572 = (_sbrk(0)|0); - $573 = ($572|0)==((-1)|0); - if ($573) { - $tsize$0323944$i = 0; + if ((label|0) == 163) { + $566 = (_sbrk(0)|0); + $567 = ($566|0)==((-1)|0); + if ($567) { + $$2234253237$i = 0; } else { - $574 = $572; - $575 = HEAP32[(33152)>>2]|0; - $576 = (($575) + -1)|0; - $577 = $576 & $574; - $578 = ($577|0)==(0); - if ($578) { - $ssize$0$i = $550; - } else { - $579 = (($576) + ($574))|0; - $580 = (0 - ($575))|0; - $581 = $579 & $580; - $582 = (($550) - ($574))|0; - $583 = (($582) + ($581))|0; - $ssize$0$i = $583; - } - $584 = HEAP32[(33108)>>2]|0; - $585 = (($584) + ($ssize$0$i))|0; - $586 = ($ssize$0$i>>>0)>($nb$0>>>0); - $587 = ($ssize$0$i>>>0)<(2147483647); - $or$cond$i30 = $586 & $587; - if ($or$cond$i30) { - $588 = HEAP32[(33116)>>2]|0; - $589 = ($588|0)==(0); - if (!($589)) { - $590 = ($585>>>0)<=($584>>>0); - $591 = ($585>>>0)>($588>>>0); - $or$cond2$i = $590 | $591; - if ($or$cond2$i) { - $tsize$0323944$i = 0; + $568 = $566; + $569 = HEAP32[(33440)>>2]|0; + $570 = (($569) + -1)|0; + $571 = $570 & $568; + $572 = ($571|0)==(0); + $573 = (($570) + ($568))|0; + $574 = (0 - ($569))|0; + $575 = $573 & $574; + $576 = (($575) - ($568))|0; + $577 = $572 ? 0 : $576; + $$$i = (($577) + ($544))|0; + $578 = HEAP32[(33396)>>2]|0; + $579 = (($$$i) + ($578))|0; + $580 = ($$$i>>>0)>($$0197>>>0); + $581 = ($$$i>>>0)<(2147483647); + $or$cond$i214 = $580 & $581; + if ($or$cond$i214) { + $582 = HEAP32[(33404)>>2]|0; + $583 = ($582|0)==(0); + if (!($583)) { + $584 = ($579>>>0)<=($578>>>0); + $585 = ($579>>>0)>($582>>>0); + $or$cond2$i215 = $584 | $585; + if ($or$cond2$i215) { + $$2234253237$i = 0; break; } } - $592 = (_sbrk(($ssize$0$i|0))|0); - $593 = ($592|0)==($572|0); - $ssize$0$$i = $593 ? $ssize$0$i : 0; - if ($593) { - $tbase$255$i = $572;$tsize$254$i = $ssize$0$$i; - label = 194; - break L258; + $586 = (_sbrk(($$$i|0))|0); + $587 = ($586|0)==($566|0); + if ($587) { + $$723948$i = $$$i;$$749$i = $566; + label = 180; + break L244; } else { - $br$0$ph$i = $592;$ssize$1$ph$i = $ssize$0$i;$tsize$0$ph$i = $ssize$0$$i; - label = 184; + $$2247$ph$i = $586;$$2253$ph$i = $$$i; + label = 171; } } else { - $tsize$0323944$i = 0; + $$2234253237$i = 0; } } } } while(0); - L280: do { - if ((label|0) == 184) { - $604 = (0 - ($ssize$1$ph$i))|0; - $605 = ($br$0$ph$i|0)!=((-1)|0); - $606 = ($ssize$1$ph$i>>>0)<(2147483647); - $or$cond5$i = $606 & $605; - $607 = ($545>>>0)>($ssize$1$ph$i>>>0); - $or$cond6$i = $607 & $or$cond5$i; - do { - if ($or$cond6$i) { - $608 = HEAP32[(33156)>>2]|0; - $609 = (($547) - ($ssize$1$ph$i))|0; - $610 = (($609) + ($608))|0; - $611 = (0 - ($608))|0; - $612 = $610 & $611; - $613 = ($612>>>0)<(2147483647); - if ($613) { - $614 = (_sbrk(($612|0))|0); - $615 = ($614|0)==((-1)|0); - if ($615) { - (_sbrk(($604|0))|0); - $tsize$0323944$i = $tsize$0$ph$i; - break L280; - } else { - $616 = (($612) + ($ssize$1$ph$i))|0; - $ssize$2$i = $616; - break; - } - } else { - $ssize$2$i = $ssize$1$ph$i; - } + do { + if ((label|0) == 171) { + $597 = (0 - ($$2253$ph$i))|0; + $598 = ($$2247$ph$i|0)!=((-1)|0); + $599 = ($$2253$ph$i>>>0)<(2147483647); + $or$cond7$i = $599 & $598; + $600 = ($539>>>0)>($$2253$ph$i>>>0); + $or$cond10$i = $600 & $or$cond7$i; + if (!($or$cond10$i)) { + $610 = ($$2247$ph$i|0)==((-1)|0); + if ($610) { + $$2234253237$i = 0; + break; } else { - $ssize$2$i = $ssize$1$ph$i; + $$723948$i = $$2253$ph$i;$$749$i = $$2247$ph$i; + label = 180; + break L244; } - } while(0); - $617 = ($br$0$ph$i|0)==((-1)|0); - if ($617) { - $tsize$0323944$i = $tsize$0$ph$i; + } + $601 = HEAP32[(33444)>>2]|0; + $602 = (($540) - ($$2253$ph$i))|0; + $603 = (($602) + ($601))|0; + $604 = (0 - ($601))|0; + $605 = $603 & $604; + $606 = ($605>>>0)<(2147483647); + if (!($606)) { + $$723948$i = $$2253$ph$i;$$749$i = $$2247$ph$i; + label = 180; + break L244; + } + $607 = (_sbrk(($605|0))|0); + $608 = ($607|0)==((-1)|0); + if ($608) { + (_sbrk(($597|0))|0); + $$2234253237$i = 0; + break; } else { - $tbase$255$i = $br$0$ph$i;$tsize$254$i = $ssize$2$i; - label = 194; - break L258; + $609 = (($605) + ($$2253$ph$i))|0; + $$723948$i = $609;$$749$i = $$2247$ph$i; + label = 180; + break L244; } } } while(0); - $618 = HEAP32[(33120)>>2]|0; - $619 = $618 | 4; - HEAP32[(33120)>>2] = $619; - $tsize$1$i = $tsize$0323944$i; - label = 191; + $611 = HEAP32[(33408)>>2]|0; + $612 = $611 | 4; + HEAP32[(33408)>>2] = $612; + $$4236$i = $$2234253237$i; + label = 178; } else { - $tsize$1$i = 0; - label = 191; + $$4236$i = 0; + label = 178; } } while(0); - if ((label|0) == 191) { - $620 = ($550>>>0)<(2147483647); - if ($620) { - $621 = (_sbrk(($550|0))|0); - $622 = (_sbrk(0)|0); - $623 = ($621|0)!=((-1)|0); - $624 = ($622|0)!=((-1)|0); - $or$cond3$i = $623 & $624; - $625 = ($621>>>0)<($622>>>0); - $or$cond8$i = $625 & $or$cond3$i; - if ($or$cond8$i) { - $626 = $622; - $627 = $621; - $628 = (($626) - ($627))|0; - $629 = (($nb$0) + 40)|0; - $630 = ($628>>>0)>($629>>>0); - $$tsize$1$i = $630 ? $628 : $tsize$1$i; - if ($630) { - $tbase$255$i = $621;$tsize$254$i = $$tsize$1$i; - label = 194; - } + if ((label|0) == 178) { + $613 = ($544>>>0)<(2147483647); + if ($613) { + $614 = (_sbrk(($544|0))|0); + $615 = (_sbrk(0)|0); + $616 = ($614|0)!=((-1)|0); + $617 = ($615|0)!=((-1)|0); + $or$cond5$i = $616 & $617; + $618 = ($614>>>0)<($615>>>0); + $or$cond11$i = $618 & $or$cond5$i; + $619 = $615; + $620 = $614; + $621 = (($619) - ($620))|0; + $622 = (($$0197) + 40)|0; + $623 = ($621>>>0)>($622>>>0); + $$$4236$i = $623 ? $621 : $$4236$i; + $or$cond11$not$i = $or$cond11$i ^ 1; + $624 = ($614|0)==((-1)|0); + $not$$i216 = $623 ^ 1; + $625 = $624 | $not$$i216; + $or$cond50$i = $625 | $or$cond11$not$i; + if (!($or$cond50$i)) { + $$723948$i = $$$4236$i;$$749$i = $614; + label = 180; } } } - if ((label|0) == 194) { - $631 = HEAP32[(33108)>>2]|0; - $632 = (($631) + ($tsize$254$i))|0; - HEAP32[(33108)>>2] = $632; - $633 = HEAP32[(33112)>>2]|0; - $634 = ($632>>>0)>($633>>>0); - if ($634) { - HEAP32[(33112)>>2] = $632; - } - $635 = HEAP32[(32700)>>2]|0; - $636 = ($635|0)==(0|0); - L299: do { - if ($636) { - $637 = HEAP32[(32692)>>2]|0; - $638 = ($637|0)==(0|0); - $639 = ($tbase$255$i>>>0)<($637>>>0); - $or$cond9$i = $638 | $639; - if ($or$cond9$i) { - HEAP32[(32692)>>2] = $tbase$255$i; - } - HEAP32[(33124)>>2] = $tbase$255$i; - HEAP32[(33128)>>2] = $tsize$254$i; - HEAP32[(33136)>>2] = 0; - $640 = HEAP32[33148>>2]|0; - HEAP32[(32712)>>2] = $640; - HEAP32[(32708)>>2] = -1; - $i$02$i$i = 0; + if ((label|0) == 180) { + $626 = HEAP32[(33396)>>2]|0; + $627 = (($626) + ($$723948$i))|0; + HEAP32[(33396)>>2] = $627; + $628 = HEAP32[(33400)>>2]|0; + $629 = ($627>>>0)>($628>>>0); + if ($629) { + HEAP32[(33400)>>2] = $627; + } + $630 = HEAP32[(32988)>>2]|0; + $631 = ($630|0)==(0|0); + do { + if ($631) { + $632 = HEAP32[(32980)>>2]|0; + $633 = ($632|0)==(0|0); + $634 = ($$749$i>>>0)<($632>>>0); + $or$cond12$i = $633 | $634; + if ($or$cond12$i) { + HEAP32[(32980)>>2] = $$749$i; + } + HEAP32[(33412)>>2] = $$749$i; + HEAP32[(33416)>>2] = $$723948$i; + HEAP32[(33424)>>2] = 0; + $635 = HEAP32[8359]|0; + HEAP32[(33000)>>2] = $635; + HEAP32[(32996)>>2] = -1; + $$01$i$i = 0; while(1) { - $641 = $i$02$i$i << 1; - $642 = (32716 + ($641<<2)|0); - $$sum$i$i = (($641) + 3)|0; - $643 = (32716 + ($$sum$i$i<<2)|0); - HEAP32[$643>>2] = $642; - $$sum1$i$i = (($641) + 2)|0; - $644 = (32716 + ($$sum1$i$i<<2)|0); - HEAP32[$644>>2] = $642; - $645 = (($i$02$i$i) + 1)|0; - $exitcond$i$i = ($645|0)==(32); + $636 = $$01$i$i << 1; + $637 = (33004 + ($636<<2)|0); + $638 = ((($637)) + 12|0); + HEAP32[$638>>2] = $637; + $639 = ((($637)) + 8|0); + HEAP32[$639>>2] = $637; + $640 = (($$01$i$i) + 1)|0; + $exitcond$i$i = ($640|0)==(32); if ($exitcond$i$i) { break; } else { - $i$02$i$i = $645; + $$01$i$i = $640; } } - $646 = (($tsize$254$i) + -40)|0; - $647 = ((($tbase$255$i)) + 8|0); - $648 = $647; - $649 = $648 & 7; - $650 = ($649|0)==(0); - $651 = (0 - ($648))|0; - $652 = $651 & 7; - $653 = $650 ? 0 : $652; - $654 = (($tbase$255$i) + ($653)|0); - $655 = (($646) - ($653))|0; - HEAP32[(32700)>>2] = $654; - HEAP32[(32688)>>2] = $655; - $656 = $655 | 1; - $$sum$i13$i = (($653) + 4)|0; - $657 = (($tbase$255$i) + ($$sum$i13$i)|0); - HEAP32[$657>>2] = $656; - $$sum2$i$i = (($tsize$254$i) + -36)|0; - $658 = (($tbase$255$i) + ($$sum2$i$i)|0); - HEAP32[$658>>2] = 40; - $659 = HEAP32[(33164)>>2]|0; - HEAP32[(32704)>>2] = $659; + $641 = (($$723948$i) + -40)|0; + $642 = ((($$749$i)) + 8|0); + $643 = $642; + $644 = $643 & 7; + $645 = ($644|0)==(0); + $646 = (0 - ($643))|0; + $647 = $646 & 7; + $648 = $645 ? 0 : $647; + $649 = (($$749$i) + ($648)|0); + $650 = (($641) - ($648))|0; + HEAP32[(32988)>>2] = $649; + HEAP32[(32976)>>2] = $650; + $651 = $650 | 1; + $652 = ((($649)) + 4|0); + HEAP32[$652>>2] = $651; + $653 = (($649) + ($650)|0); + $654 = ((($653)) + 4|0); + HEAP32[$654>>2] = 40; + $655 = HEAP32[(33452)>>2]|0; + HEAP32[(32992)>>2] = $655; } else { - $sp$084$i = (33124); + $$024371$i = (33412); while(1) { - $660 = HEAP32[$sp$084$i>>2]|0; - $661 = ((($sp$084$i)) + 4|0); - $662 = HEAP32[$661>>2]|0; - $663 = (($660) + ($662)|0); - $664 = ($tbase$255$i|0)==($663|0); - if ($664) { - $$lcssa222 = $660;$$lcssa224 = $661;$$lcssa226 = $662;$sp$084$i$lcssa = $sp$084$i; - label = 204; + $656 = HEAP32[$$024371$i>>2]|0; + $657 = ((($$024371$i)) + 4|0); + $658 = HEAP32[$657>>2]|0; + $659 = (($656) + ($658)|0); + $660 = ($$749$i|0)==($659|0); + if ($660) { + label = 190; break; } - $665 = ((($sp$084$i)) + 8|0); - $666 = HEAP32[$665>>2]|0; - $667 = ($666|0)==(0|0); - if ($667) { + $661 = ((($$024371$i)) + 8|0); + $662 = HEAP32[$661>>2]|0; + $663 = ($662|0)==(0|0); + if ($663) { break; } else { - $sp$084$i = $666; + $$024371$i = $662; } } - if ((label|0) == 204) { - $668 = ((($sp$084$i$lcssa)) + 12|0); - $669 = HEAP32[$668>>2]|0; - $670 = $669 & 8; - $671 = ($670|0)==(0); - if ($671) { - $672 = ($635>>>0)>=($$lcssa222>>>0); - $673 = ($635>>>0)<($tbase$255$i>>>0); - $or$cond57$i = $673 & $672; - if ($or$cond57$i) { - $674 = (($$lcssa226) + ($tsize$254$i))|0; - HEAP32[$$lcssa224>>2] = $674; - $675 = HEAP32[(32688)>>2]|0; - $676 = (($675) + ($tsize$254$i))|0; - $677 = ((($635)) + 8|0); - $678 = $677; - $679 = $678 & 7; - $680 = ($679|0)==(0); - $681 = (0 - ($678))|0; - $682 = $681 & 7; - $683 = $680 ? 0 : $682; - $684 = (($635) + ($683)|0); - $685 = (($676) - ($683))|0; - HEAP32[(32700)>>2] = $684; - HEAP32[(32688)>>2] = $685; - $686 = $685 | 1; - $$sum$i17$i = (($683) + 4)|0; - $687 = (($635) + ($$sum$i17$i)|0); - HEAP32[$687>>2] = $686; - $$sum2$i18$i = (($676) + 4)|0; - $688 = (($635) + ($$sum2$i18$i)|0); - HEAP32[$688>>2] = 40; - $689 = HEAP32[(33164)>>2]|0; - HEAP32[(32704)>>2] = $689; + if ((label|0) == 190) { + $664 = ((($$024371$i)) + 12|0); + $665 = HEAP32[$664>>2]|0; + $666 = $665 & 8; + $667 = ($666|0)==(0); + if ($667) { + $668 = ($630>>>0)>=($656>>>0); + $669 = ($630>>>0)<($$749$i>>>0); + $or$cond51$i = $669 & $668; + if ($or$cond51$i) { + $670 = (($658) + ($$723948$i))|0; + HEAP32[$657>>2] = $670; + $671 = HEAP32[(32976)>>2]|0; + $672 = ((($630)) + 8|0); + $673 = $672; + $674 = $673 & 7; + $675 = ($674|0)==(0); + $676 = (0 - ($673))|0; + $677 = $676 & 7; + $678 = $675 ? 0 : $677; + $679 = (($630) + ($678)|0); + $680 = (($$723948$i) - ($678))|0; + $681 = (($671) + ($680))|0; + HEAP32[(32988)>>2] = $679; + HEAP32[(32976)>>2] = $681; + $682 = $681 | 1; + $683 = ((($679)) + 4|0); + HEAP32[$683>>2] = $682; + $684 = (($679) + ($681)|0); + $685 = ((($684)) + 4|0); + HEAP32[$685>>2] = 40; + $686 = HEAP32[(33452)>>2]|0; + HEAP32[(32992)>>2] = $686; break; } } } - $690 = HEAP32[(32692)>>2]|0; - $691 = ($tbase$255$i>>>0)<($690>>>0); - if ($691) { - HEAP32[(32692)>>2] = $tbase$255$i; - $755 = $tbase$255$i; + $687 = HEAP32[(32980)>>2]|0; + $688 = ($$749$i>>>0)<($687>>>0); + if ($688) { + HEAP32[(32980)>>2] = $$749$i; + $752 = $$749$i; } else { - $755 = $690; + $752 = $687; } - $692 = (($tbase$255$i) + ($tsize$254$i)|0); - $sp$183$i = (33124); + $689 = (($$749$i) + ($$723948$i)|0); + $$124470$i = (33412); while(1) { - $693 = HEAP32[$sp$183$i>>2]|0; - $694 = ($693|0)==($692|0); - if ($694) { - $$lcssa219 = $sp$183$i;$sp$183$i$lcssa = $sp$183$i; - label = 212; + $690 = HEAP32[$$124470$i>>2]|0; + $691 = ($690|0)==($689|0); + if ($691) { + label = 198; break; } - $695 = ((($sp$183$i)) + 8|0); - $696 = HEAP32[$695>>2]|0; - $697 = ($696|0)==(0|0); - if ($697) { - $sp$0$i$i$i = (33124); + $692 = ((($$124470$i)) + 8|0); + $693 = HEAP32[$692>>2]|0; + $694 = ($693|0)==(0|0); + if ($694) { break; } else { - $sp$183$i = $696; + $$124470$i = $693; } } - if ((label|0) == 212) { - $698 = ((($sp$183$i$lcssa)) + 12|0); - $699 = HEAP32[$698>>2]|0; - $700 = $699 & 8; - $701 = ($700|0)==(0); - if ($701) { - HEAP32[$$lcssa219>>2] = $tbase$255$i; - $702 = ((($sp$183$i$lcssa)) + 4|0); - $703 = HEAP32[$702>>2]|0; - $704 = (($703) + ($tsize$254$i))|0; - HEAP32[$702>>2] = $704; - $705 = ((($tbase$255$i)) + 8|0); - $706 = $705; + if ((label|0) == 198) { + $695 = ((($$124470$i)) + 12|0); + $696 = HEAP32[$695>>2]|0; + $697 = $696 & 8; + $698 = ($697|0)==(0); + if ($698) { + HEAP32[$$124470$i>>2] = $$749$i; + $699 = ((($$124470$i)) + 4|0); + $700 = HEAP32[$699>>2]|0; + $701 = (($700) + ($$723948$i))|0; + HEAP32[$699>>2] = $701; + $702 = ((($$749$i)) + 8|0); + $703 = $702; + $704 = $703 & 7; + $705 = ($704|0)==(0); + $706 = (0 - ($703))|0; $707 = $706 & 7; - $708 = ($707|0)==(0); - $709 = (0 - ($706))|0; - $710 = $709 & 7; - $711 = $708 ? 0 : $710; - $712 = (($tbase$255$i) + ($711)|0); - $$sum112$i = (($tsize$254$i) + 8)|0; - $713 = (($tbase$255$i) + ($$sum112$i)|0); - $714 = $713; + $708 = $705 ? 0 : $707; + $709 = (($$749$i) + ($708)|0); + $710 = ((($689)) + 8|0); + $711 = $710; + $712 = $711 & 7; + $713 = ($712|0)==(0); + $714 = (0 - ($711))|0; $715 = $714 & 7; - $716 = ($715|0)==(0); - $717 = (0 - ($714))|0; - $718 = $717 & 7; - $719 = $716 ? 0 : $718; - $$sum113$i = (($719) + ($tsize$254$i))|0; - $720 = (($tbase$255$i) + ($$sum113$i)|0); - $721 = $720; - $722 = $712; - $723 = (($721) - ($722))|0; - $$sum$i19$i = (($711) + ($nb$0))|0; - $724 = (($tbase$255$i) + ($$sum$i19$i)|0); - $725 = (($723) - ($nb$0))|0; - $726 = $nb$0 | 3; - $$sum1$i20$i = (($711) + 4)|0; - $727 = (($tbase$255$i) + ($$sum1$i20$i)|0); - HEAP32[$727>>2] = $726; - $728 = ($720|0)==($635|0); - L324: do { - if ($728) { - $729 = HEAP32[(32688)>>2]|0; - $730 = (($729) + ($725))|0; - HEAP32[(32688)>>2] = $730; - HEAP32[(32700)>>2] = $724; - $731 = $730 | 1; - $$sum42$i$i = (($$sum$i19$i) + 4)|0; - $732 = (($tbase$255$i) + ($$sum42$i$i)|0); - HEAP32[$732>>2] = $731; + $716 = $713 ? 0 : $715; + $717 = (($689) + ($716)|0); + $718 = $717; + $719 = $709; + $720 = (($718) - ($719))|0; + $721 = (($709) + ($$0197)|0); + $722 = (($720) - ($$0197))|0; + $723 = $$0197 | 3; + $724 = ((($709)) + 4|0); + HEAP32[$724>>2] = $723; + $725 = ($717|0)==($630|0); + do { + if ($725) { + $726 = HEAP32[(32976)>>2]|0; + $727 = (($726) + ($722))|0; + HEAP32[(32976)>>2] = $727; + HEAP32[(32988)>>2] = $721; + $728 = $727 | 1; + $729 = ((($721)) + 4|0); + HEAP32[$729>>2] = $728; } else { - $733 = HEAP32[(32696)>>2]|0; - $734 = ($720|0)==($733|0); - if ($734) { - $735 = HEAP32[(32684)>>2]|0; - $736 = (($735) + ($725))|0; - HEAP32[(32684)>>2] = $736; - HEAP32[(32696)>>2] = $724; - $737 = $736 | 1; - $$sum40$i$i = (($$sum$i19$i) + 4)|0; - $738 = (($tbase$255$i) + ($$sum40$i$i)|0); - HEAP32[$738>>2] = $737; - $$sum41$i$i = (($736) + ($$sum$i19$i))|0; - $739 = (($tbase$255$i) + ($$sum41$i$i)|0); - HEAP32[$739>>2] = $736; + $730 = HEAP32[(32984)>>2]|0; + $731 = ($717|0)==($730|0); + if ($731) { + $732 = HEAP32[(32972)>>2]|0; + $733 = (($732) + ($722))|0; + HEAP32[(32972)>>2] = $733; + HEAP32[(32984)>>2] = $721; + $734 = $733 | 1; + $735 = ((($721)) + 4|0); + HEAP32[$735>>2] = $734; + $736 = (($721) + ($733)|0); + HEAP32[$736>>2] = $733; break; } - $$sum2$i21$i = (($tsize$254$i) + 4)|0; - $$sum114$i = (($$sum2$i21$i) + ($719))|0; - $740 = (($tbase$255$i) + ($$sum114$i)|0); - $741 = HEAP32[$740>>2]|0; - $742 = $741 & 3; - $743 = ($742|0)==(1); - if ($743) { - $744 = $741 & -8; - $745 = $741 >>> 3; - $746 = ($741>>>0)<(256); - L332: do { - if ($746) { - $$sum3738$i$i = $719 | 8; - $$sum124$i = (($$sum3738$i$i) + ($tsize$254$i))|0; - $747 = (($tbase$255$i) + ($$sum124$i)|0); - $748 = HEAP32[$747>>2]|0; - $$sum39$i$i = (($tsize$254$i) + 12)|0; - $$sum125$i = (($$sum39$i$i) + ($719))|0; - $749 = (($tbase$255$i) + ($$sum125$i)|0); - $750 = HEAP32[$749>>2]|0; - $751 = $745 << 1; - $752 = (32716 + ($751<<2)|0); - $753 = ($748|0)==($752|0); + $737 = ((($717)) + 4|0); + $738 = HEAP32[$737>>2]|0; + $739 = $738 & 3; + $740 = ($739|0)==(1); + if ($740) { + $741 = $738 & -8; + $742 = $738 >>> 3; + $743 = ($738>>>0)<(256); + L314: do { + if ($743) { + $744 = ((($717)) + 8|0); + $745 = HEAP32[$744>>2]|0; + $746 = ((($717)) + 12|0); + $747 = HEAP32[$746>>2]|0; + $748 = $742 << 1; + $749 = (33004 + ($748<<2)|0); + $750 = ($745|0)==($749|0); do { - if (!($753)) { - $754 = ($748>>>0)<($755>>>0); - if ($754) { + if (!($750)) { + $751 = ($745>>>0)<($752>>>0); + if ($751) { _abort(); // unreachable; } - $756 = ((($748)) + 12|0); - $757 = HEAP32[$756>>2]|0; - $758 = ($757|0)==($720|0); - if ($758) { + $753 = ((($745)) + 12|0); + $754 = HEAP32[$753>>2]|0; + $755 = ($754|0)==($717|0); + if ($755) { break; } _abort(); // unreachable; } } while(0); - $759 = ($750|0)==($748|0); - if ($759) { - $760 = 1 << $745; - $761 = $760 ^ -1; - $762 = HEAP32[32676>>2]|0; - $763 = $762 & $761; - HEAP32[32676>>2] = $763; + $756 = ($747|0)==($745|0); + if ($756) { + $757 = 1 << $742; + $758 = $757 ^ -1; + $759 = HEAP32[8241]|0; + $760 = $759 & $758; + HEAP32[8241] = $760; break; } - $764 = ($750|0)==($752|0); + $761 = ($747|0)==($749|0); do { - if ($764) { - $$pre57$i$i = ((($750)) + 8|0); - $$pre$phi58$i$iZ2D = $$pre57$i$i; + if ($761) { + $$pre10$i$i = ((($747)) + 8|0); + $$pre$phi11$i$iZ2D = $$pre10$i$i; } else { - $765 = ($750>>>0)<($755>>>0); - if ($765) { + $762 = ($747>>>0)<($752>>>0); + if ($762) { _abort(); // unreachable; } - $766 = ((($750)) + 8|0); - $767 = HEAP32[$766>>2]|0; - $768 = ($767|0)==($720|0); - if ($768) { - $$pre$phi58$i$iZ2D = $766; + $763 = ((($747)) + 8|0); + $764 = HEAP32[$763>>2]|0; + $765 = ($764|0)==($717|0); + if ($765) { + $$pre$phi11$i$iZ2D = $763; break; } _abort(); // unreachable; } } while(0); - $769 = ((($748)) + 12|0); - HEAP32[$769>>2] = $750; - HEAP32[$$pre$phi58$i$iZ2D>>2] = $748; + $766 = ((($745)) + 12|0); + HEAP32[$766>>2] = $747; + HEAP32[$$pre$phi11$i$iZ2D>>2] = $745; } else { - $$sum34$i$i = $719 | 24; - $$sum115$i = (($$sum34$i$i) + ($tsize$254$i))|0; - $770 = (($tbase$255$i) + ($$sum115$i)|0); - $771 = HEAP32[$770>>2]|0; - $$sum5$i$i = (($tsize$254$i) + 12)|0; - $$sum116$i = (($$sum5$i$i) + ($719))|0; - $772 = (($tbase$255$i) + ($$sum116$i)|0); - $773 = HEAP32[$772>>2]|0; - $774 = ($773|0)==($720|0); + $767 = ((($717)) + 24|0); + $768 = HEAP32[$767>>2]|0; + $769 = ((($717)) + 12|0); + $770 = HEAP32[$769>>2]|0; + $771 = ($770|0)==($717|0); do { - if ($774) { - $$sum67$i$i = $719 | 16; - $$sum122$i = (($$sum2$i21$i) + ($$sum67$i$i))|0; - $784 = (($tbase$255$i) + ($$sum122$i)|0); - $785 = HEAP32[$784>>2]|0; - $786 = ($785|0)==(0|0); - if ($786) { - $$sum123$i = (($$sum67$i$i) + ($tsize$254$i))|0; - $787 = (($tbase$255$i) + ($$sum123$i)|0); - $788 = HEAP32[$787>>2]|0; - $789 = ($788|0)==(0|0); - if ($789) { - $R$1$i$i = 0; + if ($771) { + $781 = ((($717)) + 16|0); + $782 = ((($781)) + 4|0); + $783 = HEAP32[$782>>2]|0; + $784 = ($783|0)==(0|0); + if ($784) { + $785 = HEAP32[$781>>2]|0; + $786 = ($785|0)==(0|0); + if ($786) { + $$3$i$i = 0; break; } else { - $R$0$i$i = $788;$RP$0$i$i = $787; + $$1291$i$i = $785;$$1293$i$i = $781; } } else { - $R$0$i$i = $785;$RP$0$i$i = $784; + $$1291$i$i = $783;$$1293$i$i = $782; } while(1) { - $790 = ((($R$0$i$i)) + 20|0); - $791 = HEAP32[$790>>2]|0; - $792 = ($791|0)==(0|0); - if (!($792)) { - $R$0$i$i = $791;$RP$0$i$i = $790; + $787 = ((($$1291$i$i)) + 20|0); + $788 = HEAP32[$787>>2]|0; + $789 = ($788|0)==(0|0); + if (!($789)) { + $$1291$i$i = $788;$$1293$i$i = $787; continue; } - $793 = ((($R$0$i$i)) + 16|0); - $794 = HEAP32[$793>>2]|0; - $795 = ($794|0)==(0|0); - if ($795) { - $R$0$i$i$lcssa = $R$0$i$i;$RP$0$i$i$lcssa = $RP$0$i$i; + $790 = ((($$1291$i$i)) + 16|0); + $791 = HEAP32[$790>>2]|0; + $792 = ($791|0)==(0|0); + if ($792) { break; } else { - $R$0$i$i = $794;$RP$0$i$i = $793; + $$1291$i$i = $791;$$1293$i$i = $790; } } - $796 = ($RP$0$i$i$lcssa>>>0)<($755>>>0); - if ($796) { + $793 = ($$1293$i$i>>>0)<($752>>>0); + if ($793) { _abort(); // unreachable; } else { - HEAP32[$RP$0$i$i$lcssa>>2] = 0; - $R$1$i$i = $R$0$i$i$lcssa; + HEAP32[$$1293$i$i>>2] = 0; + $$3$i$i = $$1291$i$i; break; } } else { - $$sum3536$i$i = $719 | 8; - $$sum117$i = (($$sum3536$i$i) + ($tsize$254$i))|0; - $775 = (($tbase$255$i) + ($$sum117$i)|0); - $776 = HEAP32[$775>>2]|0; - $777 = ($776>>>0)<($755>>>0); - if ($777) { + $772 = ((($717)) + 8|0); + $773 = HEAP32[$772>>2]|0; + $774 = ($773>>>0)<($752>>>0); + if ($774) { _abort(); // unreachable; } - $778 = ((($776)) + 12|0); - $779 = HEAP32[$778>>2]|0; - $780 = ($779|0)==($720|0); - if (!($780)) { + $775 = ((($773)) + 12|0); + $776 = HEAP32[$775>>2]|0; + $777 = ($776|0)==($717|0); + if (!($777)) { _abort(); // unreachable; } - $781 = ((($773)) + 8|0); - $782 = HEAP32[$781>>2]|0; - $783 = ($782|0)==($720|0); - if ($783) { + $778 = ((($770)) + 8|0); + $779 = HEAP32[$778>>2]|0; + $780 = ($779|0)==($717|0); + if ($780) { + HEAP32[$775>>2] = $770; HEAP32[$778>>2] = $773; - HEAP32[$781>>2] = $776; - $R$1$i$i = $773; + $$3$i$i = $770; break; } else { _abort(); @@ -22496,823 +18832,761 @@ function _malloc($bytes) { } } } while(0); - $797 = ($771|0)==(0|0); - if ($797) { + $794 = ($768|0)==(0|0); + if ($794) { break; } - $$sum30$i$i = (($tsize$254$i) + 28)|0; - $$sum118$i = (($$sum30$i$i) + ($719))|0; - $798 = (($tbase$255$i) + ($$sum118$i)|0); - $799 = HEAP32[$798>>2]|0; - $800 = (32980 + ($799<<2)|0); - $801 = HEAP32[$800>>2]|0; - $802 = ($720|0)==($801|0); + $795 = ((($717)) + 28|0); + $796 = HEAP32[$795>>2]|0; + $797 = (33268 + ($796<<2)|0); + $798 = HEAP32[$797>>2]|0; + $799 = ($717|0)==($798|0); do { - if ($802) { - HEAP32[$800>>2] = $R$1$i$i; - $cond$i$i = ($R$1$i$i|0)==(0|0); + if ($799) { + HEAP32[$797>>2] = $$3$i$i; + $cond$i$i = ($$3$i$i|0)==(0|0); if (!($cond$i$i)) { break; } - $803 = 1 << $799; - $804 = $803 ^ -1; - $805 = HEAP32[(32680)>>2]|0; - $806 = $805 & $804; - HEAP32[(32680)>>2] = $806; - break L332; + $800 = 1 << $796; + $801 = $800 ^ -1; + $802 = HEAP32[(32968)>>2]|0; + $803 = $802 & $801; + HEAP32[(32968)>>2] = $803; + break L314; } else { - $807 = HEAP32[(32692)>>2]|0; - $808 = ($771>>>0)<($807>>>0); - if ($808) { + $804 = HEAP32[(32980)>>2]|0; + $805 = ($768>>>0)<($804>>>0); + if ($805) { _abort(); // unreachable; - } - $809 = ((($771)) + 16|0); - $810 = HEAP32[$809>>2]|0; - $811 = ($810|0)==($720|0); - if ($811) { - HEAP32[$809>>2] = $R$1$i$i; } else { - $812 = ((($771)) + 20|0); - HEAP32[$812>>2] = $R$1$i$i; - } - $813 = ($R$1$i$i|0)==(0|0); - if ($813) { - break L332; + $806 = ((($768)) + 16|0); + $807 = HEAP32[$806>>2]|0; + $not$$i17$i = ($807|0)!=($717|0); + $$sink1$i$i = $not$$i17$i&1; + $808 = (((($768)) + 16|0) + ($$sink1$i$i<<2)|0); + HEAP32[$808>>2] = $$3$i$i; + $809 = ($$3$i$i|0)==(0|0); + if ($809) { + break L314; + } else { + break; + } } } } while(0); - $814 = HEAP32[(32692)>>2]|0; - $815 = ($R$1$i$i>>>0)<($814>>>0); - if ($815) { + $810 = HEAP32[(32980)>>2]|0; + $811 = ($$3$i$i>>>0)<($810>>>0); + if ($811) { _abort(); // unreachable; } - $816 = ((($R$1$i$i)) + 24|0); - HEAP32[$816>>2] = $771; - $$sum3132$i$i = $719 | 16; - $$sum119$i = (($$sum3132$i$i) + ($tsize$254$i))|0; - $817 = (($tbase$255$i) + ($$sum119$i)|0); - $818 = HEAP32[$817>>2]|0; - $819 = ($818|0)==(0|0); + $812 = ((($$3$i$i)) + 24|0); + HEAP32[$812>>2] = $768; + $813 = ((($717)) + 16|0); + $814 = HEAP32[$813>>2]|0; + $815 = ($814|0)==(0|0); do { - if (!($819)) { - $820 = ($818>>>0)<($814>>>0); - if ($820) { + if (!($815)) { + $816 = ($814>>>0)<($810>>>0); + if ($816) { _abort(); // unreachable; } else { - $821 = ((($R$1$i$i)) + 16|0); - HEAP32[$821>>2] = $818; - $822 = ((($818)) + 24|0); - HEAP32[$822>>2] = $R$1$i$i; + $817 = ((($$3$i$i)) + 16|0); + HEAP32[$817>>2] = $814; + $818 = ((($814)) + 24|0); + HEAP32[$818>>2] = $$3$i$i; break; } } } while(0); - $$sum120$i = (($$sum2$i21$i) + ($$sum3132$i$i))|0; - $823 = (($tbase$255$i) + ($$sum120$i)|0); - $824 = HEAP32[$823>>2]|0; - $825 = ($824|0)==(0|0); - if ($825) { + $819 = ((($813)) + 4|0); + $820 = HEAP32[$819>>2]|0; + $821 = ($820|0)==(0|0); + if ($821) { break; } - $826 = HEAP32[(32692)>>2]|0; - $827 = ($824>>>0)<($826>>>0); - if ($827) { + $822 = HEAP32[(32980)>>2]|0; + $823 = ($820>>>0)<($822>>>0); + if ($823) { _abort(); // unreachable; } else { - $828 = ((($R$1$i$i)) + 20|0); - HEAP32[$828>>2] = $824; - $829 = ((($824)) + 24|0); - HEAP32[$829>>2] = $R$1$i$i; + $824 = ((($$3$i$i)) + 20|0); + HEAP32[$824>>2] = $820; + $825 = ((($820)) + 24|0); + HEAP32[$825>>2] = $$3$i$i; break; } } } while(0); - $$sum9$i$i = $744 | $719; - $$sum121$i = (($$sum9$i$i) + ($tsize$254$i))|0; - $830 = (($tbase$255$i) + ($$sum121$i)|0); - $831 = (($744) + ($725))|0; - $oldfirst$0$i$i = $830;$qsize$0$i$i = $831; + $826 = (($717) + ($741)|0); + $827 = (($741) + ($722))|0; + $$0$i18$i = $826;$$0287$i$i = $827; } else { - $oldfirst$0$i$i = $720;$qsize$0$i$i = $725; + $$0$i18$i = $717;$$0287$i$i = $722; } - $832 = ((($oldfirst$0$i$i)) + 4|0); - $833 = HEAP32[$832>>2]|0; - $834 = $833 & -2; - HEAP32[$832>>2] = $834; - $835 = $qsize$0$i$i | 1; - $$sum10$i$i = (($$sum$i19$i) + 4)|0; - $836 = (($tbase$255$i) + ($$sum10$i$i)|0); - HEAP32[$836>>2] = $835; - $$sum11$i$i = (($qsize$0$i$i) + ($$sum$i19$i))|0; - $837 = (($tbase$255$i) + ($$sum11$i$i)|0); - HEAP32[$837>>2] = $qsize$0$i$i; - $838 = $qsize$0$i$i >>> 3; - $839 = ($qsize$0$i$i>>>0)<(256); - if ($839) { - $840 = $838 << 1; - $841 = (32716 + ($840<<2)|0); - $842 = HEAP32[32676>>2]|0; - $843 = 1 << $838; - $844 = $842 & $843; - $845 = ($844|0)==(0); + $828 = ((($$0$i18$i)) + 4|0); + $829 = HEAP32[$828>>2]|0; + $830 = $829 & -2; + HEAP32[$828>>2] = $830; + $831 = $$0287$i$i | 1; + $832 = ((($721)) + 4|0); + HEAP32[$832>>2] = $831; + $833 = (($721) + ($$0287$i$i)|0); + HEAP32[$833>>2] = $$0287$i$i; + $834 = $$0287$i$i >>> 3; + $835 = ($$0287$i$i>>>0)<(256); + if ($835) { + $836 = $834 << 1; + $837 = (33004 + ($836<<2)|0); + $838 = HEAP32[8241]|0; + $839 = 1 << $834; + $840 = $838 & $839; + $841 = ($840|0)==(0); do { - if ($845) { - $846 = $842 | $843; - HEAP32[32676>>2] = $846; - $$pre$i22$i = (($840) + 2)|0; - $$pre56$i$i = (32716 + ($$pre$i22$i<<2)|0); - $$pre$phi$i23$iZ2D = $$pre56$i$i;$F4$0$i$i = $841; + if ($841) { + $842 = $838 | $839; + HEAP32[8241] = $842; + $$pre$i19$i = ((($837)) + 8|0); + $$0295$i$i = $837;$$pre$phi$i20$iZ2D = $$pre$i19$i; } else { - $$sum29$i$i = (($840) + 2)|0; - $847 = (32716 + ($$sum29$i$i<<2)|0); - $848 = HEAP32[$847>>2]|0; - $849 = HEAP32[(32692)>>2]|0; - $850 = ($848>>>0)<($849>>>0); - if (!($850)) { - $$pre$phi$i23$iZ2D = $847;$F4$0$i$i = $848; + $843 = ((($837)) + 8|0); + $844 = HEAP32[$843>>2]|0; + $845 = HEAP32[(32980)>>2]|0; + $846 = ($844>>>0)<($845>>>0); + if (!($846)) { + $$0295$i$i = $844;$$pre$phi$i20$iZ2D = $843; break; } _abort(); // unreachable; } } while(0); - HEAP32[$$pre$phi$i23$iZ2D>>2] = $724; - $851 = ((($F4$0$i$i)) + 12|0); - HEAP32[$851>>2] = $724; - $$sum27$i$i = (($$sum$i19$i) + 8)|0; - $852 = (($tbase$255$i) + ($$sum27$i$i)|0); - HEAP32[$852>>2] = $F4$0$i$i; - $$sum28$i$i = (($$sum$i19$i) + 12)|0; - $853 = (($tbase$255$i) + ($$sum28$i$i)|0); - HEAP32[$853>>2] = $841; + HEAP32[$$pre$phi$i20$iZ2D>>2] = $721; + $847 = ((($$0295$i$i)) + 12|0); + HEAP32[$847>>2] = $721; + $848 = ((($721)) + 8|0); + HEAP32[$848>>2] = $$0295$i$i; + $849 = ((($721)) + 12|0); + HEAP32[$849>>2] = $837; break; } - $854 = $qsize$0$i$i >>> 8; - $855 = ($854|0)==(0); + $850 = $$0287$i$i >>> 8; + $851 = ($850|0)==(0); do { - if ($855) { - $I7$0$i$i = 0; + if ($851) { + $$0296$i$i = 0; } else { - $856 = ($qsize$0$i$i>>>0)>(16777215); - if ($856) { - $I7$0$i$i = 31; + $852 = ($$0287$i$i>>>0)>(16777215); + if ($852) { + $$0296$i$i = 31; break; } - $857 = (($854) + 1048320)|0; + $853 = (($850) + 1048320)|0; + $854 = $853 >>> 16; + $855 = $854 & 8; + $856 = $850 << $855; + $857 = (($856) + 520192)|0; $858 = $857 >>> 16; - $859 = $858 & 8; - $860 = $854 << $859; - $861 = (($860) + 520192)|0; - $862 = $861 >>> 16; - $863 = $862 & 4; - $864 = $863 | $859; - $865 = $860 << $863; - $866 = (($865) + 245760)|0; - $867 = $866 >>> 16; - $868 = $867 & 2; - $869 = $864 | $868; - $870 = (14 - ($869))|0; - $871 = $865 << $868; - $872 = $871 >>> 15; - $873 = (($870) + ($872))|0; - $874 = $873 << 1; - $875 = (($873) + 7)|0; - $876 = $qsize$0$i$i >>> $875; - $877 = $876 & 1; - $878 = $877 | $874; - $I7$0$i$i = $878; + $859 = $858 & 4; + $860 = $859 | $855; + $861 = $856 << $859; + $862 = (($861) + 245760)|0; + $863 = $862 >>> 16; + $864 = $863 & 2; + $865 = $860 | $864; + $866 = (14 - ($865))|0; + $867 = $861 << $864; + $868 = $867 >>> 15; + $869 = (($866) + ($868))|0; + $870 = $869 << 1; + $871 = (($869) + 7)|0; + $872 = $$0287$i$i >>> $871; + $873 = $872 & 1; + $874 = $873 | $870; + $$0296$i$i = $874; } } while(0); - $879 = (32980 + ($I7$0$i$i<<2)|0); - $$sum12$i$i = (($$sum$i19$i) + 28)|0; - $880 = (($tbase$255$i) + ($$sum12$i$i)|0); - HEAP32[$880>>2] = $I7$0$i$i; - $$sum13$i$i = (($$sum$i19$i) + 16)|0; - $881 = (($tbase$255$i) + ($$sum13$i$i)|0); - $$sum14$i$i = (($$sum$i19$i) + 20)|0; - $882 = (($tbase$255$i) + ($$sum14$i$i)|0); - HEAP32[$882>>2] = 0; - HEAP32[$881>>2] = 0; - $883 = HEAP32[(32680)>>2]|0; - $884 = 1 << $I7$0$i$i; - $885 = $883 & $884; - $886 = ($885|0)==(0); - if ($886) { - $887 = $883 | $884; - HEAP32[(32680)>>2] = $887; - HEAP32[$879>>2] = $724; - $$sum15$i$i = (($$sum$i19$i) + 24)|0; - $888 = (($tbase$255$i) + ($$sum15$i$i)|0); - HEAP32[$888>>2] = $879; - $$sum16$i$i = (($$sum$i19$i) + 12)|0; - $889 = (($tbase$255$i) + ($$sum16$i$i)|0); - HEAP32[$889>>2] = $724; - $$sum17$i$i = (($$sum$i19$i) + 8)|0; - $890 = (($tbase$255$i) + ($$sum17$i$i)|0); - HEAP32[$890>>2] = $724; + $875 = (33268 + ($$0296$i$i<<2)|0); + $876 = ((($721)) + 28|0); + HEAP32[$876>>2] = $$0296$i$i; + $877 = ((($721)) + 16|0); + $878 = ((($877)) + 4|0); + HEAP32[$878>>2] = 0; + HEAP32[$877>>2] = 0; + $879 = HEAP32[(32968)>>2]|0; + $880 = 1 << $$0296$i$i; + $881 = $879 & $880; + $882 = ($881|0)==(0); + if ($882) { + $883 = $879 | $880; + HEAP32[(32968)>>2] = $883; + HEAP32[$875>>2] = $721; + $884 = ((($721)) + 24|0); + HEAP32[$884>>2] = $875; + $885 = ((($721)) + 12|0); + HEAP32[$885>>2] = $721; + $886 = ((($721)) + 8|0); + HEAP32[$886>>2] = $721; break; } - $891 = HEAP32[$879>>2]|0; - $892 = ((($891)) + 4|0); - $893 = HEAP32[$892>>2]|0; - $894 = $893 & -8; - $895 = ($894|0)==($qsize$0$i$i|0); - L418: do { - if ($895) { - $T$0$lcssa$i25$i = $891; + $887 = HEAP32[$875>>2]|0; + $888 = ($$0296$i$i|0)==(31); + $889 = $$0296$i$i >>> 1; + $890 = (25 - ($889))|0; + $891 = $888 ? 0 : $890; + $892 = $$0287$i$i << $891; + $$0288$i$i = $892;$$0289$i$i = $887; + while(1) { + $893 = ((($$0289$i$i)) + 4|0); + $894 = HEAP32[$893>>2]|0; + $895 = $894 & -8; + $896 = ($895|0)==($$0287$i$i|0); + if ($896) { + label = 265; + break; + } + $897 = $$0288$i$i >>> 31; + $898 = (((($$0289$i$i)) + 16|0) + ($897<<2)|0); + $899 = $$0288$i$i << 1; + $900 = HEAP32[$898>>2]|0; + $901 = ($900|0)==(0|0); + if ($901) { + label = 262; + break; } else { - $896 = ($I7$0$i$i|0)==(31); - $897 = $I7$0$i$i >>> 1; - $898 = (25 - ($897))|0; - $899 = $896 ? 0 : $898; - $900 = $qsize$0$i$i << $899; - $K8$051$i$i = $900;$T$050$i$i = $891; - while(1) { - $907 = $K8$051$i$i >>> 31; - $908 = (((($T$050$i$i)) + 16|0) + ($907<<2)|0); - $903 = HEAP32[$908>>2]|0; - $909 = ($903|0)==(0|0); - if ($909) { - $$lcssa = $908;$T$050$i$i$lcssa = $T$050$i$i; - break; - } - $901 = $K8$051$i$i << 1; - $902 = ((($903)) + 4|0); - $904 = HEAP32[$902>>2]|0; - $905 = $904 & -8; - $906 = ($905|0)==($qsize$0$i$i|0); - if ($906) { - $T$0$lcssa$i25$i = $903; - break L418; - } else { - $K8$051$i$i = $901;$T$050$i$i = $903; - } - } - $910 = HEAP32[(32692)>>2]|0; - $911 = ($$lcssa>>>0)<($910>>>0); - if ($911) { - _abort(); - // unreachable; - } else { - HEAP32[$$lcssa>>2] = $724; - $$sum23$i$i = (($$sum$i19$i) + 24)|0; - $912 = (($tbase$255$i) + ($$sum23$i$i)|0); - HEAP32[$912>>2] = $T$050$i$i$lcssa; - $$sum24$i$i = (($$sum$i19$i) + 12)|0; - $913 = (($tbase$255$i) + ($$sum24$i$i)|0); - HEAP32[$913>>2] = $724; - $$sum25$i$i = (($$sum$i19$i) + 8)|0; - $914 = (($tbase$255$i) + ($$sum25$i$i)|0); - HEAP32[$914>>2] = $724; - break L324; - } + $$0288$i$i = $899;$$0289$i$i = $900; + } + } + if ((label|0) == 262) { + $902 = HEAP32[(32980)>>2]|0; + $903 = ($898>>>0)<($902>>>0); + if ($903) { + _abort(); + // unreachable; + } else { + HEAP32[$898>>2] = $721; + $904 = ((($721)) + 24|0); + HEAP32[$904>>2] = $$0289$i$i; + $905 = ((($721)) + 12|0); + HEAP32[$905>>2] = $721; + $906 = ((($721)) + 8|0); + HEAP32[$906>>2] = $721; + break; + } + } + else if ((label|0) == 265) { + $907 = ((($$0289$i$i)) + 8|0); + $908 = HEAP32[$907>>2]|0; + $909 = HEAP32[(32980)>>2]|0; + $910 = ($908>>>0)>=($909>>>0); + $not$7$i$i = ($$0289$i$i>>>0)>=($909>>>0); + $911 = $910 & $not$7$i$i; + if ($911) { + $912 = ((($908)) + 12|0); + HEAP32[$912>>2] = $721; + HEAP32[$907>>2] = $721; + $913 = ((($721)) + 8|0); + HEAP32[$913>>2] = $908; + $914 = ((($721)) + 12|0); + HEAP32[$914>>2] = $$0289$i$i; + $915 = ((($721)) + 24|0); + HEAP32[$915>>2] = 0; + break; + } else { + _abort(); + // unreachable; } - } while(0); - $915 = ((($T$0$lcssa$i25$i)) + 8|0); - $916 = HEAP32[$915>>2]|0; - $917 = HEAP32[(32692)>>2]|0; - $918 = ($916>>>0)>=($917>>>0); - $not$$i26$i = ($T$0$lcssa$i25$i>>>0)>=($917>>>0); - $919 = $918 & $not$$i26$i; - if ($919) { - $920 = ((($916)) + 12|0); - HEAP32[$920>>2] = $724; - HEAP32[$915>>2] = $724; - $$sum20$i$i = (($$sum$i19$i) + 8)|0; - $921 = (($tbase$255$i) + ($$sum20$i$i)|0); - HEAP32[$921>>2] = $916; - $$sum21$i$i = (($$sum$i19$i) + 12)|0; - $922 = (($tbase$255$i) + ($$sum21$i$i)|0); - HEAP32[$922>>2] = $T$0$lcssa$i25$i; - $$sum22$i$i = (($$sum$i19$i) + 24)|0; - $923 = (($tbase$255$i) + ($$sum22$i$i)|0); - HEAP32[$923>>2] = 0; - break; - } else { - _abort(); - // unreachable; } } } while(0); - $$sum1819$i$i = $711 | 8; - $924 = (($tbase$255$i) + ($$sum1819$i$i)|0); - $mem$0 = $924; - return ($mem$0|0); - } else { - $sp$0$i$i$i = (33124); + $1047 = ((($709)) + 8|0); + $$0 = $1047; + STACKTOP = sp;return ($$0|0); } } + $$0$i$i$i = (33412); while(1) { - $925 = HEAP32[$sp$0$i$i$i>>2]|0; - $926 = ($925>>>0)>($635>>>0); - if (!($926)) { - $927 = ((($sp$0$i$i$i)) + 4|0); - $928 = HEAP32[$927>>2]|0; - $929 = (($925) + ($928)|0); - $930 = ($929>>>0)>($635>>>0); - if ($930) { - $$lcssa215 = $925;$$lcssa216 = $928;$$lcssa217 = $929; + $916 = HEAP32[$$0$i$i$i>>2]|0; + $917 = ($916>>>0)>($630>>>0); + if (!($917)) { + $918 = ((($$0$i$i$i)) + 4|0); + $919 = HEAP32[$918>>2]|0; + $920 = (($916) + ($919)|0); + $921 = ($920>>>0)>($630>>>0); + if ($921) { break; } } - $931 = ((($sp$0$i$i$i)) + 8|0); - $932 = HEAP32[$931>>2]|0; - $sp$0$i$i$i = $932; - } - $$sum$i14$i = (($$lcssa216) + -47)|0; - $$sum1$i15$i = (($$lcssa216) + -39)|0; - $933 = (($$lcssa215) + ($$sum1$i15$i)|0); - $934 = $933; - $935 = $934 & 7; - $936 = ($935|0)==(0); - $937 = (0 - ($934))|0; - $938 = $937 & 7; - $939 = $936 ? 0 : $938; - $$sum2$i16$i = (($$sum$i14$i) + ($939))|0; - $940 = (($$lcssa215) + ($$sum2$i16$i)|0); - $941 = ((($635)) + 16|0); - $942 = ($940>>>0)<($941>>>0); - $943 = $942 ? $635 : $940; - $944 = ((($943)) + 8|0); - $945 = (($tsize$254$i) + -40)|0; - $946 = ((($tbase$255$i)) + 8|0); - $947 = $946; - $948 = $947 & 7; - $949 = ($948|0)==(0); - $950 = (0 - ($947))|0; - $951 = $950 & 7; - $952 = $949 ? 0 : $951; - $953 = (($tbase$255$i) + ($952)|0); - $954 = (($945) - ($952))|0; - HEAP32[(32700)>>2] = $953; - HEAP32[(32688)>>2] = $954; - $955 = $954 | 1; - $$sum$i$i$i = (($952) + 4)|0; - $956 = (($tbase$255$i) + ($$sum$i$i$i)|0); - HEAP32[$956>>2] = $955; - $$sum2$i$i$i = (($tsize$254$i) + -36)|0; - $957 = (($tbase$255$i) + ($$sum2$i$i$i)|0); - HEAP32[$957>>2] = 40; - $958 = HEAP32[(33164)>>2]|0; - HEAP32[(32704)>>2] = $958; - $959 = ((($943)) + 4|0); - HEAP32[$959>>2] = 27; - ;HEAP32[$944>>2]=HEAP32[(33124)>>2]|0;HEAP32[$944+4>>2]=HEAP32[(33124)+4>>2]|0;HEAP32[$944+8>>2]=HEAP32[(33124)+8>>2]|0;HEAP32[$944+12>>2]=HEAP32[(33124)+12>>2]|0; - HEAP32[(33124)>>2] = $tbase$255$i; - HEAP32[(33128)>>2] = $tsize$254$i; - HEAP32[(33136)>>2] = 0; - HEAP32[(33132)>>2] = $944; - $960 = ((($943)) + 28|0); - HEAP32[$960>>2] = 7; - $961 = ((($943)) + 32|0); - $962 = ($961>>>0)<($$lcssa217>>>0); - if ($962) { - $964 = $960; - while(1) { - $963 = ((($964)) + 4|0); - HEAP32[$963>>2] = 7; - $965 = ((($964)) + 8|0); - $966 = ($965>>>0)<($$lcssa217>>>0); - if ($966) { - $964 = $963; - } else { - break; - } + $922 = ((($$0$i$i$i)) + 8|0); + $923 = HEAP32[$922>>2]|0; + $$0$i$i$i = $923; + } + $924 = ((($920)) + -47|0); + $925 = ((($924)) + 8|0); + $926 = $925; + $927 = $926 & 7; + $928 = ($927|0)==(0); + $929 = (0 - ($926))|0; + $930 = $929 & 7; + $931 = $928 ? 0 : $930; + $932 = (($924) + ($931)|0); + $933 = ((($630)) + 16|0); + $934 = ($932>>>0)<($933>>>0); + $935 = $934 ? $630 : $932; + $936 = ((($935)) + 8|0); + $937 = ((($935)) + 24|0); + $938 = (($$723948$i) + -40)|0; + $939 = ((($$749$i)) + 8|0); + $940 = $939; + $941 = $940 & 7; + $942 = ($941|0)==(0); + $943 = (0 - ($940))|0; + $944 = $943 & 7; + $945 = $942 ? 0 : $944; + $946 = (($$749$i) + ($945)|0); + $947 = (($938) - ($945))|0; + HEAP32[(32988)>>2] = $946; + HEAP32[(32976)>>2] = $947; + $948 = $947 | 1; + $949 = ((($946)) + 4|0); + HEAP32[$949>>2] = $948; + $950 = (($946) + ($947)|0); + $951 = ((($950)) + 4|0); + HEAP32[$951>>2] = 40; + $952 = HEAP32[(33452)>>2]|0; + HEAP32[(32992)>>2] = $952; + $953 = ((($935)) + 4|0); + HEAP32[$953>>2] = 27; + ;HEAP32[$936>>2]=HEAP32[(33412)>>2]|0;HEAP32[$936+4>>2]=HEAP32[(33412)+4>>2]|0;HEAP32[$936+8>>2]=HEAP32[(33412)+8>>2]|0;HEAP32[$936+12>>2]=HEAP32[(33412)+12>>2]|0; + HEAP32[(33412)>>2] = $$749$i; + HEAP32[(33416)>>2] = $$723948$i; + HEAP32[(33424)>>2] = 0; + HEAP32[(33420)>>2] = $936; + $955 = $937; + while(1) { + $954 = ((($955)) + 4|0); + HEAP32[$954>>2] = 7; + $956 = ((($955)) + 8|0); + $957 = ($956>>>0)<($920>>>0); + if ($957) { + $955 = $954; + } else { + break; } } - $967 = ($943|0)==($635|0); - if (!($967)) { - $968 = $943; - $969 = $635; - $970 = (($968) - ($969))|0; - $971 = HEAP32[$959>>2]|0; - $972 = $971 & -2; - HEAP32[$959>>2] = $972; - $973 = $970 | 1; - $974 = ((($635)) + 4|0); - HEAP32[$974>>2] = $973; - HEAP32[$943>>2] = $970; - $975 = $970 >>> 3; - $976 = ($970>>>0)<(256); - if ($976) { - $977 = $975 << 1; - $978 = (32716 + ($977<<2)|0); - $979 = HEAP32[32676>>2]|0; - $980 = 1 << $975; - $981 = $979 & $980; - $982 = ($981|0)==(0); - if ($982) { - $983 = $979 | $980; - HEAP32[32676>>2] = $983; - $$pre$i$i = (($977) + 2)|0; - $$pre14$i$i = (32716 + ($$pre$i$i<<2)|0); - $$pre$phi$i$iZ2D = $$pre14$i$i;$F$0$i$i = $978; + $958 = ($935|0)==($630|0); + if (!($958)) { + $959 = $935; + $960 = $630; + $961 = (($959) - ($960))|0; + $962 = HEAP32[$953>>2]|0; + $963 = $962 & -2; + HEAP32[$953>>2] = $963; + $964 = $961 | 1; + $965 = ((($630)) + 4|0); + HEAP32[$965>>2] = $964; + HEAP32[$935>>2] = $961; + $966 = $961 >>> 3; + $967 = ($961>>>0)<(256); + if ($967) { + $968 = $966 << 1; + $969 = (33004 + ($968<<2)|0); + $970 = HEAP32[8241]|0; + $971 = 1 << $966; + $972 = $970 & $971; + $973 = ($972|0)==(0); + if ($973) { + $974 = $970 | $971; + HEAP32[8241] = $974; + $$pre$i$i = ((($969)) + 8|0); + $$0211$i$i = $969;$$pre$phi$i$iZ2D = $$pre$i$i; } else { - $$sum4$i$i = (($977) + 2)|0; - $984 = (32716 + ($$sum4$i$i<<2)|0); - $985 = HEAP32[$984>>2]|0; - $986 = HEAP32[(32692)>>2]|0; - $987 = ($985>>>0)<($986>>>0); - if ($987) { + $975 = ((($969)) + 8|0); + $976 = HEAP32[$975>>2]|0; + $977 = HEAP32[(32980)>>2]|0; + $978 = ($976>>>0)<($977>>>0); + if ($978) { _abort(); // unreachable; } else { - $$pre$phi$i$iZ2D = $984;$F$0$i$i = $985; + $$0211$i$i = $976;$$pre$phi$i$iZ2D = $975; } } - HEAP32[$$pre$phi$i$iZ2D>>2] = $635; - $988 = ((($F$0$i$i)) + 12|0); - HEAP32[$988>>2] = $635; - $989 = ((($635)) + 8|0); - HEAP32[$989>>2] = $F$0$i$i; - $990 = ((($635)) + 12|0); - HEAP32[$990>>2] = $978; + HEAP32[$$pre$phi$i$iZ2D>>2] = $630; + $979 = ((($$0211$i$i)) + 12|0); + HEAP32[$979>>2] = $630; + $980 = ((($630)) + 8|0); + HEAP32[$980>>2] = $$0211$i$i; + $981 = ((($630)) + 12|0); + HEAP32[$981>>2] = $969; break; } - $991 = $970 >>> 8; - $992 = ($991|0)==(0); - if ($992) { - $I1$0$i$i = 0; + $982 = $961 >>> 8; + $983 = ($982|0)==(0); + if ($983) { + $$0212$i$i = 0; } else { - $993 = ($970>>>0)>(16777215); - if ($993) { - $I1$0$i$i = 31; + $984 = ($961>>>0)>(16777215); + if ($984) { + $$0212$i$i = 31; } else { - $994 = (($991) + 1048320)|0; + $985 = (($982) + 1048320)|0; + $986 = $985 >>> 16; + $987 = $986 & 8; + $988 = $982 << $987; + $989 = (($988) + 520192)|0; + $990 = $989 >>> 16; + $991 = $990 & 4; + $992 = $991 | $987; + $993 = $988 << $991; + $994 = (($993) + 245760)|0; $995 = $994 >>> 16; - $996 = $995 & 8; - $997 = $991 << $996; - $998 = (($997) + 520192)|0; - $999 = $998 >>> 16; - $1000 = $999 & 4; - $1001 = $1000 | $996; - $1002 = $997 << $1000; - $1003 = (($1002) + 245760)|0; - $1004 = $1003 >>> 16; - $1005 = $1004 & 2; - $1006 = $1001 | $1005; - $1007 = (14 - ($1006))|0; - $1008 = $1002 << $1005; - $1009 = $1008 >>> 15; - $1010 = (($1007) + ($1009))|0; - $1011 = $1010 << 1; - $1012 = (($1010) + 7)|0; - $1013 = $970 >>> $1012; - $1014 = $1013 & 1; - $1015 = $1014 | $1011; - $I1$0$i$i = $1015; + $996 = $995 & 2; + $997 = $992 | $996; + $998 = (14 - ($997))|0; + $999 = $993 << $996; + $1000 = $999 >>> 15; + $1001 = (($998) + ($1000))|0; + $1002 = $1001 << 1; + $1003 = (($1001) + 7)|0; + $1004 = $961 >>> $1003; + $1005 = $1004 & 1; + $1006 = $1005 | $1002; + $$0212$i$i = $1006; } } - $1016 = (32980 + ($I1$0$i$i<<2)|0); - $1017 = ((($635)) + 28|0); - HEAP32[$1017>>2] = $I1$0$i$i; - $1018 = ((($635)) + 20|0); - HEAP32[$1018>>2] = 0; - HEAP32[$941>>2] = 0; - $1019 = HEAP32[(32680)>>2]|0; - $1020 = 1 << $I1$0$i$i; - $1021 = $1019 & $1020; - $1022 = ($1021|0)==(0); - if ($1022) { - $1023 = $1019 | $1020; - HEAP32[(32680)>>2] = $1023; - HEAP32[$1016>>2] = $635; - $1024 = ((($635)) + 24|0); - HEAP32[$1024>>2] = $1016; - $1025 = ((($635)) + 12|0); - HEAP32[$1025>>2] = $635; - $1026 = ((($635)) + 8|0); - HEAP32[$1026>>2] = $635; + $1007 = (33268 + ($$0212$i$i<<2)|0); + $1008 = ((($630)) + 28|0); + HEAP32[$1008>>2] = $$0212$i$i; + $1009 = ((($630)) + 20|0); + HEAP32[$1009>>2] = 0; + HEAP32[$933>>2] = 0; + $1010 = HEAP32[(32968)>>2]|0; + $1011 = 1 << $$0212$i$i; + $1012 = $1010 & $1011; + $1013 = ($1012|0)==(0); + if ($1013) { + $1014 = $1010 | $1011; + HEAP32[(32968)>>2] = $1014; + HEAP32[$1007>>2] = $630; + $1015 = ((($630)) + 24|0); + HEAP32[$1015>>2] = $1007; + $1016 = ((($630)) + 12|0); + HEAP32[$1016>>2] = $630; + $1017 = ((($630)) + 8|0); + HEAP32[$1017>>2] = $630; break; } - $1027 = HEAP32[$1016>>2]|0; - $1028 = ((($1027)) + 4|0); - $1029 = HEAP32[$1028>>2]|0; - $1030 = $1029 & -8; - $1031 = ($1030|0)==($970|0); - L459: do { - if ($1031) { - $T$0$lcssa$i$i = $1027; + $1018 = HEAP32[$1007>>2]|0; + $1019 = ($$0212$i$i|0)==(31); + $1020 = $$0212$i$i >>> 1; + $1021 = (25 - ($1020))|0; + $1022 = $1019 ? 0 : $1021; + $1023 = $961 << $1022; + $$0206$i$i = $1023;$$0207$i$i = $1018; + while(1) { + $1024 = ((($$0207$i$i)) + 4|0); + $1025 = HEAP32[$1024>>2]|0; + $1026 = $1025 & -8; + $1027 = ($1026|0)==($961|0); + if ($1027) { + label = 292; + break; + } + $1028 = $$0206$i$i >>> 31; + $1029 = (((($$0207$i$i)) + 16|0) + ($1028<<2)|0); + $1030 = $$0206$i$i << 1; + $1031 = HEAP32[$1029>>2]|0; + $1032 = ($1031|0)==(0|0); + if ($1032) { + label = 289; + break; } else { - $1032 = ($I1$0$i$i|0)==(31); - $1033 = $I1$0$i$i >>> 1; - $1034 = (25 - ($1033))|0; - $1035 = $1032 ? 0 : $1034; - $1036 = $970 << $1035; - $K2$07$i$i = $1036;$T$06$i$i = $1027; - while(1) { - $1043 = $K2$07$i$i >>> 31; - $1044 = (((($T$06$i$i)) + 16|0) + ($1043<<2)|0); - $1039 = HEAP32[$1044>>2]|0; - $1045 = ($1039|0)==(0|0); - if ($1045) { - $$lcssa211 = $1044;$T$06$i$i$lcssa = $T$06$i$i; - break; - } - $1037 = $K2$07$i$i << 1; - $1038 = ((($1039)) + 4|0); - $1040 = HEAP32[$1038>>2]|0; - $1041 = $1040 & -8; - $1042 = ($1041|0)==($970|0); - if ($1042) { - $T$0$lcssa$i$i = $1039; - break L459; - } else { - $K2$07$i$i = $1037;$T$06$i$i = $1039; - } - } - $1046 = HEAP32[(32692)>>2]|0; - $1047 = ($$lcssa211>>>0)<($1046>>>0); - if ($1047) { - _abort(); - // unreachable; - } else { - HEAP32[$$lcssa211>>2] = $635; - $1048 = ((($635)) + 24|0); - HEAP32[$1048>>2] = $T$06$i$i$lcssa; - $1049 = ((($635)) + 12|0); - HEAP32[$1049>>2] = $635; - $1050 = ((($635)) + 8|0); - HEAP32[$1050>>2] = $635; - break L299; - } + $$0206$i$i = $1030;$$0207$i$i = $1031; + } + } + if ((label|0) == 289) { + $1033 = HEAP32[(32980)>>2]|0; + $1034 = ($1029>>>0)<($1033>>>0); + if ($1034) { + _abort(); + // unreachable; + } else { + HEAP32[$1029>>2] = $630; + $1035 = ((($630)) + 24|0); + HEAP32[$1035>>2] = $$0207$i$i; + $1036 = ((($630)) + 12|0); + HEAP32[$1036>>2] = $630; + $1037 = ((($630)) + 8|0); + HEAP32[$1037>>2] = $630; + break; + } + } + else if ((label|0) == 292) { + $1038 = ((($$0207$i$i)) + 8|0); + $1039 = HEAP32[$1038>>2]|0; + $1040 = HEAP32[(32980)>>2]|0; + $1041 = ($1039>>>0)>=($1040>>>0); + $not$$i$i = ($$0207$i$i>>>0)>=($1040>>>0); + $1042 = $1041 & $not$$i$i; + if ($1042) { + $1043 = ((($1039)) + 12|0); + HEAP32[$1043>>2] = $630; + HEAP32[$1038>>2] = $630; + $1044 = ((($630)) + 8|0); + HEAP32[$1044>>2] = $1039; + $1045 = ((($630)) + 12|0); + HEAP32[$1045>>2] = $$0207$i$i; + $1046 = ((($630)) + 24|0); + HEAP32[$1046>>2] = 0; + break; + } else { + _abort(); + // unreachable; } - } while(0); - $1051 = ((($T$0$lcssa$i$i)) + 8|0); - $1052 = HEAP32[$1051>>2]|0; - $1053 = HEAP32[(32692)>>2]|0; - $1054 = ($1052>>>0)>=($1053>>>0); - $not$$i$i = ($T$0$lcssa$i$i>>>0)>=($1053>>>0); - $1055 = $1054 & $not$$i$i; - if ($1055) { - $1056 = ((($1052)) + 12|0); - HEAP32[$1056>>2] = $635; - HEAP32[$1051>>2] = $635; - $1057 = ((($635)) + 8|0); - HEAP32[$1057>>2] = $1052; - $1058 = ((($635)) + 12|0); - HEAP32[$1058>>2] = $T$0$lcssa$i$i; - $1059 = ((($635)) + 24|0); - HEAP32[$1059>>2] = 0; - break; - } else { - _abort(); - // unreachable; } } } } while(0); - $1060 = HEAP32[(32688)>>2]|0; - $1061 = ($1060>>>0)>($nb$0>>>0); - if ($1061) { - $1062 = (($1060) - ($nb$0))|0; - HEAP32[(32688)>>2] = $1062; - $1063 = HEAP32[(32700)>>2]|0; - $1064 = (($1063) + ($nb$0)|0); - HEAP32[(32700)>>2] = $1064; - $1065 = $1062 | 1; - $$sum$i32 = (($nb$0) + 4)|0; - $1066 = (($1063) + ($$sum$i32)|0); - HEAP32[$1066>>2] = $1065; - $1067 = $nb$0 | 3; - $1068 = ((($1063)) + 4|0); - HEAP32[$1068>>2] = $1067; - $1069 = ((($1063)) + 8|0); - $mem$0 = $1069; - return ($mem$0|0); + $1048 = HEAP32[(32976)>>2]|0; + $1049 = ($1048>>>0)>($$0197>>>0); + if ($1049) { + $1050 = (($1048) - ($$0197))|0; + HEAP32[(32976)>>2] = $1050; + $1051 = HEAP32[(32988)>>2]|0; + $1052 = (($1051) + ($$0197)|0); + HEAP32[(32988)>>2] = $1052; + $1053 = $1050 | 1; + $1054 = ((($1052)) + 4|0); + HEAP32[$1054>>2] = $1053; + $1055 = $$0197 | 3; + $1056 = ((($1051)) + 4|0); + HEAP32[$1056>>2] = $1055; + $1057 = ((($1051)) + 8|0); + $$0 = $1057; + STACKTOP = sp;return ($$0|0); } } - $1070 = (___errno_location()|0); - HEAP32[$1070>>2] = 12; - $mem$0 = 0; - return ($mem$0|0); -} -function _free($mem) { - $mem = $mem|0; - var $$lcssa = 0, $$pre = 0, $$pre$phi59Z2D = 0, $$pre$phi61Z2D = 0, $$pre$phiZ2D = 0, $$pre57 = 0, $$pre58 = 0, $$pre60 = 0, $$sum = 0, $$sum11 = 0, $$sum12 = 0, $$sum13 = 0, $$sum14 = 0, $$sum1718 = 0, $$sum19 = 0, $$sum2 = 0, $$sum20 = 0, $$sum22 = 0, $$sum23 = 0, $$sum24 = 0; - var $$sum25 = 0, $$sum26 = 0, $$sum27 = 0, $$sum28 = 0, $$sum29 = 0, $$sum3 = 0, $$sum30 = 0, $$sum31 = 0, $$sum5 = 0, $$sum67 = 0, $$sum8 = 0, $$sum9 = 0, $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0; - var $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0; - var $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0; - var $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0; - var $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0; - var $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0; - var $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0; - var $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0; - var $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0; - var $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0; - var $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0; - var $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0; - var $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0; - var $321 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0; - var $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0; - var $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0; - var $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $F16$0 = 0, $I18$0 = 0, $K19$052 = 0, $R$0 = 0, $R$0$lcssa = 0, $R$1 = 0; - var $R7$0 = 0, $R7$0$lcssa = 0, $R7$1 = 0, $RP$0 = 0, $RP$0$lcssa = 0, $RP9$0 = 0, $RP9$0$lcssa = 0, $T$0$lcssa = 0, $T$051 = 0, $T$051$lcssa = 0, $cond = 0, $cond47 = 0, $not$ = 0, $p$0 = 0, $psize$0 = 0, $psize$1 = 0, $sp$0$i = 0, $sp$0$in$i = 0, label = 0, sp = 0; + $1058 = (___errno_location()|0); + HEAP32[$1058>>2] = 12; + $$0 = 0; + STACKTOP = sp;return ($$0|0); +} +function _free($0) { + $0 = $0|0; + var $$0212$i = 0, $$0212$in$i = 0, $$0383 = 0, $$0384 = 0, $$0396 = 0, $$0403 = 0, $$1 = 0, $$1382 = 0, $$1387 = 0, $$1390 = 0, $$1398 = 0, $$1402 = 0, $$2 = 0, $$3 = 0, $$3400 = 0, $$pre = 0, $$pre$phi443Z2D = 0, $$pre$phi445Z2D = 0, $$pre$phiZ2D = 0, $$pre442 = 0; + var $$pre444 = 0, $$sink3 = 0, $$sink5 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0; + var $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0; + var $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0; + var $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0; + var $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0; + var $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0; + var $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0; + var $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0; + var $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0; + var $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0; + var $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0; + var $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0; + var $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0; + var $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0; + var $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0; + var $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0; + var $99 = 0, $cond421 = 0, $cond422 = 0, $not$ = 0, $not$405 = 0, $not$437 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = ($mem|0)==(0|0); - if ($0) { + $1 = ($0|0)==(0|0); + if ($1) { return; } - $1 = ((($mem)) + -8|0); - $2 = HEAP32[(32692)>>2]|0; - $3 = ($1>>>0)<($2>>>0); - if ($3) { + $2 = ((($0)) + -8|0); + $3 = HEAP32[(32980)>>2]|0; + $4 = ($2>>>0)<($3>>>0); + if ($4) { _abort(); // unreachable; } - $4 = ((($mem)) + -4|0); - $5 = HEAP32[$4>>2]|0; - $6 = $5 & 3; - $7 = ($6|0)==(1); - if ($7) { + $5 = ((($0)) + -4|0); + $6 = HEAP32[$5>>2]|0; + $7 = $6 & 3; + $8 = ($7|0)==(1); + if ($8) { _abort(); // unreachable; } - $8 = $5 & -8; - $$sum = (($8) + -8)|0; - $9 = (($mem) + ($$sum)|0); - $10 = $5 & 1; - $11 = ($10|0)==(0); - do { - if ($11) { - $12 = HEAP32[$1>>2]|0; - $13 = ($6|0)==(0); - if ($13) { + $9 = $6 & -8; + $10 = (($2) + ($9)|0); + $11 = $6 & 1; + $12 = ($11|0)==(0); + L10: do { + if ($12) { + $13 = HEAP32[$2>>2]|0; + $14 = ($7|0)==(0); + if ($14) { return; } - $$sum2 = (-8 - ($12))|0; - $14 = (($mem) + ($$sum2)|0); - $15 = (($12) + ($8))|0; - $16 = ($14>>>0)<($2>>>0); - if ($16) { + $15 = (0 - ($13))|0; + $16 = (($2) + ($15)|0); + $17 = (($13) + ($9))|0; + $18 = ($16>>>0)<($3>>>0); + if ($18) { _abort(); // unreachable; } - $17 = HEAP32[(32696)>>2]|0; - $18 = ($14|0)==($17|0); - if ($18) { - $$sum3 = (($8) + -4)|0; - $103 = (($mem) + ($$sum3)|0); - $104 = HEAP32[$103>>2]|0; - $105 = $104 & 3; - $106 = ($105|0)==(3); - if (!($106)) { - $p$0 = $14;$psize$0 = $15; + $19 = HEAP32[(32984)>>2]|0; + $20 = ($16|0)==($19|0); + if ($20) { + $104 = ((($10)) + 4|0); + $105 = HEAP32[$104>>2]|0; + $106 = $105 & 3; + $107 = ($106|0)==(3); + if (!($107)) { + $$1 = $16;$$1382 = $17;$113 = $16; break; } - HEAP32[(32684)>>2] = $15; - $107 = $104 & -2; - HEAP32[$103>>2] = $107; - $108 = $15 | 1; - $$sum20 = (($$sum2) + 4)|0; - $109 = (($mem) + ($$sum20)|0); - HEAP32[$109>>2] = $108; - HEAP32[$9>>2] = $15; + $108 = (($16) + ($17)|0); + $109 = ((($16)) + 4|0); + $110 = $17 | 1; + $111 = $105 & -2; + HEAP32[(32972)>>2] = $17; + HEAP32[$104>>2] = $111; + HEAP32[$109>>2] = $110; + HEAP32[$108>>2] = $17; return; } - $19 = $12 >>> 3; - $20 = ($12>>>0)<(256); - if ($20) { - $$sum30 = (($$sum2) + 8)|0; - $21 = (($mem) + ($$sum30)|0); - $22 = HEAP32[$21>>2]|0; - $$sum31 = (($$sum2) + 12)|0; - $23 = (($mem) + ($$sum31)|0); + $21 = $13 >>> 3; + $22 = ($13>>>0)<(256); + if ($22) { + $23 = ((($16)) + 8|0); $24 = HEAP32[$23>>2]|0; - $25 = $19 << 1; - $26 = (32716 + ($25<<2)|0); - $27 = ($22|0)==($26|0); - if (!($27)) { - $28 = ($22>>>0)<($2>>>0); - if ($28) { + $25 = ((($16)) + 12|0); + $26 = HEAP32[$25>>2]|0; + $27 = $21 << 1; + $28 = (33004 + ($27<<2)|0); + $29 = ($24|0)==($28|0); + if (!($29)) { + $30 = ($24>>>0)<($3>>>0); + if ($30) { _abort(); // unreachable; } - $29 = ((($22)) + 12|0); - $30 = HEAP32[$29>>2]|0; - $31 = ($30|0)==($14|0); - if (!($31)) { + $31 = ((($24)) + 12|0); + $32 = HEAP32[$31>>2]|0; + $33 = ($32|0)==($16|0); + if (!($33)) { _abort(); // unreachable; } } - $32 = ($24|0)==($22|0); - if ($32) { - $33 = 1 << $19; - $34 = $33 ^ -1; - $35 = HEAP32[32676>>2]|0; - $36 = $35 & $34; - HEAP32[32676>>2] = $36; - $p$0 = $14;$psize$0 = $15; + $34 = ($26|0)==($24|0); + if ($34) { + $35 = 1 << $21; + $36 = $35 ^ -1; + $37 = HEAP32[8241]|0; + $38 = $37 & $36; + HEAP32[8241] = $38; + $$1 = $16;$$1382 = $17;$113 = $16; break; } - $37 = ($24|0)==($26|0); - if ($37) { - $$pre60 = ((($24)) + 8|0); - $$pre$phi61Z2D = $$pre60; + $39 = ($26|0)==($28|0); + if ($39) { + $$pre444 = ((($26)) + 8|0); + $$pre$phi445Z2D = $$pre444; } else { - $38 = ($24>>>0)<($2>>>0); - if ($38) { + $40 = ($26>>>0)<($3>>>0); + if ($40) { _abort(); // unreachable; } - $39 = ((($24)) + 8|0); - $40 = HEAP32[$39>>2]|0; - $41 = ($40|0)==($14|0); - if ($41) { - $$pre$phi61Z2D = $39; + $41 = ((($26)) + 8|0); + $42 = HEAP32[$41>>2]|0; + $43 = ($42|0)==($16|0); + if ($43) { + $$pre$phi445Z2D = $41; } else { _abort(); // unreachable; } } - $42 = ((($22)) + 12|0); - HEAP32[$42>>2] = $24; - HEAP32[$$pre$phi61Z2D>>2] = $22; - $p$0 = $14;$psize$0 = $15; + $44 = ((($24)) + 12|0); + HEAP32[$44>>2] = $26; + HEAP32[$$pre$phi445Z2D>>2] = $24; + $$1 = $16;$$1382 = $17;$113 = $16; break; } - $$sum22 = (($$sum2) + 24)|0; - $43 = (($mem) + ($$sum22)|0); - $44 = HEAP32[$43>>2]|0; - $$sum23 = (($$sum2) + 12)|0; - $45 = (($mem) + ($$sum23)|0); + $45 = ((($16)) + 24|0); $46 = HEAP32[$45>>2]|0; - $47 = ($46|0)==($14|0); + $47 = ((($16)) + 12|0); + $48 = HEAP32[$47>>2]|0; + $49 = ($48|0)==($16|0); do { - if ($47) { - $$sum25 = (($$sum2) + 20)|0; - $57 = (($mem) + ($$sum25)|0); - $58 = HEAP32[$57>>2]|0; - $59 = ($58|0)==(0|0); - if ($59) { - $$sum24 = (($$sum2) + 16)|0; - $60 = (($mem) + ($$sum24)|0); - $61 = HEAP32[$60>>2]|0; - $62 = ($61|0)==(0|0); - if ($62) { - $R$1 = 0; + if ($49) { + $59 = ((($16)) + 16|0); + $60 = ((($59)) + 4|0); + $61 = HEAP32[$60>>2]|0; + $62 = ($61|0)==(0|0); + if ($62) { + $63 = HEAP32[$59>>2]|0; + $64 = ($63|0)==(0|0); + if ($64) { + $$3 = 0; break; } else { - $R$0 = $61;$RP$0 = $60; + $$1387 = $63;$$1390 = $59; } } else { - $R$0 = $58;$RP$0 = $57; + $$1387 = $61;$$1390 = $60; } while(1) { - $63 = ((($R$0)) + 20|0); - $64 = HEAP32[$63>>2]|0; - $65 = ($64|0)==(0|0); - if (!($65)) { - $R$0 = $64;$RP$0 = $63; + $65 = ((($$1387)) + 20|0); + $66 = HEAP32[$65>>2]|0; + $67 = ($66|0)==(0|0); + if (!($67)) { + $$1387 = $66;$$1390 = $65; continue; } - $66 = ((($R$0)) + 16|0); - $67 = HEAP32[$66>>2]|0; - $68 = ($67|0)==(0|0); - if ($68) { - $R$0$lcssa = $R$0;$RP$0$lcssa = $RP$0; + $68 = ((($$1387)) + 16|0); + $69 = HEAP32[$68>>2]|0; + $70 = ($69|0)==(0|0); + if ($70) { break; } else { - $R$0 = $67;$RP$0 = $66; + $$1387 = $69;$$1390 = $68; } } - $69 = ($RP$0$lcssa>>>0)<($2>>>0); - if ($69) { + $71 = ($$1390>>>0)<($3>>>0); + if ($71) { _abort(); // unreachable; } else { - HEAP32[$RP$0$lcssa>>2] = 0; - $R$1 = $R$0$lcssa; + HEAP32[$$1390>>2] = 0; + $$3 = $$1387; break; } } else { - $$sum29 = (($$sum2) + 8)|0; - $48 = (($mem) + ($$sum29)|0); - $49 = HEAP32[$48>>2]|0; - $50 = ($49>>>0)<($2>>>0); - if ($50) { + $50 = ((($16)) + 8|0); + $51 = HEAP32[$50>>2]|0; + $52 = ($51>>>0)<($3>>>0); + if ($52) { _abort(); // unreachable; } - $51 = ((($49)) + 12|0); - $52 = HEAP32[$51>>2]|0; - $53 = ($52|0)==($14|0); - if (!($53)) { + $53 = ((($51)) + 12|0); + $54 = HEAP32[$53>>2]|0; + $55 = ($54|0)==($16|0); + if (!($55)) { _abort(); // unreachable; } - $54 = ((($46)) + 8|0); - $55 = HEAP32[$54>>2]|0; - $56 = ($55|0)==($14|0); - if ($56) { - HEAP32[$51>>2] = $46; - HEAP32[$54>>2] = $49; - $R$1 = $46; + $56 = ((($48)) + 8|0); + $57 = HEAP32[$56>>2]|0; + $58 = ($57|0)==($16|0); + if ($58) { + HEAP32[$53>>2] = $48; + HEAP32[$56>>2] = $51; + $$3 = $48; break; } else { _abort(); @@ -23320,294 +19594,285 @@ function _free($mem) { } } } while(0); - $70 = ($44|0)==(0|0); - if ($70) { - $p$0 = $14;$psize$0 = $15; + $72 = ($46|0)==(0|0); + if ($72) { + $$1 = $16;$$1382 = $17;$113 = $16; } else { - $$sum26 = (($$sum2) + 28)|0; - $71 = (($mem) + ($$sum26)|0); - $72 = HEAP32[$71>>2]|0; - $73 = (32980 + ($72<<2)|0); + $73 = ((($16)) + 28|0); $74 = HEAP32[$73>>2]|0; - $75 = ($14|0)==($74|0); - if ($75) { - HEAP32[$73>>2] = $R$1; - $cond = ($R$1|0)==(0|0); - if ($cond) { - $76 = 1 << $72; - $77 = $76 ^ -1; - $78 = HEAP32[(32680)>>2]|0; - $79 = $78 & $77; - HEAP32[(32680)>>2] = $79; - $p$0 = $14;$psize$0 = $15; - break; - } - } else { - $80 = HEAP32[(32692)>>2]|0; - $81 = ($44>>>0)<($80>>>0); - if ($81) { - _abort(); - // unreachable; - } - $82 = ((($44)) + 16|0); - $83 = HEAP32[$82>>2]|0; - $84 = ($83|0)==($14|0); - if ($84) { - HEAP32[$82>>2] = $R$1; + $75 = (33268 + ($74<<2)|0); + $76 = HEAP32[$75>>2]|0; + $77 = ($16|0)==($76|0); + do { + if ($77) { + HEAP32[$75>>2] = $$3; + $cond421 = ($$3|0)==(0|0); + if ($cond421) { + $78 = 1 << $74; + $79 = $78 ^ -1; + $80 = HEAP32[(32968)>>2]|0; + $81 = $80 & $79; + HEAP32[(32968)>>2] = $81; + $$1 = $16;$$1382 = $17;$113 = $16; + break L10; + } } else { - $85 = ((($44)) + 20|0); - HEAP32[$85>>2] = $R$1; - } - $86 = ($R$1|0)==(0|0); - if ($86) { - $p$0 = $14;$psize$0 = $15; - break; + $82 = HEAP32[(32980)>>2]|0; + $83 = ($46>>>0)<($82>>>0); + if ($83) { + _abort(); + // unreachable; + } else { + $84 = ((($46)) + 16|0); + $85 = HEAP32[$84>>2]|0; + $not$405 = ($85|0)!=($16|0); + $$sink3 = $not$405&1; + $86 = (((($46)) + 16|0) + ($$sink3<<2)|0); + HEAP32[$86>>2] = $$3; + $87 = ($$3|0)==(0|0); + if ($87) { + $$1 = $16;$$1382 = $17;$113 = $16; + break L10; + } else { + break; + } + } } - } - $87 = HEAP32[(32692)>>2]|0; - $88 = ($R$1>>>0)<($87>>>0); - if ($88) { + } while(0); + $88 = HEAP32[(32980)>>2]|0; + $89 = ($$3>>>0)<($88>>>0); + if ($89) { _abort(); // unreachable; } - $89 = ((($R$1)) + 24|0); - HEAP32[$89>>2] = $44; - $$sum27 = (($$sum2) + 16)|0; - $90 = (($mem) + ($$sum27)|0); - $91 = HEAP32[$90>>2]|0; - $92 = ($91|0)==(0|0); + $90 = ((($$3)) + 24|0); + HEAP32[$90>>2] = $46; + $91 = ((($16)) + 16|0); + $92 = HEAP32[$91>>2]|0; + $93 = ($92|0)==(0|0); do { - if (!($92)) { - $93 = ($91>>>0)<($87>>>0); - if ($93) { + if (!($93)) { + $94 = ($92>>>0)<($88>>>0); + if ($94) { _abort(); // unreachable; } else { - $94 = ((($R$1)) + 16|0); - HEAP32[$94>>2] = $91; - $95 = ((($91)) + 24|0); - HEAP32[$95>>2] = $R$1; + $95 = ((($$3)) + 16|0); + HEAP32[$95>>2] = $92; + $96 = ((($92)) + 24|0); + HEAP32[$96>>2] = $$3; break; } } } while(0); - $$sum28 = (($$sum2) + 20)|0; - $96 = (($mem) + ($$sum28)|0); - $97 = HEAP32[$96>>2]|0; - $98 = ($97|0)==(0|0); - if ($98) { - $p$0 = $14;$psize$0 = $15; + $97 = ((($91)) + 4|0); + $98 = HEAP32[$97>>2]|0; + $99 = ($98|0)==(0|0); + if ($99) { + $$1 = $16;$$1382 = $17;$113 = $16; } else { - $99 = HEAP32[(32692)>>2]|0; - $100 = ($97>>>0)<($99>>>0); - if ($100) { + $100 = HEAP32[(32980)>>2]|0; + $101 = ($98>>>0)<($100>>>0); + if ($101) { _abort(); // unreachable; } else { - $101 = ((($R$1)) + 20|0); - HEAP32[$101>>2] = $97; - $102 = ((($97)) + 24|0); - HEAP32[$102>>2] = $R$1; - $p$0 = $14;$psize$0 = $15; + $102 = ((($$3)) + 20|0); + HEAP32[$102>>2] = $98; + $103 = ((($98)) + 24|0); + HEAP32[$103>>2] = $$3; + $$1 = $16;$$1382 = $17;$113 = $16; break; } } } } else { - $p$0 = $1;$psize$0 = $8; + $$1 = $2;$$1382 = $9;$113 = $2; } } while(0); - $110 = ($p$0>>>0)<($9>>>0); - if (!($110)) { + $112 = ($113>>>0)<($10>>>0); + if (!($112)) { _abort(); // unreachable; } - $$sum19 = (($8) + -4)|0; - $111 = (($mem) + ($$sum19)|0); - $112 = HEAP32[$111>>2]|0; - $113 = $112 & 1; - $114 = ($113|0)==(0); - if ($114) { + $114 = ((($10)) + 4|0); + $115 = HEAP32[$114>>2]|0; + $116 = $115 & 1; + $117 = ($116|0)==(0); + if ($117) { _abort(); // unreachable; } - $115 = $112 & 2; - $116 = ($115|0)==(0); - if ($116) { - $117 = HEAP32[(32700)>>2]|0; - $118 = ($9|0)==($117|0); - if ($118) { - $119 = HEAP32[(32688)>>2]|0; - $120 = (($119) + ($psize$0))|0; - HEAP32[(32688)>>2] = $120; - HEAP32[(32700)>>2] = $p$0; - $121 = $120 | 1; - $122 = ((($p$0)) + 4|0); - HEAP32[$122>>2] = $121; - $123 = HEAP32[(32696)>>2]|0; - $124 = ($p$0|0)==($123|0); - if (!($124)) { + $118 = $115 & 2; + $119 = ($118|0)==(0); + if ($119) { + $120 = HEAP32[(32988)>>2]|0; + $121 = ($10|0)==($120|0); + $122 = HEAP32[(32984)>>2]|0; + if ($121) { + $123 = HEAP32[(32976)>>2]|0; + $124 = (($123) + ($$1382))|0; + HEAP32[(32976)>>2] = $124; + HEAP32[(32988)>>2] = $$1; + $125 = $124 | 1; + $126 = ((($$1)) + 4|0); + HEAP32[$126>>2] = $125; + $127 = ($$1|0)==($122|0); + if (!($127)) { return; } - HEAP32[(32696)>>2] = 0; - HEAP32[(32684)>>2] = 0; + HEAP32[(32984)>>2] = 0; + HEAP32[(32972)>>2] = 0; return; } - $125 = HEAP32[(32696)>>2]|0; - $126 = ($9|0)==($125|0); - if ($126) { - $127 = HEAP32[(32684)>>2]|0; - $128 = (($127) + ($psize$0))|0; - HEAP32[(32684)>>2] = $128; - HEAP32[(32696)>>2] = $p$0; - $129 = $128 | 1; - $130 = ((($p$0)) + 4|0); - HEAP32[$130>>2] = $129; - $131 = (($p$0) + ($128)|0); - HEAP32[$131>>2] = $128; + $128 = ($10|0)==($122|0); + if ($128) { + $129 = HEAP32[(32972)>>2]|0; + $130 = (($129) + ($$1382))|0; + HEAP32[(32972)>>2] = $130; + HEAP32[(32984)>>2] = $113; + $131 = $130 | 1; + $132 = ((($$1)) + 4|0); + HEAP32[$132>>2] = $131; + $133 = (($113) + ($130)|0); + HEAP32[$133>>2] = $130; return; } - $132 = $112 & -8; - $133 = (($132) + ($psize$0))|0; - $134 = $112 >>> 3; - $135 = ($112>>>0)<(256); - do { - if ($135) { - $136 = (($mem) + ($8)|0); - $137 = HEAP32[$136>>2]|0; - $$sum1718 = $8 | 4; - $138 = (($mem) + ($$sum1718)|0); + $134 = $115 & -8; + $135 = (($134) + ($$1382))|0; + $136 = $115 >>> 3; + $137 = ($115>>>0)<(256); + L108: do { + if ($137) { + $138 = ((($10)) + 8|0); $139 = HEAP32[$138>>2]|0; - $140 = $134 << 1; - $141 = (32716 + ($140<<2)|0); - $142 = ($137|0)==($141|0); - if (!($142)) { - $143 = HEAP32[(32692)>>2]|0; - $144 = ($137>>>0)<($143>>>0); - if ($144) { + $140 = ((($10)) + 12|0); + $141 = HEAP32[$140>>2]|0; + $142 = $136 << 1; + $143 = (33004 + ($142<<2)|0); + $144 = ($139|0)==($143|0); + if (!($144)) { + $145 = HEAP32[(32980)>>2]|0; + $146 = ($139>>>0)<($145>>>0); + if ($146) { _abort(); // unreachable; } - $145 = ((($137)) + 12|0); - $146 = HEAP32[$145>>2]|0; - $147 = ($146|0)==($9|0); - if (!($147)) { + $147 = ((($139)) + 12|0); + $148 = HEAP32[$147>>2]|0; + $149 = ($148|0)==($10|0); + if (!($149)) { _abort(); // unreachable; } } - $148 = ($139|0)==($137|0); - if ($148) { - $149 = 1 << $134; - $150 = $149 ^ -1; - $151 = HEAP32[32676>>2]|0; - $152 = $151 & $150; - HEAP32[32676>>2] = $152; + $150 = ($141|0)==($139|0); + if ($150) { + $151 = 1 << $136; + $152 = $151 ^ -1; + $153 = HEAP32[8241]|0; + $154 = $153 & $152; + HEAP32[8241] = $154; break; } - $153 = ($139|0)==($141|0); - if ($153) { - $$pre58 = ((($139)) + 8|0); - $$pre$phi59Z2D = $$pre58; + $155 = ($141|0)==($143|0); + if ($155) { + $$pre442 = ((($141)) + 8|0); + $$pre$phi443Z2D = $$pre442; } else { - $154 = HEAP32[(32692)>>2]|0; - $155 = ($139>>>0)<($154>>>0); - if ($155) { + $156 = HEAP32[(32980)>>2]|0; + $157 = ($141>>>0)<($156>>>0); + if ($157) { _abort(); // unreachable; } - $156 = ((($139)) + 8|0); - $157 = HEAP32[$156>>2]|0; - $158 = ($157|0)==($9|0); - if ($158) { - $$pre$phi59Z2D = $156; + $158 = ((($141)) + 8|0); + $159 = HEAP32[$158>>2]|0; + $160 = ($159|0)==($10|0); + if ($160) { + $$pre$phi443Z2D = $158; } else { _abort(); // unreachable; } } - $159 = ((($137)) + 12|0); - HEAP32[$159>>2] = $139; - HEAP32[$$pre$phi59Z2D>>2] = $137; + $161 = ((($139)) + 12|0); + HEAP32[$161>>2] = $141; + HEAP32[$$pre$phi443Z2D>>2] = $139; } else { - $$sum5 = (($8) + 16)|0; - $160 = (($mem) + ($$sum5)|0); - $161 = HEAP32[$160>>2]|0; - $$sum67 = $8 | 4; - $162 = (($mem) + ($$sum67)|0); + $162 = ((($10)) + 24|0); $163 = HEAP32[$162>>2]|0; - $164 = ($163|0)==($9|0); + $164 = ((($10)) + 12|0); + $165 = HEAP32[$164>>2]|0; + $166 = ($165|0)==($10|0); do { - if ($164) { - $$sum9 = (($8) + 12)|0; - $175 = (($mem) + ($$sum9)|0); - $176 = HEAP32[$175>>2]|0; - $177 = ($176|0)==(0|0); - if ($177) { - $$sum8 = (($8) + 8)|0; - $178 = (($mem) + ($$sum8)|0); - $179 = HEAP32[$178>>2]|0; - $180 = ($179|0)==(0|0); - if ($180) { - $R7$1 = 0; + if ($166) { + $177 = ((($10)) + 16|0); + $178 = ((($177)) + 4|0); + $179 = HEAP32[$178>>2]|0; + $180 = ($179|0)==(0|0); + if ($180) { + $181 = HEAP32[$177>>2]|0; + $182 = ($181|0)==(0|0); + if ($182) { + $$3400 = 0; break; } else { - $R7$0 = $179;$RP9$0 = $178; + $$1398 = $181;$$1402 = $177; } } else { - $R7$0 = $176;$RP9$0 = $175; + $$1398 = $179;$$1402 = $178; } while(1) { - $181 = ((($R7$0)) + 20|0); - $182 = HEAP32[$181>>2]|0; - $183 = ($182|0)==(0|0); - if (!($183)) { - $R7$0 = $182;$RP9$0 = $181; + $183 = ((($$1398)) + 20|0); + $184 = HEAP32[$183>>2]|0; + $185 = ($184|0)==(0|0); + if (!($185)) { + $$1398 = $184;$$1402 = $183; continue; } - $184 = ((($R7$0)) + 16|0); - $185 = HEAP32[$184>>2]|0; - $186 = ($185|0)==(0|0); - if ($186) { - $R7$0$lcssa = $R7$0;$RP9$0$lcssa = $RP9$0; + $186 = ((($$1398)) + 16|0); + $187 = HEAP32[$186>>2]|0; + $188 = ($187|0)==(0|0); + if ($188) { break; } else { - $R7$0 = $185;$RP9$0 = $184; + $$1398 = $187;$$1402 = $186; } } - $187 = HEAP32[(32692)>>2]|0; - $188 = ($RP9$0$lcssa>>>0)<($187>>>0); - if ($188) { + $189 = HEAP32[(32980)>>2]|0; + $190 = ($$1402>>>0)<($189>>>0); + if ($190) { _abort(); // unreachable; } else { - HEAP32[$RP9$0$lcssa>>2] = 0; - $R7$1 = $R7$0$lcssa; + HEAP32[$$1402>>2] = 0; + $$3400 = $$1398; break; } } else { - $165 = (($mem) + ($8)|0); - $166 = HEAP32[$165>>2]|0; - $167 = HEAP32[(32692)>>2]|0; - $168 = ($166>>>0)<($167>>>0); - if ($168) { + $167 = ((($10)) + 8|0); + $168 = HEAP32[$167>>2]|0; + $169 = HEAP32[(32980)>>2]|0; + $170 = ($168>>>0)<($169>>>0); + if ($170) { _abort(); // unreachable; } - $169 = ((($166)) + 12|0); - $170 = HEAP32[$169>>2]|0; - $171 = ($170|0)==($9|0); - if (!($171)) { + $171 = ((($168)) + 12|0); + $172 = HEAP32[$171>>2]|0; + $173 = ($172|0)==($10|0); + if (!($173)) { _abort(); // unreachable; } - $172 = ((($163)) + 8|0); - $173 = HEAP32[$172>>2]|0; - $174 = ($173|0)==($9|0); - if ($174) { - HEAP32[$169>>2] = $163; - HEAP32[$172>>2] = $166; - $R7$1 = $163; + $174 = ((($165)) + 8|0); + $175 = HEAP32[$174>>2]|0; + $176 = ($175|0)==($10|0); + if ($176) { + HEAP32[$171>>2] = $165; + HEAP32[$174>>2] = $168; + $$3400 = $165; break; } else { _abort(); @@ -23615,307 +19880,298 @@ function _free($mem) { } } } while(0); - $189 = ($161|0)==(0|0); - if (!($189)) { - $$sum12 = (($8) + 20)|0; - $190 = (($mem) + ($$sum12)|0); - $191 = HEAP32[$190>>2]|0; - $192 = (32980 + ($191<<2)|0); + $191 = ($163|0)==(0|0); + if (!($191)) { + $192 = ((($10)) + 28|0); $193 = HEAP32[$192>>2]|0; - $194 = ($9|0)==($193|0); - if ($194) { - HEAP32[$192>>2] = $R7$1; - $cond47 = ($R7$1|0)==(0|0); - if ($cond47) { - $195 = 1 << $191; - $196 = $195 ^ -1; - $197 = HEAP32[(32680)>>2]|0; - $198 = $197 & $196; - HEAP32[(32680)>>2] = $198; - break; - } - } else { - $199 = HEAP32[(32692)>>2]|0; - $200 = ($161>>>0)<($199>>>0); - if ($200) { - _abort(); - // unreachable; - } - $201 = ((($161)) + 16|0); - $202 = HEAP32[$201>>2]|0; - $203 = ($202|0)==($9|0); - if ($203) { - HEAP32[$201>>2] = $R7$1; + $194 = (33268 + ($193<<2)|0); + $195 = HEAP32[$194>>2]|0; + $196 = ($10|0)==($195|0); + do { + if ($196) { + HEAP32[$194>>2] = $$3400; + $cond422 = ($$3400|0)==(0|0); + if ($cond422) { + $197 = 1 << $193; + $198 = $197 ^ -1; + $199 = HEAP32[(32968)>>2]|0; + $200 = $199 & $198; + HEAP32[(32968)>>2] = $200; + break L108; + } } else { - $204 = ((($161)) + 20|0); - HEAP32[$204>>2] = $R7$1; - } - $205 = ($R7$1|0)==(0|0); - if ($205) { - break; + $201 = HEAP32[(32980)>>2]|0; + $202 = ($163>>>0)<($201>>>0); + if ($202) { + _abort(); + // unreachable; + } else { + $203 = ((($163)) + 16|0); + $204 = HEAP32[$203>>2]|0; + $not$ = ($204|0)!=($10|0); + $$sink5 = $not$&1; + $205 = (((($163)) + 16|0) + ($$sink5<<2)|0); + HEAP32[$205>>2] = $$3400; + $206 = ($$3400|0)==(0|0); + if ($206) { + break L108; + } else { + break; + } + } } - } - $206 = HEAP32[(32692)>>2]|0; - $207 = ($R7$1>>>0)<($206>>>0); - if ($207) { + } while(0); + $207 = HEAP32[(32980)>>2]|0; + $208 = ($$3400>>>0)<($207>>>0); + if ($208) { _abort(); // unreachable; } - $208 = ((($R7$1)) + 24|0); - HEAP32[$208>>2] = $161; - $$sum13 = (($8) + 8)|0; - $209 = (($mem) + ($$sum13)|0); - $210 = HEAP32[$209>>2]|0; - $211 = ($210|0)==(0|0); + $209 = ((($$3400)) + 24|0); + HEAP32[$209>>2] = $163; + $210 = ((($10)) + 16|0); + $211 = HEAP32[$210>>2]|0; + $212 = ($211|0)==(0|0); do { - if (!($211)) { - $212 = ($210>>>0)<($206>>>0); - if ($212) { + if (!($212)) { + $213 = ($211>>>0)<($207>>>0); + if ($213) { _abort(); // unreachable; } else { - $213 = ((($R7$1)) + 16|0); - HEAP32[$213>>2] = $210; - $214 = ((($210)) + 24|0); - HEAP32[$214>>2] = $R7$1; + $214 = ((($$3400)) + 16|0); + HEAP32[$214>>2] = $211; + $215 = ((($211)) + 24|0); + HEAP32[$215>>2] = $$3400; break; } } } while(0); - $$sum14 = (($8) + 12)|0; - $215 = (($mem) + ($$sum14)|0); - $216 = HEAP32[$215>>2]|0; - $217 = ($216|0)==(0|0); - if (!($217)) { - $218 = HEAP32[(32692)>>2]|0; - $219 = ($216>>>0)<($218>>>0); - if ($219) { + $216 = ((($210)) + 4|0); + $217 = HEAP32[$216>>2]|0; + $218 = ($217|0)==(0|0); + if (!($218)) { + $219 = HEAP32[(32980)>>2]|0; + $220 = ($217>>>0)<($219>>>0); + if ($220) { _abort(); // unreachable; } else { - $220 = ((($R7$1)) + 20|0); - HEAP32[$220>>2] = $216; - $221 = ((($216)) + 24|0); - HEAP32[$221>>2] = $R7$1; + $221 = ((($$3400)) + 20|0); + HEAP32[$221>>2] = $217; + $222 = ((($217)) + 24|0); + HEAP32[$222>>2] = $$3400; break; } } } } } while(0); - $222 = $133 | 1; - $223 = ((($p$0)) + 4|0); - HEAP32[$223>>2] = $222; - $224 = (($p$0) + ($133)|0); - HEAP32[$224>>2] = $133; - $225 = HEAP32[(32696)>>2]|0; - $226 = ($p$0|0)==($225|0); - if ($226) { - HEAP32[(32684)>>2] = $133; + $223 = $135 | 1; + $224 = ((($$1)) + 4|0); + HEAP32[$224>>2] = $223; + $225 = (($113) + ($135)|0); + HEAP32[$225>>2] = $135; + $226 = HEAP32[(32984)>>2]|0; + $227 = ($$1|0)==($226|0); + if ($227) { + HEAP32[(32972)>>2] = $135; return; } else { - $psize$1 = $133; + $$2 = $135; } } else { - $227 = $112 & -2; - HEAP32[$111>>2] = $227; - $228 = $psize$0 | 1; - $229 = ((($p$0)) + 4|0); - HEAP32[$229>>2] = $228; - $230 = (($p$0) + ($psize$0)|0); - HEAP32[$230>>2] = $psize$0; - $psize$1 = $psize$0; + $228 = $115 & -2; + HEAP32[$114>>2] = $228; + $229 = $$1382 | 1; + $230 = ((($$1)) + 4|0); + HEAP32[$230>>2] = $229; + $231 = (($113) + ($$1382)|0); + HEAP32[$231>>2] = $$1382; + $$2 = $$1382; } - $231 = $psize$1 >>> 3; - $232 = ($psize$1>>>0)<(256); - if ($232) { - $233 = $231 << 1; - $234 = (32716 + ($233<<2)|0); - $235 = HEAP32[32676>>2]|0; - $236 = 1 << $231; - $237 = $235 & $236; - $238 = ($237|0)==(0); - if ($238) { - $239 = $235 | $236; - HEAP32[32676>>2] = $239; - $$pre = (($233) + 2)|0; - $$pre57 = (32716 + ($$pre<<2)|0); - $$pre$phiZ2D = $$pre57;$F16$0 = $234; + $232 = $$2 >>> 3; + $233 = ($$2>>>0)<(256); + if ($233) { + $234 = $232 << 1; + $235 = (33004 + ($234<<2)|0); + $236 = HEAP32[8241]|0; + $237 = 1 << $232; + $238 = $236 & $237; + $239 = ($238|0)==(0); + if ($239) { + $240 = $236 | $237; + HEAP32[8241] = $240; + $$pre = ((($235)) + 8|0); + $$0403 = $235;$$pre$phiZ2D = $$pre; } else { - $$sum11 = (($233) + 2)|0; - $240 = (32716 + ($$sum11<<2)|0); - $241 = HEAP32[$240>>2]|0; - $242 = HEAP32[(32692)>>2]|0; - $243 = ($241>>>0)<($242>>>0); - if ($243) { + $241 = ((($235)) + 8|0); + $242 = HEAP32[$241>>2]|0; + $243 = HEAP32[(32980)>>2]|0; + $244 = ($242>>>0)<($243>>>0); + if ($244) { _abort(); // unreachable; } else { - $$pre$phiZ2D = $240;$F16$0 = $241; + $$0403 = $242;$$pre$phiZ2D = $241; } } - HEAP32[$$pre$phiZ2D>>2] = $p$0; - $244 = ((($F16$0)) + 12|0); - HEAP32[$244>>2] = $p$0; - $245 = ((($p$0)) + 8|0); - HEAP32[$245>>2] = $F16$0; - $246 = ((($p$0)) + 12|0); - HEAP32[$246>>2] = $234; + HEAP32[$$pre$phiZ2D>>2] = $$1; + $245 = ((($$0403)) + 12|0); + HEAP32[$245>>2] = $$1; + $246 = ((($$1)) + 8|0); + HEAP32[$246>>2] = $$0403; + $247 = ((($$1)) + 12|0); + HEAP32[$247>>2] = $235; return; } - $247 = $psize$1 >>> 8; - $248 = ($247|0)==(0); - if ($248) { - $I18$0 = 0; + $248 = $$2 >>> 8; + $249 = ($248|0)==(0); + if ($249) { + $$0396 = 0; } else { - $249 = ($psize$1>>>0)>(16777215); - if ($249) { - $I18$0 = 31; + $250 = ($$2>>>0)>(16777215); + if ($250) { + $$0396 = 31; } else { - $250 = (($247) + 1048320)|0; - $251 = $250 >>> 16; - $252 = $251 & 8; - $253 = $247 << $252; - $254 = (($253) + 520192)|0; - $255 = $254 >>> 16; - $256 = $255 & 4; - $257 = $256 | $252; - $258 = $253 << $256; - $259 = (($258) + 245760)|0; - $260 = $259 >>> 16; - $261 = $260 & 2; - $262 = $257 | $261; - $263 = (14 - ($262))|0; - $264 = $258 << $261; - $265 = $264 >>> 15; - $266 = (($263) + ($265))|0; - $267 = $266 << 1; - $268 = (($266) + 7)|0; - $269 = $psize$1 >>> $268; - $270 = $269 & 1; - $271 = $270 | $267; - $I18$0 = $271; + $251 = (($248) + 1048320)|0; + $252 = $251 >>> 16; + $253 = $252 & 8; + $254 = $248 << $253; + $255 = (($254) + 520192)|0; + $256 = $255 >>> 16; + $257 = $256 & 4; + $258 = $257 | $253; + $259 = $254 << $257; + $260 = (($259) + 245760)|0; + $261 = $260 >>> 16; + $262 = $261 & 2; + $263 = $258 | $262; + $264 = (14 - ($263))|0; + $265 = $259 << $262; + $266 = $265 >>> 15; + $267 = (($264) + ($266))|0; + $268 = $267 << 1; + $269 = (($267) + 7)|0; + $270 = $$2 >>> $269; + $271 = $270 & 1; + $272 = $271 | $268; + $$0396 = $272; } } - $272 = (32980 + ($I18$0<<2)|0); - $273 = ((($p$0)) + 28|0); - HEAP32[$273>>2] = $I18$0; - $274 = ((($p$0)) + 16|0); - $275 = ((($p$0)) + 20|0); + $273 = (33268 + ($$0396<<2)|0); + $274 = ((($$1)) + 28|0); + HEAP32[$274>>2] = $$0396; + $275 = ((($$1)) + 16|0); + $276 = ((($$1)) + 20|0); + HEAP32[$276>>2] = 0; HEAP32[$275>>2] = 0; - HEAP32[$274>>2] = 0; - $276 = HEAP32[(32680)>>2]|0; - $277 = 1 << $I18$0; - $278 = $276 & $277; - $279 = ($278|0)==(0); - L199: do { - if ($279) { - $280 = $276 | $277; - HEAP32[(32680)>>2] = $280; - HEAP32[$272>>2] = $p$0; - $281 = ((($p$0)) + 24|0); - HEAP32[$281>>2] = $272; - $282 = ((($p$0)) + 12|0); - HEAP32[$282>>2] = $p$0; - $283 = ((($p$0)) + 8|0); - HEAP32[$283>>2] = $p$0; + $277 = HEAP32[(32968)>>2]|0; + $278 = 1 << $$0396; + $279 = $277 & $278; + $280 = ($279|0)==(0); + do { + if ($280) { + $281 = $277 | $278; + HEAP32[(32968)>>2] = $281; + HEAP32[$273>>2] = $$1; + $282 = ((($$1)) + 24|0); + HEAP32[$282>>2] = $273; + $283 = ((($$1)) + 12|0); + HEAP32[$283>>2] = $$1; + $284 = ((($$1)) + 8|0); + HEAP32[$284>>2] = $$1; } else { - $284 = HEAP32[$272>>2]|0; - $285 = ((($284)) + 4|0); - $286 = HEAP32[$285>>2]|0; - $287 = $286 & -8; - $288 = ($287|0)==($psize$1|0); - L202: do { - if ($288) { - $T$0$lcssa = $284; + $285 = HEAP32[$273>>2]|0; + $286 = ($$0396|0)==(31); + $287 = $$0396 >>> 1; + $288 = (25 - ($287))|0; + $289 = $286 ? 0 : $288; + $290 = $$2 << $289; + $$0383 = $290;$$0384 = $285; + while(1) { + $291 = ((($$0384)) + 4|0); + $292 = HEAP32[$291>>2]|0; + $293 = $292 & -8; + $294 = ($293|0)==($$2|0); + if ($294) { + label = 124; + break; + } + $295 = $$0383 >>> 31; + $296 = (((($$0384)) + 16|0) + ($295<<2)|0); + $297 = $$0383 << 1; + $298 = HEAP32[$296>>2]|0; + $299 = ($298|0)==(0|0); + if ($299) { + label = 121; + break; } else { - $289 = ($I18$0|0)==(31); - $290 = $I18$0 >>> 1; - $291 = (25 - ($290))|0; - $292 = $289 ? 0 : $291; - $293 = $psize$1 << $292; - $K19$052 = $293;$T$051 = $284; - while(1) { - $300 = $K19$052 >>> 31; - $301 = (((($T$051)) + 16|0) + ($300<<2)|0); - $296 = HEAP32[$301>>2]|0; - $302 = ($296|0)==(0|0); - if ($302) { - $$lcssa = $301;$T$051$lcssa = $T$051; - break; - } - $294 = $K19$052 << 1; - $295 = ((($296)) + 4|0); - $297 = HEAP32[$295>>2]|0; - $298 = $297 & -8; - $299 = ($298|0)==($psize$1|0); - if ($299) { - $T$0$lcssa = $296; - break L202; - } else { - $K19$052 = $294;$T$051 = $296; - } - } - $303 = HEAP32[(32692)>>2]|0; - $304 = ($$lcssa>>>0)<($303>>>0); - if ($304) { - _abort(); - // unreachable; - } else { - HEAP32[$$lcssa>>2] = $p$0; - $305 = ((($p$0)) + 24|0); - HEAP32[$305>>2] = $T$051$lcssa; - $306 = ((($p$0)) + 12|0); - HEAP32[$306>>2] = $p$0; - $307 = ((($p$0)) + 8|0); - HEAP32[$307>>2] = $p$0; - break L199; - } + $$0383 = $297;$$0384 = $298; + } + } + if ((label|0) == 121) { + $300 = HEAP32[(32980)>>2]|0; + $301 = ($296>>>0)<($300>>>0); + if ($301) { + _abort(); + // unreachable; + } else { + HEAP32[$296>>2] = $$1; + $302 = ((($$1)) + 24|0); + HEAP32[$302>>2] = $$0384; + $303 = ((($$1)) + 12|0); + HEAP32[$303>>2] = $$1; + $304 = ((($$1)) + 8|0); + HEAP32[$304>>2] = $$1; + break; + } + } + else if ((label|0) == 124) { + $305 = ((($$0384)) + 8|0); + $306 = HEAP32[$305>>2]|0; + $307 = HEAP32[(32980)>>2]|0; + $308 = ($306>>>0)>=($307>>>0); + $not$437 = ($$0384>>>0)>=($307>>>0); + $309 = $308 & $not$437; + if ($309) { + $310 = ((($306)) + 12|0); + HEAP32[$310>>2] = $$1; + HEAP32[$305>>2] = $$1; + $311 = ((($$1)) + 8|0); + HEAP32[$311>>2] = $306; + $312 = ((($$1)) + 12|0); + HEAP32[$312>>2] = $$0384; + $313 = ((($$1)) + 24|0); + HEAP32[$313>>2] = 0; + break; + } else { + _abort(); + // unreachable; } - } while(0); - $308 = ((($T$0$lcssa)) + 8|0); - $309 = HEAP32[$308>>2]|0; - $310 = HEAP32[(32692)>>2]|0; - $311 = ($309>>>0)>=($310>>>0); - $not$ = ($T$0$lcssa>>>0)>=($310>>>0); - $312 = $311 & $not$; - if ($312) { - $313 = ((($309)) + 12|0); - HEAP32[$313>>2] = $p$0; - HEAP32[$308>>2] = $p$0; - $314 = ((($p$0)) + 8|0); - HEAP32[$314>>2] = $309; - $315 = ((($p$0)) + 12|0); - HEAP32[$315>>2] = $T$0$lcssa; - $316 = ((($p$0)) + 24|0); - HEAP32[$316>>2] = 0; - break; - } else { - _abort(); - // unreachable; } } } while(0); - $317 = HEAP32[(32708)>>2]|0; - $318 = (($317) + -1)|0; - HEAP32[(32708)>>2] = $318; - $319 = ($318|0)==(0); - if ($319) { - $sp$0$in$i = (33132); + $314 = HEAP32[(32996)>>2]|0; + $315 = (($314) + -1)|0; + HEAP32[(32996)>>2] = $315; + $316 = ($315|0)==(0); + if ($316) { + $$0212$in$i = (33420); } else { return; } while(1) { - $sp$0$i = HEAP32[$sp$0$in$i>>2]|0; - $320 = ($sp$0$i|0)==(0|0); - $321 = ((($sp$0$i)) + 8|0); - if ($320) { + $$0212$i = HEAP32[$$0212$in$i>>2]|0; + $317 = ($$0212$i|0)==(0|0); + $318 = ((($$0212$i)) + 8|0); + if ($317) { break; } else { - $sp$0$in$i = $321; + $$0212$in$i = $318; } } - HEAP32[(32708)>>2] = -1; + HEAP32[(32996)>>2] = -1; return; } function runPostSets() { @@ -23953,31 +20209,51 @@ function _i64Add(a, b, c, d) { } function _memset(ptr, value, num) { ptr = ptr|0; value = value|0; num = num|0; - var stop = 0, value4 = 0, stop4 = 0, unaligned = 0; - stop = (ptr + num)|0; - if ((num|0) >= 20) { - // This is unaligned, but quite large, so work hard to get to aligned settings - value = value & 0xff; - unaligned = ptr & 3; + var end = 0, aligned_end = 0, block_aligned_end = 0, value4 = 0; + end = (ptr + num)|0; + + value = value & 0xff; + if ((num|0) >= 67 /* 64 bytes for an unrolled loop + 3 bytes for unaligned head*/) { + while ((ptr&3) != 0) { + HEAP8[((ptr)>>0)]=value; + ptr = (ptr+1)|0; + } + + aligned_end = (end & -4)|0; + block_aligned_end = (aligned_end - 64)|0; value4 = value | (value << 8) | (value << 16) | (value << 24); - stop4 = stop & ~3; - if (unaligned) { - unaligned = (ptr + 4 - unaligned)|0; - while ((ptr|0) < (unaligned|0)) { // no need to check for stop, since we have large num - HEAP8[((ptr)>>0)]=value; - ptr = (ptr+1)|0; - } + + while((ptr|0) <= (block_aligned_end|0)) { + HEAP32[((ptr)>>2)]=value4; + HEAP32[(((ptr)+(4))>>2)]=value4; + HEAP32[(((ptr)+(8))>>2)]=value4; + HEAP32[(((ptr)+(12))>>2)]=value4; + HEAP32[(((ptr)+(16))>>2)]=value4; + HEAP32[(((ptr)+(20))>>2)]=value4; + HEAP32[(((ptr)+(24))>>2)]=value4; + HEAP32[(((ptr)+(28))>>2)]=value4; + HEAP32[(((ptr)+(32))>>2)]=value4; + HEAP32[(((ptr)+(36))>>2)]=value4; + HEAP32[(((ptr)+(40))>>2)]=value4; + HEAP32[(((ptr)+(44))>>2)]=value4; + HEAP32[(((ptr)+(48))>>2)]=value4; + HEAP32[(((ptr)+(52))>>2)]=value4; + HEAP32[(((ptr)+(56))>>2)]=value4; + HEAP32[(((ptr)+(60))>>2)]=value4; + ptr = (ptr + 64)|0; } - while ((ptr|0) < (stop4|0)) { + + while ((ptr|0) < (aligned_end|0) ) { HEAP32[((ptr)>>2)]=value4; ptr = (ptr+4)|0; } } - while ((ptr|0) < (stop|0)) { + // The remaining bytes. + while ((ptr|0) < (end|0)) { HEAP8[((ptr)>>0)]=value; ptr = (ptr+1)|0; } - return (ptr-num)|0; + return (end-num)|0; } function _bitshift64Lshr(low, high, bits) { low = low|0; high = high|0; bits = bits|0; @@ -24001,12 +20277,77 @@ function _bitshift64Shl(low, high, bits) { tempRet0 = low << (bits - 32); return 0; } +function ___muldsi3($a, $b) { + $a = $a | 0; + $b = $b | 0; + var $1 = 0, $2 = 0, $3 = 0, $6 = 0, $8 = 0, $11 = 0, $12 = 0; + $1 = $a & 65535; + $2 = $b & 65535; + $3 = Math_imul($2, $1) | 0; + $6 = $a >>> 16; + $8 = ($3 >>> 16) + (Math_imul($2, $6) | 0) | 0; + $11 = $b >>> 16; + $12 = Math_imul($11, $1) | 0; + return (tempRet0 = (($8 >>> 16) + (Math_imul($11, $6) | 0) | 0) + ((($8 & 65535) + $12 | 0) >>> 16) | 0, 0 | ($8 + $12 << 16 | $3 & 65535)) | 0; +} +function ___muldi3($a$0, $a$1, $b$0, $b$1) { + $a$0 = $a$0 | 0; + $a$1 = $a$1 | 0; + $b$0 = $b$0 | 0; + $b$1 = $b$1 | 0; + var $x_sroa_0_0_extract_trunc = 0, $y_sroa_0_0_extract_trunc = 0, $1$0 = 0, $1$1 = 0, $2 = 0; + $x_sroa_0_0_extract_trunc = $a$0; + $y_sroa_0_0_extract_trunc = $b$0; + $1$0 = ___muldsi3($x_sroa_0_0_extract_trunc, $y_sroa_0_0_extract_trunc) | 0; + $1$1 = tempRet0; + $2 = Math_imul($a$1, $y_sroa_0_0_extract_trunc) | 0; + return (tempRet0 = ((Math_imul($b$1, $x_sroa_0_0_extract_trunc) | 0) + $2 | 0) + $1$1 | $1$1 & 0, 0 | $1$0 & -1) | 0; +} +function _sbrk(increment) { + increment = increment|0; + var oldDynamicTop = 0; + var oldDynamicTopOnChange = 0; + var newDynamicTop = 0; + var totalMemory = 0; + increment = ((increment + 15) & -16)|0; + oldDynamicTop = HEAP32[DYNAMICTOP_PTR>>2]|0; + newDynamicTop = oldDynamicTop + increment | 0; + + if (((increment|0) > 0 & (newDynamicTop|0) < (oldDynamicTop|0)) // Detect and fail if we would wrap around signed 32-bit int. + | (newDynamicTop|0) < 0) { // Also underflow, sbrk() should be able to be used to subtract. + abortOnCannotGrowMemory()|0; + ___setErrNo(12); + return -1; + } + + HEAP32[DYNAMICTOP_PTR>>2] = newDynamicTop; + totalMemory = getTotalMemory()|0; + if ((newDynamicTop|0) > (totalMemory|0)) { + if ((enlargeMemory()|0) == 0) { + HEAP32[DYNAMICTOP_PTR>>2] = oldDynamicTop; + ___setErrNo(12); + return -1; + } + } + return oldDynamicTop|0; +} function _memcpy(dest, src, num) { dest = dest|0; src = src|0; num = num|0; var ret = 0; - if ((num|0) >= 4096) return _emscripten_memcpy_big(dest|0, src|0, num|0)|0; + var aligned_dest_end = 0; + var block_aligned_dest_end = 0; + var dest_end = 0; + // Test against a benchmarked cutoff limit for when HEAPU8.set() becomes faster to use. + if ((num|0) >= + 8192 + ) { + return _emscripten_memcpy_big(dest|0, src|0, num|0)|0; + } + ret = dest|0; + dest_end = (dest + num)|0; if ((dest&3) == (src&3)) { + // The initial unaligned < 4-byte front. while (dest & 3) { if ((num|0) == 0) return ret|0; HEAP8[((dest)>>0)]=((HEAP8[((src)>>0)])|0); @@ -24014,18 +20355,50 @@ function _memcpy(dest, src, num) { src = (src+1)|0; num = (num-1)|0; } - while ((num|0) >= 4) { + aligned_dest_end = (dest_end & -4)|0; + block_aligned_dest_end = (aligned_dest_end - 64)|0; + while ((dest|0) <= (block_aligned_dest_end|0) ) { + HEAP32[((dest)>>2)]=((HEAP32[((src)>>2)])|0); + HEAP32[(((dest)+(4))>>2)]=((HEAP32[(((src)+(4))>>2)])|0); + HEAP32[(((dest)+(8))>>2)]=((HEAP32[(((src)+(8))>>2)])|0); + HEAP32[(((dest)+(12))>>2)]=((HEAP32[(((src)+(12))>>2)])|0); + HEAP32[(((dest)+(16))>>2)]=((HEAP32[(((src)+(16))>>2)])|0); + HEAP32[(((dest)+(20))>>2)]=((HEAP32[(((src)+(20))>>2)])|0); + HEAP32[(((dest)+(24))>>2)]=((HEAP32[(((src)+(24))>>2)])|0); + HEAP32[(((dest)+(28))>>2)]=((HEAP32[(((src)+(28))>>2)])|0); + HEAP32[(((dest)+(32))>>2)]=((HEAP32[(((src)+(32))>>2)])|0); + HEAP32[(((dest)+(36))>>2)]=((HEAP32[(((src)+(36))>>2)])|0); + HEAP32[(((dest)+(40))>>2)]=((HEAP32[(((src)+(40))>>2)])|0); + HEAP32[(((dest)+(44))>>2)]=((HEAP32[(((src)+(44))>>2)])|0); + HEAP32[(((dest)+(48))>>2)]=((HEAP32[(((src)+(48))>>2)])|0); + HEAP32[(((dest)+(52))>>2)]=((HEAP32[(((src)+(52))>>2)])|0); + HEAP32[(((dest)+(56))>>2)]=((HEAP32[(((src)+(56))>>2)])|0); + HEAP32[(((dest)+(60))>>2)]=((HEAP32[(((src)+(60))>>2)])|0); + dest = (dest+64)|0; + src = (src+64)|0; + } + while ((dest|0) < (aligned_dest_end|0) ) { HEAP32[((dest)>>2)]=((HEAP32[((src)>>2)])|0); dest = (dest+4)|0; src = (src+4)|0; - num = (num-4)|0; + } + } else { + // In the unaligned copy case, unroll a bit as well. + aligned_dest_end = (dest_end - 4)|0; + while ((dest|0) < (aligned_dest_end|0) ) { + HEAP8[((dest)>>0)]=((HEAP8[((src)>>0)])|0); + HEAP8[(((dest)+(1))>>0)]=((HEAP8[(((src)+(1))>>0)])|0); + HEAP8[(((dest)+(2))>>0)]=((HEAP8[(((src)+(2))>>0)])|0); + HEAP8[(((dest)+(3))>>0)]=((HEAP8[(((src)+(3))>>0)])|0); + dest = (dest+4)|0; + src = (src+4)|0; } } - while ((num|0) > 0) { + // The remaining unaligned < 4 byte tail. + while ((dest|0) < (dest_end|0)) { HEAP8[((dest)>>0)]=((HEAP8[((src)>>0)])|0); dest = (dest+1)|0; src = (src+1)|0; - num = (num-1)|0; } return ret|0; } @@ -24049,318 +20422,6 @@ function _memmove(dest, src, num) { } return dest | 0; } -function _llvm_cttz_i32(x) { - x = x|0; - var ret = 0; - ret = ((HEAP8[(((cttz_i8)+(x & 0xff))>>0)])|0); - if ((ret|0) < 8) return ret|0; - ret = ((HEAP8[(((cttz_i8)+((x >> 8)&0xff))>>0)])|0); - if ((ret|0) < 8) return (ret + 8)|0; - ret = ((HEAP8[(((cttz_i8)+((x >> 16)&0xff))>>0)])|0); - if ((ret|0) < 8) return (ret + 16)|0; - return (((HEAP8[(((cttz_i8)+(x >>> 24))>>0)])|0) + 24)|0; - } - -// ======== compiled code from system/lib/compiler-rt , see readme therein -function ___muldsi3($a, $b) { - $a = $a | 0; - $b = $b | 0; - var $1 = 0, $2 = 0, $3 = 0, $6 = 0, $8 = 0, $11 = 0, $12 = 0; - $1 = $a & 65535; - $2 = $b & 65535; - $3 = Math_imul($2, $1) | 0; - $6 = $a >>> 16; - $8 = ($3 >>> 16) + (Math_imul($2, $6) | 0) | 0; - $11 = $b >>> 16; - $12 = Math_imul($11, $1) | 0; - return (tempRet0 = (($8 >>> 16) + (Math_imul($11, $6) | 0) | 0) + ((($8 & 65535) + $12 | 0) >>> 16) | 0, 0 | ($8 + $12 << 16 | $3 & 65535)) | 0; -} -function ___divdi3($a$0, $a$1, $b$0, $b$1) { - $a$0 = $a$0 | 0; - $a$1 = $a$1 | 0; - $b$0 = $b$0 | 0; - $b$1 = $b$1 | 0; - var $1$0 = 0, $1$1 = 0, $2$0 = 0, $2$1 = 0, $4$0 = 0, $4$1 = 0, $6$0 = 0, $7$0 = 0, $7$1 = 0, $8$0 = 0, $10$0 = 0; - $1$0 = $a$1 >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; - $1$1 = (($a$1 | 0) < 0 ? -1 : 0) >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; - $2$0 = $b$1 >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; - $2$1 = (($b$1 | 0) < 0 ? -1 : 0) >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; - $4$0 = _i64Subtract($1$0 ^ $a$0, $1$1 ^ $a$1, $1$0, $1$1) | 0; - $4$1 = tempRet0; - $6$0 = _i64Subtract($2$0 ^ $b$0, $2$1 ^ $b$1, $2$0, $2$1) | 0; - $7$0 = $2$0 ^ $1$0; - $7$1 = $2$1 ^ $1$1; - $8$0 = ___udivmoddi4($4$0, $4$1, $6$0, tempRet0, 0) | 0; - $10$0 = _i64Subtract($8$0 ^ $7$0, tempRet0 ^ $7$1, $7$0, $7$1) | 0; - return $10$0 | 0; -} -function ___remdi3($a$0, $a$1, $b$0, $b$1) { - $a$0 = $a$0 | 0; - $a$1 = $a$1 | 0; - $b$0 = $b$0 | 0; - $b$1 = $b$1 | 0; - var $rem = 0, $1$0 = 0, $1$1 = 0, $2$0 = 0, $2$1 = 0, $4$0 = 0, $4$1 = 0, $6$0 = 0, $10$0 = 0, $10$1 = 0, __stackBase__ = 0; - __stackBase__ = STACKTOP; - STACKTOP = STACKTOP + 16 | 0; - $rem = __stackBase__ | 0; - $1$0 = $a$1 >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; - $1$1 = (($a$1 | 0) < 0 ? -1 : 0) >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; - $2$0 = $b$1 >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; - $2$1 = (($b$1 | 0) < 0 ? -1 : 0) >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; - $4$0 = _i64Subtract($1$0 ^ $a$0, $1$1 ^ $a$1, $1$0, $1$1) | 0; - $4$1 = tempRet0; - $6$0 = _i64Subtract($2$0 ^ $b$0, $2$1 ^ $b$1, $2$0, $2$1) | 0; - ___udivmoddi4($4$0, $4$1, $6$0, tempRet0, $rem) | 0; - $10$0 = _i64Subtract(HEAP32[$rem >> 2] ^ $1$0, HEAP32[$rem + 4 >> 2] ^ $1$1, $1$0, $1$1) | 0; - $10$1 = tempRet0; - STACKTOP = __stackBase__; - return (tempRet0 = $10$1, $10$0) | 0; -} -function ___muldi3($a$0, $a$1, $b$0, $b$1) { - $a$0 = $a$0 | 0; - $a$1 = $a$1 | 0; - $b$0 = $b$0 | 0; - $b$1 = $b$1 | 0; - var $x_sroa_0_0_extract_trunc = 0, $y_sroa_0_0_extract_trunc = 0, $1$0 = 0, $1$1 = 0, $2 = 0; - $x_sroa_0_0_extract_trunc = $a$0; - $y_sroa_0_0_extract_trunc = $b$0; - $1$0 = ___muldsi3($x_sroa_0_0_extract_trunc, $y_sroa_0_0_extract_trunc) | 0; - $1$1 = tempRet0; - $2 = Math_imul($a$1, $y_sroa_0_0_extract_trunc) | 0; - return (tempRet0 = ((Math_imul($b$1, $x_sroa_0_0_extract_trunc) | 0) + $2 | 0) + $1$1 | $1$1 & 0, 0 | $1$0 & -1) | 0; -} -function ___udivdi3($a$0, $a$1, $b$0, $b$1) { - $a$0 = $a$0 | 0; - $a$1 = $a$1 | 0; - $b$0 = $b$0 | 0; - $b$1 = $b$1 | 0; - var $1$0 = 0; - $1$0 = ___udivmoddi4($a$0, $a$1, $b$0, $b$1, 0) | 0; - return $1$0 | 0; -} -function ___uremdi3($a$0, $a$1, $b$0, $b$1) { - $a$0 = $a$0 | 0; - $a$1 = $a$1 | 0; - $b$0 = $b$0 | 0; - $b$1 = $b$1 | 0; - var $rem = 0, __stackBase__ = 0; - __stackBase__ = STACKTOP; - STACKTOP = STACKTOP + 16 | 0; - $rem = __stackBase__ | 0; - ___udivmoddi4($a$0, $a$1, $b$0, $b$1, $rem) | 0; - STACKTOP = __stackBase__; - return (tempRet0 = HEAP32[$rem + 4 >> 2] | 0, HEAP32[$rem >> 2] | 0) | 0; -} -function ___udivmoddi4($a$0, $a$1, $b$0, $b$1, $rem) { - $a$0 = $a$0 | 0; - $a$1 = $a$1 | 0; - $b$0 = $b$0 | 0; - $b$1 = $b$1 | 0; - $rem = $rem | 0; - var $n_sroa_0_0_extract_trunc = 0, $n_sroa_1_4_extract_shift$0 = 0, $n_sroa_1_4_extract_trunc = 0, $d_sroa_0_0_extract_trunc = 0, $d_sroa_1_4_extract_shift$0 = 0, $d_sroa_1_4_extract_trunc = 0, $4 = 0, $17 = 0, $37 = 0, $49 = 0, $51 = 0, $57 = 0, $58 = 0, $66 = 0, $78 = 0, $86 = 0, $88 = 0, $89 = 0, $91 = 0, $92 = 0, $95 = 0, $105 = 0, $117 = 0, $119 = 0, $125 = 0, $126 = 0, $130 = 0, $q_sroa_1_1_ph = 0, $q_sroa_0_1_ph = 0, $r_sroa_1_1_ph = 0, $r_sroa_0_1_ph = 0, $sr_1_ph = 0, $d_sroa_0_0_insert_insert99$0 = 0, $d_sroa_0_0_insert_insert99$1 = 0, $137$0 = 0, $137$1 = 0, $carry_0203 = 0, $sr_1202 = 0, $r_sroa_0_1201 = 0, $r_sroa_1_1200 = 0, $q_sroa_0_1199 = 0, $q_sroa_1_1198 = 0, $147 = 0, $149 = 0, $r_sroa_0_0_insert_insert42$0 = 0, $r_sroa_0_0_insert_insert42$1 = 0, $150$1 = 0, $151$0 = 0, $152 = 0, $154$0 = 0, $r_sroa_0_0_extract_trunc = 0, $r_sroa_1_4_extract_trunc = 0, $155 = 0, $carry_0_lcssa$0 = 0, $carry_0_lcssa$1 = 0, $r_sroa_0_1_lcssa = 0, $r_sroa_1_1_lcssa = 0, $q_sroa_0_1_lcssa = 0, $q_sroa_1_1_lcssa = 0, $q_sroa_0_0_insert_ext75$0 = 0, $q_sroa_0_0_insert_ext75$1 = 0, $q_sroa_0_0_insert_insert77$1 = 0, $_0$0 = 0, $_0$1 = 0; - $n_sroa_0_0_extract_trunc = $a$0; - $n_sroa_1_4_extract_shift$0 = $a$1; - $n_sroa_1_4_extract_trunc = $n_sroa_1_4_extract_shift$0; - $d_sroa_0_0_extract_trunc = $b$0; - $d_sroa_1_4_extract_shift$0 = $b$1; - $d_sroa_1_4_extract_trunc = $d_sroa_1_4_extract_shift$0; - if (($n_sroa_1_4_extract_trunc | 0) == 0) { - $4 = ($rem | 0) != 0; - if (($d_sroa_1_4_extract_trunc | 0) == 0) { - if ($4) { - HEAP32[$rem >> 2] = ($n_sroa_0_0_extract_trunc >>> 0) % ($d_sroa_0_0_extract_trunc >>> 0); - HEAP32[$rem + 4 >> 2] = 0; - } - $_0$1 = 0; - $_0$0 = ($n_sroa_0_0_extract_trunc >>> 0) / ($d_sroa_0_0_extract_trunc >>> 0) >>> 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } else { - if (!$4) { - $_0$1 = 0; - $_0$0 = 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - HEAP32[$rem >> 2] = $a$0 & -1; - HEAP32[$rem + 4 >> 2] = $a$1 & 0; - $_0$1 = 0; - $_0$0 = 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - } - $17 = ($d_sroa_1_4_extract_trunc | 0) == 0; - do { - if (($d_sroa_0_0_extract_trunc | 0) == 0) { - if ($17) { - if (($rem | 0) != 0) { - HEAP32[$rem >> 2] = ($n_sroa_1_4_extract_trunc >>> 0) % ($d_sroa_0_0_extract_trunc >>> 0); - HEAP32[$rem + 4 >> 2] = 0; - } - $_0$1 = 0; - $_0$0 = ($n_sroa_1_4_extract_trunc >>> 0) / ($d_sroa_0_0_extract_trunc >>> 0) >>> 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - if (($n_sroa_0_0_extract_trunc | 0) == 0) { - if (($rem | 0) != 0) { - HEAP32[$rem >> 2] = 0; - HEAP32[$rem + 4 >> 2] = ($n_sroa_1_4_extract_trunc >>> 0) % ($d_sroa_1_4_extract_trunc >>> 0); - } - $_0$1 = 0; - $_0$0 = ($n_sroa_1_4_extract_trunc >>> 0) / ($d_sroa_1_4_extract_trunc >>> 0) >>> 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - $37 = $d_sroa_1_4_extract_trunc - 1 | 0; - if (($37 & $d_sroa_1_4_extract_trunc | 0) == 0) { - if (($rem | 0) != 0) { - HEAP32[$rem >> 2] = 0 | $a$0 & -1; - HEAP32[$rem + 4 >> 2] = $37 & $n_sroa_1_4_extract_trunc | $a$1 & 0; - } - $_0$1 = 0; - $_0$0 = $n_sroa_1_4_extract_trunc >>> ((_llvm_cttz_i32($d_sroa_1_4_extract_trunc | 0) | 0) >>> 0); - return (tempRet0 = $_0$1, $_0$0) | 0; - } - $49 = Math_clz32($d_sroa_1_4_extract_trunc | 0) | 0; - $51 = $49 - (Math_clz32($n_sroa_1_4_extract_trunc | 0) | 0) | 0; - if ($51 >>> 0 <= 30) { - $57 = $51 + 1 | 0; - $58 = 31 - $51 | 0; - $sr_1_ph = $57; - $r_sroa_0_1_ph = $n_sroa_1_4_extract_trunc << $58 | $n_sroa_0_0_extract_trunc >>> ($57 >>> 0); - $r_sroa_1_1_ph = $n_sroa_1_4_extract_trunc >>> ($57 >>> 0); - $q_sroa_0_1_ph = 0; - $q_sroa_1_1_ph = $n_sroa_0_0_extract_trunc << $58; - break; - } - if (($rem | 0) == 0) { - $_0$1 = 0; - $_0$0 = 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - HEAP32[$rem >> 2] = 0 | $a$0 & -1; - HEAP32[$rem + 4 >> 2] = $n_sroa_1_4_extract_shift$0 | $a$1 & 0; - $_0$1 = 0; - $_0$0 = 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } else { - if (!$17) { - $117 = Math_clz32($d_sroa_1_4_extract_trunc | 0) | 0; - $119 = $117 - (Math_clz32($n_sroa_1_4_extract_trunc | 0) | 0) | 0; - if ($119 >>> 0 <= 31) { - $125 = $119 + 1 | 0; - $126 = 31 - $119 | 0; - $130 = $119 - 31 >> 31; - $sr_1_ph = $125; - $r_sroa_0_1_ph = $n_sroa_0_0_extract_trunc >>> ($125 >>> 0) & $130 | $n_sroa_1_4_extract_trunc << $126; - $r_sroa_1_1_ph = $n_sroa_1_4_extract_trunc >>> ($125 >>> 0) & $130; - $q_sroa_0_1_ph = 0; - $q_sroa_1_1_ph = $n_sroa_0_0_extract_trunc << $126; - break; - } - if (($rem | 0) == 0) { - $_0$1 = 0; - $_0$0 = 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - HEAP32[$rem >> 2] = 0 | $a$0 & -1; - HEAP32[$rem + 4 >> 2] = $n_sroa_1_4_extract_shift$0 | $a$1 & 0; - $_0$1 = 0; - $_0$0 = 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - $66 = $d_sroa_0_0_extract_trunc - 1 | 0; - if (($66 & $d_sroa_0_0_extract_trunc | 0) != 0) { - $86 = (Math_clz32($d_sroa_0_0_extract_trunc | 0) | 0) + 33 | 0; - $88 = $86 - (Math_clz32($n_sroa_1_4_extract_trunc | 0) | 0) | 0; - $89 = 64 - $88 | 0; - $91 = 32 - $88 | 0; - $92 = $91 >> 31; - $95 = $88 - 32 | 0; - $105 = $95 >> 31; - $sr_1_ph = $88; - $r_sroa_0_1_ph = $91 - 1 >> 31 & $n_sroa_1_4_extract_trunc >>> ($95 >>> 0) | ($n_sroa_1_4_extract_trunc << $91 | $n_sroa_0_0_extract_trunc >>> ($88 >>> 0)) & $105; - $r_sroa_1_1_ph = $105 & $n_sroa_1_4_extract_trunc >>> ($88 >>> 0); - $q_sroa_0_1_ph = $n_sroa_0_0_extract_trunc << $89 & $92; - $q_sroa_1_1_ph = ($n_sroa_1_4_extract_trunc << $89 | $n_sroa_0_0_extract_trunc >>> ($95 >>> 0)) & $92 | $n_sroa_0_0_extract_trunc << $91 & $88 - 33 >> 31; - break; - } - if (($rem | 0) != 0) { - HEAP32[$rem >> 2] = $66 & $n_sroa_0_0_extract_trunc; - HEAP32[$rem + 4 >> 2] = 0; - } - if (($d_sroa_0_0_extract_trunc | 0) == 1) { - $_0$1 = $n_sroa_1_4_extract_shift$0 | $a$1 & 0; - $_0$0 = 0 | $a$0 & -1; - return (tempRet0 = $_0$1, $_0$0) | 0; - } else { - $78 = _llvm_cttz_i32($d_sroa_0_0_extract_trunc | 0) | 0; - $_0$1 = 0 | $n_sroa_1_4_extract_trunc >>> ($78 >>> 0); - $_0$0 = $n_sroa_1_4_extract_trunc << 32 - $78 | $n_sroa_0_0_extract_trunc >>> ($78 >>> 0) | 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - } - } while (0); - if (($sr_1_ph | 0) == 0) { - $q_sroa_1_1_lcssa = $q_sroa_1_1_ph; - $q_sroa_0_1_lcssa = $q_sroa_0_1_ph; - $r_sroa_1_1_lcssa = $r_sroa_1_1_ph; - $r_sroa_0_1_lcssa = $r_sroa_0_1_ph; - $carry_0_lcssa$1 = 0; - $carry_0_lcssa$0 = 0; - } else { - $d_sroa_0_0_insert_insert99$0 = 0 | $b$0 & -1; - $d_sroa_0_0_insert_insert99$1 = $d_sroa_1_4_extract_shift$0 | $b$1 & 0; - $137$0 = _i64Add($d_sroa_0_0_insert_insert99$0 | 0, $d_sroa_0_0_insert_insert99$1 | 0, -1, -1) | 0; - $137$1 = tempRet0; - $q_sroa_1_1198 = $q_sroa_1_1_ph; - $q_sroa_0_1199 = $q_sroa_0_1_ph; - $r_sroa_1_1200 = $r_sroa_1_1_ph; - $r_sroa_0_1201 = $r_sroa_0_1_ph; - $sr_1202 = $sr_1_ph; - $carry_0203 = 0; - while (1) { - $147 = $q_sroa_0_1199 >>> 31 | $q_sroa_1_1198 << 1; - $149 = $carry_0203 | $q_sroa_0_1199 << 1; - $r_sroa_0_0_insert_insert42$0 = 0 | ($r_sroa_0_1201 << 1 | $q_sroa_1_1198 >>> 31); - $r_sroa_0_0_insert_insert42$1 = $r_sroa_0_1201 >>> 31 | $r_sroa_1_1200 << 1 | 0; - _i64Subtract($137$0, $137$1, $r_sroa_0_0_insert_insert42$0, $r_sroa_0_0_insert_insert42$1) | 0; - $150$1 = tempRet0; - $151$0 = $150$1 >> 31 | (($150$1 | 0) < 0 ? -1 : 0) << 1; - $152 = $151$0 & 1; - $154$0 = _i64Subtract($r_sroa_0_0_insert_insert42$0, $r_sroa_0_0_insert_insert42$1, $151$0 & $d_sroa_0_0_insert_insert99$0, ((($150$1 | 0) < 0 ? -1 : 0) >> 31 | (($150$1 | 0) < 0 ? -1 : 0) << 1) & $d_sroa_0_0_insert_insert99$1) | 0; - $r_sroa_0_0_extract_trunc = $154$0; - $r_sroa_1_4_extract_trunc = tempRet0; - $155 = $sr_1202 - 1 | 0; - if (($155 | 0) == 0) { - break; - } else { - $q_sroa_1_1198 = $147; - $q_sroa_0_1199 = $149; - $r_sroa_1_1200 = $r_sroa_1_4_extract_trunc; - $r_sroa_0_1201 = $r_sroa_0_0_extract_trunc; - $sr_1202 = $155; - $carry_0203 = $152; - } - } - $q_sroa_1_1_lcssa = $147; - $q_sroa_0_1_lcssa = $149; - $r_sroa_1_1_lcssa = $r_sroa_1_4_extract_trunc; - $r_sroa_0_1_lcssa = $r_sroa_0_0_extract_trunc; - $carry_0_lcssa$1 = 0; - $carry_0_lcssa$0 = $152; - } - $q_sroa_0_0_insert_ext75$0 = $q_sroa_0_1_lcssa; - $q_sroa_0_0_insert_ext75$1 = 0; - $q_sroa_0_0_insert_insert77$1 = $q_sroa_1_1_lcssa | $q_sroa_0_0_insert_ext75$1; - if (($rem | 0) != 0) { - HEAP32[$rem >> 2] = 0 | $r_sroa_0_1_lcssa; - HEAP32[$rem + 4 >> 2] = $r_sroa_1_1_lcssa | 0; - } - $_0$1 = (0 | $q_sroa_0_0_insert_ext75$0) >>> 31 | $q_sroa_0_0_insert_insert77$1 << 1 | ($q_sroa_0_0_insert_ext75$1 << 1 | $q_sroa_0_0_insert_ext75$0 >>> 31) & 0 | $carry_0_lcssa$1; - $_0$0 = ($q_sroa_0_0_insert_ext75$0 << 1 | 0 >>> 31) & -2 | $carry_0_lcssa$0; - return (tempRet0 = $_0$1, $_0$0) | 0; -} -// ======================================================================= - - function dynCall_ii(index,a1) { @@ -24376,68 +20437,75 @@ function dynCall_iiii(index,a1,a2,a3) { return FUNCTION_TABLE_iiii[index&3](a1|0,a2|0,a3|0)|0; } - -function dynCall_vi(index,a1) { - index = index|0; - a1=a1|0; - FUNCTION_TABLE_vi[index&1](a1|0); -} - function b0(p0) { p0 = p0|0; abort(0);return 0; } function b1(p0,p1,p2) { p0 = p0|0;p1 = p1|0;p2 = p2|0; abort(1);return 0; } -function b2(p0) { - p0 = p0|0; abort(2); -} // EMSCRIPTEN_END_FUNCS var FUNCTION_TABLE_ii = [b0,___stdio_close]; var FUNCTION_TABLE_iiii = [b1,___stdout_write,___stdio_seek,___stdio_write]; -var FUNCTION_TABLE_vi = [b2,_cleanup392]; - return { _curve25519_verify: _curve25519_verify, _crypto_sign_ed25519_ref10_ge_scalarmult_base: _crypto_sign_ed25519_ref10_ge_scalarmult_base, _curve25519_sign: _curve25519_sign, _fflush: _fflush, _i64Add: _i64Add, _memmove: _memmove, _bitshift64Ashr: _bitshift64Ashr, _sph_sha512_init: _sph_sha512_init, _curve25519_donna: _curve25519_donna, _memset: _memset, _malloc: _malloc, _memcpy: _memcpy, _bitshift64Lshr: _bitshift64Lshr, _free: _free, _i64Subtract: _i64Subtract, ___errno_location: ___errno_location, _bitshift64Shl: _bitshift64Shl, runPostSets: runPostSets, stackAlloc: stackAlloc, stackSave: stackSave, stackRestore: stackRestore, establishStackSpace: establishStackSpace, setThrew: setThrew, setTempRet0: setTempRet0, getTempRet0: getTempRet0, dynCall_ii: dynCall_ii, dynCall_iiii: dynCall_iiii, dynCall_vi: dynCall_vi }; + return { stackSave: stackSave, _curve25519_sign: _curve25519_sign, getTempRet0: getTempRet0, _bitshift64Lshr: _bitshift64Lshr, _i64Subtract: _i64Subtract, _bitshift64Shl: _bitshift64Shl, _curve25519_verify: _curve25519_verify, _fflush: _fflush, _bitshift64Ashr: _bitshift64Ashr, _memset: _memset, _sbrk: _sbrk, _memcpy: _memcpy, stackAlloc: stackAlloc, ___muldi3: ___muldi3, _crypto_sign_ed25519_ref10_ge_scalarmult_base: _crypto_sign_ed25519_ref10_ge_scalarmult_base, _curve25519_donna: _curve25519_donna, setTempRet0: setTempRet0, _i64Add: _i64Add, _emscripten_get_global_libc: _emscripten_get_global_libc, ___errno_location: ___errno_location, ___muldsi3: ___muldsi3, _free: _free, runPostSets: runPostSets, setThrew: setThrew, establishStackSpace: establishStackSpace, _memmove: _memmove, _sph_sha512_init: _sph_sha512_init, stackRestore: stackRestore, _malloc: _malloc, stackAlloc: stackAlloc, stackSave: stackSave, stackRestore: stackRestore, establishStackSpace: establishStackSpace, setThrew: setThrew, setTempRet0: setTempRet0, getTempRet0: getTempRet0, dynCall_ii: dynCall_ii, dynCall_iiii: dynCall_iiii }; }) // EMSCRIPTEN_END_ASM (Module.asmGlobalArg, Module.asmLibraryArg, buffer); -var _curve25519_verify = Module["_curve25519_verify"] = asm["_curve25519_verify"]; -var _crypto_sign_ed25519_ref10_ge_scalarmult_base = Module["_crypto_sign_ed25519_ref10_ge_scalarmult_base"] = asm["_crypto_sign_ed25519_ref10_ge_scalarmult_base"]; + +var stackSave = Module["stackSave"] = asm["stackSave"]; var _curve25519_sign = Module["_curve25519_sign"] = asm["_curve25519_sign"]; +var getTempRet0 = Module["getTempRet0"] = asm["getTempRet0"]; +var _bitshift64Lshr = Module["_bitshift64Lshr"] = asm["_bitshift64Lshr"]; +var _i64Subtract = Module["_i64Subtract"] = asm["_i64Subtract"]; +var _bitshift64Shl = Module["_bitshift64Shl"] = asm["_bitshift64Shl"]; +var _curve25519_verify = Module["_curve25519_verify"] = asm["_curve25519_verify"]; var _fflush = Module["_fflush"] = asm["_fflush"]; -var runPostSets = Module["runPostSets"] = asm["runPostSets"]; -var _i64Add = Module["_i64Add"] = asm["_i64Add"]; -var _memmove = Module["_memmove"] = asm["_memmove"]; var _bitshift64Ashr = Module["_bitshift64Ashr"] = asm["_bitshift64Ashr"]; -var _sph_sha512_init = Module["_sph_sha512_init"] = asm["_sph_sha512_init"]; -var _curve25519_donna = Module["_curve25519_donna"] = asm["_curve25519_donna"]; var _memset = Module["_memset"] = asm["_memset"]; -var _malloc = Module["_malloc"] = asm["_malloc"]; +var _sbrk = Module["_sbrk"] = asm["_sbrk"]; var _memcpy = Module["_memcpy"] = asm["_memcpy"]; -var _bitshift64Lshr = Module["_bitshift64Lshr"] = asm["_bitshift64Lshr"]; -var _free = Module["_free"] = asm["_free"]; -var _i64Subtract = Module["_i64Subtract"] = asm["_i64Subtract"]; +var stackAlloc = Module["stackAlloc"] = asm["stackAlloc"]; +var ___muldi3 = Module["___muldi3"] = asm["___muldi3"]; +var _crypto_sign_ed25519_ref10_ge_scalarmult_base = Module["_crypto_sign_ed25519_ref10_ge_scalarmult_base"] = asm["_crypto_sign_ed25519_ref10_ge_scalarmult_base"]; +var _curve25519_donna = Module["_curve25519_donna"] = asm["_curve25519_donna"]; +var setTempRet0 = Module["setTempRet0"] = asm["setTempRet0"]; +var _i64Add = Module["_i64Add"] = asm["_i64Add"]; +var _emscripten_get_global_libc = Module["_emscripten_get_global_libc"] = asm["_emscripten_get_global_libc"]; var ___errno_location = Module["___errno_location"] = asm["___errno_location"]; -var _bitshift64Shl = Module["_bitshift64Shl"] = asm["_bitshift64Shl"]; +var ___muldsi3 = Module["___muldsi3"] = asm["___muldsi3"]; +var _free = Module["_free"] = asm["_free"]; +var runPostSets = Module["runPostSets"] = asm["runPostSets"]; +var setThrew = Module["setThrew"] = asm["setThrew"]; +var establishStackSpace = Module["establishStackSpace"] = asm["establishStackSpace"]; +var _memmove = Module["_memmove"] = asm["_memmove"]; +var _sph_sha512_init = Module["_sph_sha512_init"] = asm["_sph_sha512_init"]; +var stackRestore = Module["stackRestore"] = asm["stackRestore"]; +var _malloc = Module["_malloc"] = asm["_malloc"]; var dynCall_ii = Module["dynCall_ii"] = asm["dynCall_ii"]; var dynCall_iiii = Module["dynCall_iiii"] = asm["dynCall_iiii"]; -var dynCall_vi = Module["dynCall_vi"] = asm["dynCall_vi"]; ; +Runtime.stackAlloc = Module['stackAlloc']; +Runtime.stackSave = Module['stackSave']; +Runtime.stackRestore = Module['stackRestore']; +Runtime.establishStackSpace = Module['establishStackSpace']; +Runtime.setTempRet0 = Module['setTempRet0']; +Runtime.getTempRet0 = Module['getTempRet0']; -Runtime.stackAlloc = asm['stackAlloc']; -Runtime.stackSave = asm['stackSave']; -Runtime.stackRestore = asm['stackRestore']; -Runtime.establishStackSpace = asm['establishStackSpace']; -Runtime.setTempRet0 = asm['setTempRet0']; -Runtime.getTempRet0 = asm['getTempRet0']; +// === Auto-generated postamble setup entry stuff === + +Module['asm'] = asm; -// === Auto-generated postamble setup entry stuff === + +/** + * @constructor + * @extends {Error} + */ function ExitStatus(status) { this.name = "ExitStatus"; this.message = "Program terminated with exit(" + status + ")"; @@ -24457,8 +20525,6 @@ dependenciesFulfilled = function runCaller() { } Module['callMain'] = Module.callMain = function callMain(args) { - assert(runDependencies == 0, 'cannot call main when async dependencies remain! (listen on __ATMAIN__)'); - assert(__ATPRERUN__.length == 0, 'cannot call main when preRun functions remain to be called'); args = args || []; @@ -24498,8 +20564,12 @@ Module['callMain'] = Module.callMain = function callMain(args) { Module['noExitRuntime'] = true; return; } else { - if (e && typeof e === 'object' && e.stack) Module.printErr('exception thrown: ' + [e, e.stack]); - throw e; + var toLog = e; + if (e && typeof e === 'object' && e.stack) { + toLog = [e, e.stack]; + } + Module.printErr('exception thrown: ' + toLog); + Module['quit'](1, e); } } finally { calledMain = true; @@ -24509,6 +20579,7 @@ Module['callMain'] = Module.callMain = function callMain(args) { +/** @type {function(Array=)} */ function run(args) { args = args || Module['arguments']; @@ -24518,6 +20589,7 @@ function run(args) { return; } + preRun(); if (runDependencies > 0) return; // a preRun added a dependency, run will be called later @@ -24527,7 +20599,7 @@ function run(args) { if (Module['calledRun']) return; // run may have just been called while the async setStatus time below was happening Module['calledRun'] = true; - if (ABORT) return; + if (ABORT) return; ensureInitRuntime(); @@ -24573,31 +20645,19 @@ function exit(status, implicit) { } if (ENVIRONMENT_IS_NODE) { - // Work around a node.js bug where stdout buffer is not flushed at process exit: - // Instead of process.exit() directly, wait for stdout flush event. - // See https://github.com/joyent/node/issues/1669 and https://github.com/kripken/emscripten/issues/2582 - // Workaround is based on https://github.com/RReverser/acorn/commit/50ab143cecc9ed71a2d66f78b4aec3bb2e9844f6 - process['stdout']['once']('drain', function () { - process['exit'](status); - }); - console.log(' '); // Make sure to print something to force the drain event to occur, in case the stdout buffer was empty. - // Work around another node bug where sometimes 'drain' is never fired - make another effort - // to emit the exit status, after a significant delay (if node hasn't fired drain by then, give up) - setTimeout(function() { - process['exit'](status); - }, 500); - } else - if (ENVIRONMENT_IS_SHELL && typeof quit === 'function') { - quit(status); + process['exit'](status); } - // if we reach here, we must throw an exception to halt the current execution - throw new ExitStatus(status); + Module['quit'](status, new ExitStatus(status)); } Module['exit'] = Module.exit = exit; var abortDecorators = []; function abort(what) { + if (Module['onAbort']) { + Module['onAbort'](what); + } + if (what !== undefined) { Module.print(what); Module.printErr(what); @@ -24645,15 +20705,14 @@ run(); - // {{MODULE_ADDITIONS}} module.exports = Module; Module.inspect = function() { return '[Module]'; }; -}).call(this,require('_process'),require("buffer").Buffer,"/build") -},{"_process":145,"buffer":50,"crypto":89,"fs":47,"path":141}],2:[function(require,module,exports){ +}).call(this,require('_process')) +},{"_process":158,"fs":48,"path":151}],2:[function(require,module,exports){ (function (process){ /* Copyright 2013 Daniel Wirtz @@ -34384,7 +30443,7 @@ Module.inspect = function() { return '[Module]'; }; }); }).call(this,require('_process')) -},{"_process":145,"bytebuffer":51,"fs":47,"long":134,"path":141}],3:[function(require,module,exports){ +},{"_process":158,"bytebuffer":51,"fs":48,"long":142,"path":151}],3:[function(require,module,exports){ var Internal = Internal || {}; Internal.protoText = function() { @@ -34517,7 +30576,7 @@ Entity.prototype.encode = function encode(data, enc, /* internal */ reporter) { return this._getEncoder(enc).encode(data, reporter); }; -},{"../asn1":4,"inherits":131,"vm":178}],6:[function(require,module,exports){ +},{"../asn1":4,"inherits":139,"vm":195}],6:[function(require,module,exports){ var inherits = require('inherits'); var Reporter = require('../base').Reporter; var Buffer = require('buffer').Buffer; @@ -34635,7 +30694,7 @@ EncoderBuffer.prototype.join = function join(out, offset) { return out; }; -},{"../base":7,"buffer":50,"inherits":131}],7:[function(require,module,exports){ +},{"../base":7,"buffer":50,"inherits":139}],7:[function(require,module,exports){ var base = exports; base.Reporter = require('./reporter').Reporter; @@ -35279,7 +31338,7 @@ Node.prototype._isPrintstr = function isPrintstr(str) { return /^[A-Za-z0-9 '\(\)\+,\-\.\/:=\?]*$/.test(str); }; -},{"../base":7,"minimalistic-assert":136}],9:[function(require,module,exports){ +},{"../base":7,"minimalistic-assert":144}],9:[function(require,module,exports){ var inherits = require('inherits'); function Reporter(options) { @@ -35402,7 +31461,7 @@ ReporterError.prototype.rethrow = function rethrow(msg) { return this; }; -},{"inherits":131}],10:[function(require,module,exports){ +},{"inherits":139}],10:[function(require,module,exports){ var constants = require('../constants'); exports.tagClass = { @@ -35778,7 +31837,7 @@ function derDecodeLen(buf, primitive, fail) { // Long form var num = len & 0x7f; - if (num >= 4) + if (num > 4) return buf.error('length octect is too long'); len = 0; @@ -35793,7 +31852,7 @@ function derDecodeLen(buf, primitive, fail) { return len; } -},{"../../asn1":4,"inherits":131}],13:[function(require,module,exports){ +},{"../../asn1":4,"inherits":139}],13:[function(require,module,exports){ var decoders = exports; decoders.der = require('./der'); @@ -35850,7 +31909,7 @@ PEMDecoder.prototype.decode = function decode(data, options) { return DERDecoder.prototype.decode.call(this, input, options); }; -},{"./der":12,"buffer":50,"inherits":131}],15:[function(require,module,exports){ +},{"./der":12,"buffer":50,"inherits":139}],15:[function(require,module,exports){ var inherits = require('inherits'); var Buffer = require('buffer').Buffer; @@ -36147,7 +32206,7 @@ function encodeTag(tag, primitive, cls, reporter) { return res; } -},{"../../asn1":4,"buffer":50,"inherits":131}],16:[function(require,module,exports){ +},{"../../asn1":4,"buffer":50,"inherits":139}],16:[function(require,module,exports){ var encoders = exports; encoders.der = require('./der'); @@ -36176,7 +32235,7 @@ PEMEncoder.prototype.encode = function encode(data, options) { return out.join('\n'); }; -},{"./der":15,"inherits":131}],18:[function(require,module,exports){ +},{"./der":15,"inherits":139}],18:[function(require,module,exports){ /*! * assertion-error * Copyright(c) 2013 Jake Luer @@ -36330,22 +32389,22 @@ function placeHoldersCount (b64) { function byteLength (b64) { // base64 is 4/3 + up to two characters of the original data - return b64.length * 3 / 4 - placeHoldersCount(b64) + return (b64.length * 3 / 4) - placeHoldersCount(b64) } function toByteArray (b64) { - var i, j, l, tmp, placeHolders, arr + var i, l, tmp, placeHolders, arr var len = b64.length placeHolders = placeHoldersCount(b64) - arr = new Arr(len * 3 / 4 - placeHolders) + arr = new Arr((len * 3 / 4) - placeHolders) // if there are placeholders, only get up to the last complete 4 chars l = placeHolders > 0 ? len - 4 : len var L = 0 - for (i = 0, j = 0; i < l; i += 4, j += 3) { + for (i = 0; i < l; i += 4) { tmp = (revLookup[b64.charCodeAt(i)] << 18) | (revLookup[b64.charCodeAt(i + 1)] << 12) | (revLookup[b64.charCodeAt(i + 2)] << 6) | revLookup[b64.charCodeAt(i + 3)] arr[L++] = (tmp >> 16) & 0xFF arr[L++] = (tmp >> 8) & 0xFF @@ -36463,6 +32522,7 @@ function fromByteArray (uint8) { var Buffer; try { + // Obfuscate that we require Buffer, to reduce size Buffer = require('buf' + 'fer').Buffer; } catch (e) { } @@ -39700,7 +35760,7 @@ function fromByteArray (uint8) { }; Red.prototype.pow = function pow (a, num) { - if (num.isZero()) return new BN(1); + if (num.isZero()) return new BN(1).toRed(this); if (num.cmpn(1) === 0) return a.clone(); var windowSize = 4; @@ -39858,43 +35918,51 @@ Rand.prototype.generate = function generate(len) { return this._rand(len); }; -if (typeof window === 'object') { - if (window.crypto && window.crypto.getRandomValues) { +// Emulate crypto API using randy +Rand.prototype._rand = function _rand(n) { + if (this.rand.getBytes) + return this.rand.getBytes(n); + + var res = new Uint8Array(n); + for (var i = 0; i < res.length; i++) + res[i] = this.rand.getByte(); + return res; +}; + +if (typeof self === 'object') { + if (self.crypto && self.crypto.getRandomValues) { // Modern browsers Rand.prototype._rand = function _rand(n) { var arr = new Uint8Array(n); - window.crypto.getRandomValues(arr); + self.crypto.getRandomValues(arr); return arr; }; - } else if (window.msCrypto && window.msCrypto.getRandomValues) { + } else if (self.msCrypto && self.msCrypto.getRandomValues) { // IE Rand.prototype._rand = function _rand(n) { var arr = new Uint8Array(n); - window.msCrypto.getRandomValues(arr); + self.msCrypto.getRandomValues(arr); return arr; }; - } else { + + // Safari's WebWorkers do not have `crypto` + } else if (typeof window === 'object') { // Old junk Rand.prototype._rand = function() { throw new Error('Not implemented yet'); }; } } else { - // Node.js or Web worker + // Node.js or Web worker with no crypto support try { var crypto = require('crypto'); + if (typeof crypto.randomBytes !== 'function') + throw new Error('Not supported'); Rand.prototype._rand = function _rand(n) { return crypto.randomBytes(n); }; } catch (e) { - // Emulate crypto API using randy - Rand.prototype._rand = function _rand(n) { - var res = new Uint8Array(n); - for (var i = 0; i < res.length; i++) - res[i] = this.rand.getByte(); - return res; - }; } } @@ -40182,7 +36250,7 @@ function xorTest (a, b) { } }).call(this,require("buffer").Buffer) -},{"./aes":23,"./ghash":28,"buffer":50,"buffer-xor":49,"cipher-base":82,"inherits":131}],25:[function(require,module,exports){ +},{"./aes":23,"./ghash":28,"buffer":50,"buffer-xor":49,"cipher-base":82,"inherits":139}],25:[function(require,module,exports){ var ciphers = require('./encrypter') exports.createCipher = exports.Cipher = ciphers.createCipher exports.createCipheriv = exports.Cipheriv = ciphers.createCipheriv @@ -40336,7 +36404,7 @@ exports.createDecipher = createDecipher exports.createDecipheriv = createDecipheriv }).call(this,require("buffer").Buffer) -},{"./aes":23,"./authCipher":24,"./modes":29,"./modes/cbc":30,"./modes/cfb":31,"./modes/cfb1":32,"./modes/cfb8":33,"./modes/ctr":34,"./modes/ecb":35,"./modes/ofb":36,"./streamCipher":37,"buffer":50,"cipher-base":82,"evp_bytestokey":122,"inherits":131}],27:[function(require,module,exports){ +},{"./aes":23,"./authCipher":24,"./modes":29,"./modes/cbc":30,"./modes/cfb":31,"./modes/cfb1":32,"./modes/cfb8":33,"./modes/ctr":34,"./modes/ecb":35,"./modes/ofb":36,"./streamCipher":37,"buffer":50,"cipher-base":82,"evp_bytestokey":122,"inherits":139}],27:[function(require,module,exports){ (function (Buffer){ var aes = require('./aes') var Transform = require('cipher-base') @@ -40462,7 +36530,7 @@ exports.createCipheriv = createCipheriv exports.createCipher = createCipher }).call(this,require("buffer").Buffer) -},{"./aes":23,"./authCipher":24,"./modes":29,"./modes/cbc":30,"./modes/cfb":31,"./modes/cfb1":32,"./modes/cfb8":33,"./modes/ctr":34,"./modes/ecb":35,"./modes/ofb":36,"./streamCipher":37,"buffer":50,"cipher-base":82,"evp_bytestokey":122,"inherits":131}],28:[function(require,module,exports){ +},{"./aes":23,"./authCipher":24,"./modes":29,"./modes/cbc":30,"./modes/cfb":31,"./modes/cfb1":32,"./modes/cfb8":33,"./modes/ctr":34,"./modes/ecb":35,"./modes/ofb":36,"./streamCipher":37,"buffer":50,"cipher-base":82,"evp_bytestokey":122,"inherits":139}],28:[function(require,module,exports){ (function (Buffer){ var zeros = new Buffer(16) zeros.fill(0) @@ -40940,7 +37008,7 @@ StreamCipher.prototype._final = function () { } }).call(this,require("buffer").Buffer) -},{"./aes":23,"buffer":50,"cipher-base":82,"inherits":131}],38:[function(require,module,exports){ +},{"./aes":23,"buffer":50,"cipher-base":82,"inherits":139}],38:[function(require,module,exports){ var ebtk = require('evp_bytestokey') var aes = require('browserify-aes/browser') var DES = require('browserify-des') @@ -41062,7 +37130,7 @@ DES.prototype._final = function () { } }).call(this,require("buffer").Buffer) -},{"buffer":50,"cipher-base":82,"des.js":94,"inherits":131}],40:[function(require,module,exports){ +},{"buffer":50,"cipher-base":82,"des.js":95,"inherits":139}],40:[function(require,module,exports){ exports['des-ecb'] = { key: 8, iv: 0 @@ -41132,103 +37200,192 @@ function getr(priv) { } }).call(this,require("buffer").Buffer) -},{"bn.js":20,"buffer":50,"randombytes":152}],42:[function(require,module,exports){ -(function (Buffer){ -'use strict' -exports['RSA-SHA224'] = exports.sha224WithRSAEncryption = { - sign: 'rsa', - hash: 'sha224', - id: new Buffer('302d300d06096086480165030402040500041c', 'hex') -} -exports['RSA-SHA256'] = exports.sha256WithRSAEncryption = { - sign: 'rsa', - hash: 'sha256', - id: new Buffer('3031300d060960864801650304020105000420', 'hex') -} -exports['RSA-SHA384'] = exports.sha384WithRSAEncryption = { - sign: 'rsa', - hash: 'sha384', - id: new Buffer('3041300d060960864801650304020205000430', 'hex') -} -exports['RSA-SHA512'] = exports.sha512WithRSAEncryption = { - sign: 'rsa', - hash: 'sha512', - id: new Buffer('3051300d060960864801650304020305000440', 'hex') -} -exports['RSA-SHA1'] = { - sign: 'rsa', - hash: 'sha1', - id: new Buffer('3021300906052b0e03021a05000414', 'hex') -} -exports['ecdsa-with-SHA1'] = { - sign: 'ecdsa', - hash: 'sha1', - id: new Buffer('', 'hex') -} - -exports.DSA = exports['DSA-SHA1'] = exports['DSA-SHA'] = { - sign: 'dsa', - hash: 'sha1', - id: new Buffer('', 'hex') -} -exports['DSA-SHA224'] = exports['DSA-WITH-SHA224'] = { - sign: 'dsa', - hash: 'sha224', - id: new Buffer('', 'hex') -} -exports['DSA-SHA256'] = exports['DSA-WITH-SHA256'] = { - sign: 'dsa', - hash: 'sha256', - id: new Buffer('', 'hex') -} -exports['DSA-SHA384'] = exports['DSA-WITH-SHA384'] = { - sign: 'dsa', - hash: 'sha384', - id: new Buffer('', 'hex') -} -exports['DSA-SHA512'] = exports['DSA-WITH-SHA512'] = { - sign: 'dsa', - hash: 'sha512', - id: new Buffer('', 'hex') -} -exports['DSA-RIPEMD160'] = { - sign: 'dsa', - hash: 'rmd160', - id: new Buffer('', 'hex') -} -exports['RSA-RIPEMD160'] = exports.ripemd160WithRSA = { - sign: 'rsa', - hash: 'rmd160', - id: new Buffer('3021300906052b2403020105000414', 'hex') -} -exports['RSA-MD5'] = exports.md5WithRSAEncryption = { - sign: 'rsa', - hash: 'md5', - id: new Buffer('3020300c06082a864886f70d020505000410', 'hex') +},{"bn.js":20,"buffer":50,"randombytes":165}],42:[function(require,module,exports){ +module.exports = require('./browser/algorithms.json') + +},{"./browser/algorithms.json":43}],43:[function(require,module,exports){ +module.exports={ + "sha224WithRSAEncryption": { + "sign": "rsa", + "hash": "sha224", + "id": "302d300d06096086480165030402040500041c" + }, + "RSA-SHA224": { + "sign": "ecdsa/rsa", + "hash": "sha224", + "id": "302d300d06096086480165030402040500041c" + }, + "sha256WithRSAEncryption": { + "sign": "rsa", + "hash": "sha256", + "id": "3031300d060960864801650304020105000420" + }, + "RSA-SHA256": { + "sign": "ecdsa/rsa", + "hash": "sha256", + "id": "3031300d060960864801650304020105000420" + }, + "sha384WithRSAEncryption": { + "sign": "rsa", + "hash": "sha384", + "id": "3041300d060960864801650304020205000430" + }, + "RSA-SHA384": { + "sign": "ecdsa/rsa", + "hash": "sha384", + "id": "3041300d060960864801650304020205000430" + }, + "sha512WithRSAEncryption": { + "sign": "rsa", + "hash": "sha512", + "id": "3051300d060960864801650304020305000440" + }, + "RSA-SHA512": { + "sign": "ecdsa/rsa", + "hash": "sha512", + "id": "3051300d060960864801650304020305000440" + }, + "RSA-SHA1": { + "sign": "rsa", + "hash": "sha1", + "id": "3021300906052b0e03021a05000414" + }, + "ecdsa-with-SHA1": { + "sign": "ecdsa", + "hash": "sha1", + "id": "" + }, + "sha256": { + "sign": "ecdsa", + "hash": "sha256", + "id": "" + }, + "sha224": { + "sign": "ecdsa", + "hash": "sha224", + "id": "" + }, + "sha384": { + "sign": "ecdsa", + "hash": "sha384", + "id": "" + }, + "sha512": { + "sign": "ecdsa", + "hash": "sha512", + "id": "" + }, + "DSA-SHA": { + "sign": "dsa", + "hash": "sha1", + "id": "" + }, + "DSA-SHA1": { + "sign": "dsa", + "hash": "sha1", + "id": "" + }, + "DSA": { + "sign": "dsa", + "hash": "sha1", + "id": "" + }, + "DSA-WITH-SHA224": { + "sign": "dsa", + "hash": "sha224", + "id": "" + }, + "DSA-SHA224": { + "sign": "dsa", + "hash": "sha224", + "id": "" + }, + "DSA-WITH-SHA256": { + "sign": "dsa", + "hash": "sha256", + "id": "" + }, + "DSA-SHA256": { + "sign": "dsa", + "hash": "sha256", + "id": "" + }, + "DSA-WITH-SHA384": { + "sign": "dsa", + "hash": "sha384", + "id": "" + }, + "DSA-SHA384": { + "sign": "dsa", + "hash": "sha384", + "id": "" + }, + "DSA-WITH-SHA512": { + "sign": "dsa", + "hash": "sha512", + "id": "" + }, + "DSA-SHA512": { + "sign": "dsa", + "hash": "sha512", + "id": "" + }, + "DSA-RIPEMD160": { + "sign": "dsa", + "hash": "rmd160", + "id": "" + }, + "ripemd160WithRSA": { + "sign": "rsa", + "hash": "rmd160", + "id": "3021300906052b2403020105000414" + }, + "RSA-RIPEMD160": { + "sign": "rsa", + "hash": "rmd160", + "id": "3021300906052b2403020105000414" + }, + "md5WithRSAEncryption": { + "sign": "rsa", + "hash": "md5", + "id": "3020300c06082a864886f70d020505000410" + }, + "RSA-MD5": { + "sign": "rsa", + "hash": "md5", + "id": "3020300c06082a864886f70d020505000410" + } } -}).call(this,require("buffer").Buffer) -},{"buffer":50}],43:[function(require,module,exports){ +},{}],44:[function(require,module,exports){ +module.exports={ + "1.3.132.0.10": "secp256k1", + "1.3.132.0.33": "p224", + "1.2.840.10045.3.1.1": "p192", + "1.2.840.10045.3.1.7": "p256", + "1.3.132.0.34": "p384", + "1.3.132.0.35": "p521" +} + +},{}],45:[function(require,module,exports){ (function (Buffer){ -var _algos = require('./algos') var createHash = require('create-hash') +var stream = require('stream') var inherits = require('inherits') var sign = require('./sign') -var stream = require('stream') var verify = require('./verify') -var algos = {} -Object.keys(_algos).forEach(function (key) { - algos[key] = algos[key.toLowerCase()] = _algos[key] +var algorithms = require('./algorithms.json') +Object.keys(algorithms).forEach(function (key) { + algorithms[key].id = new Buffer(algorithms[key].id, 'hex') + algorithms[key.toLowerCase()] = algorithms[key] }) function Sign (algorithm) { stream.Writable.call(this) - var data = algos[algorithm] - if (!data) { - throw new Error('Unknown message digest') - } + var data = algorithms[algorithm] + if (!data) throw new Error('Unknown message digest') this._hashType = data.hash this._hash = createHash(data.hash) @@ -41243,9 +37400,7 @@ Sign.prototype._write = function _write (data, _, done) { } Sign.prototype.update = function update (data, enc) { - if (typeof data === 'string') { - data = new Buffer(data, enc) - } + if (typeof data === 'string') data = new Buffer(data, enc) this._hash.update(data) return this @@ -41254,7 +37409,7 @@ Sign.prototype.update = function update (data, enc) { Sign.prototype.sign = function signMethod (key, enc) { this.end() var hash = this._hash.digest() - var sig = sign(Buffer.concat([this._tag, hash]), key, this._hashType, this._signType) + var sig = sign(hash, key, this._hashType, this._signType, this._tag) return enc ? sig.toString(enc) : sig } @@ -41262,10 +37417,8 @@ Sign.prototype.sign = function signMethod (key, enc) { function Verify (algorithm) { stream.Writable.call(this) - var data = algos[algorithm] - if (!data) { - throw new Error('Unknown message digest') - } + var data = algorithms[algorithm] + if (!data) throw new Error('Unknown message digest') this._hash = createHash(data.hash) this._tag = data.id @@ -41275,28 +37428,22 @@ inherits(Verify, stream.Writable) Verify.prototype._write = function _write (data, _, done) { this._hash.update(data) - done() } Verify.prototype.update = function update (data, enc) { - if (typeof data === 'string') { - data = new Buffer(data, enc) - } + if (typeof data === 'string') data = new Buffer(data, enc) this._hash.update(data) return this } Verify.prototype.verify = function verifyMethod (key, sig, enc) { - if (typeof sig === 'string') { - sig = new Buffer(sig, enc) - } + if (typeof sig === 'string') sig = new Buffer(sig, enc) this.end() var hash = this._hash.digest() - - return verify(sig, Buffer.concat([this._tag, hash]), key, this._signType) + return verify(sig, hash, key, this._signType, this._tag) } function createSign (algorithm) { @@ -41315,57 +37462,35 @@ module.exports = { } }).call(this,require("buffer").Buffer) -},{"./algos":42,"./sign":45,"./verify":46,"buffer":50,"create-hash":85,"inherits":131,"stream":173}],44:[function(require,module,exports){ -'use strict' -exports['1.3.132.0.10'] = 'secp256k1' - -exports['1.3.132.0.33'] = 'p224' - -exports['1.2.840.10045.3.1.1'] = 'p192' - -exports['1.2.840.10045.3.1.7'] = 'p256' - -exports['1.3.132.0.34'] = 'p384' - -exports['1.3.132.0.35'] = 'p521' - -},{}],45:[function(require,module,exports){ +},{"./algorithms.json":43,"./sign":46,"./verify":47,"buffer":50,"create-hash":85,"inherits":139,"stream":190}],46:[function(require,module,exports){ (function (Buffer){ // much of this based on https://github.com/indutny/self-signed/blob/gh-pages/lib/rsa.js var createHmac = require('create-hmac') var crt = require('browserify-rsa') -var curves = require('./curves') -var elliptic = require('elliptic') -var parseKeys = require('parse-asn1') - +var EC = require('elliptic').ec var BN = require('bn.js') -var EC = elliptic.ec +var parseKeys = require('parse-asn1') +var curves = require('./curves.json') -function sign (hash, key, hashType, signType) { +function sign (hash, key, hashType, signType, tag) { var priv = parseKeys(key) if (priv.curve) { - if (signType !== 'ecdsa') throw new Error('wrong private key type') - + // rsa keys can be interpreted as ecdsa ones in openssl + if (signType !== 'ecdsa' && signType !== 'ecdsa/rsa') throw new Error('wrong private key type') return ecSign(hash, priv) } else if (priv.type === 'dsa') { - if (signType !== 'dsa') { - throw new Error('wrong private key type') - } + if (signType !== 'dsa') throw new Error('wrong private key type') return dsaSign(hash, priv, hashType) } else { - if (signType !== 'rsa') throw new Error('wrong private key type') + if (signType !== 'rsa' && signType !== 'ecdsa/rsa') throw new Error('wrong private key type') } - + hash = Buffer.concat([tag, hash]) var len = priv.modulus.byteLength() var pad = [ 0, 1 ] - while (hash.length + pad.length + 1 < len) { - pad.push(0xff) - } + while (hash.length + pad.length + 1 < len) pad.push(0xff) pad.push(0x00) var i = -1 - while (++i < hash.length) { - pad.push(hash[i]) - } + while (++i < hash.length) pad.push(hash[i]) var out = crt(pad, priv) return out @@ -41376,9 +37501,7 @@ function ecSign (hash, priv) { if (!curveId) throw new Error('unknown curve ' + priv.curve.join('.')) var curve = new EC(curveId) - var key = curve.genKeyPair() - - key._importPrivate(priv.privateKey) + var key = curve.keyFromPrivate(priv.privateKey) var out = key.sign(hash) return new Buffer(out.toDER()) @@ -41398,7 +37521,7 @@ function dsaSign (hash, priv, algo) { k = makeKey(q, kv, algo) r = makeR(g, k, p, q) s = k.invm(q).imul(H.add(x.mul(r))).mod(q) - if (!s.cmpn(0)) { + if (s.cmpn(0) === 0) { s = false r = new BN(0) } @@ -41411,13 +37534,8 @@ function toDER (r, s) { s = s.toArray() // Pad values - if (r[0] & 0x80) { - r = [ 0 ].concat(r) - } - // Pad values - if (s[0] & 0x80) { - s = [0].concat(s) - } + if (r[0] & 0x80) r = [ 0 ].concat(r) + if (s[0] & 0x80) s = [ 0 ].concat(s) var total = r.length + s.length + 4 var res = [ 0x30, total, 0x02, r.length ] @@ -41430,7 +37548,7 @@ function getKey (x, q, hash, algo) { if (x.length < q.byteLength()) { var zeros = new Buffer(q.byteLength() - x.length) zeros.fill(0) - x = Buffer.concat([zeros, x]) + x = Buffer.concat([ zeros, x ]) } var hlen = hash.length var hbits = bits2octets(hash, q) @@ -41438,36 +37556,17 @@ function getKey (x, q, hash, algo) { v.fill(1) var k = new Buffer(hlen) k.fill(0) - k = createHmac(algo, k) - .update(v) - .update(new Buffer([0])) - .update(x) - .update(hbits) - .digest() - v = createHmac(algo, k) - .update(v) - .digest() - k = createHmac(algo, k) - .update(v) - .update(new Buffer([1])) - .update(x) - .update(hbits) - .digest() - v = createHmac(algo, k) - .update(v) - .digest() - return { - k: k, - v: v - } + k = createHmac(algo, k).update(v).update(new Buffer([ 0 ])).update(x).update(hbits).digest() + v = createHmac(algo, k).update(v).digest() + k = createHmac(algo, k).update(v).update(new Buffer([ 1 ])).update(x).update(hbits).digest() + v = createHmac(algo, k).update(v).digest() + return { k: k, v: v } } function bits2int (obits, q) { var bits = new BN(obits) var shift = (obits.length << 3) - q.bitLength() - if (shift > 0) { - bits.ishrn(shift) - } + if (shift > 0) bits.ishrn(shift) return bits } @@ -41478,32 +37577,26 @@ function bits2octets (bits, q) { if (out.length < q.byteLength()) { var zeros = new Buffer(q.byteLength() - out.length) zeros.fill(0) - out = Buffer.concat([zeros, out]) + out = Buffer.concat([ zeros, out ]) } return out } function makeKey (q, kv, algo) { - var t, k + var t + var k do { - t = new Buffer('') + t = new Buffer(0) while (t.length * 8 < q.bitLength()) { - kv.v = createHmac(algo, kv.k) - .update(kv.v) - .digest() - t = Buffer.concat([t, kv.v]) + kv.v = createHmac(algo, kv.k).update(kv.v).digest() + t = Buffer.concat([ t, kv.v ]) } k = bits2int(t, q) - kv.k = createHmac(algo, kv.k) - .update(kv.v) - .update(new Buffer([0])) - .digest() - kv.v = createHmac(algo, kv.k) - .update(kv.v) - .digest() + kv.k = createHmac(algo, kv.k).update(kv.v).update(new Buffer([ 0 ])).digest() + kv.v = createHmac(algo, kv.k).update(kv.v).digest() } while (k.cmp(q) !== -1) return k @@ -41518,33 +37611,27 @@ module.exports.getKey = getKey module.exports.makeKey = makeKey }).call(this,require("buffer").Buffer) -},{"./curves":44,"bn.js":20,"browserify-rsa":41,"buffer":50,"create-hmac":88,"elliptic":104,"parse-asn1":140}],46:[function(require,module,exports){ +},{"./curves.json":44,"bn.js":20,"browserify-rsa":41,"buffer":50,"create-hmac":88,"elliptic":105,"parse-asn1":150}],47:[function(require,module,exports){ (function (Buffer){ // much of this based on https://github.com/indutny/self-signed/blob/gh-pages/lib/rsa.js -var curves = require('./curves') -var elliptic = require('elliptic') -var parseKeys = require('parse-asn1') - var BN = require('bn.js') -var EC = elliptic.ec +var EC = require('elliptic').ec +var parseKeys = require('parse-asn1') +var curves = require('./curves.json') -function verify (sig, hash, key, signType) { +function verify (sig, hash, key, signType, tag) { var pub = parseKeys(key) if (pub.type === 'ec') { - if (signType !== 'ecdsa') { - throw new Error('wrong public key type') - } + // rsa keys can be interpreted as ecdsa ones in openssl + if (signType !== 'ecdsa' && signType !== 'ecdsa/rsa') throw new Error('wrong public key type') return ecVerify(sig, hash, pub) } else if (pub.type === 'dsa') { - if (signType !== 'dsa') { - throw new Error('wrong public key type') - } + if (signType !== 'dsa') throw new Error('wrong public key type') return dsaVerify(sig, hash, pub) } else { - if (signType !== 'rsa') { - throw new Error('wrong public key type') - } + if (signType !== 'rsa' && signType !== 'ecdsa/rsa') throw new Error('wrong public key type') } + hash = Buffer.concat([tag, hash]) var len = pub.modulus.byteLength() var pad = [ 1 ] var padNum = 0 @@ -41562,21 +37649,13 @@ function verify (sig, hash, key, signType) { sig = new BN(sig).toRed(red) sig = sig.redPow(new BN(pub.publicExponent)) - sig = new Buffer(sig.fromRed().toArray()) - var out = 0 - if (padNum < 8) { - out = 1 - } + var out = padNum < 8 ? 1 : 0 len = Math.min(sig.length, pad.length) - if (sig.length !== pad.length) { - out = 1 - } + if (sig.length !== pad.length) out = 1 i = -1 - while (++i < len) { - out |= (sig[i] ^ pad[i]) - } + while (++i < len) out |= sig[i] ^ pad[i] return out === 0 } @@ -41605,141 +37684,23 @@ function dsaVerify (sig, hash, pub) { var v = g.toRed(montp) .redPow(new BN(hash).mul(w).mod(q)) .fromRed() - .mul( - y.toRed(montp) - .redPow(r.mul(w).mod(q)) - .fromRed() - ).mod(p).mod(q) - return !v.cmp(r) + .mul(y.toRed(montp).redPow(r.mul(w).mod(q)).fromRed()) + .mod(p) + .mod(q) + return v.cmp(r) === 0 } function checkValue (b, q) { - if (b.cmpn(0) <= 0) { - throw new Error('invalid sig') - } - if (b.cmp(q) >= q) { - throw new Error('invalid sig') - } + if (b.cmpn(0) <= 0) throw new Error('invalid sig') + if (b.cmp(q) >= q) throw new Error('invalid sig') } module.exports = verify }).call(this,require("buffer").Buffer) -},{"./curves":44,"bn.js":20,"buffer":50,"elliptic":104,"parse-asn1":140}],47:[function(require,module,exports){ +},{"./curves.json":44,"bn.js":20,"buffer":50,"elliptic":105,"parse-asn1":150}],48:[function(require,module,exports){ arguments[4][22][0].apply(exports,arguments) -},{"dup":22}],48:[function(require,module,exports){ -(function (global){ -'use strict'; - -var buffer = require('buffer'); -var Buffer = buffer.Buffer; -var SlowBuffer = buffer.SlowBuffer; -var MAX_LEN = buffer.kMaxLength || 2147483647; -exports.alloc = function alloc(size, fill, encoding) { - if (typeof Buffer.alloc === 'function') { - return Buffer.alloc(size, fill, encoding); - } - if (typeof encoding === 'number') { - throw new TypeError('encoding must not be number'); - } - if (typeof size !== 'number') { - throw new TypeError('size must be a number'); - } - if (size > MAX_LEN) { - throw new RangeError('size is too large'); - } - var enc = encoding; - var _fill = fill; - if (_fill === undefined) { - enc = undefined; - _fill = 0; - } - var buf = new Buffer(size); - if (typeof _fill === 'string') { - var fillBuf = new Buffer(_fill, enc); - var flen = fillBuf.length; - var i = -1; - while (++i < size) { - buf[i] = fillBuf[i % flen]; - } - } else { - buf.fill(_fill); - } - return buf; -} -exports.allocUnsafe = function allocUnsafe(size) { - if (typeof Buffer.allocUnsafe === 'function') { - return Buffer.allocUnsafe(size); - } - if (typeof size !== 'number') { - throw new TypeError('size must be a number'); - } - if (size > MAX_LEN) { - throw new RangeError('size is too large'); - } - return new Buffer(size); -} -exports.from = function from(value, encodingOrOffset, length) { - if (typeof Buffer.from === 'function' && (!global.Uint8Array || Uint8Array.from !== Buffer.from)) { - return Buffer.from(value, encodingOrOffset, length); - } - if (typeof value === 'number') { - throw new TypeError('"value" argument must not be a number'); - } - if (typeof value === 'string') { - return new Buffer(value, encodingOrOffset); - } - if (typeof ArrayBuffer !== 'undefined' && value instanceof ArrayBuffer) { - var offset = encodingOrOffset; - if (arguments.length === 1) { - return new Buffer(value); - } - if (typeof offset === 'undefined') { - offset = 0; - } - var len = length; - if (typeof len === 'undefined') { - len = value.byteLength - offset; - } - if (offset >= value.byteLength) { - throw new RangeError('\'offset\' is out of bounds'); - } - if (len > value.byteLength - offset) { - throw new RangeError('\'length\' is out of bounds'); - } - return new Buffer(value.slice(offset, offset + len)); - } - if (Buffer.isBuffer(value)) { - var out = new Buffer(value.length); - value.copy(out, 0, 0, value.length); - return out; - } - if (value) { - if (Array.isArray(value) || (typeof ArrayBuffer !== 'undefined' && value.buffer instanceof ArrayBuffer) || 'length' in value) { - return new Buffer(value); - } - if (value.type === 'Buffer' && Array.isArray(value.data)) { - return new Buffer(value.data); - } - } - - throw new TypeError('First argument must be a string, Buffer, ' + 'ArrayBuffer, Array, or array-like object.'); -} -exports.allocUnsafeSlow = function allocUnsafeSlow(size) { - if (typeof Buffer.allocUnsafeSlow === 'function') { - return Buffer.allocUnsafeSlow(size); - } - if (typeof size !== 'number') { - throw new TypeError('size must be a number'); - } - if (size >= MAX_LEN) { - throw new RangeError('size is too large'); - } - return new SlowBuffer(size); -} - -}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"buffer":50}],49:[function(require,module,exports){ +},{"dup":22}],49:[function(require,module,exports){ (function (Buffer){ module.exports = function xor (a, b) { var length = Math.min(a.length, b.length) @@ -43546,7 +39507,7 @@ function isnan (val) { } }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"base64-js":19,"ieee754":129,"isarray":133}],51:[function(require,module,exports){ +},{"base64-js":19,"ieee754":137,"isarray":141}],51:[function(require,module,exports){ /* Copyright 2013-2014 Daniel Wirtz @@ -52212,7 +48173,7 @@ module.exports = function (obj, types) { } }; -},{"./flag":65,"assertion-error":18,"type-detect":175}],65:[function(require,module,exports){ +},{"./flag":65,"assertion-error":18,"type-detect":192}],65:[function(require,module,exports){ /*! * Chai - flag utility * Copyright(c) 2012-2014 Jake Luer @@ -52636,7 +48597,7 @@ module.exports = function hasProperty(name, obj) { return name in obj; }; -},{"type-detect":175}],74:[function(require,module,exports){ +},{"type-detect":192}],74:[function(require,module,exports){ /*! * chai * Copyright(c) 2011 Jake Luer @@ -52768,7 +48729,7 @@ exports.addChainableMethod = require('./addChainableMethod'); exports.overwriteChainableMethod = require('./overwriteChainableMethod'); -},{"./addChainableMethod":61,"./addMethod":62,"./addProperty":63,"./expectTypes":64,"./flag":65,"./getActual":66,"./getMessage":68,"./getName":69,"./getPathInfo":70,"./getPathValue":71,"./hasProperty":73,"./inspect":75,"./objDisplay":76,"./overwriteChainableMethod":77,"./overwriteMethod":78,"./overwriteProperty":79,"./test":80,"./transferFlags":81,"deep-eql":90,"type-detect":175}],75:[function(require,module,exports){ +},{"./addChainableMethod":61,"./addMethod":62,"./addProperty":63,"./expectTypes":64,"./flag":65,"./getActual":66,"./getMessage":68,"./getName":69,"./getPathInfo":70,"./getPathValue":71,"./hasProperty":73,"./inspect":75,"./objDisplay":76,"./overwriteChainableMethod":77,"./overwriteMethod":78,"./overwriteProperty":79,"./test":80,"./transferFlags":81,"deep-eql":91,"type-detect":192}],75:[function(require,module,exports){ // This is (almost) directly from Node.js utils // https://github.com/joyent/node/blob/f8c335d0caf47f16d31413f89aa28eda3878e3aa/lib/util.js @@ -53402,12 +49363,11 @@ module.exports = function (assertion, object, includeAll) { }; },{}],82:[function(require,module,exports){ -(function (Buffer){ +var Buffer = require('safe-buffer').Buffer var Transform = require('stream').Transform -var inherits = require('inherits') var StringDecoder = require('string_decoder').StringDecoder -module.exports = CipherBase -inherits(CipherBase, Transform) +var inherits = require('inherits') + function CipherBase (hashMode) { Transform.call(this) this.hashMode = typeof hashMode === 'string' @@ -53416,25 +49376,31 @@ function CipherBase (hashMode) { } else { this.final = this._finalOrDigest } + if (this._final) { + this.__final = this._final + this._final = null + } this._decoder = null this._encoding = null } +inherits(CipherBase, Transform) + CipherBase.prototype.update = function (data, inputEnc, outputEnc) { if (typeof data === 'string') { - data = new Buffer(data, inputEnc) + data = Buffer.from(data, inputEnc) } + var outData = this._update(data) - if (this.hashMode) { - return this - } + if (this.hashMode) return this + if (outputEnc) { outData = this._toString(outData, outputEnc) } + return outData } CipherBase.prototype.setAutoPadding = function () {} - CipherBase.prototype.getAuthTag = function () { throw new Error('trying to get auth tag in unsupported state') } @@ -53464,15 +49430,15 @@ CipherBase.prototype._transform = function (data, _, next) { CipherBase.prototype._flush = function (done) { var err try { - this.push(this._final()) + this.push(this.__final()) } catch (e) { err = e - } finally { - done(err) } + + done(err) } CipherBase.prototype._finalOrDigest = function (outputEnc) { - var outData = this._final() || new Buffer('') + var outData = this.__final() || Buffer.alloc(0) if (outputEnc) { outData = this._toString(outData, outputEnc, true) } @@ -53484,18 +49450,20 @@ CipherBase.prototype._toString = function (value, enc, fin) { this._decoder = new StringDecoder(enc) this._encoding = enc } - if (this._encoding !== enc) { - throw new Error('can\'t switch encodings') - } + + if (this._encoding !== enc) throw new Error('can\'t switch encodings') + var out = this._decoder.write(value) if (fin) { out += this._decoder.end() } + return out } -}).call(this,require("buffer").Buffer) -},{"buffer":50,"inherits":131,"stream":173,"string_decoder":174}],83:[function(require,module,exports){ +module.exports = CipherBase + +},{"inherits":139,"safe-buffer":181,"stream":190,"string_decoder":191}],83:[function(require,module,exports){ (function (Buffer){ // Copyright Joyent, Inc. and other Node contributors. // @@ -53606,7 +49574,7 @@ function objectToString(o) { } }).call(this,{"isBuffer":require("../../is-buffer/index.js")}) -},{"../../is-buffer/index.js":132}],84:[function(require,module,exports){ +},{"../../is-buffer/index.js":140}],84:[function(require,module,exports){ (function (Buffer){ var elliptic = require('elliptic'); var BN = require('bn.js'); @@ -53732,17 +49700,17 @@ function formatReturnValue(bn, enc, len) { } }).call(this,require("buffer").Buffer) -},{"bn.js":20,"buffer":50,"elliptic":104}],85:[function(require,module,exports){ +},{"bn.js":20,"buffer":50,"elliptic":105}],85:[function(require,module,exports){ (function (Buffer){ -'use strict'; +'use strict' var inherits = require('inherits') var md5 = require('./md5') -var rmd160 = require('ripemd160') +var RIPEMD160 = require('ripemd160') var sha = require('sha.js') var Base = require('cipher-base') -function HashNoConstructor(hash) { +function HashNoConstructor (hash) { Base.call(this, 'digest') this._hash = hash @@ -53763,7 +49731,7 @@ HashNoConstructor.prototype._final = function () { return r } -function Hash(hash) { +function Hash (hash) { Base.call(this, 'digest') this._hash = hash @@ -53781,52 +49749,49 @@ Hash.prototype._final = function () { module.exports = function createHash (alg) { alg = alg.toLowerCase() - if ('md5' === alg) return new HashNoConstructor(md5) - if ('rmd160' === alg || 'ripemd160' === alg) return new HashNoConstructor(rmd160) + if (alg === 'md5') return new HashNoConstructor(md5) + if (alg === 'rmd160' || alg === 'ripemd160') return new Hash(new RIPEMD160()) return new Hash(sha(alg)) } }).call(this,require("buffer").Buffer) -},{"./md5":87,"buffer":50,"cipher-base":82,"inherits":131,"ripemd160":164,"sha.js":166}],86:[function(require,module,exports){ +},{"./md5":87,"buffer":50,"cipher-base":82,"inherits":139,"ripemd160":180,"sha.js":183}],86:[function(require,module,exports){ (function (Buffer){ -'use strict'; -var intSize = 4; -var zeroBuffer = new Buffer(intSize); zeroBuffer.fill(0); -var chrsz = 8; +'use strict' +var intSize = 4 +var zeroBuffer = new Buffer(intSize) +zeroBuffer.fill(0) + +var charSize = 8 +var hashSize = 16 -function toArray(buf, bigEndian) { +function toArray (buf) { if ((buf.length % intSize) !== 0) { - var len = buf.length + (intSize - (buf.length % intSize)); - buf = Buffer.concat([buf, zeroBuffer], len); + var len = buf.length + (intSize - (buf.length % intSize)) + buf = Buffer.concat([buf, zeroBuffer], len) } - var arr = []; - var fn = bigEndian ? buf.readInt32BE : buf.readInt32LE; - for (var i = 0; i < buf.length; i += intSize) { - arr.push(fn.call(buf, i)); + var arr = new Array(buf.length >>> 2) + for (var i = 0, j = 0; i < buf.length; i += intSize, j++) { + arr[j] = buf.readInt32LE(i) } - return arr; + + return arr } -function toBuffer(arr, size, bigEndian) { - var buf = new Buffer(size); - var fn = bigEndian ? buf.writeInt32BE : buf.writeInt32LE; +module.exports = function hash (buf, fn) { + var arr = fn(toArray(buf), buf.length * charSize) + buf = new Buffer(hashSize) for (var i = 0; i < arr.length; i++) { - fn.call(buf, arr[i], i * 4, true); + buf.writeInt32LE(arr[i], i << 2, true) } - return buf; + return buf } -function hash(buf, fn, hashSize, bigEndian) { - if (!Buffer.isBuffer(buf)) buf = new Buffer(buf); - var arr = fn(toArray(buf, bigEndian), buf.length * chrsz); - return toBuffer(arr, hashSize, bigEndian); -} -exports.hash = hash; }).call(this,require("buffer").Buffer) },{"buffer":50}],87:[function(require,module,exports){ -'use strict'; +'use strict' /* * A JavaScript implementation of the RSA Data Security, Inc. MD5 Message * Digest Algorithm, as defined in RFC 1321. @@ -53836,232 +49801,270 @@ exports.hash = hash; * See http://pajhome.org.uk/crypt/md5 for more info. */ -var helpers = require('./helpers'); +var makeHash = require('./make-hash') /* * Calculate the MD5 of an array of little-endian words, and a bit length */ -function core_md5(x, len) -{ +function core_md5 (x, len) { /* append padding */ - x[len >> 5] |= 0x80 << ((len) % 32); - x[(((len + 64) >>> 9) << 4) + 14] = len; - - var a = 1732584193; - var b = -271733879; - var c = -1732584194; - var d = 271733878; - - for(var i = 0; i < x.length; i += 16) - { - var olda = a; - var oldb = b; - var oldc = c; - var oldd = d; - - a = md5_ff(a, b, c, d, x[i+ 0], 7 , -680876936); - d = md5_ff(d, a, b, c, x[i+ 1], 12, -389564586); - c = md5_ff(c, d, a, b, x[i+ 2], 17, 606105819); - b = md5_ff(b, c, d, a, x[i+ 3], 22, -1044525330); - a = md5_ff(a, b, c, d, x[i+ 4], 7 , -176418897); - d = md5_ff(d, a, b, c, x[i+ 5], 12, 1200080426); - c = md5_ff(c, d, a, b, x[i+ 6], 17, -1473231341); - b = md5_ff(b, c, d, a, x[i+ 7], 22, -45705983); - a = md5_ff(a, b, c, d, x[i+ 8], 7 , 1770035416); - d = md5_ff(d, a, b, c, x[i+ 9], 12, -1958414417); - c = md5_ff(c, d, a, b, x[i+10], 17, -42063); - b = md5_ff(b, c, d, a, x[i+11], 22, -1990404162); - a = md5_ff(a, b, c, d, x[i+12], 7 , 1804603682); - d = md5_ff(d, a, b, c, x[i+13], 12, -40341101); - c = md5_ff(c, d, a, b, x[i+14], 17, -1502002290); - b = md5_ff(b, c, d, a, x[i+15], 22, 1236535329); - - a = md5_gg(a, b, c, d, x[i+ 1], 5 , -165796510); - d = md5_gg(d, a, b, c, x[i+ 6], 9 , -1069501632); - c = md5_gg(c, d, a, b, x[i+11], 14, 643717713); - b = md5_gg(b, c, d, a, x[i+ 0], 20, -373897302); - a = md5_gg(a, b, c, d, x[i+ 5], 5 , -701558691); - d = md5_gg(d, a, b, c, x[i+10], 9 , 38016083); - c = md5_gg(c, d, a, b, x[i+15], 14, -660478335); - b = md5_gg(b, c, d, a, x[i+ 4], 20, -405537848); - a = md5_gg(a, b, c, d, x[i+ 9], 5 , 568446438); - d = md5_gg(d, a, b, c, x[i+14], 9 , -1019803690); - c = md5_gg(c, d, a, b, x[i+ 3], 14, -187363961); - b = md5_gg(b, c, d, a, x[i+ 8], 20, 1163531501); - a = md5_gg(a, b, c, d, x[i+13], 5 , -1444681467); - d = md5_gg(d, a, b, c, x[i+ 2], 9 , -51403784); - c = md5_gg(c, d, a, b, x[i+ 7], 14, 1735328473); - b = md5_gg(b, c, d, a, x[i+12], 20, -1926607734); - - a = md5_hh(a, b, c, d, x[i+ 5], 4 , -378558); - d = md5_hh(d, a, b, c, x[i+ 8], 11, -2022574463); - c = md5_hh(c, d, a, b, x[i+11], 16, 1839030562); - b = md5_hh(b, c, d, a, x[i+14], 23, -35309556); - a = md5_hh(a, b, c, d, x[i+ 1], 4 , -1530992060); - d = md5_hh(d, a, b, c, x[i+ 4], 11, 1272893353); - c = md5_hh(c, d, a, b, x[i+ 7], 16, -155497632); - b = md5_hh(b, c, d, a, x[i+10], 23, -1094730640); - a = md5_hh(a, b, c, d, x[i+13], 4 , 681279174); - d = md5_hh(d, a, b, c, x[i+ 0], 11, -358537222); - c = md5_hh(c, d, a, b, x[i+ 3], 16, -722521979); - b = md5_hh(b, c, d, a, x[i+ 6], 23, 76029189); - a = md5_hh(a, b, c, d, x[i+ 9], 4 , -640364487); - d = md5_hh(d, a, b, c, x[i+12], 11, -421815835); - c = md5_hh(c, d, a, b, x[i+15], 16, 530742520); - b = md5_hh(b, c, d, a, x[i+ 2], 23, -995338651); - - a = md5_ii(a, b, c, d, x[i+ 0], 6 , -198630844); - d = md5_ii(d, a, b, c, x[i+ 7], 10, 1126891415); - c = md5_ii(c, d, a, b, x[i+14], 15, -1416354905); - b = md5_ii(b, c, d, a, x[i+ 5], 21, -57434055); - a = md5_ii(a, b, c, d, x[i+12], 6 , 1700485571); - d = md5_ii(d, a, b, c, x[i+ 3], 10, -1894986606); - c = md5_ii(c, d, a, b, x[i+10], 15, -1051523); - b = md5_ii(b, c, d, a, x[i+ 1], 21, -2054922799); - a = md5_ii(a, b, c, d, x[i+ 8], 6 , 1873313359); - d = md5_ii(d, a, b, c, x[i+15], 10, -30611744); - c = md5_ii(c, d, a, b, x[i+ 6], 15, -1560198380); - b = md5_ii(b, c, d, a, x[i+13], 21, 1309151649); - a = md5_ii(a, b, c, d, x[i+ 4], 6 , -145523070); - d = md5_ii(d, a, b, c, x[i+11], 10, -1120210379); - c = md5_ii(c, d, a, b, x[i+ 2], 15, 718787259); - b = md5_ii(b, c, d, a, x[i+ 9], 21, -343485551); - - a = safe_add(a, olda); - b = safe_add(b, oldb); - c = safe_add(c, oldc); - d = safe_add(d, oldd); - } - return Array(a, b, c, d); - + x[len >> 5] |= 0x80 << ((len) % 32) + x[(((len + 64) >>> 9) << 4) + 14] = len + + var a = 1732584193 + var b = -271733879 + var c = -1732584194 + var d = 271733878 + + for (var i = 0; i < x.length; i += 16) { + var olda = a + var oldb = b + var oldc = c + var oldd = d + + a = md5_ff(a, b, c, d, x[i + 0], 7, -680876936) + d = md5_ff(d, a, b, c, x[i + 1], 12, -389564586) + c = md5_ff(c, d, a, b, x[i + 2], 17, 606105819) + b = md5_ff(b, c, d, a, x[i + 3], 22, -1044525330) + a = md5_ff(a, b, c, d, x[i + 4], 7, -176418897) + d = md5_ff(d, a, b, c, x[i + 5], 12, 1200080426) + c = md5_ff(c, d, a, b, x[i + 6], 17, -1473231341) + b = md5_ff(b, c, d, a, x[i + 7], 22, -45705983) + a = md5_ff(a, b, c, d, x[i + 8], 7, 1770035416) + d = md5_ff(d, a, b, c, x[i + 9], 12, -1958414417) + c = md5_ff(c, d, a, b, x[i + 10], 17, -42063) + b = md5_ff(b, c, d, a, x[i + 11], 22, -1990404162) + a = md5_ff(a, b, c, d, x[i + 12], 7, 1804603682) + d = md5_ff(d, a, b, c, x[i + 13], 12, -40341101) + c = md5_ff(c, d, a, b, x[i + 14], 17, -1502002290) + b = md5_ff(b, c, d, a, x[i + 15], 22, 1236535329) + + a = md5_gg(a, b, c, d, x[i + 1], 5, -165796510) + d = md5_gg(d, a, b, c, x[i + 6], 9, -1069501632) + c = md5_gg(c, d, a, b, x[i + 11], 14, 643717713) + b = md5_gg(b, c, d, a, x[i + 0], 20, -373897302) + a = md5_gg(a, b, c, d, x[i + 5], 5, -701558691) + d = md5_gg(d, a, b, c, x[i + 10], 9, 38016083) + c = md5_gg(c, d, a, b, x[i + 15], 14, -660478335) + b = md5_gg(b, c, d, a, x[i + 4], 20, -405537848) + a = md5_gg(a, b, c, d, x[i + 9], 5, 568446438) + d = md5_gg(d, a, b, c, x[i + 14], 9, -1019803690) + c = md5_gg(c, d, a, b, x[i + 3], 14, -187363961) + b = md5_gg(b, c, d, a, x[i + 8], 20, 1163531501) + a = md5_gg(a, b, c, d, x[i + 13], 5, -1444681467) + d = md5_gg(d, a, b, c, x[i + 2], 9, -51403784) + c = md5_gg(c, d, a, b, x[i + 7], 14, 1735328473) + b = md5_gg(b, c, d, a, x[i + 12], 20, -1926607734) + + a = md5_hh(a, b, c, d, x[i + 5], 4, -378558) + d = md5_hh(d, a, b, c, x[i + 8], 11, -2022574463) + c = md5_hh(c, d, a, b, x[i + 11], 16, 1839030562) + b = md5_hh(b, c, d, a, x[i + 14], 23, -35309556) + a = md5_hh(a, b, c, d, x[i + 1], 4, -1530992060) + d = md5_hh(d, a, b, c, x[i + 4], 11, 1272893353) + c = md5_hh(c, d, a, b, x[i + 7], 16, -155497632) + b = md5_hh(b, c, d, a, x[i + 10], 23, -1094730640) + a = md5_hh(a, b, c, d, x[i + 13], 4, 681279174) + d = md5_hh(d, a, b, c, x[i + 0], 11, -358537222) + c = md5_hh(c, d, a, b, x[i + 3], 16, -722521979) + b = md5_hh(b, c, d, a, x[i + 6], 23, 76029189) + a = md5_hh(a, b, c, d, x[i + 9], 4, -640364487) + d = md5_hh(d, a, b, c, x[i + 12], 11, -421815835) + c = md5_hh(c, d, a, b, x[i + 15], 16, 530742520) + b = md5_hh(b, c, d, a, x[i + 2], 23, -995338651) + + a = md5_ii(a, b, c, d, x[i + 0], 6, -198630844) + d = md5_ii(d, a, b, c, x[i + 7], 10, 1126891415) + c = md5_ii(c, d, a, b, x[i + 14], 15, -1416354905) + b = md5_ii(b, c, d, a, x[i + 5], 21, -57434055) + a = md5_ii(a, b, c, d, x[i + 12], 6, 1700485571) + d = md5_ii(d, a, b, c, x[i + 3], 10, -1894986606) + c = md5_ii(c, d, a, b, x[i + 10], 15, -1051523) + b = md5_ii(b, c, d, a, x[i + 1], 21, -2054922799) + a = md5_ii(a, b, c, d, x[i + 8], 6, 1873313359) + d = md5_ii(d, a, b, c, x[i + 15], 10, -30611744) + c = md5_ii(c, d, a, b, x[i + 6], 15, -1560198380) + b = md5_ii(b, c, d, a, x[i + 13], 21, 1309151649) + a = md5_ii(a, b, c, d, x[i + 4], 6, -145523070) + d = md5_ii(d, a, b, c, x[i + 11], 10, -1120210379) + c = md5_ii(c, d, a, b, x[i + 2], 15, 718787259) + b = md5_ii(b, c, d, a, x[i + 9], 21, -343485551) + + a = safe_add(a, olda) + b = safe_add(b, oldb) + c = safe_add(c, oldc) + d = safe_add(d, oldd) + } + + return [a, b, c, d] } /* * These functions implement the four basic operations the algorithm uses. */ -function md5_cmn(q, a, b, x, s, t) -{ - return safe_add(bit_rol(safe_add(safe_add(a, q), safe_add(x, t)), s),b); +function md5_cmn (q, a, b, x, s, t) { + return safe_add(bit_rol(safe_add(safe_add(a, q), safe_add(x, t)), s), b) } -function md5_ff(a, b, c, d, x, s, t) -{ - return md5_cmn((b & c) | ((~b) & d), a, b, x, s, t); + +function md5_ff (a, b, c, d, x, s, t) { + return md5_cmn((b & c) | ((~b) & d), a, b, x, s, t) } -function md5_gg(a, b, c, d, x, s, t) -{ - return md5_cmn((b & d) | (c & (~d)), a, b, x, s, t); + +function md5_gg (a, b, c, d, x, s, t) { + return md5_cmn((b & d) | (c & (~d)), a, b, x, s, t) } -function md5_hh(a, b, c, d, x, s, t) -{ - return md5_cmn(b ^ c ^ d, a, b, x, s, t); + +function md5_hh (a, b, c, d, x, s, t) { + return md5_cmn(b ^ c ^ d, a, b, x, s, t) } -function md5_ii(a, b, c, d, x, s, t) -{ - return md5_cmn(c ^ (b | (~d)), a, b, x, s, t); + +function md5_ii (a, b, c, d, x, s, t) { + return md5_cmn(c ^ (b | (~d)), a, b, x, s, t) } /* * Add integers, wrapping at 2^32. This uses 16-bit operations internally * to work around bugs in some JS interpreters. */ -function safe_add(x, y) -{ - var lsw = (x & 0xFFFF) + (y & 0xFFFF); - var msw = (x >> 16) + (y >> 16) + (lsw >> 16); - return (msw << 16) | (lsw & 0xFFFF); +function safe_add (x, y) { + var lsw = (x & 0xFFFF) + (y & 0xFFFF) + var msw = (x >> 16) + (y >> 16) + (lsw >> 16) + return (msw << 16) | (lsw & 0xFFFF) } /* * Bitwise rotate a 32-bit number to the left. */ -function bit_rol(num, cnt) -{ - return (num << cnt) | (num >>> (32 - cnt)); +function bit_rol (num, cnt) { + return (num << cnt) | (num >>> (32 - cnt)) } -module.exports = function md5(buf) { - return helpers.hash(buf, core_md5, 16); -}; -},{"./helpers":86}],88:[function(require,module,exports){ -(function (Buffer){ -'use strict'; -var createHash = require('create-hash/browser'); +module.exports = function md5 (buf) { + return makeHash(buf, core_md5) +} + +},{"./make-hash":86}],88:[function(require,module,exports){ +'use strict' var inherits = require('inherits') +var Legacy = require('./legacy') +var Base = require('cipher-base') +var Buffer = require('safe-buffer').Buffer +var md5 = require('create-hash/md5') +var RIPEMD160 = require('ripemd160') -var Transform = require('stream').Transform +var sha = require('sha.js') -var ZEROS = new Buffer(128) -ZEROS.fill(0) +var ZEROS = Buffer.alloc(128) -function Hmac(alg, key) { - Transform.call(this) - alg = alg.toLowerCase() +function Hmac (alg, key) { + Base.call(this, 'digest') if (typeof key === 'string') { - key = new Buffer(key) + key = Buffer.from(key) } var blocksize = (alg === 'sha512' || alg === 'sha384') ? 128 : 64 this._alg = alg this._key = key - if (key.length > blocksize) { - key = createHash(alg).update(key).digest() - + var hash = alg === 'rmd160' ? new RIPEMD160() : sha(alg) + key = hash.update(key).digest() } else if (key.length < blocksize) { key = Buffer.concat([key, ZEROS], blocksize) } - var ipad = this._ipad = new Buffer(blocksize) - var opad = this._opad = new Buffer(blocksize) + var ipad = this._ipad = Buffer.allocUnsafe(blocksize) + var opad = this._opad = Buffer.allocUnsafe(blocksize) for (var i = 0; i < blocksize; i++) { ipad[i] = key[i] ^ 0x36 opad[i] = key[i] ^ 0x5C } - - this._hash = createHash(alg).update(ipad) + this._hash = alg === 'rmd160' ? new RIPEMD160() : sha(alg) + this._hash.update(ipad) } -inherits(Hmac, Transform) - -Hmac.prototype.update = function (data, enc) { - this._hash.update(data, enc) +inherits(Hmac, Base) - return this +Hmac.prototype._update = function (data) { + this._hash.update(data) } -Hmac.prototype._transform = function (data, _, next) { - this._hash.update(data) +Hmac.prototype._final = function () { + var h = this._hash.digest() + var hash = this._alg === 'rmd160' ? new RIPEMD160() : sha(this._alg) + return hash.update(this._opad).update(h).digest() +} - next() +module.exports = function createHmac (alg, key) { + alg = alg.toLowerCase() + if (alg === 'rmd160' || alg === 'ripemd160') { + return new Hmac('rmd160', key) + } + if (alg === 'md5') { + return new Legacy(md5, key) + } + return new Hmac(alg, key) } -Hmac.prototype._flush = function (next) { - this.push(this.digest()) +},{"./legacy":89,"cipher-base":82,"create-hash/md5":87,"inherits":139,"ripemd160":180,"safe-buffer":181,"sha.js":183}],89:[function(require,module,exports){ +'use strict' +var inherits = require('inherits') +var Buffer = require('safe-buffer').Buffer + +var Base = require('cipher-base') + +var ZEROS = Buffer.alloc(128) +var blocksize = 64 + +function Hmac (alg, key) { + Base.call(this, 'digest') + if (typeof key === 'string') { + key = Buffer.from(key) + } + + this._alg = alg + this._key = key + + if (key.length > blocksize) { + key = alg(key) + } else if (key.length < blocksize) { + key = Buffer.concat([key, ZEROS], blocksize) + } + + var ipad = this._ipad = Buffer.allocUnsafe(blocksize) + var opad = this._opad = Buffer.allocUnsafe(blocksize) + + for (var i = 0; i < blocksize; i++) { + ipad[i] = key[i] ^ 0x36 + opad[i] = key[i] ^ 0x5C + } - next() + this._hash = [ipad] } -Hmac.prototype.digest = function (enc) { - var h = this._hash.digest() +inherits(Hmac, Base) - return createHash(this._alg).update(this._opad).update(h).digest(enc) +Hmac.prototype._update = function (data) { + this._hash.push(data) } -module.exports = function createHmac(alg, key) { - return new Hmac(alg, key) +Hmac.prototype._final = function () { + var h = this._alg(Buffer.concat(this._hash)) + return this._alg(Buffer.concat([this._opad, h])) } +module.exports = Hmac -}).call(this,require("buffer").Buffer) -},{"buffer":50,"create-hash/browser":85,"inherits":131,"stream":173}],89:[function(require,module,exports){ +},{"cipher-base":82,"inherits":139,"safe-buffer":181}],90:[function(require,module,exports){ 'use strict' exports.randomBytes = exports.rng = exports.pseudoRandomBytes = exports.prng = require('randombytes') exports.createHash = exports.Hash = require('create-hash') exports.createHmac = exports.Hmac = require('create-hmac') -var hashes = ['sha1', 'sha224', 'sha256', 'sha384', 'sha512', 'md5', 'rmd160'].concat(Object.keys(require('browserify-sign/algos'))) +var algos = require('browserify-sign/algos') +var algoKeys = Object.keys(algos) +var hashes = ['sha1', 'sha224', 'sha256', 'sha384', 'sha512', 'md5', 'rmd160'].concat(algoKeys) exports.getHashes = function () { return hashes } @@ -54071,72 +50074,85 @@ exports.pbkdf2 = p.pbkdf2 exports.pbkdf2Sync = p.pbkdf2Sync var aes = require('browserify-cipher') -;[ - 'Cipher', - 'createCipher', - 'Cipheriv', - 'createCipheriv', - 'Decipher', - 'createDecipher', - 'Decipheriv', - 'createDecipheriv', - 'getCiphers', - 'listCiphers' -].forEach(function (key) { - exports[key] = aes[key] -}) + +exports.Cipher = aes.Cipher +exports.createCipher = aes.createCipher +exports.Cipheriv = aes.Cipheriv +exports.createCipheriv = aes.createCipheriv +exports.Decipher = aes.Decipher +exports.createDecipher = aes.createDecipher +exports.Decipheriv = aes.Decipheriv +exports.createDecipheriv = aes.createDecipheriv +exports.getCiphers = aes.getCiphers +exports.listCiphers = aes.listCiphers var dh = require('diffie-hellman') -;[ - 'DiffieHellmanGroup', - 'createDiffieHellmanGroup', - 'getDiffieHellman', - 'createDiffieHellman', - 'DiffieHellman' -].forEach(function (key) { - exports[key] = dh[key] -}) + +exports.DiffieHellmanGroup = dh.DiffieHellmanGroup +exports.createDiffieHellmanGroup = dh.createDiffieHellmanGroup +exports.getDiffieHellman = dh.getDiffieHellman +exports.createDiffieHellman = dh.createDiffieHellman +exports.DiffieHellman = dh.DiffieHellman var sign = require('browserify-sign') -;[ - 'createSign', - 'Sign', - 'createVerify', - 'Verify' -].forEach(function (key) { - exports[key] = sign[key] -}) + +exports.createSign = sign.createSign +exports.Sign = sign.Sign +exports.createVerify = sign.createVerify +exports.Verify = sign.Verify exports.createECDH = require('create-ecdh') var publicEncrypt = require('public-encrypt') -;[ - 'publicEncrypt', - 'privateEncrypt', - 'publicDecrypt', - 'privateDecrypt' -].forEach(function (key) { - exports[key] = publicEncrypt[key] -}) +exports.publicEncrypt = publicEncrypt.publicEncrypt +exports.privateEncrypt = publicEncrypt.privateEncrypt +exports.publicDecrypt = publicEncrypt.publicDecrypt +exports.privateDecrypt = publicEncrypt.privateDecrypt // the least I can do is make error messages for the rest of the node.js/crypto api. -;[ - 'createCredentials' -].forEach(function (name) { - exports[name] = function () { - throw new Error([ - 'sorry, ' + name + ' is not implemented yet', - 'we accept pull requests', - 'https://github.com/crypto-browserify/crypto-browserify' - ].join('\n')) - } -}) - -},{"browserify-cipher":38,"browserify-sign":43,"browserify-sign/algos":42,"create-ecdh":84,"create-hash":85,"create-hmac":88,"diffie-hellman":100,"pbkdf2":142,"public-encrypt":146,"randombytes":152}],90:[function(require,module,exports){ +// ;[ +// 'createCredentials' +// ].forEach(function (name) { +// exports[name] = function () { +// throw new Error([ +// 'sorry, ' + name + ' is not implemented yet', +// 'we accept pull requests', +// 'https://github.com/crypto-browserify/crypto-browserify' +// ].join('\n')) +// } +// }) + +exports.createCredentials = function () { + throw new Error([ + 'sorry, createCredentials is not implemented yet', + 'we accept pull requests', + 'https://github.com/crypto-browserify/crypto-browserify' + ].join('\n')) +} + +exports.constants = { + 'DH_CHECK_P_NOT_SAFE_PRIME': 2, + 'DH_CHECK_P_NOT_PRIME': 1, + 'DH_UNABLE_TO_CHECK_GENERATOR': 4, + 'DH_NOT_SUITABLE_GENERATOR': 8, + 'NPN_ENABLED': 1, + 'ALPN_ENABLED': 1, + 'RSA_PKCS1_PADDING': 1, + 'RSA_SSLV23_PADDING': 2, + 'RSA_NO_PADDING': 3, + 'RSA_PKCS1_OAEP_PADDING': 4, + 'RSA_X931_PADDING': 5, + 'RSA_PKCS1_PSS_PADDING': 6, + 'POINT_CONVERSION_COMPRESSED': 2, + 'POINT_CONVERSION_UNCOMPRESSED': 4, + 'POINT_CONVERSION_HYBRID': 6 +} + +},{"browserify-cipher":38,"browserify-sign":45,"browserify-sign/algos":42,"create-ecdh":84,"create-hash":85,"create-hmac":88,"diffie-hellman":101,"pbkdf2":152,"public-encrypt":159,"randombytes":165}],91:[function(require,module,exports){ module.exports = require('./lib/eql'); -},{"./lib/eql":91}],91:[function(require,module,exports){ +},{"./lib/eql":92}],92:[function(require,module,exports){ /*! * deep-eql * Copyright(c) 2013 Jake Luer @@ -54395,10 +50411,10 @@ function objectEqual(a, b, m) { return true; } -},{"buffer":50,"type-detect":92}],92:[function(require,module,exports){ +},{"buffer":50,"type-detect":93}],93:[function(require,module,exports){ module.exports = require('./lib/type'); -},{"./lib/type":93}],93:[function(require,module,exports){ +},{"./lib/type":94}],94:[function(require,module,exports){ /*! * type-detect * Copyright(c) 2013 jake luer @@ -54542,7 +50558,7 @@ Library.prototype.test = function (obj, type) { } }; -},{}],94:[function(require,module,exports){ +},{}],95:[function(require,module,exports){ 'use strict'; exports.utils = require('./des/utils'); @@ -54551,7 +50567,7 @@ exports.DES = require('./des/des'); exports.CBC = require('./des/cbc'); exports.EDE = require('./des/ede'); -},{"./des/cbc":95,"./des/cipher":96,"./des/des":97,"./des/ede":98,"./des/utils":99}],95:[function(require,module,exports){ +},{"./des/cbc":96,"./des/cipher":97,"./des/des":98,"./des/ede":99,"./des/utils":100}],96:[function(require,module,exports){ 'use strict'; var assert = require('minimalistic-assert'); @@ -54618,7 +50634,7 @@ proto._update = function _update(inp, inOff, out, outOff) { } }; -},{"inherits":131,"minimalistic-assert":136}],96:[function(require,module,exports){ +},{"inherits":139,"minimalistic-assert":144}],97:[function(require,module,exports){ 'use strict'; var assert = require('minimalistic-assert'); @@ -54761,7 +50777,7 @@ Cipher.prototype._finalDecrypt = function _finalDecrypt() { return this._unpad(out); }; -},{"minimalistic-assert":136}],97:[function(require,module,exports){ +},{"minimalistic-assert":144}],98:[function(require,module,exports){ 'use strict'; var assert = require('minimalistic-assert'); @@ -54906,7 +50922,7 @@ DES.prototype._decrypt = function _decrypt(state, lStart, rStart, out, off) { utils.rip(l, r, out, off); }; -},{"../des":94,"inherits":131,"minimalistic-assert":136}],98:[function(require,module,exports){ +},{"../des":95,"inherits":139,"minimalistic-assert":144}],99:[function(require,module,exports){ 'use strict'; var assert = require('minimalistic-assert'); @@ -54963,7 +50979,7 @@ EDE.prototype._update = function _update(inp, inOff, out, outOff) { EDE.prototype._pad = DES.prototype._pad; EDE.prototype._unpad = DES.prototype._unpad; -},{"../des":94,"inherits":131,"minimalistic-assert":136}],99:[function(require,module,exports){ +},{"../des":95,"inherits":139,"minimalistic-assert":144}],100:[function(require,module,exports){ 'use strict'; exports.readUInt32BE = function readUInt32BE(bytes, off) { @@ -55221,7 +51237,7 @@ exports.padSplit = function padSplit(num, size, group) { return out.join(' '); }; -},{}],100:[function(require,module,exports){ +},{}],101:[function(require,module,exports){ (function (Buffer){ var generatePrime = require('./lib/generatePrime') var primes = require('./lib/primes.json') @@ -55267,7 +51283,7 @@ exports.DiffieHellmanGroup = exports.createDiffieHellmanGroup = exports.getDiffi exports.createDiffieHellman = exports.DiffieHellman = createDiffieHellman }).call(this,require("buffer").Buffer) -},{"./lib/dh":101,"./lib/generatePrime":102,"./lib/primes.json":103,"buffer":50}],101:[function(require,module,exports){ +},{"./lib/dh":102,"./lib/generatePrime":103,"./lib/primes.json":104,"buffer":50}],102:[function(require,module,exports){ (function (Buffer){ var BN = require('bn.js'); var MillerRabin = require('miller-rabin'); @@ -55435,7 +51451,7 @@ function formatReturnValue(bn, enc) { } }).call(this,require("buffer").Buffer) -},{"./generatePrime":102,"bn.js":20,"buffer":50,"miller-rabin":135,"randombytes":152}],102:[function(require,module,exports){ +},{"./generatePrime":103,"bn.js":20,"buffer":50,"miller-rabin":143,"randombytes":165}],103:[function(require,module,exports){ var randomBytes = require('randombytes'); module.exports = findPrime; findPrime.simpleSieve = simpleSieve; @@ -55542,7 +51558,7 @@ function findPrime(bits, gen) { } -},{"bn.js":20,"miller-rabin":135,"randombytes":152}],103:[function(require,module,exports){ +},{"bn.js":20,"miller-rabin":143,"randombytes":165}],104:[function(require,module,exports){ module.exports={ "modp1": { "gen": "02", @@ -55577,7 +51593,7 @@ module.exports={ "prime": "ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c93402849236c3fab4d27c7026c1d4dcb2602646dec9751e763dba37bdf8ff9406ad9e530ee5db382f413001aeb06a53ed9027d831179727b0865a8918da3edbebcf9b14ed44ce6cbaced4bb1bdb7f1447e6cc254b332051512bd7af426fb8f401378cd2bf5983ca01c64b92ecf032ea15d1721d03f482d7ce6e74fef6d55e702f46980c82b5a84031900b1c9e59e7c97fbec7e8f323a97a7e36cc88be0f1d45b7ff585ac54bd407b22b4154aacc8f6d7ebf48e1d814cc5ed20f8037e0a79715eef29be32806a1d58bb7c5da76f550aa3d8a1fbff0eb19ccb1a313d55cda56c9ec2ef29632387fe8d76e3c0468043e8f663f4860ee12bf2d5b0b7474d6e694f91e6dbe115974a3926f12fee5e438777cb6a932df8cd8bec4d073b931ba3bc832b68d9dd300741fa7bf8afc47ed2576f6936ba424663aab639c5ae4f5683423b4742bf1c978238f16cbe39d652de3fdb8befc848ad922222e04a4037c0713eb57a81a23f0c73473fc646cea306b4bcbc8862f8385ddfa9d4b7fa2c087e879683303ed5bdd3a062b3cf5b3a278a66d2a13f83f44f82ddf310ee074ab6a364597e899a0255dc164f31cc50846851df9ab48195ded7ea1b1d510bd7ee74d73faf36bc31ecfa268359046f4eb879f924009438b481c6cd7889a002ed5ee382bc9190da6fc026e479558e4475677e9aa9e3050e2765694dfc81f56e880b96e7160c980dd98edd3dfffffffffffffffff" } } -},{}],104:[function(require,module,exports){ +},{}],105:[function(require,module,exports){ 'use strict'; var elliptic = exports; @@ -55585,7 +51601,6 @@ var elliptic = exports; elliptic.version = require('../package.json').version; elliptic.utils = require('./elliptic/utils'); elliptic.rand = require('brorand'); -elliptic.hmacDRBG = require('./elliptic/hmac-drbg'); elliptic.curve = require('./elliptic/curve'); elliptic.curves = require('./elliptic/curves'); @@ -55593,7 +51608,7 @@ elliptic.curves = require('./elliptic/curves'); elliptic.ec = require('./elliptic/ec'); elliptic.eddsa = require('./elliptic/eddsa'); -},{"../package.json":120,"./elliptic/curve":107,"./elliptic/curves":110,"./elliptic/ec":111,"./elliptic/eddsa":114,"./elliptic/hmac-drbg":117,"./elliptic/utils":119,"brorand":21}],105:[function(require,module,exports){ +},{"../package.json":120,"./elliptic/curve":108,"./elliptic/curves":111,"./elliptic/ec":112,"./elliptic/eddsa":115,"./elliptic/utils":119,"brorand":21}],106:[function(require,module,exports){ 'use strict'; var BN = require('bn.js'); @@ -55970,7 +51985,7 @@ BasePoint.prototype.dblp = function dblp(k) { return r; }; -},{"../../elliptic":104,"bn.js":20}],106:[function(require,module,exports){ +},{"../../elliptic":105,"bn.js":20}],107:[function(require,module,exports){ 'use strict'; var curve = require('../curve'); @@ -56405,7 +52420,7 @@ Point.prototype.eqXToP = function eqXToP(x) { Point.prototype.toP = Point.prototype.normalize; Point.prototype.mixedAdd = Point.prototype.add; -},{"../../elliptic":104,"../curve":107,"bn.js":20,"inherits":131}],107:[function(require,module,exports){ +},{"../../elliptic":105,"../curve":108,"bn.js":20,"inherits":139}],108:[function(require,module,exports){ 'use strict'; var curve = exports; @@ -56415,7 +52430,7 @@ curve.short = require('./short'); curve.mont = require('./mont'); curve.edwards = require('./edwards'); -},{"./base":105,"./edwards":106,"./mont":108,"./short":109}],108:[function(require,module,exports){ +},{"./base":106,"./edwards":107,"./mont":109,"./short":110}],109:[function(require,module,exports){ 'use strict'; var curve = require('../curve'); @@ -56597,7 +52612,7 @@ Point.prototype.getX = function getX() { return this.x.fromRed(); }; -},{"../../elliptic":104,"../curve":107,"bn.js":20,"inherits":131}],109:[function(require,module,exports){ +},{"../../elliptic":105,"../curve":108,"bn.js":20,"inherits":139}],110:[function(require,module,exports){ 'use strict'; var curve = require('../curve'); @@ -57537,7 +53552,7 @@ JPoint.prototype.isInfinity = function isInfinity() { return this.z.cmpn(0) === 0; }; -},{"../../elliptic":104,"../curve":107,"bn.js":20,"inherits":131}],110:[function(require,module,exports){ +},{"../../elliptic":105,"../curve":108,"bn.js":20,"inherits":139}],111:[function(require,module,exports){ 'use strict'; var curves = exports; @@ -57677,7 +53692,7 @@ defineCurve('curve25519', { prime: 'p25519', p: '7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed', a: '76d06', - b: '0', + b: '1', n: '1000000000000000 0000000000000000 14def9dea2f79cd6 5812631a5cf5d3ed', hash: hash.sha256, gRed: false, @@ -57744,10 +53759,11 @@ defineCurve('secp256k1', { ] }); -},{"../elliptic":104,"./precomputed/secp256k1":118,"hash.js":123}],111:[function(require,module,exports){ +},{"../elliptic":105,"./precomputed/secp256k1":118,"hash.js":124}],112:[function(require,module,exports){ 'use strict'; var BN = require('bn.js'); +var HmacDRBG = require('hmac-drbg'); var elliptic = require('../../elliptic'); var utils = elliptic.utils; var assert = utils.assert; @@ -57801,10 +53817,12 @@ EC.prototype.genKeyPair = function genKeyPair(options) { options = {}; // Instantiate Hmac_DRBG - var drbg = new elliptic.hmacDRBG({ + var drbg = new HmacDRBG({ hash: this.hash, pers: options.pers, + persEnc: options.persEnc || 'utf8', entropy: options.entropy || elliptic.rand(this.hash.hmacStrength), + entropyEnc: options.entropy && options.entropyEnc || 'utf8', nonce: this.n.toArray() }); @@ -57849,12 +53867,12 @@ EC.prototype.sign = function sign(msg, key, enc, options) { var nonce = msg.toArray('be', bytes); // Instantiate Hmac_DRBG - var drbg = new elliptic.hmacDRBG({ + var drbg = new HmacDRBG({ hash: this.hash, entropy: bkey, nonce: nonce, pers: options.pers, - persEnc: options.persEnc + persEnc: options.persEnc || 'utf8' }); // Number of bytes to generate @@ -57983,10 +54001,13 @@ EC.prototype.getKeyRecoveryParam = function(e, signature, Q, enc) { throw new Error('Unable to find valid recovery factor'); }; -},{"../../elliptic":104,"./key":112,"./signature":113,"bn.js":20}],112:[function(require,module,exports){ +},{"../../elliptic":105,"./key":113,"./signature":114,"bn.js":20,"hmac-drbg":136}],113:[function(require,module,exports){ 'use strict'; var BN = require('bn.js'); +var elliptic = require('../../elliptic'); +var utils = elliptic.utils; +var assert = utils.assert; function KeyPair(ec, options) { this.ec = ec; @@ -58067,6 +54088,15 @@ KeyPair.prototype._importPrivate = function _importPrivate(key, enc) { KeyPair.prototype._importPublic = function _importPublic(key, enc) { if (key.x || key.y) { + // Montgomery points only have an `x` coordinate. + // Weierstrass/Edwards points on the other hand have both `x` and + // `y` coordinates. + if (this.ec.curve.type === 'mont') { + assert(key.x, 'Need x coordinate'); + } else if (this.ec.curve.type === 'short' || + this.ec.curve.type === 'edwards') { + assert(key.x && key.y, 'Need both x and y coordinate'); + } this.pub = this.ec.curve.point(key.x, key.y); return; } @@ -58092,7 +54122,7 @@ KeyPair.prototype.inspect = function inspect() { ' pub: ' + (this.pub && this.pub.inspect()) + ' >'; }; -},{"bn.js":20}],113:[function(require,module,exports){ +},{"../../elliptic":105,"bn.js":20}],114:[function(require,module,exports){ 'use strict'; var BN = require('bn.js'); @@ -58229,7 +54259,7 @@ Signature.prototype.toDER = function toDER(enc) { return utils.encode(res, enc); }; -},{"../../elliptic":104,"bn.js":20}],114:[function(require,module,exports){ +},{"../../elliptic":105,"bn.js":20}],115:[function(require,module,exports){ 'use strict'; var hash = require('hash.js'); @@ -58349,7 +54379,7 @@ EDDSA.prototype.isPoint = function isPoint(val) { return val instanceof this.pointClass; }; -},{"../../elliptic":104,"./key":115,"./signature":116,"hash.js":123}],115:[function(require,module,exports){ +},{"../../elliptic":105,"./key":116,"./signature":117,"hash.js":124}],116:[function(require,module,exports){ 'use strict'; var elliptic = require('../../elliptic'); @@ -58447,7 +54477,7 @@ KeyPair.prototype.getPublic = function getPublic(enc) { module.exports = KeyPair; -},{"../../elliptic":104}],116:[function(require,module,exports){ +},{"../../elliptic":105}],117:[function(require,module,exports){ 'use strict'; var BN = require('bn.js'); @@ -58515,123 +54545,7 @@ Signature.prototype.toHex = function toHex() { module.exports = Signature; -},{"../../elliptic":104,"bn.js":20}],117:[function(require,module,exports){ -'use strict'; - -var hash = require('hash.js'); -var elliptic = require('../elliptic'); -var utils = elliptic.utils; -var assert = utils.assert; - -function HmacDRBG(options) { - if (!(this instanceof HmacDRBG)) - return new HmacDRBG(options); - this.hash = options.hash; - this.predResist = !!options.predResist; - - this.outLen = this.hash.outSize; - this.minEntropy = options.minEntropy || this.hash.hmacStrength; - - this.reseed = null; - this.reseedInterval = null; - this.K = null; - this.V = null; - - var entropy = utils.toArray(options.entropy, options.entropyEnc); - var nonce = utils.toArray(options.nonce, options.nonceEnc); - var pers = utils.toArray(options.pers, options.persEnc); - assert(entropy.length >= (this.minEntropy / 8), - 'Not enough entropy. Minimum is: ' + this.minEntropy + ' bits'); - this._init(entropy, nonce, pers); -} -module.exports = HmacDRBG; - -HmacDRBG.prototype._init = function init(entropy, nonce, pers) { - var seed = entropy.concat(nonce).concat(pers); - - this.K = new Array(this.outLen / 8); - this.V = new Array(this.outLen / 8); - for (var i = 0; i < this.V.length; i++) { - this.K[i] = 0x00; - this.V[i] = 0x01; - } - - this._update(seed); - this.reseed = 1; - this.reseedInterval = 0x1000000000000; // 2^48 -}; - -HmacDRBG.prototype._hmac = function hmac() { - return new hash.hmac(this.hash, this.K); -}; - -HmacDRBG.prototype._update = function update(seed) { - var kmac = this._hmac() - .update(this.V) - .update([ 0x00 ]); - if (seed) - kmac = kmac.update(seed); - this.K = kmac.digest(); - this.V = this._hmac().update(this.V).digest(); - if (!seed) - return; - - this.K = this._hmac() - .update(this.V) - .update([ 0x01 ]) - .update(seed) - .digest(); - this.V = this._hmac().update(this.V).digest(); -}; - -HmacDRBG.prototype.reseed = function reseed(entropy, entropyEnc, add, addEnc) { - // Optional entropy enc - if (typeof entropyEnc !== 'string') { - addEnc = add; - add = entropyEnc; - entropyEnc = null; - } - - entropy = utils.toBuffer(entropy, entropyEnc); - add = utils.toBuffer(add, addEnc); - - assert(entropy.length >= (this.minEntropy / 8), - 'Not enough entropy. Minimum is: ' + this.minEntropy + ' bits'); - - this._update(entropy.concat(add || [])); - this.reseed = 1; -}; - -HmacDRBG.prototype.generate = function generate(len, enc, add, addEnc) { - if (this.reseed > this.reseedInterval) - throw new Error('Reseed is required'); - - // Optional encoding - if (typeof enc !== 'string') { - addEnc = add; - add = enc; - enc = null; - } - - // Optional additional data - if (add) { - add = utils.toArray(add, addEnc); - this._update(add); - } - - var temp = []; - while (temp.length < len) { - this.V = this._hmac().update(this.V).digest(); - temp = temp.concat(this.V); - } - - var res = temp.slice(0, len); - this._update(add); - this.reseed++; - return utils.encode(res, enc); -}; - -},{"../elliptic":104,"hash.js":123}],118:[function(require,module,exports){ +},{"../../elliptic":105,"bn.js":20}],118:[function(require,module,exports){ module.exports = { doubles: { step: 4, @@ -59418,66 +55332,14 @@ module.exports = { var utils = exports; var BN = require('bn.js'); +var minAssert = require('minimalistic-assert'); +var minUtils = require('minimalistic-crypto-utils'); -utils.assert = function assert(val, msg) { - if (!val) - throw new Error(msg || 'Assertion failed'); -}; - -function toArray(msg, enc) { - if (Array.isArray(msg)) - return msg.slice(); - if (!msg) - return []; - var res = []; - if (typeof msg !== 'string') { - for (var i = 0; i < msg.length; i++) - res[i] = msg[i] | 0; - return res; - } - if (!enc) { - for (var i = 0; i < msg.length; i++) { - var c = msg.charCodeAt(i); - var hi = c >> 8; - var lo = c & 0xff; - if (hi) - res.push(hi, lo); - else - res.push(lo); - } - } else if (enc === 'hex') { - msg = msg.replace(/[^a-z0-9]+/ig, ''); - if (msg.length % 2 !== 0) - msg = '0' + msg; - for (var i = 0; i < msg.length; i += 2) - res.push(parseInt(msg[i] + msg[i + 1], 16)); - } - return res; -} -utils.toArray = toArray; - -function zero2(word) { - if (word.length === 1) - return '0' + word; - else - return word; -} -utils.zero2 = zero2; - -function toHex(msg) { - var res = ''; - for (var i = 0; i < msg.length; i++) - res += zero2(msg[i].toString(16)); - return res; -} -utils.toHex = toHex; - -utils.encode = function encode(arr, enc) { - if (enc === 'hex') - return toHex(arr); - else - return arr; -}; +utils.assert = minAssert; +utils.toArray = minUtils.toArray; +utils.zero2 = minUtils.zero2; +utils.toHex = minUtils.toHex; +utils.encode = minUtils.encode; // Represent num in a w-NAF form function getNAF(num, w) { @@ -59587,7 +55449,7 @@ function intFromLE(bytes) { utils.intFromLE = intFromLE; -},{"bn.js":20}],120:[function(require,module,exports){ +},{"bn.js":20,"minimalistic-assert":144,"minimalistic-crypto-utils":145}],120:[function(require,module,exports){ module.exports={ "_args": [ [ @@ -59600,23 +55462,23 @@ module.exports={ "spec": ">=6.0.0 <7.0.0", "type": "range" }, - "/Users/ffff/Projects/the-signal-protocol/node_modules/browserify-sign" + "/Users/ffff/Projects/signal-protocol/node_modules/browserify-sign" ] ], "_from": "elliptic@>=6.0.0 <7.0.0", - "_id": "elliptic@6.3.2", + "_id": "elliptic@6.4.0", "_inCache": true, "_location": "/elliptic", - "_nodeVersion": "6.3.0", + "_nodeVersion": "7.0.0", "_npmOperationalInternal": { - "host": "packages-16-east.internal.npmjs.com", - "tmp": "tmp/elliptic-6.3.2.tgz_1473938837205_0.3108903462998569" + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/elliptic-6.4.0.tgz_1487798866428_0.30510620190761983" }, "_npmUser": { "name": "indutny", "email": "fedor@indutny.com" }, - "_npmVersion": "3.10.3", + "_npmVersion": "3.10.8", "_phantomChildren": {}, "_requested": { "raw": "elliptic@^6.0.0", @@ -59631,11 +55493,11 @@ module.exports={ "/browserify-sign", "/create-ecdh" ], - "_resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.3.2.tgz", - "_shasum": "e4c81e0829cf0a65ab70e998b8232723b5c1bc48", + "_resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.4.0.tgz", + "_shasum": "cac9af8762c85836187003c8dfe193e5e2eae5df", "_shrinkwrap": null, "_spec": "elliptic@^6.0.0", - "_where": "/Users/ffff/Projects/the-signal-protocol/node_modules/browserify-sign", + "_where": "/Users/ffff/Projects/signal-protocol/node_modules/browserify-sign", "author": { "name": "Fedor Indutny", "email": "fedor@indutny.com" @@ -59647,7 +55509,10 @@ module.exports={ "bn.js": "^4.4.0", "brorand": "^1.0.1", "hash.js": "^1.0.0", - "inherits": "^2.0.1" + "hmac-drbg": "^1.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.0" }, "description": "EC cryptography", "devDependencies": { @@ -59655,6 +55520,7 @@ module.exports={ "coveralls": "^2.11.3", "grunt": "^0.4.5", "grunt-browserify": "^5.0.0", + "grunt-cli": "^1.2.0", "grunt-contrib-connect": "^1.0.0", "grunt-contrib-copy": "^1.0.0", "grunt-contrib-uglify": "^1.0.1", @@ -59667,13 +55533,13 @@ module.exports={ }, "directories": {}, "dist": { - "shasum": "e4c81e0829cf0a65ab70e998b8232723b5c1bc48", - "tarball": "https://registry.npmjs.org/elliptic/-/elliptic-6.3.2.tgz" + "shasum": "cac9af8762c85836187003c8dfe193e5e2eae5df", + "tarball": "https://registry.npmjs.org/elliptic/-/elliptic-6.4.0.tgz" }, "files": [ "lib" ], - "gitHead": "cbace4683a4a548dc0306ef36756151a20299cd5", + "gitHead": "6b0d2b76caae91471649c8e21f0b1d3ba0f96090", "homepage": "https://github.com/indutny/elliptic", "keywords": [ "EC", @@ -59704,7 +55570,7 @@ module.exports={ "unit": "istanbul test _mocha --reporter=spec test/index.js", "version": "grunt dist && git add dist/" }, - "version": "6.3.2" + "version": "6.4.0" } },{}],121:[function(require,module,exports){ @@ -60084,6 +55950,93 @@ function EVP_BytesToKey (password, salt, keyLen, ivLen) { }).call(this,require("buffer").Buffer) },{"buffer":50,"create-hash/md5":87}],123:[function(require,module,exports){ +(function (Buffer){ +'use strict' +var Transform = require('stream').Transform +var inherits = require('inherits') + +function HashBase (blockSize) { + Transform.call(this) + + this._block = new Buffer(blockSize) + this._blockSize = blockSize + this._blockOffset = 0 + this._length = [0, 0, 0, 0] + + this._finalized = false +} + +inherits(HashBase, Transform) + +HashBase.prototype._transform = function (chunk, encoding, callback) { + var error = null + try { + if (encoding !== 'buffer') chunk = new Buffer(chunk, encoding) + this.update(chunk) + } catch (err) { + error = err + } + + callback(error) +} + +HashBase.prototype._flush = function (callback) { + var error = null + try { + this.push(this._digest()) + } catch (err) { + error = err + } + + callback(error) +} + +HashBase.prototype.update = function (data, encoding) { + if (!Buffer.isBuffer(data) && typeof data !== 'string') throw new TypeError('Data must be a string or a buffer') + if (this._finalized) throw new Error('Digest already called') + if (!Buffer.isBuffer(data)) data = new Buffer(data, encoding || 'binary') + + // consume data + var block = this._block + var offset = 0 + while (this._blockOffset + data.length - offset >= this._blockSize) { + for (var i = this._blockOffset; i < this._blockSize;) block[i++] = data[offset++] + this._update() + this._blockOffset = 0 + } + while (offset < data.length) block[this._blockOffset++] = data[offset++] + + // update length + for (var j = 0, carry = data.length * 8; carry > 0; ++j) { + this._length[j] += carry + carry = (this._length[j] / 0x0100000000) | 0 + if (carry > 0) this._length[j] -= 0x0100000000 * carry + } + + return this +} + +HashBase.prototype._update = function (data) { + throw new Error('_update is not implemented') +} + +HashBase.prototype.digest = function (encoding) { + if (this._finalized) throw new Error('Digest already called') + this._finalized = true + + var digest = this._digest() + if (encoding !== undefined) digest = digest.toString(encoding) + return digest +} + +HashBase.prototype._digest = function () { + throw new Error('_digest is not implemented') +} + +module.exports = HashBase + +}).call(this,require("buffer").Buffer) +},{"buffer":50,"inherits":139,"stream":190}],124:[function(require,module,exports){ var hash = exports; hash.utils = require('./hash/utils'); @@ -60100,10 +56053,11 @@ hash.sha384 = hash.sha.sha384; hash.sha512 = hash.sha.sha512; hash.ripemd160 = hash.ripemd.ripemd160; -},{"./hash/common":124,"./hash/hmac":125,"./hash/ripemd":126,"./hash/sha":127,"./hash/utils":128}],124:[function(require,module,exports){ -var hash = require('../hash'); -var utils = hash.utils; -var assert = utils.assert; +},{"./hash/common":125,"./hash/hmac":126,"./hash/ripemd":127,"./hash/sha":128,"./hash/utils":135}],125:[function(require,module,exports){ +'use strict'; + +var utils = require('./utils'); +var assert = require('minimalistic-assert'); function BlockHash() { this.pending = null; @@ -60186,19 +56140,18 @@ BlockHash.prototype._pad = function pad() { res[i++] = 0; res[i++] = 0; - for (var t = 8; t < this.padLength; t++) + for (t = 8; t < this.padLength; t++) res[i++] = 0; } return res; }; -},{"../hash":123}],125:[function(require,module,exports){ -var hmac = exports; +},{"./utils":135,"minimalistic-assert":144}],126:[function(require,module,exports){ +'use strict'; -var hash = require('../hash'); -var utils = hash.utils; -var assert = utils.assert; +var utils = require('./utils'); +var assert = require('minimalistic-assert'); function Hmac(hash, key, enc) { if (!(this instanceof Hmac)) @@ -60223,12 +56176,12 @@ Hmac.prototype._init = function init(key) { for (var i = key.length; i < this.blockSize; i++) key.push(0); - for (var i = 0; i < key.length; i++) + for (i = 0; i < key.length; i++) key[i] ^= 0x36; this.inner = new this.Hash().update(key); // 0x36 ^ 0x5c = 0x6a - for (var i = 0; i < key.length; i++) + for (i = 0; i < key.length; i++) key[i] ^= 0x6a; this.outer = new this.Hash().update(key); }; @@ -60243,15 +56196,17 @@ Hmac.prototype.digest = function digest(enc) { return this.outer.digest(enc); }; -},{"../hash":123}],126:[function(require,module,exports){ -var hash = require('../hash'); -var utils = hash.utils; +},{"./utils":135,"minimalistic-assert":144}],127:[function(require,module,exports){ +'use strict'; + +var utils = require('./utils'); +var common = require('./common'); var rotl32 = utils.rotl32; var sum32 = utils.sum32; var sum32_3 = utils.sum32_3; var sum32_4 = utils.sum32_4; -var BlockHash = hash.common.BlockHash; +var BlockHash = common.BlockHash; function RIPEMD160() { if (!(this instanceof RIPEMD160)) @@ -60389,28 +56344,142 @@ var sh = [ 8, 5, 12, 9, 12, 5, 14, 6, 8, 13, 6, 5, 15, 13, 11, 11 ]; -},{"../hash":123}],127:[function(require,module,exports){ -var hash = require('../hash'); -var utils = hash.utils; -var assert = utils.assert; +},{"./common":125,"./utils":135}],128:[function(require,module,exports){ +'use strict'; + +exports.sha1 = require('./sha/1'); +exports.sha224 = require('./sha/224'); +exports.sha256 = require('./sha/256'); +exports.sha384 = require('./sha/384'); +exports.sha512 = require('./sha/512'); + +},{"./sha/1":129,"./sha/224":130,"./sha/256":131,"./sha/384":132,"./sha/512":133}],129:[function(require,module,exports){ +'use strict'; + +var utils = require('../utils'); +var common = require('../common'); +var shaCommon = require('./common'); -var rotr32 = utils.rotr32; var rotl32 = utils.rotl32; +var sum32 = utils.sum32; +var sum32_5 = utils.sum32_5; +var ft_1 = shaCommon.ft_1; +var BlockHash = common.BlockHash; + +var sha1_K = [ + 0x5A827999, 0x6ED9EBA1, + 0x8F1BBCDC, 0xCA62C1D6 +]; + +function SHA1() { + if (!(this instanceof SHA1)) + return new SHA1(); + + BlockHash.call(this); + this.h = [ + 0x67452301, 0xefcdab89, 0x98badcfe, + 0x10325476, 0xc3d2e1f0 ]; + this.W = new Array(80); +} + +utils.inherits(SHA1, BlockHash); +module.exports = SHA1; + +SHA1.blockSize = 512; +SHA1.outSize = 160; +SHA1.hmacStrength = 80; +SHA1.padLength = 64; + +SHA1.prototype._update = function _update(msg, start) { + var W = this.W; + + for (var i = 0; i < 16; i++) + W[i] = msg[start + i]; + + for(; i < W.length; i++) + W[i] = rotl32(W[i - 3] ^ W[i - 8] ^ W[i - 14] ^ W[i - 16], 1); + + var a = this.h[0]; + var b = this.h[1]; + var c = this.h[2]; + var d = this.h[3]; + var e = this.h[4]; + + for (i = 0; i < W.length; i++) { + var s = ~~(i / 20); + var t = sum32_5(rotl32(a, 5), ft_1(s, b, c, d), e, W[i], sha1_K[s]); + e = d; + d = c; + c = rotl32(b, 30); + b = a; + a = t; + } + + this.h[0] = sum32(this.h[0], a); + this.h[1] = sum32(this.h[1], b); + this.h[2] = sum32(this.h[2], c); + this.h[3] = sum32(this.h[3], d); + this.h[4] = sum32(this.h[4], e); +}; + +SHA1.prototype._digest = function digest(enc) { + if (enc === 'hex') + return utils.toHex32(this.h, 'big'); + else + return utils.split32(this.h, 'big'); +}; + +},{"../common":125,"../utils":135,"./common":134}],130:[function(require,module,exports){ +'use strict'; + +var utils = require('../utils'); +var SHA256 = require('./256'); + +function SHA224() { + if (!(this instanceof SHA224)) + return new SHA224(); + + SHA256.call(this); + this.h = [ + 0xc1059ed8, 0x367cd507, 0x3070dd17, 0xf70e5939, + 0xffc00b31, 0x68581511, 0x64f98fa7, 0xbefa4fa4 ]; +} +utils.inherits(SHA224, SHA256); +module.exports = SHA224; + +SHA224.blockSize = 512; +SHA224.outSize = 224; +SHA224.hmacStrength = 192; +SHA224.padLength = 64; + +SHA224.prototype._digest = function digest(enc) { + // Just truncate output + if (enc === 'hex') + return utils.toHex32(this.h.slice(0, 7), 'big'); + else + return utils.split32(this.h.slice(0, 7), 'big'); +}; + + +},{"../utils":135,"./256":131}],131:[function(require,module,exports){ +'use strict'; + +var utils = require('../utils'); +var common = require('../common'); +var shaCommon = require('./common'); +var assert = require('minimalistic-assert'); + var sum32 = utils.sum32; var sum32_4 = utils.sum32_4; var sum32_5 = utils.sum32_5; -var rotr64_hi = utils.rotr64_hi; -var rotr64_lo = utils.rotr64_lo; -var shr64_hi = utils.shr64_hi; -var shr64_lo = utils.shr64_lo; -var sum64 = utils.sum64; -var sum64_hi = utils.sum64_hi; -var sum64_lo = utils.sum64_lo; -var sum64_4_hi = utils.sum64_4_hi; -var sum64_4_lo = utils.sum64_4_lo; -var sum64_5_hi = utils.sum64_5_hi; -var sum64_5_lo = utils.sum64_5_lo; -var BlockHash = hash.common.BlockHash; +var ch32 = shaCommon.ch32; +var maj32 = shaCommon.maj32; +var s0_256 = shaCommon.s0_256; +var s1_256 = shaCommon.s1_256; +var g0_256 = shaCommon.g0_256; +var g1_256 = shaCommon.g1_256; + +var BlockHash = common.BlockHash; var sha256_K = [ 0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5, @@ -60431,66 +56500,20 @@ var sha256_K = [ 0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2 ]; -var sha512_K = [ - 0x428a2f98, 0xd728ae22, 0x71374491, 0x23ef65cd, - 0xb5c0fbcf, 0xec4d3b2f, 0xe9b5dba5, 0x8189dbbc, - 0x3956c25b, 0xf348b538, 0x59f111f1, 0xb605d019, - 0x923f82a4, 0xaf194f9b, 0xab1c5ed5, 0xda6d8118, - 0xd807aa98, 0xa3030242, 0x12835b01, 0x45706fbe, - 0x243185be, 0x4ee4b28c, 0x550c7dc3, 0xd5ffb4e2, - 0x72be5d74, 0xf27b896f, 0x80deb1fe, 0x3b1696b1, - 0x9bdc06a7, 0x25c71235, 0xc19bf174, 0xcf692694, - 0xe49b69c1, 0x9ef14ad2, 0xefbe4786, 0x384f25e3, - 0x0fc19dc6, 0x8b8cd5b5, 0x240ca1cc, 0x77ac9c65, - 0x2de92c6f, 0x592b0275, 0x4a7484aa, 0x6ea6e483, - 0x5cb0a9dc, 0xbd41fbd4, 0x76f988da, 0x831153b5, - 0x983e5152, 0xee66dfab, 0xa831c66d, 0x2db43210, - 0xb00327c8, 0x98fb213f, 0xbf597fc7, 0xbeef0ee4, - 0xc6e00bf3, 0x3da88fc2, 0xd5a79147, 0x930aa725, - 0x06ca6351, 0xe003826f, 0x14292967, 0x0a0e6e70, - 0x27b70a85, 0x46d22ffc, 0x2e1b2138, 0x5c26c926, - 0x4d2c6dfc, 0x5ac42aed, 0x53380d13, 0x9d95b3df, - 0x650a7354, 0x8baf63de, 0x766a0abb, 0x3c77b2a8, - 0x81c2c92e, 0x47edaee6, 0x92722c85, 0x1482353b, - 0xa2bfe8a1, 0x4cf10364, 0xa81a664b, 0xbc423001, - 0xc24b8b70, 0xd0f89791, 0xc76c51a3, 0x0654be30, - 0xd192e819, 0xd6ef5218, 0xd6990624, 0x5565a910, - 0xf40e3585, 0x5771202a, 0x106aa070, 0x32bbd1b8, - 0x19a4c116, 0xb8d2d0c8, 0x1e376c08, 0x5141ab53, - 0x2748774c, 0xdf8eeb99, 0x34b0bcb5, 0xe19b48a8, - 0x391c0cb3, 0xc5c95a63, 0x4ed8aa4a, 0xe3418acb, - 0x5b9cca4f, 0x7763e373, 0x682e6ff3, 0xd6b2b8a3, - 0x748f82ee, 0x5defb2fc, 0x78a5636f, 0x43172f60, - 0x84c87814, 0xa1f0ab72, 0x8cc70208, 0x1a6439ec, - 0x90befffa, 0x23631e28, 0xa4506ceb, 0xde82bde9, - 0xbef9a3f7, 0xb2c67915, 0xc67178f2, 0xe372532b, - 0xca273ece, 0xea26619c, 0xd186b8c7, 0x21c0c207, - 0xeada7dd6, 0xcde0eb1e, 0xf57d4f7f, 0xee6ed178, - 0x06f067aa, 0x72176fba, 0x0a637dc5, 0xa2c898a6, - 0x113f9804, 0xbef90dae, 0x1b710b35, 0x131c471b, - 0x28db77f5, 0x23047d84, 0x32caab7b, 0x40c72493, - 0x3c9ebe0a, 0x15c9bebc, 0x431d67c4, 0x9c100d4c, - 0x4cc5d4be, 0xcb3e42b6, 0x597f299c, 0xfc657e2a, - 0x5fcb6fab, 0x3ad6faec, 0x6c44198c, 0x4a475817 -]; - -var sha1_K = [ - 0x5A827999, 0x6ED9EBA1, - 0x8F1BBCDC, 0xCA62C1D6 -]; - function SHA256() { if (!(this instanceof SHA256)) return new SHA256(); BlockHash.call(this); - this.h = [ 0x6a09e667, 0xbb67ae85, 0x3c6ef372, 0xa54ff53a, - 0x510e527f, 0x9b05688c, 0x1f83d9ab, 0x5be0cd19 ]; + this.h = [ + 0x6a09e667, 0xbb67ae85, 0x3c6ef372, 0xa54ff53a, + 0x510e527f, 0x9b05688c, 0x1f83d9ab, 0x5be0cd19 + ]; this.k = sha256_K; this.W = new Array(64); } utils.inherits(SHA256, BlockHash); -exports.sha256 = SHA256; +module.exports = SHA256; SHA256.blockSize = 512; SHA256.outSize = 256; @@ -60515,7 +56538,7 @@ SHA256.prototype._update = function _update(msg, start) { var h = this.h[7]; assert(this.k.length === W.length); - for (var i = 0; i < W.length; i++) { + for (i = 0; i < W.length; i++) { var T1 = sum32_5(h, s1_256(e), ch32(e, f, g), this.k[i], W[i]); var T2 = sum32(s0_256(a), maj32(a, b, c)); h = g; @@ -60545,48 +56568,126 @@ SHA256.prototype._digest = function digest(enc) { return utils.split32(this.h, 'big'); }; -function SHA224() { - if (!(this instanceof SHA224)) - return new SHA224(); +},{"../common":125,"../utils":135,"./common":134,"minimalistic-assert":144}],132:[function(require,module,exports){ +'use strict'; - SHA256.call(this); - this.h = [ 0xc1059ed8, 0x367cd507, 0x3070dd17, 0xf70e5939, - 0xffc00b31, 0x68581511, 0x64f98fa7, 0xbefa4fa4 ]; +var utils = require('../utils'); + +var SHA512 = require('./512'); + +function SHA384() { + if (!(this instanceof SHA384)) + return new SHA384(); + + SHA512.call(this); + this.h = [ + 0xcbbb9d5d, 0xc1059ed8, + 0x629a292a, 0x367cd507, + 0x9159015a, 0x3070dd17, + 0x152fecd8, 0xf70e5939, + 0x67332667, 0xffc00b31, + 0x8eb44a87, 0x68581511, + 0xdb0c2e0d, 0x64f98fa7, + 0x47b5481d, 0xbefa4fa4 ]; } -utils.inherits(SHA224, SHA256); -exports.sha224 = SHA224; +utils.inherits(SHA384, SHA512); +module.exports = SHA384; -SHA224.blockSize = 512; -SHA224.outSize = 224; -SHA224.hmacStrength = 192; -SHA224.padLength = 64; +SHA384.blockSize = 1024; +SHA384.outSize = 384; +SHA384.hmacStrength = 192; +SHA384.padLength = 128; -SHA224.prototype._digest = function digest(enc) { - // Just truncate output +SHA384.prototype._digest = function digest(enc) { if (enc === 'hex') - return utils.toHex32(this.h.slice(0, 7), 'big'); + return utils.toHex32(this.h.slice(0, 12), 'big'); else - return utils.split32(this.h.slice(0, 7), 'big'); + return utils.split32(this.h.slice(0, 12), 'big'); }; +},{"../utils":135,"./512":133}],133:[function(require,module,exports){ +'use strict'; + +var utils = require('../utils'); +var common = require('../common'); +var assert = require('minimalistic-assert'); + +var rotr64_hi = utils.rotr64_hi; +var rotr64_lo = utils.rotr64_lo; +var shr64_hi = utils.shr64_hi; +var shr64_lo = utils.shr64_lo; +var sum64 = utils.sum64; +var sum64_hi = utils.sum64_hi; +var sum64_lo = utils.sum64_lo; +var sum64_4_hi = utils.sum64_4_hi; +var sum64_4_lo = utils.sum64_4_lo; +var sum64_5_hi = utils.sum64_5_hi; +var sum64_5_lo = utils.sum64_5_lo; + +var BlockHash = common.BlockHash; + +var sha512_K = [ + 0x428a2f98, 0xd728ae22, 0x71374491, 0x23ef65cd, + 0xb5c0fbcf, 0xec4d3b2f, 0xe9b5dba5, 0x8189dbbc, + 0x3956c25b, 0xf348b538, 0x59f111f1, 0xb605d019, + 0x923f82a4, 0xaf194f9b, 0xab1c5ed5, 0xda6d8118, + 0xd807aa98, 0xa3030242, 0x12835b01, 0x45706fbe, + 0x243185be, 0x4ee4b28c, 0x550c7dc3, 0xd5ffb4e2, + 0x72be5d74, 0xf27b896f, 0x80deb1fe, 0x3b1696b1, + 0x9bdc06a7, 0x25c71235, 0xc19bf174, 0xcf692694, + 0xe49b69c1, 0x9ef14ad2, 0xefbe4786, 0x384f25e3, + 0x0fc19dc6, 0x8b8cd5b5, 0x240ca1cc, 0x77ac9c65, + 0x2de92c6f, 0x592b0275, 0x4a7484aa, 0x6ea6e483, + 0x5cb0a9dc, 0xbd41fbd4, 0x76f988da, 0x831153b5, + 0x983e5152, 0xee66dfab, 0xa831c66d, 0x2db43210, + 0xb00327c8, 0x98fb213f, 0xbf597fc7, 0xbeef0ee4, + 0xc6e00bf3, 0x3da88fc2, 0xd5a79147, 0x930aa725, + 0x06ca6351, 0xe003826f, 0x14292967, 0x0a0e6e70, + 0x27b70a85, 0x46d22ffc, 0x2e1b2138, 0x5c26c926, + 0x4d2c6dfc, 0x5ac42aed, 0x53380d13, 0x9d95b3df, + 0x650a7354, 0x8baf63de, 0x766a0abb, 0x3c77b2a8, + 0x81c2c92e, 0x47edaee6, 0x92722c85, 0x1482353b, + 0xa2bfe8a1, 0x4cf10364, 0xa81a664b, 0xbc423001, + 0xc24b8b70, 0xd0f89791, 0xc76c51a3, 0x0654be30, + 0xd192e819, 0xd6ef5218, 0xd6990624, 0x5565a910, + 0xf40e3585, 0x5771202a, 0x106aa070, 0x32bbd1b8, + 0x19a4c116, 0xb8d2d0c8, 0x1e376c08, 0x5141ab53, + 0x2748774c, 0xdf8eeb99, 0x34b0bcb5, 0xe19b48a8, + 0x391c0cb3, 0xc5c95a63, 0x4ed8aa4a, 0xe3418acb, + 0x5b9cca4f, 0x7763e373, 0x682e6ff3, 0xd6b2b8a3, + 0x748f82ee, 0x5defb2fc, 0x78a5636f, 0x43172f60, + 0x84c87814, 0xa1f0ab72, 0x8cc70208, 0x1a6439ec, + 0x90befffa, 0x23631e28, 0xa4506ceb, 0xde82bde9, + 0xbef9a3f7, 0xb2c67915, 0xc67178f2, 0xe372532b, + 0xca273ece, 0xea26619c, 0xd186b8c7, 0x21c0c207, + 0xeada7dd6, 0xcde0eb1e, 0xf57d4f7f, 0xee6ed178, + 0x06f067aa, 0x72176fba, 0x0a637dc5, 0xa2c898a6, + 0x113f9804, 0xbef90dae, 0x1b710b35, 0x131c471b, + 0x28db77f5, 0x23047d84, 0x32caab7b, 0x40c72493, + 0x3c9ebe0a, 0x15c9bebc, 0x431d67c4, 0x9c100d4c, + 0x4cc5d4be, 0xcb3e42b6, 0x597f299c, 0xfc657e2a, + 0x5fcb6fab, 0x3ad6faec, 0x6c44198c, 0x4a475817 +]; + function SHA512() { if (!(this instanceof SHA512)) return new SHA512(); BlockHash.call(this); - this.h = [ 0x6a09e667, 0xf3bcc908, - 0xbb67ae85, 0x84caa73b, - 0x3c6ef372, 0xfe94f82b, - 0xa54ff53a, 0x5f1d36f1, - 0x510e527f, 0xade682d1, - 0x9b05688c, 0x2b3e6c1f, - 0x1f83d9ab, 0xfb41bd6b, - 0x5be0cd19, 0x137e2179 ]; + this.h = [ + 0x6a09e667, 0xf3bcc908, + 0xbb67ae85, 0x84caa73b, + 0x3c6ef372, 0xfe94f82b, + 0xa54ff53a, 0x5f1d36f1, + 0x510e527f, 0xade682d1, + 0x9b05688c, 0x2b3e6c1f, + 0x1f83d9ab, 0xfb41bd6b, + 0x5be0cd19, 0x137e2179 ]; this.k = sha512_K; this.W = new Array(160); } utils.inherits(SHA512, BlockHash); -exports.sha512 = SHA512; +module.exports = SHA512; SHA512.blockSize = 1024; SHA512.outSize = 512; @@ -60609,14 +56710,16 @@ SHA512.prototype._prepareBlock = function _prepareBlock(msg, start) { var c3_hi = W[i - 32]; // i - 16 var c3_lo = W[i - 31]; - W[i] = sum64_4_hi(c0_hi, c0_lo, - c1_hi, c1_lo, - c2_hi, c2_lo, - c3_hi, c3_lo); - W[i + 1] = sum64_4_lo(c0_hi, c0_lo, - c1_hi, c1_lo, - c2_hi, c2_lo, - c3_hi, c3_lo); + W[i] = sum64_4_hi( + c0_hi, c0_lo, + c1_hi, c1_lo, + c2_hi, c2_lo, + c3_hi, c3_lo); + W[i + 1] = sum64_4_lo( + c0_hi, c0_lo, + c1_hi, c1_lo, + c2_hi, c2_lo, + c3_hi, c3_lo); } }; @@ -60655,21 +56758,23 @@ SHA512.prototype._update = function _update(msg, start) { var c4_hi = W[i]; var c4_lo = W[i + 1]; - var T1_hi = sum64_5_hi(c0_hi, c0_lo, - c1_hi, c1_lo, - c2_hi, c2_lo, - c3_hi, c3_lo, - c4_hi, c4_lo); - var T1_lo = sum64_5_lo(c0_hi, c0_lo, - c1_hi, c1_lo, - c2_hi, c2_lo, - c3_hi, c3_lo, - c4_hi, c4_lo); - - var c0_hi = s0_512_hi(ah, al); - var c0_lo = s0_512_lo(ah, al); - var c1_hi = maj64_hi(ah, al, bh, bl, ch, cl); - var c1_lo = maj64_lo(ah, al, bh, bl, ch, cl); + var T1_hi = sum64_5_hi( + c0_hi, c0_lo, + c1_hi, c1_lo, + c2_hi, c2_lo, + c3_hi, c3_lo, + c4_hi, c4_lo); + var T1_lo = sum64_5_lo( + c0_hi, c0_lo, + c1_hi, c1_lo, + c2_hi, c2_lo, + c3_hi, c3_lo, + c4_hi, c4_lo); + + c0_hi = s0_512_hi(ah, al); + c0_lo = s0_512_lo(ah, al); + c1_hi = maj64_hi(ah, al, bh, bl, ch, cl); + c1_lo = maj64_lo(ah, al, bh, bl, ch, cl); var T2_hi = sum64_hi(c0_hi, c0_lo, c1_hi, c1_lo); var T2_lo = sum64_lo(c0_hi, c0_lo, c1_hi, c1_lo); @@ -60716,130 +56821,7 @@ SHA512.prototype._digest = function digest(enc) { return utils.split32(this.h, 'big'); }; -function SHA384() { - if (!(this instanceof SHA384)) - return new SHA384(); - - SHA512.call(this); - this.h = [ 0xcbbb9d5d, 0xc1059ed8, - 0x629a292a, 0x367cd507, - 0x9159015a, 0x3070dd17, - 0x152fecd8, 0xf70e5939, - 0x67332667, 0xffc00b31, - 0x8eb44a87, 0x68581511, - 0xdb0c2e0d, 0x64f98fa7, - 0x47b5481d, 0xbefa4fa4 ]; -} -utils.inherits(SHA384, SHA512); -exports.sha384 = SHA384; - -SHA384.blockSize = 1024; -SHA384.outSize = 384; -SHA384.hmacStrength = 192; -SHA384.padLength = 128; - -SHA384.prototype._digest = function digest(enc) { - if (enc === 'hex') - return utils.toHex32(this.h.slice(0, 12), 'big'); - else - return utils.split32(this.h.slice(0, 12), 'big'); -}; - -function SHA1() { - if (!(this instanceof SHA1)) - return new SHA1(); - - BlockHash.call(this); - this.h = [ 0x67452301, 0xefcdab89, 0x98badcfe, - 0x10325476, 0xc3d2e1f0 ]; - this.W = new Array(80); -} - -utils.inherits(SHA1, BlockHash); -exports.sha1 = SHA1; - -SHA1.blockSize = 512; -SHA1.outSize = 160; -SHA1.hmacStrength = 80; -SHA1.padLength = 64; - -SHA1.prototype._update = function _update(msg, start) { - var W = this.W; - - for (var i = 0; i < 16; i++) - W[i] = msg[start + i]; - - for(; i < W.length; i++) - W[i] = rotl32(W[i - 3] ^ W[i - 8] ^ W[i - 14] ^ W[i - 16], 1); - - var a = this.h[0]; - var b = this.h[1]; - var c = this.h[2]; - var d = this.h[3]; - var e = this.h[4]; - - for (var i = 0; i < W.length; i++) { - var s = ~~(i / 20); - var t = sum32_5(rotl32(a, 5), ft_1(s, b, c, d), e, W[i], sha1_K[s]); - e = d; - d = c; - c = rotl32(b, 30); - b = a; - a = t; - } - - this.h[0] = sum32(this.h[0], a); - this.h[1] = sum32(this.h[1], b); - this.h[2] = sum32(this.h[2], c); - this.h[3] = sum32(this.h[3], d); - this.h[4] = sum32(this.h[4], e); -}; - -SHA1.prototype._digest = function digest(enc) { - if (enc === 'hex') - return utils.toHex32(this.h, 'big'); - else - return utils.split32(this.h, 'big'); -}; - -function ch32(x, y, z) { - return (x & y) ^ ((~x) & z); -} - -function maj32(x, y, z) { - return (x & y) ^ (x & z) ^ (y & z); -} - -function p32(x, y, z) { - return x ^ y ^ z; -} - -function s0_256(x) { - return rotr32(x, 2) ^ rotr32(x, 13) ^ rotr32(x, 22); -} - -function s1_256(x) { - return rotr32(x, 6) ^ rotr32(x, 11) ^ rotr32(x, 25); -} - -function g0_256(x) { - return rotr32(x, 7) ^ rotr32(x, 18) ^ (x >>> 3); -} - -function g1_256(x) { - return rotr32(x, 17) ^ rotr32(x, 19) ^ (x >>> 10); -} - -function ft_1(s, x, y, z) { - if (s === 0) - return ch32(x, y, z); - if (s === 1 || s === 3) - return p32(x, y, z); - if (s === 2) - return maj32(x, y, z); -} - -function ch64_hi(xh, xl, yh, yl, zh, zl) { +function ch64_hi(xh, xl, yh, yl, zh) { var r = (xh & yh) ^ ((~xh) & zh); if (r < 0) r += 0x100000000; @@ -60853,7 +56835,7 @@ function ch64_lo(xh, xl, yh, yl, zh, zl) { return r; } -function maj64_hi(xh, xl, yh, yl, zh, zl) { +function maj64_hi(xh, xl, yh, yl, zh) { var r = (xh & yh) ^ (xh & zh) ^ (yh & zh); if (r < 0) r += 0x100000000; @@ -60955,10 +56937,65 @@ function g1_512_lo(xh, xl) { return r; } -},{"../hash":123}],128:[function(require,module,exports){ -var utils = exports; +},{"../common":125,"../utils":135,"minimalistic-assert":144}],134:[function(require,module,exports){ +'use strict'; + +var utils = require('../utils'); +var rotr32 = utils.rotr32; + +function ft_1(s, x, y, z) { + if (s === 0) + return ch32(x, y, z); + if (s === 1 || s === 3) + return p32(x, y, z); + if (s === 2) + return maj32(x, y, z); +} +exports.ft_1 = ft_1; + +function ch32(x, y, z) { + return (x & y) ^ ((~x) & z); +} +exports.ch32 = ch32; + +function maj32(x, y, z) { + return (x & y) ^ (x & z) ^ (y & z); +} +exports.maj32 = maj32; + +function p32(x, y, z) { + return x ^ y ^ z; +} +exports.p32 = p32; + +function s0_256(x) { + return rotr32(x, 2) ^ rotr32(x, 13) ^ rotr32(x, 22); +} +exports.s0_256 = s0_256; + +function s1_256(x) { + return rotr32(x, 6) ^ rotr32(x, 11) ^ rotr32(x, 25); +} +exports.s1_256 = s1_256; + +function g0_256(x) { + return rotr32(x, 7) ^ rotr32(x, 18) ^ (x >>> 3); +} +exports.g0_256 = g0_256; + +function g1_256(x) { + return rotr32(x, 17) ^ rotr32(x, 19) ^ (x >>> 10); +} +exports.g1_256 = g1_256; + +},{"../utils":135}],135:[function(require,module,exports){ +'use strict'; + +var assert = require('minimalistic-assert'); var inherits = require('inherits'); +exports.inherits = inherits; + function toArray(msg, enc) { if (Array.isArray(msg)) return msg.slice(); @@ -60980,16 +57017,16 @@ function toArray(msg, enc) { msg = msg.replace(/[^a-z0-9]+/ig, ''); if (msg.length % 2 !== 0) msg = '0' + msg; - for (var i = 0; i < msg.length; i += 2) + for (i = 0; i < msg.length; i += 2) res.push(parseInt(msg[i] + msg[i + 1], 16)); } } else { - for (var i = 0; i < msg.length; i++) + for (i = 0; i < msg.length; i++) res[i] = msg[i] | 0; } return res; } -utils.toArray = toArray; +exports.toArray = toArray; function toHex(msg) { var res = ''; @@ -60997,7 +57034,7 @@ function toHex(msg) { res += zero2(msg[i].toString(16)); return res; } -utils.toHex = toHex; +exports.toHex = toHex; function htonl(w) { var res = (w >>> 24) | @@ -61006,7 +57043,7 @@ function htonl(w) { ((w & 0xff) << 24); return res >>> 0; } -utils.htonl = htonl; +exports.htonl = htonl; function toHex32(msg, endian) { var res = ''; @@ -61018,7 +57055,7 @@ function toHex32(msg, endian) { } return res; } -utils.toHex32 = toHex32; +exports.toHex32 = toHex32; function zero2(word) { if (word.length === 1) @@ -61026,7 +57063,7 @@ function zero2(word) { else return word; } -utils.zero2 = zero2; +exports.zero2 = zero2; function zero8(word) { if (word.length === 7) @@ -61046,7 +57083,7 @@ function zero8(word) { else return word; } -utils.zero8 = zero8; +exports.zero8 = zero8; function join32(msg, start, end, endian) { var len = end - start; @@ -61062,7 +57099,7 @@ function join32(msg, start, end, endian) { } return res; } -utils.join32 = join32; +exports.join32 = join32; function split32(msg, endian) { var res = new Array(msg.length * 4); @@ -61082,45 +57119,37 @@ function split32(msg, endian) { } return res; } -utils.split32 = split32; +exports.split32 = split32; function rotr32(w, b) { return (w >>> b) | (w << (32 - b)); } -utils.rotr32 = rotr32; +exports.rotr32 = rotr32; function rotl32(w, b) { return (w << b) | (w >>> (32 - b)); } -utils.rotl32 = rotl32; +exports.rotl32 = rotl32; function sum32(a, b) { return (a + b) >>> 0; } -utils.sum32 = sum32; +exports.sum32 = sum32; function sum32_3(a, b, c) { return (a + b + c) >>> 0; } -utils.sum32_3 = sum32_3; +exports.sum32_3 = sum32_3; function sum32_4(a, b, c, d) { return (a + b + c + d) >>> 0; } -utils.sum32_4 = sum32_4; +exports.sum32_4 = sum32_4; function sum32_5(a, b, c, d, e) { return (a + b + c + d + e) >>> 0; } -utils.sum32_5 = sum32_5; - -function assert(cond, msg) { - if (!cond) - throw new Error(msg || 'Assertion failed'); -} -utils.assert = assert; - -utils.inherits = inherits; +exports.sum32_5 = sum32_5; function sum64(buf, pos, ah, al) { var bh = buf[pos]; @@ -61137,13 +57166,13 @@ function sum64_hi(ah, al, bh, bl) { var lo = (al + bl) >>> 0; var hi = (lo < al ? 1 : 0) + ah + bh; return hi >>> 0; -}; +} exports.sum64_hi = sum64_hi; function sum64_lo(ah, al, bh, bl) { var lo = al + bl; return lo >>> 0; -}; +} exports.sum64_lo = sum64_lo; function sum64_4_hi(ah, al, bh, bl, ch, cl, dh, dl) { @@ -61158,13 +57187,13 @@ function sum64_4_hi(ah, al, bh, bl, ch, cl, dh, dl) { var hi = ah + bh + ch + dh + carry; return hi >>> 0; -}; +} exports.sum64_4_hi = sum64_4_hi; function sum64_4_lo(ah, al, bh, bl, ch, cl, dh, dl) { var lo = al + bl + cl + dl; return lo >>> 0; -}; +} exports.sum64_4_lo = sum64_4_lo; function sum64_5_hi(ah, al, bh, bl, ch, cl, dh, dl, eh, el) { @@ -61181,40 +57210,155 @@ function sum64_5_hi(ah, al, bh, bl, ch, cl, dh, dl, eh, el) { var hi = ah + bh + ch + dh + eh + carry; return hi >>> 0; -}; +} exports.sum64_5_hi = sum64_5_hi; function sum64_5_lo(ah, al, bh, bl, ch, cl, dh, dl, eh, el) { var lo = al + bl + cl + dl + el; return lo >>> 0; -}; +} exports.sum64_5_lo = sum64_5_lo; function rotr64_hi(ah, al, num) { var r = (al << (32 - num)) | (ah >>> num); return r >>> 0; -}; +} exports.rotr64_hi = rotr64_hi; function rotr64_lo(ah, al, num) { var r = (ah << (32 - num)) | (al >>> num); return r >>> 0; -}; +} exports.rotr64_lo = rotr64_lo; function shr64_hi(ah, al, num) { return ah >>> num; -}; +} exports.shr64_hi = shr64_hi; function shr64_lo(ah, al, num) { var r = (ah << (32 - num)) | (al >>> num); return r >>> 0; -}; +} exports.shr64_lo = shr64_lo; -},{"inherits":131}],129:[function(require,module,exports){ +},{"inherits":139,"minimalistic-assert":144}],136:[function(require,module,exports){ +'use strict'; + +var hash = require('hash.js'); +var utils = require('minimalistic-crypto-utils'); +var assert = require('minimalistic-assert'); + +function HmacDRBG(options) { + if (!(this instanceof HmacDRBG)) + return new HmacDRBG(options); + this.hash = options.hash; + this.predResist = !!options.predResist; + + this.outLen = this.hash.outSize; + this.minEntropy = options.minEntropy || this.hash.hmacStrength; + + this._reseed = null; + this.reseedInterval = null; + this.K = null; + this.V = null; + + var entropy = utils.toArray(options.entropy, options.entropyEnc || 'hex'); + var nonce = utils.toArray(options.nonce, options.nonceEnc || 'hex'); + var pers = utils.toArray(options.pers, options.persEnc || 'hex'); + assert(entropy.length >= (this.minEntropy / 8), + 'Not enough entropy. Minimum is: ' + this.minEntropy + ' bits'); + this._init(entropy, nonce, pers); +} +module.exports = HmacDRBG; + +HmacDRBG.prototype._init = function init(entropy, nonce, pers) { + var seed = entropy.concat(nonce).concat(pers); + + this.K = new Array(this.outLen / 8); + this.V = new Array(this.outLen / 8); + for (var i = 0; i < this.V.length; i++) { + this.K[i] = 0x00; + this.V[i] = 0x01; + } + + this._update(seed); + this._reseed = 1; + this.reseedInterval = 0x1000000000000; // 2^48 +}; + +HmacDRBG.prototype._hmac = function hmac() { + return new hash.hmac(this.hash, this.K); +}; + +HmacDRBG.prototype._update = function update(seed) { + var kmac = this._hmac() + .update(this.V) + .update([ 0x00 ]); + if (seed) + kmac = kmac.update(seed); + this.K = kmac.digest(); + this.V = this._hmac().update(this.V).digest(); + if (!seed) + return; + + this.K = this._hmac() + .update(this.V) + .update([ 0x01 ]) + .update(seed) + .digest(); + this.V = this._hmac().update(this.V).digest(); +}; + +HmacDRBG.prototype.reseed = function reseed(entropy, entropyEnc, add, addEnc) { + // Optional entropy enc + if (typeof entropyEnc !== 'string') { + addEnc = add; + add = entropyEnc; + entropyEnc = null; + } + + entropy = utils.toArray(entropy, entropyEnc); + add = utils.toArray(add, addEnc); + + assert(entropy.length >= (this.minEntropy / 8), + 'Not enough entropy. Minimum is: ' + this.minEntropy + ' bits'); + + this._update(entropy.concat(add || [])); + this._reseed = 1; +}; + +HmacDRBG.prototype.generate = function generate(len, enc, add, addEnc) { + if (this._reseed > this.reseedInterval) + throw new Error('Reseed is required'); + + // Optional encoding + if (typeof enc !== 'string') { + addEnc = add; + add = enc; + enc = null; + } + + // Optional additional data + if (add) { + add = utils.toArray(add, addEnc || 'hex'); + this._update(add); + } + + var temp = []; + while (temp.length < len) { + this.V = this._hmac().update(this.V).digest(); + temp = temp.concat(this.V); + } + + var res = temp.slice(0, len); + this._update(add); + this._reseed++; + return utils.encode(res, enc); +}; + +},{"hash.js":124,"minimalistic-assert":144,"minimalistic-crypto-utils":145}],137:[function(require,module,exports){ exports.read = function (buffer, offset, isLE, mLen, nBytes) { var e, m var eLen = nBytes * 8 - mLen - 1 @@ -61300,7 +57444,7 @@ exports.write = function (buffer, value, offset, isLE, mLen, nBytes) { buffer[offset + i - d] |= s * 128 } -},{}],130:[function(require,module,exports){ +},{}],138:[function(require,module,exports){ var indexOf = [].indexOf; @@ -61311,7 +57455,7 @@ module.exports = function(arr, obj){ } return -1; }; -},{}],131:[function(require,module,exports){ +},{}],139:[function(require,module,exports){ if (typeof Object.create === 'function') { // implementation from standard node.js 'util' module module.exports = function inherits(ctor, superCtor) { @@ -61336,7 +57480,7 @@ if (typeof Object.create === 'function') { } } -},{}],132:[function(require,module,exports){ +},{}],140:[function(require,module,exports){ /*! * Determine if an object is a Buffer * @@ -61359,14 +57503,14 @@ function isSlowBuffer (obj) { return typeof obj.readFloatLE === 'function' && typeof obj.slice === 'function' && isBuffer(obj.slice(0, 0)) } -},{}],133:[function(require,module,exports){ +},{}],141:[function(require,module,exports){ var toString = {}.toString; module.exports = Array.isArray || function (arr) { return toString.call(arr) == '[object Array]'; }; -},{}],134:[function(require,module,exports){ +},{}],142:[function(require,module,exports){ /* Copyright 2013 Daniel Wirtz Copyright 2009 The Closure Library Authors. All Rights Reserved. @@ -62577,7 +58721,7 @@ module.exports = Array.isArray || function (arr) { return Long; }); -},{}],135:[function(require,module,exports){ +},{}],143:[function(require,module,exports){ var bn = require('bn.js'); var brorand = require('brorand'); @@ -62692,7 +58836,7 @@ MillerRabin.prototype.getDivisor = function getDivisor(n, k) { return false; }; -},{"bn.js":20,"brorand":21}],136:[function(require,module,exports){ +},{"bn.js":20,"brorand":21}],144:[function(require,module,exports){ module.exports = assert; function assert(val, msg) { @@ -62705,7 +58849,67 @@ assert.equal = function assertEqual(l, r, msg) { throw new Error(msg || ('Assertion failed: ' + l + ' != ' + r)); }; -},{}],137:[function(require,module,exports){ +},{}],145:[function(require,module,exports){ +'use strict'; + +var utils = exports; + +function toArray(msg, enc) { + if (Array.isArray(msg)) + return msg.slice(); + if (!msg) + return []; + var res = []; + if (typeof msg !== 'string') { + for (var i = 0; i < msg.length; i++) + res[i] = msg[i] | 0; + return res; + } + if (enc === 'hex') { + msg = msg.replace(/[^a-z0-9]+/ig, ''); + if (msg.length % 2 !== 0) + msg = '0' + msg; + for (var i = 0; i < msg.length; i += 2) + res.push(parseInt(msg[i] + msg[i + 1], 16)); + } else { + for (var i = 0; i < msg.length; i++) { + var c = msg.charCodeAt(i); + var hi = c >> 8; + var lo = c & 0xff; + if (hi) + res.push(hi, lo); + else + res.push(lo); + } + } + return res; +} +utils.toArray = toArray; + +function zero2(word) { + if (word.length === 1) + return '0' + word; + else + return word; +} +utils.zero2 = zero2; + +function toHex(msg) { + var res = ''; + for (var i = 0; i < msg.length; i++) + res += zero2(msg[i].toString(16)); + return res; +} +utils.toHex = toHex; + +utils.encode = function encode(arr, enc) { + if (enc === 'hex') + return toHex(arr); + else + return arr; +}; + +},{}],146:[function(require,module,exports){ module.exports={"2.16.840.1.101.3.4.1.1": "aes-128-ecb", "2.16.840.1.101.3.4.1.2": "aes-128-cbc", "2.16.840.1.101.3.4.1.3": "aes-128-ofb", @@ -62719,12 +58923,15 @@ module.exports={"2.16.840.1.101.3.4.1.1": "aes-128-ecb", "2.16.840.1.101.3.4.1.43": "aes-256-ofb", "2.16.840.1.101.3.4.1.44": "aes-256-cfb" } -},{}],138:[function(require,module,exports){ +},{}],147:[function(require,module,exports){ // from https://github.com/indutny/self-signed/blob/gh-pages/lib/asn1.js // Fedor, you are amazing. +'use strict' var asn1 = require('asn1.js') +exports.certificate = require('./certificate') + var RSAPrivateKey = asn1.define('RSAPrivateKey', function () { this.seq().obj( this.key('version').int(), @@ -62816,6 +59023,7 @@ exports.DSAPrivateKey = DSAPrivateKey exports.DSAparam = asn1.define('DSAparam', function () { this.int() }) + var ECPrivateKey = asn1.define('ECPrivateKey', function () { this.seq().obj( this.key('version').int(), @@ -62825,6 +59033,7 @@ var ECPrivateKey = asn1.define('ECPrivateKey', function () { ) }) exports.ECPrivateKey = ECPrivateKey + var ECParameters = asn1.define('ECParameters', function () { this.choice({ namedCurve: this.objid() @@ -62838,12 +59047,102 @@ exports.signature = asn1.define('signature', function () { ) }) -},{"asn1.js":4}],139:[function(require,module,exports){ +},{"./certificate":148,"asn1.js":4}],148:[function(require,module,exports){ +// from https://github.com/Rantanen/node-dtls/blob/25a7dc861bda38cfeac93a723500eea4f0ac2e86/Certificate.js +// thanks to @Rantanen + +'use strict' + +var asn = require('asn1.js') + +var Time = asn.define('Time', function () { + this.choice({ + utcTime: this.utctime(), + generalTime: this.gentime() + }) +}) + +var AttributeTypeValue = asn.define('AttributeTypeValue', function () { + this.seq().obj( + this.key('type').objid(), + this.key('value').any() + ) +}) + +var AlgorithmIdentifier = asn.define('AlgorithmIdentifier', function () { + this.seq().obj( + this.key('algorithm').objid(), + this.key('parameters').optional() + ) +}) + +var SubjectPublicKeyInfo = asn.define('SubjectPublicKeyInfo', function () { + this.seq().obj( + this.key('algorithm').use(AlgorithmIdentifier), + this.key('subjectPublicKey').bitstr() + ) +}) + +var RelativeDistinguishedName = asn.define('RelativeDistinguishedName', function () { + this.setof(AttributeTypeValue) +}) + +var RDNSequence = asn.define('RDNSequence', function () { + this.seqof(RelativeDistinguishedName) +}) + +var Name = asn.define('Name', function () { + this.choice({ + rdnSequence: this.use(RDNSequence) + }) +}) + +var Validity = asn.define('Validity', function () { + this.seq().obj( + this.key('notBefore').use(Time), + this.key('notAfter').use(Time) + ) +}) + +var Extension = asn.define('Extension', function () { + this.seq().obj( + this.key('extnID').objid(), + this.key('critical').bool().def(false), + this.key('extnValue').octstr() + ) +}) + +var TBSCertificate = asn.define('TBSCertificate', function () { + this.seq().obj( + this.key('version').explicit(0).int(), + this.key('serialNumber').int(), + this.key('signature').use(AlgorithmIdentifier), + this.key('issuer').use(Name), + this.key('validity').use(Validity), + this.key('subject').use(Name), + this.key('subjectPublicKeyInfo').use(SubjectPublicKeyInfo), + this.key('issuerUniqueID').implicit(1).bitstr().optional(), + this.key('subjectUniqueID').implicit(2).bitstr().optional(), + this.key('extensions').explicit(3).seqof(Extension).optional() + ) +}) + +var X509Certificate = asn.define('X509Certificate', function () { + this.seq().obj( + this.key('tbsCertificate').use(TBSCertificate), + this.key('signatureAlgorithm').use(AlgorithmIdentifier), + this.key('signatureValue').bitstr() + ) +}) + +module.exports = X509Certificate + +},{"asn1.js":4}],149:[function(require,module,exports){ (function (Buffer){ // adapted from https://github.com/apatil/pemstrip -var findProc = /Proc-Type: 4,ENCRYPTED\r?\nDEK-Info: AES-((?:128)|(?:192)|(?:256))-CBC,([0-9A-H]+)\r?\n\r?\n([0-9A-z\n\r\+\/\=]+)\r?\n/m -var startRegex = /^-----BEGIN (.*) KEY-----\r?\n/m -var fullRegex = /^-----BEGIN (.*) KEY-----\r?\n([0-9A-z\n\r\+\/\=]+)\r?\n-----END \1 KEY-----$/m +var findProc = /Proc-Type: 4,ENCRYPTED\n\r?DEK-Info: AES-((?:128)|(?:192)|(?:256))-CBC,([0-9A-H]+)\n\r?\n\r?([0-9A-z\n\r\+\/\=]+)\n\r?/m +var startRegex = /^-----BEGIN ((?:.* KEY)|CERTIFICATE)-----\n/m +var fullRegex = /^-----BEGIN ((?:.* KEY)|CERTIFICATE)-----\n\r?([0-9A-z\n\r\+\/\=]+)\n\r?-----END \1-----$/m var evp = require('evp_bytestokey') var ciphers = require('browserify-aes') module.exports = function (okey, password) { @@ -62864,7 +59163,7 @@ module.exports = function (okey, password) { out.push(cipher.final()) decrypted = Buffer.concat(out) } - var tag = key.match(startRegex)[1] + ' KEY' + var tag = key.match(startRegex)[1] return { tag: tag, data: decrypted @@ -62872,7 +59171,7 @@ module.exports = function (okey, password) { } }).call(this,require("buffer").Buffer) -},{"browserify-aes":25,"buffer":50,"evp_bytestokey":122}],140:[function(require,module,exports){ +},{"browserify-aes":25,"buffer":50,"evp_bytestokey":122}],150:[function(require,module,exports){ (function (Buffer){ var asn1 = require('./asn1') var aesid = require('./aesid.json') @@ -62897,8 +59196,13 @@ function parseKeys (buffer) { var data = stripped.data var subtype, ndata switch (type) { + case 'CERTIFICATE': + ndata = asn1.certificate.decode(data, 'der').tbsCertificate.subjectPublicKeyInfo + // falls through case 'PUBLIC KEY': - ndata = asn1.PublicKey.decode(data, 'der') + if (!ndata) { + ndata = asn1.PublicKey.decode(data, 'der') + } subtype = ndata.algorithm.algorithm.join('.') switch (subtype) { case '1.2.840.113549.1.1.1': @@ -62977,7 +59281,7 @@ function decrypt (data, password) { } }).call(this,require("buffer").Buffer) -},{"./aesid.json":137,"./asn1":138,"./fixProc":139,"browserify-aes":25,"buffer":50,"pbkdf2":142}],141:[function(require,module,exports){ +},{"./aesid.json":146,"./asn1":147,"./fixProc":149,"browserify-aes":25,"buffer":50,"pbkdf2":152}],151:[function(require,module,exports){ (function (process){ // Copyright Joyent, Inc. and other Node contributors. // @@ -63205,26 +59509,118 @@ var substr = 'ab'.substr(-1) === 'b' ; }).call(this,require('_process')) -},{"_process":145}],142:[function(require,module,exports){ -(function (process,Buffer){ -var createHmac = require('create-hmac') +},{"_process":158}],152:[function(require,module,exports){ + +exports.pbkdf2 = require('./lib/async') + +exports.pbkdf2Sync = require('./lib/sync') + +},{"./lib/async":153,"./lib/sync":156}],153:[function(require,module,exports){ +(function (process,global){ var checkParameters = require('./precondition') +var defaultEncoding = require('./default-encoding') +var sync = require('./sync') +var Buffer = require('safe-buffer').Buffer + +var ZERO_BUF +var subtle = global.crypto && global.crypto.subtle +var toBrowser = { + 'sha': 'SHA-1', + 'sha-1': 'SHA-1', + 'sha1': 'SHA-1', + 'sha256': 'SHA-256', + 'sha-256': 'SHA-256', + 'sha384': 'SHA-384', + 'sha-384': 'SHA-384', + 'sha-512': 'SHA-512', + 'sha512': 'SHA-512' +} +var checks = [] +function checkNative (algo) { + if (global.process && !global.process.browser) { + return Promise.resolve(false) + } + if (!subtle || !subtle.importKey || !subtle.deriveBits) { + return Promise.resolve(false) + } + if (checks[algo] !== undefined) { + return checks[algo] + } + ZERO_BUF = ZERO_BUF || Buffer.alloc(8) + var prom = browserPbkdf2(ZERO_BUF, ZERO_BUF, 10, 128, algo) + .then(function () { + return true + }).catch(function () { + return false + }) + checks[algo] = prom + return prom +} +function browserPbkdf2 (password, salt, iterations, length, algo) { + return subtle.importKey( + 'raw', password, {name: 'PBKDF2'}, false, ['deriveBits'] + ).then(function (key) { + return subtle.deriveBits({ + name: 'PBKDF2', + salt: salt, + iterations: iterations, + hash: { + name: algo + } + }, key, length << 3) + }).then(function (res) { + return Buffer.from(res) + }) +} +function resolvePromise (promise, callback) { + promise.then(function (out) { + process.nextTick(function () { + callback(null, out) + }) + }, function (e) { + process.nextTick(function () { + callback(e) + }) + }) +} +module.exports = function (password, salt, iterations, keylen, digest, callback) { + if (!Buffer.isBuffer(password)) password = Buffer.from(password, defaultEncoding) + if (!Buffer.isBuffer(salt)) salt = Buffer.from(salt, defaultEncoding) -exports.pbkdf2 = function (password, salt, iterations, keylen, digest, callback) { + checkParameters(iterations, keylen) if (typeof digest === 'function') { callback = digest digest = undefined } - - checkParameters(iterations, keylen) if (typeof callback !== 'function') throw new Error('No callback provided to pbkdf2') - setTimeout(function () { - callback(null, exports.pbkdf2Sync(password, salt, iterations, keylen, digest)) - }) + digest = digest || 'sha1' + var algo = toBrowser[digest.toLowerCase()] + if (!algo || typeof global.Promise !== 'function') { + return process.nextTick(function () { + var out + try { + out = sync(password, salt, iterations, keylen, digest) + } catch (e) { + return callback(e) + } + callback(null, out) + }) + } + resolvePromise(checkNative(algo).then(function (resp) { + if (resp) { + return browserPbkdf2(password, salt, iterations, keylen, algo) + } else { + return sync(password, salt, iterations, keylen, digest) + } + }), callback) } +}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) +},{"./default-encoding":154,"./precondition":155,"./sync":156,"_process":158,"safe-buffer":181}],154:[function(require,module,exports){ +(function (process){ var defaultEncoding +/* istanbul ignore next */ if (process.browser) { defaultEncoding = 'utf-8' } else { @@ -63232,72 +59628,133 @@ if (process.browser) { defaultEncoding = pVersionMajor >= 6 ? 'utf-8' : 'binary' } +module.exports = defaultEncoding + +}).call(this,require('_process')) +},{"_process":158}],155:[function(require,module,exports){ +var MAX_ALLOC = Math.pow(2, 30) - 1 // default in iojs +module.exports = function (iterations, keylen) { + if (typeof iterations !== 'number') { + throw new TypeError('Iterations not a number') + } + + if (iterations < 0) { + throw new TypeError('Bad iterations') + } + + if (typeof keylen !== 'number') { + throw new TypeError('Key length not a number') + } + + if (keylen < 0 || keylen > MAX_ALLOC || keylen !== keylen) { /* eslint no-self-compare: 0 */ + throw new TypeError('Bad key length') + } +} + +},{}],156:[function(require,module,exports){ +var md5 = require('create-hash/md5') +var rmd160 = require('ripemd160') +var sha = require('sha.js') + +var checkParameters = require('./precondition') +var defaultEncoding = require('./default-encoding') +var Buffer = require('safe-buffer').Buffer +var ZEROS = Buffer.alloc(128) +var sizes = { + md5: 16, + sha1: 20, + sha224: 28, + sha256: 32, + sha384: 48, + sha512: 64, + rmd160: 20, + ripemd160: 20 +} + +function Hmac (alg, key, saltLen) { + var hash = getDigest(alg) + var blocksize = (alg === 'sha512' || alg === 'sha384') ? 128 : 64 + + if (key.length > blocksize) { + key = hash(key) + } else if (key.length < blocksize) { + key = Buffer.concat([key, ZEROS], blocksize) + } + + var ipad = Buffer.allocUnsafe(blocksize + sizes[alg]) + var opad = Buffer.allocUnsafe(blocksize + sizes[alg]) + for (var i = 0; i < blocksize; i++) { + ipad[i] = key[i] ^ 0x36 + opad[i] = key[i] ^ 0x5C + } + + var ipad1 = Buffer.allocUnsafe(blocksize + saltLen + 4) + ipad.copy(ipad1, 0, 0, blocksize) + this.ipad1 = ipad1 + this.ipad2 = ipad + this.opad = opad + this.alg = alg + this.blocksize = blocksize + this.hash = hash + this.size = sizes[alg] +} + +Hmac.prototype.run = function (data, ipad) { + data.copy(ipad, this.blocksize) + var h = this.hash(ipad) + h.copy(this.opad, this.blocksize) + return this.hash(this.opad) +} + +function getDigest (alg) { + function shaFunc (data) { + return sha(alg).update(data).digest() + } + + if (alg === 'rmd160' || alg === 'ripemd160') return rmd160 + if (alg === 'md5') return md5 + return shaFunc +} -exports.pbkdf2Sync = function (password, salt, iterations, keylen, digest) { - if (!Buffer.isBuffer(password)) password = new Buffer(password, defaultEncoding) - if (!Buffer.isBuffer(salt)) salt = new Buffer(salt, defaultEncoding) +function pbkdf2 (password, salt, iterations, keylen, digest) { + if (!Buffer.isBuffer(password)) password = Buffer.from(password, defaultEncoding) + if (!Buffer.isBuffer(salt)) salt = Buffer.from(salt, defaultEncoding) checkParameters(iterations, keylen) digest = digest || 'sha1' - var hLen - var l = 1 - var DK = new Buffer(keylen) - var block1 = new Buffer(salt.length + 4) + var hmac = new Hmac(digest, password, salt.length) + + var DK = Buffer.allocUnsafe(keylen) + var block1 = Buffer.allocUnsafe(salt.length + 4) salt.copy(block1, 0, 0, salt.length) - var r - var T + var destPos = 0 + var hLen = sizes[digest] + var l = Math.ceil(keylen / hLen) for (var i = 1; i <= l; i++) { block1.writeUInt32BE(i, salt.length) - var U = createHmac(digest, password).update(block1).digest() - - if (!hLen) { - hLen = U.length - T = new Buffer(hLen) - l = Math.ceil(keylen / hLen) - r = keylen - (l - 1) * hLen - } - U.copy(T, 0, 0, hLen) + var T = hmac.run(block1, hmac.ipad1) + var U = T for (var j = 1; j < iterations; j++) { - U = createHmac(digest, password).update(U).digest() + U = hmac.run(U, hmac.ipad2) for (var k = 0; k < hLen; k++) T[k] ^= U[k] } - var destPos = (i - 1) * hLen - var len = (i === l ? r : hLen) - T.copy(DK, destPos, 0, len) + T.copy(DK, destPos) + destPos += hLen } return DK } -}).call(this,require('_process'),require("buffer").Buffer) -},{"./precondition":143,"_process":145,"buffer":50,"create-hmac":88}],143:[function(require,module,exports){ -var MAX_ALLOC = Math.pow(2, 30) - 1 // default in iojs -module.exports = function (iterations, keylen) { - if (typeof iterations !== 'number') { - throw new TypeError('Iterations not a number') - } +module.exports = pbkdf2 - if (iterations < 0) { - throw new TypeError('Bad iterations') - } - - if (typeof keylen !== 'number') { - throw new TypeError('Key length not a number') - } - - if (keylen < 0 || keylen > MAX_ALLOC || keylen !== keylen) { /* eslint no-self-compare: 0 */ - throw new TypeError('Bad key length') - } -} - -},{}],144:[function(require,module,exports){ +},{"./default-encoding":154,"./precondition":155,"create-hash/md5":87,"ripemd160":180,"safe-buffer":181,"sha.js":183}],157:[function(require,module,exports){ (function (process){ 'use strict'; @@ -63344,7 +59801,7 @@ function nextTick(fn, arg1, arg2, arg3) { } }).call(this,require('_process')) -},{"_process":145}],145:[function(require,module,exports){ +},{"_process":158}],158:[function(require,module,exports){ // shim for using process in browser var process = module.exports = {}; @@ -63515,6 +59972,10 @@ process.off = noop; process.removeListener = noop; process.removeAllListeners = noop; process.emit = noop; +process.prependListener = noop; +process.prependOnceListener = noop; + +process.listeners = function (name) { return [] } process.binding = function (name) { throw new Error('process.binding is not supported'); @@ -63526,7 +59987,7 @@ process.chdir = function (dir) { }; process.umask = function() { return 0; }; -},{}],146:[function(require,module,exports){ +},{}],159:[function(require,module,exports){ exports.publicEncrypt = require('./publicEncrypt'); exports.privateDecrypt = require('./privateDecrypt'); @@ -63537,7 +59998,7 @@ exports.privateEncrypt = function privateEncrypt(key, buf) { exports.publicDecrypt = function publicDecrypt(key, buf) { return exports.privateDecrypt(key, buf, true); }; -},{"./privateDecrypt":148,"./publicEncrypt":149}],147:[function(require,module,exports){ +},{"./privateDecrypt":161,"./publicEncrypt":162}],160:[function(require,module,exports){ (function (Buffer){ var createHash = require('create-hash'); module.exports = function (seed, len) { @@ -63556,7 +60017,7 @@ function i2ops(c) { return out; } }).call(this,require("buffer").Buffer) -},{"buffer":50,"create-hash":85}],148:[function(require,module,exports){ +},{"buffer":50,"create-hash":85}],161:[function(require,module,exports){ (function (Buffer){ var parseKeys = require('parse-asn1'); var mgf = require('./mgf'); @@ -63667,7 +60128,7 @@ function compare(a, b){ return dif; } }).call(this,require("buffer").Buffer) -},{"./mgf":147,"./withPublic":150,"./xor":151,"bn.js":20,"browserify-rsa":41,"buffer":50,"create-hash":85,"parse-asn1":140}],149:[function(require,module,exports){ +},{"./mgf":160,"./withPublic":163,"./xor":164,"bn.js":20,"browserify-rsa":41,"buffer":50,"create-hash":85,"parse-asn1":150}],162:[function(require,module,exports){ (function (Buffer){ var parseKeys = require('parse-asn1'); var randomBytes = require('randombytes'); @@ -63765,7 +60226,7 @@ function nonZero(len, crypto) { return out; } }).call(this,require("buffer").Buffer) -},{"./mgf":147,"./withPublic":150,"./xor":151,"bn.js":20,"browserify-rsa":41,"buffer":50,"create-hash":85,"parse-asn1":140,"randombytes":152}],150:[function(require,module,exports){ +},{"./mgf":160,"./withPublic":163,"./xor":164,"bn.js":20,"browserify-rsa":41,"buffer":50,"create-hash":85,"parse-asn1":150,"randombytes":165}],163:[function(require,module,exports){ (function (Buffer){ var bn = require('bn.js'); function withPublic(paddedMsg, key) { @@ -63778,7 +60239,7 @@ function withPublic(paddedMsg, key) { module.exports = withPublic; }).call(this,require("buffer").Buffer) -},{"bn.js":20,"buffer":50}],151:[function(require,module,exports){ +},{"bn.js":20,"buffer":50}],164:[function(require,module,exports){ module.exports = function xor(a, b) { var len = a.length; var i = -1; @@ -63787,14 +60248,15 @@ module.exports = function xor(a, b) { } return a }; -},{}],152:[function(require,module,exports){ -(function (process,global,Buffer){ +},{}],165:[function(require,module,exports){ +(function (process,global){ 'use strict' function oldBrowser () { throw new Error('secure random number generation not supported by this browser\nuse chrome, FireFox or Internet Explorer 11') } +var Buffer = require('safe-buffer').Buffer var crypto = global.crypto || global.msCrypto if (crypto && crypto.getRandomValues) { @@ -63814,8 +60276,9 @@ function randomBytes (size, cb) { if (size > 0) { // getRandomValues fails on IE if size == 0 crypto.getRandomValues(rawBytes) } - // phantomjs doesn't like a buffer being passed here - var bytes = new Buffer(rawBytes.buffer) + + // XXX: phantomjs doesn't like a buffer being passed here + var bytes = Buffer.from(rawBytes.buffer) if (typeof cb === 'function') { return process.nextTick(function () { @@ -63826,11 +60289,32 @@ function randomBytes (size, cb) { return bytes } -}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer) -},{"_process":145,"buffer":50}],153:[function(require,module,exports){ -module.exports = require("./lib/_stream_duplex.js") +}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) +},{"_process":158,"safe-buffer":181}],166:[function(require,module,exports){ +module.exports = require('./lib/_stream_duplex.js'); + +},{"./lib/_stream_duplex.js":167}],167:[function(require,module,exports){ +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. -},{"./lib/_stream_duplex.js":154}],154:[function(require,module,exports){ // a duplex stream is just a stream that is both readable and writable. // Since JS doesn't have multiple prototypal inheritance, this class // prototypally inherits from Readable, and then parasitically from @@ -63840,6 +60324,10 @@ module.exports = require("./lib/_stream_duplex.js") /**/ +var processNextTick = require('process-nextick-args'); +/**/ + +/**/ var objectKeys = Object.keys || function (obj) { var keys = []; for (var key in obj) { @@ -63850,10 +60338,6 @@ var objectKeys = Object.keys || function (obj) { module.exports = Duplex; -/**/ -var processNextTick = require('process-nextick-args'); -/**/ - /**/ var util = require('core-util-is'); util.inherits = require('inherits'); @@ -63901,12 +60385,61 @@ function onEndNT(self) { self.end(); } +Object.defineProperty(Duplex.prototype, 'destroyed', { + get: function () { + if (this._readableState === undefined || this._writableState === undefined) { + return false; + } + return this._readableState.destroyed && this._writableState.destroyed; + }, + set: function (value) { + // we ignore the value if the stream + // has not been initialized yet + if (this._readableState === undefined || this._writableState === undefined) { + return; + } + + // backward compatibility, the user is explicitly + // managing destroyed + this._readableState.destroyed = value; + this._writableState.destroyed = value; + } +}); + +Duplex.prototype._destroy = function (err, cb) { + this.push(null); + this.end(); + + processNextTick(cb, err); +}; + function forEach(xs, f) { for (var i = 0, l = xs.length; i < l; i++) { f(xs[i], i); } } -},{"./_stream_readable":156,"./_stream_writable":158,"core-util-is":83,"inherits":131,"process-nextick-args":144}],155:[function(require,module,exports){ +},{"./_stream_readable":169,"./_stream_writable":171,"core-util-is":83,"inherits":139,"process-nextick-args":157}],168:[function(require,module,exports){ +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. + // a passthrough stream. // basically just the most minimal sort of Transform stream. // Every written chunk gets output as-is. @@ -63933,16 +60466,38 @@ function PassThrough(options) { PassThrough.prototype._transform = function (chunk, encoding, cb) { cb(null, chunk); }; -},{"./_stream_transform":157,"core-util-is":83,"inherits":131}],156:[function(require,module,exports){ -(function (process){ -'use strict'; +},{"./_stream_transform":170,"core-util-is":83,"inherits":139}],169:[function(require,module,exports){ +(function (process,global){ +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. -module.exports = Readable; +'use strict'; /**/ + var processNextTick = require('process-nextick-args'); /**/ +module.exports = Readable; + /**/ var isArray = require('isarray'); /**/ @@ -63962,19 +60517,20 @@ var EElistenerCount = function (emitter, type) { /**/ /**/ -var Stream; -(function () { - try { - Stream = require('st' + 'ream'); - } catch (_) {} finally { - if (!Stream) Stream = require('events').EventEmitter; - } -})(); +var Stream = require('./internal/streams/stream'); /**/ -var Buffer = require('buffer').Buffer; +// TODO(bmeurer): Change this back to const once hole checks are +// properly optimized away early in Ignition+TurboFan. /**/ -var bufferShim = require('buffer-shims'); +var Buffer = require('safe-buffer').Buffer; +var OurUint8Array = global.Uint8Array || function () {}; +function _uint8ArrayToBuffer(chunk) { + return Buffer.from(chunk); +} +function _isUint8Array(obj) { + return Buffer.isBuffer(obj) || obj instanceof OurUint8Array; +} /**/ /**/ @@ -63993,10 +60549,13 @@ if (debugUtil && debugUtil.debuglog) { /**/ var BufferList = require('./internal/streams/BufferList'); +var destroyImpl = require('./internal/streams/destroy'); var StringDecoder; util.inherits(Readable, Stream); +var kProxyEvents = ['error', 'close', 'destroy', 'pause', 'resume']; + function prependListener(emitter, event, fn) { // Sadly this is not cacheable as some libraries bundle their own // event emitter implementation with them. @@ -64029,7 +60588,7 @@ function ReadableState(options, stream) { this.highWaterMark = hwm || hwm === 0 ? hwm : defaultHwm; // cast to ints. - this.highWaterMark = ~ ~this.highWaterMark; + this.highWaterMark = Math.floor(this.highWaterMark); // A linked list is used to store data chunks instead of an array because the // linked list can remove elements from the beginning faster than @@ -64043,10 +60602,10 @@ function ReadableState(options, stream) { this.endEmitted = false; this.reading = false; - // a flag to be able to tell if the onwrite cb is called immediately, - // or on a later tick. We set this to true at first, because any - // actions that shouldn't happen until "later" should generally also - // not happen before the first write call. + // a flag to be able to tell if the event 'readable'/'data' is emitted + // immediately, or on a later tick. We set this to true at first, because + // any actions that shouldn't happen until "later" should generally also + // not happen before the first read call. this.sync = true; // whenever we return null, then we set a flag to say @@ -64056,15 +60615,14 @@ function ReadableState(options, stream) { this.readableListening = false; this.resumeScheduled = false; + // has it been destroyed + this.destroyed = false; + // Crypto is kind of old and crusty. Historically, its default string // encoding is 'binary' so we have to make this configurable. // Everything else in the universe uses 'utf8', though. this.defaultEncoding = options.defaultEncoding || 'utf8'; - // when piping, we only care about 'readable' events that happen - // after read()ing all the bytes and not getting any pushback. - this.ranOut = false; - // the number of writers that are awaiting a drain event in .pipe()s this.awaitDrain = 0; @@ -64090,87 +60648,129 @@ function Readable(options) { // legacy this.readable = true; - if (options && typeof options.read === 'function') this._read = options.read; + if (options) { + if (typeof options.read === 'function') this._read = options.read; + + if (typeof options.destroy === 'function') this._destroy = options.destroy; + } Stream.call(this); } +Object.defineProperty(Readable.prototype, 'destroyed', { + get: function () { + if (this._readableState === undefined) { + return false; + } + return this._readableState.destroyed; + }, + set: function (value) { + // we ignore the value if the stream + // has not been initialized yet + if (!this._readableState) { + return; + } + + // backward compatibility, the user is explicitly + // managing destroyed + this._readableState.destroyed = value; + } +}); + +Readable.prototype.destroy = destroyImpl.destroy; +Readable.prototype._undestroy = destroyImpl.undestroy; +Readable.prototype._destroy = function (err, cb) { + this.push(null); + cb(err); +}; + // Manually shove something into the read() buffer. // This returns true if the highWaterMark has not been hit yet, // similar to how Writable.write() returns true if you should // write() some more. Readable.prototype.push = function (chunk, encoding) { var state = this._readableState; - - if (!state.objectMode && typeof chunk === 'string') { - encoding = encoding || state.defaultEncoding; - if (encoding !== state.encoding) { - chunk = bufferShim.from(chunk, encoding); - encoding = ''; + var skipChunkCheck; + + if (!state.objectMode) { + if (typeof chunk === 'string') { + encoding = encoding || state.defaultEncoding; + if (encoding !== state.encoding) { + chunk = Buffer.from(chunk, encoding); + encoding = ''; + } + skipChunkCheck = true; } + } else { + skipChunkCheck = true; } - return readableAddChunk(this, state, chunk, encoding, false); + return readableAddChunk(this, chunk, encoding, false, skipChunkCheck); }; // Unshift should *always* be something directly out of read() Readable.prototype.unshift = function (chunk) { - var state = this._readableState; - return readableAddChunk(this, state, chunk, '', true); -}; - -Readable.prototype.isPaused = function () { - return this._readableState.flowing === false; + return readableAddChunk(this, chunk, null, true, false); }; -function readableAddChunk(stream, state, chunk, encoding, addToFront) { - var er = chunkInvalid(state, chunk); - if (er) { - stream.emit('error', er); - } else if (chunk === null) { +function readableAddChunk(stream, chunk, encoding, addToFront, skipChunkCheck) { + var state = stream._readableState; + if (chunk === null) { state.reading = false; onEofChunk(stream, state); - } else if (state.objectMode || chunk && chunk.length > 0) { - if (state.ended && !addToFront) { - var e = new Error('stream.push() after EOF'); - stream.emit('error', e); - } else if (state.endEmitted && addToFront) { - var _e = new Error('stream.unshift() after end event'); - stream.emit('error', _e); - } else { - var skipAdd; - if (state.decoder && !addToFront && !encoding) { - chunk = state.decoder.write(chunk); - skipAdd = !state.objectMode && chunk.length === 0; + } else { + var er; + if (!skipChunkCheck) er = chunkInvalid(state, chunk); + if (er) { + stream.emit('error', er); + } else if (state.objectMode || chunk && chunk.length > 0) { + if (typeof chunk !== 'string' && !state.objectMode && Object.getPrototypeOf(chunk) !== Buffer.prototype) { + chunk = _uint8ArrayToBuffer(chunk); } - if (!addToFront) state.reading = false; - - // Don't add to the buffer if we've decoded to an empty string chunk and - // we're not in object mode - if (!skipAdd) { - // if we want the data now, just emit it. - if (state.flowing && state.length === 0 && !state.sync) { - stream.emit('data', chunk); - stream.read(0); + if (addToFront) { + if (state.endEmitted) stream.emit('error', new Error('stream.unshift() after end event'));else addChunk(stream, state, chunk, true); + } else if (state.ended) { + stream.emit('error', new Error('stream.push() after EOF')); + } else { + state.reading = false; + if (state.decoder && !encoding) { + chunk = state.decoder.write(chunk); + if (state.objectMode || chunk.length !== 0) addChunk(stream, state, chunk, false);else maybeReadMore(stream, state); } else { - // update the buffer info. - state.length += state.objectMode ? 1 : chunk.length; - if (addToFront) state.buffer.unshift(chunk);else state.buffer.push(chunk); - - if (state.needReadable) emitReadable(stream); + addChunk(stream, state, chunk, false); } } - - maybeReadMore(stream, state); + } else if (!addToFront) { + state.reading = false; } - } else if (!addToFront) { - state.reading = false; } return needMoreData(state); } +function addChunk(stream, state, chunk, addToFront) { + if (state.flowing && state.length === 0 && !state.sync) { + stream.emit('data', chunk); + stream.read(0); + } else { + // update the buffer info. + state.length += state.objectMode ? 1 : chunk.length; + if (addToFront) state.buffer.unshift(chunk);else state.buffer.push(chunk); + + if (state.needReadable) emitReadable(stream); + } + maybeReadMore(stream, state); +} + +function chunkInvalid(state, chunk) { + var er; + if (!_isUint8Array(chunk) && typeof chunk !== 'string' && chunk !== undefined && !state.objectMode) { + er = new TypeError('Invalid non-string/buffer chunk'); + } + return er; +} + // if it's past the high water mark, we can push in some more. // Also, if we have no data yet, we can stand some // more bytes. This is to work around cases where hwm=0, @@ -64182,6 +60782,10 @@ function needMoreData(state) { return !state.ended && (state.needReadable || state.length < state.highWaterMark || state.length === 0); } +Readable.prototype.isPaused = function () { + return this._readableState.flowing === false; +}; + // backwards compatibility. Readable.prototype.setEncoding = function (enc) { if (!StringDecoder) StringDecoder = require('string_decoder/').StringDecoder; @@ -64330,14 +60934,6 @@ Readable.prototype.read = function (n) { return ret; }; -function chunkInvalid(state, chunk) { - var er = null; - if (!Buffer.isBuffer(chunk) && typeof chunk !== 'string' && chunk !== null && chunk !== undefined && !state.objectMode) { - er = new TypeError('Invalid non-string/buffer chunk'); - } - return er; -} - function onEofChunk(stream, state) { if (state.ended) return; if (state.decoder) { @@ -64425,14 +61021,17 @@ Readable.prototype.pipe = function (dest, pipeOpts) { var doEnd = (!pipeOpts || pipeOpts.end !== false) && dest !== process.stdout && dest !== process.stderr; - var endFn = doEnd ? onend : cleanup; + var endFn = doEnd ? onend : unpipe; if (state.endEmitted) processNextTick(endFn);else src.once('end', endFn); dest.on('unpipe', onunpipe); - function onunpipe(readable) { + function onunpipe(readable, unpipeInfo) { debug('onunpipe'); if (readable === src) { - cleanup(); + if (unpipeInfo && unpipeInfo.hasUnpiped === false) { + unpipeInfo.hasUnpiped = true; + cleanup(); + } } } @@ -64458,7 +61057,7 @@ Readable.prototype.pipe = function (dest, pipeOpts) { dest.removeListener('error', onerror); dest.removeListener('unpipe', onunpipe); src.removeListener('end', onend); - src.removeListener('end', cleanup); + src.removeListener('end', unpipe); src.removeListener('data', ondata); cleanedUp = true; @@ -64551,6 +61150,7 @@ function pipeOnDrain(src) { Readable.prototype.unpipe = function (dest) { var state = this._readableState; + var unpipeInfo = { hasUnpiped: false }; // if we're not piping anywhere, then do nothing. if (state.pipesCount === 0) return this; @@ -64566,7 +61166,7 @@ Readable.prototype.unpipe = function (dest) { state.pipes = null; state.pipesCount = 0; state.flowing = false; - if (dest) dest.emit('unpipe', this); + if (dest) dest.emit('unpipe', this, unpipeInfo); return this; } @@ -64581,7 +61181,7 @@ Readable.prototype.unpipe = function (dest) { state.flowing = false; for (var i = 0; i < len; i++) { - dests[i].emit('unpipe', this); + dests[i].emit('unpipe', this, unpipeInfo); }return this; } @@ -64593,7 +61193,7 @@ Readable.prototype.unpipe = function (dest) { state.pipesCount -= 1; if (state.pipesCount === 1) state.pipes = state.pipes[0]; - dest.emit('unpipe', this); + dest.emit('unpipe', this, unpipeInfo); return this; }; @@ -64614,7 +61214,7 @@ Readable.prototype.on = function (ev, fn) { if (!state.reading) { processNextTick(nReadingNextTick, this); } else if (state.length) { - emitReadable(this, state); + emitReadable(this); } } } @@ -64721,10 +61321,9 @@ Readable.prototype.wrap = function (stream) { } // proxy certain important events. - var events = ['error', 'close', 'destroy', 'pause', 'resume']; - forEach(events, function (ev) { - stream.on(ev, self.emit.bind(self, ev)); - }); + for (var n = 0; n < kProxyEvents.length; n++) { + stream.on(kProxyEvents[n], self.emit.bind(self, kProxyEvents[n])); + } // when we try to consume some more bytes, simply unpause the // underlying stream. @@ -64816,7 +61415,7 @@ function copyFromBufferString(n, list) { // This function is designed to be inlinable, so please take care when making // changes to the function body. function copyFromBuffer(n, list) { - var ret = bufferShim.allocUnsafe(n); + var ret = Buffer.allocUnsafe(n); var p = list.head; var c = 1; p.data.copy(ret); @@ -64876,8 +61475,29 @@ function indexOf(xs, x) { } return -1; } -}).call(this,require('_process')) -},{"./_stream_duplex":154,"./internal/streams/BufferList":159,"_process":145,"buffer":50,"buffer-shims":48,"core-util-is":83,"events":121,"inherits":131,"isarray":133,"process-nextick-args":144,"string_decoder/":174,"util":22}],157:[function(require,module,exports){ +}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) +},{"./_stream_duplex":167,"./internal/streams/BufferList":172,"./internal/streams/destroy":173,"./internal/streams/stream":174,"_process":158,"core-util-is":83,"events":121,"inherits":139,"isarray":141,"process-nextick-args":157,"safe-buffer":181,"string_decoder/":175,"util":22}],170:[function(require,module,exports){ +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. + // a transform stream is a readable/writable stream where you do // something with the data. Sometimes it's called a "filter", // but that's not a great name for it, since that implies a thing where @@ -64951,7 +61571,9 @@ function afterTransform(stream, er, data) { var cb = ts.writecb; - if (!cb) return stream.emit('error', new Error('no writecb in Transform class')); + if (!cb) { + return stream.emit('error', new Error('write callback called multiple times')); + } ts.writechunk = null; ts.writecb = null; @@ -65044,6 +61666,15 @@ Transform.prototype._read = function (n) { } }; +Transform.prototype._destroy = function (err, cb) { + var _this = this; + + Duplex.prototype._destroy.call(this, err, function (err2) { + cb(err2); + _this.emit('close'); + }); +}; + function done(stream, er, data) { if (er) return stream.emit('error', er); @@ -65060,20 +61691,63 @@ function done(stream, er, data) { return stream.push(null); } -},{"./_stream_duplex":154,"core-util-is":83,"inherits":131}],158:[function(require,module,exports){ -(function (process){ +},{"./_stream_duplex":167,"core-util-is":83,"inherits":139}],171:[function(require,module,exports){ +(function (process,global){ +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. + // A bit simpler than readable streams. // Implement an async ._write(chunk, encoding, cb), and it'll handle all // the drain event emission and buffering. 'use strict'; -module.exports = Writable; - /**/ + var processNextTick = require('process-nextick-args'); /**/ +module.exports = Writable; + +/* */ +function WriteReq(chunk, encoding, cb) { + this.chunk = chunk; + this.encoding = encoding; + this.callback = cb; + this.next = null; +} + +// It seems a linked list but it is not +// there will be only 2 of these for each stream +function CorkedRequest(state) { + var _this = this; + + this.next = null; + this.entry = null; + this.finish = function () { + onCorkedFinish(_this, state); + }; +} +/* */ + /**/ var asyncWrite = !process.browser && ['v0.10', 'v0.9.'].indexOf(process.version.slice(0, 5)) > -1 ? setImmediate : processNextTick; /**/ @@ -65096,32 +61770,26 @@ var internalUtil = { /**/ /**/ -var Stream; -(function () { - try { - Stream = require('st' + 'ream'); - } catch (_) {} finally { - if (!Stream) Stream = require('events').EventEmitter; - } -})(); +var Stream = require('./internal/streams/stream'); /**/ -var Buffer = require('buffer').Buffer; /**/ -var bufferShim = require('buffer-shims'); +var Buffer = require('safe-buffer').Buffer; +var OurUint8Array = global.Uint8Array || function () {}; +function _uint8ArrayToBuffer(chunk) { + return Buffer.from(chunk); +} +function _isUint8Array(obj) { + return Buffer.isBuffer(obj) || obj instanceof OurUint8Array; +} /**/ +var destroyImpl = require('./internal/streams/destroy'); + util.inherits(Writable, Stream); function nop() {} -function WriteReq(chunk, encoding, cb) { - this.chunk = chunk; - this.encoding = encoding; - this.callback = cb; - this.next = null; -} - function WritableState(options, stream) { Duplex = Duplex || require('./_stream_duplex'); @@ -65141,7 +61809,10 @@ function WritableState(options, stream) { this.highWaterMark = hwm || hwm === 0 ? hwm : defaultHwm; // cast to ints. - this.highWaterMark = ~ ~this.highWaterMark; + this.highWaterMark = Math.floor(this.highWaterMark); + + // if _final has been called + this.finalCalled = false; // drain event flag. this.needDrain = false; @@ -65152,6 +61823,9 @@ function WritableState(options, stream) { // when 'finish' is emitted this.finished = false; + // has it been destroyed + this.destroyed = false; + // should we decode strings into buffers before passing to _write? // this is here so that some node-core streams can optimize string // handling at a lower level. @@ -65233,7 +61907,7 @@ WritableState.prototype.getBuffer = function getBuffer() { Object.defineProperty(WritableState.prototype, 'buffer', { get: internalUtil.deprecate(function () { return this.getBuffer(); - }, '_writableState.buffer is deprecated. Use _writableState.getBuffer ' + 'instead.') + }, '_writableState.buffer is deprecated. Use _writableState.getBuffer ' + 'instead.', 'DEP0003') }); } catch (_) {} })(); @@ -65279,6 +61953,10 @@ function Writable(options) { if (typeof options.write === 'function') this._write = options.write; if (typeof options.writev === 'function') this._writev = options.writev; + + if (typeof options.destroy === 'function') this._destroy = options.destroy; + + if (typeof options.final === 'function') this._final = options.final; } Stream.call(this); @@ -65296,20 +61974,16 @@ function writeAfterEnd(stream, cb) { processNextTick(cb, er); } -// If we get something that is not a buffer, string, null, or undefined, -// and we're not in objectMode, then that's an error. -// Otherwise stream chunks are all considered to be of length=1, and the -// watermarks determine how many objects to keep in the buffer, rather than -// how many bytes or characters. +// Checks that a user-supplied chunk is valid, especially for the particular +// mode the stream is in. Currently this means that `null` is never accepted +// and undefined/non-string values are only allowed in object mode. function validChunk(stream, state, chunk, cb) { var valid = true; var er = false; - // Always throw error if a null is written - // if we are not in object mode then throw - // if it is not a buffer, string, or undefined. + if (chunk === null) { er = new TypeError('May not write null values to stream'); - } else if (!Buffer.isBuffer(chunk) && typeof chunk !== 'string' && chunk !== undefined && !state.objectMode) { + } else if (typeof chunk !== 'string' && chunk !== undefined && !state.objectMode) { er = new TypeError('Invalid non-string/buffer chunk'); } if (er) { @@ -65323,19 +61997,24 @@ function validChunk(stream, state, chunk, cb) { Writable.prototype.write = function (chunk, encoding, cb) { var state = this._writableState; var ret = false; + var isBuf = _isUint8Array(chunk) && !state.objectMode; + + if (isBuf && !Buffer.isBuffer(chunk)) { + chunk = _uint8ArrayToBuffer(chunk); + } if (typeof encoding === 'function') { cb = encoding; encoding = null; } - if (Buffer.isBuffer(chunk)) encoding = 'buffer';else if (!encoding) encoding = state.defaultEncoding; + if (isBuf) encoding = 'buffer';else if (!encoding) encoding = state.defaultEncoding; if (typeof cb !== 'function') cb = nop; - if (state.ended) writeAfterEnd(this, cb);else if (validChunk(this, state, chunk, cb)) { + if (state.ended) writeAfterEnd(this, cb);else if (isBuf || validChunk(this, state, chunk, cb)) { state.pendingcb++; - ret = writeOrBuffer(this, state, chunk, encoding, cb); + ret = writeOrBuffer(this, state, isBuf, chunk, encoding, cb); } return ret; @@ -65367,7 +62046,7 @@ Writable.prototype.setDefaultEncoding = function setDefaultEncoding(encoding) { function decodeChunk(state, chunk, encoding) { if (!state.objectMode && state.decodeStrings !== false && typeof chunk === 'string') { - chunk = bufferShim.from(chunk, encoding); + chunk = Buffer.from(chunk, encoding); } return chunk; } @@ -65375,10 +62054,15 @@ function decodeChunk(state, chunk, encoding) { // if we're already writing something, then just put this // in the queue, and wait our turn. Otherwise, call _write // If we return false, then we need a drain event, so set that flag. -function writeOrBuffer(stream, state, chunk, encoding, cb) { - chunk = decodeChunk(state, chunk, encoding); - - if (Buffer.isBuffer(chunk)) encoding = 'buffer'; +function writeOrBuffer(stream, state, isBuf, chunk, encoding, cb) { + if (!isBuf) { + var newChunk = decodeChunk(state, chunk, encoding); + if (chunk !== newChunk) { + isBuf = true; + encoding = 'buffer'; + chunk = newChunk; + } + } var len = state.objectMode ? 1 : chunk.length; state.length += len; @@ -65389,7 +62073,13 @@ function writeOrBuffer(stream, state, chunk, encoding, cb) { if (state.writing || state.corked) { var last = state.lastBufferedRequest; - state.lastBufferedRequest = new WriteReq(chunk, encoding, cb); + state.lastBufferedRequest = { + chunk: chunk, + encoding: encoding, + isBuf: isBuf, + callback: cb, + next: null + }; if (last) { last.next = state.lastBufferedRequest; } else { @@ -65414,10 +62104,26 @@ function doWrite(stream, state, writev, len, chunk, encoding, cb) { function onwriteError(stream, state, sync, er, cb) { --state.pendingcb; - if (sync) processNextTick(cb, er);else cb(er); - stream._writableState.errorEmitted = true; - stream.emit('error', er); + if (sync) { + // defer the callback if we are being called synchronously + // to avoid piling up things on the stack + processNextTick(cb, er); + // this can emit finish, and it will always happen + // after error + processNextTick(finishMaybe, stream, state); + stream._writableState.errorEmitted = true; + stream.emit('error', er); + } else { + // the caller expect this to happen before if + // it is async + cb(er); + stream._writableState.errorEmitted = true; + stream.emit('error', er); + // this can emit finish, but finish must + // always follow error + finishMaybe(stream, state); + } } function onwriteStateUpdate(state) { @@ -65447,8 +62153,8 @@ function onwrite(stream, er) { asyncWrite(afterWrite, stream, state, finished, cb); /**/ } else { - afterWrite(stream, state, finished, cb); - } + afterWrite(stream, state, finished, cb); + } } } @@ -65482,11 +62188,14 @@ function clearBuffer(stream, state) { holder.entry = entry; var count = 0; + var allBuffers = true; while (entry) { buffer[count] = entry; + if (!entry.isBuf) allBuffers = false; entry = entry.next; count += 1; } + buffer.allBuffers = allBuffers; doWrite(stream, state, true, state.length, buffer, '', holder.finish); @@ -65560,23 +62269,37 @@ Writable.prototype.end = function (chunk, encoding, cb) { function needFinish(state) { return state.ending && state.length === 0 && state.bufferedRequest === null && !state.finished && !state.writing; } - -function prefinish(stream, state) { - if (!state.prefinished) { +function callFinal(stream, state) { + stream._final(function (err) { + state.pendingcb--; + if (err) { + stream.emit('error', err); + } state.prefinished = true; stream.emit('prefinish'); + finishMaybe(stream, state); + }); +} +function prefinish(stream, state) { + if (!state.prefinished && !state.finalCalled) { + if (typeof stream._final === 'function') { + state.pendingcb++; + state.finalCalled = true; + processNextTick(callFinal, stream, state); + } else { + state.prefinished = true; + stream.emit('prefinish'); + } } } function finishMaybe(stream, state) { var need = needFinish(state); if (need) { + prefinish(stream, state); if (state.pendingcb === 0) { - prefinish(stream, state); state.finished = true; stream.emit('finish'); - } else { - prefinish(stream, state); } } return need; @@ -65592,340 +62315,851 @@ function endWritable(stream, state, cb) { stream.writable = false; } -// It seems a linked list but it is not -// there will be only 2 of these for each stream -function CorkedRequest(state) { - var _this = this; - - this.next = null; - this.entry = null; +function onCorkedFinish(corkReq, state, err) { + var entry = corkReq.entry; + corkReq.entry = null; + while (entry) { + var cb = entry.callback; + state.pendingcb--; + cb(err); + entry = entry.next; + } + if (state.corkedRequestsFree) { + state.corkedRequestsFree.next = corkReq; + } else { + state.corkedRequestsFree = corkReq; + } +} - this.finish = function (err) { - var entry = _this.entry; - _this.entry = null; - while (entry) { - var cb = entry.callback; - state.pendingcb--; - cb(err); - entry = entry.next; +Object.defineProperty(Writable.prototype, 'destroyed', { + get: function () { + if (this._writableState === undefined) { + return false; } - if (state.corkedRequestsFree) { - state.corkedRequestsFree.next = _this; - } else { - state.corkedRequestsFree = _this; + return this._writableState.destroyed; + }, + set: function (value) { + // we ignore the value if the stream + // has not been initialized yet + if (!this._writableState) { + return; } - }; -} -}).call(this,require('_process')) -},{"./_stream_duplex":154,"_process":145,"buffer":50,"buffer-shims":48,"core-util-is":83,"events":121,"inherits":131,"process-nextick-args":144,"util-deprecate":177}],159:[function(require,module,exports){ + + // backward compatibility, the user is explicitly + // managing destroyed + this._writableState.destroyed = value; + } +}); + +Writable.prototype.destroy = destroyImpl.destroy; +Writable.prototype._undestroy = destroyImpl.undestroy; +Writable.prototype._destroy = function (err, cb) { + this.end(); + cb(err); +}; +}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) +},{"./_stream_duplex":167,"./internal/streams/destroy":173,"./internal/streams/stream":174,"_process":158,"core-util-is":83,"inherits":139,"process-nextick-args":157,"safe-buffer":181,"util-deprecate":194}],172:[function(require,module,exports){ 'use strict'; -var Buffer = require('buffer').Buffer; /**/ -var bufferShim = require('buffer-shims'); -/**/ -module.exports = BufferList; +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } -function BufferList() { - this.head = null; - this.tail = null; - this.length = 0; +var Buffer = require('safe-buffer').Buffer; +/**/ + +function copyBuffer(src, target, offset) { + src.copy(target, offset); } -BufferList.prototype.push = function (v) { - var entry = { data: v, next: null }; - if (this.length > 0) this.tail.next = entry;else this.head = entry; - this.tail = entry; - ++this.length; -}; +module.exports = function () { + function BufferList() { + _classCallCheck(this, BufferList); -BufferList.prototype.unshift = function (v) { - var entry = { data: v, next: this.head }; - if (this.length === 0) this.tail = entry; - this.head = entry; - ++this.length; -}; + this.head = null; + this.tail = null; + this.length = 0; + } -BufferList.prototype.shift = function () { - if (this.length === 0) return; - var ret = this.head.data; - if (this.length === 1) this.head = this.tail = null;else this.head = this.head.next; - --this.length; - return ret; -}; + BufferList.prototype.push = function push(v) { + var entry = { data: v, next: null }; + if (this.length > 0) this.tail.next = entry;else this.head = entry; + this.tail = entry; + ++this.length; + }; -BufferList.prototype.clear = function () { - this.head = this.tail = null; - this.length = 0; -}; + BufferList.prototype.unshift = function unshift(v) { + var entry = { data: v, next: this.head }; + if (this.length === 0) this.tail = entry; + this.head = entry; + ++this.length; + }; -BufferList.prototype.join = function (s) { - if (this.length === 0) return ''; - var p = this.head; - var ret = '' + p.data; - while (p = p.next) { - ret += s + p.data; - }return ret; -}; + BufferList.prototype.shift = function shift() { + if (this.length === 0) return; + var ret = this.head.data; + if (this.length === 1) this.head = this.tail = null;else this.head = this.head.next; + --this.length; + return ret; + }; -BufferList.prototype.concat = function (n) { - if (this.length === 0) return bufferShim.alloc(0); - if (this.length === 1) return this.head.data; - var ret = bufferShim.allocUnsafe(n >>> 0); - var p = this.head; - var i = 0; - while (p) { - p.data.copy(ret, i); - i += p.data.length; - p = p.next; + BufferList.prototype.clear = function clear() { + this.head = this.tail = null; + this.length = 0; + }; + + BufferList.prototype.join = function join(s) { + if (this.length === 0) return ''; + var p = this.head; + var ret = '' + p.data; + while (p = p.next) { + ret += s + p.data; + }return ret; + }; + + BufferList.prototype.concat = function concat(n) { + if (this.length === 0) return Buffer.alloc(0); + if (this.length === 1) return this.head.data; + var ret = Buffer.allocUnsafe(n >>> 0); + var p = this.head; + var i = 0; + while (p) { + copyBuffer(p.data, ret, i); + i += p.data.length; + p = p.next; + } + return ret; + }; + + return BufferList; +}(); +},{"safe-buffer":181}],173:[function(require,module,exports){ +'use strict'; + +/**/ + +var processNextTick = require('process-nextick-args'); +/**/ + +// undocumented cb() API, needed for core, not for public API +function destroy(err, cb) { + var _this = this; + + var readableDestroyed = this._readableState && this._readableState.destroyed; + var writableDestroyed = this._writableState && this._writableState.destroyed; + + if (readableDestroyed || writableDestroyed) { + if (cb) { + cb(err); + } else if (err && (!this._writableState || !this._writableState.errorEmitted)) { + processNextTick(emitErrorNT, this, err); + } + return; } - return ret; -}; -},{"buffer":50,"buffer-shims":48}],160:[function(require,module,exports){ -module.exports = require("./lib/_stream_passthrough.js") -},{"./lib/_stream_passthrough.js":155}],161:[function(require,module,exports){ -(function (process){ -var Stream = (function (){ - try { - return require('st' + 'ream'); // hack to fix a circular dependency issue when used with browserify - } catch(_){} -}()); -exports = module.exports = require('./lib/_stream_readable.js'); -exports.Stream = Stream || exports; -exports.Readable = exports; -exports.Writable = require('./lib/_stream_writable.js'); -exports.Duplex = require('./lib/_stream_duplex.js'); -exports.Transform = require('./lib/_stream_transform.js'); -exports.PassThrough = require('./lib/_stream_passthrough.js'); + // we set destroyed to true before firing error callbacks in order + // to make it re-entrance safe in case destroy() is called within callbacks -if (!process.browser && process.env.READABLE_STREAM === 'disable' && Stream) { - module.exports = Stream; -} + if (this._readableState) { + this._readableState.destroyed = true; + } -}).call(this,require('_process')) -},{"./lib/_stream_duplex.js":154,"./lib/_stream_passthrough.js":155,"./lib/_stream_readable.js":156,"./lib/_stream_transform.js":157,"./lib/_stream_writable.js":158,"_process":145}],162:[function(require,module,exports){ -module.exports = require("./lib/_stream_transform.js") + // if this is a duplex stream mark the writable part as destroyed as well + if (this._writableState) { + this._writableState.destroyed = true; + } -},{"./lib/_stream_transform.js":157}],163:[function(require,module,exports){ -module.exports = require("./lib/_stream_writable.js") + this._destroy(err || null, function (err) { + if (!cb && err) { + processNextTick(emitErrorNT, _this, err); + if (_this._writableState) { + _this._writableState.errorEmitted = true; + } + } else if (cb) { + cb(err); + } + }); +} -},{"./lib/_stream_writable.js":158}],164:[function(require,module,exports){ -(function (Buffer){ -/* -CryptoJS v3.1.2 -code.google.com/p/crypto-js -(c) 2009-2013 by Jeff Mott. All rights reserved. -code.google.com/p/crypto-js/wiki/License -*/ -/** @preserve -(c) 2012 by Cédric Mesnil. All rights reserved. +function undestroy() { + if (this._readableState) { + this._readableState.destroyed = false; + this._readableState.reading = false; + this._readableState.ended = false; + this._readableState.endEmitted = false; + } -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + if (this._writableState) { + this._writableState.destroyed = false; + this._writableState.ended = false; + this._writableState.ending = false; + this._writableState.finished = false; + this._writableState.errorEmitted = false; + } +} - - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. +function emitErrorNT(self, err) { + self.emit('error', err); +} -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ +module.exports = { + destroy: destroy, + undestroy: undestroy +}; +},{"process-nextick-args":157}],174:[function(require,module,exports){ +module.exports = require('events').EventEmitter; -// constants table -var zl = [ - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, - 7, 4, 13, 1, 10, 6, 15, 3, 12, 0, 9, 5, 2, 14, 11, 8, - 3, 10, 14, 4, 9, 15, 8, 1, 2, 7, 0, 6, 13, 11, 5, 12, - 1, 9, 11, 10, 0, 8, 12, 4, 13, 3, 7, 15, 14, 5, 6, 2, - 4, 0, 5, 9, 7, 12, 2, 10, 14, 1, 3, 8, 11, 6, 15, 13 -] +},{"events":121}],175:[function(require,module,exports){ +'use strict'; -var zr = [ - 5, 14, 7, 0, 9, 2, 11, 4, 13, 6, 15, 8, 1, 10, 3, 12, - 6, 11, 3, 7, 0, 13, 5, 10, 14, 15, 8, 12, 4, 9, 1, 2, - 15, 5, 1, 3, 7, 14, 6, 9, 11, 8, 12, 2, 10, 0, 4, 13, - 8, 6, 4, 1, 3, 11, 15, 0, 5, 12, 2, 13, 9, 7, 10, 14, - 12, 15, 10, 4, 1, 5, 8, 7, 6, 2, 13, 14, 0, 3, 9, 11 -] +var Buffer = require('safe-buffer').Buffer; -var sl = [ - 11, 14, 15, 12, 5, 8, 7, 9, 11, 13, 14, 15, 6, 7, 9, 8, - 7, 6, 8, 13, 11, 9, 7, 15, 7, 12, 15, 9, 11, 7, 13, 12, - 11, 13, 6, 7, 14, 9, 13, 15, 14, 8, 13, 6, 5, 12, 7, 5, - 11, 12, 14, 15, 14, 15, 9, 8, 9, 14, 5, 6, 8, 6, 5, 12, - 9, 15, 5, 11, 6, 8, 13, 12, 5, 12, 13, 14, 11, 8, 5, 6 -] +var isEncoding = Buffer.isEncoding || function (encoding) { + encoding = '' + encoding; + switch (encoding && encoding.toLowerCase()) { + case 'hex':case 'utf8':case 'utf-8':case 'ascii':case 'binary':case 'base64':case 'ucs2':case 'ucs-2':case 'utf16le':case 'utf-16le':case 'raw': + return true; + default: + return false; + } +}; -var sr = [ - 8, 9, 9, 11, 13, 15, 15, 5, 7, 7, 8, 11, 14, 14, 12, 6, - 9, 13, 15, 7, 12, 8, 9, 11, 7, 7, 12, 7, 6, 15, 13, 11, - 9, 7, 15, 11, 8, 6, 6, 14, 12, 13, 5, 14, 13, 13, 7, 5, - 15, 5, 8, 11, 14, 14, 6, 14, 6, 9, 12, 9, 12, 5, 15, 8, - 8, 5, 12, 9, 12, 5, 14, 6, 8, 13, 6, 5, 15, 13, 11, 11 -] +function _normalizeEncoding(enc) { + if (!enc) return 'utf8'; + var retried; + while (true) { + switch (enc) { + case 'utf8': + case 'utf-8': + return 'utf8'; + case 'ucs2': + case 'ucs-2': + case 'utf16le': + case 'utf-16le': + return 'utf16le'; + case 'latin1': + case 'binary': + return 'latin1'; + case 'base64': + case 'ascii': + case 'hex': + return enc; + default: + if (retried) return; // undefined + enc = ('' + enc).toLowerCase(); + retried = true; + } + } +}; -var hl = [0x00000000, 0x5A827999, 0x6ED9EBA1, 0x8F1BBCDC, 0xA953FD4E] -var hr = [0x50A28BE6, 0x5C4DD124, 0x6D703EF3, 0x7A6D76E9, 0x00000000] +// Do not cache `Buffer.isEncoding` when checking encoding names as some +// modules monkey-patch it to support additional encodings +function normalizeEncoding(enc) { + var nenc = _normalizeEncoding(enc); + if (typeof nenc !== 'string' && (Buffer.isEncoding === isEncoding || !isEncoding(enc))) throw new Error('Unknown encoding: ' + enc); + return nenc || enc; +} -function bytesToWords (bytes) { - var words = [] - for (var i = 0, b = 0; i < bytes.length; i++, b += 8) { - words[b >>> 5] |= bytes[i] << (24 - b % 32) +// StringDecoder provides an interface for efficiently splitting a series of +// buffers into a series of JS strings without breaking apart multi-byte +// characters. +exports.StringDecoder = StringDecoder; +function StringDecoder(encoding) { + this.encoding = normalizeEncoding(encoding); + var nb; + switch (this.encoding) { + case 'utf16le': + this.text = utf16Text; + this.end = utf16End; + nb = 4; + break; + case 'utf8': + this.fillLast = utf8FillLast; + nb = 4; + break; + case 'base64': + this.text = base64Text; + this.end = base64End; + nb = 3; + break; + default: + this.write = simpleWrite; + this.end = simpleEnd; + return; } - return words + this.lastNeed = 0; + this.lastTotal = 0; + this.lastChar = Buffer.allocUnsafe(nb); } -function wordsToBytes (words) { - var bytes = [] - for (var b = 0; b < words.length * 32; b += 8) { - bytes.push((words[b >>> 5] >>> (24 - b % 32)) & 0xFF) +StringDecoder.prototype.write = function (buf) { + if (buf.length === 0) return ''; + var r; + var i; + if (this.lastNeed) { + r = this.fillLast(buf); + if (r === undefined) return ''; + i = this.lastNeed; + this.lastNeed = 0; + } else { + i = 0; } - return bytes + if (i < buf.length) return r ? r + this.text(buf, i) : this.text(buf, i); + return r || ''; +}; + +StringDecoder.prototype.end = utf8End; + +// Returns only complete characters in a Buffer +StringDecoder.prototype.text = utf8Text; + +// Attempts to complete a partial non-UTF-8 character using bytes from a Buffer +StringDecoder.prototype.fillLast = function (buf) { + if (this.lastNeed <= buf.length) { + buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, this.lastNeed); + return this.lastChar.toString(this.encoding, 0, this.lastTotal); + } + buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, buf.length); + this.lastNeed -= buf.length; +}; + +// Checks the type of a UTF-8 byte, whether it's ASCII, a leading byte, or a +// continuation byte. +function utf8CheckByte(byte) { + if (byte <= 0x7F) return 0;else if (byte >> 5 === 0x06) return 2;else if (byte >> 4 === 0x0E) return 3;else if (byte >> 3 === 0x1E) return 4; + return -1; } -function processBlock (H, M, offset) { - // swap endian - for (var i = 0; i < 16; i++) { - var offset_i = offset + i - var M_offset_i = M[offset_i] +// Checks at most 3 bytes at the end of a Buffer in order to detect an +// incomplete multi-byte UTF-8 character. The total number of bytes (2, 3, or 4) +// needed to complete the UTF-8 character (if applicable) are returned. +function utf8CheckIncomplete(self, buf, i) { + var j = buf.length - 1; + if (j < i) return 0; + var nb = utf8CheckByte(buf[j]); + if (nb >= 0) { + if (nb > 0) self.lastNeed = nb - 1; + return nb; + } + if (--j < i) return 0; + nb = utf8CheckByte(buf[j]); + if (nb >= 0) { + if (nb > 0) self.lastNeed = nb - 2; + return nb; + } + if (--j < i) return 0; + nb = utf8CheckByte(buf[j]); + if (nb >= 0) { + if (nb > 0) { + if (nb === 2) nb = 0;else self.lastNeed = nb - 3; + } + return nb; + } + return 0; +} - // Swap - M[offset_i] = ( - (((M_offset_i << 8) | (M_offset_i >>> 24)) & 0x00ff00ff) | - (((M_offset_i << 24) | (M_offset_i >>> 8)) & 0xff00ff00) - ) +// Validates as many continuation bytes for a multi-byte UTF-8 character as +// needed or are available. If we see a non-continuation byte where we expect +// one, we "replace" the validated continuation bytes we've seen so far with +// UTF-8 replacement characters ('\ufffd'), to match v8's UTF-8 decoding +// behavior. The continuation byte check is included three times in the case +// where all of the continuation bytes for a character exist in the same buffer. +// It is also done this way as a slight performance increase instead of using a +// loop. +function utf8CheckExtraBytes(self, buf, p) { + if ((buf[0] & 0xC0) !== 0x80) { + self.lastNeed = 0; + return '\ufffd'.repeat(p); + } + if (self.lastNeed > 1 && buf.length > 1) { + if ((buf[1] & 0xC0) !== 0x80) { + self.lastNeed = 1; + return '\ufffd'.repeat(p + 1); + } + if (self.lastNeed > 2 && buf.length > 2) { + if ((buf[2] & 0xC0) !== 0x80) { + self.lastNeed = 2; + return '\ufffd'.repeat(p + 2); + } + } } +} - // Working variables - var al, bl, cl, dl, el - var ar, br, cr, dr, er +// Attempts to complete a multi-byte UTF-8 character using bytes from a Buffer. +function utf8FillLast(buf) { + var p = this.lastTotal - this.lastNeed; + var r = utf8CheckExtraBytes(this, buf, p); + if (r !== undefined) return r; + if (this.lastNeed <= buf.length) { + buf.copy(this.lastChar, p, 0, this.lastNeed); + return this.lastChar.toString(this.encoding, 0, this.lastTotal); + } + buf.copy(this.lastChar, p, 0, buf.length); + this.lastNeed -= buf.length; +} - ar = al = H[0] - br = bl = H[1] - cr = cl = H[2] - dr = dl = H[3] - er = el = H[4] +// Returns all complete UTF-8 characters in a Buffer. If the Buffer ended on a +// partial character, the character's bytes are buffered until the required +// number of bytes are available. +function utf8Text(buf, i) { + var total = utf8CheckIncomplete(this, buf, i); + if (!this.lastNeed) return buf.toString('utf8', i); + this.lastTotal = total; + var end = buf.length - (total - this.lastNeed); + buf.copy(this.lastChar, 0, end); + return buf.toString('utf8', i, end); +} - // computation - var t - for (i = 0; i < 80; i += 1) { - t = (al + M[offset + zl[i]]) | 0 - if (i < 16) { - t += f1(bl, cl, dl) + hl[0] - } else if (i < 32) { - t += f2(bl, cl, dl) + hl[1] - } else if (i < 48) { - t += f3(bl, cl, dl) + hl[2] - } else if (i < 64) { - t += f4(bl, cl, dl) + hl[3] - } else {// if (i<80) { - t += f5(bl, cl, dl) + hl[4] - } - t = t | 0 - t = rotl(t, sl[i]) - t = (t + el) | 0 - al = el - el = dl - dl = rotl(cl, 10) - cl = bl - bl = t +// For UTF-8, a replacement character for each buffered byte of a (partial) +// character needs to be added to the output. +function utf8End(buf) { + var r = buf && buf.length ? this.write(buf) : ''; + if (this.lastNeed) return r + '\ufffd'.repeat(this.lastTotal - this.lastNeed); + return r; +} - t = (ar + M[offset + zr[i]]) | 0 - if (i < 16) { - t += f5(br, cr, dr) + hr[0] - } else if (i < 32) { - t += f4(br, cr, dr) + hr[1] - } else if (i < 48) { - t += f3(br, cr, dr) + hr[2] - } else if (i < 64) { - t += f2(br, cr, dr) + hr[3] - } else {// if (i<80) { - t += f1(br, cr, dr) + hr[4] +// UTF-16LE typically needs two bytes per character, but even if we have an even +// number of bytes available, we need to check if we end on a leading/high +// surrogate. In that case, we need to wait for the next two bytes in order to +// decode the last character properly. +function utf16Text(buf, i) { + if ((buf.length - i) % 2 === 0) { + var r = buf.toString('utf16le', i); + if (r) { + var c = r.charCodeAt(r.length - 1); + if (c >= 0xD800 && c <= 0xDBFF) { + this.lastNeed = 2; + this.lastTotal = 4; + this.lastChar[0] = buf[buf.length - 2]; + this.lastChar[1] = buf[buf.length - 1]; + return r.slice(0, -1); + } } + return r; + } + this.lastNeed = 1; + this.lastTotal = 2; + this.lastChar[0] = buf[buf.length - 1]; + return buf.toString('utf16le', i, buf.length - 1); +} - t = t | 0 - t = rotl(t, sr[i]) - t = (t + er) | 0 - ar = er - er = dr - dr = rotl(cr, 10) - cr = br - br = t +// For UTF-16LE we do not explicitly append special replacement characters if we +// end on a partial character, we simply let v8 handle that. +function utf16End(buf) { + var r = buf && buf.length ? this.write(buf) : ''; + if (this.lastNeed) { + var end = this.lastTotal - this.lastNeed; + return r + this.lastChar.toString('utf16le', 0, end); } + return r; +} - // intermediate hash value - t = (H[1] + cl + dr) | 0 - H[1] = (H[2] + dl + er) | 0 - H[2] = (H[3] + el + ar) | 0 - H[3] = (H[4] + al + br) | 0 - H[4] = (H[0] + bl + cr) | 0 - H[0] = t +function base64Text(buf, i) { + var n = (buf.length - i) % 3; + if (n === 0) return buf.toString('base64', i); + this.lastNeed = 3 - n; + this.lastTotal = 3; + if (n === 1) { + this.lastChar[0] = buf[buf.length - 1]; + } else { + this.lastChar[0] = buf[buf.length - 2]; + this.lastChar[1] = buf[buf.length - 1]; + } + return buf.toString('base64', i, buf.length - n); } -function f1 (x, y, z) { - return ((x) ^ (y) ^ (z)) +function base64End(buf) { + var r = buf && buf.length ? this.write(buf) : ''; + if (this.lastNeed) return r + this.lastChar.toString('base64', 0, 3 - this.lastNeed); + return r; } -function f2 (x, y, z) { - return (((x) & (y)) | ((~x) & (z))) +// Pass bytes on through for single-byte encodings (e.g. ascii, latin1, hex) +function simpleWrite(buf) { + return buf.toString(this.encoding); } -function f3 (x, y, z) { - return (((x) | (~(y))) ^ (z)) +function simpleEnd(buf) { + return buf && buf.length ? this.write(buf) : ''; } +},{"safe-buffer":181}],176:[function(require,module,exports){ +module.exports = require('./readable').PassThrough -function f4 (x, y, z) { - return (((x) & (z)) | ((y) & (~(z)))) +},{"./readable":177}],177:[function(require,module,exports){ +exports = module.exports = require('./lib/_stream_readable.js'); +exports.Stream = exports; +exports.Readable = exports; +exports.Writable = require('./lib/_stream_writable.js'); +exports.Duplex = require('./lib/_stream_duplex.js'); +exports.Transform = require('./lib/_stream_transform.js'); +exports.PassThrough = require('./lib/_stream_passthrough.js'); + +},{"./lib/_stream_duplex.js":167,"./lib/_stream_passthrough.js":168,"./lib/_stream_readable.js":169,"./lib/_stream_transform.js":170,"./lib/_stream_writable.js":171}],178:[function(require,module,exports){ +module.exports = require('./readable').Transform + +},{"./readable":177}],179:[function(require,module,exports){ +module.exports = require('./lib/_stream_writable.js'); + +},{"./lib/_stream_writable.js":171}],180:[function(require,module,exports){ +(function (Buffer){ +'use strict' +var inherits = require('inherits') +var HashBase = require('hash-base') + +function RIPEMD160 () { + HashBase.call(this, 64) + + // state + this._a = 0x67452301 + this._b = 0xefcdab89 + this._c = 0x98badcfe + this._d = 0x10325476 + this._e = 0xc3d2e1f0 } -function f5 (x, y, z) { - return ((x) ^ ((y) | (~(z)))) +inherits(RIPEMD160, HashBase) + +RIPEMD160.prototype._update = function () { + var m = new Array(16) + for (var i = 0; i < 16; ++i) m[i] = this._block.readInt32LE(i * 4) + + var al = this._a + var bl = this._b + var cl = this._c + var dl = this._d + var el = this._e + + // Mj = 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 + // K = 0x00000000 + // Sj = 11, 14, 15, 12, 5, 8, 7, 9, 11, 13, 14, 15, 6, 7, 9, 8 + al = fn1(al, bl, cl, dl, el, m[0], 0x00000000, 11); cl = rotl(cl, 10) + el = fn1(el, al, bl, cl, dl, m[1], 0x00000000, 14); bl = rotl(bl, 10) + dl = fn1(dl, el, al, bl, cl, m[2], 0x00000000, 15); al = rotl(al, 10) + cl = fn1(cl, dl, el, al, bl, m[3], 0x00000000, 12); el = rotl(el, 10) + bl = fn1(bl, cl, dl, el, al, m[4], 0x00000000, 5); dl = rotl(dl, 10) + al = fn1(al, bl, cl, dl, el, m[5], 0x00000000, 8); cl = rotl(cl, 10) + el = fn1(el, al, bl, cl, dl, m[6], 0x00000000, 7); bl = rotl(bl, 10) + dl = fn1(dl, el, al, bl, cl, m[7], 0x00000000, 9); al = rotl(al, 10) + cl = fn1(cl, dl, el, al, bl, m[8], 0x00000000, 11); el = rotl(el, 10) + bl = fn1(bl, cl, dl, el, al, m[9], 0x00000000, 13); dl = rotl(dl, 10) + al = fn1(al, bl, cl, dl, el, m[10], 0x00000000, 14); cl = rotl(cl, 10) + el = fn1(el, al, bl, cl, dl, m[11], 0x00000000, 15); bl = rotl(bl, 10) + dl = fn1(dl, el, al, bl, cl, m[12], 0x00000000, 6); al = rotl(al, 10) + cl = fn1(cl, dl, el, al, bl, m[13], 0x00000000, 7); el = rotl(el, 10) + bl = fn1(bl, cl, dl, el, al, m[14], 0x00000000, 9); dl = rotl(dl, 10) + al = fn1(al, bl, cl, dl, el, m[15], 0x00000000, 8); cl = rotl(cl, 10) + + // Mj = 7, 4, 13, 1, 10, 6, 15, 3, 12, 0, 9, 5, 2, 14, 11, 8 + // K = 0x5a827999 + // Sj = 7, 6, 8, 13, 11, 9, 7, 15, 7, 12, 15, 9, 11, 7, 13, 12 + el = fn2(el, al, bl, cl, dl, m[7], 0x5a827999, 7); bl = rotl(bl, 10) + dl = fn2(dl, el, al, bl, cl, m[4], 0x5a827999, 6); al = rotl(al, 10) + cl = fn2(cl, dl, el, al, bl, m[13], 0x5a827999, 8); el = rotl(el, 10) + bl = fn2(bl, cl, dl, el, al, m[1], 0x5a827999, 13); dl = rotl(dl, 10) + al = fn2(al, bl, cl, dl, el, m[10], 0x5a827999, 11); cl = rotl(cl, 10) + el = fn2(el, al, bl, cl, dl, m[6], 0x5a827999, 9); bl = rotl(bl, 10) + dl = fn2(dl, el, al, bl, cl, m[15], 0x5a827999, 7); al = rotl(al, 10) + cl = fn2(cl, dl, el, al, bl, m[3], 0x5a827999, 15); el = rotl(el, 10) + bl = fn2(bl, cl, dl, el, al, m[12], 0x5a827999, 7); dl = rotl(dl, 10) + al = fn2(al, bl, cl, dl, el, m[0], 0x5a827999, 12); cl = rotl(cl, 10) + el = fn2(el, al, bl, cl, dl, m[9], 0x5a827999, 15); bl = rotl(bl, 10) + dl = fn2(dl, el, al, bl, cl, m[5], 0x5a827999, 9); al = rotl(al, 10) + cl = fn2(cl, dl, el, al, bl, m[2], 0x5a827999, 11); el = rotl(el, 10) + bl = fn2(bl, cl, dl, el, al, m[14], 0x5a827999, 7); dl = rotl(dl, 10) + al = fn2(al, bl, cl, dl, el, m[11], 0x5a827999, 13); cl = rotl(cl, 10) + el = fn2(el, al, bl, cl, dl, m[8], 0x5a827999, 12); bl = rotl(bl, 10) + + // Mj = 3, 10, 14, 4, 9, 15, 8, 1, 2, 7, 0, 6, 13, 11, 5, 12 + // K = 0x6ed9eba1 + // Sj = 11, 13, 6, 7, 14, 9, 13, 15, 14, 8, 13, 6, 5, 12, 7, 5 + dl = fn3(dl, el, al, bl, cl, m[3], 0x6ed9eba1, 11); al = rotl(al, 10) + cl = fn3(cl, dl, el, al, bl, m[10], 0x6ed9eba1, 13); el = rotl(el, 10) + bl = fn3(bl, cl, dl, el, al, m[14], 0x6ed9eba1, 6); dl = rotl(dl, 10) + al = fn3(al, bl, cl, dl, el, m[4], 0x6ed9eba1, 7); cl = rotl(cl, 10) + el = fn3(el, al, bl, cl, dl, m[9], 0x6ed9eba1, 14); bl = rotl(bl, 10) + dl = fn3(dl, el, al, bl, cl, m[15], 0x6ed9eba1, 9); al = rotl(al, 10) + cl = fn3(cl, dl, el, al, bl, m[8], 0x6ed9eba1, 13); el = rotl(el, 10) + bl = fn3(bl, cl, dl, el, al, m[1], 0x6ed9eba1, 15); dl = rotl(dl, 10) + al = fn3(al, bl, cl, dl, el, m[2], 0x6ed9eba1, 14); cl = rotl(cl, 10) + el = fn3(el, al, bl, cl, dl, m[7], 0x6ed9eba1, 8); bl = rotl(bl, 10) + dl = fn3(dl, el, al, bl, cl, m[0], 0x6ed9eba1, 13); al = rotl(al, 10) + cl = fn3(cl, dl, el, al, bl, m[6], 0x6ed9eba1, 6); el = rotl(el, 10) + bl = fn3(bl, cl, dl, el, al, m[13], 0x6ed9eba1, 5); dl = rotl(dl, 10) + al = fn3(al, bl, cl, dl, el, m[11], 0x6ed9eba1, 12); cl = rotl(cl, 10) + el = fn3(el, al, bl, cl, dl, m[5], 0x6ed9eba1, 7); bl = rotl(bl, 10) + dl = fn3(dl, el, al, bl, cl, m[12], 0x6ed9eba1, 5); al = rotl(al, 10) + + // Mj = 1, 9, 11, 10, 0, 8, 12, 4, 13, 3, 7, 15, 14, 5, 6, 2 + // K = 0x8f1bbcdc + // Sj = 11, 12, 14, 15, 14, 15, 9, 8, 9, 14, 5, 6, 8, 6, 5, 12 + cl = fn4(cl, dl, el, al, bl, m[1], 0x8f1bbcdc, 11); el = rotl(el, 10) + bl = fn4(bl, cl, dl, el, al, m[9], 0x8f1bbcdc, 12); dl = rotl(dl, 10) + al = fn4(al, bl, cl, dl, el, m[11], 0x8f1bbcdc, 14); cl = rotl(cl, 10) + el = fn4(el, al, bl, cl, dl, m[10], 0x8f1bbcdc, 15); bl = rotl(bl, 10) + dl = fn4(dl, el, al, bl, cl, m[0], 0x8f1bbcdc, 14); al = rotl(al, 10) + cl = fn4(cl, dl, el, al, bl, m[8], 0x8f1bbcdc, 15); el = rotl(el, 10) + bl = fn4(bl, cl, dl, el, al, m[12], 0x8f1bbcdc, 9); dl = rotl(dl, 10) + al = fn4(al, bl, cl, dl, el, m[4], 0x8f1bbcdc, 8); cl = rotl(cl, 10) + el = fn4(el, al, bl, cl, dl, m[13], 0x8f1bbcdc, 9); bl = rotl(bl, 10) + dl = fn4(dl, el, al, bl, cl, m[3], 0x8f1bbcdc, 14); al = rotl(al, 10) + cl = fn4(cl, dl, el, al, bl, m[7], 0x8f1bbcdc, 5); el = rotl(el, 10) + bl = fn4(bl, cl, dl, el, al, m[15], 0x8f1bbcdc, 6); dl = rotl(dl, 10) + al = fn4(al, bl, cl, dl, el, m[14], 0x8f1bbcdc, 8); cl = rotl(cl, 10) + el = fn4(el, al, bl, cl, dl, m[5], 0x8f1bbcdc, 6); bl = rotl(bl, 10) + dl = fn4(dl, el, al, bl, cl, m[6], 0x8f1bbcdc, 5); al = rotl(al, 10) + cl = fn4(cl, dl, el, al, bl, m[2], 0x8f1bbcdc, 12); el = rotl(el, 10) + + // Mj = 4, 0, 5, 9, 7, 12, 2, 10, 14, 1, 3, 8, 11, 6, 15, 13 + // K = 0xa953fd4e + // Sj = 9, 15, 5, 11, 6, 8, 13, 12, 5, 12, 13, 14, 11, 8, 5, 6 + bl = fn5(bl, cl, dl, el, al, m[4], 0xa953fd4e, 9); dl = rotl(dl, 10) + al = fn5(al, bl, cl, dl, el, m[0], 0xa953fd4e, 15); cl = rotl(cl, 10) + el = fn5(el, al, bl, cl, dl, m[5], 0xa953fd4e, 5); bl = rotl(bl, 10) + dl = fn5(dl, el, al, bl, cl, m[9], 0xa953fd4e, 11); al = rotl(al, 10) + cl = fn5(cl, dl, el, al, bl, m[7], 0xa953fd4e, 6); el = rotl(el, 10) + bl = fn5(bl, cl, dl, el, al, m[12], 0xa953fd4e, 8); dl = rotl(dl, 10) + al = fn5(al, bl, cl, dl, el, m[2], 0xa953fd4e, 13); cl = rotl(cl, 10) + el = fn5(el, al, bl, cl, dl, m[10], 0xa953fd4e, 12); bl = rotl(bl, 10) + dl = fn5(dl, el, al, bl, cl, m[14], 0xa953fd4e, 5); al = rotl(al, 10) + cl = fn5(cl, dl, el, al, bl, m[1], 0xa953fd4e, 12); el = rotl(el, 10) + bl = fn5(bl, cl, dl, el, al, m[3], 0xa953fd4e, 13); dl = rotl(dl, 10) + al = fn5(al, bl, cl, dl, el, m[8], 0xa953fd4e, 14); cl = rotl(cl, 10) + el = fn5(el, al, bl, cl, dl, m[11], 0xa953fd4e, 11); bl = rotl(bl, 10) + dl = fn5(dl, el, al, bl, cl, m[6], 0xa953fd4e, 8); al = rotl(al, 10) + cl = fn5(cl, dl, el, al, bl, m[15], 0xa953fd4e, 5); el = rotl(el, 10) + bl = fn5(bl, cl, dl, el, al, m[13], 0xa953fd4e, 6); dl = rotl(dl, 10) + + var ar = this._a + var br = this._b + var cr = this._c + var dr = this._d + var er = this._e + + // M'j = 5, 14, 7, 0, 9, 2, 11, 4, 13, 6, 15, 8, 1, 10, 3, 12 + // K' = 0x50a28be6 + // S'j = 8, 9, 9, 11, 13, 15, 15, 5, 7, 7, 8, 11, 14, 14, 12, 6 + ar = fn5(ar, br, cr, dr, er, m[5], 0x50a28be6, 8); cr = rotl(cr, 10) + er = fn5(er, ar, br, cr, dr, m[14], 0x50a28be6, 9); br = rotl(br, 10) + dr = fn5(dr, er, ar, br, cr, m[7], 0x50a28be6, 9); ar = rotl(ar, 10) + cr = fn5(cr, dr, er, ar, br, m[0], 0x50a28be6, 11); er = rotl(er, 10) + br = fn5(br, cr, dr, er, ar, m[9], 0x50a28be6, 13); dr = rotl(dr, 10) + ar = fn5(ar, br, cr, dr, er, m[2], 0x50a28be6, 15); cr = rotl(cr, 10) + er = fn5(er, ar, br, cr, dr, m[11], 0x50a28be6, 15); br = rotl(br, 10) + dr = fn5(dr, er, ar, br, cr, m[4], 0x50a28be6, 5); ar = rotl(ar, 10) + cr = fn5(cr, dr, er, ar, br, m[13], 0x50a28be6, 7); er = rotl(er, 10) + br = fn5(br, cr, dr, er, ar, m[6], 0x50a28be6, 7); dr = rotl(dr, 10) + ar = fn5(ar, br, cr, dr, er, m[15], 0x50a28be6, 8); cr = rotl(cr, 10) + er = fn5(er, ar, br, cr, dr, m[8], 0x50a28be6, 11); br = rotl(br, 10) + dr = fn5(dr, er, ar, br, cr, m[1], 0x50a28be6, 14); ar = rotl(ar, 10) + cr = fn5(cr, dr, er, ar, br, m[10], 0x50a28be6, 14); er = rotl(er, 10) + br = fn5(br, cr, dr, er, ar, m[3], 0x50a28be6, 12); dr = rotl(dr, 10) + ar = fn5(ar, br, cr, dr, er, m[12], 0x50a28be6, 6); cr = rotl(cr, 10) + + // M'j = 6, 11, 3, 7, 0, 13, 5, 10, 14, 15, 8, 12, 4, 9, 1, 2 + // K' = 0x5c4dd124 + // S'j = 9, 13, 15, 7, 12, 8, 9, 11, 7, 7, 12, 7, 6, 15, 13, 11 + er = fn4(er, ar, br, cr, dr, m[6], 0x5c4dd124, 9); br = rotl(br, 10) + dr = fn4(dr, er, ar, br, cr, m[11], 0x5c4dd124, 13); ar = rotl(ar, 10) + cr = fn4(cr, dr, er, ar, br, m[3], 0x5c4dd124, 15); er = rotl(er, 10) + br = fn4(br, cr, dr, er, ar, m[7], 0x5c4dd124, 7); dr = rotl(dr, 10) + ar = fn4(ar, br, cr, dr, er, m[0], 0x5c4dd124, 12); cr = rotl(cr, 10) + er = fn4(er, ar, br, cr, dr, m[13], 0x5c4dd124, 8); br = rotl(br, 10) + dr = fn4(dr, er, ar, br, cr, m[5], 0x5c4dd124, 9); ar = rotl(ar, 10) + cr = fn4(cr, dr, er, ar, br, m[10], 0x5c4dd124, 11); er = rotl(er, 10) + br = fn4(br, cr, dr, er, ar, m[14], 0x5c4dd124, 7); dr = rotl(dr, 10) + ar = fn4(ar, br, cr, dr, er, m[15], 0x5c4dd124, 7); cr = rotl(cr, 10) + er = fn4(er, ar, br, cr, dr, m[8], 0x5c4dd124, 12); br = rotl(br, 10) + dr = fn4(dr, er, ar, br, cr, m[12], 0x5c4dd124, 7); ar = rotl(ar, 10) + cr = fn4(cr, dr, er, ar, br, m[4], 0x5c4dd124, 6); er = rotl(er, 10) + br = fn4(br, cr, dr, er, ar, m[9], 0x5c4dd124, 15); dr = rotl(dr, 10) + ar = fn4(ar, br, cr, dr, er, m[1], 0x5c4dd124, 13); cr = rotl(cr, 10) + er = fn4(er, ar, br, cr, dr, m[2], 0x5c4dd124, 11); br = rotl(br, 10) + + // M'j = 15, 5, 1, 3, 7, 14, 6, 9, 11, 8, 12, 2, 10, 0, 4, 13 + // K' = 0x6d703ef3 + // S'j = 9, 7, 15, 11, 8, 6, 6, 14, 12, 13, 5, 14, 13, 13, 7, 5 + dr = fn3(dr, er, ar, br, cr, m[15], 0x6d703ef3, 9); ar = rotl(ar, 10) + cr = fn3(cr, dr, er, ar, br, m[5], 0x6d703ef3, 7); er = rotl(er, 10) + br = fn3(br, cr, dr, er, ar, m[1], 0x6d703ef3, 15); dr = rotl(dr, 10) + ar = fn3(ar, br, cr, dr, er, m[3], 0x6d703ef3, 11); cr = rotl(cr, 10) + er = fn3(er, ar, br, cr, dr, m[7], 0x6d703ef3, 8); br = rotl(br, 10) + dr = fn3(dr, er, ar, br, cr, m[14], 0x6d703ef3, 6); ar = rotl(ar, 10) + cr = fn3(cr, dr, er, ar, br, m[6], 0x6d703ef3, 6); er = rotl(er, 10) + br = fn3(br, cr, dr, er, ar, m[9], 0x6d703ef3, 14); dr = rotl(dr, 10) + ar = fn3(ar, br, cr, dr, er, m[11], 0x6d703ef3, 12); cr = rotl(cr, 10) + er = fn3(er, ar, br, cr, dr, m[8], 0x6d703ef3, 13); br = rotl(br, 10) + dr = fn3(dr, er, ar, br, cr, m[12], 0x6d703ef3, 5); ar = rotl(ar, 10) + cr = fn3(cr, dr, er, ar, br, m[2], 0x6d703ef3, 14); er = rotl(er, 10) + br = fn3(br, cr, dr, er, ar, m[10], 0x6d703ef3, 13); dr = rotl(dr, 10) + ar = fn3(ar, br, cr, dr, er, m[0], 0x6d703ef3, 13); cr = rotl(cr, 10) + er = fn3(er, ar, br, cr, dr, m[4], 0x6d703ef3, 7); br = rotl(br, 10) + dr = fn3(dr, er, ar, br, cr, m[13], 0x6d703ef3, 5); ar = rotl(ar, 10) + + // M'j = 8, 6, 4, 1, 3, 11, 15, 0, 5, 12, 2, 13, 9, 7, 10, 14 + // K' = 0x7a6d76e9 + // S'j = 15, 5, 8, 11, 14, 14, 6, 14, 6, 9, 12, 9, 12, 5, 15, 8 + cr = fn2(cr, dr, er, ar, br, m[8], 0x7a6d76e9, 15); er = rotl(er, 10) + br = fn2(br, cr, dr, er, ar, m[6], 0x7a6d76e9, 5); dr = rotl(dr, 10) + ar = fn2(ar, br, cr, dr, er, m[4], 0x7a6d76e9, 8); cr = rotl(cr, 10) + er = fn2(er, ar, br, cr, dr, m[1], 0x7a6d76e9, 11); br = rotl(br, 10) + dr = fn2(dr, er, ar, br, cr, m[3], 0x7a6d76e9, 14); ar = rotl(ar, 10) + cr = fn2(cr, dr, er, ar, br, m[11], 0x7a6d76e9, 14); er = rotl(er, 10) + br = fn2(br, cr, dr, er, ar, m[15], 0x7a6d76e9, 6); dr = rotl(dr, 10) + ar = fn2(ar, br, cr, dr, er, m[0], 0x7a6d76e9, 14); cr = rotl(cr, 10) + er = fn2(er, ar, br, cr, dr, m[5], 0x7a6d76e9, 6); br = rotl(br, 10) + dr = fn2(dr, er, ar, br, cr, m[12], 0x7a6d76e9, 9); ar = rotl(ar, 10) + cr = fn2(cr, dr, er, ar, br, m[2], 0x7a6d76e9, 12); er = rotl(er, 10) + br = fn2(br, cr, dr, er, ar, m[13], 0x7a6d76e9, 9); dr = rotl(dr, 10) + ar = fn2(ar, br, cr, dr, er, m[9], 0x7a6d76e9, 12); cr = rotl(cr, 10) + er = fn2(er, ar, br, cr, dr, m[7], 0x7a6d76e9, 5); br = rotl(br, 10) + dr = fn2(dr, er, ar, br, cr, m[10], 0x7a6d76e9, 15); ar = rotl(ar, 10) + cr = fn2(cr, dr, er, ar, br, m[14], 0x7a6d76e9, 8); er = rotl(er, 10) + + // M'j = 12, 15, 10, 4, 1, 5, 8, 7, 6, 2, 13, 14, 0, 3, 9, 11 + // K' = 0x00000000 + // S'j = 8, 5, 12, 9, 12, 5, 14, 6, 8, 13, 6, 5, 15, 13, 11, 11 + br = fn1(br, cr, dr, er, ar, m[12], 0x00000000, 8); dr = rotl(dr, 10) + ar = fn1(ar, br, cr, dr, er, m[15], 0x00000000, 5); cr = rotl(cr, 10) + er = fn1(er, ar, br, cr, dr, m[10], 0x00000000, 12); br = rotl(br, 10) + dr = fn1(dr, er, ar, br, cr, m[4], 0x00000000, 9); ar = rotl(ar, 10) + cr = fn1(cr, dr, er, ar, br, m[1], 0x00000000, 12); er = rotl(er, 10) + br = fn1(br, cr, dr, er, ar, m[5], 0x00000000, 5); dr = rotl(dr, 10) + ar = fn1(ar, br, cr, dr, er, m[8], 0x00000000, 14); cr = rotl(cr, 10) + er = fn1(er, ar, br, cr, dr, m[7], 0x00000000, 6); br = rotl(br, 10) + dr = fn1(dr, er, ar, br, cr, m[6], 0x00000000, 8); ar = rotl(ar, 10) + cr = fn1(cr, dr, er, ar, br, m[2], 0x00000000, 13); er = rotl(er, 10) + br = fn1(br, cr, dr, er, ar, m[13], 0x00000000, 6); dr = rotl(dr, 10) + ar = fn1(ar, br, cr, dr, er, m[14], 0x00000000, 5); cr = rotl(cr, 10) + er = fn1(er, ar, br, cr, dr, m[0], 0x00000000, 15); br = rotl(br, 10) + dr = fn1(dr, er, ar, br, cr, m[3], 0x00000000, 13); ar = rotl(ar, 10) + cr = fn1(cr, dr, er, ar, br, m[9], 0x00000000, 11); er = rotl(er, 10) + br = fn1(br, cr, dr, er, ar, m[11], 0x00000000, 11); dr = rotl(dr, 10) + + // change state + var t = (this._b + cl + dr) | 0 + this._b = (this._c + dl + er) | 0 + this._c = (this._d + el + ar) | 0 + this._d = (this._e + al + br) | 0 + this._e = (this._a + bl + cr) | 0 + this._a = t +} + +RIPEMD160.prototype._digest = function () { + // create padding and handle blocks + this._block[this._blockOffset++] = 0x80 + if (this._blockOffset > 56) { + this._block.fill(0, this._blockOffset, 64) + this._update() + this._blockOffset = 0 + } + + this._block.fill(0, this._blockOffset, 56) + this._block.writeUInt32LE(this._length[0], 56) + this._block.writeUInt32LE(this._length[1], 60) + this._update() + + // produce result + var buffer = new Buffer(20) + buffer.writeInt32LE(this._a, 0) + buffer.writeInt32LE(this._b, 4) + buffer.writeInt32LE(this._c, 8) + buffer.writeInt32LE(this._d, 12) + buffer.writeInt32LE(this._e, 16) + return buffer } function rotl (x, n) { return (x << n) | (x >>> (32 - n)) } -function ripemd160 (message) { - var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0] +function fn1 (a, b, c, d, e, m, k, s) { + return (rotl((a + (b ^ c ^ d) + m + k) | 0, s) + e) | 0 +} - if (typeof message === 'string') { - message = new Buffer(message, 'utf8') - } +function fn2 (a, b, c, d, e, m, k, s) { + return (rotl((a + ((b & c) | ((~b) & d)) + m + k) | 0, s) + e) | 0 +} - var m = bytesToWords(message) +function fn3 (a, b, c, d, e, m, k, s) { + return (rotl((a + ((b | (~c)) ^ d) + m + k) | 0, s) + e) | 0 +} - var nBitsLeft = message.length * 8 - var nBitsTotal = message.length * 8 +function fn4 (a, b, c, d, e, m, k, s) { + return (rotl((a + ((b & d) | (c & (~d))) + m + k) | 0, s) + e) | 0 +} - // Add padding - m[nBitsLeft >>> 5] |= 0x80 << (24 - nBitsLeft % 32) - m[(((nBitsLeft + 64) >>> 9) << 4) + 14] = ( - (((nBitsTotal << 8) | (nBitsTotal >>> 24)) & 0x00ff00ff) | - (((nBitsTotal << 24) | (nBitsTotal >>> 8)) & 0xff00ff00) - ) +function fn5 (a, b, c, d, e, m, k, s) { + return (rotl((a + (b ^ (c | (~d))) + m + k) | 0, s) + e) | 0 +} + +module.exports = RIPEMD160 + +}).call(this,require("buffer").Buffer) +},{"buffer":50,"hash-base":123,"inherits":139}],181:[function(require,module,exports){ +/* eslint-disable node/no-deprecated-api */ +var buffer = require('buffer') +var Buffer = buffer.Buffer - for (var i = 0; i < m.length; i += 16) { - processBlock(H, m, i) +// alternative to using Object.keys for old browsers +function copyProps (src, dst) { + for (var key in src) { + dst[key] = src[key] } +} +if (Buffer.from && Buffer.alloc && Buffer.allocUnsafe && Buffer.allocUnsafeSlow) { + module.exports = buffer +} else { + // Copy properties from require('buffer') + copyProps(buffer, exports) + exports.Buffer = SafeBuffer +} + +function SafeBuffer (arg, encodingOrOffset, length) { + return Buffer(arg, encodingOrOffset, length) +} - // swap endian - for (i = 0; i < 5; i++) { - // shortcut - var H_i = H[i] +// Copy static methods from Buffer +copyProps(Buffer, SafeBuffer) - // Swap - H[i] = (((H_i << 8) | (H_i >>> 24)) & 0x00ff00ff) | - (((H_i << 24) | (H_i >>> 8)) & 0xff00ff00) +SafeBuffer.from = function (arg, encodingOrOffset, length) { + if (typeof arg === 'number') { + throw new TypeError('Argument must not be a number') + } + return Buffer(arg, encodingOrOffset, length) +} + +SafeBuffer.alloc = function (size, fill, encoding) { + if (typeof size !== 'number') { + throw new TypeError('Argument must be a number') } + var buf = Buffer(size) + if (fill !== undefined) { + if (typeof encoding === 'string') { + buf.fill(fill, encoding) + } else { + buf.fill(fill) + } + } else { + buf.fill(0) + } + return buf +} - var digestbytes = wordsToBytes(H) - return new Buffer(digestbytes) +SafeBuffer.allocUnsafe = function (size) { + if (typeof size !== 'number') { + throw new TypeError('Argument must be a number') + } + return Buffer(size) } -module.exports = ripemd160 +SafeBuffer.allocUnsafeSlow = function (size) { + if (typeof size !== 'number') { + throw new TypeError('Argument must be a number') + } + return buffer.SlowBuffer(size) +} -}).call(this,require("buffer").Buffer) -},{"buffer":50}],165:[function(require,module,exports){ +},{"buffer":50}],182:[function(require,module,exports){ (function (Buffer){ // prototype class for hash functions function Hash (blockSize, finalSize) { @@ -65998,7 +63232,7 @@ Hash.prototype._update = function () { module.exports = Hash }).call(this,require("buffer").Buffer) -},{"buffer":50}],166:[function(require,module,exports){ +},{"buffer":50}],183:[function(require,module,exports){ var exports = module.exports = function SHA (algorithm) { algorithm = algorithm.toLowerCase() @@ -66015,7 +63249,7 @@ exports.sha256 = require('./sha256') exports.sha384 = require('./sha384') exports.sha512 = require('./sha512') -},{"./sha":167,"./sha1":168,"./sha224":169,"./sha256":170,"./sha384":171,"./sha512":172}],167:[function(require,module,exports){ +},{"./sha":184,"./sha1":185,"./sha224":186,"./sha256":187,"./sha384":188,"./sha512":189}],184:[function(require,module,exports){ (function (Buffer){ /* * A JavaScript implementation of the Secure Hash Algorithm, SHA-0, as defined @@ -66112,7 +63346,7 @@ Sha.prototype._hash = function () { module.exports = Sha }).call(this,require("buffer").Buffer) -},{"./hash":165,"buffer":50,"inherits":131}],168:[function(require,module,exports){ +},{"./hash":182,"buffer":50,"inherits":139}],185:[function(require,module,exports){ (function (Buffer){ /* * A JavaScript implementation of the Secure Hash Algorithm, SHA-1, as defined @@ -66214,7 +63448,7 @@ Sha1.prototype._hash = function () { module.exports = Sha1 }).call(this,require("buffer").Buffer) -},{"./hash":165,"buffer":50,"inherits":131}],169:[function(require,module,exports){ +},{"./hash":182,"buffer":50,"inherits":139}],186:[function(require,module,exports){ (function (Buffer){ /** * A JavaScript implementation of the Secure Hash Algorithm, SHA-256, as defined @@ -66270,7 +63504,7 @@ Sha224.prototype._hash = function () { module.exports = Sha224 }).call(this,require("buffer").Buffer) -},{"./hash":165,"./sha256":170,"buffer":50,"inherits":131}],170:[function(require,module,exports){ +},{"./hash":182,"./sha256":187,"buffer":50,"inherits":139}],187:[function(require,module,exports){ (function (Buffer){ /** * A JavaScript implementation of the Secure Hash Algorithm, SHA-256, as defined @@ -66408,7 +63642,7 @@ Sha256.prototype._hash = function () { module.exports = Sha256 }).call(this,require("buffer").Buffer) -},{"./hash":165,"buffer":50,"inherits":131}],171:[function(require,module,exports){ +},{"./hash":182,"buffer":50,"inherits":139}],188:[function(require,module,exports){ (function (Buffer){ var inherits = require('inherits') var SHA512 = require('./sha512') @@ -66468,7 +63702,7 @@ Sha384.prototype._hash = function () { module.exports = Sha384 }).call(this,require("buffer").Buffer) -},{"./hash":165,"./sha512":172,"buffer":50,"inherits":131}],172:[function(require,module,exports){ +},{"./hash":182,"./sha512":189,"buffer":50,"inherits":139}],189:[function(require,module,exports){ (function (Buffer){ var inherits = require('inherits') var Hash = require('./hash') @@ -66731,7 +63965,7 @@ Sha512.prototype._hash = function () { module.exports = Sha512 }).call(this,require("buffer").Buffer) -},{"./hash":165,"buffer":50,"inherits":131}],173:[function(require,module,exports){ +},{"./hash":182,"buffer":50,"inherits":139}],190:[function(require,module,exports){ // Copyright Joyent, Inc. and other Node contributors. // // Permission is hereby granted, free of charge, to any person obtaining a @@ -66860,7 +64094,7 @@ Stream.prototype.pipe = function(dest, options) { return dest; }; -},{"events":121,"inherits":131,"readable-stream/duplex.js":153,"readable-stream/passthrough.js":160,"readable-stream/readable.js":161,"readable-stream/transform.js":162,"readable-stream/writable.js":163}],174:[function(require,module,exports){ +},{"events":121,"inherits":139,"readable-stream/duplex.js":166,"readable-stream/passthrough.js":176,"readable-stream/readable.js":177,"readable-stream/transform.js":178,"readable-stream/writable.js":179}],191:[function(require,module,exports){ // Copyright Joyent, Inc. and other Node contributors. // // Permission is hereby granted, free of charge, to any person obtaining a @@ -67083,9 +64317,9 @@ function base64DetectIncompleteChar(buffer) { this.charLength = this.charReceived ? 3 : 0; } -},{"buffer":50}],175:[function(require,module,exports){ -arguments[4][92][0].apply(exports,arguments) -},{"./lib/type":176,"dup":92}],176:[function(require,module,exports){ +},{"buffer":50}],192:[function(require,module,exports){ +arguments[4][93][0].apply(exports,arguments) +},{"./lib/type":193,"dup":93}],193:[function(require,module,exports){ /*! * type-detect * Copyright(c) 2013 jake luer @@ -67221,7 +64455,7 @@ Library.prototype.test = function(obj, type) { } }; -},{}],177:[function(require,module,exports){ +},{}],194:[function(require,module,exports){ (function (global){ /** @@ -67292,7 +64526,7 @@ function config (name) { } }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{}],178:[function(require,module,exports){ +},{}],195:[function(require,module,exports){ var indexOf = require('indexof'); var Object_keys = function (obj) { @@ -67432,7 +64666,7 @@ exports.createContext = Script.createContext = function (context) { return copy; }; -},{"indexof":130}],179:[function(require,module,exports){ +},{"indexof":138}],196:[function(require,module,exports){ var bundleFn = arguments[3]; var sources = arguments[4]; var cache = arguments[5]; @@ -67515,7 +64749,7 @@ module.exports = function (fn, options) { return worker; }; -},{}],180:[function(require,module,exports){ +},{}],197:[function(require,module,exports){ var BaseKeyType = { OURS: 1, THEIRS: 2 @@ -67523,7 +64757,7 @@ var BaseKeyType = { module.exports = BaseKeyType; -},{}],181:[function(require,module,exports){ +},{}],198:[function(require,module,exports){ var ChainType = { SENDING: 1, RECEIVING: 2 @@ -67531,7 +64765,7 @@ var ChainType = { module.exports = ChainType; -},{}],182:[function(require,module,exports){ +},{}],199:[function(require,module,exports){ 'use strict'; var Crypto = require('crypto'); @@ -67649,7 +64883,7 @@ module.exports = { libsignal_Curve_async: libsignal_Curve_async }; -},{"./curve25519_wrapper.js":193,"crypto":89}],183:[function(require,module,exports){ +},{"./curve25519_wrapper.js":210,"crypto":90}],200:[function(require,module,exports){ var Crypto = require('./crypto.js'); function isNonNegativeInteger(n) { @@ -67703,7 +64937,7 @@ var KeyHelper = { module.exports = KeyHelper; -},{"./crypto.js":190}],184:[function(require,module,exports){ +},{"./crypto.js":207}],201:[function(require,module,exports){ var VERSION = 0; var Crypto = require('./crypto.js'); @@ -67778,7 +65012,7 @@ FingerprintGenerator.prototype = { module.exports = FingerprintGenerator; -},{"../build/dcodeIO.js":2,"./crypto.js":190}],185:[function(require,module,exports){ +},{"../build/dcodeIO.js":2,"./crypto.js":207}],202:[function(require,module,exports){ var SessionLock = require('./SessionLock.js'); var Crypto = require('./crypto.js'); var SessionRecord = require('./SessionRecord.js'); @@ -68010,7 +65244,7 @@ var mySessionBuilder = function (storage, remoteAddress) { module.exports = mySessionBuilder; -},{"./BaseKeyType.js":180,"./ChainType.js":181,"./SessionLock.js":187,"./SessionRecord.js":188,"./crypto.js":190,"./helpers.js":195}],186:[function(require,module,exports){ +},{"./BaseKeyType.js":197,"./ChainType.js":198,"./SessionLock.js":204,"./SessionRecord.js":205,"./crypto.js":207,"./helpers.js":212}],203:[function(require,module,exports){ var util = require('../src/helpers.js'); var SessionLock = require('./SessionLock.js'); @@ -68021,25 +65255,32 @@ var ChainType = require('./ChainType.js'); var protobuf = require('../build/protobufs_concat.js'); var dcodeIO = require('../build/dcodeIO.js'); -function SessionCipher(storage, remoteAddress) { +function SessionCipher(storage, remoteAddress, options) { + options = options || {}; + + if (typeof options.messageKeysLimit === 'undefined') { + options.messageKeysLimit = 1000; + } + + this.messageKeysLimit = options.messageKeysLimit; this.remoteAddress = remoteAddress; this.storage = storage; } SessionCipher.prototype = { getRecord: function(encodedNumber) { - return this.storage.loadSession(encodedNumber).then(function(serialized) { - if (serialized === undefined) { - return undefined; - } - return SessionRecord.deserialize(serialized); - }); + return this.storage.loadSession(encodedNumber).then(function(serialized) { + if (serialized === undefined) { + return undefined; + } + return SessionRecord.deserialize(serialized); + }); }, encrypt: function(buffer, encoding) { buffer = dcodeIO.ByteBuffer.wrap(buffer, encoding).toArrayBuffer(); return SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { if (!(buffer instanceof ArrayBuffer)) { - throw new Error("Expected buffer to be an ArrayBuffer"); + throw new Error("Expected buffer to be an ArrayBuffer"); } var address = this.remoteAddress.toString(); @@ -68048,88 +65289,88 @@ SessionCipher.prototype = { var msg = new protobuf.WhisperMessage(); return Promise.all([ - this.storage.getIdentityKeyPair(), - this.storage.getLocalRegistrationId(), - this.getRecord(address) + this.storage.getIdentityKeyPair(), + this.storage.getLocalRegistrationId(), + this.getRecord(address) ]).then(function(results) { - ourIdentityKey = results[0]; - myRegistrationId = results[1]; - record = results[2]; - if (!record) { - throw new Error("No record for " + address); - } - session = record.getOpenSession(); - if (!session) { - throw new Error("No session to encrypt message for " + address); - } + ourIdentityKey = results[0]; + myRegistrationId = results[1]; + record = results[2]; + if (!record) { + throw new Error("No record for " + address); + } + session = record.getOpenSession(); + if (!session) { + throw new Error("No session to encrypt message for " + address); + } - msg.ephemeralKey = util.toArrayBuffer( - session.currentRatchet.ephemeralKeyPair.pubKey - ); - chain = session[util.toString(msg.ephemeralKey)]; - if (chain.chainType === ChainType.RECEIVING) { - throw new Error("Tried to encrypt on a receiving chain"); - } + msg.ephemeralKey = util.toArrayBuffer( + session.currentRatchet.ephemeralKeyPair.pubKey + ); + chain = session[util.toString(msg.ephemeralKey)]; + if (chain.chainType === ChainType.RECEIVING) { + throw new Error("Tried to encrypt on a receiving chain"); + } - return this.fillMessageKeys(chain, chain.chainKey.counter + 1); + return this.fillMessageKeys(chain, chain.chainKey.counter + 1); }.bind(this)).then(function() { - return Crypto.HKDF( - util.toArrayBuffer(chain.messageKeys[chain.chainKey.counter]), - new ArrayBuffer(32), "WhisperMessageKeys"); + return Crypto.HKDF( + util.toArrayBuffer(chain.messageKeys[chain.chainKey.counter]), + new ArrayBuffer(32), "WhisperMessageKeys"); }).then(function(keys) { - delete chain.messageKeys[chain.chainKey.counter]; - msg.counter = chain.chainKey.counter; - msg.previousCounter = session.currentRatchet.previousCounter; - - return Crypto.crypto.encrypt( - keys[0], buffer, keys[2].slice(0, 16) - ).then(function(ciphertext) { - msg.ciphertext = ciphertext; - var encodedMsg = msg.toArrayBuffer(); - - var macInput = new Uint8Array(encodedMsg.byteLength + 33*2 + 1); - macInput.set(new Uint8Array(util.toArrayBuffer(ourIdentityKey.pubKey))); - macInput.set(new Uint8Array(util.toArrayBuffer(session.indexInfo.remoteIdentityKey)), 33); - macInput[33*2] = (3 << 4) | 3; - macInput.set(new Uint8Array(encodedMsg), 33*2 + 1); - - return Crypto.crypto.sign(keys[1], macInput.buffer).then(function(mac) { - var result = new Uint8Array(encodedMsg.byteLength + 9); - result[0] = (3 << 4) | 3; - result.set(new Uint8Array(encodedMsg), 1); - result.set(new Uint8Array(mac, 0, 8), encodedMsg.byteLength + 1); - - record.updateSessionState(session); - return this.storage.storeSession(address, record.serialize()).then(function() { - return result; - }); - }.bind(this)); + delete chain.messageKeys[chain.chainKey.counter]; + msg.counter = chain.chainKey.counter; + msg.previousCounter = session.currentRatchet.previousCounter; + + return Crypto.crypto.encrypt( + keys[0], buffer, keys[2].slice(0, 16) + ).then(function(ciphertext) { + msg.ciphertext = ciphertext; + var encodedMsg = msg.toArrayBuffer(); + + var macInput = new Uint8Array(encodedMsg.byteLength + 33*2 + 1); + macInput.set(new Uint8Array(util.toArrayBuffer(ourIdentityKey.pubKey))); + macInput.set(new Uint8Array(util.toArrayBuffer(session.indexInfo.remoteIdentityKey)), 33); + macInput[33*2] = (3 << 4) | 3; + macInput.set(new Uint8Array(encodedMsg), 33*2 + 1); + + return Crypto.crypto.sign(keys[1], macInput.buffer).then(function(mac) { + var result = new Uint8Array(encodedMsg.byteLength + 9); + result[0] = (3 << 4) | 3; + result.set(new Uint8Array(encodedMsg), 1); + result.set(new Uint8Array(mac, 0, 8), encodedMsg.byteLength + 1); + + record.updateSessionState(session); + return this.storage.storeSession(address, record.serialize()).then(function() { + return result; + }); }.bind(this)); + }.bind(this)); }.bind(this)).then(function(message) { - if (session.pendingPreKey !== undefined) { - var preKeyMsg = new protobuf.PreKeyWhisperMessage(); - preKeyMsg.identityKey = util.toArrayBuffer(ourIdentityKey.pubKey); - preKeyMsg.registrationId = myRegistrationId; - - preKeyMsg.baseKey = util.toArrayBuffer(session.pendingPreKey.baseKey); - preKeyMsg.preKeyId = session.pendingPreKey.preKeyId; - preKeyMsg.signedPreKeyId = session.pendingPreKey.signedKeyId; - - preKeyMsg.message = message; - var result = String.fromCharCode((3 << 4) | 3) + util.toString(preKeyMsg.encode()); - return { - type : 3, - body : result, - registrationId : record.registrationId - }; + if (session.pendingPreKey !== undefined) { + var preKeyMsg = new protobuf.PreKeyWhisperMessage(); + preKeyMsg.identityKey = util.toArrayBuffer(ourIdentityKey.pubKey); + preKeyMsg.registrationId = myRegistrationId; - } else { - return { - type : 1, - body : util.toString(message), - registrationId : record.registrationId - }; - } + preKeyMsg.baseKey = util.toArrayBuffer(session.pendingPreKey.baseKey); + preKeyMsg.preKeyId = session.pendingPreKey.preKeyId; + preKeyMsg.signedPreKeyId = session.pendingPreKey.signedKeyId; + + preKeyMsg.message = message; + var result = String.fromCharCode((3 << 4) | 3) + util.toString(preKeyMsg.encode()); + return { + type : 3, + body : result, + registrationId : record.registrationId + }; + + } else { + return { + type : 1, + body : util.toString(message), + registrationId : record.registrationId + }; + } }); }.bind(this)); }, @@ -68138,82 +65379,82 @@ SessionCipher.prototype = { // using each one at a time. Stop and return the result if we get // a valid result if (sessionList.length === 0) { - return Promise.reject(errors[0]); + return Promise.reject(errors[0]); } var session = sessionList.pop(); return this.doDecryptWhisperMessage(buffer, session).then(function(plaintext) { - return { plaintext: plaintext, session: session }; + return { plaintext: plaintext, session: session }; }).catch(function(e) { - errors.push(e); - return this.decryptWithSessionList(buffer, sessionList, errors); + errors.push(e); + return this.decryptWithSessionList(buffer, sessionList, errors); }.bind(this)); }, decryptWhisperMessage: function(buffer, encoding) { - buffer = dcodeIO.ByteBuffer.wrap(buffer, encoding).toArrayBuffer(); - return SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { - var address = this.remoteAddress.toString(); - return this.getRecord(address).then(function(record) { - if (!record) { - throw new Error("No record for device " + address); - } - var errors = []; - return this.decryptWithSessionList(buffer, record.getSessions(), errors).then(function(result) { - return this.getRecord(address).then(function(record) { - record.updateSessionState(result.session); - return this.storage.storeSession(address, record.serialize()).then(function() { - return result.plaintext; - }); - }.bind(this)); - }.bind(this)); + buffer = dcodeIO.ByteBuffer.wrap(buffer, encoding).toArrayBuffer(); + return SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { + var address = this.remoteAddress.toString(); + return this.getRecord(address).then(function(record) { + if (!record) { + throw new Error("No record for device " + address); + } + var errors = []; + return this.decryptWithSessionList(buffer, record.getSessions(), errors).then(function(result) { + return this.getRecord(address).then(function(record) { + record.updateSessionState(result.session); + return this.storage.storeSession(address, record.serialize()).then(function() { + return result.plaintext; + }); + }.bind(this)); }.bind(this)); }.bind(this)); + }.bind(this)); }, decryptPreKeyWhisperMessage: function(buffer, encoding) { - buffer = dcodeIO.ByteBuffer.wrap(buffer, encoding); - var version = buffer.readUint8(); - if ((version & 0xF) > 3 || (version >> 4) < 3) { // min version > 3 or max version < 3 - throw new Error("Incompatible version number on PreKeyWhisperMessage"); - } - return SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { - var address = this.remoteAddress.toString(); - return this.getRecord(address).then(function(record) { - var preKeyProto = protobuf.PreKeyWhisperMessage.decode(buffer); - if (!record) { - if (preKeyProto.registrationId === undefined) { - throw new Error("No registrationId"); - } - record = new SessionRecord( - util.toString(preKeyProto.identityKey), - preKeyProto.registrationId - ); + buffer = dcodeIO.ByteBuffer.wrap(buffer, encoding); + var version = buffer.readUint8(); + if ((version & 0xF) > 3 || (version >> 4) < 3) { // min version > 3 or max version < 3 + throw new Error("Incompatible version number on PreKeyWhisperMessage"); + } + return SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { + var address = this.remoteAddress.toString(); + return this.getRecord(address).then(function(record) { + var preKeyProto = protobuf.PreKeyWhisperMessage.decode(buffer); + if (!record) { + if (preKeyProto.registrationId === undefined) { + throw new Error("No registrationId"); + } + record = new SessionRecord( + util.toString(preKeyProto.identityKey), + preKeyProto.registrationId + ); + } + var builder = new SessionBuilder(this.storage, this.remoteAddress); + return builder.processV3(record, preKeyProto).then(function(preKeyId) { + var session = record.getSessionByBaseKey(preKeyProto.baseKey); + return this.doDecryptWhisperMessage( + preKeyProto.message.toArrayBuffer(), session + ).then(function(plaintext) { + record.updateSessionState(session); + return this.storage.storeSession(address, record.serialize()).then(function() { + if (preKeyId !== undefined) { + return this.storage.removePreKey(preKeyId); } - var builder = new SessionBuilder(this.storage, this.remoteAddress); - return builder.processV3(record, preKeyProto).then(function(preKeyId) { - var session = record.getSessionByBaseKey(preKeyProto.baseKey); - return this.doDecryptWhisperMessage( - preKeyProto.message.toArrayBuffer(), session - ).then(function(plaintext) { - record.updateSessionState(session); - return this.storage.storeSession(address, record.serialize()).then(function() { - if (preKeyId !== undefined) { - return this.storage.removePreKey(preKeyId); - } - }.bind(this)).then(function() { - return plaintext; - }); - }.bind(this)); - }.bind(this)); + }.bind(this)).then(function() { + return plaintext; + }); }.bind(this)); + }.bind(this)); }.bind(this)); + }.bind(this)); }, doDecryptWhisperMessage: function(messageBytes, session) { if (!(messageBytes instanceof ArrayBuffer)) { - throw new Error("Expected messageBytes to be an ArrayBuffer"); + throw new Error("Expected messageBytes to be an ArrayBuffer"); } var version = (new Uint8Array(messageBytes))[0]; if ((version & 0xF) > 3 || (version >> 4) < 3) { // min version > 3 or max version < 3 - throw new Error("Incompatible version number on WhisperMessage"); + throw new Error("Incompatible version number on WhisperMessage"); } var messageProto = messageBytes.slice(1, messageBytes.byteLength- 8); var mac = messageBytes.slice(messageBytes.byteLength - 8, messageBytes.byteLength); @@ -68222,148 +65463,148 @@ SessionCipher.prototype = { var remoteEphemeralKey = message.ephemeralKey.toArrayBuffer(); if (session === undefined) { - return Promise.reject(new Error("No session found to decrypt message from " + this.remoteAddress.toString())); + return Promise.reject(new Error("No session found to decrypt message from " + this.remoteAddress.toString())); } if (session.indexInfo.closed != -1) { - // console.log('decrypting message for closed session'); + // console.log('decrypting message for closed session'); } return this.maybeStepRatchet(session, remoteEphemeralKey, message.previousCounter).then(function() { - var chain = session[util.toString(message.ephemeralKey)]; - if (chain.chainType === ChainType.SENDING) { - throw new Error("Tried to decrypt on a sending chain"); - } + var chain = session[util.toString(message.ephemeralKey)]; + if (chain.chainType === ChainType.SENDING) { + throw new Error("Tried to decrypt on a sending chain"); + } - return this.fillMessageKeys(chain, message.counter).then(function() { - var messageKey = chain.messageKeys[message.counter]; - if (messageKey === undefined) { - var e = new Error("Message key not found. The counter was repeated or the key was not filled."); - e.name = 'MessageCounterError'; - throw e; - } - delete chain.messageKeys[message.counter]; - return Crypto.HKDF(util.toArrayBuffer(messageKey), new ArrayBuffer(32), "WhisperMessageKeys"); - }); + return this.fillMessageKeys(chain, message.counter).then(function() { + var messageKey = chain.messageKeys[message.counter]; + if (messageKey === undefined) { + var e = new Error("Message key not found. The counter was repeated or the key was not filled."); + e.name = 'MessageCounterError'; + throw e; + } + delete chain.messageKeys[message.counter]; + return Crypto.HKDF(util.toArrayBuffer(messageKey), new ArrayBuffer(32), "WhisperMessageKeys"); + }); }.bind(this)).then(function(keys) { - return this.storage.getIdentityKeyPair().then(function(ourIdentityKey) { + return this.storage.getIdentityKeyPair().then(function(ourIdentityKey) { - var macInput = new Uint8Array(messageProto.byteLength + 33*2 + 1); - macInput.set(new Uint8Array(util.toArrayBuffer(session.indexInfo.remoteIdentityKey))); - macInput.set(new Uint8Array(util.toArrayBuffer(ourIdentityKey.pubKey)), 33); - macInput[33*2] = (3 << 4) | 3; - macInput.set(new Uint8Array(messageProto), 33*2 + 1); + var macInput = new Uint8Array(messageProto.byteLength + 33*2 + 1); + macInput.set(new Uint8Array(util.toArrayBuffer(session.indexInfo.remoteIdentityKey))); + macInput.set(new Uint8Array(util.toArrayBuffer(ourIdentityKey.pubKey)), 33); + macInput[33*2] = (3 << 4) | 3; + macInput.set(new Uint8Array(messageProto), 33*2 + 1); - return Crypto.verifyMAC(macInput.buffer, keys[1], mac, 8); - }.bind(this)).then(function() { - return Crypto.crypto.decrypt(keys[0], message.ciphertext.toArrayBuffer(), keys[2].slice(0, 16)); - }); + return Crypto.verifyMAC(macInput.buffer, keys[1], mac, 8); + }.bind(this)).then(function() { + return Crypto.crypto.decrypt(keys[0], message.ciphertext.toArrayBuffer(), keys[2].slice(0, 16)); + }); }.bind(this)).then(function(plaintext) { - delete session.pendingPreKey; - return plaintext; + delete session.pendingPreKey; + return plaintext; }); }, fillMessageKeys: function(chain, counter) { - if (Object.keys(chain.messageKeys).length >= 1000) { - // console.log("Too many message keys for chain"); - return Promise.resolve(); // Stalker, much? - } + if (this.messageKeysLimit && Object.keys(chain.messageKeys).length >= this.messageKeysLimit) { + // console.log("Too many message keys for chain"); + return Promise.resolve(); // Stalker, much? + } - if (chain.chainKey.counter >= counter) { - return Promise.resolve(); // Already calculated - } + if (chain.chainKey.counter >= counter) { + return Promise.resolve(); // Already calculated + } - if (chain.chainKey.key === undefined) { - throw new Error("Got invalid request to extend chain after it was already closed"); - } + if (chain.chainKey.key === undefined) { + throw new Error("Got invalid request to extend chain after it was already closed"); + } - var key = util.toArrayBuffer(chain.chainKey.key); - var byteArray = new Uint8Array(1); - byteArray[0] = 1; - return Crypto.crypto.sign(key, byteArray.buffer).then(function(mac) { - byteArray[0] = 2; - return Crypto.crypto.sign(key, byteArray.buffer).then(function(key) { - chain.messageKeys[chain.chainKey.counter + 1] = mac; - chain.chainKey.key = key; - chain.chainKey.counter += 1; - return this.fillMessageKeys(chain, counter); - }.bind(this)); + var key = util.toArrayBuffer(chain.chainKey.key); + var byteArray = new Uint8Array(1); + byteArray[0] = 1; + return Crypto.crypto.sign(key, byteArray.buffer).then(function(mac) { + byteArray[0] = 2; + return Crypto.crypto.sign(key, byteArray.buffer).then(function(key) { + chain.messageKeys[chain.chainKey.counter + 1] = mac; + chain.chainKey.key = key; + chain.chainKey.counter += 1; + return this.fillMessageKeys(chain, counter); }.bind(this)); + }.bind(this)); }, maybeStepRatchet: function(session, remoteKey, previousCounter) { - if (session[util.toString(remoteKey)] !== undefined) { - return Promise.resolve(); - } + if (session[util.toString(remoteKey)] !== undefined) { + return Promise.resolve(); + } - // console.log('New remote ephemeral key'); - var ratchet = session.currentRatchet; + // console.log('New remote ephemeral key'); + var ratchet = session.currentRatchet; - return Promise.resolve().then(function() { - var previousRatchet = session[util.toString(ratchet.lastRemoteEphemeralKey)]; - if (previousRatchet !== undefined) { - return this.fillMessageKeys(previousRatchet, previousCounter).then(function() { - delete previousRatchet.chainKey.key; - session.oldRatchetList[session.oldRatchetList.length] = { - added : Date.now(), - ephemeralKey : ratchet.lastRemoteEphemeralKey - }; - }); - } - }.bind(this)).then(function() { - return this.calculateRatchet(session, remoteKey, false).then(function() { - // Now swap the ephemeral key and calculate the new sending chain - var previousRatchet = util.toString(ratchet.ephemeralKeyPair.pubKey); - if (session[previousRatchet] !== undefined) { - ratchet.previousCounter = session[previousRatchet].chainKey.counter; - delete session[previousRatchet]; - } + return Promise.resolve().then(function() { + var previousRatchet = session[util.toString(ratchet.lastRemoteEphemeralKey)]; + if (previousRatchet !== undefined) { + return this.fillMessageKeys(previousRatchet, previousCounter).then(function() { + delete previousRatchet.chainKey.key; + session.oldRatchetList[session.oldRatchetList.length] = { + added : Date.now(), + ephemeralKey : ratchet.lastRemoteEphemeralKey + }; + }); + } + }.bind(this)).then(function() { + return this.calculateRatchet(session, remoteKey, false).then(function() { + // Now swap the ephemeral key and calculate the new sending chain + var previousRatchet = util.toString(ratchet.ephemeralKeyPair.pubKey); + if (session[previousRatchet] !== undefined) { + ratchet.previousCounter = session[previousRatchet].chainKey.counter; + delete session[previousRatchet]; + } - return Crypto.crypto.createKeyPair().then(function(keyPair) { - ratchet.ephemeralKeyPair = keyPair; - return this.calculateRatchet(session, remoteKey, true).then(function() { - ratchet.lastRemoteEphemeralKey = remoteKey; - }.bind(this)); - }.bind(this)); + return Crypto.crypto.createKeyPair().then(function(keyPair) { + ratchet.ephemeralKeyPair = keyPair; + return this.calculateRatchet(session, remoteKey, true).then(function() { + ratchet.lastRemoteEphemeralKey = remoteKey; }.bind(this)); + }.bind(this)); }.bind(this)); + }.bind(this)); }, calculateRatchet: function(session, remoteKey, sending) { - var ratchet = session.currentRatchet; + var ratchet = session.currentRatchet; - return Crypto.crypto.ECDHE(remoteKey, util.toArrayBuffer(ratchet.ephemeralKeyPair.privKey)).then(function(sharedSecret) { - return Crypto.HKDF(sharedSecret, util.toArrayBuffer(ratchet.rootKey), "WhisperRatchet").then(function(masterKey) { - var ephemeralPublicKey; - if (sending) { - ephemeralPublicKey = ratchet.ephemeralKeyPair.pubKey; - } - else { - ephemeralPublicKey = remoteKey; - } - session[util.toString(ephemeralPublicKey)] = { - messageKeys: {}, - chainKey: { counter: -1, key: masterKey[1] }, - chainType: sending ? ChainType.SENDING : ChainType.RECEIVING - }; - ratchet.rootKey = masterKey[0]; - }); + return Crypto.crypto.ECDHE(remoteKey, util.toArrayBuffer(ratchet.ephemeralKeyPair.privKey)).then(function(sharedSecret) { + return Crypto.HKDF(sharedSecret, util.toArrayBuffer(ratchet.rootKey), "WhisperRatchet").then(function(masterKey) { + var ephemeralPublicKey; + if (sending) { + ephemeralPublicKey = ratchet.ephemeralKeyPair.pubKey; + } + else { + ephemeralPublicKey = remoteKey; + } + session[util.toString(ephemeralPublicKey)] = { + messageKeys: {}, + chainKey: { counter: -1, key: masterKey[1] }, + chainType: sending ? ChainType.SENDING : ChainType.RECEIVING + }; + ratchet.rootKey = masterKey[0]; }); + }); }, getRemoteRegistrationId: function() { return SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { return this.getRecord(this.remoteAddress.toString()).then(function(record) { - if (record === undefined) { - return undefined; - } - return record.registrationId; + if (record === undefined) { + return undefined; + } + return record.registrationId; }); }.bind(this)); }, hasOpenSession: function() { return SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { return this.getRecord(this.remoteAddress.toString()).then(function(record) { - if (record === undefined) { - return false; - } - return record.haveOpenSession(); + if (record === undefined) { + return false; + } + return record.haveOpenSession(); }); }.bind(this)); }, @@ -68372,7 +65613,7 @@ SessionCipher.prototype = { return SessionLock.queueJobForNumber(address, function() { return this.getRecord(address).then(function(record) { if (record === undefined || record.getOpenSession() === undefined) { - return; + return; } record.archiveCurrentState(); @@ -68382,27 +65623,27 @@ SessionCipher.prototype = { } }; -var mySessionCipher = function(storage, remoteAddress) { - var cipher = new SessionCipher(storage, remoteAddress); +var mySessionCipher = function(storage, remoteAddress, options) { + var cipher = new SessionCipher(storage, remoteAddress, options); - // returns a Promise that resolves to a ciphertext object - this.encrypt = cipher.encrypt.bind(cipher); + // returns a Promise that resolves to a ciphertext object + this.encrypt = cipher.encrypt.bind(cipher); - // returns a Promise that inits a session if necessary and resolves - // to a decrypted plaintext array buffer - this.decryptPreKeyWhisperMessage = cipher.decryptPreKeyWhisperMessage.bind(cipher); + // returns a Promise that inits a session if necessary and resolves + // to a decrypted plaintext array buffer + this.decryptPreKeyWhisperMessage = cipher.decryptPreKeyWhisperMessage.bind(cipher); - // returns a Promise that resolves to decrypted plaintext array buffer - this.decryptWhisperMessage = cipher.decryptWhisperMessage.bind(cipher); + // returns a Promise that resolves to decrypted plaintext array buffer + this.decryptWhisperMessage = cipher.decryptWhisperMessage.bind(cipher); - this.getRemoteRegistrationId = cipher.getRemoteRegistrationId.bind(cipher); - this.hasOpenSession = cipher.hasOpenSession.bind(cipher); - this.closeOpenSessionForDevice = cipher.closeOpenSessionForDevice.bind(cipher); + this.getRemoteRegistrationId = cipher.getRemoteRegistrationId.bind(cipher); + this.hasOpenSession = cipher.hasOpenSession.bind(cipher); + this.closeOpenSessionForDevice = cipher.closeOpenSessionForDevice.bind(cipher); }; module.exports = mySessionCipher; -},{"../build/dcodeIO.js":2,"../build/protobufs_concat.js":3,"../src/helpers.js":195,"./ChainType.js":181,"./SessionBuilder.js":185,"./SessionLock.js":187,"./SessionRecord.js":188,"./crypto.js":190}],187:[function(require,module,exports){ +},{"../build/dcodeIO.js":2,"../build/protobufs_concat.js":3,"../src/helpers.js":212,"./ChainType.js":198,"./SessionBuilder.js":202,"./SessionLock.js":204,"./SessionRecord.js":205,"./crypto.js":207}],204:[function(require,module,exports){ /* * jobQueue manages multiple queues indexed by device to serialize * session io ops on the database. @@ -68426,7 +65667,7 @@ SessionLock.queueJobForNumber = function queueJobForNumber(number, runJob) { module.exports = SessionLock; -},{}],188:[function(require,module,exports){ +},{}],205:[function(require,module,exports){ /* * vim: ts=4:sw=4 */ @@ -68699,7 +65940,7 @@ var SessionRecord = function() { module.exports = SessionRecord; -},{"../build/dcodeIO.js":2,"./BaseKeyType.js":180,"./helpers.js":195}],189:[function(require,module,exports){ +},{"../build/dcodeIO.js":2,"./BaseKeyType.js":197,"./helpers.js":212}],206:[function(require,module,exports){ function SignalProtocolAddress(name, deviceId) { this.name = name; this.deviceId = deviceId; @@ -68739,7 +65980,7 @@ mySignalProtocolAddress.fromString = function(encodedAddress) { module.exports = mySignalProtocolAddress; -},{}],190:[function(require,module,exports){ +},{}],207:[function(require,module,exports){ /* * vim: ts=4:sw=4 */ @@ -68894,7 +66135,7 @@ module.exports = myCrypto; // } // }; -},{"../build/dcodeIO.js":2,"./Curve.js":182,"./helpers.js":195,"./node_polyfills.js":undefined}],191:[function(require,module,exports){ +},{"../build/dcodeIO.js":2,"./Curve.js":199,"./helpers.js":212,"./node_polyfills.js":undefined}],208:[function(require,module,exports){ // load a workr routine and export it var workRoutine = require('./curve_work_routine.js'); // our export is a function that takes `self` @@ -68904,7 +66145,7 @@ module.exports = function (self) { workRoutine.apply(self); }; -},{"./curve_work_routine.js":194}],192:[function(require,module,exports){ +},{"./curve_work_routine.js":211}],209:[function(require,module,exports){ 'use strict'; // I am the...workee? @@ -68989,7 +66230,7 @@ self.stopWorker = function() { module.exports = self; -},{"./curve25519_worker.js":191,"./curve25519_wrapper.js":193,"./curve_work_routine.js":194,"./node_polyfills.js":undefined,"webworkify":179}],193:[function(require,module,exports){ +},{"./curve25519_worker.js":208,"./curve25519_wrapper.js":210,"./curve_work_routine.js":211,"./node_polyfills.js":undefined,"webworkify":196}],210:[function(require,module,exports){ 'use strict'; var Internal = Internal || {}; @@ -69141,7 +66382,7 @@ Internal.curve25519_async = { module.exports = Internal; -},{"../build/curve25519_concat.js":1}],194:[function(require,module,exports){ +},{"../build/curve25519_concat.js":1}],211:[function(require,module,exports){ var CurveWrapper = require('./curve25519_wrapper.js'); function curveWorkRoutine () { @@ -69156,7 +66397,7 @@ function curveWorkRoutine () { module.exports = curveWorkRoutine; -},{"./curve25519_wrapper.js":193}],195:[function(require,module,exports){ +},{"./curve25519_wrapper.js":210}],212:[function(require,module,exports){ /* * vim: ts=4:sw=4 */ @@ -69213,7 +66454,7 @@ var util = { module.exports = util; -},{"../build/dcodeIO.js":2}],196:[function(require,module,exports){ +},{"../build/dcodeIO.js":2}],213:[function(require,module,exports){ module.exports = { KeyHelper: require('./KeyHelper.js'), SignalProtocolAddress: require('./SignalProtocolAddress.js'), @@ -69225,7 +66466,7 @@ module.exports = { _curve: require('./Curve.js') }; -},{"./Curve.js":182,"./KeyHelper.js":183,"./NumericFingerprint.js":184,"./SessionBuilder.js":185,"./SessionCipher.js":186,"./SignalProtocolAddress.js":189,"./crypto.js":190}],197:[function(require,module,exports){ +},{"./Curve.js":199,"./KeyHelper.js":200,"./NumericFingerprint.js":201,"./SessionBuilder.js":202,"./SessionCipher.js":203,"./SignalProtocolAddress.js":206,"./crypto.js":207}],214:[function(require,module,exports){ var Crypto = require('../src/crypto.js'); var assert = require('chai').assert; var test_util = require('./test_helpers.js'); @@ -69296,7 +66537,7 @@ function testIdentityKeyStore(store, registrationId, identityKey) { module.exports = testIdentityKeyStore; -},{"../src/crypto.js":190,"./test_helpers.js":214,"chai":53}],198:[function(require,module,exports){ +},{"../src/crypto.js":207,"./test_helpers.js":231,"chai":53}],215:[function(require,module,exports){ var util = require('../src/helpers.js'); function SignalProtocolStore() { @@ -69405,7 +66646,7 @@ SignalProtocolStore.prototype = { module.exports = SignalProtocolStore; -},{"../src/helpers.js":195}],199:[function(require,module,exports){ +},{"../src/helpers.js":212}],216:[function(require,module,exports){ (function (Buffer){ var signal = require('..'); var SignalStore = require('./InMemorySignalProtocolStore.js') @@ -69540,7 +66781,7 @@ describe('Integration test', function() { }) }).call(this,require("buffer").Buffer) -},{"..":196,"../src/helpers.js":195,"./InMemorySignalProtocolStore.js":198,"./long-plaintext.json":211,"buffer":50,"chai":53}],200:[function(require,module,exports){ +},{"..":213,"../src/helpers.js":212,"./InMemorySignalProtocolStore.js":215,"./long-plaintext.json":228,"buffer":50,"chai":53}],217:[function(require,module,exports){ var KeyHelper = require('../src/KeyHelper.js'); var assert = require('chai').assert; @@ -69603,7 +66844,7 @@ describe('KeyHelper', function() { }); }); -},{"../src/KeyHelper.js":183,"chai":53}],201:[function(require,module,exports){ +},{"../src/KeyHelper.js":200,"chai":53}],218:[function(require,module,exports){ /* * vim: ts=4:sw=4 */ @@ -69690,7 +66931,7 @@ describe('NumericFingerprint', function() { }); }); -},{"../src/NumericFingerprint.js":184,"../src/crypto.js":190,"chai":53}],202:[function(require,module,exports){ +},{"../src/NumericFingerprint.js":201,"../src/crypto.js":207,"chai":53}],219:[function(require,module,exports){ var Crypto = require('../src/crypto.js'); var SignalProtocolAddress = require('../src/SignalProtocolAddress.js'); var assert = require('chai').assert; @@ -69753,7 +66994,7 @@ function testPreKeyStore(store) { module.exports = testPreKeyStore; -},{"../src/SignalProtocolAddress.js":189,"../src/crypto.js":190,"./test_helpers.js":214,"chai":53}],203:[function(require,module,exports){ +},{"../src/SignalProtocolAddress.js":206,"../src/crypto.js":207,"./test_helpers.js":231,"chai":53}],220:[function(require,module,exports){ var SessionRecord = require('../src/SessionRecord.js'); var KeyHelper = require('../src/KeyHelper.js'); var SessionCipher = require('../src/SessionCipher.js'); @@ -69913,7 +67154,7 @@ describe('SessionBuilder', function() { }); }); -},{"../src/Curve.js":182,"../src/KeyHelper.js":183,"../src/SessionBuilder.js":185,"../src/SessionCipher.js":186,"../src/SessionRecord.js":188,"../src/SignalProtocolAddress.js":189,"../src/helpers.js":195,"./InMemorySignalProtocolStore.js":198,"./test_helpers.js":214,"chai":53}],204:[function(require,module,exports){ +},{"../src/Curve.js":199,"../src/KeyHelper.js":200,"../src/SessionBuilder.js":202,"../src/SessionCipher.js":203,"../src/SessionRecord.js":205,"../src/SignalProtocolAddress.js":206,"../src/helpers.js":212,"./InMemorySignalProtocolStore.js":215,"./test_helpers.js":231,"chai":53}],221:[function(require,module,exports){ /* * vim: ts=4:sw=4 */ @@ -70262,7 +67503,7 @@ describe('SessionCipher', function() { }); }); -},{"../build/protobufs_concat.js":3,"../src/SessionBuilder.js":185,"../src/SessionCipher.js":186,"../src/SessionRecord.js":188,"../src/SignalProtocolAddress.js":189,"../src/crypto.js":190,"../src/helpers.js":195,"./InMemorySignalProtocolStore.js":198,"./temp_helpers.js":213,"./testvectors.js":215,"chai":53}],205:[function(require,module,exports){ +},{"../build/protobufs_concat.js":3,"../src/SessionBuilder.js":202,"../src/SessionCipher.js":203,"../src/SessionRecord.js":205,"../src/SignalProtocolAddress.js":206,"../src/crypto.js":207,"../src/helpers.js":212,"./InMemorySignalProtocolStore.js":215,"./temp_helpers.js":230,"./testvectors.js":232,"chai":53}],222:[function(require,module,exports){ var SignalProtocolAddress = require('../src/SignalProtocolAddress.js'); var assert = require('chai').assert; var test_util = require('./test_helpers.js'); @@ -70349,7 +67590,7 @@ function testSessionStore(store) { module.exports = testSessionStore; -},{"../src/SignalProtocolAddress.js":189,"./test_helpers.js":214,"chai":53}],206:[function(require,module,exports){ +},{"../src/SignalProtocolAddress.js":206,"./test_helpers.js":231,"chai":53}],223:[function(require,module,exports){ var SignalProtocolAddress = require('../src/SignalProtocolAddress.js'); var assert = require('chai').assert; @@ -70391,7 +67632,7 @@ describe('SignalProtocolAddress', function() { }); }); -},{"../src/SignalProtocolAddress.js":189,"chai":53}],207:[function(require,module,exports){ +},{"../src/SignalProtocolAddress.js":206,"chai":53}],224:[function(require,module,exports){ /* vim: ts=4:sw=4 */ 'use strict'; @@ -70422,7 +67663,7 @@ function testSignalProtocolStore (testIdentityKeyStore, testPreKeyStore, testSig module.exports = testSignalProtocolStore; -},{"../src/crypto.js":190,"./InMemorySignalProtocolStore.js":198,"chai":53}],208:[function(require,module,exports){ +},{"../src/crypto.js":207,"./InMemorySignalProtocolStore.js":215,"chai":53}],225:[function(require,module,exports){ var Crypto = require('../src/crypto.js'); var assert = require('chai').assert; var test_util = require('./test_helpers.js'); @@ -70481,7 +67722,7 @@ function testSignedPreKeyStore(store) { module.exports = testSignedPreKeyStore; -},{"../src/crypto.js":190,"./test_helpers.js":214,"chai":53}],209:[function(require,module,exports){ +},{"../src/crypto.js":207,"./test_helpers.js":231,"chai":53}],226:[function(require,module,exports){ /* * vim: ts=4:sw=4 */ @@ -70653,7 +67894,7 @@ describe("Crypto", function() { }); }); -},{"../src/crypto.js":190,"../src/curve25519_worker_manager.js":192,"./test_helpers.js":214,"chai":53}],210:[function(require,module,exports){ +},{"../src/crypto.js":207,"../src/curve25519_worker_manager.js":209,"./test_helpers.js":231,"chai":53}],227:[function(require,module,exports){ /* vim: ts=4:sw=4 */ 'use strict'; @@ -70685,13 +67926,13 @@ describe('util', function() { }); }); -},{"../src/helpers.js":195,"chai":53}],211:[function(require,module,exports){ +},{"../src/helpers.js":212,"chai":53}],228:[function(require,module,exports){ module.exports={ "plaintext": "I have a kind of weird story related to death. Something my father told me. He said it was an actual experience he had when he was in his early twenties. Just the age I am now. I’ve heard the story so many times I can remember every detail. It’s a really strange story—it’s hard even now for me to believe it actually happened— but my father isn’t the type to lie about something like that. Or the type who would concoct such a story. I’m sure you know this, but when you make up a story the details change each time you retell it. You tend to embellish things, and forget what you said before. ... But my father’s story, from start to finish, was always exactly the same, each time he told it. So I think it must be something he actually experienced. I’m his son, and I know him really well, so the only thing I can do is believe what he said. But you don’t know my father, Tsukuru, so feel free to believe it or not. Just understand that this is what he told me. You can take it as folklore, or a tale of the supernatural, I don’t mind. It’s a long story, and it’s already late, but do you mind if I tell it?” Sure, Tsukuru said, that would be fine. I’m not sleepy yet. “When my father was young, he spent a year wandering around Japan,” Haida began. “This was at the end of the 1960s, the peak of the counterculture era, when the student movement was upending universities. I don’t know all the details, but when he was in college in Tokyo, a lot of stupid things happened, and he got fed up with politics and left the movement. He took a leave of absence from school and wandered around the country. He did odd jobs to earn a living, read books when he had the time, met all sorts of people, and gained a lot of real-life, practical experience. My father says this was the happiest time of his life, when he learned some important lessons. When I was a kid, he used to tell me stories from those days, like an old soldier reminiscing about long-ago battles in some far-off place. After those bohemian days, he went back to college, and returned to academic life. He never went on a long trip ever again. As far as I know, he’s spent his time since just shuttling back and forth between home and his office. It’s strange, isn’t it? No matter how quiet and conformist a person’s life seems, there’s always a time in the past when they reached an impasse. A time when they went a little crazy. I guess people need that sort of stage in their lives.” 549. The Rime of the Ancient Mariner PART I An ancient Mariner meeteth three gallants bidden to a wedding feast, and detaineth one.IT is an ancient Mariner, And he stoppeth one of three. 'By thy long beard and glittering eye, Now wherefore stopp'st thou me? The Bridegroom's doors are opened wide,5 And I am next of kin; The guests are met, the feast is set: May'st hear the merry din.' He holds him with his skinny hand, 'There was a ship,' quoth he." } -},{}],212:[function(require,module,exports){ +},{}],229:[function(require,module,exports){ // /* vim: ts=4:sw=4 */ require('./helpers_test.js'); @@ -70713,7 +67954,7 @@ require('./SignalProtocolStore_test.js')( require('./SignalProtocolAddressTest.js'); require('./IntegrationTest.js'); -},{"./IdentityKeyStore_test.js":197,"./IntegrationTest.js":199,"./KeyHelperTest.js":200,"./NumericFingerprintTest.js":201,"./PreKeyStore_test.js":202,"./SessionBuilderTest.js":203,"./SessionCipherTest.js":204,"./SessionStore_test.js":205,"./SignalProtocolAddressTest.js":206,"./SignalProtocolStore_test.js":207,"./SignedPreKeyStore_test.js":208,"./crypto_test.js":209,"./helpers_test.js":210}],213:[function(require,module,exports){ +},{"./IdentityKeyStore_test.js":214,"./IntegrationTest.js":216,"./KeyHelperTest.js":217,"./NumericFingerprintTest.js":218,"./PreKeyStore_test.js":219,"./SessionBuilderTest.js":220,"./SessionCipherTest.js":221,"./SessionStore_test.js":222,"./SignalProtocolAddressTest.js":223,"./SignalProtocolStore_test.js":224,"./SignedPreKeyStore_test.js":225,"./crypto_test.js":226,"./helpers_test.js":227}],230:[function(require,module,exports){ var dcodeIO = require('../build/dcodeIO.js'); var pushMessages = dcodeIO.loadProto('package textsecure;\n' + '\n' + @@ -70779,7 +68020,7 @@ module.exports = { }; -},{"../build/dcodeIO.js":2}],214:[function(require,module,exports){ +},{"../build/dcodeIO.js":2}],231:[function(require,module,exports){ var assert = require('chai').assert; function assertEqualArrayBuffers(ab1, ab2) { @@ -70799,7 +68040,7 @@ module.exports = { hexToArrayBuffer: hexToArrayBuffer }; -},{"chai":53}],215:[function(require,module,exports){ +},{"chai":53}],232:[function(require,module,exports){ var test_util = require('./test_helpers.js'); var hexToArrayBuffer = test_util.hexToArrayBuffer; var assertEqualArrayBuffers = test_util.assertEqualArrayBuffers; @@ -71293,4 +68534,4 @@ tests[tests.length] = {name: "Standard End Session Signal Protocol Test Vectors module.exports = tests -},{"./test_helpers.js":214}]},{},[212]); +},{"./test_helpers.js":231}]},{},[229]); diff --git a/dist/libsignal.js b/dist/libsignal.js index 4a7ecd5..61c5a75 100644 --- a/dist/libsignal.js +++ b/dist/libsignal.js @@ -1,5 +1,5 @@ (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o= TOTAL_MEMORY) { var success = enlargeMemory(); if (!success) { DYNAMICTOP = ret; return 0; } }; return ret; }, + dynamicAlloc: function (size) { var ret = HEAP32[DYNAMICTOP_PTR>>2];var end = (((ret + size + 15)|0) & -16);HEAP32[DYNAMICTOP_PTR>>2] = end;if (end >= TOTAL_MEMORY) {var success = enlargeMemory();if (!success) {HEAP32[DYNAMICTOP_PTR>>2] = ret;return 0;}}return ret;}, alignMemory: function (size,quantum) { var ret = size = Math.ceil((size)/(quantum ? quantum : 16))*(quantum ? quantum : 16); return ret; }, makeBigInt: function (low,high,unsigned) { var ret = (unsigned ? ((+((low>>>0)))+((+((high>>>0)))*4294967296.0)) : ((+((low>>>0)))+((+((high|0)))*4294967296.0))); return ret; }, GLOBAL_BASE: 8, @@ -346,18 +411,10 @@ Module["Runtime"] = Runtime; // Runtime essentials //======================================== -var __THREW__ = 0; // Used in checking for thrown exceptions. - -var ABORT = false; // whether we are quitting the application. no code should run after this. set in exit() and abort() +var ABORT = 0; // whether we are quitting the application. no code should run after this. set in exit() and abort() var EXITSTATUS = 0; -var undef = 0; -// tempInt is used for 32-bit signed values or smaller. tempBigInt is used -// for 32-bit unsigned values or more than 32 bits. TODO: audit all uses of tempInt -var tempValue, tempInt, tempBigInt, tempInt2, tempBigInt2, tempPair, tempBigIntI, tempBigIntR, tempBigIntS, tempBigIntP, tempBigIntD, tempDouble, tempFloat; -var tempI64, tempI64b; -var tempRet0, tempRet1, tempRet2, tempRet3, tempRet4, tempRet5, tempRet6, tempRet7, tempRet8, tempRet9; - +/** @type {function(*, string=)} */ function assert(condition, text) { if (!condition) { abort('Assertion failed: ' + text); @@ -370,9 +427,7 @@ var globalScope = this; function getCFunc(ident) { var func = Module['_' + ident]; // closure exported function if (!func) { - try { - func = eval('_' + ident); // explicit lookup - } catch(e) {} + try { func = eval('_' + ident); } catch(e) {} } assert(func, 'Cannot call unknown function ' + ident + ' (perhaps LLVM optimizations or closure removed it?)'); return func; @@ -400,8 +455,9 @@ var cwrap, ccall; var ret = 0; if (str !== null && str !== undefined && str !== 0) { // null string // at most 4 bytes per UTF-8 code point, +1 for the trailing '\0' - ret = Runtime.stackAlloc((str.length << 2) + 1); - writeStringToMemory(str, ret); + var len = (str.length << 2) + 1; + ret = Runtime.stackAlloc(len); + stringToUTF8(str, ret, len); } return ret; } @@ -409,7 +465,7 @@ var cwrap, ccall; // For fast lookup of conversion functions var toC = {'string' : JSfuncs['stringToC'], 'array' : JSfuncs['arrayToC']}; - // C calling interface. + // C calling interface. ccall = function ccallFunc(ident, returnType, argTypes, args, opts) { var func = getCFunc(ident); var cArgs = []; @@ -439,22 +495,28 @@ var cwrap, ccall; return ret; } - var sourceRegex = /^function\s*\(([^)]*)\)\s*{\s*([^*]*?)[\s;]*(?:return\s*(.*?)[;\s]*)?}$/; + var sourceRegex = /^function\s*[a-zA-Z$_0-9]*\s*\(([^)]*)\)\s*{\s*([^*]*?)[\s;]*(?:return\s*(.*?)[;\s]*)?}$/; function parseJSFunc(jsfunc) { // Match the body and the return value of a javascript function source var parsed = jsfunc.toString().match(sourceRegex).slice(1); return {arguments : parsed[0], body : parsed[1], returnValue: parsed[2]} } - var JSsource = {}; - for (var fun in JSfuncs) { - if (JSfuncs.hasOwnProperty(fun)) { - // Elements of toCsource are arrays of three items: - // the code, and the return value - JSsource[fun] = parseJSFunc(JSfuncs[fun]); + + // sources of useful functions. we create this lazily as it can trigger a source decompression on this entire file + var JSsource = null; + function ensureJSsource() { + if (!JSsource) { + JSsource = {}; + for (var fun in JSfuncs) { + if (JSfuncs.hasOwnProperty(fun)) { + // Elements of toCsource are arrays of three items: + // the code, and the return value + JSsource[fun] = parseJSFunc(JSfuncs[fun]); + } + } } } - cwrap = function cwrap(ident, returnType, argTypes) { argTypes = argTypes || []; var cfunc = getCFunc(ident); @@ -472,6 +534,7 @@ var cwrap, ccall; if (!numericArgs) { // Generate the code needed to convert the arguments from javascript // values to pointers + ensureJSsource(); funcstr += 'var stack = ' + JSsource['stackSave'].body + ';'; for (var i = 0; i < nargs; i++) { var arg = argNames[i], type = argTypes[i]; @@ -479,7 +542,7 @@ var cwrap, ccall; var convertCode = JSsource[type + 'ToC']; // [code, return] funcstr += 'var ' + convertCode.arguments + ' = ' + arg + ';'; funcstr += convertCode.body + ';'; - funcstr += arg + '=' + convertCode.returnValue + ';'; + funcstr += arg + '=(' + convertCode.returnValue + ');'; } } @@ -494,6 +557,7 @@ var cwrap, ccall; } if (!numericArgs) { // If we had a stack, restore it + ensureJSsource(); funcstr += JSsource['stackRestore'].body.replace('()', '(stack)') + ';'; } funcstr += 'return ret})'; @@ -503,6 +567,7 @@ var cwrap, ccall; Module["ccall"] = ccall; Module["cwrap"] = cwrap; +/** @type {function(number, number, string, boolean=)} */ function setValue(ptr, value, type, noSafe) { type = type || 'i8'; if (type.charAt(type.length-1) === '*') type = 'i32'; // pointers are 32-bit @@ -519,7 +584,7 @@ function setValue(ptr, value, type, noSafe) { } Module["setValue"] = setValue; - +/** @type {function(number, string, boolean=)} */ function getValue(ptr, type, noSafe) { type = type || 'i8'; if (type.charAt(type.length-1) === '*') type = 'i32'; // pointers are 32-bit @@ -561,6 +626,7 @@ Module["ALLOC_NONE"] = ALLOC_NONE; // is initial data - if @slab is a number, then this does not matter at all and is // ignored. // @allocator: How to allocate memory, see ALLOC_* +/** @type {function((TypedArray|Array|number), string, number, number=)} */ function allocate(slab, types, allocator, ptr) { var zeroinit, size; if (typeof slab === 'number') { @@ -577,7 +643,7 @@ function allocate(slab, types, allocator, ptr) { if (allocator == ALLOC_NONE) { ret = ptr; } else { - ret = [_malloc, Runtime.stackAlloc, Runtime.staticAlloc, Runtime.dynamicAlloc][allocator === undefined ? ALLOC_STATIC : allocator](Math.max(size, singleType ? 1 : types.length)); + ret = [typeof _malloc === 'function' ? _malloc : Runtime.staticAlloc, Runtime.stackAlloc, Runtime.staticAlloc, Runtime.dynamicAlloc][allocator === undefined ? ALLOC_STATIC : allocator](Math.max(size, singleType ? 1 : types.length)); } if (zeroinit) { @@ -596,7 +662,7 @@ function allocate(slab, types, allocator, ptr) { if (singleType === 'i8') { if (slab.subarray || slab.slice) { - HEAPU8.set(slab, ret); + HEAPU8.set(/** @type {!Uint8Array} */ (slab), ret); } else { HEAPU8.set(new Uint8Array(slab), ret); } @@ -636,12 +702,13 @@ Module["allocate"] = allocate; // Allocate memory during any stage of startup - static memory early on, dynamic memory later, malloc when ready function getMemory(size) { if (!staticSealed) return Runtime.staticAlloc(size); - if ((typeof _sbrk !== 'undefined' && !_sbrk.called) || !runtimeInitialized) return Runtime.dynamicAlloc(size); + if (!runtimeInitialized) return Runtime.dynamicAlloc(size); return _malloc(size); } Module["getMemory"] = getMemory; -function Pointer_stringify(ptr, /* optional */ length) { +/** @type {function(number, number=)} */ +function Pointer_stringify(ptr, length) { if (length === 0 || !ptr) return ''; // TODO: use TextDecoder // Find the length, and check for UTF while doing so @@ -698,39 +765,49 @@ Module["stringToAscii"] = stringToAscii; // Given a pointer 'ptr' to a null-terminated UTF8-encoded string in the given array that contains uint8 values, returns // a copy of that string as a Javascript String object. +var UTF8Decoder = typeof TextDecoder !== 'undefined' ? new TextDecoder('utf8') : undefined; function UTF8ArrayToString(u8Array, idx) { - var u0, u1, u2, u3, u4, u5; + var endPtr = idx; + // TextDecoder needs to know the byte length in advance, it doesn't stop on null terminator by itself. + // Also, use the length info to avoid running tiny strings through TextDecoder, since .subarray() allocates garbage. + while (u8Array[endPtr]) ++endPtr; - var str = ''; - while (1) { - // For UTF8 byte structure, see http://en.wikipedia.org/wiki/UTF-8#Description and https://www.ietf.org/rfc/rfc2279.txt and https://tools.ietf.org/html/rfc3629 - u0 = u8Array[idx++]; - if (!u0) return str; - if (!(u0 & 0x80)) { str += String.fromCharCode(u0); continue; } - u1 = u8Array[idx++] & 63; - if ((u0 & 0xE0) == 0xC0) { str += String.fromCharCode(((u0 & 31) << 6) | u1); continue; } - u2 = u8Array[idx++] & 63; - if ((u0 & 0xF0) == 0xE0) { - u0 = ((u0 & 15) << 12) | (u1 << 6) | u2; - } else { - u3 = u8Array[idx++] & 63; - if ((u0 & 0xF8) == 0xF0) { - u0 = ((u0 & 7) << 18) | (u1 << 12) | (u2 << 6) | u3; + if (endPtr - idx > 16 && u8Array.subarray && UTF8Decoder) { + return UTF8Decoder.decode(u8Array.subarray(idx, endPtr)); + } else { + var u0, u1, u2, u3, u4, u5; + + var str = ''; + while (1) { + // For UTF8 byte structure, see http://en.wikipedia.org/wiki/UTF-8#Description and https://www.ietf.org/rfc/rfc2279.txt and https://tools.ietf.org/html/rfc3629 + u0 = u8Array[idx++]; + if (!u0) return str; + if (!(u0 & 0x80)) { str += String.fromCharCode(u0); continue; } + u1 = u8Array[idx++] & 63; + if ((u0 & 0xE0) == 0xC0) { str += String.fromCharCode(((u0 & 31) << 6) | u1); continue; } + u2 = u8Array[idx++] & 63; + if ((u0 & 0xF0) == 0xE0) { + u0 = ((u0 & 15) << 12) | (u1 << 6) | u2; } else { - u4 = u8Array[idx++] & 63; - if ((u0 & 0xFC) == 0xF8) { - u0 = ((u0 & 3) << 24) | (u1 << 18) | (u2 << 12) | (u3 << 6) | u4; + u3 = u8Array[idx++] & 63; + if ((u0 & 0xF8) == 0xF0) { + u0 = ((u0 & 7) << 18) | (u1 << 12) | (u2 << 6) | u3; } else { - u5 = u8Array[idx++] & 63; - u0 = ((u0 & 1) << 30) | (u1 << 24) | (u2 << 18) | (u3 << 12) | (u4 << 6) | u5; + u4 = u8Array[idx++] & 63; + if ((u0 & 0xFC) == 0xF8) { + u0 = ((u0 & 3) << 24) | (u1 << 18) | (u2 << 12) | (u3 << 6) | u4; + } else { + u5 = u8Array[idx++] & 63; + u0 = ((u0 & 1) << 30) | (u1 << 24) | (u2 << 18) | (u3 << 12) | (u4 << 6) | u5; + } } } - } - if (u0 < 0x10000) { - str += String.fromCharCode(u0); - } else { - var ch = u0 - 0x10000; - str += String.fromCharCode(0xD800 | (ch >> 10), 0xDC00 | (ch & 0x3FF)); + if (u0 < 0x10000) { + str += String.fromCharCode(u0); + } else { + var ch = u0 - 0x10000; + str += String.fromCharCode(0xD800 | (ch >> 10), 0xDC00 | (ch & 0x3FF)); + } } } } @@ -746,12 +823,12 @@ Module["UTF8ToString"] = UTF8ToString; // Copies the given Javascript String object 'str' to the given byte array at address 'outIdx', // encoded in UTF8 form and null-terminated. The copy will require at most str.length*4+1 bytes of space in the HEAP. -// Use the function lengthBytesUTF8() to compute the exact number of bytes (excluding null terminator) that this function will write. +// Use the function lengthBytesUTF8 to compute the exact number of bytes (excluding null terminator) that this function will write. // Parameters: // str: the Javascript string to copy. // outU8Array: the array to copy to. Each index in this array is assumed to be one 8-byte element. // outIdx: The starting offset in the array to begin the copying. -// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null +// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null // terminator, i.e. if maxBytesToWrite=1, only the null terminator will be written and nothing else. // maxBytesToWrite=0 does not write any bytes to the output, not even the null terminator. // Returns the number of bytes written, EXCLUDING the null terminator. @@ -811,7 +888,7 @@ Module["stringToUTF8Array"] = stringToUTF8Array; // Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr', // null-terminated and encoded in UTF8 form. The copy will require at most str.length*4+1 bytes of space in the HEAP. -// Use the function lengthBytesUTF8() to compute the exact number of bytes (excluding null terminator) that this function will write. +// Use the function lengthBytesUTF8 to compute the exact number of bytes (excluding null terminator) that this function will write. // Returns the number of bytes written, EXCLUDING the null terminator. function stringToUTF8(str, outPtr, maxBytesToWrite) { @@ -849,20 +926,31 @@ Module["lengthBytesUTF8"] = lengthBytesUTF8; // Given a pointer 'ptr' to a null-terminated UTF16LE-encoded string in the emscripten HEAP, returns // a copy of that string as a Javascript String object. +var UTF16Decoder = typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-16le') : undefined; function UTF16ToString(ptr) { - var i = 0; + var endPtr = ptr; + // TextDecoder needs to know the byte length in advance, it doesn't stop on null terminator by itself. + // Also, use the length info to avoid running tiny strings through TextDecoder, since .subarray() allocates garbage. + var idx = endPtr >> 1; + while (HEAP16[idx]) ++idx; + endPtr = idx << 1; + + if (endPtr - ptr > 32 && UTF16Decoder) { + return UTF16Decoder.decode(HEAPU8.subarray(ptr, endPtr)); + } else { + var i = 0; - var str = ''; - while (1) { - var codeUnit = HEAP16[(((ptr)+(i*2))>>1)]; - if (codeUnit == 0) - return str; - ++i; - // fromCharCode constructs a character from a UTF-16 code unit, so we can pass the UTF16 string right through. - str += String.fromCharCode(codeUnit); + var str = ''; + while (1) { + var codeUnit = HEAP16[(((ptr)+(i*2))>>1)]; + if (codeUnit == 0) return str; + ++i; + // fromCharCode constructs a character from a UTF-16 code unit, so we can pass the UTF16 string right through. + str += String.fromCharCode(codeUnit); + } } } -Module["UTF16ToString"] = UTF16ToString; + // Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr', // null-terminated and encoded in UTF16 form. The copy will require at most str.length*4+2 bytes of space in the HEAP. @@ -870,7 +958,7 @@ Module["UTF16ToString"] = UTF16ToString; // Parameters: // str: the Javascript string to copy. // outPtr: Byte address in Emscripten HEAP where to write the string to. -// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null +// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null // terminator, i.e. if maxBytesToWrite=2, only the null terminator will be written and nothing else. // maxBytesToWrite<2 does not write any bytes to the output, not even the null terminator. // Returns the number of bytes written, EXCLUDING the null terminator. @@ -894,14 +982,14 @@ function stringToUTF16(str, outPtr, maxBytesToWrite) { HEAP16[((outPtr)>>1)]=0; return outPtr - startPtr; } -Module["stringToUTF16"] = stringToUTF16; + // Returns the number of bytes the given Javascript string takes if encoded as a UTF16 byte array, EXCLUDING the null terminator byte. function lengthBytesUTF16(str) { return str.length*2; } -Module["lengthBytesUTF16"] = lengthBytesUTF16; + function UTF32ToString(ptr) { var i = 0; @@ -922,7 +1010,7 @@ function UTF32ToString(ptr) { } } } -Module["UTF32ToString"] = UTF32ToString; + // Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr', // null-terminated and encoded in UTF32 form. The copy will require at most str.length*4+4 bytes of space in the HEAP. @@ -930,7 +1018,7 @@ Module["UTF32ToString"] = UTF32ToString; // Parameters: // str: the Javascript string to copy. // outPtr: Byte address in Emscripten HEAP where to write the string to. -// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null +// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null // terminator, i.e. if maxBytesToWrite=4, only the null terminator will be written and nothing else. // maxBytesToWrite<4 does not write any bytes to the output, not even the null terminator. // Returns the number of bytes written, EXCLUDING the null terminator. @@ -959,7 +1047,7 @@ function stringToUTF32(str, outPtr, maxBytesToWrite) { HEAP32[((outPtr)>>2)]=0; return outPtr - startPtr; } -Module["stringToUTF32"] = stringToUTF32; + // Returns the number of bytes the given Javascript string takes if encoded as a UTF16 byte array, EXCLUDING the null terminator byte. @@ -975,185 +1063,45 @@ function lengthBytesUTF32(str) { return len; } -Module["lengthBytesUTF32"] = lengthBytesUTF32; + function demangle(func) { - var hasLibcxxabi = !!Module['___cxa_demangle']; - if (hasLibcxxabi) { + var __cxa_demangle_func = Module['___cxa_demangle'] || Module['__cxa_demangle']; + if (__cxa_demangle_func) { try { - var buf = _malloc(func.length); - writeStringToMemory(func.substr(1), buf); + var s = + func.substr(1); + var len = lengthBytesUTF8(s)+1; + var buf = _malloc(len); + stringToUTF8(s, buf, len); var status = _malloc(4); - var ret = Module['___cxa_demangle'](buf, 0, 0, status); + var ret = __cxa_demangle_func(buf, 0, 0, status); if (getValue(status, 'i32') === 0 && ret) { return Pointer_stringify(ret); } - // otherwise, libcxxabi failed, we can try ours which may return a partial result + // otherwise, libcxxabi failed } catch(e) { - // failure when using libcxxabi, we can try ours which may return a partial result + // ignore problems here } finally { if (buf) _free(buf); if (status) _free(status); if (ret) _free(ret); } + // failure when using libcxxabi, don't demangle + return func; } - var i = 3; - // params, etc. - var basicTypes = { - 'v': 'void', - 'b': 'bool', - 'c': 'char', - 's': 'short', - 'i': 'int', - 'l': 'long', - 'f': 'float', - 'd': 'double', - 'w': 'wchar_t', - 'a': 'signed char', - 'h': 'unsigned char', - 't': 'unsigned short', - 'j': 'unsigned int', - 'm': 'unsigned long', - 'x': 'long long', - 'y': 'unsigned long long', - 'z': '...' - }; - var subs = []; - var first = true; - function dump(x) { - //return; - if (x) Module.print(x); - Module.print(func); - var pre = ''; - for (var a = 0; a < i; a++) pre += ' '; - Module.print (pre + '^'); - } - function parseNested() { - i++; - if (func[i] === 'K') i++; // ignore const - var parts = []; - while (func[i] !== 'E') { - if (func[i] === 'S') { // substitution - i++; - var next = func.indexOf('_', i); - var num = func.substring(i, next) || 0; - parts.push(subs[num] || '?'); - i = next+1; - continue; - } - if (func[i] === 'C') { // constructor - parts.push(parts[parts.length-1]); - i += 2; - continue; - } - var size = parseInt(func.substr(i)); - var pre = size.toString().length; - if (!size || !pre) { i--; break; } // counter i++ below us - var curr = func.substr(i + pre, size); - parts.push(curr); - subs.push(curr); - i += pre + size; - } - i++; // skip E - return parts; - } - function parse(rawList, limit, allowVoid) { // main parser - limit = limit || Infinity; - var ret = '', list = []; - function flushList() { - return '(' + list.join(', ') + ')'; - } - var name; - if (func[i] === 'N') { - // namespaced N-E - name = parseNested().join('::'); - limit--; - if (limit === 0) return rawList ? [name] : name; - } else { - // not namespaced - if (func[i] === 'K' || (first && func[i] === 'L')) i++; // ignore const and first 'L' - var size = parseInt(func.substr(i)); - if (size) { - var pre = size.toString().length; - name = func.substr(i + pre, size); - i += pre + size; - } - } - first = false; - if (func[i] === 'I') { - i++; - var iList = parse(true); - var iRet = parse(true, 1, true); - ret += iRet[0] + ' ' + name + '<' + iList.join(', ') + '>'; - } else { - ret = name; - } - paramLoop: while (i < func.length && limit-- > 0) { - //dump('paramLoop'); - var c = func[i++]; - if (c in basicTypes) { - list.push(basicTypes[c]); - } else { - switch (c) { - case 'P': list.push(parse(true, 1, true)[0] + '*'); break; // pointer - case 'R': list.push(parse(true, 1, true)[0] + '&'); break; // reference - case 'L': { // literal - i++; // skip basic type - var end = func.indexOf('E', i); - var size = end - i; - list.push(func.substr(i, size)); - i += size + 2; // size + 'EE' - break; - } - case 'A': { // array - var size = parseInt(func.substr(i)); - i += size.toString().length; - if (func[i] !== '_') throw '?'; - i++; // skip _ - list.push(parse(true, 1, true)[0] + ' [' + size + ']'); - break; - } - case 'E': break paramLoop; - default: ret += '?' + c; break paramLoop; - } - } - } - if (!allowVoid && list.length === 1 && list[0] === 'void') list = []; // avoid (void) - if (rawList) { - if (ret) { - list.push(ret + '?'); - } - return list; - } else { - return ret + flushList(); - } - } - var parsed = func; - try { - // Special-case the entry point, since its name differs from other name mangling. - if (func == 'Object._main' || func == '_main') { - return 'main()'; - } - if (typeof func === 'number') func = Pointer_stringify(func); - if (func[0] !== '_') return func; - if (func[1] !== '_') return func; // C function - if (func[2] !== 'Z') return func; - switch (func[3]) { - case 'n': return 'operator new()'; - case 'd': return 'operator delete()'; - } - parsed = parse(); - } catch(e) { - parsed += '?'; - } - if (parsed.indexOf('?') >= 0 && !hasLibcxxabi) { - Runtime.warnOnce('warning: a problem occurred in builtin C++ name demangling; build with -s DEMANGLE_SUPPORT=1 to link in libcxxabi demangling'); - } - return parsed; + Runtime.warnOnce('warning: build with -s DEMANGLE_SUPPORT=1 to link in libcxxabi demangling'); + return func; } function demangleAll(text) { - return text.replace(/__Z[\w\d_]+/g, function(x) { var y = demangle(x); return x === y ? x : (x + ' [' + y + ']') }); + var regex = + /__Z[\w\d_]+/g; + return text.replace(regex, + function(x) { + var y = demangle(x); + return x === y ? x : (x + ' [' + y + ']'); + }); } function jsStackTrace() { @@ -1174,33 +1122,75 @@ function jsStackTrace() { } function stackTrace() { - return demangleAll(jsStackTrace()); + var js = jsStackTrace(); + if (Module['extraStackTrace']) js += '\n' + Module['extraStackTrace'](); + return demangleAll(js); } Module["stackTrace"] = stackTrace; // Memory management -var PAGE_SIZE = 4096; +var PAGE_SIZE = 16384; +var WASM_PAGE_SIZE = 65536; +var ASMJS_PAGE_SIZE = 16777216; +var MIN_TOTAL_MEMORY = 16777216; -function alignMemoryPage(x) { - if (x % 4096 > 0) { - x += (4096 - (x % 4096)); +function alignUp(x, multiple) { + if (x % multiple > 0) { + x += multiple - (x % multiple); } return x; } -var HEAP; -var HEAP8, HEAPU8, HEAP16, HEAPU16, HEAP32, HEAPU32, HEAPF32, HEAPF64; +var HEAP, +/** @type {ArrayBuffer} */ + buffer, +/** @type {Int8Array} */ + HEAP8, +/** @type {Uint8Array} */ + HEAPU8, +/** @type {Int16Array} */ + HEAP16, +/** @type {Uint16Array} */ + HEAPU16, +/** @type {Int32Array} */ + HEAP32, +/** @type {Uint32Array} */ + HEAPU32, +/** @type {Float32Array} */ + HEAPF32, +/** @type {Float64Array} */ + HEAPF64; + +function updateGlobalBuffer(buf) { + Module['buffer'] = buffer = buf; +} + +function updateGlobalBufferViews() { + Module['HEAP8'] = HEAP8 = new Int8Array(buffer); + Module['HEAP16'] = HEAP16 = new Int16Array(buffer); + Module['HEAP32'] = HEAP32 = new Int32Array(buffer); + Module['HEAPU8'] = HEAPU8 = new Uint8Array(buffer); + Module['HEAPU16'] = HEAPU16 = new Uint16Array(buffer); + Module['HEAPU32'] = HEAPU32 = new Uint32Array(buffer); + Module['HEAPF32'] = HEAPF32 = new Float32Array(buffer); + Module['HEAPF64'] = HEAPF64 = new Float64Array(buffer); +} + +var STATIC_BASE, STATICTOP, staticSealed; // static area +var STACK_BASE, STACKTOP, STACK_MAX; // stack area +var DYNAMIC_BASE, DYNAMICTOP_PTR; // dynamic area handled by sbrk + + STATIC_BASE = STATICTOP = STACK_BASE = STACKTOP = STACK_MAX = DYNAMIC_BASE = DYNAMICTOP_PTR = 0; + staticSealed = false; -var STATIC_BASE = 0, STATICTOP = 0, staticSealed = false; // static area -var STACK_BASE = 0, STACKTOP = 0, STACK_MAX = 0; // stack area -var DYNAMIC_BASE = 0, DYNAMICTOP = 0; // dynamic area handled by sbrk function abortOnCannotGrowMemory() { - abort('Cannot enlarge memory arrays. Either (1) compile with -s TOTAL_MEMORY=X with X higher than the current value ' + TOTAL_MEMORY + ', (2) compile with -s ALLOW_MEMORY_GROWTH=1 which adjusts the size at runtime but prevents some optimizations, (3) set Module.TOTAL_MEMORY to a higher value before the program runs, or if you want malloc to return NULL (0) instead of this abort, compile with -s ABORTING_MALLOC=0 '); + abort('Cannot enlarge memory arrays. Either (1) compile with -s TOTAL_MEMORY=X with X higher than the current value ' + TOTAL_MEMORY + ', (2) compile with -s ALLOW_MEMORY_GROWTH=1 which allows increasing the size at runtime but prevents some optimizations, (3) set Module.TOTAL_MEMORY to a higher value before the program runs, or (4) if you want malloc to return NULL (0) instead of this abort, compile with -s ABORTING_MALLOC=0 '); } + function enlargeMemory() { abortOnCannotGrowMemory(); } @@ -1208,42 +1198,32 @@ function enlargeMemory() { var TOTAL_STACK = Module['TOTAL_STACK'] || 5242880; var TOTAL_MEMORY = Module['TOTAL_MEMORY'] || 16777216; - -var totalMemory = 64*1024; -while (totalMemory < TOTAL_MEMORY || totalMemory < 2*TOTAL_STACK) { - if (totalMemory < 16*1024*1024) { - totalMemory *= 2; - } else { - totalMemory += 16*1024*1024 - } -} -if (totalMemory !== TOTAL_MEMORY) { - TOTAL_MEMORY = totalMemory; -} +if (TOTAL_MEMORY < TOTAL_STACK) Module.printErr('TOTAL_MEMORY should be larger than TOTAL_STACK, was ' + TOTAL_MEMORY + '! (TOTAL_STACK=' + TOTAL_STACK + ')'); // Initialize the runtime's memory -// check for full engine support (use string 'subarray' to avoid closure compiler confusion) -assert(typeof Int32Array !== 'undefined' && typeof Float64Array !== 'undefined' && !!(new Int32Array(1)['subarray']) && !!(new Int32Array(1)['set']), - 'JS engine does not provide full typed array support'); -var buffer; +// Use a provided buffer, if there is one, or else allocate a new one +if (Module['buffer']) { + buffer = Module['buffer']; +} else { + // Use a WebAssembly memory where available + { + buffer = new ArrayBuffer(TOTAL_MEMORY); + } +} +updateGlobalBufferViews(); -buffer = new ArrayBuffer(TOTAL_MEMORY); -HEAP8 = new Int8Array(buffer); -HEAP16 = new Int16Array(buffer); -HEAP32 = new Int32Array(buffer); -HEAPU8 = new Uint8Array(buffer); -HEAPU16 = new Uint16Array(buffer); -HEAPU32 = new Uint32Array(buffer); -HEAPF32 = new Float32Array(buffer); -HEAPF64 = new Float64Array(buffer); +function getTotalMemory() { + return TOTAL_MEMORY; +} // Endianness check (note: assumes compiler arch was little-endian) -HEAP32[0] = 255; -assert(HEAPU8[0] === 255 && HEAPU8[3] === 0, 'Typed arrays 2 must be run on a little-endian system'); + HEAP32[0] = 0x63736d65; /* 'emsc' */ +HEAP16[1] = 0x6373; +if (HEAPU8[2] !== 0x73 || HEAPU8[3] !== 0x63) throw 'Runtime error: expected the system to be little-endian!'; Module['HEAP'] = HEAP; Module['buffer'] = buffer; @@ -1266,9 +1246,9 @@ function callRuntimeCallbacks(callbacks) { var func = callback.func; if (typeof func === 'number') { if (callback.arg === undefined) { - Runtime.dynCall('v', func); + Module['dynCall_v'](func); } else { - Runtime.dynCall('vi', func, [callback.arg]); + Module['dynCall_vi'](func, callback.arg); } } else { func(callback.arg === undefined ? null : callback.arg); @@ -1350,8 +1330,8 @@ Module["addOnPostRun"] = addOnPostRun; // Tools - -function intArrayFromString(stringy, dontAddNull, length /* optional */) { +/** @type {function(string, boolean=, number=)} */ +function intArrayFromString(stringy, dontAddNull, length) { var len = length > 0 ? length : lengthBytesUTF8(stringy)+1; var u8array = new Array(len); var numBytesWritten = stringToUTF8Array(stringy, u8array, 0, u8array.length); @@ -1373,21 +1353,29 @@ function intArrayToString(array) { } Module["intArrayToString"] = intArrayToString; +// Deprecated: This function should not be called because it is unsafe and does not provide +// a maximum length limit of how many bytes it is allowed to write. Prefer calling the +// function stringToUTF8Array() instead, which takes in a maximum length that can be used +// to be secure from out of bounds writes. +/** @deprecated */ function writeStringToMemory(string, buffer, dontAddNull) { - var array = intArrayFromString(string, dontAddNull); - var i = 0; - while (i < array.length) { - var chr = array[i]; - HEAP8[(((buffer)+(i))>>0)]=chr; - i = i + 1; + Runtime.warnOnce('writeStringToMemory is deprecated and should not be called! Use stringToUTF8() instead!'); + + var /** @type {number} */ lastChar, /** @type {number} */ end; + if (dontAddNull) { + // stringToUTF8Array always appends null. If we don't want to do that, remember the + // character that existed at the location where the null will be placed, and restore + // that after the write (below). + end = buffer + lengthBytesUTF8(string); + lastChar = HEAP8[end]; } + stringToUTF8(string, buffer, Infinity); + if (dontAddNull) HEAP8[end] = lastChar; // Restore the value under the null character. } Module["writeStringToMemory"] = writeStringToMemory; function writeArrayToMemory(array, buffer) { - for (var i = 0; i < array.length; i++) { - HEAP8[((buffer++)>>0)]=array[i]; - } + HEAP8.set(array, buffer); } Module["writeArrayToMemory"] = writeArrayToMemory; @@ -1442,6 +1430,11 @@ if (!Math['clz32']) Math['clz32'] = function(x) { }; Math.clz32 = Math['clz32'] +if (!Math['trunc']) Math['trunc'] = function(x) { + return x < 0 ? Math.ceil(x) : Math.floor(x); +}; +Math.trunc = Math['trunc']; + var Math_abs = Math.abs; var Math_cos = Math.cos; var Math_sin = Math.sin; @@ -1458,8 +1451,10 @@ var Math_floor = Math.floor; var Math_pow = Math.pow; var Math_imul = Math.imul; var Math_fround = Math.fround; +var Math_round = Math.round; var Math_min = Math.min; var Math_clz32 = Math.clz32; +var Math_trunc = Math.trunc; // A counter of dependencies for calling run(). If we need to // do asynchronous work before running, increment this and @@ -1512,6 +1507,9 @@ var memoryInitializer = null; + + + // === Body === var ASM_CONSTS = []; @@ -1519,25 +1517,23 @@ var ASM_CONSTS = []; -STATIC_BASE = 8; +STATIC_BASE = Runtime.GLOBAL_BASE; + +STATICTOP = STATIC_BASE + 34528; +/* global initializers */ __ATINIT__.push(); -STATICTOP = STATIC_BASE + 34240; - /* global initializers */ __ATINIT__.push(); - /* memory initializer */ allocate([8,201,188,243,103,230,9,106,59,167,202,132,133,174,103,187,43,248,148,254,114,243,110,60,241,54,29,95,58,245,79,165,209,130,230,173,127,82,14,81,31,108,62,43,140,104,5,155,107,189,65,251,171,217,131,31,121,33,126,19,25,205,224,91,34,174,40,215,152,47,138,66,205,101,239,35,145,68,55,113,47,59,77,236,207,251,192,181,188,219,137,129,165,219,181,233,56,181,72,243,91,194,86,57,25,208,5,182,241,17,241,89,155,79,25,175,164,130,63,146,24,129,109,218,213,94,28,171,66,2,3,163,152,170,7,216,190,111,112,69,1,91,131,18,140,178,228,78,190,133,49,36,226,180,255,213,195,125,12,85,111,137,123,242,116,93,190,114,177,150,22,59,254,177,222,128,53,18,199,37,167,6,220,155,148,38,105,207,116,241,155,193,210,74,241,158,193,105,155,228,227,37,79,56,134,71,190,239,181,213,140,139,198,157,193,15,101,156,172,119,204,161,12,36,117,2,43,89,111,44,233,45,131,228,166,110,170,132,116,74,212,251,65,189,220,169,176,92,181,83,17,131,218,136,249,118,171,223,102,238,82,81,62,152,16,50,180,45,109,198,49,168,63,33,251,152,200,39,3,176,228,14,239,190,199,127,89,191,194,143,168,61,243,11,224,198,37,167,10,147,71,145,167,213,111,130,3,224,81,99,202,6,112,110,14,10,103,41,41,20,252,47,210,70,133,10,183,39,38,201,38,92,56,33,27,46,237,42,196,90,252,109,44,77,223,179,149,157,19,13,56,83,222,99,175,139,84,115,10,101,168,178,119,60,187,10,106,118,230,174,237,71,46,201,194,129,59,53,130,20,133,44,114,146,100,3,241,76,161,232,191,162,1,48,66,188,75,102,26,168,145,151,248,208,112,139,75,194,48,190,84,6,163,81,108,199,24,82,239,214,25,232,146,209,16,169,101,85,36,6,153,214,42,32,113,87,133,53,14,244,184,209,187,50,112,160,106,16,200,208,210,184,22,193,164,25,83,171,65,81,8,108,55,30,153,235,142,223,76,119,72,39,168,72,155,225,181,188,176,52,99,90,201,197,179,12,28,57,203,138,65,227,74,170,216,78,115,227,99,119,79,202,156,91,163,184,178,214,243,111,46,104,252,178,239,93,238,130,143,116,96,47,23,67,111,99,165,120,114,171,240,161,20,120,200,132,236,57,100,26,8,2,199,140,40,30,99,35,250,255,190,144,233,189,130,222,235,108,80,164,21,121,198,178,247,163,249,190,43,83,114,227,242,120,113,198,156,97,38,234,206,62,39,202,7,194,192,33,199,184,134,209,30,235,224,205,214,125,218,234,120,209,110,238,127,79,125,245,186,111,23,114,170,103,240,6,166,152,200,162,197,125,99,10,174,13,249,190,4,152,63,17,27,71,28,19,53,11,113,27,132,125,4,35,245,119,219,40,147,36,199,64,123,171,202,50,188,190,201,21,10,190,158,60,76,13,16,156,196,103,29,67,182,66,62,203,190,212,197,76,42,126,101,252,156,41,127,89,236,250,214,58,171,111,203,95,23,88,71,74,140,25,68,108,133,59,140,1,189,241,36,255,248,37,195,1,96,220,55,0,183,76,62,255,195,66,61,0,50,76,164,1,225,164,76,255,76,61,163,255,117,62,31,0,81,145,64,255,118,65,14,0,162,115,214,255,6,138,46,0,124,230,244,255,10,138,143,0,52,26,194,0,184,244,76,0,129,143,41,1,190,244,19,255,123,170,122,255,98,129,68,0,121,213,147,0,86,101,30,255,161,103,155,0,140,89,67,255,239,229,190,1,67,11,181,0,198,240,137,254,238,69,188,255,67,151,238,0,19,42,108,255,229,85,113,1,50,68,135,255,17,106,9,0,50,103,1,255,80,1,168,1,35,152,30,255,16,168,185,1,56,89,232,255,101,210,252,0,41,250,71,0,204,170,79,255,14,46,239,255,80,77,239,0,189,214,75,255,17,141,249,0,38,80,76,255,190,85,117,0,86,228,170,0,156,216,208,1,195,207,164,255,150,66,76,255,175,225,16,255,141,80,98,1,76,219,242,0,198,162,114,0,46,218,152,0,155,43,241,254,155,160,104,255,51,187,165,0,2,17,175,0,66,84,160,1,247,58,30,0,35,65,53,254,69,236,191,0,45,134,245,1,163,123,221,0,32,110,20,255,52,23,165,0,186,214,71,0,233,176,96,0,242,239,54,1,57,89,138,0,83,0,84,255,136,160,100,0,92,142,120,254,104,124,190,0,181,177,62,255,250,41,85,0,152,130,42,1,96,252,246,0,151,151,63,254,239,133,62,0,32,56,156,0,45,167,189,255,142,133,179,1,131,86,211,0,187,179,150,254,250,170,14,255,210,163,78,0,37,52,151,0,99,77,26,0,238,156,213,255,213,192,209,1,73,46,84,0,20,65,41,1,54,206,79,0,201,131,146,254,170,111,24,255,177,33,50,254,171,38,203,255,78,247,116,0,209,221,153,0,133,128,178,1,58,44,25,0,201,39,59,1,189,19,252,0,49,229,210,1,117,187,117,0,181,179,184,1,0,114,219,0,48,94,147,0,245,41,56,0,125,13,204,254,244,173,119,0,44,221,32,254,84,234,20,0,249,160,198,1,236,126,234,255,47,99,168,254,170,226,153,255,102,179,216,0,226,141,122,255,122,66,153,254,182,245,134,0,227,228,25,1,214,57,235,255,216,173,56,255,181,231,210,0,119,128,157,255,129,95,136,255,110,126,51,0,2,169,183,255,7,130,98,254,69,176,94,255,116,4,227,1,217,242,145,255,202,173,31,1,105,1,39,255,46,175,69,0,228,47,58,255,215,224,69,254,207,56,69,255,16,254,139,255,23,207,212,255,202,20,126,255,95,213,96,255,9,176,33,0,200,5,207,255,241,42,128,254,35,33,192,255,248,229,196,1,129,17,120,0,251,103,151,255,7,52,112,255,140,56,66,255,40,226,245,255,217,70,37,254,172,214,9,255,72,67,134,1,146,192,214,255,44,38,112,0,68,184,75,255,206,90,251,0,149,235,141,0,181,170,58,0,116,244,239,0,92,157,2,0,102,173,98,0,233,137,96,1,127,49,203,0,5,155,148,0,23,148,9,255,211,122,12,0,34,134,26,255,219,204,136,0,134,8,41,255,224,83,43,254,85,25,247,0,109,127,0,254,169,136,48,0,238,119,219,255,231,173,213,0,206,18,254,254,8,186,7,255,126,9,7,1,111,42,72,0,111,52,236,254,96,63,141,0,147,191,127,254,205,78,192,255,14,106,237,1,187,219,76,0,175,243,187,254,105,89,173,0,85,25,89,1,162,243,148,0,2,118,209,254,33,158,9,0,139,163,46,255,93,70,40,0,108,42,142,254,111,252,142,255,155,223,144,0,51,229,167,255,73,252,155,255,94,116,12,255,152,160,218,255,156,238,37,255,179,234,207,255,197,0,179,255,154,164,141,0,225,196,104,0,10,35,25,254,209,212,242,255,97,253,222,254,184,101,229,0,222,18,127,1,164,136,135,255,30,207,140,254,146,97,243,0,129,192,26,254,201,84,33,255,111,10,78,255,147,81,178,255,4,4,24,0,161,238,215,255,6,141,33,0,53,215,14,255,41,181,208,255,231,139,157,0,179,203,221,255,255,185,113,0,189,226,172,255,113,66,214,255,202,62,45,255,102,64,8,255,78,174,16,254,133,117,68,255,182,120,89,255,133,114,211,0,189,110,21,255,15,10,106,0,41,192,1,0,152,232,121,255,188,60,160,255,153,113,206,255,0,183,226,254,180,13,72,255,176,160,14,254,211,201,134,255,158,24,143,0,127,105,53,0,96,12,189,0,167,215,251,255,159,76,128,254,106,101,225,255,30,252,4,0,146,12,174,0,89,241,178,254,10,229,166,255,123,221,42,254,30,20,212,0,82,128,3,0,48,209,243,0,119,121,64,255,50,227,156,255,0,110,197,1,103,27,144,0,133,59,140,1,189,241,36,255,248,37,195,1,96,220,55,0,183,76,62,255,195,66,61,0,50,76,164,1,225,164,76,255,76,61,163,255,117,62,31,0,81,145,64,255,118,65,14,0,162,115,214,255,6,138,46,0,124,230,244,255,10,138,143,0,52,26,194,0,184,244,76,0,129,143,41,1,190,244,19,255,123,170,122,255,98,129,68,0,121,213,147,0,86,101,30,255,161,103,155,0,140,89,67,255,239,229,190,1,67,11,181,0,198,240,137,254,238,69,188,255,234,113,60,255,37,255,57,255,69,178,182,254,128,208,179,0,118,26,125,254,3,7,214,255,241,50,77,255,85,203,197,255,211,135,250,255,25,48,100,255,187,213,180,254,17,88,105,0,83,209,158,1,5,115,98,0,4,174,60,254,171,55,110,255,217,181,17,255,20,188,170,0,146,156,102,254,87,214,174,255,114,122,155,1,233,44,170,0,127,8,239,1,214,236,234,0,175,5,219,0,49,106,61,255,6,66,208,255,2,106,110,255,81,234,19,255,215,107,192,255,67,151,238,0,19,42,108,255,229,85,113,1,50,68,135,255,17,106,9,0,50,103,1,255,80,1,168,1,35,152,30,255,16,168,185,1,56,89,232,255,101,210,252,0,41,250,71,0,204,170,79,255,14,46,239,255,80,77,239,0,189,214,75,255,17,141,249,0,38,80,76,255,190,85,117,0,86,228,170,0,156,216,208,1,195,207,164,255,150,66,76,255,175,225,16,255,141,80,98,1,76,219,242,0,198,162,114,0,46,218,152,0,155,43,241,254,155,160,104,255,178,9,252,254,100,110,212,0,14,5,167,0,233,239,163,255,28,151,157,1,101,146,10,255,254,158,70,254,71,249,228,0,88,30,50,0,68,58,160,255,191,24,104,1,129,66,129,255,192,50,85,255,8,179,138,255,38,250,201,0,115,80,160,0,131,230,113,0,125,88,147,0,90,68,199,0,253,76,158,0,28,255,118,0,113,250,254,0,66,75,46,0,230,218,43,0,229,120,186,1,148,68,43,0,136,124,238,1,187,107,197,255,84,53,246,255,51,116,254,255,51,187,165,0,2,17,175,0,66,84,160,1,247,58,30,0,35,65,53,254,69,236,191,0,45,134,245,1,163,123,221,0,32,110,20,255,52,23,165,0,186,214,71,0,233,176,96,0,242,239,54,1,57,89,138,0,83,0,84,255,136,160,100,0,92,142,120,254,104,124,190,0,181,177,62,255,250,41,85,0,152,130,42,1,96,252,246,0,151,151,63,254,239,133,62,0,32,56,156,0,45,167,189,255,142,133,179,1,131,86,211,0,187,179,150,254,250,170,14,255,68,113,21,255,222,186,59,255,66,7,241,1,69,6,72,0,86,156,108,254,55,167,89,0,109,52,219,254,13,176,23,255,196,44,106,255,239,149,71,255,164,140,125,255,159,173,1,0,51,41,231,0,145,62,33,0,138,111,93,1,185,83,69,0,144,115,46,0,97,151,16,255,24,228,26,0,49,217,226,0,113,75,234,254,193,153,12,255,182,48,96,255,14,13,26,0,128,195,249,254,69,193,59,0,132,37,81,254,125,106,60,0,214,240,169,1,164,227,66,0,210,163,78,0,37,52,151,0,99,77,26,0,238,156,213,255,213,192,209,1,73,46,84,0,20,65,41,1,54,206,79,0,201,131,146,254,170,111,24,255,177,33,50,254,171,38,203,255,78,247,116,0,209,221,153,0,133,128,178,1,58,44,25,0,201,39,59,1,189,19,252,0,49,229,210,1,117,187,117,0,181,179,184,1,0,114,219,0,48,94,147,0,245,41,56,0,125,13,204,254,244,173,119,0,44,221,32,254,84,234,20,0,249,160,198,1,236,126,234,255,143,62,221,0,129,89,214,255,55,139,5,254,68,20,191,255,14,204,178,1,35,195,217,0,47,51,206,1,38,246,165,0,206,27,6,254,158,87,36,0,217,52,146,255,125,123,215,255,85,60,31,255,171,13,7,0,218,245,88,254,252,35,60,0,55,214,160,255,133,101,56,0,224,32,19,254,147,64,234,0,26,145,162,1,114,118,125,0,248,252,250,0,101,94,196,255,198,141,226,254,51,42,182,0,135,12,9,254,109,172,210,255,197,236,194,1,241,65,154,0,48,156,47,255,153,67,55,255,218,165,34,254,74,180,179,0,218,66,71,1,88,122,99,0,212,181,219,255,92,42,231,255,239,0,154,0,245,77,183,255,94,81,170,1,18,213,216,0,171,93,71,0,52,94,248,0,18,151,161,254,197,209,66,255,174,244,15,254,162,48,183,0,49,61,240,254,182,93,195,0,199,228,6,1,200,5,17,255,137,45,237,255,108,148,4,0,90,79,237,255,39,63,77,255,53,82,207,1,142,22,118,255,101,232,18,1,92,26,67,0,5,200,88,255,33,168,138,255,149,225,72,0,2,209,27,255,44,245,168,1,220,237,17,255,30,211,105,254,141,238,221,0,128,80,245,254,111,254,14,0,222,95,190,1,223,9,241,0,146,76,212,255,108,205,104,255,63,117,153,0,144,69,48,0,35,228,111,0,192,33,193,255,112,214,190,254,115,152,151,0,23,102,88,0,51,74,248,0,226,199,143,254,204,162,101,255,208,97,189,1,245,104,18,0,230,246,30,255,23,148,69,0,110,88,52,254,226,181,89,255,208,47,90,254,114,161,80,255,33,116,248,0,179,152,87,255,69,144,177,1,88,238,26,255,58,32,113,1,1,77,69,0,59,121,52,255,152,238,83,0,52,8,193,0,231,39,233,255,199,34,138,0,222,68,173,0,91,57,242,254,220,210,127,255,192,7,246,254,151,35,187,0,195,236,165,0,111,93,206,0,212,247,133,1,154,133,209,255,155,231,10,0,64,78,38,0,122,249,100,1,30,19,97,255,62,91,249,1,248,133,77,0,197,63,168,254,116,10,82,0,184,236,113,254,212,203,194,255,61,100,252,254,36,5,202,255,119,91,153,255,129,79,29,0,103,103,171,254,237,215,111,255,216,53,69,0,239,240,23,0,194,149,221,255,38,225,222,0,232,255,180,254,118,82,133,255,57,209,177,1,139,232,133,0,158,176,46,254,194,115,46,0,88,247,229,1,28,103,191,0,221,222,175,254,149,235,44,0,151,228,25,254,218,105,103,0,142,85,210,0,149,129,190,255,213,65,94,254,117,134,224,255,82,198,117,0,157,221,220,0,163,101,36,0,197,114,37,0,104,172,166,254,11,182,0,0,81,72,188,255,97,188,16,255,69,6,10,0,199,147,145,255,8,9,115,1,65,214,175,255,217,173,209,0,80,127,166,0,247,229,4,254,167,183,124,255,90,28,204,254,175,59,240,255,11,41,248,1,108,40,51,255,144,177,195,254,150,250,126,0,138,91,65,1,120,60,222,255,245,193,239,0,29,214,189,255,128,2,25,0,80,154,162,0,77,220,107,1,234,205,74,255,54,166,103,255,116,72,9,0,228,94,47,255,30,200,25,255,35,214,89,255,61,176,140,255,83,226,163,255,75,130,172,0,128,38,17,0,95,137,152,255,215,124,159,1,79,93,0,0,148,82,157,254,195,130,251,255,40,202,76,255,251,126,224,0,157,99,62,254,207,7,225,255,96,68,195,0,140,186,157,255,131,19,231,255,42,128,254,0,52,219,61,254,102,203,72,0,141,7,11,255,186,164,213,0,31,122,119,0,133,242,145,0,208,252,232,255,91,213,182,255,143,4,250,254,249,215,74,0,165,30,111,1,171,9,223,0,229,123,34,1,92,130,26,255,77,155,45,1,195,139,28,255,59,224,78,0,136,17,247,0,108,121,32,0,79,250,189,255,96,227,252,254,38,241,62,0,62,174,125,255,155,111,93,255,10,230,206,1,97,197,40,255,0,49,57,254,65,250,13,0,18,251,150,255,220,109,210,255,5,174,166,254,44,129,189,0,235,35,147,255,37,247,141,255,72,141,4,255,103,107,255,0,247,90,4,0,53,44,42,0,2,30,240,0,4,59,63,0,88,78,36,0,113,167,180,0,190,71,193,255,199,158,164,255,58,8,172,0,77,33,12,0,65,63,3,0,153,77,33,255,172,254,102,1,228,221,4,255,87,30,254,1,146,41,86,255,138,204,239,254,108,141,17,255,187,242,135,0,210,208,127,0,68,45,14,254,73,96,62,0,81,60,24,255,170,6,36,255,3,249,26,0,35,213,109,0,22,129,54,255,21,35,225,255,234,61,56,255,58,217,6,0,143,124,88,0,236,126,66,0,209,38,183,255,34,238,6,255,174,145,102,0,95,22,211,0,196,15,153,254,46,84,232,255,117,34,146,1,231,250,74,255,27,134,100,1,92,187,195,255,170,198,112,0,120,28,42,0,209,70,67,0,29,81,31,0,29,168,100,1,169,173,160,0,107,35,117,0,62,96,59,255,81,12,69,1,135,239,190,255,220,252,18,0,163,220,58,255,137,137,188,255,83,102,109,0,96,6,76,0,234,222,210,255,185,174,205,1,60,158,213,255,13,241,214,0,172,129,140,0,93,104,242,0,192,156,251,0,43,117,30,0,225,81,158,0,127,232,218,0,226,28,203,0,233,27,151,255,117,43,5,255,242,14,47,255,33,20,6,0,137,251,44,254,27,31,245,255,183,214,125,254,40,121,149,0,186,158,213,255,89,8,227,0,69,88,0,254,203,135,225,0,201,174,203,0,147,71,184,0,18,121,41,254,94,5,78,0,224,214,240,254,36,5,180,0,251,135,231,1,163,138,212,0,210,249,116,254,88,129,187,0,19,8,49,254,62,14,144,255,159,76,211,0,214,51,82,0,109,117,228,254,103,223,203,255,75,252,15,1,154,71,220,255,23,13,91,1,141,168,96,255,181,182,133,0,250,51,55,0,234,234,212,254,175,63,158,0,39,240,52,1,158,189,36,255,213,40,85,1,32,180,247,255,19,102,26,1,84,24,97,255,69,21,222,0,148,139,122,255,220,213,235,1,232,203,255,0,121,57,147,0,227,7,154,0,53,22,147,1,72,1,225,0,82,134,48,254,83,60,157,255,145,72,169,0,34,103,239,0,198,233,47,0,116,19,4,255,184,106,9,255,183,129,83,0,36,176,230,1,34,103,72,0,219,162,134,0,245,42,158,0,32,149,96,254,165,44,144,0,202,239,72,254,215,150,5,0,42,66,36,1,132,215,175,0,86,174,86,255,26,197,156,255,49,232,135,254,103,182,82,0,253,128,176,1,153,178,122,0,245,250,10,0,236,24,178,0,137,106,132,0,40,29,41,0,50,30,152,255,124,105,38,0,230,191,75,0,143,43,170,0,44,131,20,255,44,13,23,255,237,255,155,1,159,109,100,255,112,181,24,255,104,220,108,0,55,211,131,0,99,12,213,255,152,151,145,255,238,5,159,0,97,155,8,0,33,108,81,0,1,3,103,0,62,109,34,255,250,155,180,0,32,71,195,255,38,70,145,1,159,95,245,0,69,229,101,1,136,28,240,0,79,224,25,0,78,110,121,255,248,168,124,0,187,128,247,0,2,147,235,254,79,11,132,0,70,58,12,1,181,8,163,255,79,137,133,255,37,170,11,255,141,243,85,255,176,231,215,255,204,150,164,255,239,215,39,255,46,87,156,254,8,163,88,255,172,34,232,0,66,44,102,255,27,54,41,254,236,99,87,255,41,123,169,1,52,114,43,0,117,134,40,0,155,134,26,0,231,207,91,254,35,132,38,255,19,102,125,254,36,227,133,255,118,3,113,255,29,13,124,0,152,96,74,1,88,146,206,255,167,191,220,254,162,18,88,255,182,100,23,0,31,117,52,0,81,46,106,1,12,2,7,0,69,80,201,1,209,246,172,0,12,48,141,1,224,211,88,0,116,226,159,0,122,98,130,0,65,236,234,1,225,226,9,255,207,226,123,1,89,214,59,0,112,135,88,1,90,244,203,255,49,11,38,1,129,108,186,0,89,112,15,1,101,46,204,255,127,204,45,254,79,255,221,255,51,73,18,255,127,42,101,255,241,21,202,0,160,227,7,0,105,50,236,0,79,52,197,255,104,202,208,1,180,15,16,0,101,197,78,255,98,77,203,0,41,185,241,1,35,193,124,0,35,155,23,255,207,53,192,0,11,125,163,1,249,158,185,255,4,131,48,0,21,93,111,255,61,121,231,1,69,200,36,255,185,48,185,255,111,238,21,255,39,50,25,255,99,215,163,255,87,212,30,255,164,147,5,255,128,6,35,1,108,223,110,255,194,76,178,0,74,101,180,0,243,47,48,0,174,25,43,255,82,173,253,1,54,114,192,255,40,55,91,0,215,108,176,255,11,56,7,0,224,233,76,0,209,98,202,254,242,25,125,0,44,193,93,254,203,8,177,0,135,176,19,0,112,71,213,255,206,59,176,1,4,67,26,0,14,143,213,254,42,55,208,255,60,67,120,0,193,21,163,0,99,164,115,0,10,20,118,0,156,212,222,254,160,7,217,255,114,245,76,1,117,59,123,0,176,194,86,254,213,15,176,0,78,206,207,254,213,129,59,0,233,251,22,1,96,55,152,255,236,255,15,255,197,89,84,255,93,149,133,0,174,160,113,0,234,99,169,255,152,116,88,0,144,164,83,255,95,29,198,255,34,47,15,255,99,120,134,255,5,236,193,0,249,247,126,255,147,187,30,0,50,230,117,255,108,217,219,255,163,81,166,255,72,25,169,254,155,121,79,255,28,155,89,254,7,126,17,0,147,65,33,1,47,234,253,0,26,51,18,0,105,83,199,255,163,196,230,0,113,248,164,0,226,254,218,0,189,209,203,255,164,247,222,254,255,35,165,0,4,188,243,1,127,179,71,0,37,237,254,255,100,186,240,0,5,57,71,254,103,72,73,255,244,18,81,254,229,210,132,255,238,6,180,255,11,229,174,255,227,221,192,1,17,49,28,0,163,215,196,254,9,118,4,255,51,240,71,0,113,129,109,255,76,240,231,0,188,177,127,0,125,71,44,1,26,175,243,0,94,169,25,254,27,230,29,0,15,139,119,1,168,170,186,255,172,197,76,255,252,75,188,0,137,124,196,0,72,22,96,255,45,151,249,1,220,145,100,0,64,192,159,255,120,239,226,0,129,178,146,0,0,192,125,0,235,138,234,0,183,157,146,0,83,199,192,255,184,172,72,255,73,225,128,0,77,6,250,255,186,65,67,0,104,246,207,0,188,32,138,255,218,24,242,0,67,138,81,254,237,129,121,255,20,207,150,1,41,199,16,255,6,20,128,0,159,118,5,0,181,16,143,255,220,38,15,0,23,64,147,254,73,26,13,0,87,228,57,1,204,124,128,0,43,24,223,0,219,99,199,0,22,75,20,255,19,27,126,0,157,62,215,0,110,29,230,0,179,167,255,1,54,252,190,0,221,204,182,254,179,158,65,255,81,157,3,0,194,218,159,0,170,223,0,0,224,11,32,255,38,197,98,0,168,164,37,0,23,88,7,1,164,186,110,0,96,36,134,0,234,242,229,0,250,121,19,0,242,254,112,255,3,47,94,1,9,239,6,255,81,134,153,254,214,253,168,255,67,124,224,0,245,95,74,0,28,30,44,254,1,109,220,255,178,89,89,0,252,36,76,0,24,198,46,255,76,77,111,0,134,234,136,255,39,94,29,0,185,72,234,255,70,68,135,255,231,102,7,254,77,231,140,0,167,47,58,1,148,97,118,255,16,27,225,1,166,206,143,255,110,178,214,255,180,131,162,0,143,141,225,1,13,218,78,255,114,153,33,1,98,104,204,0,175,114,117,1,167,206,75,0,202,196,83,1,58,64,67,0,138,47,111,1,196,247,128,255,137,224,224,254,158,112,207,0,154,100,255,1,134,37,107,0,198,128,79,255,127,209,155,255,163,254,185,254,60,14,243,0,31,219,112,254,29,217,65,0,200,13,116,254,123,60,196,255,224,59,184,254,242,89,196,0,123,16,75,254,149,16,206,0,69,254,48,1,231,116,223,255,209,160,65,1,200,80,98,0,37,194,184,254,148,63,34,0,139,240,65,255,217,144,132,255,56,38,45,254,199,120,210,0,108,177,166,255,160,222,4,0,220,126,119,254,165,107,160,255,82,220,248,1,241,175,136,0,144,141,23,255,169,138,84,0,160,137,78,255,226,118,80,255,52,27,132,255,63,96,139,255,152,250,39,0,188,155,15,0,232,51,150,254,40,15,232,255,240,229,9,255,137,175,27,255,75,73,97,1,218,212,11,0,135,5,162,1,107,185,213,0,2,249,107,255,40,242,70,0,219,200,25,0,25,157,13,0,67,82,80,255,196,249,23,255,145,20,149,0,50,72,146,0,94,76,148,1,24,251,65,0,31,192,23,0,184,212,201,255,123,233,162,1,247,173,72,0,162,87,219,254,126,134,89,0,159,11,12,254,166,105,29,0,73,27,228,1,113,120,183,255,66,163,109,1,212,143,11,255,159,231,168,1,255,128,90,0,57,14,58,254,89,52,10,255,253,8,163,1,0,145,210,255,10,129,85,1,46,181,27,0,103,136,160,254,126,188,209,255,34,35,111,0,215,219,24,255,212,11,214,254,101,5,118,0,232,197,133,255,223,167,109,255,237,80,86,255,70,139,94,0,158,193,191,1,155,15,51,255,15,190,115,0,78,135,207,255,249,10,27,1,181,125,233,0,95,172,13,254,170,213,161,255,39,236,138,255,95,93,87,255,190,128,95,0,125,15,206,0,166,150,159,0,227,15,158,255,206,158,120,255,42,141,128,0,101,178,120,1,156,109,131,0,218,14,44,254,247,168,206,255,212,112,28,0,112,17,228,255,90,16,37,1,197,222,108,0,254,207,83,255,9,90,243,255,243,244,172,0,26,88,115,255,205,116,122,0,191,230,193,0,180,100,11,1,217,37,96,255,154,78,156,0,235,234,31,255,206,178,178,255,149,192,251,0,182,250,135,0,246,22,105,0,124,193,109,255,2,210,149,255,169,17,170,0,0,96,110,255,117,9,8,1,50,123,40,255,193,189,99,0,34,227,160,0,48,80,70,254,211,51,236,0,45,122,245,254,44,174,8,0,173,37,233,255,158,65,171,0,122,69,215,255,90,80,2,255,131,106,96,254,227,114,135,0,205,49,119,254,176,62,64,255,82,51,17,255,241,20,243,255,130,13,8,254,128,217,243,255,162,27,1,254,90,118,241,0,246,198,246,255,55,16,118,255,200,159,157,0,163,17,1,0,140,107,121,0,85,161,118,255,38,0,149,0,156,47,238,0,9,166,166,1,75,98,181,255,50,74,25,0,66,15,47,0,139,225,159,0,76,3,142,255,14,238,184,0,11,207,53,255,183,192,186,1,171,32,174,255,191,76,221,1,247,170,219,0,25,172,50,254,217,9,233,0,203,126,68,255,183,92,48,0,127,167,183,1,65,49,254,0,16,63,127,1,254,21,170,255,59,224,127,254,22,48,63,255,27,78,130,254,40,195,29,0,250,132,112,254,35,203,144,0,104,169,168,0,207,253,30,255,104,40,38,254,94,228,88,0,206,16,128,255,212,55,122,255,223,22,234,0,223,197,127,0,253,181,181,1,145,102,118,0,236,153,36,255,212,217,72,255,20,38,24,254,138,62,62,0,152,140,4,0,230,220,99,255,1,21,212,255,148,201,231,0,244,123,9,254,0,171,210,0,51,58,37,255,1,255,14,255,244,183,145,254,0,242,166,0,22,74,132,0,121,216,41,0,95,195,114,254,133,24,151,255,156,226,231,255,247,5,77,255,246,148,115,254,225,92,81,255,222,80,246,254,170,123,89,255,74,199,141,0,29,20,8,255,138,136,70,255,93,75,92,0,221,147,49,254,52,126,226,0,229,124,23,0,46,9,181,0,205,64,52,1,131,254,28,0,151,158,212,0,131,64,78,0,206,25,171,0,0,230,139,0,191,253,110,254,103,247,167,0,64,40,40,1,42,165,241,255,59,75,228,254,124,243,189,255,196,92,178,255,130,140,86,255,141,89,56,1,147,198,5,255,203,248,158,254,144,162,141,0,11,172,226,0,130,42,21,255,1,167,143,255,144,36,36,255,48,88,164,254,168,170,220,0,98,71,214,0,91,208,79,0,159,76,201,1,166,42,214,255,69,255,0,255,6,128,125,255,190,1,140,0,146,83,218,255,215,238,72,1,122,127,53,0,189,116,165,255,84,8,66,255,214,3,208,255,213,110,133,0,195,168,44,1,158,231,69,0,162,64,200,254,91,58,104,0,182,58,187,254,249,228,136,0,203,134,76,254,99,221,233,0,75,254,214,254,80,69,154,0,64,152,248,254,236,136,202,255,157,105,153,254,149,175,20,0,22,35,19,255,124,121,233,0,186,250,198,254,132,229,139,0,137,80,174,255,165,125,68,0,144,202,148,254,235,239,248,0,135,184,118,0,101,94,17,255,122,72,70,254,69,130,146,0,127,222,248,1,69,127,118,255,30,82,215,254,188,74,19,255,229,167,194,254,117,25,66,255,65,234,56,254,213,22,156,0,151,59,93,254,45,28,27,255,186,126,164,255,32,6,239,0,127,114,99,1,219,52,2,255,99,96,166,254,62,190,126,255,108,222,168,1,75,226,174,0,230,226,199,0,60,117,218,255,252,248,20,1,214,188,204,0,31,194,134,254,123,69,192,255,169,173,36,254,55,98,91,0,223,42,102,254,137,1,102,0,157,90,25,0,239,122,64,255,252,6,233,0,7,54,20,255,82,116,174,0,135,37,54,255,15,186,125,0,227,112,175,255,100,180,225,255,42,237,244,255,244,173,226,254,248,18,33,0,171,99,150,255,74,235,50,255,117,82,32,254,106,168,237,0,207,109,208,1,228,9,186,0,135,60,169,254,179,92,143,0,244,170,104,255,235,45,124,255,70,99,186,0,117,137,183,0,224,31,215,0,40,9,100,0,26,16,95,1,68,217,87,0,8,151,20,255,26,100,58,255,176,165,203,1,52,118,70,0,7,32,254,254,244,254,245,255,167,144,194,255,125,113,23,255,176,121,181,0,136,84,209,0,138,6,30,255,89,48,28,0,33,155,14,255,25,240,154,0,141,205,109,1,70,115,62,255,20,40,107,254,138,154,199,255,94,223,226,255,157,171,38,0,163,177,25,254,45,118,3,255,14,222,23,1,209,190,81,255,118,123,232,1,13,213,101,255,123,55,123,254,27,246,165,0,50,99,76,255,140,214,32,255,97,65,67,255,24,12,28,0,174,86,78,1,64,247,96,0,160,135,67,0,66,55,243,255,147,204,96,255,26,6,33,255,98,51,83,1,153,213,208,255,2,184,54,255,25,218,11,0,49,67,246,254,18,149,72,255,13,25,72,0,42,79,214,0,42,4,38,1,27,139,144,255,149,187,23,0,18,164,132,0,245,84,184,254,120,198,104,255,126,218,96,0,56,117,234,255,13,29,214,254,68,47,10,255,167,154,132,254,152,38,198,0,66,178,89,255,200,46,171,255,13,99,83,255,210,187,253,255,170,45,42,1,138,209,124,0,214,162,141,0,12,230,156,0,102,36,112,254,3,147,67,0,52,215,123,255,233,171,54,255,98,137,62,0,247,218,39,255,231,218,236,0,247,191,127,0,195,146,84,0,165,176,92,255,19,212,94,255,17,74,227,0,88,40,153,1,198,147,1,255,206,67,245,254,240,3,218,255,61,141,213,255,97,183,106,0,195,232,235,254,95,86,154,0,209,48,205,254,118,209,241,255,240,120,223,1,213,29,159,0,163,127,147,255,13,218,93,0,85,24,68,254,70,20,80,255,189,5,140,1,82,97,254,255,99,99,191,255,132,84,133,255,107,218,116,255,112,122,46,0,105,17,32,0,194,160,63,255,68,222,39,1,216,253,92,0,177,105,205,255,149,201,195,0,42,225,11,255,40,162,115,0,9,7,81,0,165,218,219,0,180,22,0,254,29,146,252,255,146,207,225,1,180,135,96,0,31,163,112,0,177,11,219,255,133,12,193,254,43,78,50,0,65,113,121,1,59,217,6,255,110,94,24,1,112,172,111,0,7,15,96,0,36,85,123,0,71,150,21,255,208,73,188,0,192,11,167,1,213,245,34,0,9,230,92,0,162,142,39,255,215,90,27,0,98,97,89,0,94,79,211,0,90,157,240,0,95,220,126,1,102,176,226,0,36,30,224,254,35,31,127,0,231,232,115,1,85,83,130,0,210,73,245,255,47,143,114,255,68,65,197,0,59,72,62,255,183,133,173,254,93,121,118,255,59,177,81,255,234,69,173,255,205,128,177,0,220,244,51,0,26,244,209,1,73,222,77,255,163,8,96,254,150,149,211,0,158,254,203,1,54,127,139,0,161,224,59,0,4,109,22,255,222,42,45,255,208,146,102,255,236,142,187,0,50,205,245,255,10,74,89,254,48,79,142,0,222,76,130,255,30,166,63,0,236,12,13,255,49,184,244,0,187,113,102,0,218,101,253,0,153,57,182,254,32,150,42,0,25,198,146,1,237,241,56,0,140,68,5,0,91,164,172,255,78,145,186,254,67,52,205,0,219,207,129,1,109,115,17,0,54,143,58,1,21,248,120,255,179,255,30,0,193,236,66,255,1,255,7,255,253,192,48,255,19,69,217,1,3,214,0,255,64,101,146,1,223,125,35,255,235,73,179,255,249,167,226,0,225,175,10,1,97,162,58,0,106,112,171,1,84,172,5,255,133,140,178,255,134,245,142,0,97,90,125,255,186,203,185,255,223,77,23,255,192,92,106,0,15,198,115,255,217,152,248,0,171,178,120,255,228,134,53,0,176,54,193,1,250,251,53,0,213,10,100,1,34,199,106,0,151,31,244,254,172,224,87,255,14,237,23,255,253,85,26,255,127,39,116,255,172,104,100,0,251,14,70,255,212,208,138,255,253,211,250,0,176,49,165,0,15,76,123,255,37,218,160,255,92,135,16,1,10,126,114,255,70,5,224,255,247,249,141,0,68,20,60,1,241,210,189,255,195,217,187,1,151,3,113,0,151,92,174,0,231,62,178,255,219,183,225,0,23,23,33,255,205,181,80,0,57,184,248,255,67,180,1,255,90,123,93,255,39,0,162,255,96,248,52,255,84,66,140,0,34,127,228,255,194,138,7,1,166,110,188,0,21,17,155,1,154,190,198,255,214,80,59,255,18,7,143,0,72,29,226,1,199,217,249,0,232,161,71,1,149,190,201,0,217,175,95,254,113,147,67,255,138,143,199,255,127,204,1,0,29,182,83,1,206,230,155,255,186,204,60,0,10,125,85,255,232,96,25,255,255,89,247,255,213,254,175,1,232,193,81,0,28,43,156,254,12,69,8,0,147,24,248,0,18,198,49,0,134,60,35,0,118,246,18,255,49,88,254,254,228,21,186,255,182,65,112,1,219,22,1,255,22,126,52,255,189,53,49,255,112,25,143,0,38,127,55,255,226,101,163,254,208,133,61,255,137,69,174,1,190,118,145,255,60,98,219,255,217,13,245,255,250,136,10,0,84,254,226,0,201,31,125,1,240,51,251,255,31,131,130,255,2,138,50,255,215,215,177,1,223,12,238,255,252,149,56,255,124,91,68,255,72,126,170,254,119,255,100,0,130,135,232,255,14,79,178,0,250,131,197,0,138,198,208,0,121,216,139,254,119,18,36,255,29,193,122,0,16,42,45,255,213,240,235,1,230,190,169,255,198,35,228,254,110,173,72,0,214,221,241,255,56,148,135,0,192,117,78,254,141,93,207,255,143,65,149,0,21,18,98,255,95,44,244,1,106,191,77,0,254,85,8,254,214,110,176,255,73,173,19,254,160,196,199,255,237,90,144,0,193,172,113,255,200,155,136,254,228,90,221,0,137,49,74,1,164,221,215,255,209,189,5,255,105,236,55,255,42,31,129,1,193,255,236,0,46,217,60,0,138,88,187,255,226,82,236,255,81,69,151,255,142,190,16,1,13,134,8,0,127,122,48,255,81,64,156,0,171,243,139,0,237,35,246,0,122,143,193,254,212,122,146,0,95,41,255,1,87,132,77,0,4,212,31,0,17,31,78,0,39,45,173,254,24,142,217,255,95,9,6,255,227,83,6,0,98,59,130,254,62,30,33,0,8,115,211,1,162,97,128,255,7,184,23,254,116,28,168,255,248,138,151,255,98,244,240,0,186,118,130,0,114,248,235,255,105,173,200,1,160,124,71,255,94,36,164,1,175,65,146,255,238,241,170,254,202,198,197,0,228,71,138,254,45,246,109,255,194,52,158,0,133,187,176,0,83,252,154,254,89,189,221,255,170,73,252,0,148,58,125,0,36,68,51,254,42,69,177,255,168,76,86,255,38,100,204,255,38,53,35,0,175,19,97,0,225,238,253,255,81,81,135,0,210,27,255,254,235,73,107,0,8,207,115,0,82,127,136,0,84,99,21,254,207,19,136,0,100,164,101,0,80,208,77,255,132,207,237,255,15,3,15,255,33,166,110,0,156,95,85,255,37,185,111,1,150,106,35,255,166,151,76,0,114,87,135,255,159,194,64,0,12,122,31,255,232,7,101,254,173,119,98,0,154,71,220,254,191,57,53,255,168,232,160,255,224,32,99,255,218,156,165,0,151,153,163,0,217,13,148,1,197,113,89,0,149,28,161,254,207,23,30,0,105,132,227,255,54,230,94,255,133,173,204,255,92,183,157,255,88,144,252,254,102,33,90,0,159,97,3,0,181,218,155,255,240,114,119,0,106,214,53,255,165,190,115,1,152,91,225,255,88,106,44,255,208,61,113,0,151,52,124,0,191,27,156,255,110,54,236,1,14,30,166,255,39,127,207,1,229,199,28,0,188,228,188,254,100,157,235,0,246,218,183,1,107,22,193,255,206,160,95,0,76,239,147,0,207,161,117,0,51,166,2,255,52,117,10,254,73,56,227,255,152,193,225,0,132,94,136,255,101,191,209,0,32,107,229,255,198,43,180,1,100,210,118,0,114,67,153,255,23,88,26,255,89,154,92,1,220,120,140,255,144,114,207,255,252,115,250,255,34,206,72,0,138,133,127,255,8,178,124,1,87,75,97,0,15,229,92,254,240,67,131,255,118,123,227,254,146,120,104,255,145,213,255,1,129,187,70,255,219,119,54,0,1,19,173,0,45,150,148,1,248,83,72,0,203,233,169,1,142,107,56,0,247,249,38,1,45,242,80,255,30,233,103,0,96,82,70,0,23,201,111,0,81,39,30,255,161,183,78,255,194,234,33,255,68,227,140,254,216,206,116,0,70,27,235,255,104,144,79,0,164,230,93,254,214,135,156,0,154,187,242,254,188,20,131,255,36,109,174,0,159,112,241,0,5,110,149,1,36,165,218,0,166,29,19,1,178,46,73,0,93,43,32,254,248,189,237,0,102,155,141,0,201,93,195,255,241,139,253,255,15,111,98,255,108,65,163,254,155,79,190,255,73,174,193,254,246,40,48,255,107,88,11,254,202,97,85,255,253,204,18,255,113,242,66,0,110,160,194,254,208,18,186,0,81,21,60,0,188,104,167,255,124,166,97,254,210,133,142,0,56,242,137,254,41,111,130,0,111,151,58,1,111,213,141,255,183,172,241,255,38,6,196,255,185,7,123,255,46,11,246,0,245,105,119,1,15,2,161,255,8,206,45,255,18,202,74,255,83,124,115,1,212,141,157,0,83,8,209,254,139,15,232,255,172,54,173,254,50,247,132,0,214,189,213,0,144,184,105,0,223,254,248,0,255,147,240,255,23,188,72,0,7,51,54,0,188,25,180,254,220,180,0,255,83,160,20,0,163,189,243,255,58,209,194,255,87,73,60,0,106,24,49,0,245,249,220,0,22,173,167,0,118,11,195,255,19,126,237,0,110,159,37,255,59,82,47,0,180,187,86,0,188,148,208,1,100,37,133,255,7,112,193,0,129,188,156,255,84,106,129,255,133,225,202,0,14,236,111,255,40,20,101,0,172,172,49,254,51,54,74,255,251,185,184,255,93,155,224,255,180,249,224,1,230,178,146,0,72,57,54,254,178,62,184,0,119,205,72,0,185,239,253,255,61,15,218,0,196,67,56,255,234,32,171,1,46,219,228,0,208,108,234,255,20,63,232,255,165,53,199,1,133,228,5,255,52,205,107,0,74,238,140,255,150,156,219,254,239,172,178,255,251,189,223,254,32,142,211,255,218,15,138,1,241,196,80,0,28,36,98,254,22,234,199,0,61,237,220,255,246,57,37,0,142,17,142,255,157,62,26,0,43,238,95,254,3,217,6,255,213,25,240,1,39,220,174,255,154,205,48,254,19,13,192,255,244,34,54,254,140,16,155,0,240,181,5,254,155,193,60,0,166,128,4,255,36,145,56,255,150,240,219,0,120,51,145,0,82,153,42,1,140,236,146,0,107,92,248,1,189,10,3,0,63,136,242,0,211,39,24,0,19,202,161,1,173,27,186,255,210,204,239,254,41,209,162,255,182,254,159,255,172,116,52,0,195,103,222,254,205,69,59,0,53,22,41,1,218,48,194,0,80,210,242,0,210,188,207,0,187,161,161,254,216,17,1,0,136,225,113,0,250,184,63,0,223,30,98,254,77,168,162,0,59,53,175,0,19,201,10,255,139,224,194,0,147,193,154,255,212,189,12,254,1,200,174,255,50,133,113,1,94,179,90,0,173,182,135,0,94,177,113,0,43,89,215,255,136,252,106,255,123,134,83,254,5,245,66,255,82,49,39,1,220,2,224,0,97,129,177,0,77,59,89,0,61,29,155,1,203,171,220,255,92,78,139,0,145,33,181,255,169,24,141,1,55,150,179,0,139,60,80,255,218,39,97,0,2,147,107,255,60,248,72,0,173,230,47,1,6,83,182,255,16,105,162,254,137,212,81,255,180,184,134,1,39,222,164,255,221,105,251,1,239,112,125,0,63,7,97,0,63,104,227,255,148,58,12,0,90,60,224,255,84,212,252,0,79,215,168,0,248,221,199,1,115,121,1,0,36,172,120,0,32,162,187,255,57,107,49,255,147,42,21,0,106,198,43,1,57,74,87,0,126,203,81,255,129,135,195,0,140,31,177,0,221,139,194,0,3,222,215,0,131,68,231,0,177,86,178,254,124,151,180,0,184,124,38,1,70,163,17,0,249,251,181,1,42,55,227,0,226,161,44,0,23,236,110,0,51,149,142,1,93,5,236,0,218,183,106,254,67,24,77,0,40,245,209,255,222,121,153,0,165,57,30,0,83,125,60,0,70,38,82,1,229,6,188,0,109,222,157,255,55,118,63,255,205,151,186,0,227,33,149,255,254,176,246,1,227,177,227,0,34,106,163,254,176,43,79,0,106,95,78,1,185,241,122,255,185,14,61,0,36,1,202,0,13,178,162,255,247,11,132,0,161,230,92,1,65,1,185,255,212,50,165,1,141,146,64,255,158,242,218,0,21,164,125,0,213,139,122,1,67,71,87,0,203,158,178,1,151,92,43,0,152,111,5,255,39,3,239,255,217,255,250,255,176,63,71,255,74,245,77,1,250,174,18,255,34,49,227,255,246,46,251,255,154,35,48,1,125,157,61,255,106,36,78,255,97,236,153,0,136,187,120,255,113,134,171,255,19,213,217,254,216,94,209,255,252,5,61,0,94,3,202,0,3,26,183,255,64,191,43,255,30,23,21,0,129,141,77,255,102,120,7,1,194,76,140,0,188,175,52,255,17,81,148,0,232,86,55,1,225,48,172,0,134,42,42,255,238,50,47,0,169,18,254,0,20,147,87,255,14,195,239,255,69,247,23,0,238,229,128,255,177,49,112,0,168,98,251,255,121,71,248,0,243,8,145,254,246,227,153,255,219,169,177,254,251,139,165,255,12,163,185,255,164,40,171,255,153,159,27,254,243,109,91,255,222,24,112,1,18,214,231,0,107,157,181,254,195,147,0,255,194,99,104,255,89,140,190,255,177,66,126,254,106,185,66,0,49,218,31,0,252,174,158,0,188,79,230,1,238,41,224,0,212,234,8,1,136,11,181,0,166,117,83,255,68,195,94,0,46,132,201,0,240,152,88,0,164,57,69,254,160,224,42,255,59,215,67,255,119,195,141,255,36,180,121,254,207,47,8,255,174,210,223,0,101,197,68,255,255,82,141,1,250,137,233,0,97,86,133,1,16,80,69,0,132,131,159,0,116,93,100,0,45,141,139,0,152,172,157,255,90,43,91,0,71,153,46,0,39,16,112,255,217,136,97,255,220,198,25,254,177,53,49,0,222,88,134,255,128,15,60,0,207,192,169,255,192,116,209,255,106,78,211,1,200,213,183,255,7,12,122,254,222,203,60,255,33,110,199,254,251,106,117,0,228,225,4,1,120,58,7,255,221,193,84,254,112,133,27,0,189,200,201,255,139,135,150,0,234,55,176,255,61,50,65,0,152,108,169,255,220,85,1,255,112,135,227,0,162,26,186,0,207,96,185,254,244,136,107,0,93,153,50,1,198,97,151,0,110,11,86,255,143,117,174,255,115,212,200,0,5,202,183,0,237,164,10,254,185,239,62,0,236,120,18,254,98,123,99,255,168,201,194,254,46,234,214,0,191,133,49,255,99,169,119,0,190,187,35,1,115,21,45,255,249,131,72,0,112,6,123,255,214,49,181,254,166,233,34,0,92,197,102,254,253,228,205,255,3,59,201,1,42,98,46,0,219,37,35,255,169,195,38,0,94,124,193,1,156,43,223,0,95,72,133,254,120,206,191,0,122,197,239,255,177,187,79,255,254,46,2,1,250,167,190,0,84,129,19,0,203,113,166,255,249,31,189,254,72,157,202,255,208,71,73,255,207,24,72,0,10,16,18,1,210,81,76,255,88,208,192,255,126,243,107,255,238,141,120,255,199,121,234,255,137,12,59,255,36,220,123,255,148,179,60,254,240,12,29,0,66,0,97,1,36,30,38,255,115,1,93,255,96,103,231,255], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE); /* memory initializer */ allocate([197,158,59,1,192,164,240,0,202,202,57,255,24,174,48,0,89,77,155,1,42,76,215,0,244,151,233,0,23,48,81,0,239,127,52,254,227,130,37,255,248,116,93,1,124,132,118,0,173,254,192,1,6,235,83,255,110,175,231,1,251,28,182,0,129,249,93,254,84,184,128,0,76,181,62,0,175,128,186,0,100,53,136,254,109,29,226,0,221,233,58,1,20,99,74,0,0,22,160,0,134,13,21,0,9,52,55,255,17,89,140,0,175,34,59,0,84,165,119,255,224,226,234,255,7,72,166,255,123,115,255,1,18,214,246,0,250,7,71,1,217,220,185,0,212,35,76,255,38,125,175,0,189,97,210,0,114,238,44,255,41,188,169,254,45,186,154,0,81,92,22,0,132,160,193,0,121,208,98,255,13,81,44,255,203,156,82,0,71,58,21,255,208,114,191,254,50,38,147,0,154,216,195,0,101,25,18,0,60,250,215,255,233,132,235,255,103,175,142,1,16,14,92,0,141,31,110,254,238,241,45,255,153,217,239,1,97,168,47,255,249,85,16,1,28,175,62,255,57,254,54,0,222,231,126,0,166,45,117,254,18,189,96,255,228,76,50,0,200,244,94,0,198,152,120,1,68,34,69,255,12,65,160,254,101,19,90,0,167,197,120,255,68,54,185,255,41,218,188,0,113,168,48,0,88,105,189,1,26,82,32,255,185,93,164,1,228,240,237,255,66,182,53,0,171,197,92,255,107,9,233,1,199,120,144,255,78,49,10,255,109,170,105,255,90,4,31,255,28,244,113,255,74,58,11,0,62,220,246,255,121,154,200,254,144,210,178,255,126,57,129,1,43,250,14,255,101,111,28,1,47,86,241,255,61,70,150,255,53,73,5,255,30,26,158,0,209,26,86,0,138,237,74,0,164,95,188,0,142,60,29,254,162,116,248,255,187,175,160,0,151,18,16,0,209,111,65,254,203,134,39,255,88,108,49,255,131,26,71,255,221,27,215,254,104,105,93,255,31,236,31,254,135,0,211,255,143,127,110,1,212,73,229,0,233,67,167,254,195,1,208,255,132,17,221,255,51,217,90,0,67,235,50,255,223,210,143,0,179,53,130,1,233,106,198,0,217,173,220,255,112,229,24,255,175,154,93,254,71,203,246,255,48,66,133,255,3,136,230,255,23,221,113,254,235,111,213,0,170,120,95,254,251,221,2,0,45,130,158,254,105,94,217,255,242,52,180,254,213,68,45,255,104,38,28,0,244,158,76,0,161,200,96,255,207,53,13,255,187,67,148,0,170,54,248,0,119,162,178,255,83,20,11,0,42,42,192,1,146,159,163,255,183,232,111,0,77,229,21,255,71,53,143,0,27,76,34,0,246,136,47,255,219,39,182,255,92,224,201,1,19,142,14,255,69,182,241,255,163,118,245,0,9,109,106,1,170,181,247,255,78,47,238,255,84,210,176,255,213,107,139,0,39,38,11,0,72,21,150,0,72,130,69,0,205,77,155,254,142,133,21,0,71,111,172,254,226,42,59,255,179,0,215,1,33,128,241,0,234,252,13,1,184,79,8,0,110,30,73,255,246,141,189,0,170,207,218,1,74,154,69,255,138,246,49,255,155,32,100,0,125,74,105,255,90,85,61,255,35,229,177,255,62,125,193,255,153,86,188,1,73,120,212,0,209,123,246,254,135,209,38,255,151,58,44,1,92,69,214,255,14,12,88,255,252,153,166,255,253,207,112,255,60,78,83,255,227,124,110,0,180,96,252,255,53,117,33,254,164,220,82,255,41,1,27,255,38,164,166,255,164,99,169,254,61,144,70,255,192,166,18,0,107,250,66,0,197,65,50,0,1,179,18,255,255,104,1,255,43,153,35,255,80,111,168,0,110,175,168,0,41,105,45,255,219,14,205,255,164,233,140,254,43,1,118,0,233,67,195,0,178,82,159,255,138,87,122,255,212,238,90,255,144,35,124,254,25,140,164,0,251,215,44,254,133,70,107,255,101,227,80,254,92,169,55,0,215,42,49,0,114,180,85,255,33,232,27,1,172,213,25,0,62,176,123,254,32,133,24,255,225,191,62,0,93,70,153,0,181,42,104,1,22,191,224,255,200,200,140,255,249,234,37,0,149,57,141,0,195,56,208,255,254,130,70,255,32,173,240,255,29,220,199,0,110,100,115,255,132,229,249,0,228,233,223,255,37,216,209,254,178,177,209,255,183,45,165,254,224,97,114,0,137,97,168,255,225,222,172,0,165,13,49,1,210,235,204,255,252,4,28,254,70,160,151,0,232,190,52,254,83,248,93,255,62,215,77,1,175,175,179,255,160,50,66,0,121,48,208,0,63,169,209,255,0,210,200,0,224,187,44,1,73,162,82,0,9,176,143,255,19,76,193,255,29,59,167,1,24,43,154,0,28,190,190,0,141,188,129,0,232,235,203,255,234,0,109,255,54,65,159,0,60,88,232,255,121,253,150,254,252,233,131,255,198,110,41,1,83,77,71,255,200,22,59,254,106,253,242,255,21,12,207,255,237,66,189,0,90,198,202,1,225,172,127,0,53,22,202,0,56,230,132,0,1,86,183,0,109,190,42,0,243,68,174,1,109,228,154,0,200,177,122,1,35,160,183,255,177,48,85,255,90,218,169,255,248,152,78,0,202,254,110,0,6,52,43,0,142,98,65,255,63,145,22,0,70,106,93,0,232,138,107,1,110,179,61,255,211,129,218,1,242,209,92,0,35,90,217,1,182,143,106,255,116,101,217,255,114,250,221,255,173,204,6,0,60,150,163,0,73,172,44,255,239,110,80,255,237,76,153,254,161,140,249,0,149,232,229,0,133,31,40,255,174,164,119,0,113,51,214,0,129,228,2,254,64,34,243,0,107,227,244,255,174,106,200,255,84,153,70,1,50,35,16,0,250,74,216,254,236,189,66,255,153,249,13,0,230,178,4,255,221,41,238,0,118,227,121,255,94,87,140,254,254,119,92,0,73,239,246,254,117,87,128,0,19,211,145,255,177,46,252,0,229,91,246,1,69,128,247,255,202,77,54,1,8,11,9,255,153,96,166,0,217,214,173,255,134,192,2,1,0,207,0,0,189,174,107,1,140,134,100,0,158,193,243,1,182,102,171,0,235,154,51,0,142,5,123,255,60,168,89,1,217,14,92,255,19,214,5,1,211,167,254,0,44,6,202,254,120,18,236,255,15,113,184,255,184,223,139,0,40,177,119,254,182,123,90,255,176,165,176,0,247,77,194,0,27,234,120,0,231,0,214,255,59,39,30,0,125,99,145,255,150,68,68,1,141,222,248,0,153,123,210,255,110,127,152,255,229,33,214,1,135,221,197,0,137,97,2,0,12,143,204,255,81,41,188,0,115,79,130,255,94,3,132,0,152,175,187,255,124,141,10,255,126,192,179,255,11,103,198,0,149,6,45,0,219,85,187,1,230,18,178,255,72,182,152,0,3,198,184,255,128,112,224,1,97,161,230,0,254,99,38,255,58,159,197,0,151,66,219,0,59,69,143,255,185,112,249,0,119,136,47,255,123,130,132,0,168,71,95,255,113,176,40,1,232,185,173,0,207,93,117,1,68,157,108,255,102,5,147,254,49,97,33,0,89,65,111,254,247,30,163,255,124,217,221,1,102,250,216,0,198,174,75,254,57,55,18,0,227,5,236,1,229,213,173,0,201,109,218,1,49,233,239,0,30,55,158,1,25,178,106,0,155,111,188,1,94,126,140,0,215,31,238,1,77,240,16,0,213,242,25,1,38,71,168,0,205,186,93,254,49,211,140,255,219,0,180,255,134,118,165,0,160,147,134,255,110,186,35,255,198,243,42,0,243,146,119,0,134,235,163,1,4,241,135,255,193,46,193,254,103,180,79,255,225,4,184,254,242,118,130,0,146,135,176,1,234,111,30,0,69,66,213,254,41,96,123,0,121,94,42,255,178,191,195,255,46,130,42,0,117,84,8,255,233,49,214,254,238,122,109,0,6,71,89,1,236,211,123,0,244,13,48,254,119,148,14,0,114,28,86,255,75,237,25,255,145,229,16,254,129,100,53,255,134,150,120,254,168,157,50,0,23,72,104,255,224,49,14,0,255,123,22,255,151,185,151,255,170,80,184,1,134,182,20,0,41,100,101,1,153,33,16,0,76,154,111,1,86,206,234,255,192,160,164,254,165,123,93,255,1,216,164,254,67,17,175,255,169,11,59,255,158,41,61,255,73,188,14,255,195,6,137,255,22,147,29,255,20,103,3,255,246,130,227,255,122,40,128,0,226,47,24,254,35,36,32,0,152,186,183,255,69,202,20,0,195,133,195,0,222,51,247,0,169,171,94,1,183,0,160,255,64,205,18,1,156,83,15,255,197,58,249,254,251,89,110,255,50,10,88,254,51,43,216,0,98,242,198,1,245,151,113,0,171,236,194,1,197,31,199,255,229,81,38,1,41,59,20,0,253,104,230,0,152,93,14,255,246,242,146,254,214,169,240,255,240,102,108,254,160,167,236,0,154,218,188,0,150,233,202,255,27,19,250,1,2,71,133,255,175,12,63,1,145,183,198,0,104,120,115,255,130,251,247,0,17,212,167,255,62,123,132,255,247,100,189,0,155,223,152,0,143,197,33,0,155,59,44,255,150,93,240,1,127,3,87,255,95,71,207,1,167,85,1,255,188,152,116,255,10,23,23,0,137,195,93,1,54,98,97,0,240,0,168,255,148,188,127,0,134,107,151,0,76,253,171,0,90,132,192,0,146,22,54,0,224,66,54,254,230,186,229,255,39,182,196,0,148,251,130,255,65,131,108,254,128,1,160,0,169,49,167,254,199,254,148,255,251,6,131,0,187,254,129,255,85,82,62,0,178,23,58,255,254,132,5,0,164,213,39,0,134,252,146,254,37,53,81,255,155,134,82,0,205,167,238,255,94,45,180,255,132,40,161,0,254,111,112,1,54,75,217,0,179,230,221,1,235,94,191,255,23,243,48,1,202,145,203,255,39,118,42,255,117,141,253,0,254,0,222,0,43,251,50,0,54,169,234,1,80,68,208,0,148,203,243,254,145,7,135,0,6,254,0,0,252,185,127,0,98,8,129,255,38,35,72,255,211,36,220,1,40,26,89,0,168,64,197,254,3,222,239,255,2,83,215,254,180,159,105,0,58,115,194,0,186,116,106,255,229,247,219,255,129,118,193,0,202,174,183,1,166,161,72,0,201,107,147,254,237,136,74,0,233,230,106,1,105,111,168,0,64,224,30,1,1,229,3,0,102,151,175,255,194,238,228,255,254,250,212,0,187,237,121,0,67,251,96,1,197,30,11,0,183,95,204,0,205,89,138,0,64,221,37,1,255,223,30,255,178,48,211,255,241,200,90,255,167,209,96,255,57,130,221,0,46,114,200,255,61,184,66,0,55,182,24,254,110,182,33,0,171,190,232,255,114,94,31,0,18,221,8,0,47,231,254,0,255,112,83,0,118,15,215,255,173,25,40,254,192,193,31,255,238,21,146,255,171,193,118,255,101,234,53,254,131,212,112,0,89,192,107,1,8,208,27,0,181,217,15,255,231,149,232,0,140,236,126,0,144,9,199,255,12,79,181,254,147,182,202,255,19,109,182,255,49,212,225,0,74,163,203,0,175,233,148,0,26,112,51,0,193,193,9,255,15,135,249,0,150,227,130,0,204,0,219,1,24,242,205,0,238,208,117,255,22,244,112,0,26,229,34,0,37,80,188,255,38,45,206,254,240,90,225,255,29,3,47,255,42,224,76,0,186,243,167,0,32,132,15,255,5,51,125,0,139,135,24,0,6,241,219,0,172,229,133,255,246,214,50,0,231,11,207,255,191,126,83,1,180,163,170,255,245,56,24,1,178,164,211,255,3,16,202,1,98,57,118,255,141,131,89,254,33,51,24,0,243,149,91,255,253,52,14,0,35,169,67,254,49,30,88,255,179,27,36,255,165,140,183,0,58,189,151,0,88,31,0,0,75,169,66,0,66,101,199,255,24,216,199,1,121,196,26,255,14,79,203,254,240,226,81,255,94,28,10,255,83,193,240,255,204,193,131,255,94,15,86,0,218,40,157,0,51,193,209,0,0,242,177,0,102,185,247,0,158,109,116,0,38,135,91,0,223,175,149,0,220,66,1,255,86,60,232,0,25,96,37,255,225,122,162,1,215,187,168,255,158,157,46,0,56,171,162,0,232,240,101,1,122,22,9,0,51,9,21,255,53,25,238,255,217,30,232,254,125,169,148,0,13,232,102,0,148,9,37,0,165,97,141,1,228,131,41,0,222,15,243,255,254,18,17,0,6,60,237,1,106,3,113,0,59,132,189,0,92,112,30,0,105,208,213,0,48,84,179,255,187,121,231,254,27,216,109,255,162,221,107,254,73,239,195,255,250,31,57,255,149,135,89,255,185,23,115,1,3,163,157,255,18,112,250,0,25,57,187,255,161,96,164,0,47,16,243,0,12,141,251,254,67,234,184,255,41,18,161,0,175,6,96,255,160,172,52,254,24,176,183,255,198,193,85,1,124,121,137,255,151,50,114,255,220,203,60,255,207,239,5,1,0,38,107,255,55,238,94,254,70,152,94,0,213,220,77,1,120,17,69,255,85,164,190,255,203,234,81,0,38,49,37,254,61,144,124,0,137,78,49,254,168,247,48,0,95,164,252,0,105,169,135,0,253,228,134,0,64,166,75,0,81,73,20,255,207,210,10,0,234,106,150,255,94,34,90,255,254,159,57,254,220,133,99,0,139,147,180,254,24,23,185,0,41,57,30,255,189,97,76,0,65,187,223,255,224,172,37,255,34,62,95,1,231,144,240,0,77,106,126,254,64,152,91,0,29,98,155,0,226,251,53,255,234,211,5,255,144,203,222,255,164,176,221,254,5,231,24,0,179,122,205,0,36,1,134,255,125,70,151,254,97,228,252,0,172,129,23,254,48,90,209,255,150,224,82,1,84,134,30,0,241,196,46,0,103,113,234,255,46,101,121,254,40,124,250,255,135,45,242,254,9,249,168,255,140,108,131,255,143,163,171,0,50,173,199,255,88,222,142,255,200,95,158,0,142,192,163,255,7,117,135,0,111,124,22,0,236,12,65,254,68,38,65,255,227,174,254,0,244,245,38,0,240,50,208,255,161,63,250,0,60,209,239,0,122,35,19,0,14,33,230,254,2,159,113,0,106,20,127,255,228,205,96,0,137,210,174,254,180,212,144,255,89,98,154,1,34,88,139,0,167,162,112,1,65,110,197,0,241,37,169,0,66,56,131,255,10,201,83,254,133,253,187,255,177,112,45,254,196,251,0,0,196,250,151,255,238,232,214,255,150,209,205,0,28,240,118,0,71,76,83,1,236,99,91,0,42,250,131,1,96,18,64,255,118,222,35,0,113,214,203,255,122,119,184,255,66,19,36,0,204,64,249,0,146,89,139,0,134,62,135,1,104,233,101,0,188,84,26,0,49,249,129,0,208,214,75,255,207,130,77,255,115,175,235,0,171,2,137,255,175,145,186,1,55,245,135,255,154,86,181,1,100,58,246,255,109,199,60,255,82,204,134,255,215,49,230,1,140,229,192,255,222,193,251,255,81,136,15,255,179,149,162,255,23,39,29,255,7,95,75,254,191,81,222,0,241,81,90,255,107,49,201,255,244,211,157,0,222,140,149,255,65,219,56,254,189,246,90,255,178,59,157,1,48,219,52,0,98,34,215,0,28,17,187,255,175,169,24,0,92,79,161,255,236,200,194,1,147,143,234,0,229,225,7,1,197,168,14,0,235,51,53,1,253,120,174,0,197,6,168,255,202,117,171,0,163,21,206,0,114,85,90,255,15,41,10,255,194,19,99,0,65,55,216,254,162,146,116,0,50,206,212,255,64,146,29,255,158,158,131,1,100,165,130,255,172,23,129,255,125,53,9,255,15,193,18,1,26,49,11,255,181,174,201,1,135,201,14,255,100,19,149,0,219,98,79,0,42,99,143,254,96,0,48,255,197,249,83,254,104,149,79,255,235,110,136,254,82,128,44,255,65,41,36,254,88,211,10,0,187,121,187,0,98,134,199,0,171,188,179,254,210,11,238,255,66,123,130,254,52,234,61,0,48,113,23,254,6,86,120,255,119,178,245,0,87,129,201,0,242,141,209,0,202,114,85,0,148,22,161,0,103,195,48,0,25,49,171,255,138,67,130,0,182,73,122,254,148,24,130,0,211,229,154,0,32,155,158,0,84,105,61,0,177,194,9,255,166,89,86,1,54,83,187,0,249,40,117,255,109,3,215,255,53,146,44,1,63,47,179,0,194,216,3,254,14,84,136,0,136,177,13,255,72,243,186,255,117,17,125,255,211,58,211,255,93,79,223,0,90,88,245,255,139,209,111,255,70,222,47,0,10,246,79,255,198,217,178,0,227,225,11,1,78,126,179,255,62,43,126,0,103,148,35,0,129,8,165,254,245,240,148,0,61,51,142,0,81,208,134,0,15,137,115,255,211,119,236,255,159,245,248,255,2,134,136,255,230,139,58,1,160,164,254,0,114,85,141,255,49,166,182,255,144,70,84,1,85,182,7,0,46,53,93,0,9,166,161,255,55,162,178,255,45,184,188,0,146,28,44,254,169,90,49,0,120,178,241,1,14,123,127,255,7,241,199,1,189,66,50,255,198,143,101,254,189,243,135,255,141,24,24,254,75,97,87,0,118,251,154,1,237,54,156,0,171,146,207,255,131,196,246,255,136,64,113,1,151,232,57,0,240,218,115,0,49,61,27,255,64,129,73,1,252,169,27,255,40,132,10,1,90,201,193,255,252,121,240,1,186,206,41,0,43,198,97,0,145,100,183,0,204,216,80,254,172,150,65,0,249,229,196,254,104,123,73,255,77,104,96,254,130,180,8,0,104,123,57,0,220,202,229,255,102,249,211,0,86,14,232,255,182,78,209,0,239,225,164,0,106,13,32,255,120,73,17,255,134,67,233,0,83,254,181,0,183,236,112,1,48,64,131,255,241,216,243,255,65,193,226,0,206,241,100,254,100,134,166,255,237,202,197,0,55,13,81,0,32,124,102,255,40,228,177,0,118,181,31,1,231,160,134,255,119,187,202,0,0,142,60,255,128,38,189,255,166,201,150,0,207,120,26,1,54,184,172,0,12,242,204,254,133,66,230,0,34,38,31,1,184,112,80,0,32,51,165,254,191,243,55,0,58,73,146,254,155,167,205,255,100,104,152,255,197,254,207,255,173,19,247,0,238,10,202,0,239,151,242,0,94,59,39,255,240,29,102,255,10,92,154,255,229,84,219,255,161,129,80,0,208,90,204,1,240,219,174,255,158,102,145,1,53,178,76,255,52,108,168,1,83,222,107,0,211,36,109,0,118,58,56,0,8,29,22,0,237,160,199,0,170,209,157,0,137,71,47,0,143,86,32,0,198,242,2,0,212,48,136,1,92,172,186,0,230,151,105,1,96,191,229,0,138,80,191,254,240,216,130,255,98,43,6,254,168,196,49,0,253,18,91,1,144,73,121,0,61,146,39,1,63,104,24,255,184,165,112,254,126,235,98,0,80,213,98,255,123,60,87,255,82,140,245,1,223,120,173,255,15,198,134,1,206,60,239,0,231,234,92,255,33,238,19,255,165,113,142,1,176,119,38,0,160,43,166,254,239,91,105,0,107,61,194,1,25,4,68,0,15,139,51,0,164,132,106,255,34,116,46,254,168,95,197,0,137,212,23,0,72,156,58,0,137,112,69,254,150,105,154,255,236,201,157,0,23,212,154,255,136,82,227,254,226,59,221,255,95,149,192,0,81,118,52,255,33,43,215,1,14,147,75,255,89,156,121,254,14,18,79,0,147,208,139,1,151,218,62,255,156,88,8,1,210,184,98,255,20,175,123,255,102,83,229,0,220,65,116,1,150,250,4,255,92,142,220,255,34,247,66,255,204,225,179,254,151,81,151,0,71,40,236,255,138,63,62,0,6,79,240,255,183,185,181,0,118,50,27,0,63,227,192,0,123,99,58,1,50,224,155,255,17,225,223,254,220,224,77,255,14,44,123,1,141,128,175,0,248,212,200,0,150,59,183,255,147,97,29,0,150,204,181,0,253,37,71,0,145,85,119,0,154,200,186,0,2,128,249,255,83,24,124,0,14,87,143,0,168,51,245,1,124,151,231,255,208,240,197,1,124,190,185,0,48,58,246,0,20,233,232,0,125,18,98,255,13,254,31,255,245,177,130,255,108,142,35,0,171,125,242,254,140,12,34,255,165,161,162,0,206,205,101,0,247,25,34,1,100,145,57,0,39,70,57,0,118,204,203,255,242,0,162,0,165,244,30,0,198,116,226,0,128,111,153,255,140,54,182,1,60,122,15,255,155,58,57,1,54,50,198,0,171,211,29,255,107,138,167,255,173,107,199,255,109,161,193,0,89,72,242,255,206,115,89,255,250,254,142,254,177,202,94,255,81,89,50,0,7,105,66,255,25,254,255,254,203,64,23,255,79,222,108,255,39,249,75,0,241,124,50,0,239,152,133,0,221,241,105,0,147,151,98,0,213,161,121,254,242,49,137,0,233,37,249,254,42,183,27,0,184,119,230,255,217,32,163,255,208,251,228,1,137,62,131,255,79,64,9,254,94,48,113,0,17,138,50,254,193,255,22,0,247,18,197,1,67,55,104,0,16,205,95,255,48,37,66,0,55,156,63,1,64,82,74,255,200,53,71,254,239,67,125,0,26,224,222,0,223,137,93,255,30,224,202,255,9,220,132,0,198,38,235,1,102,141,86,0,60,43,81,1,136,28,26,0,233,36,8,254,207,242,148,0,164,162,63,0,51,46,224,255,114,48,79,255,9,175,226,0,222,3,193,255,47,160,232,255,255,93,105,254,14,42,230,0,26,138,82,1,208,43,244,0,27,39,38,255,98,208,127,255,64,149,182,255,5,250,209,0,187,60,28,254,49,25,218,255,169,116,205,255,119,18,120,0,156,116,147,255,132,53,109,255,13,10,202,0,110,83,167,0,157,219,137,255,6,3,130,255,50,167,30,255,60,159,47,255,129,128,157,254,94,3,189,0,3,166,68,0,83,223,215,0,150,90,194,1,15,168,65,0,227,83,51,255,205,171,66,255,54,187,60,1,152,102,45,255,119,154,225,0,240,247,136,0,100,197,178,255,139,71,223,255,204,82,16,1,41,206,42,255,156,192,221,255,216,123,244,255,218,218,185,255,187,186,239,255,252,172,160,255,195,52,22,0,144,174,181,254,187,100,115,255,211,78,176,255,27,7,193,0,147,213,104,255,90,201,10,255,80,123,66,1,22,33,186,0,1,7,99,254,30,206,10,0,229,234,5,0,53,30,210,0,138,8,220,254,71,55,167,0,72,225,86,1,118,190,188,0,254,193,101,1,171,249,172,255,94,158,183,254,93,2,108,255,176,93,76,255,73,99,79,255,74,64,129,254,246,46,65,0,99,241,127,254,246,151,102,255,44,53,208,254,59,102,234,0,154,175,164,255,88,242,32,0,111,38,1,0,255,182,190,255,115,176,15,254,169,60,129,0,122,237,241,0,90,76,63,0,62,74,120,255,122,195,110,0,119,4,178,0,222,242,210,0,130,33,46,254,156,40,41,0,167,146,112,1,49,163,111,255,121,176,235,0,76,207,14,255,3,25,198,1,41,235,213,0,85,36,214,1,49,92,109,255,200,24,30,254,168,236,195,0,145,39,124,1,236,195,149,0,90,36,184,255,67,85,170,255,38,35,26,254,131,124,68,255,239,155,35,255,54,201,164,0,196,22,117,255,49,15,205,0,24,224,29,1,126,113,144,0,117,21,182,0,203,159,141,0,223,135,77,0,176,230,176,255,190,229,215,255,99,37,181,255,51,21,138,255,25,189,89,255,49,48,165,254,152,45,247,0,170,108,222,0,80,202,5,0,27,69,103,254,204,22,129,255,180,252,62,254,210,1,91,255,146,110,254,255,219,162,28,0,223,252,213,1,59,8,33,0,206,16,244,0,129,211,48,0,107,160,208,0,112,59,209,0,109,77,216,254,34,21,185,255,246,99,56,255,179,139,19,255,185,29,50,255,84,89,19,0,74,250,98,255,225,42,200,255,192,217,205,255,210,16,167,0,99,132,95,1,43,230,57,0,254,11,203,255,99,188,63,255,119,193,251,254,80,105,54,0,232,181,189,1,183,69,112,255,208,171,165,255,47,109,180,255,123,83,165,0,146,162,52,255,154,11,4,255,151,227,90,255,146,137,97,254,61,233,41,255,94,42,55,255,108,164,236,0,152,68,254,0,10,140,131,255,10,106,79,254,243,158,137,0,67,178,66,254,177,123,198,255,15,62,34,0,197,88,42,255,149,95,177,255,152,0,198,255,149,254,113,255,225,90,163,255,125,217,247,0,18,17,224,0,128,66,120,254,192,25,9,255,50,221,205,0,49,212,70,0,233,255,164,0,2,209,9,0,221,52,219,254,172,224,244,255,94,56,206,1,242,179,2,255,31,91,164,1,230,46,138,255,189,230,220,0,57,47,61,255,111,11,157,0,177,91,152,0,28,230,98,0,97,87,126,0,198,89,145,255,167,79,107,0,249,77,160,1,29,233,230,255,150,21,86,254,60,11,193,0,151,37,36,254,185,150,243,255,228,212,83,1,172,151,180,0,201,169,155,0,244,60,234,0,142,235,4,1,67,218,60,0,192,113,75,1,116,243,207,255,65,172,155,0,81,30,156,255,80,72,33,254,18,231,109,255,142,107,21,254,125,26,132,255,176,16,59,255,150,201,58,0,206,169,201,0,208,121,226,0,40,172,14,255,150,61,94,255,56,57,156,255,141,60,145,255,45,108,149,255,238,145,155,255,209,85,31,254,192,12,210,0,99,98,93,254,152,16,151,0,225,185,220,0,141,235,44,255,160,172,21,254,71,26,31,255,13,64,93,254,28,56,198,0,177,62,248,1,182,8,241,0,166,101,148,255,78,81,133,255,129,222,215,1,188,169,129,255,232,7,97,0,49,112,60,255,217,229,251,0,119,108,138,0,39,19,123,254,131,49,235,0,132,84,145,0,130,230,148,255,25,74,187,0,5,245,54,255,185,219,241,1,18,194,228,255,241,202,102,0,105,113,202,0,155,235,79,0,21,9,178,255,156,1,239,0,200,148,61,0,115,247,210,255,49,221,135,0,58,189,8,1,35,46,9,0,81,65,5,255,52,158,185,255,125,116,46,255,74,140,13,255,210,92,172,254,147,23,71,0,217,224,253,254,115,108,180,255,145,58,48,254,219,177,24,255,156,255,60,1,154,147,242,0,253,134,87,0,53,75,229,0,48,195,222,255,31,175,50,255,156,210,120,255,208,35,222,255,18,248,179,1,2,10,101,255,157,194,248,255,158,204,101,255,104,254,197,255,79,62,4,0,178,172,101,1,96,146,251,255,65,10,156,0,2,137,165,255,116,4,231,0,242,215,1,0,19,35,29,255,43,161,79,0,59,149,246,1,251,66,176,0,200,33,3,255,80,110,142,255,195,161,17,1,228,56,66,255,123,47,145,254,132,4,164,0,67,174,172,0,25,253,114,0,87,97,87,1,250,220,84,0,96,91,200,255,37,125,59,0,19,65,118,0,161,52,241,255,237,172,6,255,176,191,255,255,1,65,130,254,223,190,230,0,101,253,231,255,146,35,109,0,250,29,77,1,49,0,19,0,123,90,155,1,22,86,32,255,218,213,65,0,111,93,127,0,60,93,169,255,8,127,182,0,17,186,14,254,253,137,246,255,213,25,48,254,76,238,0,255,248,92,70,255,99,224,139,0,184,9,255,1,7,164,208,0,205,131,198,1,87,214,199,0,130,214,95,0,221,149,222,0,23,38,171,254,197,110,213,0,43,115,140,254,215,177,118,0,96,52,66,1,117,158,237,0,14,64,182,255,46,63,174,255,158,95,190,255,225,205,177,255,43,5,142,255,172,99,212,255,244,187,147,0,29,51,153,255,228,116,24,254,30,101,207,0,19,246,150,255,134,231,5,0,125,134,226,1,77,65,98,0,236,130,33,255,5,110,62,0,69,108,127,255,7,113,22,0,145,20,83,254,194,161,231,255,131,181,60,0,217,209,177,255,229,148,212,254,3,131,184,0,117,177,187,1,28,14,31,255,176,102,80,0,50,84,151,255,125,31,54,255,21,157,133,255,19,179,139,1,224,232,26,0,34,117,170,255,167,252,171,255,73,141,206,254,129,250,35,0,72,79,236,1,220,229,20,255,41,202,173,255,99,76,238,255,198,22,224,255,108,198,195,255,36,141,96,1,236,158,59,255,106,100,87,0,110,226,2,0,227,234,222,0,154,93,119,255,74,112,164,255,67,91,2,255,21,145,33,255,102,214,137,255,175,230,103,254,163,246,166,0,93,247,116,254,167,224,28,255,220,2,57,1,171,206,84,0,123,228,17,255,27,120,119,0,119,11,147,1,180,47,225,255,104,200,185,254,165,2,114,0,77,78,212,0,45,154,177,255,24,196,121,254,82,157,182,0,90,16,190,1,12,147,197,0,95,239,152,255,11,235,71,0,86,146,119,255,172,134,214,0,60,131,196,0,161,225,129,0,31,130,120,254,95,200,51,0,105,231,210,255,58,9,148,255,43,168,221,255,124,237,142,0,198,211,50,254,46,245,103,0,164,248,84,0,152,70,208,255,180,117,177,0,70,79,185,0,243,74,32,0,149,156,207,0,197,196,161,1,245,53,239,0,15,93,246,254,139,240,49,255,196,88,36,255,162,38,123,0,128,200,157,1,174,76,103,255,173,169,34,254,216,1,171,255,114,51,17,0,136,228,194,0,110,150,56,254,106,246,159,0,19,184,79,255,150,77,240,255,155,80,162,0,0,53,169,255,29,151,86,0,68,94,16,0,92,7,110,254,98,117,149,255,249,77,230,255,253,10,140,0,214,124,92,254,35,118,235,0,89,48,57,1,22,53,166,0,184,144,61,255,179,255,194,0,214,248,61,254,59,110,246,0,121,21,81,254,166,3,228,0,106,64,26,255,69,232,134,255,242,220,53,254,46,220,85,0,113,149,247,255,97,179,103,255,190,127,11,0,135,209,182,0,95,52,129,1,170,144,206,255,122,200,204,255,168,100,146,0,60,144,149,254,70,60,40,0,122,52,177,255,246,211,101,255,174,237,8,0,7,51,120,0,19,31,173,0,126,239,156,255,143,189,203,0,196,128,88,255,233,133,226,255,30,125,173,255,201,108,50,0,123,100,59,255,254,163,3,1,221,148,181,255,214,136,57,254,222,180,137,255,207,88,54,255,28,33,251,255,67,214,52,1,210,208,100,0,81,170,94,0,145,40,53,0,224,111,231,254,35,28,244,255,226,199,195,254,238,17,230,0,217,217,164,254,169,157,221,0,218,46,162,1,199,207,163,255,108,115,162,1,14,96,187,255,118,60,76,0,184,159,152,0,209,231,71,254,42,164,186,255,186,153,51,254,221,171,182,255,162,142,173,0,235,47,193,0,7,139,16,1,95,164,64,255,16,221,166,0,219,197,16,0,132,29,44,255,100,69,117,255,60,235,88,254,40,81,173,0,71,190,61,255,187,88,157,0,231,11,23,0,237,117,164,0,225,168,223,255,154,114,116,255,163,152,242,1,24,32,170,0,125,98,113,254,168,19,76,0,17,157,220,254,155,52,5,0,19,111,161,255,71,90,252,255,173,110,240,0,10,198,121,255,253,255,240,255,66,123,210,0,221,194,215,254,121,163,17,255,225,7,99,0,190,49,182,0,115,9,133,1,232,26,138,255,213,68,132,0,44,119,122,255,179,98,51,0,149,90,106,0,71,50,230,255,10,153,118,255,177,70,25,0,165,87,205,0,55,138,234,0,238,30,97,0,113,155,207,0,98,153,127,0,34,107,219,254,117,114,172,255,76,180,255,254,242,57,179,255,221,34,172,254,56,162,49,255,83,3,255,255,113,221,189,255,188,25,228,254,16,88,89,255,71,28,198,254,22,17,149,255,243,121,254,255,107,202,99,255,9,206,14,1,220,47,153,0,107,137,39,1,97,49,194,255,149,51,197,254,186,58,11,255,107,43,232,1,200,6,14,255,181,133,65,254,221,228,171,255,123,62,231,1,227,234,179,255,34,189,212,254,244,187,249,0,190,13,80,1,130,89,1,0,223,133,173,0,9,222,198,255,66,127,74,0,167,216,93,255,155,168,198,1,66,145,0,0,68,102,46,1,172,90,154,0,216,128,75,255,160,40,51,0,158,17,27,1,124,240,49,0,236,202,176,255,151,124,192,255,38,193,190,0,95,182,61,0,163,147,124,255,255,165,51,255,28,40,17,254,215,96,78,0,86,145,218,254,31,36,202,255,86,9,5,0,111,41,200,255,237,108,97,0,57,62,44,0,117,184,15,1,45,241,116,0,152,1,220,255,157,165,188,0,250,15,131,1,60,44,125,255,65,220,251,255,75,50,184,0,53,90,128,255,231,80,194,255,136,129,127,1,21,18,187,255,45,58,161,255,71,147,34,0,174,249,11,254,35,141,29,0,239,68,177,255,115,110,58,0,238,190,177,1,87,245,166,255,190,49,247,255,146,83,184,255,173,14,39,255,146,215,104,0,142,223,120,0,149,200,155,255,212,207,145,1,16,181,217,0,173,32,87,255,255,35,181,0,119,223,161,1,200,223,94,255,70,6,186,255,192,67,85,255,50,169,152,0,144,26,123,255,56,243,179,254,20,68,136,0,39,140,188,254,253,208,5,255,200,115,135,1,43,172,229,255,156,104,187,0,151,251,167,0,52,135,23,0,151,153,72,0,147,197,107,254,148,158,5,255,238,143,206,0,126,153,137,255,88,152,197,254,7,68,167,0,252,159,165,255,239,78,54,255,24,63,55,255,38,222,94,0,237,183,12,255,206,204,210,0,19,39,246,254,30,74,231,0,135,108,29,1,179,115,0,0,117,118,116,1,132,6,252,255,145,129,161,1,105,67,141,0,82,37,226,255,238,226,228,255,204,214,129,254,162,123,100,255,185,121,234,0,45,108,231,0,66,8,56,255,132,136,128,0,172,224,66,254,175,157,188,0,230,223,226,254,242,219,69,0,184,14,119,1,82,162,56,0,114,123,20,0,162,103,85,255,49,239,99,254,156,135,215,0,111,255,167,254,39,196,214,0,144,38,79,1,249,168,125,0,155,97,156,255,23,52,219,255,150,22,144,0,44,149,165,255,40,127,183,0,196,77,233,255,118,129,210,255,170,135,230,255,214,119,198,0,233,240,35,0,253,52,7,255,117,102,48,255,21,204,154,255,179,136,177,255,23,2,3,1,149,130,89,255,252,17,159,1,70,60,26,0,144,107,17,0,180,190,60,255,56,182,59,255,110,71,54,255,198,18,129,255,149,224,87,255,223,21,152,255,138,22,182,255,250,156,205,0,236,45,208,255,79,148,242,1,101,70,209,0,103,78,174,0,101,144,172,255,152,136,237,1,191,194,136,0,113,80,125,1,152,4,141,0,155,150,53,255,196,116,245,0,239,114,73,254,19,82,17,255,124,125,234,255,40,52,191,0,42,210,158,255,155,132,165,0,178,5,42,1,64,92,40,255,36,85,77,255,178,228,118,0,137,66,96,254,115,226,66,0,110,240,69,254,151,111,80,0,167,174,236,255,227,108,107,255,188,242,65,255,183,81,255,0,57,206,181,255,47,34,181,255,213,240,158,1,71,75,95,0,156,40,24,255,102,210,81,0,171,199,228,255,154,34,41,0,227,175,75,0,21,239,195,0,138,229,95,1,76,192,49,0,117,123,87,1,227,225,130,0,125,62,63,255,2,198,171,0,254,36,13,254,145,186,206,0,148,255,244,255,35,0,166,0,30,150,219,1,92,228,212,0,92,198,60,254,62,133,200,255,201,41,59,0,125,238,109,255,180,163,238,1,140,122,82,0,9,22,88,255,197,157,47,255,153,94,57,0,88,30,182,0,84,161,85,0,178,146,124,0,166,166,7,255,21,208,223,0,156,182,242,0,155,121,185,0,83,156,174,254,154,16,118,255,186,83,232,1,223,58,121,255,29,23,88,0,35,125,127,255,170,5,149,254,164,12,130,255,155,196,29,0,161,96,136,0,7,35,29,1,162,37,251,0,3,46,242,255,0,217,188,0,57,174,226,1,206,233,2,0,57,187,136,254,123,189,9,255,201,117,127,255,186,36,204,0,231,25,216,0,80,78,105,0,19,134,129,255,148,203,68,0,141,81,125,254,248,165,200,255,214,144,135,0,151,55,166,255,38,235,91,0,21,46,154,0,223,254,150,255,35,153,180,255,125,176,29,1,43,98,30,255,216,122,230,255,233,160,12,0,57,185,12,254,240,113,7,255,5,9,16,254,26,91,108,0,109,198,203,0,8,147,40,0,129,134,228,255,124,186,40,255,114,98,132,254,166,132,23,0,99,69,44,0,9,242,238,255,184,53,59,0,132,129,102,255,52,32,243,254,147,223,200,255,123,83,179,254,135,144,201,255,141,37,56,1,151,60,227,255,90,73,156,1,203,172,187,0,80,151,47,255,94,137,231,255,36,191,59,255,225,209,181,255,74,215,213,254,6,118,179,255,153,54,193,1,50,0,231,0,104,157,72,1,140,227,154,255,182,226,16,254,96,225,92,255,115,20,170,254,6,250,78,0,248,75,173,255,53,89,6,255,0,180,118,0,72,173,1,0,64,8,206,1,174,133,223,0,185,62,133,255,214,11,98,0,197,31,208,0,171,167,244,255,22,231,181,1,150,218,185,0,247,169,97,1,165,139,247,255,47,120,149,1,103,248,51,0,60,69,28,254,25,179,196,0,124,7,218,254,58,107,81,0,184,233,156,255,252,74,36,0,118,188,67,0,141,95,53,255,222,94,165,254,46,61,53,0,206,59,115,255,47,236,250,255,74,5,32,1,129,154,238,255,106,32,226,0,121,187,61,255,3,166,241,254,67,170,172,255,29,216,178,255,23,201,252,0,253,110,243,0,200,125,57,0,109,192,96,255,52,115,238,0,38,121,243,255,201,56,33,0,194,118,130,0,75,96,25,255,170,30,230,254,39,63,253,0,36,45,250,255,251,1,239,0,160,212,92,1,45,209,237,0,243,33,87,254,237,84,201,255,212,18,157,254,212,99,127,255,217,98,16,254,139,172,239,0,168,201,130,255,143,193,169,255,238,151,193,1,215,104,41,0,239,61,165,254,2,3,242,0,22,203,177,254,177,204,22,0,149,129,213,254,31,11,41,255,0,159,121,254,160,25,114,255,162,80,200,0,157,151,11,0,154,134,78,1,216,54,252,0,48,103,133,0,105,220,197,0,253,168,77,254,53,179,23,0,24,121,240,1,255,46,96,255,107,60,135,254,98,205,249,255,63,249,119,255,120,59,211,255,114,180,55,254,91,85,237,0,149,212,77,1,56,73,49,0,86,198,150,0,93,209,160,0,69,205,182,255,244,90,43,0,20,36,176,0,122,116,221,0,51,167,39,1,231,1,63,255,13,197,134,0,3,209,34,255,135,59,202,0,167,100,78,0,47,223,76,0,185,60,62,0,178,166,123,1,132,12,161,255,61,174,43,0,195,69,144,0,127,47,191,1,34,44,78,0,57,234,52,1,255,22,40,255,246,94,146,0,83,228,128,0,60,78,224,255,0,96,210,255,153,175,236,0,159,21,73,0,180,115,196,254,131,225,106,0,255,167,134,0,159,8,112,255,120,68,194,255,176,196,198,255,118,48,168,255,93,169,1,0,112,200,102,1,74,24,254,0,19,141,4,254,142,62,63,0,131,179,187,255,77,156,155,255,119,86,164,0,170,208,146,255,208,133,154,255,148,155,58,255,162,120,232,254,252,213,155,0,241,13,42,0,94,50,131,0,179,170,112,0,140,83,151,255,55,119,84,1,140,35,239,255,153,45,67,1,236,175,39,0,54,151,103,255,158,42,65,255,196,239,135,254,86,53,203,0,149,97,47,254,216,35,17,255,70,3,70,1,103,36,90,255,40,26,173,0,184,48,13,0,163,219,217,255,81,6,1,255,221,170,108,254,233,208,93,0,100,201,249,254,86,36,35,255,209,154,30,1,227,201,251,255,2,189,167,254,100,57,3,0,13,128,41,0,197,100,75,0,150,204,235,255,145,174,59,0,120,248,149,255,85,55,225,0,114,210,53,254,199,204,119,0,14,247,74,1,63,251,129,0,67,104,151,1,135,130,80,0,79,89,55,255,117,230,157,255,25,96,143,0,213,145,5,0,69,241,120,1,149,243,95,255,114,42,20,0,131,72,2,0,154,53,20,255,73,62,109,0,196,102,152,0,41,12,204,255,122,38,11,1,250,10,145,0,207,125,148,0,246,244,222,255,41,32,85,1,112,213,126,0,162,249,86,1,71,198,127,255,81,9,21,1,98,39,4,255,204,71,45,1,75,111,137,0,234,59,231,0,32,48,95,255,204,31,114,1,29,196,181,255,51,241,167,254,93,109,142,0,104,144,45,0,235,12,181,255,52,112,164,0,76,254,202,255,174,14,162,0,61,235,147,255,43,64,185,254,233,125,217,0,243,88,167,254,74,49,8,0,156,204,66,0,124,214,123,0,38,221,118,1,146,112,236,0,114,98,177,0,151,89,199,0,87,197,112,0,185,149,161,0,44,96,165,0,248,179,20,255,188,219,216,254,40,62,13,0,243,142,141,0,229,227,206,255,172,202,35,255,117,176,225,255,82,110,38,1,42,245,14,255,20,83,97,0,49,171,10,0,242,119,120,0,25,232,61,0,212,240,147,255,4,115,56,255,145,17,239,254,202,17,251,255,249,18,245,255,99,117,239,0,184,4,179,255,246,237,51,255,37,239,137,255,166,112,166,255,81,188,33,255,185,250,142,255,54,187,173,0,208,112,201,0,246,43,228,1,104,184,88,255,212,52,196,255,51,117,108,255,254,117,155,0,46,91,15,255,87,14,144,255,87,227,204,0,83,26,83,1,159,76,227,0,159,27,213,1,24,151,108,0,117,144,179,254,137,209,82,0,38,159,10,0,115,133,201,0,223,182,156,1,110,196,93,255,57,60,233,0,5,167,105,255,154,197,164,0,96,34,186,255,147,133,37,1,220,99,190,0,1,167,84,255,20,145,171,0,194,197,251,254,95,78,133,255,252,248,243,255,225,93,131,255,187,134,196,255,216,153,170,0,20,118,158,254,140,1,118,0,86,158,15,1,45,211,41,255,147,1,100,254,113,116,76,255,211,127,108,1,103,15,48,0,193,16,102,1,69,51,95,255,107,128,157,0,137,171,233,0,90,124,144,1,106,161,182,0,175,76,236,1,200,141,172,255,163,58,104,0,233,180,52,255,240,253,14,255,162,113,254,255,38,239,138,254,52,46,166,0,241,101,33,254,131,186,156,0,111,208,62,255,124,94,160,255,31,172,254,0,112,174,56,255,188,99,27,255,67,138,251,0,125,58,128,1,156,152,174,255,178,12,247,255,252,84,158,0,82,197,14,254,172,200,83,255,37,39,46,1,106,207,167,0,24,189,34,0,131,178,144,0,206,213,4,0,161,226,210,0,72,51,105,255,97,45,187,255,78,184,223,255,176,29,251,0,79,160,86,255,116,37,178,0,82,77,213,1,82,84,141,255,226,101,212,1,175,88,199,255,245,94,247,1,172,118,109,255,166,185,190,0,131,181,120,0,87,254,93,255,134,240,73,255,32,245,143,255,139,162,103,255,179,98,18,254,217,204,112,0,147,223,120,255,53,10,243,0,166,140,150,0,125,80,200,255,14,109,219,255,91,218,1,255,252,252,47,254,109,156,116,255,115,49,127,1,204,87,211,255,148,202,217,255,26,85,249,255,14,245,134,1,76,89,169,255,242,45,230,0,59,98,172,255,114,73,132,254,78,155,49,255,158,126,84,0,49,175,43,255,16,182,84,255,157,103,35,0,104,193,109,255,67,221,154,0,201,172,1,254,8,162,88,0,165,1,29,255,125,155,229,255,30,154,220,1,103,239,92,0,220,1,109,255,202,198,1,0,94,2,142,1,36,54,44,0,235,226,158,255,170,251,214,255,185,77,9,0,97,74,242,0,219,163,149,255,240,35,118,255,223,114,88,254,192,199,3,0,106,37,24,255,201,161,118,255,97,89,99,1,224,58,103,255,101,199,147,254,222,60,99,0,234,25,59,1,52,135,27,0,102,3,91,254,168,216,235,0,229,232,136,0,104,60,129,0,46,168,238,0,39,191,67,0,75,163,47,0,143,97,98,255,56,216,168,1,168,233,252,255,35,111,22,255,92,84,43,0,26,200,87,1,91,253,152,0,202,56,70,0,142,8,77,0,80,10,175,1,252,199,76,0,22,110,82,255,129,1,194,0,11,128,61,1,87,14,145,255,253,222,190,1,15,72,174,0,85,163,86,254,58,99,44,255,45,24,188,254,26,205,15,0,19,229,210,254,248,67,195,0,99,71,184,0,154,199,37,255,151,243,121,255,38,51,75,255,201,85,130,254,44,65,250,0,57,147,243,254,146,43,59,255,89,28,53,0,33,84,24,255,179,51,18,254,189,70,83,0,11,156,179,1,98,134,119,0,158,111,111,0,119,154,73,255,200,63,140,254,45,13,13,255,154,192,2,254,81,72,42,0,46,160,185,254,44,112,6,0,146,215,149,1,26,176,104,0,68,28,87,1,236,50,153,255,179,128,250,254,206,193,191,255,166,92,137,254,53,40,239,0,210,1,204,254,168,173,35,0,141,243,45,1,36,50,109,255,15,242,194,255,227,159,122,255,176,175,202,254,70,57,72,0,40,223,56,0,208,162,58,255,183,98,93,0,15,111,12,0,30,8,76,255,132,127,246,255,45,242,103,0,69,181,15,255,10,209,30,0,3,179,121,0,241,232,218,1,123,199,88,255,2,210,202,1,188,130,81,255,94,101,208,1,103,36,45], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE+10240); /* memory initializer */ allocate([76,193,24,1,95,26,241,255,165,162,187,0,36,114,140,0,202,66,5,255,37,56,147,0,152,11,243,1,127,85,232,255,250,135,212,1,185,177,113,0,90,220,75,255,69,248,146,0,50,111,50,0,92,22,80,0,244,36,115,254,163,100,82,255,25,193,6,1,127,61,36,0,253,67,30,254,65,236,170,255,161,17,215,254,63,175,140,0,55,127,4,0,79,112,233,0,109,160,40,0,143,83,7,255,65,26,238,255,217,169,140,255,78,94,189,255,0,147,190,255,147,71,186,254,106,77,127,255,233,157,233,1,135,87,237,255,208,13,236,1,155,109,36,255,180,100,218,0,180,163,18,0,190,110,9,1,17,63,123,255,179,136,180,255,165,123,123,255,144,188,81,254,71,240,108,255,25,112,11,255,227,218,51,255,167,50,234,255,114,79,108,255,31,19,115,255,183,240,99,0,227,87,143,255,72,217,248,255,102,169,95,1,129,149,149,0,238,133,12,1,227,204,35,0,208,115,26,1,102,8,234,0,112,88,143,1,144,249,14,0,240,158,172,254,100,112,119,0,194,141,153,254,40,56,83,255,121,176,46,0,42,53,76,255,158,191,154,0,91,209,92,0,173,13,16,1,5,72,226,255,204,254,149,0,80,184,207,0,100,9,122,254,118,101,171,255,252,203,0,254,160,207,54,0,56,72,249,1,56,140,13,255,10,64,107,254,91,101,52,255,225,181,248,1,139,255,132,0,230,145,17,0,233,56,23,0,119,1,241,255,213,169,151,255,99,99,9,254,185,15,191,255,173,103,109,1,174,13,251,255,178,88,7,254,27,59,68,255,10,33,2,255,248,97,59,0,26,30,146,1,176,147,10,0,95,121,207,1,188,88,24,0,185,94,254,254,115,55,201,0,24,50,70,0,120,53,6,0,142,66,146,0,228,226,249,255,104,192,222,1,173,68,219,0,162,184,36,255,143,102,137,255,157,11,23,0,125,45,98,0,235,93,225,254,56,112,160,255,70,116,243,1,153,249,55,255,129,39,17,1,241,80,244,0,87,69,21,1,94,228,73,255,78,66,65,255,194,227,231,0,61,146,87,255,173,155,23,255,112,116,219,254,216,38,11,255,131,186,133,0,94,212,187,0,100,47,91,0,204,254,175,255,222,18,215,254,173,68,108,255,227,228,79,255,38,221,213,0,163,227,150,254,31,190,18,0,160,179,11,1,10,90,94,255,220,174,88,0,163,211,229,255,199,136,52,0,130,95,221,255,140,188,231,254,139,113,128,255,117,171,236,254,49,220,20,255,59,20,171,255,228,109,188,0,20,225,32,254,195,16,174,0,227,254,136,1,135,39,105,0,150,77,206,255,210,238,226,0,55,212,132,254,239,57,124,0,170,194,93,255,249,16,247,255,24,151,62,255,10,151,10,0,79,139,178,255,120,242,202,0,26,219,213,0,62,125,35,255,144,2,108,255,230,33,83,255,81,45,216,1,224,62,17,0,214,217,125,0,98,153,153,255,179,176,106,254,131,93,138,255,109,62,36,255,178,121,32,255,120,252,70,0,220,248,37,0,204,88,103,1,128,220,251,255,236,227,7,1,106,49,198,255,60,56,107,0,99,114,238,0,220,204,94,1,73,187,1,0,89,154,34,0,78,217,165,255,14,195,249,255,9,230,253,255,205,135,245,0,26,252,7,255,84,205,27,1,134,2,112,0,37,158,32,0,231,91,237,255,191,170,204,255,152,7,222,0,109,192,49,0,193,166,146,255,232,19,181,255,105,142,52,255,103,16,27,1,253,200,165,0,195,217,4,255,52,189,144,255,123,155,160,254,87,130,54,255,78,120,61,255,14,56,41,0,25,41,125,255,87,168,245,0,214,165,70,0,212,169,6,255,219,211,194,254,72,93,164,255,197,33,103,255,43,142,141,0,131,225,172,0,244,105,28,0,68,68,225,0,136,84,13,255,130,57,40,254,139,77,56,0,84,150,53,0,54,95,157,0,144,13,177,254,95,115,186,0,117,23,118,255,244,166,241,255,11,186,135,0,178,106,203,255,97,218,93,0,43,253,45,0,164,152,4,0,139,118,239,0,96,1,24,254,235,153,211,255,168,110,20,255,50,239,176,0,114,41,232,0,193,250,53,0,254,160,111,254,136,122,41,255,97,108,67,0,215,152,23,255,140,209,212,0,42,189,163,0,202,42,50,255,106,106,189,255,190,68,217,255,233,58,117,0,229,220,243,1,197,3,4,0,37,120,54,254,4,156,134,255,36,61,171,254,165,136,100,255,212,232,14,0,90,174,10,0,216,198,65,255,12,3,64,0,116,113,115,255,248,103,8,0,231,125,18,255,160,28,197,0,30,184,35,1,223,73,249,255,123,20,46,254,135,56,37,255,173,13,229,1,119,161,34,255,245,61,73,0,205,125,112,0,137,104,134,0,217,246,30,255,237,142,143,0,65,159,102,255,108,164,190,0,219,117,173,255,34,37,120,254,200,69,80,0,31,124,218,254,74,27,160,255,186,154,199,255,71,199,252,0,104,81,159,1,17,200,39,0,211,61,192,1,26,238,91,0,148,217,12,0,59,91,213,255,11,81,183,255,129,230,122,255,114,203,145,1,119,180,66,255,72,138,180,0,224,149,106,0,119,82,104,255,208,140,43,0,98,9,182,255,205,101,134,255,18,101,38,0,95,197,166,255,203,241,147,0,62,208,145,255,133,246,251,0,2,169,14,0,13,247,184,0,142,7,254,0,36,200,23,255,88,205,223,0,91,129,52,255,21,186,30,0,143,228,210,1,247,234,248,255,230,69,31,254,176,186,135,255,238,205,52,1,139,79,43,0,17,176,217,254,32,243,67,0,242,111,233,0,44,35,9,255,227,114,81,1,4,71,12,255,38,105,191,0,7,117,50,255,81,79,16,0,63,68,65,255,157,36,110,255,77,241,3,255,226,45,251,1,142,25,206,0,120,123,209,1,28,254,238,255,5,128,126,255,91,222,215,255,162,15,191,0,86,240,73,0,135,185,81,254,44,241,163,0,212,219,210,255,112,162,155,0,207,101,118,0,168,72,56,255,196,5,52,0,72,172,242,255,126,22,157,255,146,96,59,255,162,121,152,254,140,16,95,0,195,254,200,254,82,150,162,0,119,43,145,254,204,172,78,255,166,224,159,0,104,19,237,255,245,126,208,255,226,59,213,0,117,217,197,0,152,72,237,0,220,31,23,254,14,90,231,255,188,212,64,1,60,101,246,255,85,24,86,0,1,177,109,0,146,83,32,1,75,182,192,0,119,241,224,0,185,237,27,255,184,101,82,1,235,37,77,255,253,134,19,0,232,246,122,0,60,106,179,0,195,11,12,0,109,66,235,1,125,113,59,0,61,40,164,0,175,104,240,0,2,47,187,255,50,12,141,0,194,139,181,255,135,250,104,0,97,92,222,255,217,149,201,255,203,241,118,255,79,151,67,0,122,142,218,255,149,245,239,0,138,42,200,254,80,37,97,255,124,112,167,255,36,138,87,255,130,29,147,255,241,87,78,255,204,97,19,1,177,209,22,255,247,227,127,254,99,119,83,255,212,25,198,1,16,179,179,0,145,77,172,254,89,153,14,255,218,189,167,0,107,233,59,255,35,33,243,254,44,112,112,255,161,127,79,1,204,175,10,0,40,21,138,254,104,116,228,0,199,95,137,255,133,190,168,255,146,165,234,1,183,99,39,0,183,220,54,254,255,222,133,0,162,219,121,254,63,239,6,0,225,102,54,255,251,18,246,0,4,34,129,1,135,36,131,0,206,50,59,1,15,97,183,0,171,216,135,255,101,152,43,255,150,251,91,0,38,145,95,0,34,204,38,254,178,140,83,255,25,129,243,255,76,144,37,0,106,36,26,254,118,144,172,255,68,186,229,255,107,161,213,255,46,163,68,255,149,170,253,0,187,17,15,0,218,160,165,255,171,35,246,1,96,13,19,0,165,203,117,0,214,107,192,255,244,123,177,1,100,3,104,0,178,242,97,255,251,76,130,255,211,77,42,1,250,79,70,255,63,244,80,1,105,101,246,0,61,136,58,1,238,91,213,0,14,59,98,255,167,84,77,0,17,132,46,254,57,175,197,255,185,62,184,0,76,64,207,0,172,175,208,254,175,74,37,0,138,27,211,254,148,125,194,0,10,89,81,0,168,203,101,255,43,213,209,1,235,245,54,0,30,35,226,255,9,126,70,0,226,125,94,254,156,117,20,255,57,248,112,1,230,48,64,255,164,92,166,1,224,214,230,255,36,120,143,0,55,8,43,255,251,1,245,1,106,98,165,0,74,107,106,254,53,4,54,255,90,178,150,1,3,120,123,255,244,5,89,1,114,250,61,255,254,153,82,1,77,15,17,0,57,238,90,1,95,223,230,0,236,52,47,254,103,148,164,255,121,207,36,1,18,16,185,255,75,20,74,0,187,11,101,0,46,48,129,255,22,239,210,255,77,236,129,255,111,77,204,255,61,72,97,255,199,217,251,255,42,215,204,0,133,145,201,255,57,230,146,1,235,100,198,0,146,73,35,254,108,198,20,255,182,79,210,255,82,103,136,0,246,108,176,0,34,17,60,255,19,74,114,254,168,170,78,255,157,239,20,255,149,41,168,0,58,121,28,0,79,179,134,255,231,121,135,255,174,209,98,255,243,122,190,0,171,166,205,0,212,116,48,0,29,108,66,255,162,222,182,1,14,119,21,0,213,39,249,255,254,223,228,255,183,165,198,0,133,190,48,0,124,208,109,255,119,175,85,255,9,209,121,1,48,171,189,255,195,71,134,1,136,219,51,255,182,91,141,254,49,159,72,0,35,118,245,255,112,186,227,255,59,137,31,0,137,44,163,0,114,103,60,254,8,213,150,0,162,10,113,255,194,104,72,0,220,131,116,255,178,79,92,0,203,250,213,254,93,193,189,255,130,255,34,254,212,188,151,0,136,17,20,255,20,101,83,255,212,206,166,0,229,238,73,255,151,74,3,255,168,87,215,0,155,188,133,255,166,129,73,0,240,79,133,255,178,211,81,255,203,72,163,254,193,168,165,0,14,164,199,254,30,255,204,0,65,72,91,1,166,74,102,255,200,42,0,255,194,113,227,255,66,23,208,0,229,216,100,255,24,239,26,0,10,233,62,255,123,10,178,1,26,36,174,255,119,219,199,1,45,163,190,0,16,168,42,0,166,57,198,255,28,26,26,0,126,165,231,0,251,108,100,255,61,229,121,255,58,118,138,0,76,207,17,0,13,34,112,254,89,16,168,0,37,208,105,255,35,201,215,255,40,106,101,254,6,239,114,0,40,103,226,254,246,127,110,255,63,167,58,0,132,240,142,0,5,158,88,255,129,73,158,255,94,89,146,0,230,54,146,0,8,45,173,0,79,169,1,0,115,186,247,0,84,64,131,0,67,224,253,255,207,189,64,0,154,28,81,1,45,184,54,255,87,212,224,255,0,96,73,255,129,33,235,1,52,66,80,255,251,174,155,255,4,179,37,0,234,164,93,254,93,175,253,0,198,69,87,255,224,106,46,0,99,29,210,0,62,188,114,255,44,234,8,0,169,175,247,255,23,109,137,255,229,182,39,0,192,165,94,254,245,101,217,0,191,88,96,0,196,94,99,255,106,238,11,254,53,126,243,0,94,1,101,255,46,147,2,0,201,124,124,255,141,12,218,0,13,166,157,1,48,251,237,255,155,250,124,255,106,148,146,255,182,13,202,0,28,61,167,0,217,152,8,254,220,130,45,255,200,230,255,1,55,65,87,255,93,191,97,254,114,251,14,0,32,105,92,1,26,207,141,0,24,207,13,254,21,50,48,255,186,148,116,255,211,43,225,0,37,34,162,254,164,210,42,255,68,23,96,255,182,214,8,255,245,117,137,255,66,195,50,0,75,12,83,254,80,140,164,0,9,165,36,1,228,110,227,0,241,17,90,1,25,52,212,0,6,223,12,255,139,243,57,0,12,113,75,1,246,183,191,255,213,191,69,255,230,15,142,0,1,195,196,255,138,171,47,255,64,63,106,1,16,169,214,255,207,174,56,1,88,73,133,255,182,133,140,0,177,14,25,255,147,184,53,255,10,227,161,255,120,216,244,255,73,77,233,0,157,238,139,1,59,65,233,0,70,251,216,1,41,184,153,255,32,203,112,0,146,147,253,0,87,101,109,1,44,82,133,255,244,150,53,255,94,152,232,255,59,93,39,255,88,147,220,255,78,81,13,1,32,47,252,255,160,19,114,255,93,107,39,255,118,16,211,1,185,119,209,255,227,219,127,254,88,105,236,255,162,110,23,255,36,166,110,255,91,236,221,255,66,234,116,0,111,19,244,254,10,233,26,0,32,183,6,254,2,191,242,0,218,156,53,254,41,60,70,255,168,236,111,0,121,185,126,255,238,142,207,255,55,126,52,0,220,129,208,254,80,204,164,255,67,23,144,254,218,40,108,255,127,202,164,0,203,33,3,255,2,158,0,0,37,96,188,255,192,49,74,0,109,4,0,0,111,167,10,254,91,218,135,255,203,66,173,255,150,194,226,0,201,253,6,255,174,102,121,0,205,191,110,0,53,194,4,0,81,40,45,254,35,102,143,255,12,108,198,255,16,27,232,255,252,71,186,1,176,110,114,0,142,3,117,1,113,77,142,0,19,156,197,1,92,47,252,0,53,232,22,1,54,18,235,0,46,35,189,255,236,212,129,0,2,96,208,254,200,238,199,255,59,175,164,255,146,43,231,0,194,217,52,255,3,223,12,0,138,54,178,254,85,235,207,0,232,207,34,0,49,52,50,255,166,113,89,255,10,45,216,255,62,173,28,0,111,165,246,0,118,115,91,255,128,84,60,0,167,144,203,0,87,13,243,0,22,30,228,1,177,113,146,255,129,170,230,254,252,153,129,255,145,225,43,0,70,231,5,255,122,105,126,254,86,246,148,255,110,37,154,254,209,3,91,0,68,145,62,0,228,16,165,255,55,221,249,254,178,210,91,0,83,146,226,254,69,146,186,0,93,210,104,254,16,25,173,0,231,186,38,0,189,122,140,255,251,13,112,255,105,110,93,0,251,72,170,0,192,23,223,255,24,3,202,1,225,93,228,0,153,147,199,254,109,170,22,0,248,101,246,255,178,124,12,255,178,254,102,254,55,4,65,0,125,214,180,0,183,96,147,0,45,117,23,254,132,191,249,0,143,176,203,254,136,183,54,255,146,234,177,0,146,101,86,255,44,123,143,1,33,209,152,0,192,90,41,254,83,15,125,255,213,172,82,0,215,169,144,0,16,13,34,0,32,209,100,255,84,18,249,1,197,17,236,255,217,186,230,0,49,160,176,255,111,118,97,255,237,104,235,0,79,59,92,254,69,249,11,255,35,172,74,1,19,118,68,0,222,124,165,255,180,66,35,255,86,174,246,0,43,74,111,255,126,144,86,255,228,234,91,0,242,213,24,254,69,44,235,255,220,180,35,0,8,248,7,255,102,47,92,255,240,205,102,255,113,230,171,1,31,185,201,255,194,246,70,255,122,17,187,0,134,70,199,255,149,3,150,255,117,63,103,0,65,104,123,255,212,54,19,1,6,141,88,0,83,134,243,255,136,53,103,0,169,27,180,0,177,49,24,0,111,54,167,0,195,61,215,255,31,1,108,1,60,42,70,0,185,3,162,255,194,149,40,255,246,127,38,254,190,119,38,255,61,119,8,1,96,161,219,255,42,203,221,1,177,242,164,255,245,159,10,0,116,196,0,0,5,93,205,254,128,127,179,0,125,237,246,255,149,162,217,255,87,37,20,254,140,238,192,0,9,9,193,0,97,1,226,0,29,38,10,0,0,136,63,255,229,72,210,254,38,134,92,255,78,218,208,1,104,36,84,255,12,5,193,255,242,175,61,255,191,169,46,1,179,147,147,255,113,190,139,254,125,172,31,0,3,75,252,254,215,36,15,0,193,27,24,1,255,69,149,255,110,129,118,0,203,93,249,0,138,137,64,254,38,70,6,0,153,116,222,0,161,74,123,0,193,99,79,255,118,59,94,255,61,12,43,1,146,177,157,0,46,147,191,0,16,255,38,0,11,51,31,1,60,58,98,255,111,194,77,1,154,91,244,0,140,40,144,1,173,10,251,0,203,209,50,254,108,130,78,0,228,180,90,0,174,7,250,0,31,174,60,0,41,171,30,0,116,99,82,255,118,193,139,255,187,173,198,254,218,111,56,0,185,123,216,0,249,158,52,0,52,180,93,255,201,9,91,255,56,45,166,254,132,155,203,255,58,232,110,0,52,211,89,255,253,0,162,1,9,87,183,0,145,136,44,1,94,122,245,0,85,188,171,1,147,92,198,0,0,8,104,0,30,95,174,0,221,230,52,1,247,247,235,255,137,174,53,255,35,21,204,255,71,227,214,1,232,82,194,0,11,48,227,255,170,73,184,255,198,251,252,254,44,112,34,0,131,101,131,255,72,168,187,0,132,135,125,255,138,104,97,255,238,184,168,255,243,104,84,255,135,216,226,255,139,144,237,0,188,137,150,1,80,56,140,255,86,169,167,255,194,78,25,255,220,17,180,255,17,13,193,0,117,137,212,255,141,224,151,0,49,244,175,0,193,99,175,255,19,99,154,1,255,65,62,255,156,210,55,255,242,244,3,255,250,14,149,0,158,88,217,255,157,207,134,254,251,232,28,0,46,156,251,255,171,56,184,255,239,51,234,0,142,138,131,255,25,254,243,1,10,201,194,0,63,97,75,0,210,239,162,0,192,200,31,1,117,214,243,0,24,71,222,254,54,40,232,255,76,183,111,254,144,14,87,255,214,79,136,255,216,196,212,0,132,27,140,254,131,5,253,0,124,108,19,255,28,215,75,0,76,222,55,254,233,182,63,0,68,171,191,254,52,111,222,255,10,105,77,255,80,170,235,0,143,24,88,255,45,231,121,0,148,129,224,1,61,246,84,0,253,46,219,255,239,76,33,0,49,148,18,254,230,37,69,0,67,134,22,254,142,155,94,0,31,157,211,254,213,42,30,255,4,228,247,254,252,176,13,255,39,0,31,254,241,244,255,255,170,45,10,254,253,222,249,0,222,114,132,0,255,47,6,255,180,163,179,1,84,94,151,255,89,209,82,254,229,52,169,255,213,236,0,1,214,56,228,255,135,119,151,255,112,201,193,0,83,160,53,254,6,151,66,0,18,162,17,0,233,97,91,0,131,5,78,1,181,120,53,255,117,95,63,255,237,117,185,0,191,126,136,255,144,119,233,0,183,57,97,1,47,201,187,255,167,165,119,1,45,100,126,0,21,98,6,254,145,150,95,255,120,54,152,0,209,98,104,0,143,111,30,254,184,148,249,0,235,216,46,0,248,202,148,255,57,95,22,0,242,225,163,0,233,247,232,255,71,171,19,255,103,244,49,255,84,103,93,255,68,121,244,1,82,224,13,0,41,79,43,255,249,206,167,255,215,52,21,254,192,32,22,255,247,111,60,0,101,74,38,255,22,91,84,254,29,28,13,255,198,231,215,254,244,154,200,0,223,137,237,0,211,132,14,0,95,64,206,255,17,62,247,255,233,131,121,1,93,23,77,0,205,204,52,254,81,189,136,0,180,219,138,1,143,18,94,0,204,43,140,254,188,175,219,0,111,98,143,255,151,63,162,255,211,50,71,254,19,146,53,0,146,45,83,254,178,82,238,255,16,133,84,255,226,198,93,255,201,97,20,255,120,118,35,255,114,50,231,255,162,229,156,255,211,26,12,0,114,39,115,255,206,212,134,0,197,217,160,255,116,129,94,254,199,215,219,255,75,223,249,1,253,116,181,255,232,215,104,255,228,130,246,255,185,117,86,0,14,5,8,0,239,29,61,1,237,87,133,255,125,146,137,254,204,168,223,0,46,168,245,0,154,105,22,0,220,212,161,255,107,69,24,255,137,218,181,255,241,84,198,255,130,122,211,255,141,8,153,255,190,177,118,0,96,89,178,0,255,16,48,254,122,96,105,255,117,54,232,255,34,126,105,255,204,67,166,0,232,52,138,255,211,147,12,0,25,54,7,0,44,15,215,254,51,236,45,0,190,68,129,1,106,147,225,0,28,93,45,254,236,141,15,255,17,61,161,0,220,115,192,0,236,145,24,254,111,168,169,0,224,58,63,255,127,164,188,0,82,234,75,1,224,158,134,0,209,68,110,1,217,166,217,0,70,225,166,1,187,193,143,255,16,7,88,255,10,205,140,0,117,192,156,1,17,56,38,0,27,124,108,1,171,215,55,255,95,253,212,0,155,135,168,255,246,178,153,254,154,68,74,0,232,61,96,254,105,132,59,0,33,76,199,1,189,176,130,255,9,104,25,254,75,198,102,255,233,1,112,0,108,220,20,255,114,230,70,0,140,194,133,255,57,158,164,254,146,6,80,255,169,196,97,1,85,183,130,0,70,158,222,1,59,237,234,255,96,25,26,255,232,175,97,255,11,121,248,254,88,35,194,0,219,180,252,254,74,8,227,0,195,227,73,1,184,110,161,255,49,233,164,1,128,53,47,0,82,14,121,255,193,190,58,0,48,174,117,255,132,23,32,0,40,10,134,1,22,51,25,255,240,11,176,255,110,57,146,0,117,143,239,1,157,101,118,255,54,84,76,0,205,184,18,255,47,4,72,255,78,112,85,255,193,50,66,1,93,16,52,255,8,105,134,0,12,109,72,255,58,156,251,0,144,35,204,0,44,160,117,254,50,107,194,0,1,68,165,255,111,110,162,0,158,83,40,254,76,214,234,0,58,216,205,255,171,96,147,255,40,227,114,1,176,227,241,0,70,249,183,1,136,84,139,255,60,122,247,254,143,9,117,255,177,174,137,254,73,247,143,0,236,185,126,255,62,25,247,255,45,64,56,255,161,244,6,0,34,57,56,1,105,202,83,0,128,147,208,0,6,103,10,255,74,138,65,255,97,80,100,255,214,174,33,255,50,134,74,255,110,151,130,254,111,84,172,0,84,199,75,254,248,59,112,255,8,216,178,1,9,183,95,0,238,27,8,254,170,205,220,0,195,229,135,0,98,76,237,255,226,91,26,1,82,219,39,255,225,190,199,1,217,200,121,255,81,179,8,255,140,65,206,0,178,207,87,254,250,252,46,255,104,89,110,1,253,189,158,255,144,214,158,255,160,245,54,255,53,183,92,1,21,200,194,255,146,33,113,1,209,1,255,0,235,106,43,255,167,52,232,0,157,229,221,0,51,30,25,0,250,221,27,1,65,147,87,255,79,123,196,0,65,196,223,255,76,44,17,1,85,241,68,0,202,183,249,255,65,212,212,255,9,33,154,1,71,59,80,0,175,194,59,255,141,72,9,0,100,160,244,0,230,208,56,0,59,25,75,254,80,194,194,0,18,3,200,254,160,159,115,0,132,143,247,1,111,93,57,255,58,237,11,1,134,222,135,255,122,163,108,1,123,43,190,255,251,189,206,254,80,182,72,255,208,246,224,1,17,60,9,0,161,207,38,0,141,109,91,0,216,15,211,255,136,78,110,0,98,163,104,255,21,80,121,255,173,178,183,1,127,143,4,0,104,60,82,254,214,16,13,255,96,238,33,1,158,148,230,255,127,129,62,255,51,255,210,255,62,141,236,254,157,55,224,255,114,39,244,0,192,188,250,255,228,76,53,0,98,84,81,255,173,203,61,254,147,50,55,255,204,235,191,0,52,197,244,0,88,43,211,254,27,191,119,0,188,231,154,0,66,81,161,0,92,193,160,1,250,227,120,0,123,55,226,0,184,17,72,0,133,168,10,254,22,135,156,255,41,25,103,255,48,202,58,0,186,149,81,255,188,134,239,0,235,181,189,254,217,139,188,255,74,48,82,0,46,218,229,0,189,253,251,0,50,229,12,255,211,141,191,1,128,244,25,255,169,231,122,254,86,47,189,255,132,183,23,255,37,178,150,255,51,137,253,0,200,78,31,0,22,105,50,0,130,60,0,0,132,163,91,254,23,231,187,0,192,79,239,0,157,102,164,255,192,82,20,1,24,181,103,255,240,9,234,0,1,123,164,255,133,233,0,255,202,242,242,0,60,186,245,0,241,16,199,255,224,116,158,254,191,125,91,255,224,86,207,0,121,37,231,255,227,9,198,255,15,153,239,255,121,232,217,254,75,112,82,0,95,12,57,254,51,214,105,255,148,220,97,1,199,98,36,0,156,209,12,254,10,212,52,0,217,180,55,254,212,170,232,255,216,20,84,255,157,250,135,0,157,99,127,254,1,206,41,0,149,36,70,1,54,196,201,255,87,116,0,254,235,171,150,0,27,163,234,0,202,135,180,0,208,95,0,254,123,156,93,0,183,62,75,0,137,235,182,0,204,225,255,255,214,139,210,255,2,115,8,255,29,12,111,0,52,156,1,0,253,21,251,255,37,165,31,254,12,130,211,0,106,18,53,254,42,99,154,0,14,217,61,254,216,11,92,255,200,197,112,254,147,38,199,0,36,252,120,254,107,169,77,0,1,123,159,255,207,75,102,0,163,175,196,0,44,1,240,0,120,186,176,254,13,98,76,255,237,124,241,255,232,146,188,255,200,96,224,0,204,31,41,0,208,200,13,0,21,225,96,255,175,156,196,0,247,208,126,0,62,184,244,254,2,171,81,0,85,115,158,0,54,64,45,255,19,138,114,0,135,71,205,0,227,47,147,1,218,231,66,0,253,209,28,0,244,15,173,255,6,15,118,254,16,150,208,255,185,22,50,255,86,112,207,255,75,113,215,1,63,146,43,255,4,225,19,254,227,23,62,255,14,255,214,254,45,8,205,255,87,197,151,254,210,82,215,255,245,248,247,255,128,248,70,0,225,247,87,0,90,120,70,0,213,245,92,0,13,133,226,0,47,181,5,1,92,163,105,255,6,30,133,254,232,178,61,255,230,149,24,255,18,49,158,0,228,100,61,254,116,243,251,255,77,75,92,1,81,219,147,255,76,163,254,254,141,213,246,0,232,37,152,254,97,44,100,0,201,37,50,1,212,244,57,0,174,171,183,255,249,74,112,0,166,156,30,0,222,221,97,255,243,93,73,254,251,101,100,255,216,217,93,255,254,138,187,255,142,190,52,255,59,203,177,255,200,94,52,0,115,114,158,255,165,152,104,1,126,99,226,255,118,157,244,1,107,200,16,0,193,90,229,0,121,6,88,0,156,32,93,254,125,241,211,255,14,237,157,255,165,154,21,255,184,224,22,255,250,24,152,255,113,77,31,0,247,171,23,255,237,177,204,255,52,137,145,255,194,182,114,0,224,234,149,0,10,111,103,1,201,129,4,0,238,142,78,0,52,6,40,255,110,213,165,254,60,207,253,0,62,215,69,0,96,97,0,255,49,45,202,0,120,121,22,255,235,139,48,1,198,45,34,255,182,50,27,1,131,210,91,255,46,54,128,0,175,123,105,255,198,141,78,254,67,244,239,255,245,54,103,254,78,38,242,255,2,92,249,254,251,174,87,255,139,63,144,0,24,108,27,255,34,102,18,1,34,22,152,0,66,229,118,254,50,143,99,0,144,169,149,1,118,30,152,0,178,8,121,1,8,159,18,0,90,101,230,255,129,29,119,0,68,36,11,1,232,183,55,0,23,255,96,255,161,41,193,255,63,139,222,0,15,179,243,0,255,100,15,255,82,53,135,0,137,57,149,1,99,240,170,255,22,230,228,254,49,180,82,255,61,82,43,0,110,245,217,0,199,125,61,0,46,253,52,0,141,197,219,0,211,159,193,0,55,121,105,254,183,20,129,0,169,119,170,255,203,178,139,255,135,40,182,255,172,13,202,255,65,178,148,0,8,207,43,0,122,53,127,1,74,161,48,0,227,214,128,254,86,11,243,255,100,86,7,1,245,68,134,255,61,43,21,1,152,84,94,255,190,60,250,254,239,118,232,255,214,136,37,1,113,76,107,255,93,104,100,1,144,206,23,255,110,150,154,1,228,103,185,0,218,49,50,254,135,77,139,255,185,1,78,0,0,161,148,255,97,29,233,255,207,148,149,255,160,168,0,0,91,128,171,255,6,28,19,254,11,111,247,0,39,187,150,255,138,232,149,0,117,62,68,255,63,216,188,255,235,234,32,254,29,57,160,255,25,12,241,1,169,60,191,0,32,131,141,255,237,159,123,255,94,197,94,254,116,254,3,255,92,179,97,254,121,97,92,255,170,112,14,0,21,149,248,0,248,227,3,0,80,96,109,0,75,192,74,1,12,90,226,255,161,106,68,1,208,114,127,255,114,42,255,254,74,26,74,255,247,179,150,254,121,140,60,0,147,70,200,255,214,40,161,255,161,188,201,255,141,65,135,255,242,115,252,0,62,47,202,0,180,149,255,254,130,55,237,0,165,17,186,255,10,169,194,0,156,109,218,255,112,140,123,255,104,128,223,254,177,142,108,255,121,37,219,255,128,77,18,255,111,108,23,1,91,192,75,0,174,245,22,255,4,236,62,255,43,64,153,1,227,173,254,0,237,122,132,1,127,89,186,255,142,82,128,254,252,84,174,0,90,179,177,1,243,214,87,255,103,60,162,255,208,130,14,255,11,130,139,0,206,129,219,255,94,217,157,255,239,230,230,255,116,115,159,254,164,107,95,0,51,218,2,1,216,125,198,255,140,202,128,254,11,95,68,255,55,9,93,254,174,153,6,255,204,172,96,0,69,160,110,0,213,38,49,254,27,80,213,0,118,125,114,0,70,70,67,255,15,142,73,255,131,122,185,255,243,20,50,254,130,237,40,0,210,159,140,1,197,151,65,255,84,153,66,0,195,126,90,0,16,238,236,1,118,187,102,255,3,24,133,255,187,69,230,0,56,197,92,1,213,69,94,255,80,138,229,1,206,7,230,0,222,111,230,1,91,233,119,255,9,89,7,1,2,98,1,0,148,74,133,255,51,246,180,255,228,177,112,1,58,189,108,255,194,203,237,254,21,209,195,0,147,10,35,1,86,157,226,0,31,163,139,254,56,7,75,255,62,90,116,0,181,60,169,0,138,162,212,254,81,167,31,0,205,90,112,255,33,112,227,0,83,151,117,1,177,224,73,255,174,144,217,255,230,204,79,255,22,77,232,255,114,78,234,0,224,57,126,254,9,49,141,0,242,147,165,1,104,182,140,255,167,132,12,1,123,68,127,0,225,87,39,1,251,108,8,0,198,193,143,1,121,135,207,255,172,22,70,0,50,68,116,255,101,175,40,255,248,105,233,0,166,203,7,0,110,197,218,0,215,254,26,254,168,226,253,0,31,143,96,0,11,103,41,0,183,129,203,254,100,247,74,255,213,126,132,0,210,147,44,0,199,234,27,1,148,47,181,0,155,91,158,1,54,105,175,255,2,78,145,254,102,154,95,0,128,207,127,254,52,124,236,255,130,84,71,0,221,243,211,0,152,170,207,0,222,106,199,0,183,84,94,254,92,200,56,255,138,182,115,1,142,96,146,0,133,136,228,0,97,18,150,0,55,251,66,0,140,102,4,0,202,103,151,0,30,19,248,255,51,184,207,0,202,198,89,0,55,197,225,254,169,95,249,255,66,65,68,255,188,234,126,0,166,223,100,1,112,239,244,0,144,23,194,0,58,39,182,0,244,44,24,254,175,68,179,255,152,118,154,1,176,162,130,0,217,114,204,254,173,126,78,255,33,222,30,255,36,2,91,255,2,143,243,0,9,235,215,0,3,171,151,1,24,215,245,255,168,47,164,254,241,146,207,0,69,129,180,0,68,243,113,0,144,53,72,254,251,45,14,0,23,110,168,0,68,68,79,255,110,70,95,254,174,91,144,255,33,206,95,255,137,41,7,255,19,187,153,254,35,255,112,255,9,145,185,254,50,157,37,0,11,112,49,1,102,8,190,255,234,243,169,1,60,85,23,0,74,39,189,0,116,49,239,0,173,213,210,0,46,161,108,255,159,150,37,0,196,120,185,255,34,98,6,255,153,195,62,255,97,230,71,255,102,61,76,0,26,212,236,255,164,97,16,0,198,59,146,0,163,23,196,0,56,24,61,0,181,98,193,0,251,147,229,255,98,189,24,255,46,54,206,255,234,82,246,0,183,103,38,1,109,62,204,0,10,240,224,0,146,22,117,255,142,154,120,0,69,212,35,0,208,99,118,1,121,255,3,255,72,6,194,0,117,17,197,255,125,15,23,0,154,79,153,0,214,94,197,255,185,55,147,255,62,254,78,254,127,82,153,0,110,102,63,255,108,82,161,255,105,187,212,1,80,138,39,0,60,255,93,255,72,12,186,0,210,251,31,1,190,167,144,255,228,44,19,254,128,67,232,0,214,249,107,254,136,145,86,255,132,46,176,0,189,187,227,255,208,22,140,0,217,211,116,0,50,81,186,254,139,250,31,0,30,64,198,1,135,155,100,0,160,206,23,254,187,162,211,255,16,188,63,0,254,208,49,0,85,84,191,0,241,192,242,255,153,126,145,1,234,162,162,255,230,97,216,1,64,135,126,0,190,148,223,1,52,0,43,255,28,39,189,1,64,136,238,0,175,196,185,0,98,226,213,255,127,159,244,1,226,175,60,0,160,233,142,1,180,243,207,255,69,152,89,1,31,101,21,0,144,25,164,254,139,191,209,0,91,25,121,0,32,147,5,0,39,186,123,255,63,115,230,255,93,167,198,255,143,213,220,255,179,156,19,255,25,66,122,0,214,160,217,255,2,45,62,255,106,79,146,254,51,137,99,255,87,100,231,255,175,145,232,255,101,184,1,255,174,9,125,0,82,37,161,1,36,114,141,255,48,222,142,255,245,186,154,0,5,174,221,254,63,114,155,255,135,55,160,1,80,31,135,0,126,250,179,1,236,218,45,0,20,28,145,1,16,147,73,0,249,189,132,1,17,189,192,255,223,142,198,255,72,20,15,255,250,53,237,254,15,11,18,0,27,211,113,254,213,107,56,255,174,147,146,255,96,126,48,0,23,193,109,1,37,162,94,0,199,157,249,254,24,128,187,255,205,49,178,254,93,164,42,255,43,119,235,1,88,183,237,255,218,210,1,255,107,254,42,0,230,10,99,255,162,0,226,0,219,237,91,0,129,178,203,0,208,50,95,254,206,208,95,255,247,191,89,254,110,234,79,255,165,61,243,0,20,122,112,255,246,246,185,254,103,4,123,0,233,99,230,1,219,91,252,255,199,222,22,255,179,245,233,255,211,241,234,0,111,250,192,255,85,84,136,0,101,58,50,255,131,173,156,254,119,45,51,255,118,233,16,254,242,90,214,0,94,159,219,1,3,3,234,255,98,76,92,254,80,54,230,0,5,228,231,254,53,24,223,255,113,56,118,1,20,132,1,255,171,210,236,0,56,241,158,255,186,115,19,255,8,229,174,0,48,44,0,1,114,114,166,255,6,73,226,255,205,89,244,0,137,227,75,1,248,173,56,0,74,120,246,254,119,3,11,255,81,120,198,255,136,122,98,255,146,241,221,1,109,194,78,255,223,241,70,1,214,200,169,255,97,190,47,255,47,103,174,255,99,92,72,254,118,233,180,255,193,35,233,254,26,229,32,255,222,252,198,0,204,43,71,255,199,84,172,0,134,102,190,0,111,238,97,254,230,40,230,0,227,205,64,254,200,12,225,0,166,25,222,0,113,69,51,255,143,159,24,0,167,184,74,0,29,224,116,254,158,208,233,0,193,116,126,255,212,11,133,255,22,58,140,1,204,36,51,255,232,30,43,0,235,70,181,255,64,56,146,254,169,18,84,255,226,1,13,255,200,50,176,255,52,213,245,254,168,209,97,0,191,71,55,0,34,78,156,0,232,144,58,1,185,74,189,0,186,142,149,254,64,69,127,255,161,203,147,255,176,151,191,0,136,231,203,254,163,182,137,0,161,126,251,254,233,32,66,0,68,207,66,0,30,28,37,0,93,114,96,1,254,92,247,255,44,171,69,0,202,119,11,255,188,118,50,1,255,83,136,255,71,82,26,0,70,227,2,0,32,235,121,1,181,41,154,0,71,134,229,254,202,255,36,0,41,152,5,0,154,63,73,255,34,182,124,0,121,221,150,255,26,204,213,1,41,172,87,0,90,157,146,255,109,130,20,0,71,107,200,255,243,102,189,0,1,195,145,254,46,88,117,0,8,206,227,0,191,110,253,255,109,128,20,254,134,85,51,255,137,177,112,1,216,34,22,255,131,16,208,255,121,149,170,0,114,19,23,1,166,80,31,255,113,240,122,0,232,179,250,0,68,110,180,254,210,170,119,0,223,108,164,255,207,79,233,255,27,229,226,254,209,98,81,255,79,68,7,0,131,185,100,0,170,29,162,255,17,162,107,255,57,21,11,1,100,200,181,255,127,65,166,1,165,134,204,0,104,167,168,0,1,164,79,0,146,135,59,1,70,50,128,255,102,119,13,254,227,6,135,0,162,142,179,255,160,100,222,0,27,224,219,1,158,93,195,255,234,141,137,0,16,24,125,255,238,206,47,255,97,17,98,255,116,110,12,255,96,115,77,0,91,227,232,255,248,254,79,255,92,229,6,254,88,198,139,0,206,75,129,0,250,77,206,255,141,244,123,1,138,69,220,0,32,151,6,1,131,167,22,255,237,68,167,254,199,189,150,0,163,171,138,255,51,188,6,255,95,29,137,254,148,226,179,0,181,107,208,255,134,31,82,255,151,101,45,255,129,202,225,0,224,72,147,0,48,138,151,255,195,64,206,254,237,218,158,0,106,29,137,254,253,189,233,255,103,15,17,255,194,97,255,0,178,45,169,254,198,225,155,0,39,48,117,255,135,106,115,0,97,38,181,0,150,47,65,255,83,130,229,254,246,38,129,0,92,239,154,254,91,99,127,0,161,111,33,255,238,217,242,255,131,185,195,255,213,191,158,255,41,150,218,0,132,169,131,0,89,84,252,1,171,70,128,255,163,248,203,254,1,50,180,255,124,76,85,1,251,111,80,0,99,66,239,255,154,237,182,255,221,126,133,254,74,204,99,255,65,147,119,255,99,56,167,255,79,248,149,255,116,155,228,255,237,43,14,254,69,137,11,255,22,250,241,1,91,122,143,255,205,249,243,0,212,26,60,255,48,182,176,1,48,23,191,255,203,121,152,254,45,74,213,255,62,90,18,254,245,163,230,255,185,106,116,255,83,35,159,0,12,33,2,255,80,34,62,0,16,87,174,255,173,101,85,0,202,36,81,254,160,69,204,255,64,225,187,0,58,206,94,0,86,144,47,0,229,86,245,0,63,145,190,1,37,5,39,0,109,251,26,0,137,147,234,0,162,121,145,255,144,116,206,255,197,232,185,255,183,190,140,255,73,12,254,255,139,20,242,255,170,90,239,255,97,66,187,255,245,181,135,254,222,136,52,0,245,5,51,254,203,47,78,0,152,101,216,0,73,23,125,0,254,96,33,1,235,210,73,255,43,209,88,1,7,129,109,0,122,104,228,254,170,242,203,0,242,204,135,255,202,28,233,255,65,6,127,0,159,144,71,0,100,140,95,0,78,150,13,0,251,107,118,1,182,58,125,255,1,38,108,255,141,189,209,255,8,155,125,1,113,163,91,255,121,79,190,255,134,239,108,255,76,47,248,0,163,228,239,0,17,111,10,0,88,149,75,255,215,235,239,0,167,159,24,255,47,151,108,255,107,209,188,0,233,231,99,254,28,202,148,255,174,35,138,255,110,24,68,255,2,69,181,0,107,102,82,0,102,237,7,0,92,36,237,255,221,162,83,1,55,202,6,255,135,234,135,255,24,250,222,0,65,94,168,254,245,248,210,255,167,108,201,254,255,161,111,0,205,8,254,0,136,13,116,0,100,176,132,255,43,215,126,255,177,133,130,255,158,79,148,0,67,224,37,1,12,206,21,255,62,34,110,1,237,104,175,255,80,132,111,255,142,174,72,0,84,229,180,254,105,179,140,0,64,248,15,255,233,138,16,0,245,67,123,254,218,121,212,255,63,95,218,1,213,133,137,255,143,182,82,255,48,28,11,0,244,114,141,1,209,175,76,255,157,181,150,255,186,229,3,255,164,157,111,1,231,189,139,0,119,202,190,255,218,106,64,255,68,235,63,254,96,26,172,255,187,47,11,1,215,18,251,255,81,84,89,0,68,58,128,0,94,113,5,1,92,129,208,255,97,15,83,254,9,28,188,0,239,9,164,0,60,205,152,0,192,163,98,255,184,18,60,0,217,182,139,0,109,59,120,255,4,192,251,0,169,210,240,255,37,172,92,254,148,211,245,255,179,65,52,0,253,13,115,0,185,174,206,1,114,188,149,255,237,90,173,0,43,199,192,255,88,108,113,0,52,35,76,0,66,25,148,255,221,4,7,255,151,241,114,255,190,209,232,0,98,50,199,0,151,150,213,255,18,74,36,1,53,40,7,0,19,135,65,255,26,172,69,0,174,237,85,0,99,95,41,0,3,56,16,0,39,160,177,255,200,106,218,254,185,68,84,255,91,186,61,254,67,143,141,255,13,244,166,255,99,114,198,0,199,110,163,255,193,18,186,0,124,239,246,1,110,68,22,0,2,235,46,1,212,60,107,0,105,42,105,1,14,230,152,0,7,5,131,0,141,104,154,255,213,3,6,0,131,228,162,255,179,100,28,1,231,123,85,255,206,14,223,1,253,96,230,0,38,152,149,1,98,137,122,0,214,205,3,255,226,152,179,255,6,133,137,0,158,69,140,255,113,162,154,255,180,243,172,255,27,189,115,255,143,46,220,255,213,134,225,255,126,29,69,0,188,43,137,1,242,70,9,0,90,204,255,255,231,170,147,0,23,56,19,254,56,125,157,255,48,179,218,255,79,182,253,255,38,212,191,1,41,235,124,0,96,151,28,0,135,148,190,0,205,249,39,254,52,96,136,255,212,44,136,255,67,209,131,255,252,130,23,255,219,128,20,255,198,129,118,0,108,101,11,0,178,5,146,1,62,7,100,255,181,236,94,254,28,26,164,0,76,22,112,255,120,102,79,0,202,192,229,1,200,176,215,0,41,64,244,255,206,184,78,0,167,45,63,1,160,35,0,255,59,12,142,255,204,9,144,255,219,94,229,1,122,27,112,0,189,105,109,255,64,208,74,255,251,127,55,1,2,226,198,0,44,76,209,0,151,152,77,255,210,23,46,1,201,171,69,255,44,211,231,0,190,37,224,255,245,196,62,255,169,181,222,255,34,211,17,0,119,241,197,255,229,35,152,1,21,69,40,255,178,226,161,0,148,179,193,0,219,194,254,1,40,206,51,255,231,92,250,1,67,153,170,0,21,148,241,0,170,69,82,255,121,18,231,255,92,114,3,0,184,62,230,0,225,201,87,255,146,96,162,255,181,242,220,0,173,187,221,1,226,62,170,255,56,126,217,1,117,13,227,255,179,44,239,0,157,141,155,255,144,221,83,0,235,209,208,0,42,17,165,1,251,81,133,0,124,245,201,254,97,211,24,255,83,214,166,0,154,36,9,255,248,47,127,0,90,219,140,255,161,217,38,254,212,147,63,255,66,84,148,1,207,3,1,0,230,134,89,1,127,78,122,255,224,155,1,255,82,136,74,0,178,156,208,255,186,25,49,255,222,3,210,1,229,150,190,255,85,162,52,255,41,84,141,255,73,123,84,254,93,17,150,0,119,19,28,1,32,22,215,255,28,23,204,255,142,241,52,255,228,52,125,0,29,76,207,0,215,167,250,254,175,164,230,0,55,207,105,1,109,187,245,255,161,44,220,1,41,101,128,255,167,16,94,0,93,214,107,255,118,72,0,254,80,61,234,255,121,175,125,0,139,169,251,0,97,39,147,254,250,196,49,255,165,179,110,254,223,70,187,255,22,142,125,1,154,179,138,255,118,176,42,1,10,174,153,0,156,92,102,0,168,13,161,255,143,16,32,0,250,197,180,255,203,163,44,1,87,32,36,0,161,153,20,255,123,252,15,0,25,227,80,0,60,88,142,0,17,22,201,1,154,205,77,255,39,63,47,0,8,122,141,0,128,23,182,254,204,39,19,255,4,112,29,255,23,36,140,255,210,234,116,254,53,50,63,255,121,171,104,255,160,219,94,0,87,82,14,254,231,42,5,0,165,139,127,254,86,78,38,0,130,60,66,254,203,30,45,255,46,196,122,1,249,53,162,255,136,143,103,254,215,210,114,0,231,7,160,254,169,152,42,255,111,45,246,0,142,131,135,255,131,71,204,255,36,226,11,0,0,28,242,255,225,138,213,255,247,46,216,254,245,3,183,0,108,252,74,1,206,26,48,255,205,54,246,255,211,198,36,255,121,35,50,0,52,216,202,255,38,139,129,254,242,73,148,0,67,231,141,255,42,47,204,0,78,116,25,1,4,225,191,255,6,147,228,0,58,88,177,0,122,165,229,255,252,83,201,255,224,167,96,1,177,184,158,255,242,105,179,1,248,198,240,0,133,66,203,1,254,36,47,0,45,24,115,255,119,62,254,0,196,225,186,254,123,141,172,0,26,85,41,255,226,111,183,0,213,231,151,0,4,59,7,255,238,138,148,0,66,147,33,255,31,246,141,255,209,141,116,255,104,112,31,0,88,161,172,0,83,215,230,254,47,111,151,0,45,38,52,1,132,45,204,0,138,128,109,254,233,117,134,255,243,190,173,254,241,236,240,0,82,127,236,254,40,223,161,255,110,182,225,255,123,174,239,0,135,242,145,1,51,209,154,0,150,3,115,254,217,164,252,255,55,156,69,1,84,94,255,255,232,73,45,1,20,19,212,255,96,197,59,254,96,251,33,0,38,199,73,1,64,172,247,255,117,116,56,255,228,17,18,0,62,138,103,1,246,229,164,255,244,118,201,254,86,32,159,255,109,34,137,1,85,211,186,0,10,193,193,254,122,194,177,0,122,238,102,255,162,218,171,0,108,217,161,1,158,170,34,0,176,47,155,1,181,228,11,255,8,156,0,0,16,75,93,0,206,98,255,1,58,154,35,0,12,243,184,254,67,117,66,255,230,229,123,0,201,42,110], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE+20480); -/* memory initializer */ allocate([134,228,178,254,186,108,118,255,58,19,154,255,82,169,62,255,114,143,115,1,239,196,50,255,173,48,193,255,147,2,84,255,150,134,147,254,95,232,73,0,109,227,52,254,191,137,10,0,40,204,30,254,76,52,97,255,164,235,126,0,254,124,188,0,74,182,21,1,121,29,35,255,241,30,7,254,85,218,214,255,7,84,150,254,81,27,117,255,160,159,152,254,66,24,221,255,227,10,60,1,141,135,102,0,208,189,150,1,117,179,92,0,132,22,136,255,120,199,28,0,21,129,79,254,182,9,65,0,218,163,169,0,246,147,198,255,107,38,144,1,78,175,205,255,214,5,250,254,47,88,29,255,164,47,204,255,43,55,6,255,131,134,207,254,116,100,214,0,96,140,75,1,106,220,144,0,195,32,28,1,172,81,5,255,199,179,52,255,37,84,203,0,170,112,174,0,11,4,91,0,69,244,27,1,117,131,92,0,33,152,175,255,140,153,107,255,251,135,43,254,87,138,4,255,198,234,147,254,121,152,84,255,205,101,155,1,157,9,25,0,72,106,17,254,108,153,0,255,189,229,186,0,193,8,176,255,174,149,209,0,238,130,29,0,233,214,126,1,61,226,102,0,57,163,4,1,198,111,51,255,45,79,78,1,115,210,10,255,218,9,25,255,158,139,198,255,211,82,187,254,80,133,83,0,157,129,230,1,243,133,134,255,40,136,16,0,77,107,79,255,183,85,92,1,177,204,202,0,163,71,147,255,152,69,190,0,172,51,188,1,250,210,172,255,211,242,113,1,89,89,26,255,64,66,111,254,116,152,42,0,161,39,27,255,54,80,254,0,106,209,115,1,103,124,97,0,221,230,98,255,31,231,6,0,178,192,120,254,15,217,203,255,124,158,79,0,112,145,247,0,92,250,48,1,163,181,193,255,37,47,142,254,144,189,165,255,46,146,240,0,6,75,128,0,41,157,200,254,87,121,213,0,1,113,236,0,5,45,250,0,144,12,82,0,31,108,231,0,225,239,119,255,167,7,189,255,187,228,132,255,110,189,34,0,94,44,204,1,162,52,197,0,78,188,241,254,57,20,141,0,244,146,47,1,206,100,51,0,125,107,148,254,27,195,77,0,152,253,90,1,7,143,144,255,51,37,31,0,34,119,38,255,7,197,118,0,153,188,211,0,151,20,116,254,245,65,52,255,180,253,110,1,47,177,209,0,161,99,17,255,118,222,202,0,125,179,252,1,123,54,126,255,145,57,191,0,55,186,121,0,10,243,138,0,205,211,229,255,125,156,241,254,148,156,185,255,227,19,188,255,124,41,32,255,31,34,206,254,17,57,83,0,204,22,37,255,42,96,98,0,119,102,184,1,3,190,28,0,110,82,218,255,200,204,192,255,201,145,118,0,117,204,146,0,132,32,98,1,192,194,121,0,106,161,248,1,237,88,124,0,23,212,26,0,205,171,90,255,248,48,216,1,141,37,230,255,124,203,0,254,158,168,30,255,214,248,21,0,112,187,7,255,75,133,239,255,74,227,243,255,250,147,70,0,214,120,162,0,167,9,179,255,22,158,18,0,218,77,209,1,97,109,81,255,244,33,179,255,57,52,57,255,65,172,210,255,249,71,209,255,142,169,238,0,158,189,153,255,174,254,103,254,98,33,14,0,141,76,230,255,113,139,52,255,15,58,212,0,168,215,201,255,248,204,215,1,223,68,160,255,57,154,183,254,47,231,121,0,106,166,137,0,81,136,138,0,165,43,51,0,231,139,61,0,57,95,59,254,118,98,25,255,151,63,236,1,94,190,250,255,169,185,114,1,5,250,58,255,75,105,97,1,215,223,134,0,113,99,163,1,128,62,112,0,99,106,147,0,163,195,10,0,33,205,182,0,214,14,174,255,129,38,231,255,53,182,223,0,98,42,159,255,247,13,40,0,188,210,177,1,6,21,0,255,255,61,148,254,137,45,129,255,89,26,116,254,126,38,114,0,251,50,242,254,121,134,128,255,204,249,167,254,165,235,215,0,202,177,243,0,133,141,62,0,240,130,190,1,110,175,255,0,0,20,146,1,37,210,121,255,7,39,130,0,142,250,84,255,141,200,207,0,9,95,104,255,11,244,174,0,134,232,126,0,167,1,123,254,16,193,149,255,232,233,239,1,213,70,112,255,252,116,160,254,242,222,220,255,205,85,227,0,7,185,58,0,118,247,63,1,116,77,177,255,62,245,200,254,63,18,37,255,107,53,232,254,50,221,211,0,162,219,7,254,2,94,43,0,182,62,182,254,160,78,200,255,135,140,170,0,235,184,228,0,175,53,138,254,80,58,77,255,152,201,2,1,63,196,34,0,5,30,184,0,171,176,154,0,121,59,206,0,38,99,39,0,172,80,77,254,0,134,151,0,186,33,241,254,94,253,223,255,44,114,252,0,108,126,57,255,201,40,13,255,39,229,27,255,39,239,23,1,151,121,51,255,153,150,248,0,10,234,174,255,118,246,4,254,200,245,38,0,69,161,242,1,16,178,150,0,113,56,130,0,171,31,105,0,26,88,108,255,49,42,106,0,251,169,66,0,69,93,149,0,20,57,254,0,164,25,111,0,90,188,90,255,204,4,197,0,40,213,50,1,212,96,132,255,88,138,180,254,228,146,124,255,184,246,247,0,65,117,86,255,253,102,210,254,254,121,36,0,137,115,3,255,60,24,216,0,134,18,29,0,59,226,97,0,176,142,71,0,7,209,161,0,189,84,51,254,155,250,72,0,213,84,235,255,45,222,224,0,238,148,143,255,170,42,53,255,78,167,117,0,186,0,40,255,125,177,103,255,69,225,66,0,227,7,88,1,75,172,6,0,169,45,227,1,16,36,70,255,50,2,9,255,139,193,22,0,143,183,231,254,218,69,50,0,236,56,161,1,213,131,42,0,138,145,44,254,136,229,40,255,49,63,35,255,61,145,245,255,101,192,2,254,232,167,113,0,152,104,38,1,121,185,218,0,121,139,211,254,119,240,35,0,65,189,217,254,187,179,162,255,160,187,230,0,62,248,14,255,60,78,97,0,255,247,163,255,225,59,91,255,107,71,58,255,241,47,33,1,50,117,236,0,219,177,63,254,244,90,179,0,35,194,215,255,189,67,50,255,23,135,129,0,104,189,37,255,185,57,194,0,35,62,231,255,220,248,108,0,12,231,178,0,143,80,91,1,131,93,101,255,144,39,2,1,255,250,178,0,5,17,236,254,139,32,46,0,204,188,38,254,245,115,52,255,191,113,73,254,191,108,69,255,22,69,245,1,23,203,178,0,170,99,170,0,65,248,111,0,37,108,153,255,64,37,69,0,0,88,62,254,89,148,144,255,191,68,224,1,241,39,53,0,41,203,237,255,145,126,194,255,221,42,253,255,25,99,151,0,97,253,223,1,74,115,49,255,6,175,72,255,59,176,203,0,124,183,249,1,228,228,99,0,129,12,207,254,168,192,195,255,204,176,16,254,152,234,171,0,77,37,85,255,33,120,135,255,142,194,227,1,31,214,58,0,213,187,125,255,232,46,60,255,190,116,42,254,151,178,19,255,51,62,237,254,204,236,193,0,194,232,60,0,172,34,157,255,189,16,184,254,103,3,95,255,141,233,36,254,41,25,11,255,21,195,166,0,118,245,45,0,67,213,149,255,159,12,18,255,187,164,227,1,160,25,5,0,12,78,195,1,43,197,225,0,48,142,41,254,196,155,60,255,223,199,18,1,145,136,156,0,252,117,169,254,145,226,238,0,239,23,107,0,109,181,188,255,230,112,49,254,73,170,237,255,231,183,227,255,80,220,20,0,194,107,127,1,127,205,101,0,46,52,197,1,210,171,36,255,88,3,90,255,56,151,141,0,96,187,255,255,42,78,200,0,254,70,70,1,244,125,168,0,204,68,138,1,124,215,70,0,102,66,200,254,17,52,228,0,117,220,143,254,203,248,123,0,56,18,174,255,186,151,164,255,51,232,208,1,160,228,43,255,249,29,25,1,68,190,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,127,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,188,129,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,255,255,255,255], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE+30720); +/* memory initializer */ allocate([134,228,178,254,186,108,118,255,58,19,154,255,82,169,62,255,114,143,115,1,239,196,50,255,173,48,193,255,147,2,84,255,150,134,147,254,95,232,73,0,109,227,52,254,191,137,10,0,40,204,30,254,76,52,97,255,164,235,126,0,254,124,188,0,74,182,21,1,121,29,35,255,241,30,7,254,85,218,214,255,7,84,150,254,81,27,117,255,160,159,152,254,66,24,221,255,227,10,60,1,141,135,102,0,208,189,150,1,117,179,92,0,132,22,136,255,120,199,28,0,21,129,79,254,182,9,65,0,218,163,169,0,246,147,198,255,107,38,144,1,78,175,205,255,214,5,250,254,47,88,29,255,164,47,204,255,43,55,6,255,131,134,207,254,116,100,214,0,96,140,75,1,106,220,144,0,195,32,28,1,172,81,5,255,199,179,52,255,37,84,203,0,170,112,174,0,11,4,91,0,69,244,27,1,117,131,92,0,33,152,175,255,140,153,107,255,251,135,43,254,87,138,4,255,198,234,147,254,121,152,84,255,205,101,155,1,157,9,25,0,72,106,17,254,108,153,0,255,189,229,186,0,193,8,176,255,174,149,209,0,238,130,29,0,233,214,126,1,61,226,102,0,57,163,4,1,198,111,51,255,45,79,78,1,115,210,10,255,218,9,25,255,158,139,198,255,211,82,187,254,80,133,83,0,157,129,230,1,243,133,134,255,40,136,16,0,77,107,79,255,183,85,92,1,177,204,202,0,163,71,147,255,152,69,190,0,172,51,188,1,250,210,172,255,211,242,113,1,89,89,26,255,64,66,111,254,116,152,42,0,161,39,27,255,54,80,254,0,106,209,115,1,103,124,97,0,221,230,98,255,31,231,6,0,178,192,120,254,15,217,203,255,124,158,79,0,112,145,247,0,92,250,48,1,163,181,193,255,37,47,142,254,144,189,165,255,46,146,240,0,6,75,128,0,41,157,200,254,87,121,213,0,1,113,236,0,5,45,250,0,144,12,82,0,31,108,231,0,225,239,119,255,167,7,189,255,187,228,132,255,110,189,34,0,94,44,204,1,162,52,197,0,78,188,241,254,57,20,141,0,244,146,47,1,206,100,51,0,125,107,148,254,27,195,77,0,152,253,90,1,7,143,144,255,51,37,31,0,34,119,38,255,7,197,118,0,153,188,211,0,151,20,116,254,245,65,52,255,180,253,110,1,47,177,209,0,161,99,17,255,118,222,202,0,125,179,252,1,123,54,126,255,145,57,191,0,55,186,121,0,10,243,138,0,205,211,229,255,125,156,241,254,148,156,185,255,227,19,188,255,124,41,32,255,31,34,206,254,17,57,83,0,204,22,37,255,42,96,98,0,119,102,184,1,3,190,28,0,110,82,218,255,200,204,192,255,201,145,118,0,117,204,146,0,132,32,98,1,192,194,121,0,106,161,248,1,237,88,124,0,23,212,26,0,205,171,90,255,248,48,216,1,141,37,230,255,124,203,0,254,158,168,30,255,214,248,21,0,112,187,7,255,75,133,239,255,74,227,243,255,250,147,70,0,214,120,162,0,167,9,179,255,22,158,18,0,218,77,209,1,97,109,81,255,244,33,179,255,57,52,57,255,65,172,210,255,249,71,209,255,142,169,238,0,158,189,153,255,174,254,103,254,98,33,14,0,141,76,230,255,113,139,52,255,15,58,212,0,168,215,201,255,248,204,215,1,223,68,160,255,57,154,183,254,47,231,121,0,106,166,137,0,81,136,138,0,165,43,51,0,231,139,61,0,57,95,59,254,118,98,25,255,151,63,236,1,94,190,250,255,169,185,114,1,5,250,58,255,75,105,97,1,215,223,134,0,113,99,163,1,128,62,112,0,99,106,147,0,163,195,10,0,33,205,182,0,214,14,174,255,129,38,231,255,53,182,223,0,98,42,159,255,247,13,40,0,188,210,177,1,6,21,0,255,255,61,148,254,137,45,129,255,89,26,116,254,126,38,114,0,251,50,242,254,121,134,128,255,204,249,167,254,165,235,215,0,202,177,243,0,133,141,62,0,240,130,190,1,110,175,255,0,0,20,146,1,37,210,121,255,7,39,130,0,142,250,84,255,141,200,207,0,9,95,104,255,11,244,174,0,134,232,126,0,167,1,123,254,16,193,149,255,232,233,239,1,213,70,112,255,252,116,160,254,242,222,220,255,205,85,227,0,7,185,58,0,118,247,63,1,116,77,177,255,62,245,200,254,63,18,37,255,107,53,232,254,50,221,211,0,162,219,7,254,2,94,43,0,182,62,182,254,160,78,200,255,135,140,170,0,235,184,228,0,175,53,138,254,80,58,77,255,152,201,2,1,63,196,34,0,5,30,184,0,171,176,154,0,121,59,206,0,38,99,39,0,172,80,77,254,0,134,151,0,186,33,241,254,94,253,223,255,44,114,252,0,108,126,57,255,201,40,13,255,39,229,27,255,39,239,23,1,151,121,51,255,153,150,248,0,10,234,174,255,118,246,4,254,200,245,38,0,69,161,242,1,16,178,150,0,113,56,130,0,171,31,105,0,26,88,108,255,49,42,106,0,251,169,66,0,69,93,149,0,20,57,254,0,164,25,111,0,90,188,90,255,204,4,197,0,40,213,50,1,212,96,132,255,88,138,180,254,228,146,124,255,184,246,247,0,65,117,86,255,253,102,210,254,254,121,36,0,137,115,3,255,60,24,216,0,134,18,29,0,59,226,97,0,176,142,71,0,7,209,161,0,189,84,51,254,155,250,72,0,213,84,235,255,45,222,224,0,238,148,143,255,170,42,53,255,78,167,117,0,186,0,40,255,125,177,103,255,69,225,66,0,227,7,88,1,75,172,6,0,169,45,227,1,16,36,70,255,50,2,9,255,139,193,22,0,143,183,231,254,218,69,50,0,236,56,161,1,213,131,42,0,138,145,44,254,136,229,40,255,49,63,35,255,61,145,245,255,101,192,2,254,232,167,113,0,152,104,38,1,121,185,218,0,121,139,211,254,119,240,35,0,65,189,217,254,187,179,162,255,160,187,230,0,62,248,14,255,60,78,97,0,255,247,163,255,225,59,91,255,107,71,58,255,241,47,33,1,50,117,236,0,219,177,63,254,244,90,179,0,35,194,215,255,189,67,50,255,23,135,129,0,104,189,37,255,185,57,194,0,35,62,231,255,220,248,108,0,12,231,178,0,143,80,91,1,131,93,101,255,144,39,2,1,255,250,178,0,5,17,236,254,139,32,46,0,204,188,38,254,245,115,52,255,191,113,73,254,191,108,69,255,22,69,245,1,23,203,178,0,170,99,170,0,65,248,111,0,37,108,153,255,64,37,69,0,0,88,62,254,89,148,144,255,191,68,224,1,241,39,53,0,41,203,237,255,145,126,194,255,221,42,253,255,25,99,151,0,97,253,223,1,74,115,49,255,6,175,72,255,59,176,203,0,124,183,249,1,228,228,99,0,129,12,207,254,168,192,195,255,204,176,16,254,152,234,171,0,77,37,85,255,33,120,135,255,142,194,227,1,31,214,58,0,213,187,125,255,232,46,60,255,190,116,42,254,151,178,19,255,51,62,237,254,204,236,193,0,194,232,60,0,172,34,157,255,189,16,184,254,103,3,95,255,141,233,36,254,41,25,11,255,21,195,166,0,118,245,45,0,67,213,149,255,159,12,18,255,187,164,227,1,160,25,5,0,12,78,195,1,43,197,225,0,48,142,41,254,196,155,60,255,223,199,18,1,145,136,156,0,252,117,169,254,145,226,238,0,239,23,107,0,109,181,188,255,230,112,49,254,73,170,237,255,231,183,227,255,80,220,20,0,194,107,127,1,127,205,101,0,46,52,197,1,210,171,36,255,88,3,90,255,56,151,141,0,96,187,255,255,42,78,200,0,254,70,70,1,244,125,168,0,204,68,138,1,124,215,70,0,102,66,200,254,17,52,228,0,117,220,143,254,203,248,123,0,56,18,174,255,186,151,164,255,51,232,208,1,160,228,43,255,249,29,25,1,68,190,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,220,130,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,244,127,0,0], "i8", ALLOC_NONE, Runtime.GLOBAL_BASE+30720); /* no memory initializer */ -var tempDoublePtr = Runtime.alignMemory(allocate(12, "i8", ALLOC_STATIC), 8); - -assert(tempDoublePtr % 8 == 0); +var tempDoublePtr = STATICTOP; STATICTOP += 16; function copyTempFloat(ptr) { // functions, because inlining this code increases code size too much @@ -1586,23 +1582,12 @@ function copyTempDouble(ptr) { Module["_memset"] = _memset; - function _pthread_cleanup_push(routine, arg) { - __ATEXIT__.push(function() { Runtime.dynCall('vi', routine, [arg]) }) - _pthread_cleanup_push.level = __ATEXIT__.length; - } - Module["_bitshift64Lshr"] = _bitshift64Lshr; Module["_bitshift64Shl"] = _bitshift64Shl; - function _pthread_cleanup_pop() { - assert(_pthread_cleanup_push.level == __ATEXIT__.length, 'cannot pop if something else added meanwhile!'); - __ATEXIT__.pop(); - _pthread_cleanup_push.level = __ATEXIT__.length; - } - function _abort() { Module['abort'](); } @@ -1612,4019 +1597,149 @@ function copyTempDouble(ptr) { function ___unlock() {} + var SYSCALLS={varargs:0,get:function (varargs) { + SYSCALLS.varargs += 4; + var ret = HEAP32[(((SYSCALLS.varargs)-(4))>>2)]; + return ret; + },getStr:function () { + var ret = Pointer_stringify(SYSCALLS.get()); + return ret; + },get64:function () { + var low = SYSCALLS.get(), high = SYSCALLS.get(); + if (low >= 0) assert(high === 0); + else assert(high === -1); + return low; + },getZero:function () { + assert(SYSCALLS.get() === 0); + }};function ___syscall6(which, varargs) {SYSCALLS.varargs = varargs; + try { + // close + var stream = SYSCALLS.getStreamFromFD(); + FS.close(stream); + return 0; + } catch (e) { + if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); + return -e.errno; + } + } + - - var ERRNO_CODES={EPERM:1,ENOENT:2,ESRCH:3,EINTR:4,EIO:5,ENXIO:6,E2BIG:7,ENOEXEC:8,EBADF:9,ECHILD:10,EAGAIN:11,EWOULDBLOCK:11,ENOMEM:12,EACCES:13,EFAULT:14,ENOTBLK:15,EBUSY:16,EEXIST:17,EXDEV:18,ENODEV:19,ENOTDIR:20,EISDIR:21,EINVAL:22,ENFILE:23,EMFILE:24,ENOTTY:25,ETXTBSY:26,EFBIG:27,ENOSPC:28,ESPIPE:29,EROFS:30,EMLINK:31,EPIPE:32,EDOM:33,ERANGE:34,ENOMSG:42,EIDRM:43,ECHRNG:44,EL2NSYNC:45,EL3HLT:46,EL3RST:47,ELNRNG:48,EUNATCH:49,ENOCSI:50,EL2HLT:51,EDEADLK:35,ENOLCK:37,EBADE:52,EBADR:53,EXFULL:54,ENOANO:55,EBADRQC:56,EBADSLT:57,EDEADLOCK:35,EBFONT:59,ENOSTR:60,ENODATA:61,ETIME:62,ENOSR:63,ENONET:64,ENOPKG:65,EREMOTE:66,ENOLINK:67,EADV:68,ESRMNT:69,ECOMM:70,EPROTO:71,EMULTIHOP:72,EDOTDOT:73,EBADMSG:74,ENOTUNIQ:76,EBADFD:77,EREMCHG:78,ELIBACC:79,ELIBBAD:80,ELIBSCN:81,ELIBMAX:82,ELIBEXEC:83,ENOSYS:38,ENOTEMPTY:39,ENAMETOOLONG:36,ELOOP:40,EOPNOTSUPP:95,EPFNOSUPPORT:96,ECONNRESET:104,ENOBUFS:105,EAFNOSUPPORT:97,EPROTOTYPE:91,ENOTSOCK:88,ENOPROTOOPT:92,ESHUTDOWN:108,ECONNREFUSED:111,EADDRINUSE:98,ECONNABORTED:103,ENETUNREACH:101,ENETDOWN:100,ETIMEDOUT:110,EHOSTDOWN:112,EHOSTUNREACH:113,EINPROGRESS:115,EALREADY:114,EDESTADDRREQ:89,EMSGSIZE:90,EPROTONOSUPPORT:93,ESOCKTNOSUPPORT:94,EADDRNOTAVAIL:99,ENETRESET:102,EISCONN:106,ENOTCONN:107,ETOOMANYREFS:109,EUSERS:87,EDQUOT:122,ESTALE:116,ENOTSUP:95,ENOMEDIUM:123,EILSEQ:84,EOVERFLOW:75,ECANCELED:125,ENOTRECOVERABLE:131,EOWNERDEAD:130,ESTRPIPE:86}; - - var ERRNO_MESSAGES={0:"Success",1:"Not super-user",2:"No such file or directory",3:"No such process",4:"Interrupted system call",5:"I/O error",6:"No such device or address",7:"Arg list too long",8:"Exec format error",9:"Bad file number",10:"No children",11:"No more processes",12:"Not enough core",13:"Permission denied",14:"Bad address",15:"Block device required",16:"Mount device busy",17:"File exists",18:"Cross-device link",19:"No such device",20:"Not a directory",21:"Is a directory",22:"Invalid argument",23:"Too many open files in system",24:"Too many open files",25:"Not a typewriter",26:"Text file busy",27:"File too large",28:"No space left on device",29:"Illegal seek",30:"Read only file system",31:"Too many links",32:"Broken pipe",33:"Math arg out of domain of func",34:"Math result not representable",35:"File locking deadlock error",36:"File or path name too long",37:"No record locks available",38:"Function not implemented",39:"Directory not empty",40:"Too many symbolic links",42:"No message of desired type",43:"Identifier removed",44:"Channel number out of range",45:"Level 2 not synchronized",46:"Level 3 halted",47:"Level 3 reset",48:"Link number out of range",49:"Protocol driver not attached",50:"No CSI structure available",51:"Level 2 halted",52:"Invalid exchange",53:"Invalid request descriptor",54:"Exchange full",55:"No anode",56:"Invalid request code",57:"Invalid slot",59:"Bad font file fmt",60:"Device not a stream",61:"No data (for no delay io)",62:"Timer expired",63:"Out of streams resources",64:"Machine is not on the network",65:"Package not installed",66:"The object is remote",67:"The link has been severed",68:"Advertise error",69:"Srmount error",70:"Communication error on send",71:"Protocol error",72:"Multihop attempted",73:"Cross mount point (not really error)",74:"Trying to read unreadable message",75:"Value too large for defined data type",76:"Given log. name not unique",77:"f.d. invalid for this operation",78:"Remote address changed",79:"Can access a needed shared lib",80:"Accessing a corrupted shared lib",81:".lib section in a.out corrupted",82:"Attempting to link in too many libs",83:"Attempting to exec a shared library",84:"Illegal byte sequence",86:"Streams pipe error",87:"Too many users",88:"Socket operation on non-socket",89:"Destination address required",90:"Message too long",91:"Protocol wrong type for socket",92:"Protocol not available",93:"Unknown protocol",94:"Socket type not supported",95:"Not supported",96:"Protocol family not supported",97:"Address family not supported by protocol family",98:"Address already in use",99:"Address not available",100:"Network interface is not configured",101:"Network is unreachable",102:"Connection reset by network",103:"Connection aborted",104:"Connection reset by peer",105:"No buffer space available",106:"Socket is already connected",107:"Socket is not connected",108:"Can't send after socket shutdown",109:"Too many references",110:"Connection timed out",111:"Connection refused",112:"Host is down",113:"Host is unreachable",114:"Socket already connected",115:"Connection already in progress",116:"Stale file handle",122:"Quota exceeded",123:"No medium (in tape drive)",125:"Operation canceled",130:"Previous owner died",131:"State not recoverable"}; + + Module["___muldsi3"] = ___muldsi3; + Module["___muldi3"] = ___muldi3; + + function _llvm_stackrestore(p) { + var self = _llvm_stacksave; + var ret = self.LLVM_SAVEDSTACKS[p]; + self.LLVM_SAVEDSTACKS.splice(p, 1); + Runtime.stackRestore(ret); + } + function ___setErrNo(value) { if (Module['___errno_location']) HEAP32[((Module['___errno_location']())>>2)]=value; return value; + } + Module["_sbrk"] = _sbrk; + + function _llvm_stacksave() { + var self = _llvm_stacksave; + if (!self.LLVM_SAVEDSTACKS) { + self.LLVM_SAVEDSTACKS = []; + } + self.LLVM_SAVEDSTACKS.push(Runtime.stackSave()); + return self.LLVM_SAVEDSTACKS.length-1; } + - var PATH={splitPath:function (filename) { - var splitPathRe = /^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/; - return splitPathRe.exec(filename).slice(1); - },normalizeArray:function (parts, allowAboveRoot) { - // if the path tries to go above the root, `up` ends up > 0 - var up = 0; - for (var i = parts.length - 1; i >= 0; i--) { - var last = parts[i]; - if (last === '.') { - parts.splice(i, 1); - } else if (last === '..') { - parts.splice(i, 1); - up++; - } else if (up) { - parts.splice(i, 1); - up--; - } - } - // if the path is allowed to go above the root, restore leading ..s - if (allowAboveRoot) { - for (; up--; up) { - parts.unshift('..'); - } - } - return parts; - },normalize:function (path) { - var isAbsolute = path.charAt(0) === '/', - trailingSlash = path.substr(-1) === '/'; - // Normalize the path - path = PATH.normalizeArray(path.split('/').filter(function(p) { - return !!p; - }), !isAbsolute).join('/'); - if (!path && !isAbsolute) { - path = '.'; - } - if (path && trailingSlash) { - path += '/'; - } - return (isAbsolute ? '/' : '') + path; - },dirname:function (path) { - var result = PATH.splitPath(path), - root = result[0], - dir = result[1]; - if (!root && !dir) { - // No dirname whatsoever - return '.'; - } - if (dir) { - // It has a dirname, strip trailing slash - dir = dir.substr(0, dir.length - 1); - } - return root + dir; - },basename:function (path) { - // EMSCRIPTEN return '/'' for '/', not an empty string - if (path === '/') return '/'; - var lastSlash = path.lastIndexOf('/'); - if (lastSlash === -1) return path; - return path.substr(lastSlash+1); - },extname:function (path) { - return PATH.splitPath(path)[3]; - },join:function () { - var paths = Array.prototype.slice.call(arguments, 0); - return PATH.normalize(paths.join('/')); - },join2:function (l, r) { - return PATH.normalize(l + '/' + r); - },resolve:function () { - var resolvedPath = '', - resolvedAbsolute = false; - for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) { - var path = (i >= 0) ? arguments[i] : FS.cwd(); - // Skip empty and invalid entries - if (typeof path !== 'string') { - throw new TypeError('Arguments to path.resolve must be strings'); - } else if (!path) { - return ''; // an invalid portion invalidates the whole thing - } - resolvedPath = path + '/' + resolvedPath; - resolvedAbsolute = path.charAt(0) === '/'; - } - // At this point the path should be resolved to a full absolute path, but - // handle relative paths to be safe (might happen when process.cwd() fails) - resolvedPath = PATH.normalizeArray(resolvedPath.split('/').filter(function(p) { - return !!p; - }), !resolvedAbsolute).join('/'); - return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.'; - },relative:function (from, to) { - from = PATH.resolve(from).substr(1); - to = PATH.resolve(to).substr(1); - function trim(arr) { - var start = 0; - for (; start < arr.length; start++) { - if (arr[start] !== '') break; - } - var end = arr.length - 1; - for (; end >= 0; end--) { - if (arr[end] !== '') break; - } - if (start > end) return []; - return arr.slice(start, end - start + 1); - } - var fromParts = trim(from.split('/')); - var toParts = trim(to.split('/')); - var length = Math.min(fromParts.length, toParts.length); - var samePartsLength = length; - for (var i = 0; i < length; i++) { - if (fromParts[i] !== toParts[i]) { - samePartsLength = i; - break; - } - } - var outputParts = []; - for (var i = samePartsLength; i < fromParts.length; i++) { - outputParts.push('..'); - } - outputParts = outputParts.concat(toParts.slice(samePartsLength)); - return outputParts.join('/'); - }}; - - var TTY={ttys:[],init:function () { - // https://github.com/kripken/emscripten/pull/1555 - // if (ENVIRONMENT_IS_NODE) { - // // currently, FS.init does not distinguish if process.stdin is a file or TTY - // // device, it always assumes it's a TTY device. because of this, we're forcing - // // process.stdin to UTF8 encoding to at least make stdin reading compatible - // // with text files until FS.init can be refactored. - // process['stdin']['setEncoding']('utf8'); - // } - },shutdown:function () { - // https://github.com/kripken/emscripten/pull/1555 - // if (ENVIRONMENT_IS_NODE) { - // // inolen: any idea as to why node -e 'process.stdin.read()' wouldn't exit immediately (with process.stdin being a tty)? - // // isaacs: because now it's reading from the stream, you've expressed interest in it, so that read() kicks off a _read() which creates a ReadReq operation - // // inolen: I thought read() in that case was a synchronous operation that just grabbed some amount of buffered data if it exists? - // // isaacs: it is. but it also triggers a _read() call, which calls readStart() on the handle - // // isaacs: do process.stdin.pause() and i'd think it'd probably close the pending call - // process['stdin']['pause'](); - // } - },register:function (dev, ops) { - TTY.ttys[dev] = { input: [], output: [], ops: ops }; - FS.registerDevice(dev, TTY.stream_ops); - },stream_ops:{open:function (stream) { - var tty = TTY.ttys[stream.node.rdev]; - if (!tty) { - throw new FS.ErrnoError(ERRNO_CODES.ENODEV); - } - stream.tty = tty; - stream.seekable = false; - },close:function (stream) { - // flush any pending line data - stream.tty.ops.flush(stream.tty); - },flush:function (stream) { - stream.tty.ops.flush(stream.tty); - },read:function (stream, buffer, offset, length, pos /* ignored */) { - if (!stream.tty || !stream.tty.ops.get_char) { - throw new FS.ErrnoError(ERRNO_CODES.ENXIO); - } - var bytesRead = 0; - for (var i = 0; i < length; i++) { - var result; - try { - result = stream.tty.ops.get_char(stream.tty); - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES.EIO); - } - if (result === undefined && bytesRead === 0) { - throw new FS.ErrnoError(ERRNO_CODES.EAGAIN); - } - if (result === null || result === undefined) break; - bytesRead++; - buffer[offset+i] = result; - } - if (bytesRead) { - stream.node.timestamp = Date.now(); - } - return bytesRead; - },write:function (stream, buffer, offset, length, pos) { - if (!stream.tty || !stream.tty.ops.put_char) { - throw new FS.ErrnoError(ERRNO_CODES.ENXIO); - } - for (var i = 0; i < length; i++) { - try { - stream.tty.ops.put_char(stream.tty, buffer[offset+i]); - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES.EIO); - } - } - if (length) { - stream.node.timestamp = Date.now(); - } - return i; - }},default_tty_ops:{get_char:function (tty) { - if (!tty.input.length) { - var result = null; - if (ENVIRONMENT_IS_NODE) { - // we will read data by chunks of BUFSIZE - var BUFSIZE = 256; - var buf = new Buffer(BUFSIZE); - var bytesRead = 0; - - var fd = process.stdin.fd; - // Linux and Mac cannot use process.stdin.fd (which isn't set up as sync) - var usingDevice = false; - try { - fd = fs.openSync('/dev/stdin', 'r'); - usingDevice = true; - } catch (e) {} - - bytesRead = fs.readSync(fd, buf, 0, BUFSIZE, null); - - if (usingDevice) { fs.closeSync(fd); } - if (bytesRead > 0) { - result = buf.slice(0, bytesRead).toString('utf-8'); - } else { - result = null; - } - - } else if (typeof window != 'undefined' && - typeof window.prompt == 'function') { - // Browser. - result = window.prompt('Input: '); // returns null on cancel - if (result !== null) { - result += '\n'; - } - } else if (typeof readline == 'function') { - // Command line. - result = readline(); - if (result !== null) { - result += '\n'; - } - } - if (!result) { - return null; - } - tty.input = intArrayFromString(result, true); - } - return tty.input.shift(); - },put_char:function (tty, val) { - if (val === null || val === 10) { - Module['print'](UTF8ArrayToString(tty.output, 0)); - tty.output = []; - } else { - if (val != 0) tty.output.push(val); // val == 0 would cut text output off in the middle. - } - },flush:function (tty) { - if (tty.output && tty.output.length > 0) { - Module['print'](UTF8ArrayToString(tty.output, 0)); - tty.output = []; - } - }},default_tty1_ops:{put_char:function (tty, val) { - if (val === null || val === 10) { - Module['printErr'](UTF8ArrayToString(tty.output, 0)); - tty.output = []; - } else { - if (val != 0) tty.output.push(val); - } - },flush:function (tty) { - if (tty.output && tty.output.length > 0) { - Module['printErr'](UTF8ArrayToString(tty.output, 0)); - tty.output = []; - } - }}}; - - var MEMFS={ops_table:null,mount:function (mount) { - return MEMFS.createNode(null, '/', 16384 | 511 /* 0777 */, 0); - },createNode:function (parent, name, mode, dev) { - if (FS.isBlkdev(mode) || FS.isFIFO(mode)) { - // no supported - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - if (!MEMFS.ops_table) { - MEMFS.ops_table = { - dir: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr, - lookup: MEMFS.node_ops.lookup, - mknod: MEMFS.node_ops.mknod, - rename: MEMFS.node_ops.rename, - unlink: MEMFS.node_ops.unlink, - rmdir: MEMFS.node_ops.rmdir, - readdir: MEMFS.node_ops.readdir, - symlink: MEMFS.node_ops.symlink - }, - stream: { - llseek: MEMFS.stream_ops.llseek - } - }, - file: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr - }, - stream: { - llseek: MEMFS.stream_ops.llseek, - read: MEMFS.stream_ops.read, - write: MEMFS.stream_ops.write, - allocate: MEMFS.stream_ops.allocate, - mmap: MEMFS.stream_ops.mmap, - msync: MEMFS.stream_ops.msync - } - }, - link: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr, - readlink: MEMFS.node_ops.readlink - }, - stream: {} - }, - chrdev: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr - }, - stream: FS.chrdev_stream_ops - } - }; - } - var node = FS.createNode(parent, name, mode, dev); - if (FS.isDir(node.mode)) { - node.node_ops = MEMFS.ops_table.dir.node; - node.stream_ops = MEMFS.ops_table.dir.stream; - node.contents = {}; - } else if (FS.isFile(node.mode)) { - node.node_ops = MEMFS.ops_table.file.node; - node.stream_ops = MEMFS.ops_table.file.stream; - node.usedBytes = 0; // The actual number of bytes used in the typed array, as opposed to contents.buffer.byteLength which gives the whole capacity. - // When the byte data of the file is populated, this will point to either a typed array, or a normal JS array. Typed arrays are preferred - // for performance, and used by default. However, typed arrays are not resizable like normal JS arrays are, so there is a small disk size - // penalty involved for appending file writes that continuously grow a file similar to std::vector capacity vs used -scheme. - node.contents = null; - } else if (FS.isLink(node.mode)) { - node.node_ops = MEMFS.ops_table.link.node; - node.stream_ops = MEMFS.ops_table.link.stream; - } else if (FS.isChrdev(node.mode)) { - node.node_ops = MEMFS.ops_table.chrdev.node; - node.stream_ops = MEMFS.ops_table.chrdev.stream; - } - node.timestamp = Date.now(); - // add the new node to the parent - if (parent) { - parent.contents[name] = node; - } - return node; - },getFileDataAsRegularArray:function (node) { - if (node.contents && node.contents.subarray) { - var arr = []; - for (var i = 0; i < node.usedBytes; ++i) arr.push(node.contents[i]); - return arr; // Returns a copy of the original data. - } - return node.contents; // No-op, the file contents are already in a JS array. Return as-is. - },getFileDataAsTypedArray:function (node) { - if (!node.contents) return new Uint8Array; - if (node.contents.subarray) return node.contents.subarray(0, node.usedBytes); // Make sure to not return excess unused bytes. - return new Uint8Array(node.contents); - },expandFileStorage:function (node, newCapacity) { - // If we are asked to expand the size of a file that already exists, revert to using a standard JS array to store the file - // instead of a typed array. This makes resizing the array more flexible because we can just .push() elements at the back to - // increase the size. - if (node.contents && node.contents.subarray && newCapacity > node.contents.length) { - node.contents = MEMFS.getFileDataAsRegularArray(node); - node.usedBytes = node.contents.length; // We might be writing to a lazy-loaded file which had overridden this property, so force-reset it. - } - - if (!node.contents || node.contents.subarray) { // Keep using a typed array if creating a new storage, or if old one was a typed array as well. - var prevCapacity = node.contents ? node.contents.buffer.byteLength : 0; - if (prevCapacity >= newCapacity) return; // No need to expand, the storage was already large enough. - // Don't expand strictly to the given requested limit if it's only a very small increase, but instead geometrically grow capacity. - // For small filesizes (<1MB), perform size*2 geometric increase, but for large sizes, do a much more conservative size*1.125 increase to - // avoid overshooting the allocation cap by a very large margin. - var CAPACITY_DOUBLING_MAX = 1024 * 1024; - newCapacity = Math.max(newCapacity, (prevCapacity * (prevCapacity < CAPACITY_DOUBLING_MAX ? 2.0 : 1.125)) | 0); - if (prevCapacity != 0) newCapacity = Math.max(newCapacity, 256); // At minimum allocate 256b for each file when expanding. - var oldContents = node.contents; - node.contents = new Uint8Array(newCapacity); // Allocate new storage. - if (node.usedBytes > 0) node.contents.set(oldContents.subarray(0, node.usedBytes), 0); // Copy old data over to the new storage. - return; - } - // Not using a typed array to back the file storage. Use a standard JS array instead. - if (!node.contents && newCapacity > 0) node.contents = []; - while (node.contents.length < newCapacity) node.contents.push(0); - },resizeFileStorage:function (node, newSize) { - if (node.usedBytes == newSize) return; - if (newSize == 0) { - node.contents = null; // Fully decommit when requesting a resize to zero. - node.usedBytes = 0; - return; - } - if (!node.contents || node.contents.subarray) { // Resize a typed array if that is being used as the backing store. - var oldContents = node.contents; - node.contents = new Uint8Array(new ArrayBuffer(newSize)); // Allocate new storage. - if (oldContents) { - node.contents.set(oldContents.subarray(0, Math.min(newSize, node.usedBytes))); // Copy old data over to the new storage. - } - node.usedBytes = newSize; - return; - } - // Backing with a JS array. - if (!node.contents) node.contents = []; - if (node.contents.length > newSize) node.contents.length = newSize; - else while (node.contents.length < newSize) node.contents.push(0); - node.usedBytes = newSize; - },node_ops:{getattr:function (node) { - var attr = {}; - // device numbers reuse inode numbers. - attr.dev = FS.isChrdev(node.mode) ? node.id : 1; - attr.ino = node.id; - attr.mode = node.mode; - attr.nlink = 1; - attr.uid = 0; - attr.gid = 0; - attr.rdev = node.rdev; - if (FS.isDir(node.mode)) { - attr.size = 4096; - } else if (FS.isFile(node.mode)) { - attr.size = node.usedBytes; - } else if (FS.isLink(node.mode)) { - attr.size = node.link.length; - } else { - attr.size = 0; - } - attr.atime = new Date(node.timestamp); - attr.mtime = new Date(node.timestamp); - attr.ctime = new Date(node.timestamp); - // NOTE: In our implementation, st_blocks = Math.ceil(st_size/st_blksize), - // but this is not required by the standard. - attr.blksize = 4096; - attr.blocks = Math.ceil(attr.size / attr.blksize); - return attr; - },setattr:function (node, attr) { - if (attr.mode !== undefined) { - node.mode = attr.mode; - } - if (attr.timestamp !== undefined) { - node.timestamp = attr.timestamp; - } - if (attr.size !== undefined) { - MEMFS.resizeFileStorage(node, attr.size); - } - },lookup:function (parent, name) { - throw FS.genericErrors[ERRNO_CODES.ENOENT]; - },mknod:function (parent, name, mode, dev) { - return MEMFS.createNode(parent, name, mode, dev); - },rename:function (old_node, new_dir, new_name) { - // if we're overwriting a directory at new_name, make sure it's empty. - if (FS.isDir(old_node.mode)) { - var new_node; - try { - new_node = FS.lookupNode(new_dir, new_name); - } catch (e) { - } - if (new_node) { - for (var i in new_node.contents) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTEMPTY); - } - } - } - // do the internal rewiring - delete old_node.parent.contents[old_node.name]; - old_node.name = new_name; - new_dir.contents[new_name] = old_node; - old_node.parent = new_dir; - },unlink:function (parent, name) { - delete parent.contents[name]; - },rmdir:function (parent, name) { - var node = FS.lookupNode(parent, name); - for (var i in node.contents) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTEMPTY); - } - delete parent.contents[name]; - },readdir:function (node) { - var entries = ['.', '..'] - for (var key in node.contents) { - if (!node.contents.hasOwnProperty(key)) { - continue; - } - entries.push(key); - } - return entries; - },symlink:function (parent, newname, oldpath) { - var node = MEMFS.createNode(parent, newname, 511 /* 0777 */ | 40960, 0); - node.link = oldpath; - return node; - },readlink:function (node) { - if (!FS.isLink(node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - return node.link; - }},stream_ops:{read:function (stream, buffer, offset, length, position) { - var contents = stream.node.contents; - if (position >= stream.node.usedBytes) return 0; - var size = Math.min(stream.node.usedBytes - position, length); - assert(size >= 0); - if (size > 8 && contents.subarray) { // non-trivial, and typed array - buffer.set(contents.subarray(position, position + size), offset); - } else { - for (var i = 0; i < size; i++) buffer[offset + i] = contents[position + i]; - } - return size; - },write:function (stream, buffer, offset, length, position, canOwn) { - if (!length) return 0; - var node = stream.node; - node.timestamp = Date.now(); - - if (buffer.subarray && (!node.contents || node.contents.subarray)) { // This write is from a typed array to a typed array? - if (canOwn) { // Can we just reuse the buffer we are given? - node.contents = buffer.subarray(offset, offset + length); - node.usedBytes = length; - return length; - } else if (node.usedBytes === 0 && position === 0) { // If this is a simple first write to an empty file, do a fast set since we don't need to care about old data. - node.contents = new Uint8Array(buffer.subarray(offset, offset + length)); - node.usedBytes = length; - return length; - } else if (position + length <= node.usedBytes) { // Writing to an already allocated and used subrange of the file? - node.contents.set(buffer.subarray(offset, offset + length), position); - return length; - } - } - - // Appending to an existing file and we need to reallocate, or source data did not come as a typed array. - MEMFS.expandFileStorage(node, position+length); - if (node.contents.subarray && buffer.subarray) node.contents.set(buffer.subarray(offset, offset + length), position); // Use typed array write if available. - else { - for (var i = 0; i < length; i++) { - node.contents[position + i] = buffer[offset + i]; // Or fall back to manual write if not. - } - } - node.usedBytes = Math.max(node.usedBytes, position+length); - return length; - },llseek:function (stream, offset, whence) { - var position = offset; - if (whence === 1) { // SEEK_CUR. - position += stream.position; - } else if (whence === 2) { // SEEK_END. - if (FS.isFile(stream.node.mode)) { - position += stream.node.usedBytes; - } - } - if (position < 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - return position; - },allocate:function (stream, offset, length) { - MEMFS.expandFileStorage(stream.node, offset + length); - stream.node.usedBytes = Math.max(stream.node.usedBytes, offset + length); - },mmap:function (stream, buffer, offset, length, position, prot, flags) { - if (!FS.isFile(stream.node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.ENODEV); - } - var ptr; - var allocated; - var contents = stream.node.contents; - // Only make a new copy when MAP_PRIVATE is specified. - if ( !(flags & 2) && - (contents.buffer === buffer || contents.buffer === buffer.buffer) ) { - // We can't emulate MAP_SHARED when the file is not backed by the buffer - // we're mapping to (e.g. the HEAP buffer). - allocated = false; - ptr = contents.byteOffset; - } else { - // Try to avoid unnecessary slices. - if (position > 0 || position + length < stream.node.usedBytes) { - if (contents.subarray) { - contents = contents.subarray(position, position + length); - } else { - contents = Array.prototype.slice.call(contents, position, position + length); - } - } - allocated = true; - ptr = _malloc(length); - if (!ptr) { - throw new FS.ErrnoError(ERRNO_CODES.ENOMEM); - } - buffer.set(contents, ptr); - } - return { ptr: ptr, allocated: allocated }; - },msync:function (stream, buffer, offset, length, mmapFlags) { - if (!FS.isFile(stream.node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.ENODEV); - } - if (mmapFlags & 2) { - // MAP_PRIVATE calls need not to be synced back to underlying fs - return 0; - } - - var bytesWritten = MEMFS.stream_ops.write(stream, buffer, 0, length, offset, false); - // should we check if bytesWritten and length are the same? - return 0; - }}}; - - var IDBFS={dbs:{},indexedDB:function () { - if (typeof indexedDB !== 'undefined') return indexedDB; - var ret = null; - if (typeof window === 'object') ret = window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB; - assert(ret, 'IDBFS used, but indexedDB not supported'); - return ret; - },DB_VERSION:21,DB_STORE_NAME:"FILE_DATA",mount:function (mount) { - // reuse all of the core MEMFS functionality - return MEMFS.mount.apply(null, arguments); - },syncfs:function (mount, populate, callback) { - IDBFS.getLocalSet(mount, function(err, local) { - if (err) return callback(err); - - IDBFS.getRemoteSet(mount, function(err, remote) { - if (err) return callback(err); - - var src = populate ? remote : local; - var dst = populate ? local : remote; - - IDBFS.reconcile(src, dst, callback); - }); - }); - },getDB:function (name, callback) { - // check the cache first - var db = IDBFS.dbs[name]; - if (db) { - return callback(null, db); - } - - var req; - try { - req = IDBFS.indexedDB().open(name, IDBFS.DB_VERSION); - } catch (e) { - return callback(e); - } - req.onupgradeneeded = function(e) { - var db = e.target.result; - var transaction = e.target.transaction; - - var fileStore; - - if (db.objectStoreNames.contains(IDBFS.DB_STORE_NAME)) { - fileStore = transaction.objectStore(IDBFS.DB_STORE_NAME); - } else { - fileStore = db.createObjectStore(IDBFS.DB_STORE_NAME); - } - - if (!fileStore.indexNames.contains('timestamp')) { - fileStore.createIndex('timestamp', 'timestamp', { unique: false }); - } - }; - req.onsuccess = function() { - db = req.result; - - // add to the cache - IDBFS.dbs[name] = db; - callback(null, db); - }; - req.onerror = function(e) { - callback(this.error); - e.preventDefault(); - }; - },getLocalSet:function (mount, callback) { - var entries = {}; - - function isRealDir(p) { - return p !== '.' && p !== '..'; - }; - function toAbsolute(root) { - return function(p) { - return PATH.join2(root, p); - } - }; - - var check = FS.readdir(mount.mountpoint).filter(isRealDir).map(toAbsolute(mount.mountpoint)); - - while (check.length) { - var path = check.pop(); - var stat; - - try { - stat = FS.stat(path); - } catch (e) { - return callback(e); - } - - if (FS.isDir(stat.mode)) { - check.push.apply(check, FS.readdir(path).filter(isRealDir).map(toAbsolute(path))); - } - - entries[path] = { timestamp: stat.mtime }; - } - - return callback(null, { type: 'local', entries: entries }); - },getRemoteSet:function (mount, callback) { - var entries = {}; - - IDBFS.getDB(mount.mountpoint, function(err, db) { - if (err) return callback(err); - - var transaction = db.transaction([IDBFS.DB_STORE_NAME], 'readonly'); - transaction.onerror = function(e) { - callback(this.error); - e.preventDefault(); - }; - - var store = transaction.objectStore(IDBFS.DB_STORE_NAME); - var index = store.index('timestamp'); - - index.openKeyCursor().onsuccess = function(event) { - var cursor = event.target.result; - - if (!cursor) { - return callback(null, { type: 'remote', db: db, entries: entries }); - } - - entries[cursor.primaryKey] = { timestamp: cursor.key }; - - cursor.continue(); - }; - }); - },loadLocalEntry:function (path, callback) { - var stat, node; - - try { - var lookup = FS.lookupPath(path); - node = lookup.node; - stat = FS.stat(path); - } catch (e) { - return callback(e); - } - - if (FS.isDir(stat.mode)) { - return callback(null, { timestamp: stat.mtime, mode: stat.mode }); - } else if (FS.isFile(stat.mode)) { - // Performance consideration: storing a normal JavaScript array to a IndexedDB is much slower than storing a typed array. - // Therefore always convert the file contents to a typed array first before writing the data to IndexedDB. - node.contents = MEMFS.getFileDataAsTypedArray(node); - return callback(null, { timestamp: stat.mtime, mode: stat.mode, contents: node.contents }); - } else { - return callback(new Error('node type not supported')); - } - },storeLocalEntry:function (path, entry, callback) { - try { - if (FS.isDir(entry.mode)) { - FS.mkdir(path, entry.mode); - } else if (FS.isFile(entry.mode)) { - FS.writeFile(path, entry.contents, { encoding: 'binary', canOwn: true }); - } else { - return callback(new Error('node type not supported')); - } - - FS.chmod(path, entry.mode); - FS.utime(path, entry.timestamp, entry.timestamp); - } catch (e) { - return callback(e); - } - - callback(null); - },removeLocalEntry:function (path, callback) { - try { - var lookup = FS.lookupPath(path); - var stat = FS.stat(path); - - if (FS.isDir(stat.mode)) { - FS.rmdir(path); - } else if (FS.isFile(stat.mode)) { - FS.unlink(path); - } - } catch (e) { - return callback(e); - } - - callback(null); - },loadRemoteEntry:function (store, path, callback) { - var req = store.get(path); - req.onsuccess = function(event) { callback(null, event.target.result); }; - req.onerror = function(e) { - callback(this.error); - e.preventDefault(); - }; - },storeRemoteEntry:function (store, path, entry, callback) { - var req = store.put(entry, path); - req.onsuccess = function() { callback(null); }; - req.onerror = function(e) { - callback(this.error); - e.preventDefault(); - }; - },removeRemoteEntry:function (store, path, callback) { - var req = store.delete(path); - req.onsuccess = function() { callback(null); }; - req.onerror = function(e) { - callback(this.error); - e.preventDefault(); - }; - },reconcile:function (src, dst, callback) { - var total = 0; - - var create = []; - Object.keys(src.entries).forEach(function (key) { - var e = src.entries[key]; - var e2 = dst.entries[key]; - if (!e2 || e.timestamp > e2.timestamp) { - create.push(key); - total++; - } - }); - - var remove = []; - Object.keys(dst.entries).forEach(function (key) { - var e = dst.entries[key]; - var e2 = src.entries[key]; - if (!e2) { - remove.push(key); - total++; - } - }); - - if (!total) { - return callback(null); - } - - var errored = false; - var completed = 0; - var db = src.type === 'remote' ? src.db : dst.db; - var transaction = db.transaction([IDBFS.DB_STORE_NAME], 'readwrite'); - var store = transaction.objectStore(IDBFS.DB_STORE_NAME); - - function done(err) { - if (err) { - if (!done.errored) { - done.errored = true; - return callback(err); - } - return; - } - if (++completed >= total) { - return callback(null); - } - }; - - transaction.onerror = function(e) { - done(this.error); - e.preventDefault(); - }; - - // sort paths in ascending order so directory entries are created - // before the files inside them - create.sort().forEach(function (path) { - if (dst.type === 'local') { - IDBFS.loadRemoteEntry(store, path, function (err, entry) { - if (err) return done(err); - IDBFS.storeLocalEntry(path, entry, done); - }); - } else { - IDBFS.loadLocalEntry(path, function (err, entry) { - if (err) return done(err); - IDBFS.storeRemoteEntry(store, path, entry, done); - }); - } - }); - // sort paths in descending order so files are deleted before their - // parent directories - remove.sort().reverse().forEach(function(path) { - if (dst.type === 'local') { - IDBFS.removeLocalEntry(path, done); + function _emscripten_memcpy_big(dest, src, num) { + HEAPU8.set(HEAPU8.subarray(src, src+num), dest); + return dest; + } + Module["_memcpy"] = _memcpy; + Module["_memmove"] = _memmove; + + + function ___syscall140(which, varargs) {SYSCALLS.varargs = varargs; + try { + // llseek + var stream = SYSCALLS.getStreamFromFD(), offset_high = SYSCALLS.get(), offset_low = SYSCALLS.get(), result = SYSCALLS.get(), whence = SYSCALLS.get(); + // NOTE: offset_high is unused - Emscripten's off_t is 32-bit + var offset = offset_low; + FS.llseek(stream, offset, whence); + HEAP32[((result)>>2)]=stream.position; + if (stream.getdents && offset === 0 && whence === 0) stream.getdents = null; // reset readdir state + return 0; + } catch (e) { + if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); + return -e.errno; + } + } + + function ___syscall146(which, varargs) {SYSCALLS.varargs = varargs; + try { + // writev + // hack to support printf in NO_FILESYSTEM + var stream = SYSCALLS.get(), iov = SYSCALLS.get(), iovcnt = SYSCALLS.get(); + var ret = 0; + if (!___syscall146.buffer) { + ___syscall146.buffers = [null, [], []]; // 1 => stdout, 2 => stderr + ___syscall146.printChar = function(stream, curr) { + var buffer = ___syscall146.buffers[stream]; + assert(buffer); + if (curr === 0 || curr === 10) { + (stream === 1 ? Module['print'] : Module['printErr'])(UTF8ArrayToString(buffer, 0)); + buffer.length = 0; } else { - IDBFS.removeRemoteEntry(store, path, done); - } - }); - }}; - - var NODEFS={isWindows:false,staticInit:function () { - NODEFS.isWindows = !!process.platform.match(/^win/); - },mount:function (mount) { - assert(ENVIRONMENT_IS_NODE); - return NODEFS.createNode(null, '/', NODEFS.getMode(mount.opts.root), 0); - },createNode:function (parent, name, mode, dev) { - if (!FS.isDir(mode) && !FS.isFile(mode) && !FS.isLink(mode)) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - var node = FS.createNode(parent, name, mode); - node.node_ops = NODEFS.node_ops; - node.stream_ops = NODEFS.stream_ops; - return node; - },getMode:function (path) { - var stat; - try { - stat = fs.lstatSync(path); - if (NODEFS.isWindows) { - // On Windows, directories return permission bits 'rw-rw-rw-', even though they have 'rwxrwxrwx', so - // propagate write bits to execute bits. - stat.mode = stat.mode | ((stat.mode & 146) >> 1); - } - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - return stat.mode; - },realPath:function (node) { - var parts = []; - while (node.parent !== node) { - parts.push(node.name); - node = node.parent; - } - parts.push(node.mount.opts.root); - parts.reverse(); - return PATH.join.apply(null, parts); - },flagsToPermissionStringMap:{0:"r",1:"r+",2:"r+",64:"r",65:"r+",66:"r+",129:"rx+",193:"rx+",514:"w+",577:"w",578:"w+",705:"wx",706:"wx+",1024:"a",1025:"a",1026:"a+",1089:"a",1090:"a+",1153:"ax",1154:"ax+",1217:"ax",1218:"ax+",4096:"rs",4098:"rs+"},flagsToPermissionString:function (flags) { - flags &= ~0100000 /*O_LARGEFILE*/; // Ignore this flag from musl, otherwise node.js fails to open the file. - if (flags in NODEFS.flagsToPermissionStringMap) { - return NODEFS.flagsToPermissionStringMap[flags]; - } else { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - },node_ops:{getattr:function (node) { - var path = NODEFS.realPath(node); - var stat; - try { - stat = fs.lstatSync(path); - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - // node.js v0.10.20 doesn't report blksize and blocks on Windows. Fake them with default blksize of 4096. - // See http://support.microsoft.com/kb/140365 - if (NODEFS.isWindows && !stat.blksize) { - stat.blksize = 4096; - } - if (NODEFS.isWindows && !stat.blocks) { - stat.blocks = (stat.size+stat.blksize-1)/stat.blksize|0; - } - return { - dev: stat.dev, - ino: stat.ino, - mode: stat.mode, - nlink: stat.nlink, - uid: stat.uid, - gid: stat.gid, - rdev: stat.rdev, - size: stat.size, - atime: stat.atime, - mtime: stat.mtime, - ctime: stat.ctime, - blksize: stat.blksize, - blocks: stat.blocks - }; - },setattr:function (node, attr) { - var path = NODEFS.realPath(node); - try { - if (attr.mode !== undefined) { - fs.chmodSync(path, attr.mode); - // update the common node structure mode as well - node.mode = attr.mode; - } - if (attr.timestamp !== undefined) { - var date = new Date(attr.timestamp); - fs.utimesSync(path, date, date); - } - if (attr.size !== undefined) { - fs.truncateSync(path, attr.size); - } - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },lookup:function (parent, name) { - var path = PATH.join2(NODEFS.realPath(parent), name); - var mode = NODEFS.getMode(path); - return NODEFS.createNode(parent, name, mode); - },mknod:function (parent, name, mode, dev) { - var node = NODEFS.createNode(parent, name, mode, dev); - // create the backing node for this in the fs root as well - var path = NODEFS.realPath(node); - try { - if (FS.isDir(node.mode)) { - fs.mkdirSync(path, node.mode); - } else { - fs.writeFileSync(path, '', { mode: node.mode }); - } - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - return node; - },rename:function (oldNode, newDir, newName) { - var oldPath = NODEFS.realPath(oldNode); - var newPath = PATH.join2(NODEFS.realPath(newDir), newName); - try { - fs.renameSync(oldPath, newPath); - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },unlink:function (parent, name) { - var path = PATH.join2(NODEFS.realPath(parent), name); - try { - fs.unlinkSync(path); - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },rmdir:function (parent, name) { - var path = PATH.join2(NODEFS.realPath(parent), name); - try { - fs.rmdirSync(path); - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },readdir:function (node) { - var path = NODEFS.realPath(node); - try { - return fs.readdirSync(path); - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },symlink:function (parent, newName, oldPath) { - var newPath = PATH.join2(NODEFS.realPath(parent), newName); - try { - fs.symlinkSync(oldPath, newPath); - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },readlink:function (node) { - var path = NODEFS.realPath(node); - try { - path = fs.readlinkSync(path); - path = NODEJS_PATH.relative(NODEJS_PATH.resolve(node.mount.opts.root), path); - return path; - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - }},stream_ops:{open:function (stream) { - var path = NODEFS.realPath(stream.node); - try { - if (FS.isFile(stream.node.mode)) { - stream.nfd = fs.openSync(path, NODEFS.flagsToPermissionString(stream.flags)); - } - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },close:function (stream) { - try { - if (FS.isFile(stream.node.mode) && stream.nfd) { - fs.closeSync(stream.nfd); - } - } catch (e) { - if (!e.code) throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - },read:function (stream, buffer, offset, length, position) { - if (length === 0) return 0; // node errors on 0 length reads - // FIXME this is terrible. - var nbuffer = new Buffer(length); - var res; - try { - res = fs.readSync(stream.nfd, nbuffer, 0, length, position); - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - if (res > 0) { - for (var i = 0; i < res; i++) { - buffer[offset + i] = nbuffer[i]; - } - } - return res; - },write:function (stream, buffer, offset, length, position) { - // FIXME this is terrible. - var nbuffer = new Buffer(buffer.subarray(offset, offset + length)); - var res; - try { - res = fs.writeSync(stream.nfd, nbuffer, 0, length, position); - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - return res; - },llseek:function (stream, offset, whence) { - var position = offset; - if (whence === 1) { // SEEK_CUR. - position += stream.position; - } else if (whence === 2) { // SEEK_END. - if (FS.isFile(stream.node.mode)) { - try { - var stat = fs.fstatSync(stream.nfd); - position += stat.size; - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - } - } - - if (position < 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - - return position; - }}}; - - var WORKERFS={DIR_MODE:16895,FILE_MODE:33279,reader:null,mount:function (mount) { - assert(ENVIRONMENT_IS_WORKER); - if (!WORKERFS.reader) WORKERFS.reader = new FileReaderSync(); - var root = WORKERFS.createNode(null, '/', WORKERFS.DIR_MODE, 0); - var createdParents = {}; - function ensureParent(path) { - // return the parent node, creating subdirs as necessary - var parts = path.split('/'); - var parent = root; - for (var i = 0; i < parts.length-1; i++) { - var curr = parts.slice(0, i+1).join('/'); - if (!createdParents[curr]) { - createdParents[curr] = WORKERFS.createNode(parent, curr, WORKERFS.DIR_MODE, 0); - } - parent = createdParents[curr]; - } - return parent; - } - function base(path) { - var parts = path.split('/'); - return parts[parts.length-1]; - } - // We also accept FileList here, by using Array.prototype - Array.prototype.forEach.call(mount.opts["files"] || [], function(file) { - WORKERFS.createNode(ensureParent(file.name), base(file.name), WORKERFS.FILE_MODE, 0, file, file.lastModifiedDate); - }); - (mount.opts["blobs"] || []).forEach(function(obj) { - WORKERFS.createNode(ensureParent(obj["name"]), base(obj["name"]), WORKERFS.FILE_MODE, 0, obj["data"]); - }); - (mount.opts["packages"] || []).forEach(function(pack) { - pack['metadata'].files.forEach(function(file) { - var name = file.filename.substr(1); // remove initial slash - WORKERFS.createNode(ensureParent(name), base(name), WORKERFS.FILE_MODE, 0, pack['blob'].slice(file.start, file.end)); - }); - }); - return root; - },createNode:function (parent, name, mode, dev, contents, mtime) { - var node = FS.createNode(parent, name, mode); - node.mode = mode; - node.node_ops = WORKERFS.node_ops; - node.stream_ops = WORKERFS.stream_ops; - node.timestamp = (mtime || new Date).getTime(); - assert(WORKERFS.FILE_MODE !== WORKERFS.DIR_MODE); - if (mode === WORKERFS.FILE_MODE) { - node.size = contents.size; - node.contents = contents; - } else { - node.size = 4096; - node.contents = {}; - } - if (parent) { - parent.contents[name] = node; - } - return node; - },node_ops:{getattr:function (node) { - return { - dev: 1, - ino: undefined, - mode: node.mode, - nlink: 1, - uid: 0, - gid: 0, - rdev: undefined, - size: node.size, - atime: new Date(node.timestamp), - mtime: new Date(node.timestamp), - ctime: new Date(node.timestamp), - blksize: 4096, - blocks: Math.ceil(node.size / 4096), - }; - },setattr:function (node, attr) { - if (attr.mode !== undefined) { - node.mode = attr.mode; - } - if (attr.timestamp !== undefined) { - node.timestamp = attr.timestamp; - } - },lookup:function (parent, name) { - throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - },mknod:function (parent, name, mode, dev) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - },rename:function (oldNode, newDir, newName) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - },unlink:function (parent, name) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - },rmdir:function (parent, name) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - },readdir:function (node) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - },symlink:function (parent, newName, oldPath) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - },readlink:function (node) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - }},stream_ops:{read:function (stream, buffer, offset, length, position) { - if (position >= stream.node.size) return 0; - var chunk = stream.node.contents.slice(position, position + length); - var ab = WORKERFS.reader.readAsArrayBuffer(chunk); - buffer.set(new Uint8Array(ab), offset); - return chunk.size; - },write:function (stream, buffer, offset, length, position) { - throw new FS.ErrnoError(ERRNO_CODES.EIO); - },llseek:function (stream, offset, whence) { - var position = offset; - if (whence === 1) { // SEEK_CUR. - position += stream.position; - } else if (whence === 2) { // SEEK_END. - if (FS.isFile(stream.node.mode)) { - position += stream.node.size; - } + buffer.push(curr); } - if (position < 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - return position; - }}}; - - var _stdin=allocate(1, "i32*", ALLOC_STATIC); - - var _stdout=allocate(1, "i32*", ALLOC_STATIC); - - var _stderr=allocate(1, "i32*", ALLOC_STATIC);var FS={root:null,mounts:[],devices:[null],streams:[],nextInode:1,nameTable:null,currentPath:"/",initialized:false,ignorePermissions:true,trackingDelegate:{},tracking:{openFlags:{READ:1,WRITE:2}},ErrnoError:null,genericErrors:{},filesystems:null,handleFSError:function (e) { - if (!(e instanceof FS.ErrnoError)) throw e + ' : ' + stackTrace(); - return ___setErrNo(e.errno); - },lookupPath:function (path, opts) { - path = PATH.resolve(FS.cwd(), path); - opts = opts || {}; - - if (!path) return { path: '', node: null }; - - var defaults = { - follow_mount: true, - recurse_count: 0 }; - for (var key in defaults) { - if (opts[key] === undefined) { - opts[key] = defaults[key]; - } - } - - if (opts.recurse_count > 8) { // max recursive lookup of 8 - throw new FS.ErrnoError(ERRNO_CODES.ELOOP); - } - - // split the path - var parts = PATH.normalizeArray(path.split('/').filter(function(p) { - return !!p; - }), false); - - // start at the root - var current = FS.root; - var current_path = '/'; - - for (var i = 0; i < parts.length; i++) { - var islast = (i === parts.length-1); - if (islast && opts.parent) { - // stop resolving - break; - } - - current = FS.lookupNode(current, parts[i]); - current_path = PATH.join2(current_path, parts[i]); - - // jump to the mount's root node if this is a mountpoint - if (FS.isMountpoint(current)) { - if (!islast || (islast && opts.follow_mount)) { - current = current.mounted.root; - } - } - - // by default, lookupPath will not follow a symlink if it is the final path component. - // setting opts.follow = true will override this behavior. - if (!islast || opts.follow) { - var count = 0; - while (FS.isLink(current.mode)) { - var link = FS.readlink(current_path); - current_path = PATH.resolve(PATH.dirname(current_path), link); - - var lookup = FS.lookupPath(current_path, { recurse_count: opts.recurse_count }); - current = lookup.node; - - if (count++ > 40) { // limit max consecutive symlinks to 40 (SYMLOOP_MAX). - throw new FS.ErrnoError(ERRNO_CODES.ELOOP); - } - } - } - } - - return { path: current_path, node: current }; - },getPath:function (node) { - var path; - while (true) { - if (FS.isRoot(node)) { - var mount = node.mount.mountpoint; - if (!path) return mount; - return mount[mount.length-1] !== '/' ? mount + '/' + path : mount + path; - } - path = path ? node.name + '/' + path : node.name; - node = node.parent; - } - },hashName:function (parentid, name) { - var hash = 0; - - - for (var i = 0; i < name.length; i++) { - hash = ((hash << 5) - hash + name.charCodeAt(i)) | 0; - } - return ((parentid + hash) >>> 0) % FS.nameTable.length; - },hashAddNode:function (node) { - var hash = FS.hashName(node.parent.id, node.name); - node.name_next = FS.nameTable[hash]; - FS.nameTable[hash] = node; - },hashRemoveNode:function (node) { - var hash = FS.hashName(node.parent.id, node.name); - if (FS.nameTable[hash] === node) { - FS.nameTable[hash] = node.name_next; - } else { - var current = FS.nameTable[hash]; - while (current) { - if (current.name_next === node) { - current.name_next = node.name_next; - break; - } - current = current.name_next; - } - } - },lookupNode:function (parent, name) { - var err = FS.mayLookup(parent); - if (err) { - throw new FS.ErrnoError(err, parent); - } - var hash = FS.hashName(parent.id, name); - for (var node = FS.nameTable[hash]; node; node = node.name_next) { - var nodeName = node.name; - if (node.parent.id === parent.id && nodeName === name) { - return node; - } - } - // if we failed to find it in the cache, call into the VFS - return FS.lookup(parent, name); - },createNode:function (parent, name, mode, rdev) { - if (!FS.FSNode) { - FS.FSNode = function(parent, name, mode, rdev) { - if (!parent) { - parent = this; // root node sets parent to itself - } - this.parent = parent; - this.mount = parent.mount; - this.mounted = null; - this.id = FS.nextInode++; - this.name = name; - this.mode = mode; - this.node_ops = {}; - this.stream_ops = {}; - this.rdev = rdev; - }; - - FS.FSNode.prototype = {}; - - // compatibility - var readMode = 292 | 73; - var writeMode = 146; - - // NOTE we must use Object.defineProperties instead of individual calls to - // Object.defineProperty in order to make closure compiler happy - Object.defineProperties(FS.FSNode.prototype, { - read: { - get: function() { return (this.mode & readMode) === readMode; }, - set: function(val) { val ? this.mode |= readMode : this.mode &= ~readMode; } - }, - write: { - get: function() { return (this.mode & writeMode) === writeMode; }, - set: function(val) { val ? this.mode |= writeMode : this.mode &= ~writeMode; } - }, - isFolder: { - get: function() { return FS.isDir(this.mode); } - }, - isDevice: { - get: function() { return FS.isChrdev(this.mode); } - } - }); - } - - var node = new FS.FSNode(parent, name, mode, rdev); - - FS.hashAddNode(node); - - return node; - },destroyNode:function (node) { - FS.hashRemoveNode(node); - },isRoot:function (node) { - return node === node.parent; - },isMountpoint:function (node) { - return !!node.mounted; - },isFile:function (mode) { - return (mode & 61440) === 32768; - },isDir:function (mode) { - return (mode & 61440) === 16384; - },isLink:function (mode) { - return (mode & 61440) === 40960; - },isChrdev:function (mode) { - return (mode & 61440) === 8192; - },isBlkdev:function (mode) { - return (mode & 61440) === 24576; - },isFIFO:function (mode) { - return (mode & 61440) === 4096; - },isSocket:function (mode) { - return (mode & 49152) === 49152; - },flagModes:{"r":0,"rs":1052672,"r+":2,"w":577,"wx":705,"xw":705,"w+":578,"wx+":706,"xw+":706,"a":1089,"ax":1217,"xa":1217,"a+":1090,"ax+":1218,"xa+":1218},modeStringToFlags:function (str) { - var flags = FS.flagModes[str]; - if (typeof flags === 'undefined') { - throw new Error('Unknown file open mode: ' + str); - } - return flags; - },flagsToPermissionString:function (flag) { - var perms = ['r', 'w', 'rw'][flag & 3]; - if ((flag & 512)) { - perms += 'w'; - } - return perms; - },nodePermissions:function (node, perms) { - if (FS.ignorePermissions) { - return 0; - } - // return 0 if any user, group or owner bits are set. - if (perms.indexOf('r') !== -1 && !(node.mode & 292)) { - return ERRNO_CODES.EACCES; - } else if (perms.indexOf('w') !== -1 && !(node.mode & 146)) { - return ERRNO_CODES.EACCES; - } else if (perms.indexOf('x') !== -1 && !(node.mode & 73)) { - return ERRNO_CODES.EACCES; - } - return 0; - },mayLookup:function (dir) { - var err = FS.nodePermissions(dir, 'x'); - if (err) return err; - if (!dir.node_ops.lookup) return ERRNO_CODES.EACCES; - return 0; - },mayCreate:function (dir, name) { - try { - var node = FS.lookupNode(dir, name); - return ERRNO_CODES.EEXIST; - } catch (e) { - } - return FS.nodePermissions(dir, 'wx'); - },mayDelete:function (dir, name, isdir) { - var node; - try { - node = FS.lookupNode(dir, name); - } catch (e) { - return e.errno; - } - var err = FS.nodePermissions(dir, 'wx'); - if (err) { - return err; + } + for (var i = 0; i < iovcnt; i++) { + var ptr = HEAP32[(((iov)+(i*8))>>2)]; + var len = HEAP32[(((iov)+(i*8 + 4))>>2)]; + for (var j = 0; j < len; j++) { + ___syscall146.printChar(stream, HEAPU8[ptr+j]); } - if (isdir) { - if (!FS.isDir(node.mode)) { - return ERRNO_CODES.ENOTDIR; - } - if (FS.isRoot(node) || FS.getPath(node) === FS.cwd()) { - return ERRNO_CODES.EBUSY; - } - } else { - if (FS.isDir(node.mode)) { - return ERRNO_CODES.EISDIR; - } - } - return 0; - },mayOpen:function (node, flags) { - if (!node) { - return ERRNO_CODES.ENOENT; - } - if (FS.isLink(node.mode)) { - return ERRNO_CODES.ELOOP; - } else if (FS.isDir(node.mode)) { - if ((flags & 2097155) !== 0 || // opening for write - (flags & 512)) { - return ERRNO_CODES.EISDIR; - } - } - return FS.nodePermissions(node, FS.flagsToPermissionString(flags)); - },MAX_OPEN_FDS:4096,nextfd:function (fd_start, fd_end) { - fd_start = fd_start || 0; - fd_end = fd_end || FS.MAX_OPEN_FDS; - for (var fd = fd_start; fd <= fd_end; fd++) { - if (!FS.streams[fd]) { - return fd; - } - } - throw new FS.ErrnoError(ERRNO_CODES.EMFILE); - },getStream:function (fd) { - return FS.streams[fd]; - },createStream:function (stream, fd_start, fd_end) { - if (!FS.FSStream) { - FS.FSStream = function(){}; - FS.FSStream.prototype = {}; - // compatibility - Object.defineProperties(FS.FSStream.prototype, { - object: { - get: function() { return this.node; }, - set: function(val) { this.node = val; } - }, - isRead: { - get: function() { return (this.flags & 2097155) !== 1; } - }, - isWrite: { - get: function() { return (this.flags & 2097155) !== 0; } - }, - isAppend: { - get: function() { return (this.flags & 1024); } - } - }); - } - // clone it, so we can return an instance of FSStream - var newStream = new FS.FSStream(); - for (var p in stream) { - newStream[p] = stream[p]; - } - stream = newStream; - var fd = FS.nextfd(fd_start, fd_end); - stream.fd = fd; - FS.streams[fd] = stream; - return stream; - },closeStream:function (fd) { - FS.streams[fd] = null; - },chrdev_stream_ops:{open:function (stream) { - var device = FS.getDevice(stream.node.rdev); - // override node's stream ops with the device's - stream.stream_ops = device.stream_ops; - // forward the open call - if (stream.stream_ops.open) { - stream.stream_ops.open(stream); - } - },llseek:function () { - throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); - }},major:function (dev) { - return ((dev) >> 8); - },minor:function (dev) { - return ((dev) & 0xff); - },makedev:function (ma, mi) { - return ((ma) << 8 | (mi)); - },registerDevice:function (dev, ops) { - FS.devices[dev] = { stream_ops: ops }; - },getDevice:function (dev) { - return FS.devices[dev]; - },getMounts:function (mount) { - var mounts = []; - var check = [mount]; - - while (check.length) { - var m = check.pop(); - - mounts.push(m); - - check.push.apply(check, m.mounts); - } - - return mounts; - },syncfs:function (populate, callback) { - if (typeof(populate) === 'function') { - callback = populate; - populate = false; - } - - var mounts = FS.getMounts(FS.root.mount); - var completed = 0; - - function done(err) { - if (err) { - if (!done.errored) { - done.errored = true; - return callback(err); - } - return; - } - if (++completed >= mounts.length) { - callback(null); - } - }; - - // sync all mounts - mounts.forEach(function (mount) { - if (!mount.type.syncfs) { - return done(null); - } - mount.type.syncfs(mount, populate, done); - }); - },mount:function (type, opts, mountpoint) { - var root = mountpoint === '/'; - var pseudo = !mountpoint; - var node; - - if (root && FS.root) { - throw new FS.ErrnoError(ERRNO_CODES.EBUSY); - } else if (!root && !pseudo) { - var lookup = FS.lookupPath(mountpoint, { follow_mount: false }); - - mountpoint = lookup.path; // use the absolute path - node = lookup.node; - - if (FS.isMountpoint(node)) { - throw new FS.ErrnoError(ERRNO_CODES.EBUSY); - } - - if (!FS.isDir(node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR); - } - } - - var mount = { - type: type, - opts: opts, - mountpoint: mountpoint, - mounts: [] - }; - - // create a root node for the fs - var mountRoot = type.mount(mount); - mountRoot.mount = mount; - mount.root = mountRoot; - - if (root) { - FS.root = mountRoot; - } else if (node) { - // set as a mountpoint - node.mounted = mount; - - // add the new mount to the current mount's children - if (node.mount) { - node.mount.mounts.push(mount); - } - } - - return mountRoot; - },unmount:function (mountpoint) { - var lookup = FS.lookupPath(mountpoint, { follow_mount: false }); - - if (!FS.isMountpoint(lookup.node)) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - - // destroy the nodes for this mount, and all its child mounts - var node = lookup.node; - var mount = node.mounted; - var mounts = FS.getMounts(mount); - - Object.keys(FS.nameTable).forEach(function (hash) { - var current = FS.nameTable[hash]; - - while (current) { - var next = current.name_next; - - if (mounts.indexOf(current.mount) !== -1) { - FS.destroyNode(current); - } - - current = next; - } - }); - - // no longer a mountpoint - node.mounted = null; - - // remove this mount from the child mounts - var idx = node.mount.mounts.indexOf(mount); - assert(idx !== -1); - node.mount.mounts.splice(idx, 1); - },lookup:function (parent, name) { - return parent.node_ops.lookup(parent, name); - },mknod:function (path, mode, dev) { - var lookup = FS.lookupPath(path, { parent: true }); - var parent = lookup.node; - var name = PATH.basename(path); - if (!name || name === '.' || name === '..') { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - var err = FS.mayCreate(parent, name); - if (err) { - throw new FS.ErrnoError(err); - } - if (!parent.node_ops.mknod) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - return parent.node_ops.mknod(parent, name, mode, dev); - },create:function (path, mode) { - mode = mode !== undefined ? mode : 438 /* 0666 */; - mode &= 4095; - mode |= 32768; - return FS.mknod(path, mode, 0); - },mkdir:function (path, mode) { - mode = mode !== undefined ? mode : 511 /* 0777 */; - mode &= 511 | 512; - mode |= 16384; - return FS.mknod(path, mode, 0); - },mkdev:function (path, mode, dev) { - if (typeof(dev) === 'undefined') { - dev = mode; - mode = 438 /* 0666 */; - } - mode |= 8192; - return FS.mknod(path, mode, dev); - },symlink:function (oldpath, newpath) { - if (!PATH.resolve(oldpath)) { - throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - } - var lookup = FS.lookupPath(newpath, { parent: true }); - var parent = lookup.node; - if (!parent) { - throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - } - var newname = PATH.basename(newpath); - var err = FS.mayCreate(parent, newname); - if (err) { - throw new FS.ErrnoError(err); - } - if (!parent.node_ops.symlink) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - return parent.node_ops.symlink(parent, newname, oldpath); - },rename:function (old_path, new_path) { - var old_dirname = PATH.dirname(old_path); - var new_dirname = PATH.dirname(new_path); - var old_name = PATH.basename(old_path); - var new_name = PATH.basename(new_path); - // parents must exist - var lookup, old_dir, new_dir; - try { - lookup = FS.lookupPath(old_path, { parent: true }); - old_dir = lookup.node; - lookup = FS.lookupPath(new_path, { parent: true }); - new_dir = lookup.node; - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES.EBUSY); - } - if (!old_dir || !new_dir) throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - // need to be part of the same mount - if (old_dir.mount !== new_dir.mount) { - throw new FS.ErrnoError(ERRNO_CODES.EXDEV); - } - // source must exist - var old_node = FS.lookupNode(old_dir, old_name); - // old path should not be an ancestor of the new path - var relative = PATH.relative(old_path, new_dirname); - if (relative.charAt(0) !== '.') { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - // new path should not be an ancestor of the old path - relative = PATH.relative(new_path, old_dirname); - if (relative.charAt(0) !== '.') { - throw new FS.ErrnoError(ERRNO_CODES.ENOTEMPTY); - } - // see if the new path already exists - var new_node; - try { - new_node = FS.lookupNode(new_dir, new_name); - } catch (e) { - // not fatal - } - // early out if nothing needs to change - if (old_node === new_node) { - return; - } - // we'll need to delete the old entry - var isdir = FS.isDir(old_node.mode); - var err = FS.mayDelete(old_dir, old_name, isdir); - if (err) { - throw new FS.ErrnoError(err); - } - // need delete permissions if we'll be overwriting. - // need create permissions if new doesn't already exist. - err = new_node ? - FS.mayDelete(new_dir, new_name, isdir) : - FS.mayCreate(new_dir, new_name); - if (err) { - throw new FS.ErrnoError(err); - } - if (!old_dir.node_ops.rename) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - if (FS.isMountpoint(old_node) || (new_node && FS.isMountpoint(new_node))) { - throw new FS.ErrnoError(ERRNO_CODES.EBUSY); - } - // if we are going to change the parent, check write permissions - if (new_dir !== old_dir) { - err = FS.nodePermissions(old_dir, 'w'); - if (err) { - throw new FS.ErrnoError(err); - } - } - try { - if (FS.trackingDelegate['willMovePath']) { - FS.trackingDelegate['willMovePath'](old_path, new_path); - } - } catch(e) { - console.log("FS.trackingDelegate['willMovePath']('"+old_path+"', '"+new_path+"') threw an exception: " + e.message); - } - // remove the node from the lookup hash - FS.hashRemoveNode(old_node); - // do the underlying fs rename - try { - old_dir.node_ops.rename(old_node, new_dir, new_name); - } catch (e) { - throw e; - } finally { - // add the node back to the hash (in case node_ops.rename - // changed its name) - FS.hashAddNode(old_node); - } - try { - if (FS.trackingDelegate['onMovePath']) FS.trackingDelegate['onMovePath'](old_path, new_path); - } catch(e) { - console.log("FS.trackingDelegate['onMovePath']('"+old_path+"', '"+new_path+"') threw an exception: " + e.message); - } - },rmdir:function (path) { - var lookup = FS.lookupPath(path, { parent: true }); - var parent = lookup.node; - var name = PATH.basename(path); - var node = FS.lookupNode(parent, name); - var err = FS.mayDelete(parent, name, true); - if (err) { - throw new FS.ErrnoError(err); - } - if (!parent.node_ops.rmdir) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - if (FS.isMountpoint(node)) { - throw new FS.ErrnoError(ERRNO_CODES.EBUSY); - } - try { - if (FS.trackingDelegate['willDeletePath']) { - FS.trackingDelegate['willDeletePath'](path); - } - } catch(e) { - console.log("FS.trackingDelegate['willDeletePath']('"+path+"') threw an exception: " + e.message); - } - parent.node_ops.rmdir(parent, name); - FS.destroyNode(node); - try { - if (FS.trackingDelegate['onDeletePath']) FS.trackingDelegate['onDeletePath'](path); - } catch(e) { - console.log("FS.trackingDelegate['onDeletePath']('"+path+"') threw an exception: " + e.message); - } - },readdir:function (path) { - var lookup = FS.lookupPath(path, { follow: true }); - var node = lookup.node; - if (!node.node_ops.readdir) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR); - } - return node.node_ops.readdir(node); - },unlink:function (path) { - var lookup = FS.lookupPath(path, { parent: true }); - var parent = lookup.node; - var name = PATH.basename(path); - var node = FS.lookupNode(parent, name); - var err = FS.mayDelete(parent, name, false); - if (err) { - // POSIX says unlink should set EPERM, not EISDIR - if (err === ERRNO_CODES.EISDIR) err = ERRNO_CODES.EPERM; - throw new FS.ErrnoError(err); - } - if (!parent.node_ops.unlink) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - if (FS.isMountpoint(node)) { - throw new FS.ErrnoError(ERRNO_CODES.EBUSY); - } - try { - if (FS.trackingDelegate['willDeletePath']) { - FS.trackingDelegate['willDeletePath'](path); - } - } catch(e) { - console.log("FS.trackingDelegate['willDeletePath']('"+path+"') threw an exception: " + e.message); - } - parent.node_ops.unlink(parent, name); - FS.destroyNode(node); - try { - if (FS.trackingDelegate['onDeletePath']) FS.trackingDelegate['onDeletePath'](path); - } catch(e) { - console.log("FS.trackingDelegate['onDeletePath']('"+path+"') threw an exception: " + e.message); - } - },readlink:function (path) { - var lookup = FS.lookupPath(path); - var link = lookup.node; - if (!link) { - throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - } - if (!link.node_ops.readlink) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - return PATH.resolve(FS.getPath(link.parent), link.node_ops.readlink(link)); - },stat:function (path, dontFollow) { - var lookup = FS.lookupPath(path, { follow: !dontFollow }); - var node = lookup.node; - if (!node) { - throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - } - if (!node.node_ops.getattr) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - return node.node_ops.getattr(node); - },lstat:function (path) { - return FS.stat(path, true); - },chmod:function (path, mode, dontFollow) { - var node; - if (typeof path === 'string') { - var lookup = FS.lookupPath(path, { follow: !dontFollow }); - node = lookup.node; - } else { - node = path; - } - if (!node.node_ops.setattr) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - node.node_ops.setattr(node, { - mode: (mode & 4095) | (node.mode & ~4095), - timestamp: Date.now() - }); - },lchmod:function (path, mode) { - FS.chmod(path, mode, true); - },fchmod:function (fd, mode) { - var stream = FS.getStream(fd); - if (!stream) { - throw new FS.ErrnoError(ERRNO_CODES.EBADF); - } - FS.chmod(stream.node, mode); - },chown:function (path, uid, gid, dontFollow) { - var node; - if (typeof path === 'string') { - var lookup = FS.lookupPath(path, { follow: !dontFollow }); - node = lookup.node; - } else { - node = path; - } - if (!node.node_ops.setattr) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - node.node_ops.setattr(node, { - timestamp: Date.now() - // we ignore the uid / gid for now - }); - },lchown:function (path, uid, gid) { - FS.chown(path, uid, gid, true); - },fchown:function (fd, uid, gid) { - var stream = FS.getStream(fd); - if (!stream) { - throw new FS.ErrnoError(ERRNO_CODES.EBADF); - } - FS.chown(stream.node, uid, gid); - },truncate:function (path, len) { - if (len < 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - var node; - if (typeof path === 'string') { - var lookup = FS.lookupPath(path, { follow: true }); - node = lookup.node; - } else { - node = path; - } - if (!node.node_ops.setattr) { - throw new FS.ErrnoError(ERRNO_CODES.EPERM); - } - if (FS.isDir(node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.EISDIR); - } - if (!FS.isFile(node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - var err = FS.nodePermissions(node, 'w'); - if (err) { - throw new FS.ErrnoError(err); - } - node.node_ops.setattr(node, { - size: len, - timestamp: Date.now() - }); - },ftruncate:function (fd, len) { - var stream = FS.getStream(fd); - if (!stream) { - throw new FS.ErrnoError(ERRNO_CODES.EBADF); - } - if ((stream.flags & 2097155) === 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - FS.truncate(stream.node, len); - },utime:function (path, atime, mtime) { - var lookup = FS.lookupPath(path, { follow: true }); - var node = lookup.node; - node.node_ops.setattr(node, { - timestamp: Math.max(atime, mtime) - }); - },open:function (path, flags, mode, fd_start, fd_end) { - if (path === "") { - throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - } - flags = typeof flags === 'string' ? FS.modeStringToFlags(flags) : flags; - mode = typeof mode === 'undefined' ? 438 /* 0666 */ : mode; - if ((flags & 64)) { - mode = (mode & 4095) | 32768; - } else { - mode = 0; - } - var node; - if (typeof path === 'object') { - node = path; - } else { - path = PATH.normalize(path); - try { - var lookup = FS.lookupPath(path, { - follow: !(flags & 131072) - }); - node = lookup.node; - } catch (e) { - // ignore - } - } - // perhaps we need to create the node - var created = false; - if ((flags & 64)) { - if (node) { - // if O_CREAT and O_EXCL are set, error out if the node already exists - if ((flags & 128)) { - throw new FS.ErrnoError(ERRNO_CODES.EEXIST); - } - } else { - // node doesn't exist, try to create it - node = FS.mknod(path, mode, 0); - created = true; - } - } - if (!node) { - throw new FS.ErrnoError(ERRNO_CODES.ENOENT); - } - // can't truncate a device - if (FS.isChrdev(node.mode)) { - flags &= ~512; - } - // if asked only for a directory, then this must be one - if ((flags & 65536) && !FS.isDir(node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR); - } - // check permissions, if this is not a file we just created now (it is ok to - // create and write to a file with read-only permissions; it is read-only - // for later use) - if (!created) { - var err = FS.mayOpen(node, flags); - if (err) { - throw new FS.ErrnoError(err); - } - } - // do truncation if necessary - if ((flags & 512)) { - FS.truncate(node, 0); - } - // we've already handled these, don't pass down to the underlying vfs - flags &= ~(128 | 512); - - // register the stream with the filesystem - var stream = FS.createStream({ - node: node, - path: FS.getPath(node), // we want the absolute path to the node - flags: flags, - seekable: true, - position: 0, - stream_ops: node.stream_ops, - // used by the file family libc calls (fopen, fwrite, ferror, etc.) - ungotten: [], - error: false - }, fd_start, fd_end); - // call the new stream's open function - if (stream.stream_ops.open) { - stream.stream_ops.open(stream); - } - if (Module['logReadFiles'] && !(flags & 1)) { - if (!FS.readFiles) FS.readFiles = {}; - if (!(path in FS.readFiles)) { - FS.readFiles[path] = 1; - Module['printErr']('read file: ' + path); - } - } - try { - if (FS.trackingDelegate['onOpenFile']) { - var trackingFlags = 0; - if ((flags & 2097155) !== 1) { - trackingFlags |= FS.tracking.openFlags.READ; - } - if ((flags & 2097155) !== 0) { - trackingFlags |= FS.tracking.openFlags.WRITE; - } - FS.trackingDelegate['onOpenFile'](path, trackingFlags); - } - } catch(e) { - console.log("FS.trackingDelegate['onOpenFile']('"+path+"', flags) threw an exception: " + e.message); - } - return stream; - },close:function (stream) { - if (stream.getdents) stream.getdents = null; // free readdir state - try { - if (stream.stream_ops.close) { - stream.stream_ops.close(stream); - } - } catch (e) { - throw e; - } finally { - FS.closeStream(stream.fd); - } - },llseek:function (stream, offset, whence) { - if (!stream.seekable || !stream.stream_ops.llseek) { - throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); - } - stream.position = stream.stream_ops.llseek(stream, offset, whence); - stream.ungotten = []; - return stream.position; - },read:function (stream, buffer, offset, length, position) { - if (length < 0 || position < 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - if ((stream.flags & 2097155) === 1) { - throw new FS.ErrnoError(ERRNO_CODES.EBADF); - } - if (FS.isDir(stream.node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.EISDIR); - } - if (!stream.stream_ops.read) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - var seeking = true; - if (typeof position === 'undefined') { - position = stream.position; - seeking = false; - } else if (!stream.seekable) { - throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); - } - var bytesRead = stream.stream_ops.read(stream, buffer, offset, length, position); - if (!seeking) stream.position += bytesRead; - return bytesRead; - },write:function (stream, buffer, offset, length, position, canOwn) { - if (length < 0 || position < 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - if ((stream.flags & 2097155) === 0) { - throw new FS.ErrnoError(ERRNO_CODES.EBADF); - } - if (FS.isDir(stream.node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.EISDIR); - } - if (!stream.stream_ops.write) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - if (stream.flags & 1024) { - // seek to the end before writing in append mode - FS.llseek(stream, 0, 2); - } - var seeking = true; - if (typeof position === 'undefined') { - position = stream.position; - seeking = false; - } else if (!stream.seekable) { - throw new FS.ErrnoError(ERRNO_CODES.ESPIPE); - } - var bytesWritten = stream.stream_ops.write(stream, buffer, offset, length, position, canOwn); - if (!seeking) stream.position += bytesWritten; - try { - if (stream.path && FS.trackingDelegate['onWriteToFile']) FS.trackingDelegate['onWriteToFile'](stream.path); - } catch(e) { - console.log("FS.trackingDelegate['onWriteToFile']('"+path+"') threw an exception: " + e.message); - } - return bytesWritten; - },allocate:function (stream, offset, length) { - if (offset < 0 || length <= 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - if ((stream.flags & 2097155) === 0) { - throw new FS.ErrnoError(ERRNO_CODES.EBADF); - } - if (!FS.isFile(stream.node.mode) && !FS.isDir(node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.ENODEV); - } - if (!stream.stream_ops.allocate) { - throw new FS.ErrnoError(ERRNO_CODES.EOPNOTSUPP); - } - stream.stream_ops.allocate(stream, offset, length); - },mmap:function (stream, buffer, offset, length, position, prot, flags) { - // TODO if PROT is PROT_WRITE, make sure we have write access - if ((stream.flags & 2097155) === 1) { - throw new FS.ErrnoError(ERRNO_CODES.EACCES); - } - if (!stream.stream_ops.mmap) { - throw new FS.ErrnoError(ERRNO_CODES.ENODEV); - } - return stream.stream_ops.mmap(stream, buffer, offset, length, position, prot, flags); - },msync:function (stream, buffer, offset, length, mmapFlags) { - if (!stream || !stream.stream_ops.msync) { - return 0; - } - return stream.stream_ops.msync(stream, buffer, offset, length, mmapFlags); - },munmap:function (stream) { - return 0; - },ioctl:function (stream, cmd, arg) { - if (!stream.stream_ops.ioctl) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTTY); - } - return stream.stream_ops.ioctl(stream, cmd, arg); - },readFile:function (path, opts) { - opts = opts || {}; - opts.flags = opts.flags || 'r'; - opts.encoding = opts.encoding || 'binary'; - if (opts.encoding !== 'utf8' && opts.encoding !== 'binary') { - throw new Error('Invalid encoding type "' + opts.encoding + '"'); - } - var ret; - var stream = FS.open(path, opts.flags); - var stat = FS.stat(path); - var length = stat.size; - var buf = new Uint8Array(length); - FS.read(stream, buf, 0, length, 0); - if (opts.encoding === 'utf8') { - ret = UTF8ArrayToString(buf, 0); - } else if (opts.encoding === 'binary') { - ret = buf; - } - FS.close(stream); - return ret; - },writeFile:function (path, data, opts) { - opts = opts || {}; - opts.flags = opts.flags || 'w'; - opts.encoding = opts.encoding || 'utf8'; - if (opts.encoding !== 'utf8' && opts.encoding !== 'binary') { - throw new Error('Invalid encoding type "' + opts.encoding + '"'); - } - var stream = FS.open(path, opts.flags, opts.mode); - if (opts.encoding === 'utf8') { - var buf = new Uint8Array(lengthBytesUTF8(data)+1); - var actualNumBytes = stringToUTF8Array(data, buf, 0, buf.length); - FS.write(stream, buf, 0, actualNumBytes, 0, opts.canOwn); - } else if (opts.encoding === 'binary') { - FS.write(stream, data, 0, data.length, 0, opts.canOwn); - } - FS.close(stream); - },cwd:function () { - return FS.currentPath; - },chdir:function (path) { - var lookup = FS.lookupPath(path, { follow: true }); - if (!FS.isDir(lookup.node.mode)) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR); - } - var err = FS.nodePermissions(lookup.node, 'x'); - if (err) { - throw new FS.ErrnoError(err); - } - FS.currentPath = lookup.path; - },createDefaultDirectories:function () { - FS.mkdir('/tmp'); - FS.mkdir('/home'); - FS.mkdir('/home/web_user'); - },createDefaultDevices:function () { - // create /dev - FS.mkdir('/dev'); - // setup /dev/null - FS.registerDevice(FS.makedev(1, 3), { - read: function() { return 0; }, - write: function(stream, buffer, offset, length, pos) { return length; } - }); - FS.mkdev('/dev/null', FS.makedev(1, 3)); - // setup /dev/tty and /dev/tty1 - // stderr needs to print output using Module['printErr'] - // so we register a second tty just for it. - TTY.register(FS.makedev(5, 0), TTY.default_tty_ops); - TTY.register(FS.makedev(6, 0), TTY.default_tty1_ops); - FS.mkdev('/dev/tty', FS.makedev(5, 0)); - FS.mkdev('/dev/tty1', FS.makedev(6, 0)); - // setup /dev/[u]random - var random_device; - if (typeof crypto !== 'undefined') { - // for modern web browsers - var randomBuffer = new Uint8Array(1); - random_device = function() { crypto.getRandomValues(randomBuffer); return randomBuffer[0]; }; - } else if (ENVIRONMENT_IS_NODE) { - // for nodejs - random_device = function() { return require('crypto').randomBytes(1)[0]; }; - } else { - // default for ES5 platforms - random_device = function() { return (Math.random()*256)|0; }; - } - FS.createDevice('/dev', 'random', random_device); - FS.createDevice('/dev', 'urandom', random_device); - // we're not going to emulate the actual shm device, - // just create the tmp dirs that reside in it commonly - FS.mkdir('/dev/shm'); - FS.mkdir('/dev/shm/tmp'); - },createSpecialDirectories:function () { - // create /proc/self/fd which allows /proc/self/fd/6 => readlink gives the name of the stream for fd 6 (see test_unistd_ttyname) - FS.mkdir('/proc'); - FS.mkdir('/proc/self'); - FS.mkdir('/proc/self/fd'); - FS.mount({ - mount: function() { - var node = FS.createNode('/proc/self', 'fd', 16384 | 0777, 73); - node.node_ops = { - lookup: function(parent, name) { - var fd = +name; - var stream = FS.getStream(fd); - if (!stream) throw new FS.ErrnoError(ERRNO_CODES.EBADF); - var ret = { - parent: null, - mount: { mountpoint: 'fake' }, - node_ops: { readlink: function() { return stream.path } } - }; - ret.parent = ret; // make it look like a simple root node - return ret; - } - }; - return node; - } - }, {}, '/proc/self/fd'); - },createStandardStreams:function () { - // TODO deprecate the old functionality of a single - // input / output callback and that utilizes FS.createDevice - // and instead require a unique set of stream ops - - // by default, we symlink the standard streams to the - // default tty devices. however, if the standard streams - // have been overwritten we create a unique device for - // them instead. - if (Module['stdin']) { - FS.createDevice('/dev', 'stdin', Module['stdin']); - } else { - FS.symlink('/dev/tty', '/dev/stdin'); - } - if (Module['stdout']) { - FS.createDevice('/dev', 'stdout', null, Module['stdout']); - } else { - FS.symlink('/dev/tty', '/dev/stdout'); - } - if (Module['stderr']) { - FS.createDevice('/dev', 'stderr', null, Module['stderr']); - } else { - FS.symlink('/dev/tty1', '/dev/stderr'); - } - - // open default streams for the stdin, stdout and stderr devices - var stdin = FS.open('/dev/stdin', 'r'); - assert(stdin.fd === 0, 'invalid handle for stdin (' + stdin.fd + ')'); - - var stdout = FS.open('/dev/stdout', 'w'); - assert(stdout.fd === 1, 'invalid handle for stdout (' + stdout.fd + ')'); - - var stderr = FS.open('/dev/stderr', 'w'); - assert(stderr.fd === 2, 'invalid handle for stderr (' + stderr.fd + ')'); - },ensureErrnoError:function () { - if (FS.ErrnoError) return; - FS.ErrnoError = function ErrnoError(errno, node) { - //Module.printErr(stackTrace()); // useful for debugging - this.node = node; - this.setErrno = function(errno) { - this.errno = errno; - for (var key in ERRNO_CODES) { - if (ERRNO_CODES[key] === errno) { - this.code = key; - break; - } - } - }; - this.setErrno(errno); - this.message = ERRNO_MESSAGES[errno]; - }; - FS.ErrnoError.prototype = new Error(); - FS.ErrnoError.prototype.constructor = FS.ErrnoError; - // Some errors may happen quite a bit, to avoid overhead we reuse them (and suffer a lack of stack info) - [ERRNO_CODES.ENOENT].forEach(function(code) { - FS.genericErrors[code] = new FS.ErrnoError(code); - FS.genericErrors[code].stack = ''; - }); - },staticInit:function () { - FS.ensureErrnoError(); - - FS.nameTable = new Array(4096); - - FS.mount(MEMFS, {}, '/'); - - FS.createDefaultDirectories(); - FS.createDefaultDevices(); - FS.createSpecialDirectories(); - - FS.filesystems = { - 'MEMFS': MEMFS, - 'IDBFS': IDBFS, - 'NODEFS': NODEFS, - 'WORKERFS': WORKERFS, - }; - },init:function (input, output, error) { - assert(!FS.init.initialized, 'FS.init was previously called. If you want to initialize later with custom parameters, remove any earlier calls (note that one is automatically added to the generated code)'); - FS.init.initialized = true; - - FS.ensureErrnoError(); - - // Allow Module.stdin etc. to provide defaults, if none explicitly passed to us here - Module['stdin'] = input || Module['stdin']; - Module['stdout'] = output || Module['stdout']; - Module['stderr'] = error || Module['stderr']; - - FS.createStandardStreams(); - },quit:function () { - FS.init.initialized = false; - // force-flush all streams, so we get musl std streams printed out - var fflush = Module['_fflush']; - if (fflush) fflush(0); - // close all of our streams - for (var i = 0; i < FS.streams.length; i++) { - var stream = FS.streams[i]; - if (!stream) { - continue; - } - FS.close(stream); - } - },getMode:function (canRead, canWrite) { - var mode = 0; - if (canRead) mode |= 292 | 73; - if (canWrite) mode |= 146; - return mode; - },joinPath:function (parts, forceRelative) { - var path = PATH.join.apply(null, parts); - if (forceRelative && path[0] == '/') path = path.substr(1); - return path; - },absolutePath:function (relative, base) { - return PATH.resolve(base, relative); - },standardizePath:function (path) { - return PATH.normalize(path); - },findObject:function (path, dontResolveLastLink) { - var ret = FS.analyzePath(path, dontResolveLastLink); - if (ret.exists) { - return ret.object; - } else { - ___setErrNo(ret.error); - return null; - } - },analyzePath:function (path, dontResolveLastLink) { - // operate from within the context of the symlink's target - try { - var lookup = FS.lookupPath(path, { follow: !dontResolveLastLink }); - path = lookup.path; - } catch (e) { - } - var ret = { - isRoot: false, exists: false, error: 0, name: null, path: null, object: null, - parentExists: false, parentPath: null, parentObject: null - }; - try { - var lookup = FS.lookupPath(path, { parent: true }); - ret.parentExists = true; - ret.parentPath = lookup.path; - ret.parentObject = lookup.node; - ret.name = PATH.basename(path); - lookup = FS.lookupPath(path, { follow: !dontResolveLastLink }); - ret.exists = true; - ret.path = lookup.path; - ret.object = lookup.node; - ret.name = lookup.node.name; - ret.isRoot = lookup.path === '/'; - } catch (e) { - ret.error = e.errno; - }; - return ret; - },createFolder:function (parent, name, canRead, canWrite) { - var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); - var mode = FS.getMode(canRead, canWrite); - return FS.mkdir(path, mode); - },createPath:function (parent, path, canRead, canWrite) { - parent = typeof parent === 'string' ? parent : FS.getPath(parent); - var parts = path.split('/').reverse(); - while (parts.length) { - var part = parts.pop(); - if (!part) continue; - var current = PATH.join2(parent, part); - try { - FS.mkdir(current); - } catch (e) { - // ignore EEXIST - } - parent = current; - } - return current; - },createFile:function (parent, name, properties, canRead, canWrite) { - var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); - var mode = FS.getMode(canRead, canWrite); - return FS.create(path, mode); - },createDataFile:function (parent, name, data, canRead, canWrite, canOwn) { - var path = name ? PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name) : parent; - var mode = FS.getMode(canRead, canWrite); - var node = FS.create(path, mode); - if (data) { - if (typeof data === 'string') { - var arr = new Array(data.length); - for (var i = 0, len = data.length; i < len; ++i) arr[i] = data.charCodeAt(i); - data = arr; - } - // make sure we can write to the file - FS.chmod(node, mode | 146); - var stream = FS.open(node, 'w'); - FS.write(stream, data, 0, data.length, 0, canOwn); - FS.close(stream); - FS.chmod(node, mode); - } - return node; - },createDevice:function (parent, name, input, output) { - var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); - var mode = FS.getMode(!!input, !!output); - if (!FS.createDevice.major) FS.createDevice.major = 64; - var dev = FS.makedev(FS.createDevice.major++, 0); - // Create a fake device that a set of stream ops to emulate - // the old behavior. - FS.registerDevice(dev, { - open: function(stream) { - stream.seekable = false; - }, - close: function(stream) { - // flush any pending line data - if (output && output.buffer && output.buffer.length) { - output(10); - } - }, - read: function(stream, buffer, offset, length, pos /* ignored */) { - var bytesRead = 0; - for (var i = 0; i < length; i++) { - var result; - try { - result = input(); - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES.EIO); - } - if (result === undefined && bytesRead === 0) { - throw new FS.ErrnoError(ERRNO_CODES.EAGAIN); - } - if (result === null || result === undefined) break; - bytesRead++; - buffer[offset+i] = result; - } - if (bytesRead) { - stream.node.timestamp = Date.now(); - } - return bytesRead; - }, - write: function(stream, buffer, offset, length, pos) { - for (var i = 0; i < length; i++) { - try { - output(buffer[offset+i]); - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES.EIO); - } - } - if (length) { - stream.node.timestamp = Date.now(); - } - return i; - } - }); - return FS.mkdev(path, mode, dev); - },createLink:function (parent, name, target, canRead, canWrite) { - var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); - return FS.symlink(target, path); - },forceLoadFile:function (obj) { - if (obj.isDevice || obj.isFolder || obj.link || obj.contents) return true; - var success = true; - if (typeof XMLHttpRequest !== 'undefined') { - throw new Error("Lazy loading should have been performed (contents set) in createLazyFile, but it was not. Lazy loading only works in web workers. Use --embed-file or --preload-file in emcc on the main thread."); - } else if (Module['read']) { - // Command-line. - try { - // WARNING: Can't read binary files in V8's d8 or tracemonkey's js, as - // read() will try to parse UTF8. - obj.contents = intArrayFromString(Module['read'](obj.url), true); - obj.usedBytes = obj.contents.length; - } catch (e) { - success = false; - } - } else { - throw new Error('Cannot load without read() or XMLHttpRequest.'); - } - if (!success) ___setErrNo(ERRNO_CODES.EIO); - return success; - },createLazyFile:function (parent, name, url, canRead, canWrite) { - // Lazy chunked Uint8Array (implements get and length from Uint8Array). Actual getting is abstracted away for eventual reuse. - function LazyUint8Array() { - this.lengthKnown = false; - this.chunks = []; // Loaded chunks. Index is the chunk number - } - LazyUint8Array.prototype.get = function LazyUint8Array_get(idx) { - if (idx > this.length-1 || idx < 0) { - return undefined; - } - var chunkOffset = idx % this.chunkSize; - var chunkNum = (idx / this.chunkSize)|0; - return this.getter(chunkNum)[chunkOffset]; - } - LazyUint8Array.prototype.setDataGetter = function LazyUint8Array_setDataGetter(getter) { - this.getter = getter; - } - LazyUint8Array.prototype.cacheLength = function LazyUint8Array_cacheLength() { - // Find length - var xhr = new XMLHttpRequest(); - xhr.open('HEAD', url, false); - xhr.send(null); - if (!(xhr.status >= 200 && xhr.status < 300 || xhr.status === 304)) throw new Error("Couldn't load " + url + ". Status: " + xhr.status); - var datalength = Number(xhr.getResponseHeader("Content-length")); - var header; - var hasByteServing = (header = xhr.getResponseHeader("Accept-Ranges")) && header === "bytes"; - var chunkSize = 1024*1024; // Chunk size in bytes - - if (!hasByteServing) chunkSize = datalength; - - // Function to get a range from the remote URL. - var doXHR = (function(from, to) { - if (from > to) throw new Error("invalid range (" + from + ", " + to + ") or no bytes requested!"); - if (to > datalength-1) throw new Error("only " + datalength + " bytes available! programmer error!"); - - // TODO: Use mozResponseArrayBuffer, responseStream, etc. if available. - var xhr = new XMLHttpRequest(); - xhr.open('GET', url, false); - if (datalength !== chunkSize) xhr.setRequestHeader("Range", "bytes=" + from + "-" + to); - - // Some hints to the browser that we want binary data. - if (typeof Uint8Array != 'undefined') xhr.responseType = 'arraybuffer'; - if (xhr.overrideMimeType) { - xhr.overrideMimeType('text/plain; charset=x-user-defined'); - } - - xhr.send(null); - if (!(xhr.status >= 200 && xhr.status < 300 || xhr.status === 304)) throw new Error("Couldn't load " + url + ". Status: " + xhr.status); - if (xhr.response !== undefined) { - return new Uint8Array(xhr.response || []); - } else { - return intArrayFromString(xhr.responseText || '', true); - } - }); - var lazyArray = this; - lazyArray.setDataGetter(function(chunkNum) { - var start = chunkNum * chunkSize; - var end = (chunkNum+1) * chunkSize - 1; // including this byte - end = Math.min(end, datalength-1); // if datalength-1 is selected, this is the last block - if (typeof(lazyArray.chunks[chunkNum]) === "undefined") { - lazyArray.chunks[chunkNum] = doXHR(start, end); - } - if (typeof(lazyArray.chunks[chunkNum]) === "undefined") throw new Error("doXHR failed!"); - return lazyArray.chunks[chunkNum]; - }); - - this._length = datalength; - this._chunkSize = chunkSize; - this.lengthKnown = true; - } - if (typeof XMLHttpRequest !== 'undefined') { - if (!ENVIRONMENT_IS_WORKER) throw 'Cannot do synchronous binary XHRs outside webworkers in modern browsers. Use --embed-file or --preload-file in emcc'; - var lazyArray = new LazyUint8Array(); - Object.defineProperty(lazyArray, "length", { - get: function() { - if(!this.lengthKnown) { - this.cacheLength(); - } - return this._length; - } - }); - Object.defineProperty(lazyArray, "chunkSize", { - get: function() { - if(!this.lengthKnown) { - this.cacheLength(); - } - return this._chunkSize; - } - }); - - var properties = { isDevice: false, contents: lazyArray }; - } else { - var properties = { isDevice: false, url: url }; - } - - var node = FS.createFile(parent, name, properties, canRead, canWrite); - // This is a total hack, but I want to get this lazy file code out of the - // core of MEMFS. If we want to keep this lazy file concept I feel it should - // be its own thin LAZYFS proxying calls to MEMFS. - if (properties.contents) { - node.contents = properties.contents; - } else if (properties.url) { - node.contents = null; - node.url = properties.url; - } - // Add a function that defers querying the file size until it is asked the first time. - Object.defineProperty(node, "usedBytes", { - get: function() { return this.contents.length; } - }); - // override each stream op with one that tries to force load the lazy file first - var stream_ops = {}; - var keys = Object.keys(node.stream_ops); - keys.forEach(function(key) { - var fn = node.stream_ops[key]; - stream_ops[key] = function forceLoadLazyFile() { - if (!FS.forceLoadFile(node)) { - throw new FS.ErrnoError(ERRNO_CODES.EIO); - } - return fn.apply(null, arguments); - }; - }); - // use a custom read function - stream_ops.read = function stream_ops_read(stream, buffer, offset, length, position) { - if (!FS.forceLoadFile(node)) { - throw new FS.ErrnoError(ERRNO_CODES.EIO); - } - var contents = stream.node.contents; - if (position >= contents.length) - return 0; - var size = Math.min(contents.length - position, length); - assert(size >= 0); - if (contents.slice) { // normal array - for (var i = 0; i < size; i++) { - buffer[offset + i] = contents[position + i]; - } - } else { - for (var i = 0; i < size; i++) { // LazyUint8Array from sync binary XHR - buffer[offset + i] = contents.get(position + i); - } - } - return size; - }; - node.stream_ops = stream_ops; - return node; - },createPreloadedFile:function (parent, name, url, canRead, canWrite, onload, onerror, dontCreateFile, canOwn, preFinish) { - Browser.init(); - // TODO we should allow people to just pass in a complete filename instead - // of parent and name being that we just join them anyways - var fullname = name ? PATH.resolve(PATH.join2(parent, name)) : parent; - var dep = getUniqueRunDependency('cp ' + fullname); // might have several active requests for the same fullname - function processData(byteArray) { - function finish(byteArray) { - if (preFinish) preFinish(); - if (!dontCreateFile) { - FS.createDataFile(parent, name, byteArray, canRead, canWrite, canOwn); - } - if (onload) onload(); - removeRunDependency(dep); - } - var handled = false; - Module['preloadPlugins'].forEach(function(plugin) { - if (handled) return; - if (plugin['canHandle'](fullname)) { - plugin['handle'](byteArray, fullname, finish, function() { - if (onerror) onerror(); - removeRunDependency(dep); - }); - handled = true; - } - }); - if (!handled) finish(byteArray); - } - addRunDependency(dep); - if (typeof url == 'string') { - Browser.asyncLoad(url, function(byteArray) { - processData(byteArray); - }, onerror); - } else { - processData(url); - } - },indexedDB:function () { - return window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB; - },DB_NAME:function () { - return 'EM_FS_' + window.location.pathname; - },DB_VERSION:20,DB_STORE_NAME:"FILE_DATA",saveFilesToDB:function (paths, onload, onerror) { - onload = onload || function(){}; - onerror = onerror || function(){}; - var indexedDB = FS.indexedDB(); - try { - var openRequest = indexedDB.open(FS.DB_NAME(), FS.DB_VERSION); - } catch (e) { - return onerror(e); - } - openRequest.onupgradeneeded = function openRequest_onupgradeneeded() { - console.log('creating db'); - var db = openRequest.result; - db.createObjectStore(FS.DB_STORE_NAME); - }; - openRequest.onsuccess = function openRequest_onsuccess() { - var db = openRequest.result; - var transaction = db.transaction([FS.DB_STORE_NAME], 'readwrite'); - var files = transaction.objectStore(FS.DB_STORE_NAME); - var ok = 0, fail = 0, total = paths.length; - function finish() { - if (fail == 0) onload(); else onerror(); - } - paths.forEach(function(path) { - var putRequest = files.put(FS.analyzePath(path).object.contents, path); - putRequest.onsuccess = function putRequest_onsuccess() { ok++; if (ok + fail == total) finish() }; - putRequest.onerror = function putRequest_onerror() { fail++; if (ok + fail == total) finish() }; - }); - transaction.onerror = onerror; - }; - openRequest.onerror = onerror; - },loadFilesFromDB:function (paths, onload, onerror) { - onload = onload || function(){}; - onerror = onerror || function(){}; - var indexedDB = FS.indexedDB(); - try { - var openRequest = indexedDB.open(FS.DB_NAME(), FS.DB_VERSION); - } catch (e) { - return onerror(e); - } - openRequest.onupgradeneeded = onerror; // no database to load from - openRequest.onsuccess = function openRequest_onsuccess() { - var db = openRequest.result; - try { - var transaction = db.transaction([FS.DB_STORE_NAME], 'readonly'); - } catch(e) { - onerror(e); - return; - } - var files = transaction.objectStore(FS.DB_STORE_NAME); - var ok = 0, fail = 0, total = paths.length; - function finish() { - if (fail == 0) onload(); else onerror(); - } - paths.forEach(function(path) { - var getRequest = files.get(path); - getRequest.onsuccess = function getRequest_onsuccess() { - if (FS.analyzePath(path).exists) { - FS.unlink(path); - } - FS.createDataFile(PATH.dirname(path), PATH.basename(path), getRequest.result, true, true, true); - ok++; - if (ok + fail == total) finish(); - }; - getRequest.onerror = function getRequest_onerror() { fail++; if (ok + fail == total) finish() }; - }); - transaction.onerror = onerror; - }; - openRequest.onerror = onerror; - }};var SYSCALLS={DEFAULT_POLLMASK:5,mappings:{},umask:511,calculateAt:function (dirfd, path) { - if (path[0] !== '/') { - // relative path - var dir; - if (dirfd === -100) { - dir = FS.cwd(); - } else { - var dirstream = FS.getStream(dirfd); - if (!dirstream) throw new FS.ErrnoError(ERRNO_CODES.EBADF); - dir = dirstream.path; - } - path = PATH.join2(dir, path); - } - return path; - },doStat:function (func, path, buf) { - try { - var stat = func(path); - } catch (e) { - if (e && e.node && PATH.normalize(path) !== PATH.normalize(FS.getPath(e.node))) { - // an error occurred while trying to look up the path; we should just report ENOTDIR - return -ERRNO_CODES.ENOTDIR; - } - throw e; - } - HEAP32[((buf)>>2)]=stat.dev; - HEAP32[(((buf)+(4))>>2)]=0; - HEAP32[(((buf)+(8))>>2)]=stat.ino; - HEAP32[(((buf)+(12))>>2)]=stat.mode; - HEAP32[(((buf)+(16))>>2)]=stat.nlink; - HEAP32[(((buf)+(20))>>2)]=stat.uid; - HEAP32[(((buf)+(24))>>2)]=stat.gid; - HEAP32[(((buf)+(28))>>2)]=stat.rdev; - HEAP32[(((buf)+(32))>>2)]=0; - HEAP32[(((buf)+(36))>>2)]=stat.size; - HEAP32[(((buf)+(40))>>2)]=4096; - HEAP32[(((buf)+(44))>>2)]=stat.blocks; - HEAP32[(((buf)+(48))>>2)]=(stat.atime.getTime() / 1000)|0; - HEAP32[(((buf)+(52))>>2)]=0; - HEAP32[(((buf)+(56))>>2)]=(stat.mtime.getTime() / 1000)|0; - HEAP32[(((buf)+(60))>>2)]=0; - HEAP32[(((buf)+(64))>>2)]=(stat.ctime.getTime() / 1000)|0; - HEAP32[(((buf)+(68))>>2)]=0; - HEAP32[(((buf)+(72))>>2)]=stat.ino; - return 0; - },doMsync:function (addr, stream, len, flags) { - var buffer = new Uint8Array(HEAPU8.subarray(addr, addr + len)); - FS.msync(stream, buffer, 0, len, flags); - },doMkdir:function (path, mode) { - // remove a trailing slash, if one - /a/b/ has basename of '', but - // we want to create b in the context of this function - path = PATH.normalize(path); - if (path[path.length-1] === '/') path = path.substr(0, path.length-1); - FS.mkdir(path, mode, 0); - return 0; - },doMknod:function (path, mode, dev) { - // we don't want this in the JS API as it uses mknod to create all nodes. - switch (mode & 61440) { - case 32768: - case 8192: - case 24576: - case 4096: - case 49152: - break; - default: return -ERRNO_CODES.EINVAL; - } - FS.mknod(path, mode, dev); - return 0; - },doReadlink:function (path, buf, bufsize) { - if (bufsize <= 0) return -ERRNO_CODES.EINVAL; - var ret = FS.readlink(path); - ret = ret.slice(0, Math.max(0, bufsize)); - writeStringToMemory(ret, buf, true); - return ret.length; - },doAccess:function (path, amode) { - if (amode & ~7) { - // need a valid mode - return -ERRNO_CODES.EINVAL; - } - var node; - var lookup = FS.lookupPath(path, { follow: true }); - node = lookup.node; - var perms = ''; - if (amode & 4) perms += 'r'; - if (amode & 2) perms += 'w'; - if (amode & 1) perms += 'x'; - if (perms /* otherwise, they've just passed F_OK */ && FS.nodePermissions(node, perms)) { - return -ERRNO_CODES.EACCES; - } - return 0; - },doDup:function (path, flags, suggestFD) { - var suggest = FS.getStream(suggestFD); - if (suggest) FS.close(suggest); - return FS.open(path, flags, 0, suggestFD, suggestFD).fd; - },doReadv:function (stream, iov, iovcnt, offset) { - var ret = 0; - for (var i = 0; i < iovcnt; i++) { - var ptr = HEAP32[(((iov)+(i*8))>>2)]; - var len = HEAP32[(((iov)+(i*8 + 4))>>2)]; - var curr = FS.read(stream, HEAP8,ptr, len, offset); - if (curr < 0) return -1; - ret += curr; - if (curr < len) break; // nothing more to read - } - return ret; - },doWritev:function (stream, iov, iovcnt, offset) { - var ret = 0; - for (var i = 0; i < iovcnt; i++) { - var ptr = HEAP32[(((iov)+(i*8))>>2)]; - var len = HEAP32[(((iov)+(i*8 + 4))>>2)]; - var curr = FS.write(stream, HEAP8,ptr, len, offset); - if (curr < 0) return -1; - ret += curr; - } - return ret; - },varargs:0,get:function (varargs) { - SYSCALLS.varargs += 4; - var ret = HEAP32[(((SYSCALLS.varargs)-(4))>>2)]; - return ret; - },getStr:function () { - var ret = Pointer_stringify(SYSCALLS.get()); - return ret; - },getStreamFromFD:function () { - var stream = FS.getStream(SYSCALLS.get()); - if (!stream) throw new FS.ErrnoError(ERRNO_CODES.EBADF); - return stream; - },getSocketFromFD:function () { - var socket = SOCKFS.getSocket(SYSCALLS.get()); - if (!socket) throw new FS.ErrnoError(ERRNO_CODES.EBADF); - return socket; - },getSocketAddress:function (allowNull) { - var addrp = SYSCALLS.get(), addrlen = SYSCALLS.get(); - if (allowNull && addrp === 0) return null; - var info = __read_sockaddr(addrp, addrlen); - if (info.errno) throw new FS.ErrnoError(info.errno); - info.addr = DNS.lookup_addr(info.addr) || info.addr; - return info; - },get64:function () { - var low = SYSCALLS.get(), high = SYSCALLS.get(); - if (low >= 0) assert(high === 0); - else assert(high === -1); - return low; - },getZero:function () { - assert(SYSCALLS.get() === 0); - }};function ___syscall6(which, varargs) {SYSCALLS.varargs = varargs; + ret += len; + } + return ret; + } catch (e) { + if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); + return -e.errno; + } + } + + function ___syscall54(which, varargs) {SYSCALLS.varargs = varargs; try { - // close - var stream = SYSCALLS.getStreamFromFD(); - FS.close(stream); + // ioctl return 0; } catch (e) { if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); return -e.errno; } } +/* flush anything remaining in the buffer during shutdown */ __ATEXIT__.push(function() { var fflush = Module["_fflush"]; if (fflush) fflush(0); var printChar = ___syscall146.printChar; if (!printChar) return; var buffers = ___syscall146.buffers; if (buffers[1].length) printChar(1, 10); if (buffers[2].length) printChar(2, 10); });; +DYNAMICTOP_PTR = allocate(1, "i32", ALLOC_STATIC); - function _sysconf(name) { - // long sysconf(int name); - // http://pubs.opengroup.org/onlinepubs/009695399/functions/sysconf.html - switch(name) { - case 30: return PAGE_SIZE; - case 85: return totalMemory / PAGE_SIZE; - case 132: - case 133: - case 12: - case 137: - case 138: - case 15: - case 235: - case 16: - case 17: - case 18: - case 19: - case 20: - case 149: - case 13: - case 10: - case 236: - case 153: - case 9: - case 21: - case 22: - case 159: - case 154: - case 14: - case 77: - case 78: - case 139: - case 80: - case 81: - case 82: - case 68: - case 67: - case 164: - case 11: - case 29: - case 47: - case 48: - case 95: - case 52: - case 51: - case 46: - return 200809; - case 79: - return 0; - case 27: - case 246: - case 127: - case 128: - case 23: - case 24: - case 160: - case 161: - case 181: - case 182: - case 242: - case 183: - case 184: - case 243: - case 244: - case 245: - case 165: - case 178: - case 179: - case 49: - case 50: - case 168: - case 169: - case 175: - case 170: - case 171: - case 172: - case 97: - case 76: - case 32: - case 173: - case 35: - return -1; - case 176: - case 177: - case 7: - case 155: - case 8: - case 157: - case 125: - case 126: - case 92: - case 93: - case 129: - case 130: - case 131: - case 94: - case 91: - return 1; - case 74: - case 60: - case 69: - case 70: - case 4: - return 1024; - case 31: - case 42: - case 72: - return 32; - case 87: - case 26: - case 33: - return 2147483647; - case 34: - case 1: - return 47839; - case 38: - case 36: - return 99; - case 43: - case 37: - return 2048; - case 0: return 2097152; - case 3: return 65536; - case 28: return 32768; - case 44: return 32767; - case 75: return 16384; - case 39: return 1000; - case 89: return 700; - case 71: return 256; - case 40: return 255; - case 2: return 100; - case 180: return 64; - case 25: return 20; - case 5: return 16; - case 6: return 6; - case 73: return 4; - case 84: { - if (typeof navigator === 'object') return navigator['hardwareConcurrency'] || 1; - return 1; - } - } - ___setErrNo(ERRNO_CODES.EINVAL); - return -1; - } +STACK_BASE = STACKTOP = Runtime.alignMemory(STATICTOP); - function _sbrk(bytes) { - // Implement a Linux-like 'memory area' for our 'process'. - // Changes the size of the memory area by |bytes|; returns the - // address of the previous top ('break') of the memory area - // We control the "dynamic" memory - DYNAMIC_BASE to DYNAMICTOP - var self = _sbrk; - if (!self.called) { - DYNAMICTOP = alignMemoryPage(DYNAMICTOP); // make sure we start out aligned - self.called = true; - assert(Runtime.dynamicAlloc); - self.alloc = Runtime.dynamicAlloc; - Runtime.dynamicAlloc = function() { abort('cannot dynamically allocate, sbrk now has control') }; - } - var ret = DYNAMICTOP; - if (bytes != 0) { - var success = self.alloc(bytes); - if (!success) return -1 >>> 0; // sbrk failure code - } - return ret; // Previous break location. - } +STACK_MAX = STACK_BASE + TOTAL_STACK; - - - function _emscripten_memcpy_big(dest, src, num) { - HEAPU8.set(HEAPU8.subarray(src, src+num), dest); - return dest; - } - Module["_memcpy"] = _memcpy; - Module["_memmove"] = _memmove; +DYNAMIC_BASE = Runtime.alignMemory(STACK_MAX); - - - - function _emscripten_set_main_loop_timing(mode, value) { - Browser.mainLoop.timingMode = mode; - Browser.mainLoop.timingValue = value; - - if (!Browser.mainLoop.func) { - return 1; // Return non-zero on failure, can't set timing mode when there is no main loop. - } - - if (mode == 0 /*EM_TIMING_SETTIMEOUT*/) { - Browser.mainLoop.scheduler = function Browser_mainLoop_scheduler_setTimeout() { - setTimeout(Browser.mainLoop.runner, value); // doing this each time means that on exception, we stop - }; - Browser.mainLoop.method = 'timeout'; - } else if (mode == 1 /*EM_TIMING_RAF*/) { - Browser.mainLoop.scheduler = function Browser_mainLoop_scheduler_rAF() { - Browser.requestAnimationFrame(Browser.mainLoop.runner); - }; - Browser.mainLoop.method = 'rAF'; - } else if (mode == 2 /*EM_TIMING_SETIMMEDIATE*/) { - if (!window['setImmediate']) { - // Emulate setImmediate. (note: not a complete polyfill, we don't emulate clearImmediate() to keep code size to minimum, since not needed) - var setImmediates = []; - var emscriptenMainLoopMessageId = '__emcc'; - function Browser_setImmediate_messageHandler(event) { - if (event.source === window && event.data === emscriptenMainLoopMessageId) { - event.stopPropagation(); - setImmediates.shift()(); - } - } - window.addEventListener("message", Browser_setImmediate_messageHandler, true); - window['setImmediate'] = function Browser_emulated_setImmediate(func) { - setImmediates.push(func); - window.postMessage(emscriptenMainLoopMessageId, "*"); - } - } - Browser.mainLoop.scheduler = function Browser_mainLoop_scheduler_setImmediate() { - window['setImmediate'](Browser.mainLoop.runner); - }; - Browser.mainLoop.method = 'immediate'; - } - return 0; - }function _emscripten_set_main_loop(func, fps, simulateInfiniteLoop, arg, noSetTiming) { - Module['noExitRuntime'] = true; - - assert(!Browser.mainLoop.func, 'emscripten_set_main_loop: there can only be one main loop function at once: call emscripten_cancel_main_loop to cancel the previous one before setting a new one with different parameters.'); - - Browser.mainLoop.func = func; - Browser.mainLoop.arg = arg; - - var thisMainLoopId = Browser.mainLoop.currentlyRunningMainloop; - - Browser.mainLoop.runner = function Browser_mainLoop_runner() { - if (ABORT) return; - if (Browser.mainLoop.queue.length > 0) { - var start = Date.now(); - var blocker = Browser.mainLoop.queue.shift(); - blocker.func(blocker.arg); - if (Browser.mainLoop.remainingBlockers) { - var remaining = Browser.mainLoop.remainingBlockers; - var next = remaining%1 == 0 ? remaining-1 : Math.floor(remaining); - if (blocker.counted) { - Browser.mainLoop.remainingBlockers = next; - } else { - // not counted, but move the progress along a tiny bit - next = next + 0.5; // do not steal all the next one's progress - Browser.mainLoop.remainingBlockers = (8*remaining + next)/9; - } - } - console.log('main loop blocker "' + blocker.name + '" took ' + (Date.now() - start) + ' ms'); //, left: ' + Browser.mainLoop.remainingBlockers); - Browser.mainLoop.updateStatus(); - setTimeout(Browser.mainLoop.runner, 0); - return; - } - - // catch pauses from non-main loop sources - if (thisMainLoopId < Browser.mainLoop.currentlyRunningMainloop) return; - - // Implement very basic swap interval control - Browser.mainLoop.currentFrameNumber = Browser.mainLoop.currentFrameNumber + 1 | 0; - if (Browser.mainLoop.timingMode == 1/*EM_TIMING_RAF*/ && Browser.mainLoop.timingValue > 1 && Browser.mainLoop.currentFrameNumber % Browser.mainLoop.timingValue != 0) { - // Not the scheduled time to render this frame - skip. - Browser.mainLoop.scheduler(); - return; - } - - // Signal GL rendering layer that processing of a new frame is about to start. This helps it optimize - // VBO double-buffering and reduce GPU stalls. - - if (Browser.mainLoop.method === 'timeout' && Module.ctx) { - Module.printErr('Looks like you are rendering without using requestAnimationFrame for the main loop. You should use 0 for the frame rate in emscripten_set_main_loop in order to use requestAnimationFrame, as that can greatly improve your frame rates!'); - Browser.mainLoop.method = ''; // just warn once per call to set main loop - } - - Browser.mainLoop.runIter(function() { - if (typeof arg !== 'undefined') { - Runtime.dynCall('vi', func, [arg]); - } else { - Runtime.dynCall('v', func); - } - }); - - // catch pauses from the main loop itself - if (thisMainLoopId < Browser.mainLoop.currentlyRunningMainloop) return; - - // Queue new audio data. This is important to be right after the main loop invocation, so that we will immediately be able - // to queue the newest produced audio samples. - // TODO: Consider adding pre- and post- rAF callbacks so that GL.newRenderingFrameStarted() and SDL.audio.queueNewAudioData() - // do not need to be hardcoded into this function, but can be more generic. - if (typeof SDL === 'object' && SDL.audio && SDL.audio.queueNewAudioData) SDL.audio.queueNewAudioData(); - - Browser.mainLoop.scheduler(); - } - - if (!noSetTiming) { - if (fps && fps > 0) _emscripten_set_main_loop_timing(0/*EM_TIMING_SETTIMEOUT*/, 1000.0 / fps); - else _emscripten_set_main_loop_timing(1/*EM_TIMING_RAF*/, 1); // Do rAF by rendering each frame (no decimating) - - Browser.mainLoop.scheduler(); - } - - if (simulateInfiniteLoop) { - throw 'SimulateInfiniteLoop'; - } - }var Browser={mainLoop:{scheduler:null,method:"",currentlyRunningMainloop:0,func:null,arg:0,timingMode:0,timingValue:0,currentFrameNumber:0,queue:[],pause:function () { - Browser.mainLoop.scheduler = null; - Browser.mainLoop.currentlyRunningMainloop++; // Incrementing this signals the previous main loop that it's now become old, and it must return. - },resume:function () { - Browser.mainLoop.currentlyRunningMainloop++; - var timingMode = Browser.mainLoop.timingMode; - var timingValue = Browser.mainLoop.timingValue; - var func = Browser.mainLoop.func; - Browser.mainLoop.func = null; - _emscripten_set_main_loop(func, 0, false, Browser.mainLoop.arg, true /* do not set timing and call scheduler, we will do it on the next lines */); - _emscripten_set_main_loop_timing(timingMode, timingValue); - Browser.mainLoop.scheduler(); - },updateStatus:function () { - if (Module['setStatus']) { - var message = Module['statusMessage'] || 'Please wait...'; - var remaining = Browser.mainLoop.remainingBlockers; - var expected = Browser.mainLoop.expectedBlockers; - if (remaining) { - if (remaining < expected) { - Module['setStatus'](message + ' (' + (expected - remaining) + '/' + expected + ')'); - } else { - Module['setStatus'](message); - } - } else { - Module['setStatus'](''); - } - } - },runIter:function (func) { - if (ABORT) return; - if (Module['preMainLoop']) { - var preRet = Module['preMainLoop'](); - if (preRet === false) { - return; // |return false| skips a frame - } - } - try { - func(); - } catch (e) { - if (e instanceof ExitStatus) { - return; - } else { - if (e && typeof e === 'object' && e.stack) Module.printErr('exception thrown: ' + [e, e.stack]); - throw e; - } - } - if (Module['postMainLoop']) Module['postMainLoop'](); - }},isFullScreen:false,pointerLock:false,moduleContextCreatedCallbacks:[],workers:[],init:function () { - if (!Module["preloadPlugins"]) Module["preloadPlugins"] = []; // needs to exist even in workers - - if (Browser.initted) return; - Browser.initted = true; - - try { - new Blob(); - Browser.hasBlobConstructor = true; - } catch(e) { - Browser.hasBlobConstructor = false; - console.log("warning: no blob constructor, cannot create blobs with mimetypes"); - } - Browser.BlobBuilder = typeof MozBlobBuilder != "undefined" ? MozBlobBuilder : (typeof WebKitBlobBuilder != "undefined" ? WebKitBlobBuilder : (!Browser.hasBlobConstructor ? console.log("warning: no BlobBuilder") : null)); - Browser.URLObject = typeof window != "undefined" ? (window.URL ? window.URL : window.webkitURL) : undefined; - if (!Module.noImageDecoding && typeof Browser.URLObject === 'undefined') { - console.log("warning: Browser does not support creating object URLs. Built-in browser image decoding will not be available."); - Module.noImageDecoding = true; - } - - // Support for plugins that can process preloaded files. You can add more of these to - // your app by creating and appending to Module.preloadPlugins. - // - // Each plugin is asked if it can handle a file based on the file's name. If it can, - // it is given the file's raw data. When it is done, it calls a callback with the file's - // (possibly modified) data. For example, a plugin might decompress a file, or it - // might create some side data structure for use later (like an Image element, etc.). - - var imagePlugin = {}; - imagePlugin['canHandle'] = function imagePlugin_canHandle(name) { - return !Module.noImageDecoding && /\.(jpg|jpeg|png|bmp)$/i.test(name); - }; - imagePlugin['handle'] = function imagePlugin_handle(byteArray, name, onload, onerror) { - var b = null; - if (Browser.hasBlobConstructor) { - try { - b = new Blob([byteArray], { type: Browser.getMimetype(name) }); - if (b.size !== byteArray.length) { // Safari bug #118630 - // Safari's Blob can only take an ArrayBuffer - b = new Blob([(new Uint8Array(byteArray)).buffer], { type: Browser.getMimetype(name) }); - } - } catch(e) { - Runtime.warnOnce('Blob constructor present but fails: ' + e + '; falling back to blob builder'); - } - } - if (!b) { - var bb = new Browser.BlobBuilder(); - bb.append((new Uint8Array(byteArray)).buffer); // we need to pass a buffer, and must copy the array to get the right data range - b = bb.getBlob(); - } - var url = Browser.URLObject.createObjectURL(b); - var img = new Image(); - img.onload = function img_onload() { - assert(img.complete, 'Image ' + name + ' could not be decoded'); - var canvas = document.createElement('canvas'); - canvas.width = img.width; - canvas.height = img.height; - var ctx = canvas.getContext('2d'); - ctx.drawImage(img, 0, 0); - Module["preloadedImages"][name] = canvas; - Browser.URLObject.revokeObjectURL(url); - if (onload) onload(byteArray); - }; - img.onerror = function img_onerror(event) { - console.log('Image ' + url + ' could not be decoded'); - if (onerror) onerror(); - }; - img.src = url; - }; - Module['preloadPlugins'].push(imagePlugin); - - var audioPlugin = {}; - audioPlugin['canHandle'] = function audioPlugin_canHandle(name) { - return !Module.noAudioDecoding && name.substr(-4) in { '.ogg': 1, '.wav': 1, '.mp3': 1 }; - }; - audioPlugin['handle'] = function audioPlugin_handle(byteArray, name, onload, onerror) { - var done = false; - function finish(audio) { - if (done) return; - done = true; - Module["preloadedAudios"][name] = audio; - if (onload) onload(byteArray); - } - function fail() { - if (done) return; - done = true; - Module["preloadedAudios"][name] = new Audio(); // empty shim - if (onerror) onerror(); - } - if (Browser.hasBlobConstructor) { - try { - var b = new Blob([byteArray], { type: Browser.getMimetype(name) }); - } catch(e) { - return fail(); - } - var url = Browser.URLObject.createObjectURL(b); // XXX we never revoke this! - var audio = new Audio(); - audio.addEventListener('canplaythrough', function() { finish(audio) }, false); // use addEventListener due to chromium bug 124926 - audio.onerror = function audio_onerror(event) { - if (done) return; - console.log('warning: browser could not fully decode audio ' + name + ', trying slower base64 approach'); - function encode64(data) { - var BASE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; - var PAD = '='; - var ret = ''; - var leftchar = 0; - var leftbits = 0; - for (var i = 0; i < data.length; i++) { - leftchar = (leftchar << 8) | data[i]; - leftbits += 8; - while (leftbits >= 6) { - var curr = (leftchar >> (leftbits-6)) & 0x3f; - leftbits -= 6; - ret += BASE[curr]; - } - } - if (leftbits == 2) { - ret += BASE[(leftchar&3) << 4]; - ret += PAD + PAD; - } else if (leftbits == 4) { - ret += BASE[(leftchar&0xf) << 2]; - ret += PAD; - } - return ret; - } - audio.src = 'data:audio/x-' + name.substr(-3) + ';base64,' + encode64(byteArray); - finish(audio); // we don't wait for confirmation this worked - but it's worth trying - }; - audio.src = url; - // workaround for chrome bug 124926 - we do not always get oncanplaythrough or onerror - Browser.safeSetTimeout(function() { - finish(audio); // try to use it even though it is not necessarily ready to play - }, 10000); - } else { - return fail(); - } - }; - Module['preloadPlugins'].push(audioPlugin); - - // Canvas event setup - - var canvas = Module['canvas']; - function pointerLockChange() { - Browser.pointerLock = document['pointerLockElement'] === canvas || - document['mozPointerLockElement'] === canvas || - document['webkitPointerLockElement'] === canvas || - document['msPointerLockElement'] === canvas; - } - if (canvas) { - // forced aspect ratio can be enabled by defining 'forcedAspectRatio' on Module - // Module['forcedAspectRatio'] = 4 / 3; - - canvas.requestPointerLock = canvas['requestPointerLock'] || - canvas['mozRequestPointerLock'] || - canvas['webkitRequestPointerLock'] || - canvas['msRequestPointerLock'] || - function(){}; - canvas.exitPointerLock = document['exitPointerLock'] || - document['mozExitPointerLock'] || - document['webkitExitPointerLock'] || - document['msExitPointerLock'] || - function(){}; // no-op if function does not exist - canvas.exitPointerLock = canvas.exitPointerLock.bind(document); - - - document.addEventListener('pointerlockchange', pointerLockChange, false); - document.addEventListener('mozpointerlockchange', pointerLockChange, false); - document.addEventListener('webkitpointerlockchange', pointerLockChange, false); - document.addEventListener('mspointerlockchange', pointerLockChange, false); - - if (Module['elementPointerLock']) { - canvas.addEventListener("click", function(ev) { - if (!Browser.pointerLock && canvas.requestPointerLock) { - canvas.requestPointerLock(); - ev.preventDefault(); - } - }, false); - } - } - },createContext:function (canvas, useWebGL, setInModule, webGLContextAttributes) { - if (useWebGL && Module.ctx && canvas == Module.canvas) return Module.ctx; // no need to recreate GL context if it's already been created for this canvas. - - var ctx; - var contextHandle; - if (useWebGL) { - // For GLES2/desktop GL compatibility, adjust a few defaults to be different to WebGL defaults, so that they align better with the desktop defaults. - var contextAttributes = { - antialias: false, - alpha: false - }; - - if (webGLContextAttributes) { - for (var attribute in webGLContextAttributes) { - contextAttributes[attribute] = webGLContextAttributes[attribute]; - } - } - - contextHandle = GL.createContext(canvas, contextAttributes); - if (contextHandle) { - ctx = GL.getContext(contextHandle).GLctx; - } - // Set the background of the WebGL canvas to black - canvas.style.backgroundColor = "black"; - } else { - ctx = canvas.getContext('2d'); - } - - if (!ctx) return null; - - if (setInModule) { - if (!useWebGL) assert(typeof GLctx === 'undefined', 'cannot set in module if GLctx is used, but we are a non-GL context that would replace it'); - - Module.ctx = ctx; - if (useWebGL) GL.makeContextCurrent(contextHandle); - Module.useWebGL = useWebGL; - Browser.moduleContextCreatedCallbacks.forEach(function(callback) { callback() }); - Browser.init(); - } - return ctx; - },destroyContext:function (canvas, useWebGL, setInModule) {},fullScreenHandlersInstalled:false,lockPointer:undefined,resizeCanvas:undefined,requestFullScreen:function (lockPointer, resizeCanvas, vrDevice) { - Browser.lockPointer = lockPointer; - Browser.resizeCanvas = resizeCanvas; - Browser.vrDevice = vrDevice; - if (typeof Browser.lockPointer === 'undefined') Browser.lockPointer = true; - if (typeof Browser.resizeCanvas === 'undefined') Browser.resizeCanvas = false; - if (typeof Browser.vrDevice === 'undefined') Browser.vrDevice = null; - - var canvas = Module['canvas']; - function fullScreenChange() { - Browser.isFullScreen = false; - var canvasContainer = canvas.parentNode; - if ((document['webkitFullScreenElement'] || document['webkitFullscreenElement'] || - document['mozFullScreenElement'] || document['mozFullscreenElement'] || - document['fullScreenElement'] || document['fullscreenElement'] || - document['msFullScreenElement'] || document['msFullscreenElement'] || - document['webkitCurrentFullScreenElement']) === canvasContainer) { - canvas.cancelFullScreen = document['cancelFullScreen'] || - document['mozCancelFullScreen'] || - document['webkitCancelFullScreen'] || - document['msExitFullscreen'] || - document['exitFullscreen'] || - function() {}; - canvas.cancelFullScreen = canvas.cancelFullScreen.bind(document); - if (Browser.lockPointer) canvas.requestPointerLock(); - Browser.isFullScreen = true; - if (Browser.resizeCanvas) Browser.setFullScreenCanvasSize(); - } else { - - // remove the full screen specific parent of the canvas again to restore the HTML structure from before going full screen - canvasContainer.parentNode.insertBefore(canvas, canvasContainer); - canvasContainer.parentNode.removeChild(canvasContainer); - - if (Browser.resizeCanvas) Browser.setWindowedCanvasSize(); - } - if (Module['onFullScreen']) Module['onFullScreen'](Browser.isFullScreen); - Browser.updateCanvasDimensions(canvas); - } - - if (!Browser.fullScreenHandlersInstalled) { - Browser.fullScreenHandlersInstalled = true; - document.addEventListener('fullscreenchange', fullScreenChange, false); - document.addEventListener('mozfullscreenchange', fullScreenChange, false); - document.addEventListener('webkitfullscreenchange', fullScreenChange, false); - document.addEventListener('MSFullscreenChange', fullScreenChange, false); - } - - // create a new parent to ensure the canvas has no siblings. this allows browsers to optimize full screen performance when its parent is the full screen root - var canvasContainer = document.createElement("div"); - canvas.parentNode.insertBefore(canvasContainer, canvas); - canvasContainer.appendChild(canvas); - - // use parent of canvas as full screen root to allow aspect ratio correction (Firefox stretches the root to screen size) - canvasContainer.requestFullScreen = canvasContainer['requestFullScreen'] || - canvasContainer['mozRequestFullScreen'] || - canvasContainer['msRequestFullscreen'] || - (canvasContainer['webkitRequestFullScreen'] ? function() { canvasContainer['webkitRequestFullScreen'](Element['ALLOW_KEYBOARD_INPUT']) } : null); - - if (vrDevice) { - canvasContainer.requestFullScreen({ vrDisplay: vrDevice }); - } else { - canvasContainer.requestFullScreen(); - } - },nextRAF:0,fakeRequestAnimationFrame:function (func) { - // try to keep 60fps between calls to here - var now = Date.now(); - if (Browser.nextRAF === 0) { - Browser.nextRAF = now + 1000/60; - } else { - while (now + 2 >= Browser.nextRAF) { // fudge a little, to avoid timer jitter causing us to do lots of delay:0 - Browser.nextRAF += 1000/60; - } - } - var delay = Math.max(Browser.nextRAF - now, 0); - setTimeout(func, delay); - },requestAnimationFrame:function requestAnimationFrame(func) { - if (typeof window === 'undefined') { // Provide fallback to setTimeout if window is undefined (e.g. in Node.js) - Browser.fakeRequestAnimationFrame(func); - } else { - if (!window.requestAnimationFrame) { - window.requestAnimationFrame = window['requestAnimationFrame'] || - window['mozRequestAnimationFrame'] || - window['webkitRequestAnimationFrame'] || - window['msRequestAnimationFrame'] || - window['oRequestAnimationFrame'] || - Browser.fakeRequestAnimationFrame; - } - window.requestAnimationFrame(func); - } - },safeCallback:function (func) { - return function() { - if (!ABORT) return func.apply(null, arguments); - }; - },allowAsyncCallbacks:true,queuedAsyncCallbacks:[],pauseAsyncCallbacks:function () { - Browser.allowAsyncCallbacks = false; - },resumeAsyncCallbacks:function () { // marks future callbacks as ok to execute, and synchronously runs any remaining ones right now - Browser.allowAsyncCallbacks = true; - if (Browser.queuedAsyncCallbacks.length > 0) { - var callbacks = Browser.queuedAsyncCallbacks; - Browser.queuedAsyncCallbacks = []; - callbacks.forEach(function(func) { - func(); - }); - } - },safeRequestAnimationFrame:function (func) { - return Browser.requestAnimationFrame(function() { - if (ABORT) return; - if (Browser.allowAsyncCallbacks) { - func(); - } else { - Browser.queuedAsyncCallbacks.push(func); - } - }); - },safeSetTimeout:function (func, timeout) { - Module['noExitRuntime'] = true; - return setTimeout(function() { - if (ABORT) return; - if (Browser.allowAsyncCallbacks) { - func(); - } else { - Browser.queuedAsyncCallbacks.push(func); - } - }, timeout); - },safeSetInterval:function (func, timeout) { - Module['noExitRuntime'] = true; - return setInterval(function() { - if (ABORT) return; - if (Browser.allowAsyncCallbacks) { - func(); - } // drop it on the floor otherwise, next interval will kick in - }, timeout); - },getMimetype:function (name) { - return { - 'jpg': 'image/jpeg', - 'jpeg': 'image/jpeg', - 'png': 'image/png', - 'bmp': 'image/bmp', - 'ogg': 'audio/ogg', - 'wav': 'audio/wav', - 'mp3': 'audio/mpeg' - }[name.substr(name.lastIndexOf('.')+1)]; - },getUserMedia:function (func) { - if(!window.getUserMedia) { - window.getUserMedia = navigator['getUserMedia'] || - navigator['mozGetUserMedia']; - } - window.getUserMedia(func); - },getMovementX:function (event) { - return event['movementX'] || - event['mozMovementX'] || - event['webkitMovementX'] || - 0; - },getMovementY:function (event) { - return event['movementY'] || - event['mozMovementY'] || - event['webkitMovementY'] || - 0; - },getMouseWheelDelta:function (event) { - var delta = 0; - switch (event.type) { - case 'DOMMouseScroll': - delta = event.detail; - break; - case 'mousewheel': - delta = event.wheelDelta; - break; - case 'wheel': - delta = event['deltaY']; - break; - default: - throw 'unrecognized mouse wheel event: ' + event.type; - } - return delta; - },mouseX:0,mouseY:0,mouseMovementX:0,mouseMovementY:0,touches:{},lastTouches:{},calculateMouseEvent:function (event) { // event should be mousemove, mousedown or mouseup - if (Browser.pointerLock) { - // When the pointer is locked, calculate the coordinates - // based on the movement of the mouse. - // Workaround for Firefox bug 764498 - if (event.type != 'mousemove' && - ('mozMovementX' in event)) { - Browser.mouseMovementX = Browser.mouseMovementY = 0; - } else { - Browser.mouseMovementX = Browser.getMovementX(event); - Browser.mouseMovementY = Browser.getMovementY(event); - } - - // check if SDL is available - if (typeof SDL != "undefined") { - Browser.mouseX = SDL.mouseX + Browser.mouseMovementX; - Browser.mouseY = SDL.mouseY + Browser.mouseMovementY; - } else { - // just add the mouse delta to the current absolut mouse position - // FIXME: ideally this should be clamped against the canvas size and zero - Browser.mouseX += Browser.mouseMovementX; - Browser.mouseY += Browser.mouseMovementY; - } - } else { - // Otherwise, calculate the movement based on the changes - // in the coordinates. - var rect = Module["canvas"].getBoundingClientRect(); - var cw = Module["canvas"].width; - var ch = Module["canvas"].height; - - // Neither .scrollX or .pageXOffset are defined in a spec, but - // we prefer .scrollX because it is currently in a spec draft. - // (see: http://www.w3.org/TR/2013/WD-cssom-view-20131217/) - var scrollX = ((typeof window.scrollX !== 'undefined') ? window.scrollX : window.pageXOffset); - var scrollY = ((typeof window.scrollY !== 'undefined') ? window.scrollY : window.pageYOffset); - - if (event.type === 'touchstart' || event.type === 'touchend' || event.type === 'touchmove') { - var touch = event.touch; - if (touch === undefined) { - return; // the "touch" property is only defined in SDL - - } - var adjustedX = touch.pageX - (scrollX + rect.left); - var adjustedY = touch.pageY - (scrollY + rect.top); - - adjustedX = adjustedX * (cw / rect.width); - adjustedY = adjustedY * (ch / rect.height); - - var coords = { x: adjustedX, y: adjustedY }; - - if (event.type === 'touchstart') { - Browser.lastTouches[touch.identifier] = coords; - Browser.touches[touch.identifier] = coords; - } else if (event.type === 'touchend' || event.type === 'touchmove') { - var last = Browser.touches[touch.identifier]; - if (!last) last = coords; - Browser.lastTouches[touch.identifier] = last; - Browser.touches[touch.identifier] = coords; - } - return; - } - - var x = event.pageX - (scrollX + rect.left); - var y = event.pageY - (scrollY + rect.top); - - // the canvas might be CSS-scaled compared to its backbuffer; - // SDL-using content will want mouse coordinates in terms - // of backbuffer units. - x = x * (cw / rect.width); - y = y * (ch / rect.height); - - Browser.mouseMovementX = x - Browser.mouseX; - Browser.mouseMovementY = y - Browser.mouseY; - Browser.mouseX = x; - Browser.mouseY = y; - } - },xhrLoad:function (url, onload, onerror) { - var xhr = new XMLHttpRequest(); - xhr.open('GET', url, true); - xhr.responseType = 'arraybuffer'; - xhr.onload = function xhr_onload() { - if (xhr.status == 200 || (xhr.status == 0 && xhr.response)) { // file URLs can return 0 - onload(xhr.response); - } else { - onerror(); - } - }; - xhr.onerror = onerror; - xhr.send(null); - },asyncLoad:function (url, onload, onerror, noRunDep) { - Browser.xhrLoad(url, function(arrayBuffer) { - assert(arrayBuffer, 'Loading data file "' + url + '" failed (no arrayBuffer).'); - onload(new Uint8Array(arrayBuffer)); - if (!noRunDep) removeRunDependency('al ' + url); - }, function(event) { - if (onerror) { - onerror(); - } else { - throw 'Loading data file "' + url + '" failed.'; - } - }); - if (!noRunDep) addRunDependency('al ' + url); - },resizeListeners:[],updateResizeListeners:function () { - var canvas = Module['canvas']; - Browser.resizeListeners.forEach(function(listener) { - listener(canvas.width, canvas.height); - }); - },setCanvasSize:function (width, height, noUpdates) { - var canvas = Module['canvas']; - Browser.updateCanvasDimensions(canvas, width, height); - if (!noUpdates) Browser.updateResizeListeners(); - },windowedWidth:0,windowedHeight:0,setFullScreenCanvasSize:function () { - // check if SDL is available - if (typeof SDL != "undefined") { - var flags = HEAPU32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]; - flags = flags | 0x00800000; // set SDL_FULLSCREEN flag - HEAP32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]=flags - } - Browser.updateResizeListeners(); - },setWindowedCanvasSize:function () { - // check if SDL is available - if (typeof SDL != "undefined") { - var flags = HEAPU32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]; - flags = flags & ~0x00800000; // clear SDL_FULLSCREEN flag - HEAP32[((SDL.screen+Runtime.QUANTUM_SIZE*0)>>2)]=flags - } - Browser.updateResizeListeners(); - },updateCanvasDimensions:function (canvas, wNative, hNative) { - if (wNative && hNative) { - canvas.widthNative = wNative; - canvas.heightNative = hNative; - } else { - wNative = canvas.widthNative; - hNative = canvas.heightNative; - } - var w = wNative; - var h = hNative; - if (Module['forcedAspectRatio'] && Module['forcedAspectRatio'] > 0) { - if (w/h < Module['forcedAspectRatio']) { - w = Math.round(h * Module['forcedAspectRatio']); - } else { - h = Math.round(w / Module['forcedAspectRatio']); - } - } - if (((document['webkitFullScreenElement'] || document['webkitFullscreenElement'] || - document['mozFullScreenElement'] || document['mozFullscreenElement'] || - document['fullScreenElement'] || document['fullscreenElement'] || - document['msFullScreenElement'] || document['msFullscreenElement'] || - document['webkitCurrentFullScreenElement']) === canvas.parentNode) && (typeof screen != 'undefined')) { - var factor = Math.min(screen.width / w, screen.height / h); - w = Math.round(w * factor); - h = Math.round(h * factor); - } - if (Browser.resizeCanvas) { - if (canvas.width != w) canvas.width = w; - if (canvas.height != h) canvas.height = h; - if (typeof canvas.style != 'undefined') { - canvas.style.removeProperty( "width"); - canvas.style.removeProperty("height"); - } - } else { - if (canvas.width != wNative) canvas.width = wNative; - if (canvas.height != hNative) canvas.height = hNative; - if (typeof canvas.style != 'undefined') { - if (w != wNative || h != hNative) { - canvas.style.setProperty( "width", w + "px", "important"); - canvas.style.setProperty("height", h + "px", "important"); - } else { - canvas.style.removeProperty( "width"); - canvas.style.removeProperty("height"); - } - } - } - },wgetRequests:{},nextWgetRequestHandle:0,getNextWgetRequestHandle:function () { - var handle = Browser.nextWgetRequestHandle; - Browser.nextWgetRequestHandle++; - return handle; - }}; - - function _time(ptr) { - var ret = (Date.now()/1000)|0; - if (ptr) { - HEAP32[((ptr)>>2)]=ret; - } - return ret; - } - - function _pthread_self() { - //FIXME: assumes only a single thread - return 0; - } - - function ___syscall140(which, varargs) {SYSCALLS.varargs = varargs; - try { - // llseek - var stream = SYSCALLS.getStreamFromFD(), offset_high = SYSCALLS.get(), offset_low = SYSCALLS.get(), result = SYSCALLS.get(), whence = SYSCALLS.get(); - var offset = offset_low; - assert(offset_high === 0); - FS.llseek(stream, offset, whence); - HEAP32[((result)>>2)]=stream.position; - if (stream.getdents && offset === 0 && whence === 0) stream.getdents = null; // reset readdir state - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___syscall146(which, varargs) {SYSCALLS.varargs = varargs; - try { - // writev - var stream = SYSCALLS.getStreamFromFD(), iov = SYSCALLS.get(), iovcnt = SYSCALLS.get(); - return SYSCALLS.doWritev(stream, iov, iovcnt); - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___syscall54(which, varargs) {SYSCALLS.varargs = varargs; - try { - // ioctl - var stream = SYSCALLS.getStreamFromFD(), op = SYSCALLS.get(); - switch (op) { - case 21505: { - if (!stream.tty) return -ERRNO_CODES.ENOTTY; - return 0; - } - case 21506: { - if (!stream.tty) return -ERRNO_CODES.ENOTTY; - return 0; // no-op, not actually adjusting terminal settings - } - case 21519: { - if (!stream.tty) return -ERRNO_CODES.ENOTTY; - var argp = SYSCALLS.get(); - HEAP32[((argp)>>2)]=0; - return 0; - } - case 21520: { - if (!stream.tty) return -ERRNO_CODES.ENOTTY; - return -ERRNO_CODES.EINVAL; // not supported - } - case 21531: { - var argp = SYSCALLS.get(); - return FS.ioctl(stream, op, argp); - } - default: abort('bad ioctl syscall ' + op); - } - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } -FS.staticInit();__ATINIT__.unshift(function() { if (!Module["noFSInit"] && !FS.init.initialized) FS.init() });__ATMAIN__.push(function() { FS.ignorePermissions = false });__ATEXIT__.push(function() { FS.quit() });Module["FS_createFolder"] = FS.createFolder;Module["FS_createPath"] = FS.createPath;Module["FS_createDataFile"] = FS.createDataFile;Module["FS_createPreloadedFile"] = FS.createPreloadedFile;Module["FS_createLazyFile"] = FS.createLazyFile;Module["FS_createLink"] = FS.createLink;Module["FS_createDevice"] = FS.createDevice;Module["FS_unlink"] = FS.unlink; -__ATINIT__.unshift(function() { TTY.init() });__ATEXIT__.push(function() { TTY.shutdown() }); -if (ENVIRONMENT_IS_NODE) { var fs = require("fs"); var NODEJS_PATH = require("path"); NODEFS.staticInit(); } -Module["requestFullScreen"] = function Module_requestFullScreen(lockPointer, resizeCanvas, vrDevice) { Browser.requestFullScreen(lockPointer, resizeCanvas, vrDevice) }; - Module["requestAnimationFrame"] = function Module_requestAnimationFrame(func) { Browser.requestAnimationFrame(func) }; - Module["setCanvasSize"] = function Module_setCanvasSize(width, height, noUpdates) { Browser.setCanvasSize(width, height, noUpdates) }; - Module["pauseMainLoop"] = function Module_pauseMainLoop() { Browser.mainLoop.pause() }; - Module["resumeMainLoop"] = function Module_resumeMainLoop() { Browser.mainLoop.resume() }; - Module["getUserMedia"] = function Module_getUserMedia() { Browser.getUserMedia() } - Module["createContext"] = function Module_createContext(canvas, useWebGL, setInModule, webGLContextAttributes) { return Browser.createContext(canvas, useWebGL, setInModule, webGLContextAttributes) } -STACK_BASE = STACKTOP = Runtime.alignMemory(STATICTOP); +HEAP32[DYNAMICTOP_PTR>>2] = DYNAMIC_BASE; staticSealed = true; // seal the static portion of memory -STACK_MAX = STACK_BASE + TOTAL_STACK; - -DYNAMIC_BASE = DYNAMICTOP = Runtime.alignMemory(STACK_MAX); - -assert(DYNAMIC_BASE < TOTAL_MEMORY, "TOTAL_MEMORY not big enough for stack"); - - var cttz_i8 = allocate([8,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,6,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,7,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,6,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0], "i8", ALLOC_DYNAMIC); - function invoke_ii(index,a1) { try { return Module["dynCall_ii"](index,a1); } catch(e) { if (typeof e !== 'number' && e !== 'longjmp') throw e; - asm["setThrew"](1, 0); + Module["setThrew"](1, 0); } } @@ -5633,27 +1748,18 @@ function invoke_iiii(index,a1,a2,a3) { return Module["dynCall_iiii"](index,a1,a2,a3); } catch(e) { if (typeof e !== 'number' && e !== 'longjmp') throw e; - asm["setThrew"](1, 0); - } -} - -function invoke_vi(index,a1) { - try { - Module["dynCall_vi"](index,a1); - } catch(e) { - if (typeof e !== 'number' && e !== 'longjmp') throw e; - asm["setThrew"](1, 0); + Module["setThrew"](1, 0); } } Module.asmGlobalArg = { "Math": Math, "Int8Array": Int8Array, "Int16Array": Int16Array, "Int32Array": Int32Array, "Uint8Array": Uint8Array, "Uint16Array": Uint16Array, "Uint32Array": Uint32Array, "Float32Array": Float32Array, "Float64Array": Float64Array, "NaN": NaN, "Infinity": Infinity }; -Module.asmLibraryArg = { "abort": abort, "assert": assert, "invoke_ii": invoke_ii, "invoke_iiii": invoke_iiii, "invoke_vi": invoke_vi, "_pthread_cleanup_pop": _pthread_cleanup_pop, "___lock": ___lock, "_emscripten_set_main_loop": _emscripten_set_main_loop, "_pthread_self": _pthread_self, "___syscall6": ___syscall6, "_emscripten_set_main_loop_timing": _emscripten_set_main_loop_timing, "_abort": _abort, "_sbrk": _sbrk, "_time": _time, "___setErrNo": ___setErrNo, "_emscripten_memcpy_big": _emscripten_memcpy_big, "___syscall54": ___syscall54, "___unlock": ___unlock, "___syscall140": ___syscall140, "_pthread_cleanup_push": _pthread_cleanup_push, "_sysconf": _sysconf, "___syscall146": ___syscall146, "STACKTOP": STACKTOP, "STACK_MAX": STACK_MAX, "tempDoublePtr": tempDoublePtr, "ABORT": ABORT, "cttz_i8": cttz_i8 }; +Module.asmLibraryArg = { "abort": abort, "assert": assert, "enlargeMemory": enlargeMemory, "getTotalMemory": getTotalMemory, "abortOnCannotGrowMemory": abortOnCannotGrowMemory, "invoke_ii": invoke_ii, "invoke_iiii": invoke_iiii, "___lock": ___lock, "_abort": _abort, "___setErrNo": ___setErrNo, "___syscall6": ___syscall6, "___syscall140": ___syscall140, "___syscall146": ___syscall146, "_emscripten_memcpy_big": _emscripten_memcpy_big, "___syscall54": ___syscall54, "___unlock": ___unlock, "_llvm_stackrestore": _llvm_stackrestore, "_llvm_stacksave": _llvm_stacksave, "DYNAMICTOP_PTR": DYNAMICTOP_PTR, "tempDoublePtr": tempDoublePtr, "ABORT": ABORT, "STACKTOP": STACKTOP, "STACK_MAX": STACK_MAX }; // EMSCRIPTEN_START_ASM var asm = (function(global, env, buffer) { - 'use asm'; - - +'use asm'; + + var HEAP8 = new global.Int8Array(buffer); var HEAP16 = new global.Int16Array(buffer); var HEAP32 = new global.Int32Array(buffer); @@ -5663,30 +1769,20 @@ var asm = (function(global, env, buffer) { var HEAPF32 = new global.Float32Array(buffer); var HEAPF64 = new global.Float64Array(buffer); - - var STACKTOP=env.STACKTOP|0; - var STACK_MAX=env.STACK_MAX|0; + var DYNAMICTOP_PTR=env.DYNAMICTOP_PTR|0; var tempDoublePtr=env.tempDoublePtr|0; var ABORT=env.ABORT|0; - var cttz_i8=env.cttz_i8|0; + var STACKTOP=env.STACKTOP|0; + var STACK_MAX=env.STACK_MAX|0; var __THREW__ = 0; var threwValue = 0; var setjmpId = 0; var undef = 0; var nan = global.NaN, inf = global.Infinity; - var tempInt = 0, tempBigInt = 0, tempBigIntP = 0, tempBigIntS = 0, tempBigIntR = 0.0, tempBigIntI = 0, tempBigIntD = 0, tempValue = 0, tempDouble = 0.0; - + var tempInt = 0, tempBigInt = 0, tempBigIntS = 0, tempValue = 0, tempDouble = 0.0; var tempRet0 = 0; - var tempRet1 = 0; - var tempRet2 = 0; - var tempRet3 = 0; - var tempRet4 = 0; - var tempRet5 = 0; - var tempRet6 = 0; - var tempRet7 = 0; - var tempRet8 = 0; - var tempRet9 = 0; + var Math_floor=global.Math.floor; var Math_abs=global.Math.abs; var Math_sqrt=global.Math.sqrt; @@ -5703,32 +1799,30 @@ var asm = (function(global, env, buffer) { var Math_ceil=global.Math.ceil; var Math_imul=global.Math.imul; var Math_min=global.Math.min; + var Math_max=global.Math.max; var Math_clz32=global.Math.clz32; var abort=env.abort; var assert=env.assert; + var enlargeMemory=env.enlargeMemory; + var getTotalMemory=env.getTotalMemory; + var abortOnCannotGrowMemory=env.abortOnCannotGrowMemory; var invoke_ii=env.invoke_ii; var invoke_iiii=env.invoke_iiii; - var invoke_vi=env.invoke_vi; - var _pthread_cleanup_pop=env._pthread_cleanup_pop; var ___lock=env.___lock; - var _emscripten_set_main_loop=env._emscripten_set_main_loop; - var _pthread_self=env._pthread_self; - var ___syscall6=env.___syscall6; - var _emscripten_set_main_loop_timing=env._emscripten_set_main_loop_timing; var _abort=env._abort; - var _sbrk=env._sbrk; - var _time=env._time; var ___setErrNo=env.___setErrNo; + var ___syscall6=env.___syscall6; + var ___syscall140=env.___syscall140; + var ___syscall146=env.___syscall146; var _emscripten_memcpy_big=env._emscripten_memcpy_big; var ___syscall54=env.___syscall54; var ___unlock=env.___unlock; - var ___syscall140=env.___syscall140; - var _pthread_cleanup_push=env._pthread_cleanup_push; - var _sysconf=env._sysconf; - var ___syscall146=env.___syscall146; + var _llvm_stackrestore=env._llvm_stackrestore; + var _llvm_stacksave=env._llvm_stacksave; var tempFloat = 0.0; // EMSCRIPTEN_START_FUNCS + function stackAlloc(size) { size = size|0; var ret = 0; @@ -5760,24 +1854,6 @@ function setThrew(threw, value) { threwValue = value; } } -function copyTempFloat(ptr) { - ptr = ptr|0; - HEAP8[tempDoublePtr>>0] = HEAP8[ptr>>0]; - HEAP8[tempDoublePtr+1>>0] = HEAP8[ptr+1>>0]; - HEAP8[tempDoublePtr+2>>0] = HEAP8[ptr+2>>0]; - HEAP8[tempDoublePtr+3>>0] = HEAP8[ptr+3>>0]; -} -function copyTempDouble(ptr) { - ptr = ptr|0; - HEAP8[tempDoublePtr>>0] = HEAP8[ptr>>0]; - HEAP8[tempDoublePtr+1>>0] = HEAP8[ptr+1>>0]; - HEAP8[tempDoublePtr+2>>0] = HEAP8[ptr+2>>0]; - HEAP8[tempDoublePtr+3>>0] = HEAP8[ptr+3>>0]; - HEAP8[tempDoublePtr+4>>0] = HEAP8[ptr+4>>0]; - HEAP8[tempDoublePtr+5>>0] = HEAP8[ptr+5>>0]; - HEAP8[tempDoublePtr+6>>0] = HEAP8[ptr+6>>0]; - HEAP8[tempDoublePtr+7>>0] = HEAP8[ptr+7>>0]; -} function setTempRet0(value) { value = value|0; @@ -5787,1638 +1863,1732 @@ function getTempRet0() { return tempRet0|0; } -function _crypto_verify_32_ref($x,$y) { - $x = $x|0; - $y = $y|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0; +function _crypto_verify_32_ref($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0; var $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0; var $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0; var $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0; var $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP8[$x>>0]|0; - $1 = HEAP8[$y>>0]|0; - $2 = $1 ^ $0; - $3 = ((($x)) + 1|0); - $4 = HEAP8[$3>>0]|0; - $5 = ((($y)) + 1|0); + $2 = HEAP8[$0>>0]|0; + $3 = HEAP8[$1>>0]|0; + $4 = $3 ^ $2; + $5 = ((($0)) + 1|0); $6 = HEAP8[$5>>0]|0; - $7 = $6 ^ $4; - $8 = $7 | $2; - $9 = ((($x)) + 2|0); - $10 = HEAP8[$9>>0]|0; - $11 = ((($y)) + 2|0); + $7 = ((($1)) + 1|0); + $8 = HEAP8[$7>>0]|0; + $9 = $8 ^ $6; + $10 = $9 | $4; + $11 = ((($0)) + 2|0); $12 = HEAP8[$11>>0]|0; - $13 = $12 ^ $10; - $14 = $8 | $13; - $15 = ((($x)) + 3|0); - $16 = HEAP8[$15>>0]|0; - $17 = ((($y)) + 3|0); + $13 = ((($1)) + 2|0); + $14 = HEAP8[$13>>0]|0; + $15 = $14 ^ $12; + $16 = $10 | $15; + $17 = ((($0)) + 3|0); $18 = HEAP8[$17>>0]|0; - $19 = $18 ^ $16; - $20 = $14 | $19; - $21 = ((($x)) + 4|0); - $22 = HEAP8[$21>>0]|0; - $23 = ((($y)) + 4|0); + $19 = ((($1)) + 3|0); + $20 = HEAP8[$19>>0]|0; + $21 = $20 ^ $18; + $22 = $16 | $21; + $23 = ((($0)) + 4|0); $24 = HEAP8[$23>>0]|0; - $25 = $24 ^ $22; - $26 = $20 | $25; - $27 = ((($x)) + 5|0); - $28 = HEAP8[$27>>0]|0; - $29 = ((($y)) + 5|0); + $25 = ((($1)) + 4|0); + $26 = HEAP8[$25>>0]|0; + $27 = $26 ^ $24; + $28 = $22 | $27; + $29 = ((($0)) + 5|0); $30 = HEAP8[$29>>0]|0; - $31 = $30 ^ $28; - $32 = $26 | $31; - $33 = ((($x)) + 6|0); - $34 = HEAP8[$33>>0]|0; - $35 = ((($y)) + 6|0); + $31 = ((($1)) + 5|0); + $32 = HEAP8[$31>>0]|0; + $33 = $32 ^ $30; + $34 = $28 | $33; + $35 = ((($0)) + 6|0); $36 = HEAP8[$35>>0]|0; - $37 = $36 ^ $34; - $38 = $32 | $37; - $39 = ((($x)) + 7|0); - $40 = HEAP8[$39>>0]|0; - $41 = ((($y)) + 7|0); + $37 = ((($1)) + 6|0); + $38 = HEAP8[$37>>0]|0; + $39 = $38 ^ $36; + $40 = $34 | $39; + $41 = ((($0)) + 7|0); $42 = HEAP8[$41>>0]|0; - $43 = $42 ^ $40; - $44 = $38 | $43; - $45 = ((($x)) + 8|0); - $46 = HEAP8[$45>>0]|0; - $47 = ((($y)) + 8|0); + $43 = ((($1)) + 7|0); + $44 = HEAP8[$43>>0]|0; + $45 = $44 ^ $42; + $46 = $40 | $45; + $47 = ((($0)) + 8|0); $48 = HEAP8[$47>>0]|0; - $49 = $48 ^ $46; - $50 = $44 | $49; - $51 = ((($x)) + 9|0); - $52 = HEAP8[$51>>0]|0; - $53 = ((($y)) + 9|0); + $49 = ((($1)) + 8|0); + $50 = HEAP8[$49>>0]|0; + $51 = $50 ^ $48; + $52 = $46 | $51; + $53 = ((($0)) + 9|0); $54 = HEAP8[$53>>0]|0; - $55 = $54 ^ $52; - $56 = $50 | $55; - $57 = ((($x)) + 10|0); - $58 = HEAP8[$57>>0]|0; - $59 = ((($y)) + 10|0); + $55 = ((($1)) + 9|0); + $56 = HEAP8[$55>>0]|0; + $57 = $56 ^ $54; + $58 = $52 | $57; + $59 = ((($0)) + 10|0); $60 = HEAP8[$59>>0]|0; - $61 = $60 ^ $58; - $62 = $56 | $61; - $63 = ((($x)) + 11|0); - $64 = HEAP8[$63>>0]|0; - $65 = ((($y)) + 11|0); + $61 = ((($1)) + 10|0); + $62 = HEAP8[$61>>0]|0; + $63 = $62 ^ $60; + $64 = $58 | $63; + $65 = ((($0)) + 11|0); $66 = HEAP8[$65>>0]|0; - $67 = $66 ^ $64; - $68 = $62 | $67; - $69 = ((($x)) + 12|0); - $70 = HEAP8[$69>>0]|0; - $71 = ((($y)) + 12|0); + $67 = ((($1)) + 11|0); + $68 = HEAP8[$67>>0]|0; + $69 = $68 ^ $66; + $70 = $64 | $69; + $71 = ((($0)) + 12|0); $72 = HEAP8[$71>>0]|0; - $73 = $72 ^ $70; - $74 = $68 | $73; - $75 = ((($x)) + 13|0); - $76 = HEAP8[$75>>0]|0; - $77 = ((($y)) + 13|0); + $73 = ((($1)) + 12|0); + $74 = HEAP8[$73>>0]|0; + $75 = $74 ^ $72; + $76 = $70 | $75; + $77 = ((($0)) + 13|0); $78 = HEAP8[$77>>0]|0; - $79 = $78 ^ $76; - $80 = $74 | $79; - $81 = ((($x)) + 14|0); - $82 = HEAP8[$81>>0]|0; - $83 = ((($y)) + 14|0); + $79 = ((($1)) + 13|0); + $80 = HEAP8[$79>>0]|0; + $81 = $80 ^ $78; + $82 = $76 | $81; + $83 = ((($0)) + 14|0); $84 = HEAP8[$83>>0]|0; - $85 = $84 ^ $82; - $86 = $80 | $85; - $87 = ((($x)) + 15|0); - $88 = HEAP8[$87>>0]|0; - $89 = ((($y)) + 15|0); + $85 = ((($1)) + 14|0); + $86 = HEAP8[$85>>0]|0; + $87 = $86 ^ $84; + $88 = $82 | $87; + $89 = ((($0)) + 15|0); $90 = HEAP8[$89>>0]|0; - $91 = $90 ^ $88; - $92 = $86 | $91; - $93 = ((($x)) + 16|0); - $94 = HEAP8[$93>>0]|0; - $95 = ((($y)) + 16|0); + $91 = ((($1)) + 15|0); + $92 = HEAP8[$91>>0]|0; + $93 = $92 ^ $90; + $94 = $88 | $93; + $95 = ((($0)) + 16|0); $96 = HEAP8[$95>>0]|0; - $97 = $96 ^ $94; - $98 = $92 | $97; - $99 = ((($x)) + 17|0); - $100 = HEAP8[$99>>0]|0; - $101 = ((($y)) + 17|0); + $97 = ((($1)) + 16|0); + $98 = HEAP8[$97>>0]|0; + $99 = $98 ^ $96; + $100 = $94 | $99; + $101 = ((($0)) + 17|0); $102 = HEAP8[$101>>0]|0; - $103 = $102 ^ $100; - $104 = $98 | $103; - $105 = ((($x)) + 18|0); - $106 = HEAP8[$105>>0]|0; - $107 = ((($y)) + 18|0); + $103 = ((($1)) + 17|0); + $104 = HEAP8[$103>>0]|0; + $105 = $104 ^ $102; + $106 = $100 | $105; + $107 = ((($0)) + 18|0); $108 = HEAP8[$107>>0]|0; - $109 = $108 ^ $106; - $110 = $104 | $109; - $111 = ((($x)) + 19|0); - $112 = HEAP8[$111>>0]|0; - $113 = ((($y)) + 19|0); + $109 = ((($1)) + 18|0); + $110 = HEAP8[$109>>0]|0; + $111 = $110 ^ $108; + $112 = $106 | $111; + $113 = ((($0)) + 19|0); $114 = HEAP8[$113>>0]|0; - $115 = $114 ^ $112; - $116 = $110 | $115; - $117 = ((($x)) + 20|0); - $118 = HEAP8[$117>>0]|0; - $119 = ((($y)) + 20|0); + $115 = ((($1)) + 19|0); + $116 = HEAP8[$115>>0]|0; + $117 = $116 ^ $114; + $118 = $112 | $117; + $119 = ((($0)) + 20|0); $120 = HEAP8[$119>>0]|0; - $121 = $120 ^ $118; - $122 = $116 | $121; - $123 = ((($x)) + 21|0); - $124 = HEAP8[$123>>0]|0; - $125 = ((($y)) + 21|0); + $121 = ((($1)) + 20|0); + $122 = HEAP8[$121>>0]|0; + $123 = $122 ^ $120; + $124 = $118 | $123; + $125 = ((($0)) + 21|0); $126 = HEAP8[$125>>0]|0; - $127 = $126 ^ $124; - $128 = $122 | $127; - $129 = ((($x)) + 22|0); - $130 = HEAP8[$129>>0]|0; - $131 = ((($y)) + 22|0); + $127 = ((($1)) + 21|0); + $128 = HEAP8[$127>>0]|0; + $129 = $128 ^ $126; + $130 = $124 | $129; + $131 = ((($0)) + 22|0); $132 = HEAP8[$131>>0]|0; - $133 = $132 ^ $130; - $134 = $128 | $133; - $135 = ((($x)) + 23|0); - $136 = HEAP8[$135>>0]|0; - $137 = ((($y)) + 23|0); + $133 = ((($1)) + 22|0); + $134 = HEAP8[$133>>0]|0; + $135 = $134 ^ $132; + $136 = $130 | $135; + $137 = ((($0)) + 23|0); $138 = HEAP8[$137>>0]|0; - $139 = $138 ^ $136; - $140 = $134 | $139; - $141 = ((($x)) + 24|0); - $142 = HEAP8[$141>>0]|0; - $143 = ((($y)) + 24|0); + $139 = ((($1)) + 23|0); + $140 = HEAP8[$139>>0]|0; + $141 = $140 ^ $138; + $142 = $136 | $141; + $143 = ((($0)) + 24|0); $144 = HEAP8[$143>>0]|0; - $145 = $144 ^ $142; - $146 = $140 | $145; - $147 = ((($x)) + 25|0); - $148 = HEAP8[$147>>0]|0; - $149 = ((($y)) + 25|0); + $145 = ((($1)) + 24|0); + $146 = HEAP8[$145>>0]|0; + $147 = $146 ^ $144; + $148 = $142 | $147; + $149 = ((($0)) + 25|0); $150 = HEAP8[$149>>0]|0; - $151 = $150 ^ $148; - $152 = $146 | $151; - $153 = ((($x)) + 26|0); - $154 = HEAP8[$153>>0]|0; - $155 = ((($y)) + 26|0); + $151 = ((($1)) + 25|0); + $152 = HEAP8[$151>>0]|0; + $153 = $152 ^ $150; + $154 = $148 | $153; + $155 = ((($0)) + 26|0); $156 = HEAP8[$155>>0]|0; - $157 = $156 ^ $154; - $158 = $152 | $157; - $159 = ((($x)) + 27|0); - $160 = HEAP8[$159>>0]|0; - $161 = ((($y)) + 27|0); + $157 = ((($1)) + 26|0); + $158 = HEAP8[$157>>0]|0; + $159 = $158 ^ $156; + $160 = $154 | $159; + $161 = ((($0)) + 27|0); $162 = HEAP8[$161>>0]|0; - $163 = $162 ^ $160; - $164 = $158 | $163; - $165 = ((($x)) + 28|0); - $166 = HEAP8[$165>>0]|0; - $167 = ((($y)) + 28|0); + $163 = ((($1)) + 27|0); + $164 = HEAP8[$163>>0]|0; + $165 = $164 ^ $162; + $166 = $160 | $165; + $167 = ((($0)) + 28|0); $168 = HEAP8[$167>>0]|0; - $169 = $168 ^ $166; - $170 = $164 | $169; - $171 = ((($x)) + 29|0); - $172 = HEAP8[$171>>0]|0; - $173 = ((($y)) + 29|0); + $169 = ((($1)) + 28|0); + $170 = HEAP8[$169>>0]|0; + $171 = $170 ^ $168; + $172 = $166 | $171; + $173 = ((($0)) + 29|0); $174 = HEAP8[$173>>0]|0; - $175 = $174 ^ $172; - $176 = $170 | $175; - $177 = ((($x)) + 30|0); - $178 = HEAP8[$177>>0]|0; - $179 = ((($y)) + 30|0); + $175 = ((($1)) + 29|0); + $176 = HEAP8[$175>>0]|0; + $177 = $176 ^ $174; + $178 = $172 | $177; + $179 = ((($0)) + 30|0); $180 = HEAP8[$179>>0]|0; - $181 = $180 ^ $178; - $182 = $176 | $181; - $183 = ((($x)) + 31|0); - $184 = HEAP8[$183>>0]|0; - $185 = ((($y)) + 31|0); + $181 = ((($1)) + 30|0); + $182 = HEAP8[$181>>0]|0; + $183 = $182 ^ $180; + $184 = $178 | $183; + $185 = ((($0)) + 31|0); $186 = HEAP8[$185>>0]|0; - $187 = $186 ^ $184; - $188 = $182 | $187; - $189 = $188&255; - $190 = (($189) + 511)|0; - $191 = $190 >>> 8; - $192 = $191 & 1; - $193 = (($192) + -1)|0; - return ($193|0); -} -function _curve25519_sign($signature_out,$curve25519_privkey,$msg,$msg_len) { - $signature_out = $signature_out|0; - $curve25519_privkey = $curve25519_privkey|0; - $msg = $msg|0; - $msg_len = $msg_len|0; - var $$alloca_mul = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $ed_keypair = 0, $ed_pubkey_point = 0, $sigbuf_out_len = 0; - var dest = 0, label = 0, sp = 0, src = 0, stop = 0; + $187 = ((($1)) + 31|0); + $188 = HEAP8[$187>>0]|0; + $189 = $188 ^ $186; + $190 = $184 | $189; + $191 = $190&255; + $192 = (($191) + 511)|0; + $193 = $192 >>> 8; + $194 = $193 & 1; + $195 = (($194) + -1)|0; + return ($195|0); +} +function _curve25519_sign($0,$1,$2,$3) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + var $$alloca_mul = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, dest = 0, label = 0; + var sp = 0, src = 0, stop = 0; sp = STACKTOP; STACKTOP = STACKTOP + 240|0; - $ed_pubkey_point = sp + 8|0; - $ed_keypair = sp + 168|0; - $sigbuf_out_len = sp; - $0 = (($msg_len) + 64)|0; - $$alloca_mul = $0; - $1 = STACKTOP; STACKTOP = STACKTOP + ((((1*$$alloca_mul)|0)+15)&-16)|0;; - $2 = $sigbuf_out_len; - $3 = $2; - HEAP32[$3>>2] = 0; - $4 = (($2) + 4)|0; - $5 = $4; - HEAP32[$5>>2] = 0; - dest=$ed_keypair; src=$curve25519_privkey; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - _crypto_sign_ed25519_ref10_ge_scalarmult_base($ed_pubkey_point,$curve25519_privkey); - $6 = ((($ed_keypair)) + 32|0); - _crypto_sign_ed25519_ref10_ge_p3_tobytes($6,$ed_pubkey_point); - $7 = ((($ed_keypair)) + 63|0); - $8 = HEAP8[$7>>0]|0; - $9 = $8&255; - $10 = $9 & 128; - (_crypto_sign_modified($1,$sigbuf_out_len,$msg,$msg_len,0,$ed_keypair)|0); - dest=$signature_out; src=$1; stop=dest+64|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - $11 = ((($signature_out)) + 63|0); - $12 = HEAP8[$11>>0]|0; - $13 = $12&255; - $14 = $13 | $10; - $15 = $14&255; - HEAP8[$11>>0] = $15; + $4 = sp + 8|0; + $5 = sp + 168|0; + $6 = sp; + $7 = (($3) + 64)|0; + $8 = (_llvm_stacksave()|0); + $$alloca_mul = $7; + $9 = STACKTOP; STACKTOP = STACKTOP + ((((1*$$alloca_mul)|0)+15)&-16)|0;; + $10 = $6; + $11 = $10; + HEAP32[$11>>2] = 0; + $12 = (($10) + 4)|0; + $13 = $12; + HEAP32[$13>>2] = 0; + dest=$5; src=$1; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _crypto_sign_ed25519_ref10_ge_scalarmult_base($4,$1); + $14 = ((($5)) + 32|0); + _crypto_sign_ed25519_ref10_ge_p3_tobytes($14,$4); + $15 = ((($5)) + 63|0); + $16 = HEAP8[$15>>0]|0; + $17 = $16 & -128; + (_crypto_sign_modified($9,$6,$2,$3,0,$5)|0); + dest=$0; src=$9; stop=dest+64|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $18 = ((($0)) + 63|0); + $19 = HEAP8[$18>>0]|0; + $20 = $19 | $17; + HEAP8[$18>>0] = $20; + _llvm_stackrestore(($8|0)); STACKTOP = sp;return; } -function _curve25519_verify($signature,$curve25519_pubkey,$msg,$msg_len) { - $signature = $signature|0; - $curve25519_pubkey = $curve25519_pubkey|0; - $msg = $msg|0; - $msg_len = $msg_len|0; - var $$alloca_mul = 0, $$alloca_mul1 = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0; - var $ed_pubkey = 0, $ed_y = 0, $inv_mont_x_plus_one = 0, $mont_x = 0, $mont_x_minus_one = 0, $mont_x_plus_one = 0, $one = 0, $some_retval = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; +function _curve25519_verify($0,$1,$2,$3) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + var $$alloca_mul = 0, $$alloca_mul9 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $4 = 0, $5 = 0, $6 = 0; + var $7 = 0, $8 = 0, $9 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; sp = STACKTOP; STACKTOP = STACKTOP + 288|0; - $mont_x = sp + 208|0; - $mont_x_minus_one = sp + 168|0; - $mont_x_plus_one = sp + 128|0; - $inv_mont_x_plus_one = sp + 88|0; - $one = sp + 48|0; - $ed_y = sp + 8|0; - $ed_pubkey = sp + 248|0; - $some_retval = sp; - $0 = (($msg_len) + 64)|0; - $$alloca_mul = $0; - $1 = STACKTOP; STACKTOP = STACKTOP + ((((1*$$alloca_mul)|0)+15)&-16)|0;; - $$alloca_mul1 = $0; - $2 = STACKTOP; STACKTOP = STACKTOP + ((((1*$$alloca_mul1)|0)+15)&-16)|0;; - _crypto_sign_ed25519_ref10_fe_frombytes($mont_x,$curve25519_pubkey); - _crypto_sign_ed25519_ref10_fe_1($one); - _crypto_sign_ed25519_ref10_fe_sub($mont_x_minus_one,$mont_x,$one); - _crypto_sign_ed25519_ref10_fe_add($mont_x_plus_one,$mont_x,$one); - _crypto_sign_ed25519_ref10_fe_invert($inv_mont_x_plus_one,$mont_x_plus_one); - _crypto_sign_ed25519_ref10_fe_mul($ed_y,$mont_x_minus_one,$inv_mont_x_plus_one); - _crypto_sign_ed25519_ref10_fe_tobytes($ed_pubkey,$ed_y); - $3 = ((($signature)) + 63|0); - $4 = HEAP8[$3>>0]|0; - $5 = $4&255; - $6 = $5 & 128; - $7 = ((($ed_pubkey)) + 31|0); - $8 = HEAP8[$7>>0]|0; - $9 = $8&255; - $10 = $9 | $6; - $11 = $10&255; - HEAP8[$7>>0] = $11; - $12 = HEAP8[$3>>0]|0; - $13 = $12&255; - $14 = $13 & 127; - $15 = $14&255; - HEAP8[$3>>0] = $15; - dest=$1; src=$signature; stop=dest+64|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - $16 = ((($1)) + 64|0); - _memcpy(($16|0),($msg|0),($msg_len|0))|0; - $17 = (_crypto_sign_edwards25519sha512batch_ref10_open($2,$some_retval,$1,$0,0,$ed_pubkey)|0); - STACKTOP = sp;return ($17|0); -} -function _crypto_hash_sha512_ref($output,$input,$0,$1) { - $output = $output|0; - $input = $input|0; + $4 = sp + 208|0; + $5 = sp + 168|0; + $6 = sp + 128|0; + $7 = sp + 88|0; + $8 = sp + 48|0; + $9 = sp + 8|0; + $10 = sp + 248|0; + $11 = sp; + $12 = (($3) + 64)|0; + $13 = (_llvm_stacksave()|0); + $$alloca_mul = $12; + $14 = STACKTOP; STACKTOP = STACKTOP + ((((1*$$alloca_mul)|0)+15)&-16)|0;; + $$alloca_mul9 = $12; + $15 = STACKTOP; STACKTOP = STACKTOP + ((((1*$$alloca_mul9)|0)+15)&-16)|0;; + _crypto_sign_ed25519_ref10_fe_frombytes($4,$1); + _crypto_sign_ed25519_ref10_fe_1($8); + _crypto_sign_ed25519_ref10_fe_sub($5,$4,$8); + _crypto_sign_ed25519_ref10_fe_add($6,$4,$8); + _crypto_sign_ed25519_ref10_fe_invert($7,$6); + _crypto_sign_ed25519_ref10_fe_mul($9,$5,$7); + _crypto_sign_ed25519_ref10_fe_tobytes($10,$9); + $16 = ((($0)) + 63|0); + $17 = HEAP8[$16>>0]|0; + $18 = $17 & -128; + $19 = ((($10)) + 31|0); + $20 = HEAP8[$19>>0]|0; + $21 = $20 | $18; + HEAP8[$19>>0] = $21; + $22 = $17 & 127; + HEAP8[$16>>0] = $22; + dest=$14; src=$0; stop=dest+64|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $23 = ((($14)) + 64|0); + _memcpy(($23|0),($2|0),($3|0))|0; + $24 = (_crypto_sign_edwards25519sha512batch_ref10_open($15,$11,$14,$12,0,$10)|0); + _llvm_stackrestore(($13|0)); + STACKTOP = sp;return ($24|0); +} +function _crypto_hash_sha512_ref($0,$1,$2,$3) { $0 = $0|0; $1 = $1|0; - var $ctx = 0, label = 0, sp = 0; + $2 = $2|0; + $3 = $3|0; + var $4 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 208|0; - $ctx = sp; - _sph_sha512_init($ctx); - _sph_sha384($ctx,$input,$0); - _sph_sha512_close($ctx,$output); + $4 = sp; + _sph_sha512_init($4); + _sph_sha384($4,$1,$2); + _sph_sha512_close($4,$0); STACKTOP = sp;return 0; } -function _crypto_sign_modified($sm,$smlen,$m,$0,$1,$sk) { - $sm = $sm|0; - $smlen = $smlen|0; - $m = $m|0; +function _crypto_sign_modified($0,$1,$2,$3,$4,$5) { $0 = $0|0; $1 = $1|0; - $sk = $sk|0; - var $10 = 0, $11 = 0, $12 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $R = 0, $hram = 0, $nonce = 0, $pk1 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + $2 = $2|0; + $3 = $3|0; + $4 = $4|0; + $5 = $5|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; sp = STACKTOP; STACKTOP = STACKTOP + 320|0; - $pk1 = sp + 224|0; - $nonce = sp + 256|0; - $hram = sp + 160|0; - $R = sp; - $2 = ((($sk)) + 32|0); - dest=$pk1; src=$2; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - $3 = (_i64Add(($0|0),($1|0),64,0)|0); - $4 = tempRet0; - $5 = $smlen; - $6 = $5; - HEAP32[$6>>2] = $3; - $7 = (($5) + 4)|0; - $8 = $7; - HEAP32[$8>>2] = $4; - $9 = ((($sm)) + 64|0); - _memmove(($9|0),($m|0),($0|0))|0; - $10 = ((($sm)) + 32|0); - _memmove(($10|0),($sk|0),32)|0; - $11 = (_i64Add(($0|0),($1|0),32,0)|0); + $6 = sp + 288|0; + $7 = sp + 224|0; + $8 = sp + 160|0; + $9 = sp; + $10 = ((($5)) + 32|0); + dest=$6; src=$10; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $11 = (_i64Add(($3|0),($4|0),64,0)|0); $12 = tempRet0; - (_crypto_hash_sha512_ref($nonce,$10,$11,$12)|0); - dest=$10; src=$pk1; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - _crypto_sign_ed25519_ref10_sc_reduce($nonce); - _crypto_sign_ed25519_ref10_ge_scalarmult_base($R,$nonce); - _crypto_sign_ed25519_ref10_ge_p3_tobytes($sm,$R); - (_crypto_hash_sha512_ref($hram,$sm,$3,$4)|0); - _crypto_sign_ed25519_ref10_sc_reduce($hram); - _crypto_sign_ed25519_ref10_sc_muladd($10,$hram,$sk,$nonce); + $13 = $1; + $14 = $13; + HEAP32[$14>>2] = $11; + $15 = (($13) + 4)|0; + $16 = $15; + HEAP32[$16>>2] = $12; + $17 = ((($0)) + 64|0); + _memmove(($17|0),($2|0),($3|0))|0; + $18 = ((($0)) + 32|0); + _memmove(($18|0),($5|0),32)|0; + $19 = (_i64Add(($3|0),($4|0),32,0)|0); + $20 = tempRet0; + (_crypto_hash_sha512_ref($7,$18,$19,$20)|0); + dest=$18; src=$6; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _crypto_sign_ed25519_ref10_sc_reduce($7); + _crypto_sign_ed25519_ref10_ge_scalarmult_base($9,$7); + _crypto_sign_ed25519_ref10_ge_p3_tobytes($0,$9); + (_crypto_hash_sha512_ref($8,$0,$11,$12)|0); + _crypto_sign_ed25519_ref10_sc_reduce($8); + _crypto_sign_ed25519_ref10_sc_muladd($18,$8,$5,$7); STACKTOP = sp;return 0; } -function _curve25519_donna($mypublic,$secret,$basepoint) { - $mypublic = $mypublic|0; - $secret = $secret|0; - $basepoint = $basepoint|0; - var $bp = 0, $e = 0, $x = 0, $z = 0, $zmone = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; +function _curve25519_donna($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; sp = STACKTOP; STACKTOP = STACKTOP + 368|0; - $bp = sp + 248|0; - $x = sp + 168|0; - $z = sp + 80|0; - $zmone = sp; - $e = sp + 328|0; - dest=$e; src=$secret; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - _fexpand($bp,$basepoint); - _cmult($x,$z,$e,$bp); - _crecip($zmone,$z); - _fmul($z,$x,$zmone); - _fcontract($mypublic,$z); + $3 = sp + 248|0; + $4 = sp + 168|0; + $5 = sp + 80|0; + $6 = sp; + $7 = sp + 328|0; + dest=$7; src=$1; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _fexpand($3,$2); + _cmult($4,$5,$7,$3); + _crecip($6,$5); + _fmul($5,$4,$6); + _fcontract($0,$5); STACKTOP = sp;return 0; } -function _fexpand($output,$input) { - $output = $output|0; - $input = $input|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; - var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; - var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; - var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; - var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; - var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $3 = 0, $30 = 0, $31 = 0; +function _fexpand($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0; + var $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0; + var $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0; + var $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0; + var $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0; + var $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $3 = 0, $30 = 0, $31 = 0; var $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0; var $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0; var $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0; var $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP8[$input>>0]|0; - $1 = $0&255; - $2 = ((($input)) + 1|0); - $3 = HEAP8[$2>>0]|0; - $4 = $3&255; - $5 = (_bitshift64Shl(($4|0),0,8)|0); - $6 = tempRet0; - $7 = $5 | $1; - $8 = ((($input)) + 2|0); - $9 = HEAP8[$8>>0]|0; - $10 = $9&255; - $11 = (_bitshift64Shl(($10|0),0,16)|0); - $12 = tempRet0; - $13 = $7 | $11; - $14 = $6 | $12; - $15 = ((($input)) + 3|0); - $16 = HEAP8[$15>>0]|0; - $17 = $16&255; - $18 = (_bitshift64Shl(($17|0),0,24)|0); - $19 = tempRet0; - $20 = $18 & 50331648; - $21 = $13 | $20; - $22 = $output; - $23 = $22; - HEAP32[$23>>2] = $21; - $24 = (($22) + 4)|0; + $2 = HEAP8[$1>>0]|0; + $3 = $2&255; + $4 = ((($1)) + 1|0); + $5 = HEAP8[$4>>0]|0; + $6 = $5&255; + $7 = (_bitshift64Shl(($6|0),0,8)|0); + $8 = tempRet0; + $9 = $7 | $3; + $10 = ((($1)) + 2|0); + $11 = HEAP8[$10>>0]|0; + $12 = $11&255; + $13 = (_bitshift64Shl(($12|0),0,16)|0); + $14 = tempRet0; + $15 = $9 | $13; + $16 = $8 | $14; + $17 = ((($1)) + 3|0); + $18 = HEAP8[$17>>0]|0; + $19 = $18&255; + $20 = (_bitshift64Shl(($19|0),0,24)|0); + $21 = tempRet0; + $22 = $20 & 50331648; + $23 = $15 | $22; + $24 = $0; $25 = $24; - HEAP32[$25>>2] = $14; - $26 = HEAP8[$15>>0]|0; - $27 = $26&255; - $28 = ((($input)) + 4|0); - $29 = HEAP8[$28>>0]|0; - $30 = $29&255; - $31 = (_bitshift64Shl(($30|0),0,8)|0); - $32 = tempRet0; - $33 = $31 | $27; - $34 = ((($input)) + 5|0); - $35 = HEAP8[$34>>0]|0; - $36 = $35&255; - $37 = (_bitshift64Shl(($36|0),0,16)|0); - $38 = tempRet0; - $39 = $33 | $37; - $40 = $32 | $38; - $41 = ((($input)) + 6|0); - $42 = HEAP8[$41>>0]|0; - $43 = $42&255; - $44 = (_bitshift64Shl(($43|0),0,24)|0); - $45 = tempRet0; - $46 = $39 | $44; - $47 = $40 | $45; - $48 = (_bitshift64Lshr(($46|0),($47|0),2)|0); - $49 = tempRet0; - $50 = $48 & 33554431; - $51 = ((($output)) + 8|0); - $52 = $51; - $53 = $52; - HEAP32[$53>>2] = $50; - $54 = (($52) + 4)|0; + HEAP32[$25>>2] = $23; + $26 = (($24) + 4)|0; + $27 = $26; + HEAP32[$27>>2] = $16; + $28 = HEAP8[$17>>0]|0; + $29 = $28&255; + $30 = ((($1)) + 4|0); + $31 = HEAP8[$30>>0]|0; + $32 = $31&255; + $33 = (_bitshift64Shl(($32|0),0,8)|0); + $34 = tempRet0; + $35 = $33 | $29; + $36 = ((($1)) + 5|0); + $37 = HEAP8[$36>>0]|0; + $38 = $37&255; + $39 = (_bitshift64Shl(($38|0),0,16)|0); + $40 = tempRet0; + $41 = $35 | $39; + $42 = $34 | $40; + $43 = ((($1)) + 6|0); + $44 = HEAP8[$43>>0]|0; + $45 = $44&255; + $46 = (_bitshift64Shl(($45|0),0,24)|0); + $47 = tempRet0; + $48 = $41 | $46; + $49 = $42 | $47; + $50 = (_bitshift64Lshr(($48|0),($49|0),2)|0); + $51 = tempRet0; + $52 = $50 & 33554431; + $53 = ((($0)) + 8|0); + $54 = $53; $55 = $54; - HEAP32[$55>>2] = 0; - $56 = HEAP8[$41>>0]|0; - $57 = $56&255; - $58 = ((($input)) + 7|0); - $59 = HEAP8[$58>>0]|0; - $60 = $59&255; - $61 = (_bitshift64Shl(($60|0),0,8)|0); - $62 = tempRet0; - $63 = $61 | $57; - $64 = ((($input)) + 8|0); - $65 = HEAP8[$64>>0]|0; - $66 = $65&255; - $67 = (_bitshift64Shl(($66|0),0,16)|0); - $68 = tempRet0; - $69 = $63 | $67; - $70 = $62 | $68; - $71 = ((($input)) + 9|0); - $72 = HEAP8[$71>>0]|0; - $73 = $72&255; - $74 = (_bitshift64Shl(($73|0),0,24)|0); - $75 = tempRet0; - $76 = $69 | $74; - $77 = $70 | $75; - $78 = (_bitshift64Lshr(($76|0),($77|0),3)|0); - $79 = tempRet0; - $80 = $78 & 67108863; - $81 = ((($output)) + 16|0); - $82 = $81; - $83 = $82; - HEAP32[$83>>2] = $80; - $84 = (($82) + 4)|0; + HEAP32[$55>>2] = $52; + $56 = (($54) + 4)|0; + $57 = $56; + HEAP32[$57>>2] = 0; + $58 = HEAP8[$43>>0]|0; + $59 = $58&255; + $60 = ((($1)) + 7|0); + $61 = HEAP8[$60>>0]|0; + $62 = $61&255; + $63 = (_bitshift64Shl(($62|0),0,8)|0); + $64 = tempRet0; + $65 = $63 | $59; + $66 = ((($1)) + 8|0); + $67 = HEAP8[$66>>0]|0; + $68 = $67&255; + $69 = (_bitshift64Shl(($68|0),0,16)|0); + $70 = tempRet0; + $71 = $65 | $69; + $72 = $64 | $70; + $73 = ((($1)) + 9|0); + $74 = HEAP8[$73>>0]|0; + $75 = $74&255; + $76 = (_bitshift64Shl(($75|0),0,24)|0); + $77 = tempRet0; + $78 = $71 | $76; + $79 = $72 | $77; + $80 = (_bitshift64Lshr(($78|0),($79|0),3)|0); + $81 = tempRet0; + $82 = $80 & 67108863; + $83 = ((($0)) + 16|0); + $84 = $83; $85 = $84; - HEAP32[$85>>2] = 0; - $86 = HEAP8[$71>>0]|0; - $87 = $86&255; - $88 = ((($input)) + 10|0); - $89 = HEAP8[$88>>0]|0; - $90 = $89&255; - $91 = (_bitshift64Shl(($90|0),0,8)|0); - $92 = tempRet0; - $93 = $91 | $87; - $94 = ((($input)) + 11|0); - $95 = HEAP8[$94>>0]|0; - $96 = $95&255; - $97 = (_bitshift64Shl(($96|0),0,16)|0); - $98 = tempRet0; - $99 = $93 | $97; - $100 = $92 | $98; - $101 = ((($input)) + 12|0); - $102 = HEAP8[$101>>0]|0; - $103 = $102&255; - $104 = (_bitshift64Shl(($103|0),0,24)|0); - $105 = tempRet0; - $106 = $99 | $104; - $107 = $100 | $105; - $108 = (_bitshift64Lshr(($106|0),($107|0),5)|0); - $109 = tempRet0; - $110 = $108 & 33554431; - $111 = ((($output)) + 24|0); - $112 = $111; - $113 = $112; - HEAP32[$113>>2] = $110; - $114 = (($112) + 4)|0; + HEAP32[$85>>2] = $82; + $86 = (($84) + 4)|0; + $87 = $86; + HEAP32[$87>>2] = 0; + $88 = HEAP8[$73>>0]|0; + $89 = $88&255; + $90 = ((($1)) + 10|0); + $91 = HEAP8[$90>>0]|0; + $92 = $91&255; + $93 = (_bitshift64Shl(($92|0),0,8)|0); + $94 = tempRet0; + $95 = $93 | $89; + $96 = ((($1)) + 11|0); + $97 = HEAP8[$96>>0]|0; + $98 = $97&255; + $99 = (_bitshift64Shl(($98|0),0,16)|0); + $100 = tempRet0; + $101 = $95 | $99; + $102 = $94 | $100; + $103 = ((($1)) + 12|0); + $104 = HEAP8[$103>>0]|0; + $105 = $104&255; + $106 = (_bitshift64Shl(($105|0),0,24)|0); + $107 = tempRet0; + $108 = $101 | $106; + $109 = $102 | $107; + $110 = (_bitshift64Lshr(($108|0),($109|0),5)|0); + $111 = tempRet0; + $112 = $110 & 33554431; + $113 = ((($0)) + 24|0); + $114 = $113; $115 = $114; - HEAP32[$115>>2] = 0; - $116 = HEAP8[$101>>0]|0; - $117 = $116&255; - $118 = ((($input)) + 13|0); - $119 = HEAP8[$118>>0]|0; - $120 = $119&255; - $121 = (_bitshift64Shl(($120|0),0,8)|0); - $122 = tempRet0; - $123 = $121 | $117; - $124 = ((($input)) + 14|0); - $125 = HEAP8[$124>>0]|0; - $126 = $125&255; - $127 = (_bitshift64Shl(($126|0),0,16)|0); - $128 = tempRet0; - $129 = $123 | $127; - $130 = $122 | $128; - $131 = ((($input)) + 15|0); - $132 = HEAP8[$131>>0]|0; - $133 = $132&255; - $134 = (_bitshift64Shl(($133|0),0,24)|0); - $135 = tempRet0; - $136 = $129 | $134; - $137 = $130 | $135; - $138 = (_bitshift64Lshr(($136|0),($137|0),6)|0); - $139 = tempRet0; - $140 = $138 & 67108863; - $141 = ((($output)) + 32|0); - $142 = $141; - $143 = $142; - HEAP32[$143>>2] = $140; - $144 = (($142) + 4)|0; + HEAP32[$115>>2] = $112; + $116 = (($114) + 4)|0; + $117 = $116; + HEAP32[$117>>2] = 0; + $118 = HEAP8[$103>>0]|0; + $119 = $118&255; + $120 = ((($1)) + 13|0); + $121 = HEAP8[$120>>0]|0; + $122 = $121&255; + $123 = (_bitshift64Shl(($122|0),0,8)|0); + $124 = tempRet0; + $125 = $123 | $119; + $126 = ((($1)) + 14|0); + $127 = HEAP8[$126>>0]|0; + $128 = $127&255; + $129 = (_bitshift64Shl(($128|0),0,16)|0); + $130 = tempRet0; + $131 = $125 | $129; + $132 = $124 | $130; + $133 = ((($1)) + 15|0); + $134 = HEAP8[$133>>0]|0; + $135 = $134&255; + $136 = (_bitshift64Shl(($135|0),0,24)|0); + $137 = tempRet0; + $138 = $131 | $136; + $139 = $132 | $137; + $140 = (_bitshift64Lshr(($138|0),($139|0),6)|0); + $141 = tempRet0; + $142 = $140 & 67108863; + $143 = ((($0)) + 32|0); + $144 = $143; $145 = $144; - HEAP32[$145>>2] = 0; - $146 = ((($input)) + 16|0); - $147 = HEAP8[$146>>0]|0; - $148 = $147&255; - $149 = ((($input)) + 17|0); - $150 = HEAP8[$149>>0]|0; - $151 = $150&255; - $152 = (_bitshift64Shl(($151|0),0,8)|0); - $153 = tempRet0; - $154 = $152 | $148; - $155 = ((($input)) + 18|0); - $156 = HEAP8[$155>>0]|0; - $157 = $156&255; - $158 = (_bitshift64Shl(($157|0),0,16)|0); - $159 = tempRet0; - $160 = $154 | $158; - $161 = $153 | $159; - $162 = ((($input)) + 19|0); - $163 = HEAP8[$162>>0]|0; - $164 = $163&255; - $165 = (_bitshift64Shl(($164|0),0,24)|0); - $166 = tempRet0; - $167 = $165 & 16777216; - $168 = $160 | $167; - $169 = ((($output)) + 40|0); - $170 = $169; - $171 = $170; - HEAP32[$171>>2] = $168; - $172 = (($170) + 4)|0; + HEAP32[$145>>2] = $142; + $146 = (($144) + 4)|0; + $147 = $146; + HEAP32[$147>>2] = 0; + $148 = ((($1)) + 16|0); + $149 = HEAP8[$148>>0]|0; + $150 = $149&255; + $151 = ((($1)) + 17|0); + $152 = HEAP8[$151>>0]|0; + $153 = $152&255; + $154 = (_bitshift64Shl(($153|0),0,8)|0); + $155 = tempRet0; + $156 = $154 | $150; + $157 = ((($1)) + 18|0); + $158 = HEAP8[$157>>0]|0; + $159 = $158&255; + $160 = (_bitshift64Shl(($159|0),0,16)|0); + $161 = tempRet0; + $162 = $156 | $160; + $163 = $155 | $161; + $164 = ((($1)) + 19|0); + $165 = HEAP8[$164>>0]|0; + $166 = $165&255; + $167 = (_bitshift64Shl(($166|0),0,24)|0); + $168 = tempRet0; + $169 = $167 & 16777216; + $170 = $162 | $169; + $171 = ((($0)) + 40|0); + $172 = $171; $173 = $172; - HEAP32[$173>>2] = $161; - $174 = HEAP8[$162>>0]|0; - $175 = $174&255; - $176 = ((($input)) + 20|0); - $177 = HEAP8[$176>>0]|0; - $178 = $177&255; - $179 = (_bitshift64Shl(($178|0),0,8)|0); - $180 = tempRet0; - $181 = $179 | $175; - $182 = ((($input)) + 21|0); - $183 = HEAP8[$182>>0]|0; - $184 = $183&255; - $185 = (_bitshift64Shl(($184|0),0,16)|0); - $186 = tempRet0; - $187 = $181 | $185; - $188 = $180 | $186; - $189 = ((($input)) + 22|0); - $190 = HEAP8[$189>>0]|0; - $191 = $190&255; - $192 = (_bitshift64Shl(($191|0),0,24)|0); - $193 = tempRet0; - $194 = $187 | $192; - $195 = $188 | $193; - $196 = (_bitshift64Lshr(($194|0),($195|0),1)|0); - $197 = tempRet0; - $198 = $196 & 67108863; - $199 = ((($output)) + 48|0); - $200 = $199; - $201 = $200; - HEAP32[$201>>2] = $198; - $202 = (($200) + 4)|0; + HEAP32[$173>>2] = $170; + $174 = (($172) + 4)|0; + $175 = $174; + HEAP32[$175>>2] = $163; + $176 = HEAP8[$164>>0]|0; + $177 = $176&255; + $178 = ((($1)) + 20|0); + $179 = HEAP8[$178>>0]|0; + $180 = $179&255; + $181 = (_bitshift64Shl(($180|0),0,8)|0); + $182 = tempRet0; + $183 = $181 | $177; + $184 = ((($1)) + 21|0); + $185 = HEAP8[$184>>0]|0; + $186 = $185&255; + $187 = (_bitshift64Shl(($186|0),0,16)|0); + $188 = tempRet0; + $189 = $183 | $187; + $190 = $182 | $188; + $191 = ((($1)) + 22|0); + $192 = HEAP8[$191>>0]|0; + $193 = $192&255; + $194 = (_bitshift64Shl(($193|0),0,24)|0); + $195 = tempRet0; + $196 = $189 | $194; + $197 = $190 | $195; + $198 = (_bitshift64Lshr(($196|0),($197|0),1)|0); + $199 = tempRet0; + $200 = $198 & 67108863; + $201 = ((($0)) + 48|0); + $202 = $201; $203 = $202; - HEAP32[$203>>2] = 0; - $204 = HEAP8[$189>>0]|0; - $205 = $204&255; - $206 = ((($input)) + 23|0); - $207 = HEAP8[$206>>0]|0; - $208 = $207&255; - $209 = (_bitshift64Shl(($208|0),0,8)|0); - $210 = tempRet0; - $211 = $209 | $205; - $212 = ((($input)) + 24|0); - $213 = HEAP8[$212>>0]|0; - $214 = $213&255; - $215 = (_bitshift64Shl(($214|0),0,16)|0); - $216 = tempRet0; - $217 = $211 | $215; - $218 = $210 | $216; - $219 = ((($input)) + 25|0); - $220 = HEAP8[$219>>0]|0; - $221 = $220&255; - $222 = (_bitshift64Shl(($221|0),0,24)|0); - $223 = tempRet0; - $224 = $217 | $222; - $225 = $218 | $223; - $226 = (_bitshift64Lshr(($224|0),($225|0),3)|0); - $227 = tempRet0; - $228 = $226 & 33554431; - $229 = ((($output)) + 56|0); - $230 = $229; - $231 = $230; - HEAP32[$231>>2] = $228; - $232 = (($230) + 4)|0; + HEAP32[$203>>2] = $200; + $204 = (($202) + 4)|0; + $205 = $204; + HEAP32[$205>>2] = 0; + $206 = HEAP8[$191>>0]|0; + $207 = $206&255; + $208 = ((($1)) + 23|0); + $209 = HEAP8[$208>>0]|0; + $210 = $209&255; + $211 = (_bitshift64Shl(($210|0),0,8)|0); + $212 = tempRet0; + $213 = $211 | $207; + $214 = ((($1)) + 24|0); + $215 = HEAP8[$214>>0]|0; + $216 = $215&255; + $217 = (_bitshift64Shl(($216|0),0,16)|0); + $218 = tempRet0; + $219 = $213 | $217; + $220 = $212 | $218; + $221 = ((($1)) + 25|0); + $222 = HEAP8[$221>>0]|0; + $223 = $222&255; + $224 = (_bitshift64Shl(($223|0),0,24)|0); + $225 = tempRet0; + $226 = $219 | $224; + $227 = $220 | $225; + $228 = (_bitshift64Lshr(($226|0),($227|0),3)|0); + $229 = tempRet0; + $230 = $228 & 33554431; + $231 = ((($0)) + 56|0); + $232 = $231; $233 = $232; - HEAP32[$233>>2] = 0; - $234 = HEAP8[$219>>0]|0; - $235 = $234&255; - $236 = ((($input)) + 26|0); - $237 = HEAP8[$236>>0]|0; - $238 = $237&255; - $239 = (_bitshift64Shl(($238|0),0,8)|0); - $240 = tempRet0; - $241 = $239 | $235; - $242 = ((($input)) + 27|0); - $243 = HEAP8[$242>>0]|0; - $244 = $243&255; - $245 = (_bitshift64Shl(($244|0),0,16)|0); - $246 = tempRet0; - $247 = $241 | $245; - $248 = $240 | $246; - $249 = ((($input)) + 28|0); - $250 = HEAP8[$249>>0]|0; - $251 = $250&255; - $252 = (_bitshift64Shl(($251|0),0,24)|0); - $253 = tempRet0; - $254 = $247 | $252; - $255 = $248 | $253; - $256 = (_bitshift64Lshr(($254|0),($255|0),4)|0); - $257 = tempRet0; - $258 = $256 & 67108863; - $259 = ((($output)) + 64|0); - $260 = $259; - $261 = $260; - HEAP32[$261>>2] = $258; - $262 = (($260) + 4)|0; + HEAP32[$233>>2] = $230; + $234 = (($232) + 4)|0; + $235 = $234; + HEAP32[$235>>2] = 0; + $236 = HEAP8[$221>>0]|0; + $237 = $236&255; + $238 = ((($1)) + 26|0); + $239 = HEAP8[$238>>0]|0; + $240 = $239&255; + $241 = (_bitshift64Shl(($240|0),0,8)|0); + $242 = tempRet0; + $243 = $241 | $237; + $244 = ((($1)) + 27|0); + $245 = HEAP8[$244>>0]|0; + $246 = $245&255; + $247 = (_bitshift64Shl(($246|0),0,16)|0); + $248 = tempRet0; + $249 = $243 | $247; + $250 = $242 | $248; + $251 = ((($1)) + 28|0); + $252 = HEAP8[$251>>0]|0; + $253 = $252&255; + $254 = (_bitshift64Shl(($253|0),0,24)|0); + $255 = tempRet0; + $256 = $249 | $254; + $257 = $250 | $255; + $258 = (_bitshift64Lshr(($256|0),($257|0),4)|0); + $259 = tempRet0; + $260 = $258 & 67108863; + $261 = ((($0)) + 64|0); + $262 = $261; $263 = $262; - HEAP32[$263>>2] = 0; - $264 = HEAP8[$249>>0]|0; - $265 = $264&255; - $266 = ((($input)) + 29|0); - $267 = HEAP8[$266>>0]|0; - $268 = $267&255; - $269 = (_bitshift64Shl(($268|0),0,8)|0); - $270 = tempRet0; - $271 = $269 | $265; - $272 = ((($input)) + 30|0); - $273 = HEAP8[$272>>0]|0; - $274 = $273&255; - $275 = (_bitshift64Shl(($274|0),0,16)|0); - $276 = tempRet0; - $277 = $271 | $275; - $278 = $270 | $276; - $279 = ((($input)) + 31|0); - $280 = HEAP8[$279>>0]|0; - $281 = $280&255; - $282 = (_bitshift64Shl(($281|0),0,24)|0); - $283 = tempRet0; - $284 = $277 | $282; - $285 = $278 | $283; - $286 = (_bitshift64Lshr(($284|0),($285|0),6)|0); - $287 = tempRet0; - $288 = $286 & 33554431; - $289 = ((($output)) + 72|0); - $290 = $289; - $291 = $290; - HEAP32[$291>>2] = $288; - $292 = (($290) + 4)|0; + HEAP32[$263>>2] = $260; + $264 = (($262) + 4)|0; + $265 = $264; + HEAP32[$265>>2] = 0; + $266 = HEAP8[$251>>0]|0; + $267 = $266&255; + $268 = ((($1)) + 29|0); + $269 = HEAP8[$268>>0]|0; + $270 = $269&255; + $271 = (_bitshift64Shl(($270|0),0,8)|0); + $272 = tempRet0; + $273 = $271 | $267; + $274 = ((($1)) + 30|0); + $275 = HEAP8[$274>>0]|0; + $276 = $275&255; + $277 = (_bitshift64Shl(($276|0),0,16)|0); + $278 = tempRet0; + $279 = $273 | $277; + $280 = $272 | $278; + $281 = ((($1)) + 31|0); + $282 = HEAP8[$281>>0]|0; + $283 = $282&255; + $284 = (_bitshift64Shl(($283|0),0,24)|0); + $285 = tempRet0; + $286 = $279 | $284; + $287 = $280 | $285; + $288 = (_bitshift64Lshr(($286|0),($287|0),6)|0); + $289 = tempRet0; + $290 = $288 & 33554431; + $291 = ((($0)) + 72|0); + $292 = $291; $293 = $292; - HEAP32[$293>>2] = 0; + HEAP32[$293>>2] = $290; + $294 = (($292) + 4)|0; + $295 = $294; + HEAP32[$295>>2] = 0; return; } -function _cmult($resultx,$resultz,$n,$q) { - $resultx = $resultx|0; - $resultz = $resultz|0; - $n = $n|0; - $q = $q|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $3 = 0, $4 = 0; - var $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $a = 0, $b = 0, $byte$09 = 0, $c = 0, $d = 0, $e = 0, $exitcond = 0, $exitcond20 = 0, $f = 0, $g = 0, $h = 0, $i$018 = 0, $j$08 = 0, $nqpqx$019 = 0, $nqpqx$110 = 0; - var $nqpqx$110$lcssa = 0, $nqpqx$110$phi = 0, $nqpqx2$014 = 0, $nqpqx2$14 = 0, $nqpqx2$14$lcssa = 0, $nqpqx2$14$phi = 0, $nqpqz$013 = 0, $nqpqz$13 = 0, $nqpqz$13$lcssa = 0, $nqpqz$13$phi = 0, $nqpqz2$015 = 0, $nqpqz2$15 = 0, $nqpqz2$15$lcssa = 0, $nqpqz2$15$phi = 0, $nqx$011 = 0, $nqx$11 = 0, $nqx$11$lcssa = 0, $nqx$11$phi = 0, $nqx2$016 = 0, $nqx2$16 = 0; - var $nqx2$16$lcssa = 0, $nqx2$16$lcssa$lcssa = 0, $nqx2$16$phi = 0, $nqz$012 = 0, $nqz$12 = 0, $nqz$12$lcssa = 0, $nqz$12$phi = 0, $nqz2$017 = 0, $nqz2$17 = 0, $nqz2$17$lcssa = 0, $nqz2$17$lcssa$lcssa = 0, $nqz2$17$phi = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; +function _cmult($0,$1,$2,$3) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + var $$0104 = 0, $$06994 = 0, $$07093 = 0, $$071103 = 0, $$072102 = 0, $$074101 = 0, $$076100 = 0, $$07899 = 0, $$08098 = 0, $$08297 = 0, $$08496 = 0, $$17392 = 0, $$17392$phi = 0, $$17591 = 0, $$17591$phi = 0, $$17790 = 0, $$17790$phi = 0, $$17989 = 0, $$17989$phi = 0, $$18188 = 0; + var $$18188$phi = 0, $$18387 = 0, $$18387$phi = 0, $$18586 = 0, $$18586$phi = 0, $$195 = 0, $$195$phi = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0; + var $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0; + var $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $exitcond = 0, $exitcond105 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; sp = STACKTOP; STACKTOP = STACKTOP + 1216|0; - $a = sp + 1064|0; - $b = sp + 912|0; - $c = sp + 760|0; - $d = sp + 608|0; - $e = sp + 456|0; - $f = sp + 304|0; - $g = sp + 152|0; - $h = sp; - _memset(($a|0),0,152)|0; - _memset(($b|0),0,152)|0; - $0 = $b; - $1 = $0; - HEAP32[$1>>2] = 1; - $2 = (($0) + 4)|0; - $3 = $2; - HEAP32[$3>>2] = 0; - _memset(($c|0),0,152)|0; - $4 = $c; - $5 = $4; - HEAP32[$5>>2] = 1; - $6 = (($4) + 4)|0; - $7 = $6; - HEAP32[$7>>2] = 0; - _memset(($d|0),0,152)|0; - _memset(($e|0),0,152)|0; - _memset(($f|0),0,152)|0; - $8 = $f; - $9 = $8; - HEAP32[$9>>2] = 1; - $10 = (($8) + 4)|0; - $11 = $10; - HEAP32[$11>>2] = 0; - _memset(($g|0),0,152)|0; - _memset(($h|0),0,152)|0; - $12 = $h; - $13 = $12; - HEAP32[$13>>2] = 1; - $14 = (($12) + 4)|0; - $15 = $14; - HEAP32[$15>>2] = 0; - dest=$a; src=$q; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - $i$018 = 0;$nqpqx$019 = $a;$nqpqx2$014 = $e;$nqpqz$013 = $b;$nqpqz2$015 = $f;$nqx$011 = $c;$nqx2$016 = $g;$nqz$012 = $d;$nqz2$017 = $h; + $4 = sp + 1064|0; + $5 = sp + 912|0; + $6 = sp + 760|0; + $7 = sp + 608|0; + $8 = sp + 456|0; + $9 = sp + 304|0; + $10 = sp + 152|0; + $11 = sp; + $12 = ((($5)) + 8|0); + _memset(($12|0),0,144)|0; + $13 = $5; + $14 = $13; + HEAP32[$14>>2] = 1; + $15 = (($13) + 4)|0; + $16 = $15; + HEAP32[$16>>2] = 0; + $17 = ((($6)) + 8|0); + _memset(($17|0),0,144)|0; + $18 = $6; + $19 = $18; + HEAP32[$19>>2] = 1; + $20 = (($18) + 4)|0; + $21 = $20; + HEAP32[$21>>2] = 0; + _memset(($7|0),0,152)|0; + _memset(($8|0),0,152)|0; + $22 = ((($9)) + 8|0); + _memset(($22|0),0,144)|0; + $23 = $9; + $24 = $23; + HEAP32[$24>>2] = 1; + $25 = (($23) + 4)|0; + $26 = $25; + HEAP32[$26>>2] = 0; + _memset(($10|0),0,152)|0; + $27 = ((($11)) + 8|0); + _memset(($27|0),0,144)|0; + $28 = $11; + $29 = $28; + HEAP32[$29>>2] = 1; + $30 = (($28) + 4)|0; + $31 = $30; + HEAP32[$31>>2] = 0; + $32 = ((($4)) + 80|0); + dest=$32; stop=dest+72|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); + dest=$4; src=$3; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + $$0104 = $4;$$071103 = 0;$$072102 = $11;$$074101 = $10;$$076100 = $9;$$07899 = $8;$$08098 = $5;$$08297 = $7;$$08496 = $6; while(1) { - $16 = (31 - ($i$018))|0; - $17 = (($n) + ($16)|0); - $18 = HEAP8[$17>>0]|0; - $byte$09 = $18;$j$08 = 0;$nqpqx$110 = $nqpqx$019;$nqpqx2$14 = $nqpqx2$014;$nqpqz$13 = $nqpqz$013;$nqpqz2$15 = $nqpqz2$015;$nqx$11 = $nqx$011;$nqx2$16 = $nqx2$016;$nqz$12 = $nqz$012;$nqz2$17 = $nqz2$017; + $33 = (31 - ($$071103))|0; + $34 = (($2) + ($33)|0); + $35 = HEAP8[$34>>0]|0; + $$06994 = $35;$$07093 = 0;$$17392 = $$072102;$$17591 = $$074101;$$17790 = $$076100;$$17989 = $$07899;$$18188 = $$08098;$$18387 = $$08297;$$18586 = $$08496;$$195 = $$0104; while(1) { - $19 = $byte$09&255; - $20 = $19 >>> 7; - _swap_conditional($nqx$11,$nqpqx$110,$20,0); - _swap_conditional($nqz$12,$nqpqz$13,$20,0); - _fmonty($nqx2$16,$nqz2$17,$nqpqx2$14,$nqpqz2$15,$nqx$11,$nqz$12,$nqpqx$110,$nqpqz$13,$q); - _swap_conditional($nqx2$16,$nqpqx2$14,$20,0); - _swap_conditional($nqz2$17,$nqpqz2$15,$20,0); - $21 = $19 << 1; - $22 = $21&255; - $23 = (($j$08) + 1)|0; - $exitcond = ($23|0)==(8); + $36 = $$06994&255; + $37 = $36 >>> 7; + _swap_conditional($$18586,$$195,$37,0); + _swap_conditional($$18387,$$18188,$37,0); + _fmonty($$17591,$$17392,$$17989,$$17790,$$18586,$$18387,$$195,$$18188,$3); + _swap_conditional($$17591,$$17989,$37,0); + _swap_conditional($$17392,$$17790,$37,0); + $38 = $36 << 1; + $39 = $38&255; + $40 = (($$07093) + 1)|0; + $exitcond = ($40|0)==(8); if ($exitcond) { - $nqpqx$110$lcssa = $nqpqx$110;$nqpqx2$14$lcssa = $nqpqx2$14;$nqpqz$13$lcssa = $nqpqz$13;$nqpqz2$15$lcssa = $nqpqz2$15;$nqx$11$lcssa = $nqx$11;$nqx2$16$lcssa = $nqx2$16;$nqz$12$lcssa = $nqz$12;$nqz2$17$lcssa = $nqz2$17; break; } else { - $nqz2$17$phi = $nqz$12;$nqz$12$phi = $nqz2$17;$nqx2$16$phi = $nqx$11;$nqx$11$phi = $nqx2$16;$nqpqz2$15$phi = $nqpqz$13;$nqpqz$13$phi = $nqpqz2$15;$nqpqx2$14$phi = $nqpqx$110;$nqpqx$110$phi = $nqpqx2$14;$byte$09 = $22;$j$08 = $23;$nqz2$17 = $nqz2$17$phi;$nqz$12 = $nqz$12$phi;$nqx2$16 = $nqx2$16$phi;$nqx$11 = $nqx$11$phi;$nqpqz2$15 = $nqpqz2$15$phi;$nqpqz$13 = $nqpqz$13$phi;$nqpqx2$14 = $nqpqx2$14$phi;$nqpqx$110 = $nqpqx$110$phi; + $$195$phi = $$17989;$$18586$phi = $$17591;$$18387$phi = $$17392;$$18188$phi = $$17790;$$17989$phi = $$195;$$17790$phi = $$18188;$$17591$phi = $$18586;$$17392$phi = $$18387;$$06994 = $39;$$07093 = $40;$$195 = $$195$phi;$$18586 = $$18586$phi;$$18387 = $$18387$phi;$$18188 = $$18188$phi;$$17989 = $$17989$phi;$$17790 = $$17790$phi;$$17591 = $$17591$phi;$$17392 = $$17392$phi; } } - $24 = (($i$018) + 1)|0; - $exitcond20 = ($24|0)==(32); - if ($exitcond20) { - $nqx2$16$lcssa$lcssa = $nqx2$16$lcssa;$nqz2$17$lcssa$lcssa = $nqz2$17$lcssa; + $41 = (($$071103) + 1)|0; + $exitcond105 = ($41|0)==(32); + if ($exitcond105) { break; } else { - $i$018 = $24;$nqpqx$019 = $nqpqx2$14$lcssa;$nqpqx2$014 = $nqpqx$110$lcssa;$nqpqz$013 = $nqpqz2$15$lcssa;$nqpqz2$015 = $nqpqz$13$lcssa;$nqx$011 = $nqx2$16$lcssa;$nqx2$016 = $nqx$11$lcssa;$nqz$012 = $nqz2$17$lcssa;$nqz2$017 = $nqz$12$lcssa; + $$0104 = $$17989;$$071103 = $41;$$072102 = $$18387;$$074101 = $$18586;$$076100 = $$18188;$$07899 = $$195;$$08098 = $$17790;$$08297 = $$17392;$$08496 = $$17591; } } - dest=$resultx; src=$nqx2$16$lcssa$lcssa; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - dest=$resultz; src=$nqz2$17$lcssa$lcssa; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + dest=$0; src=$$17591; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + dest=$1; src=$$17392; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); STACKTOP = sp;return; } -function _crecip($out,$z) { - $out = $out|0; - $z = $z|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $i$33 = 0, $i$42 = 0, $i$51 = 0, $t0 = 0, $t1 = 0, $z11 = 0, $z2 = 0, $z2_100_0 = 0, $z2_10_0 = 0, $z2_20_0 = 0, $z2_50_0 = 0, $z2_5_0 = 0, $z9 = 0, label = 0; +function _crecip($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$317 = 0, $$416 = 0, $$515 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0; var sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 800|0; - $z2 = sp + 720|0; - $z9 = sp + 640|0; - $z11 = sp + 560|0; - $z2_5_0 = sp + 480|0; - $z2_10_0 = sp + 400|0; - $z2_20_0 = sp + 320|0; - $z2_50_0 = sp + 240|0; - $z2_100_0 = sp + 160|0; - $t0 = sp + 80|0; - $t1 = sp; - _fsquare($z2,$z); - _fsquare($t1,$z2); - _fsquare($t0,$t1); - _fmul($z9,$t0,$z); - _fmul($z11,$z9,$z2); - _fsquare($t0,$z11); - _fmul($z2_5_0,$t0,$z9); - _fsquare($t0,$z2_5_0); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fmul($z2_10_0,$t0,$z2_5_0); - _fsquare($t0,$z2_10_0); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fmul($z2_20_0,$t1,$z2_10_0); - _fsquare($t0,$z2_20_0); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fmul($t0,$t1,$z2_20_0); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fmul($z2_50_0,$t0,$z2_10_0); - _fsquare($t0,$z2_50_0); - _fsquare($t1,$t0); - $i$33 = 2; + $2 = sp + 720|0; + $3 = sp + 640|0; + $4 = sp + 560|0; + $5 = sp + 480|0; + $6 = sp + 400|0; + $7 = sp + 320|0; + $8 = sp + 240|0; + $9 = sp + 160|0; + $10 = sp + 80|0; + $11 = sp; + _fsquare($2,$1); + _fsquare($11,$2); + _fsquare($10,$11); + _fmul($3,$10,$1); + _fmul($4,$3,$2); + _fsquare($10,$4); + _fmul($5,$10,$3); + _fsquare($10,$5); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fmul($6,$10,$5); + _fsquare($10,$6); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fmul($7,$11,$6); + _fsquare($10,$7); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fmul($10,$11,$7); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fmul($8,$10,$6); + _fsquare($10,$8); + _fsquare($11,$10); + $$317 = 2; while(1) { - _fsquare($t0,$t1); - _fsquare($t1,$t0); - $0 = (($i$33) + 2)|0; - $1 = ($0|0)<(50); - if ($1) { - $i$33 = $0; + _fsquare($10,$11); + _fsquare($11,$10); + $12 = (($$317) + 2)|0; + $13 = ($12|0)<(50); + if ($13) { + $$317 = $12; } else { break; } } - _fmul($z2_100_0,$t1,$z2_50_0); - _fsquare($t1,$z2_100_0); - _fsquare($t0,$t1); - $i$42 = 2; + _fmul($9,$11,$8); + _fsquare($11,$9); + _fsquare($10,$11); + $$416 = 2; while(1) { - _fsquare($t1,$t0); - _fsquare($t0,$t1); - $2 = (($i$42) + 2)|0; - $3 = ($2|0)<(100); - if ($3) { - $i$42 = $2; + _fsquare($11,$10); + _fsquare($10,$11); + $14 = (($$416) + 2)|0; + $15 = ($14|0)<(100); + if ($15) { + $$416 = $14; } else { break; } } - _fmul($t1,$t0,$z2_100_0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - $i$51 = 2; + _fmul($11,$10,$9); + _fsquare($10,$11); + _fsquare($11,$10); + $$515 = 2; while(1) { - _fsquare($t0,$t1); - _fsquare($t1,$t0); - $4 = (($i$51) + 2)|0; - $5 = ($4|0)<(50); - if ($5) { - $i$51 = $4; + _fsquare($10,$11); + _fsquare($11,$10); + $16 = (($$515) + 2)|0; + $17 = ($16|0)<(50); + if ($17) { + $$515 = $16; } else { break; } } - _fmul($t0,$t1,$z2_50_0); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fsquare($t0,$t1); - _fsquare($t1,$t0); - _fmul($out,$t1,$z11); + _fmul($10,$11,$8); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fsquare($10,$11); + _fsquare($11,$10); + _fmul($0,$11,$4); STACKTOP = sp;return; } -function _fmul($output,$in,$in2) { - $output = $output|0; - $in = $in|0; - $in2 = $in2|0; - var $t = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; +function _fmul($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $3 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; sp = STACKTOP; STACKTOP = STACKTOP + 160|0; - $t = sp; - _fproduct($t,$in,$in2); - _freduce_degree($t); - _freduce_coefficients($t); - dest=$output; src=$t; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + $3 = sp; + _fproduct($3,$1,$2); + _freduce_degree($3); + _freduce_coefficients($3); + dest=$0; src=$3; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); STACKTOP = sp;return; } -function _fcontract($output,$input_limbs) { - $output = $output|0; - $input_limbs = $input_limbs|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; - var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; - var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; - var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; - var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; - var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; - var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; - var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; - var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; - var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; - var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; - var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; - var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0; - var $422 = 0, $423 = 0, $424 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0; - var $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0; - var $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0; - var $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $exitcond = 0, $exitcond$1 = 0, $exitcond13 = 0, $exitcond13$1 = 0, $i$18 = 0, $i$18$1 = 0, $i$26 = 0, $i$26$1 = 0, $input = 0, $mask$1 = 0, $mask$1$1 = 0, $mask$1$2 = 0, $mask$1$3 = 0, $mask$1$4 = 0, $mask$1$5 = 0; - var $mask$1$6 = 0, $mask$1$7 = 0, $mask$1$8 = 0, label = 0, sp = 0; +function _fcontract($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$0135149 = 0, $$1136 = 0, $$3150 = 0, $$promoted = 0, $$promoted163 = 0, $$promoted165 = 0, $$promoted167 = 0, $$promoted169 = 0, $$promoted171 = 0, $$promoted173 = 0, $$promoted175 = 0, $$promoted177 = 0, $$promoted179 = 0, $$sink141 = 0, $$sink141$1 = 0, $$sink141$1$1 = 0, $$sink141$1199 = 0, $$sink141$2 = 0, $$sink141$2$1 = 0, $$sink141$3 = 0; + var $$sink141$3$1 = 0, $$sink141$4 = 0, $$sink141$4$1 = 0, $$sink141$5 = 0, $$sink141$5$1 = 0, $$sink141$6 = 0, $$sink141$6$1 = 0, $$sink141$7 = 0, $$sink141$7$1 = 0, $$sink141$8 = 0, $$sink141$8$1 = 0, $$sink3 = 0, $$sink3$1 = 0, $$sink3$2 = 0, $$sink3$3 = 0, $$sink3$4 = 0, $$sink3$5 = 0, $$sink3$6 = 0, $$sink3$7 = 0, $$sink3$8 = 0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0; + var $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0; + var $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0; + var $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0; + var $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0; + var $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0; + var $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0; + var $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0; + var $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0; + var $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0; + var $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0; + var $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0; + var $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0; + var $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0; + var $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0; + var $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0; + var $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0; + var $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0; + var $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; + var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; + var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $exitcond = 0, label = 0; + var sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 48|0; - $input = sp; - $0 = $input_limbs; - $1 = $0; - $2 = HEAP32[$1>>2]|0; - $3 = (($0) + 4)|0; + $2 = sp; + $3 = $1; $4 = $3; $5 = HEAP32[$4>>2]|0; - HEAP32[$input>>2] = $2; - $6 = ((($input_limbs)) + 8|0); + $6 = (($3) + 4)|0; $7 = $6; - $8 = $7; - $9 = HEAP32[$8>>2]|0; - $10 = (($7) + 4)|0; + $8 = HEAP32[$7>>2]|0; + HEAP32[$2>>2] = $5; + $9 = ((($1)) + 8|0); + $10 = $9; $11 = $10; $12 = HEAP32[$11>>2]|0; - $13 = ((($input)) + 4|0); - HEAP32[$13>>2] = $9; - $14 = ((($input_limbs)) + 16|0); - $15 = $14; - $16 = $15; - $17 = HEAP32[$16>>2]|0; - $18 = (($15) + 4)|0; + $13 = (($10) + 4)|0; + $14 = $13; + $15 = HEAP32[$14>>2]|0; + $16 = ((($2)) + 4|0); + HEAP32[$16>>2] = $12; + $17 = ((($1)) + 16|0); + $18 = $17; $19 = $18; $20 = HEAP32[$19>>2]|0; - $21 = ((($input)) + 8|0); - HEAP32[$21>>2] = $17; - $22 = ((($input_limbs)) + 24|0); - $23 = $22; - $24 = $23; - $25 = HEAP32[$24>>2]|0; - $26 = (($23) + 4)|0; + $21 = (($18) + 4)|0; + $22 = $21; + $23 = HEAP32[$22>>2]|0; + $24 = ((($2)) + 8|0); + HEAP32[$24>>2] = $20; + $25 = ((($1)) + 24|0); + $26 = $25; $27 = $26; $28 = HEAP32[$27>>2]|0; - $29 = ((($input)) + 12|0); - HEAP32[$29>>2] = $25; - $30 = ((($input_limbs)) + 32|0); - $31 = $30; - $32 = $31; - $33 = HEAP32[$32>>2]|0; - $34 = (($31) + 4)|0; + $29 = (($26) + 4)|0; + $30 = $29; + $31 = HEAP32[$30>>2]|0; + $32 = ((($2)) + 12|0); + HEAP32[$32>>2] = $28; + $33 = ((($1)) + 32|0); + $34 = $33; $35 = $34; $36 = HEAP32[$35>>2]|0; - $37 = ((($input)) + 16|0); - HEAP32[$37>>2] = $33; - $38 = ((($input_limbs)) + 40|0); - $39 = $38; - $40 = $39; - $41 = HEAP32[$40>>2]|0; - $42 = (($39) + 4)|0; + $37 = (($34) + 4)|0; + $38 = $37; + $39 = HEAP32[$38>>2]|0; + $40 = ((($2)) + 16|0); + HEAP32[$40>>2] = $36; + $41 = ((($1)) + 40|0); + $42 = $41; $43 = $42; $44 = HEAP32[$43>>2]|0; - $45 = ((($input)) + 20|0); - HEAP32[$45>>2] = $41; - $46 = ((($input_limbs)) + 48|0); - $47 = $46; - $48 = $47; - $49 = HEAP32[$48>>2]|0; - $50 = (($47) + 4)|0; + $45 = (($42) + 4)|0; + $46 = $45; + $47 = HEAP32[$46>>2]|0; + $48 = ((($2)) + 20|0); + HEAP32[$48>>2] = $44; + $49 = ((($1)) + 48|0); + $50 = $49; $51 = $50; $52 = HEAP32[$51>>2]|0; - $53 = ((($input)) + 24|0); - HEAP32[$53>>2] = $49; - $54 = ((($input_limbs)) + 56|0); - $55 = $54; - $56 = $55; - $57 = HEAP32[$56>>2]|0; - $58 = (($55) + 4)|0; + $53 = (($50) + 4)|0; + $54 = $53; + $55 = HEAP32[$54>>2]|0; + $56 = ((($2)) + 24|0); + HEAP32[$56>>2] = $52; + $57 = ((($1)) + 56|0); + $58 = $57; $59 = $58; $60 = HEAP32[$59>>2]|0; - $61 = ((($input)) + 28|0); - HEAP32[$61>>2] = $57; - $62 = ((($input_limbs)) + 64|0); - $63 = $62; - $64 = $63; - $65 = HEAP32[$64>>2]|0; - $66 = (($63) + 4)|0; + $61 = (($58) + 4)|0; + $62 = $61; + $63 = HEAP32[$62>>2]|0; + $64 = ((($2)) + 28|0); + HEAP32[$64>>2] = $60; + $65 = ((($1)) + 64|0); + $66 = $65; $67 = $66; $68 = HEAP32[$67>>2]|0; - $69 = ((($input)) + 32|0); - HEAP32[$69>>2] = $65; - $70 = ((($input_limbs)) + 72|0); - $71 = $70; - $72 = $71; - $73 = HEAP32[$72>>2]|0; - $74 = (($71) + 4)|0; + $69 = (($66) + 4)|0; + $70 = $69; + $71 = HEAP32[$70>>2]|0; + $72 = ((($2)) + 32|0); + HEAP32[$72>>2] = $68; + $73 = ((($1)) + 72|0); + $74 = $73; $75 = $74; $76 = HEAP32[$75>>2]|0; - $77 = ((($input)) + 36|0); - HEAP32[$77>>2] = $73; - $78 = ((($input)) + 36|0); - $i$18 = 0; - while(1) { - $79 = $i$18 & 1; - $80 = ($79|0)==(0); - $81 = (($input) + ($i$18<<2)|0); - $82 = HEAP32[$81>>2]|0; - $83 = $82 >> 31; - $84 = $83 & $82; - if ($80) { - $92 = $84 >> 26; - $93 = Math_imul($92, -67108864)|0; - $94 = (($93) + ($82))|0; - HEAP32[$81>>2] = $94; - $95 = (($i$18) + 1)|0; - $96 = (($input) + ($95<<2)|0); - $97 = HEAP32[$96>>2]|0; - $98 = (($97) + ($92))|0; - HEAP32[$96>>2] = $98; - } else { - $85 = $84 >> 25; - $86 = Math_imul($85, -33554432)|0; - $87 = (($86) + ($82))|0; - HEAP32[$81>>2] = $87; - $88 = (($i$18) + 1)|0; - $89 = (($input) + ($88<<2)|0); - $90 = HEAP32[$89>>2]|0; - $91 = (($90) + ($85))|0; - HEAP32[$89>>2] = $91; - } - $99 = (($i$18) + 1)|0; - $exitcond13 = ($99|0)==(9); - if ($exitcond13) { - break; - } else { - $i$18 = $99; - } - } - $100 = HEAP32[$78>>2]|0; - $101 = $100 >> 31; - $102 = $101 & $100; - $103 = $102 >> 25; - $104 = Math_imul($103, -33554432)|0; - $105 = (($104) + ($100))|0; - HEAP32[$78>>2] = $105; - $106 = HEAP32[$input>>2]|0; - $107 = ($103*19)|0; - $108 = (($107) + ($106))|0; - HEAP32[$input>>2] = $108; - $i$18$1 = 0; - while(1) { - $404 = $i$18$1 & 1; - $405 = ($404|0)==(0); - $406 = (($input) + ($i$18$1<<2)|0); - $407 = HEAP32[$406>>2]|0; - $408 = $407 >> 31; - $409 = $408 & $407; - if ($405) { - $417 = $409 >> 26; - $418 = Math_imul($417, -67108864)|0; - $419 = (($418) + ($407))|0; - HEAP32[$406>>2] = $419; - $420 = (($i$18$1) + 1)|0; - $421 = (($input) + ($420<<2)|0); - $422 = HEAP32[$421>>2]|0; - $423 = (($422) + ($417))|0; - HEAP32[$421>>2] = $423; - } else { - $410 = $409 >> 25; - $411 = Math_imul($410, -33554432)|0; - $412 = (($411) + ($407))|0; - HEAP32[$406>>2] = $412; - $413 = (($i$18$1) + 1)|0; - $414 = (($input) + ($413<<2)|0); - $415 = HEAP32[$414>>2]|0; - $416 = (($415) + ($410))|0; - HEAP32[$414>>2] = $416; - } - $424 = (($i$18$1) + 1)|0; - $exitcond13$1 = ($424|0)==(9); - if ($exitcond13$1) { - break; - } else { - $i$18$1 = $424; - } - } - $109 = HEAP32[$78>>2]|0; - $110 = $109 >> 31; - $111 = $110 & $109; - $112 = $111 >> 25; - $113 = Math_imul($112, -33554432)|0; - $114 = (($113) + ($109))|0; - HEAP32[$78>>2] = $114; - $115 = HEAP32[$input>>2]|0; - $116 = ($112*19)|0; - $117 = (($116) + ($115))|0; - $118 = $117 >> 31; - $119 = $118 & $117; - $120 = $119 >> 26; - $121 = Math_imul($120, -67108864)|0; - $122 = (($121) + ($117))|0; - HEAP32[$input>>2] = $122; - $123 = ((($input)) + 4|0); - $124 = HEAP32[$123>>2]|0; - $125 = (($120) + ($124))|0; - HEAP32[$123>>2] = $125; - $126 = ((($input)) + 36|0); - $i$26 = 0; + $77 = (($74) + 4)|0; + $78 = $77; + $79 = HEAP32[$78>>2]|0; + $80 = ((($2)) + 36|0); + HEAP32[$80>>2] = $76; + $81 = ((($2)) + 4|0); + $82 = ((($2)) + 8|0); + $83 = ((($2)) + 12|0); + $84 = ((($2)) + 16|0); + $85 = ((($2)) + 20|0); + $86 = ((($2)) + 24|0); + $87 = ((($2)) + 28|0); + $88 = ((($2)) + 32|0); + $89 = ((($2)) + 36|0); + $$promoted163 = HEAP32[$2>>2]|0; + $$promoted179 = HEAP32[$89>>2]|0; + $$promoted177 = HEAP32[$88>>2]|0; + $$promoted175 = HEAP32[$87>>2]|0; + $$promoted173 = HEAP32[$86>>2]|0; + $$promoted171 = HEAP32[$85>>2]|0; + $$promoted169 = HEAP32[$84>>2]|0; + $$promoted167 = HEAP32[$83>>2]|0; + $$promoted165 = HEAP32[$82>>2]|0; + $$promoted = HEAP32[$81>>2]|0; + $90 = $$promoted163 >> 31; + $91 = $90 & $$promoted163; + $$sink141 = $91 >> 26; + $92 = (0 - ($$sink141))|0; + $93 = $92 << 26; + $94 = (($93) + ($$promoted163))|0; + $95 = (($$sink141) + ($$promoted))|0; + $96 = $95 >> 31; + $97 = $96 & $95; + $$sink141$1 = $97 >> 25; + $98 = (0 - ($$sink141$1))|0; + $99 = $98 << 25; + $100 = (($99) + ($95))|0; + $101 = (($$sink141$1) + ($$promoted165))|0; + $102 = $101 >> 31; + $103 = $102 & $101; + $$sink141$2 = $103 >> 26; + $104 = (0 - ($$sink141$2))|0; + $105 = $104 << 26; + $106 = (($105) + ($101))|0; + $107 = (($$sink141$2) + ($$promoted167))|0; + $108 = $107 >> 31; + $109 = $108 & $107; + $$sink141$3 = $109 >> 25; + $110 = (0 - ($$sink141$3))|0; + $111 = $110 << 25; + $112 = (($111) + ($107))|0; + $113 = (($$sink141$3) + ($$promoted169))|0; + $114 = $113 >> 31; + $115 = $114 & $113; + $$sink141$4 = $115 >> 26; + $116 = (0 - ($$sink141$4))|0; + $117 = $116 << 26; + $118 = (($117) + ($113))|0; + $119 = (($$sink141$4) + ($$promoted171))|0; + $120 = $119 >> 31; + $121 = $120 & $119; + $$sink141$5 = $121 >> 25; + $122 = (0 - ($$sink141$5))|0; + $123 = $122 << 25; + $124 = (($123) + ($119))|0; + $125 = (($$sink141$5) + ($$promoted173))|0; + $126 = $125 >> 31; + $127 = $126 & $125; + $$sink141$6 = $127 >> 26; + $128 = (0 - ($$sink141$6))|0; + $129 = $128 << 26; + $130 = (($129) + ($125))|0; + $131 = (($$sink141$6) + ($$promoted175))|0; + $132 = $131 >> 31; + $133 = $132 & $131; + $$sink141$7 = $133 >> 25; + $134 = (0 - ($$sink141$7))|0; + $135 = $134 << 25; + $136 = (($135) + ($131))|0; + $137 = (($$sink141$7) + ($$promoted177))|0; + $138 = $137 >> 31; + $139 = $138 & $137; + $$sink141$8 = $139 >> 26; + $140 = (0 - ($$sink141$8))|0; + $141 = $140 << 26; + $142 = (($141) + ($137))|0; + $143 = (($$sink141$8) + ($$promoted179))|0; + $144 = $143 >> 31; + $145 = $144 & $143; + $146 = $145 >> 25; + $147 = Math_imul($146, -33554432)|0; + $148 = (($147) + ($143))|0; + $149 = ($146*19)|0; + $150 = (($149) + ($94))|0; + $151 = $150 >> 31; + $152 = $151 & $150; + $$sink141$1199 = $152 >> 26; + $153 = (0 - ($$sink141$1199))|0; + $154 = $153 << 26; + $155 = (($154) + ($150))|0; + $156 = (($$sink141$1199) + ($100))|0; + $157 = $156 >> 31; + $158 = $157 & $156; + $$sink141$1$1 = $158 >> 25; + $159 = (0 - ($$sink141$1$1))|0; + $160 = $159 << 25; + $161 = (($160) + ($156))|0; + $162 = (($$sink141$1$1) + ($106))|0; + $163 = $162 >> 31; + $164 = $163 & $162; + $$sink141$2$1 = $164 >> 26; + $165 = (0 - ($$sink141$2$1))|0; + $166 = $165 << 26; + $167 = (($166) + ($162))|0; + $168 = (($$sink141$2$1) + ($112))|0; + $169 = $168 >> 31; + $170 = $169 & $168; + $$sink141$3$1 = $170 >> 25; + $171 = (0 - ($$sink141$3$1))|0; + $172 = $171 << 25; + $173 = (($172) + ($168))|0; + $174 = (($$sink141$3$1) + ($118))|0; + $175 = $174 >> 31; + $176 = $175 & $174; + $$sink141$4$1 = $176 >> 26; + $177 = (0 - ($$sink141$4$1))|0; + $178 = $177 << 26; + $179 = (($178) + ($174))|0; + $180 = (($$sink141$4$1) + ($124))|0; + $181 = $180 >> 31; + $182 = $181 & $180; + $$sink141$5$1 = $182 >> 25; + $183 = (0 - ($$sink141$5$1))|0; + $184 = $183 << 25; + $185 = (($184) + ($180))|0; + $186 = (($$sink141$5$1) + ($130))|0; + $187 = $186 >> 31; + $188 = $187 & $186; + $$sink141$6$1 = $188 >> 26; + $189 = (0 - ($$sink141$6$1))|0; + $190 = $189 << 26; + $191 = (($190) + ($186))|0; + $192 = (($$sink141$6$1) + ($136))|0; + $193 = $192 >> 31; + $194 = $193 & $192; + $$sink141$7$1 = $194 >> 25; + $195 = (0 - ($$sink141$7$1))|0; + $196 = $195 << 25; + $197 = (($196) + ($192))|0; + $198 = (($$sink141$7$1) + ($142))|0; + $199 = $198 >> 31; + $200 = $199 & $198; + $$sink141$8$1 = $200 >> 26; + $201 = (0 - ($$sink141$8$1))|0; + $202 = $201 << 26; + $203 = (($202) + ($198))|0; + $204 = (($$sink141$8$1) + ($148))|0; + $205 = $204 >> 31; + $206 = $205 & $204; + $207 = $206 >> 25; + $208 = Math_imul($207, -33554432)|0; + $209 = (($208) + ($204))|0; + $210 = ($207*19)|0; + $211 = (($210) + ($155))|0; + HEAP32[$81>>2] = $161; + HEAP32[$2>>2] = $211; + HEAP32[$82>>2] = $167; + HEAP32[$83>>2] = $173; + HEAP32[$84>>2] = $179; + HEAP32[$85>>2] = $185; + HEAP32[$86>>2] = $191; + HEAP32[$87>>2] = $197; + HEAP32[$88>>2] = $203; + HEAP32[$89>>2] = $209; + $212 = HEAP32[$2>>2]|0; + $213 = $212 >> 31; + $214 = $213 & $212; + $215 = $214 >> 26; + $216 = Math_imul($215, -67108864)|0; + $217 = (($216) + ($212))|0; + HEAP32[$2>>2] = $217; + $218 = ((($2)) + 4|0); + $219 = HEAP32[$218>>2]|0; + $220 = (($215) + ($219))|0; + HEAP32[$218>>2] = $220; + $221 = ((($2)) + 36|0); + $222 = HEAP32[$2>>2]|0; + $223 = $222 >> 26; + $224 = $222 & 67108863; + HEAP32[$2>>2] = $224; + $225 = (($220) + ($223))|0; + $226 = ((($2)) + 4|0); + $227 = ((($2)) + 8|0); + $228 = HEAP32[$227>>2]|0; + $229 = $225 >> 25; + $230 = $225 & 33554431; + HEAP32[$226>>2] = $230; + $231 = (($228) + ($229))|0; + $232 = ((($2)) + 8|0); + $233 = ((($2)) + 12|0); + $234 = HEAP32[$233>>2]|0; + $235 = $231 >> 26; + $236 = $231 & 67108863; + HEAP32[$232>>2] = $236; + $237 = (($234) + ($235))|0; + $238 = ((($2)) + 12|0); + $239 = ((($2)) + 16|0); + $240 = HEAP32[$239>>2]|0; + $241 = $237 >> 25; + $242 = $237 & 33554431; + HEAP32[$238>>2] = $242; + $243 = (($240) + ($241))|0; + $244 = ((($2)) + 16|0); + $245 = ((($2)) + 20|0); + $246 = HEAP32[$245>>2]|0; + $247 = $243 >> 26; + $248 = $243 & 67108863; + HEAP32[$244>>2] = $248; + $249 = (($246) + ($247))|0; + $250 = ((($2)) + 20|0); + $251 = ((($2)) + 24|0); + $252 = HEAP32[$251>>2]|0; + $253 = $249 >> 25; + $254 = $249 & 33554431; + HEAP32[$250>>2] = $254; + $255 = (($252) + ($253))|0; + $256 = ((($2)) + 24|0); + $257 = ((($2)) + 28|0); + $258 = HEAP32[$257>>2]|0; + $259 = $255 >> 26; + $260 = $255 & 67108863; + HEAP32[$256>>2] = $260; + $261 = (($258) + ($259))|0; + $262 = ((($2)) + 28|0); + $263 = ((($2)) + 32|0); + $264 = HEAP32[$263>>2]|0; + $265 = $261 >> 25; + $266 = $261 & 33554431; + HEAP32[$262>>2] = $266; + $267 = (($264) + ($265))|0; + $268 = ((($2)) + 32|0); + $269 = ((($2)) + 36|0); + $270 = HEAP32[$269>>2]|0; + $271 = $267 >> 26; + $272 = $267 & 67108863; + HEAP32[$268>>2] = $272; + $273 = (($270) + ($271))|0; + $274 = $273 >> 25; + $275 = $273 & 33554431; + HEAP32[$221>>2] = $275; + $276 = ($274*19)|0; + $277 = HEAP32[$2>>2]|0; + $278 = (($277) + ($276))|0; + HEAP32[$2>>2] = $278; + $279 = ((($2)) + 4|0); + $280 = HEAP32[$279>>2]|0; + $281 = $278 >> 26; + $282 = $278 & 67108863; + HEAP32[$2>>2] = $282; + $283 = (($280) + ($281))|0; + $284 = ((($2)) + 4|0); + $285 = ((($2)) + 8|0); + $286 = HEAP32[$285>>2]|0; + $287 = $283 >> 25; + $288 = $283 & 33554431; + HEAP32[$284>>2] = $288; + $289 = (($286) + ($287))|0; + $290 = ((($2)) + 8|0); + $291 = ((($2)) + 12|0); + $292 = HEAP32[$291>>2]|0; + $293 = $289 >> 26; + $294 = $289 & 67108863; + HEAP32[$290>>2] = $294; + $295 = (($292) + ($293))|0; + $296 = ((($2)) + 12|0); + $297 = ((($2)) + 16|0); + $298 = HEAP32[$297>>2]|0; + $299 = $295 >> 25; + $300 = $295 & 33554431; + HEAP32[$296>>2] = $300; + $301 = (($298) + ($299))|0; + $302 = ((($2)) + 16|0); + $303 = ((($2)) + 20|0); + $304 = HEAP32[$303>>2]|0; + $305 = $301 >> 26; + $306 = $301 & 67108863; + HEAP32[$302>>2] = $306; + $307 = (($304) + ($305))|0; + $308 = ((($2)) + 20|0); + $309 = ((($2)) + 24|0); + $310 = HEAP32[$309>>2]|0; + $311 = $307 >> 25; + $312 = $307 & 33554431; + HEAP32[$308>>2] = $312; + $313 = (($310) + ($311))|0; + $314 = ((($2)) + 24|0); + $315 = ((($2)) + 28|0); + $316 = HEAP32[$315>>2]|0; + $317 = $313 >> 26; + $318 = $313 & 67108863; + HEAP32[$314>>2] = $318; + $319 = (($316) + ($317))|0; + $320 = ((($2)) + 28|0); + $321 = ((($2)) + 32|0); + $322 = HEAP32[$321>>2]|0; + $323 = $319 >> 25; + $324 = $319 & 33554431; + HEAP32[$320>>2] = $324; + $325 = (($322) + ($323))|0; + $326 = ((($2)) + 32|0); + $327 = ((($2)) + 36|0); + $328 = HEAP32[$327>>2]|0; + $329 = $325 >> 26; + $330 = $325 & 67108863; + HEAP32[$326>>2] = $330; + $331 = (($328) + ($329))|0; + $332 = $331 >> 25; + $333 = $331 & 33554431; + HEAP32[$221>>2] = $333; + $334 = ($332*19)|0; + $335 = HEAP32[$2>>2]|0; + $336 = (($335) + ($334))|0; + HEAP32[$2>>2] = $336; + $337 = (_s32_gte($336)|0); + $$0135149 = $337;$$3150 = 1; while(1) { - $127 = $i$26 & 1; - $128 = ($127|0)==(0); - $129 = (($input) + ($i$26<<2)|0); - $130 = HEAP32[$129>>2]|0; - if ($128) { - $137 = $130 >> 26; - $138 = $130 & 67108863; - HEAP32[$129>>2] = $138; - $139 = (($i$26) + 1)|0; - $140 = (($input) + ($139<<2)|0); - $141 = HEAP32[$140>>2]|0; - $142 = (($141) + ($137))|0; - HEAP32[$140>>2] = $142; - } else { - $131 = $130 >> 25; - $132 = $130 & 33554431; - HEAP32[$129>>2] = $132; - $133 = (($i$26) + 1)|0; - $134 = (($input) + ($133<<2)|0); - $135 = HEAP32[$134>>2]|0; - $136 = (($135) + ($131))|0; - HEAP32[$134>>2] = $136; - } - $143 = (($i$26) + 1)|0; - $exitcond = ($143|0)==(9); + $338 = (($2) + ($$3150<<2)|0); + $339 = HEAP32[$338>>2]|0; + $340 = $$3150 << 25; + $341 = $340 & 33554432; + $342 = $341 ^ 67108863; + $343 = (_s32_eq($339,$342)|0); + $$1136 = $343 & $$0135149; + $344 = (($$3150) + 1)|0; + $exitcond = ($344|0)==(10); if ($exitcond) { break; } else { - $i$26 = $143; - } - } - $144 = HEAP32[$126>>2]|0; - $145 = $144 >> 25; - $146 = $144 & 33554431; - HEAP32[$126>>2] = $146; - $147 = ($145*19)|0; - $148 = HEAP32[$input>>2]|0; - $149 = (($147) + ($148))|0; - HEAP32[$input>>2] = $149; - $i$26$1 = 0; - while(1) { - $387 = $i$26$1 & 1; - $388 = ($387|0)==(0); - $389 = (($input) + ($i$26$1<<2)|0); - $390 = HEAP32[$389>>2]|0; - if ($388) { - $397 = $390 >> 26; - $398 = $390 & 67108863; - HEAP32[$389>>2] = $398; - $399 = (($i$26$1) + 1)|0; - $400 = (($input) + ($399<<2)|0); - $401 = HEAP32[$400>>2]|0; - $402 = (($401) + ($397))|0; - HEAP32[$400>>2] = $402; - } else { - $391 = $390 >> 25; - $392 = $390 & 33554431; - HEAP32[$389>>2] = $392; - $393 = (($i$26$1) + 1)|0; - $394 = (($input) + ($393<<2)|0); - $395 = HEAP32[$394>>2]|0; - $396 = (($395) + ($391))|0; - HEAP32[$394>>2] = $396; - } - $403 = (($i$26$1) + 1)|0; - $exitcond$1 = ($403|0)==(9); - if ($exitcond$1) { - break; - } else { - $i$26$1 = $403; + $$0135149 = $$1136;$$3150 = $344; } } - $150 = HEAP32[$126>>2]|0; - $151 = $150 >> 25; - $152 = $150 & 33554431; - HEAP32[$126>>2] = $152; - $153 = ($151*19)|0; - $154 = HEAP32[$input>>2]|0; - $155 = (($153) + ($154))|0; - HEAP32[$input>>2] = $155; - $156 = (_s32_gte($155)|0); - $157 = ((($input)) + 4|0); - $158 = HEAP32[$157>>2]|0; - $159 = (_s32_eq($158,33554431)|0); - $mask$1 = $159 & $156; - $160 = ((($input)) + 8|0); - $161 = HEAP32[$160>>2]|0; - $162 = (_s32_eq($161,67108863)|0); - $mask$1$1 = $162 & $mask$1; - $163 = ((($input)) + 12|0); - $164 = HEAP32[$163>>2]|0; - $165 = (_s32_eq($164,33554431)|0); - $mask$1$2 = $165 & $mask$1$1; - $166 = ((($input)) + 16|0); - $167 = HEAP32[$166>>2]|0; - $168 = (_s32_eq($167,67108863)|0); - $mask$1$3 = $168 & $mask$1$2; - $169 = ((($input)) + 20|0); - $170 = HEAP32[$169>>2]|0; - $171 = (_s32_eq($170,33554431)|0); - $mask$1$4 = $171 & $mask$1$3; - $172 = ((($input)) + 24|0); - $173 = HEAP32[$172>>2]|0; - $174 = (_s32_eq($173,67108863)|0); - $mask$1$5 = $174 & $mask$1$4; - $175 = ((($input)) + 28|0); - $176 = HEAP32[$175>>2]|0; - $177 = (_s32_eq($176,33554431)|0); - $mask$1$6 = $177 & $mask$1$5; - $178 = ((($input)) + 32|0); - $179 = HEAP32[$178>>2]|0; - $180 = (_s32_eq($179,67108863)|0); - $mask$1$7 = $180 & $mask$1$6; - $181 = ((($input)) + 36|0); - $182 = HEAP32[$181>>2]|0; - $183 = (_s32_eq($182,33554431)|0); - $mask$1$8 = $183 & $mask$1$7; - $184 = $mask$1$8 & 67108845; - $185 = HEAP32[$input>>2]|0; - $186 = (($185) - ($184))|0; - HEAP32[$input>>2] = $186; - $187 = $mask$1$8 & 67108863; - $188 = $mask$1$8 & 33554431; - $189 = ((($input)) + 4|0); - $190 = HEAP32[$189>>2]|0; - $191 = (($190) - ($188))|0; - HEAP32[$189>>2] = $191; - $192 = ((($input)) + 8|0); - $193 = HEAP32[$192>>2]|0; - $194 = (($193) - ($187))|0; - HEAP32[$192>>2] = $194; - $195 = ((($input)) + 12|0); - $196 = HEAP32[$195>>2]|0; - $197 = (($196) - ($188))|0; - HEAP32[$195>>2] = $197; - $198 = ((($input)) + 16|0); - $199 = HEAP32[$198>>2]|0; - $200 = (($199) - ($187))|0; - HEAP32[$198>>2] = $200; - $201 = ((($input)) + 20|0); - $202 = HEAP32[$201>>2]|0; - $203 = (($202) - ($188))|0; - HEAP32[$201>>2] = $203; - $204 = ((($input)) + 24|0); - $205 = HEAP32[$204>>2]|0; - $206 = (($205) - ($187))|0; - HEAP32[$204>>2] = $206; - $207 = ((($input)) + 28|0); - $208 = HEAP32[$207>>2]|0; - $209 = (($208) - ($188))|0; - HEAP32[$207>>2] = $209; - $210 = ((($input)) + 32|0); - $211 = HEAP32[$210>>2]|0; - $212 = (($211) - ($187))|0; - HEAP32[$210>>2] = $212; - $213 = ((($input)) + 36|0); - $214 = HEAP32[$213>>2]|0; - $215 = (($214) - ($188))|0; - HEAP32[$213>>2] = $215; - $216 = HEAP32[$123>>2]|0; - $217 = $216 << 2; - HEAP32[$123>>2] = $217; - $218 = ((($input)) + 8|0); - $219 = HEAP32[$218>>2]|0; - $220 = $219 << 3; - HEAP32[$218>>2] = $220; - $221 = ((($input)) + 12|0); - $222 = HEAP32[$221>>2]|0; - $223 = $222 << 5; - HEAP32[$221>>2] = $223; - $224 = ((($input)) + 16|0); - $225 = HEAP32[$224>>2]|0; - $226 = $225 << 6; - HEAP32[$224>>2] = $226; - $227 = ((($input)) + 24|0); - $228 = HEAP32[$227>>2]|0; - $229 = $228 << 1; - HEAP32[$227>>2] = $229; - $230 = ((($input)) + 28|0); - $231 = HEAP32[$230>>2]|0; - $232 = $231 << 3; - HEAP32[$230>>2] = $232; - $233 = ((($input)) + 32|0); - $234 = HEAP32[$233>>2]|0; - $235 = $234 << 4; - HEAP32[$233>>2] = $235; - $236 = ((($input)) + 36|0); - $237 = HEAP32[$236>>2]|0; - $238 = $237 << 6; - HEAP32[$236>>2] = $238; - HEAP8[$output>>0] = 0; - $239 = ((($output)) + 16|0); - HEAP8[$239>>0] = 0; - $240 = HEAP32[$input>>2]|0; - $241 = HEAP8[$output>>0]|0; - $242 = $241&255; - $243 = $242 | $240; - $244 = $243&255; - HEAP8[$output>>0] = $244; - $245 = HEAP32[$input>>2]|0; - $246 = $245 >>> 8; - $247 = $246&255; - $248 = ((($output)) + 1|0); - HEAP8[$248>>0] = $247; - $249 = HEAP32[$input>>2]|0; - $250 = $249 >>> 16; - $251 = $250&255; - $252 = ((($output)) + 2|0); - HEAP8[$252>>0] = $251; - $253 = HEAP32[$input>>2]|0; - $254 = $253 >>> 24; - $255 = ((($output)) + 3|0); - $256 = HEAP32[$123>>2]|0; - $257 = $254 | $256; - $258 = $257&255; - HEAP8[$255>>0] = $258; - $259 = HEAP32[$123>>2]|0; - $260 = $259 >>> 8; - $261 = $260&255; - $262 = ((($output)) + 4|0); - HEAP8[$262>>0] = $261; - $263 = HEAP32[$123>>2]|0; - $264 = $263 >>> 16; - $265 = $264&255; - $266 = ((($output)) + 5|0); - HEAP8[$266>>0] = $265; - $267 = HEAP32[$123>>2]|0; - $268 = $267 >>> 24; - $269 = ((($output)) + 6|0); - $270 = HEAP32[$218>>2]|0; - $271 = $268 | $270; - $272 = $271&255; - HEAP8[$269>>0] = $272; - $273 = HEAP32[$218>>2]|0; - $274 = $273 >>> 8; - $275 = $274&255; - $276 = ((($output)) + 7|0); - HEAP8[$276>>0] = $275; - $277 = HEAP32[$218>>2]|0; - $278 = $277 >>> 16; - $279 = $278&255; - $280 = ((($output)) + 8|0); - HEAP8[$280>>0] = $279; - $281 = HEAP32[$218>>2]|0; - $282 = $281 >>> 24; - $283 = ((($output)) + 9|0); - $284 = HEAP32[$221>>2]|0; - $285 = $282 | $284; - $286 = $285&255; - HEAP8[$283>>0] = $286; - $287 = HEAP32[$221>>2]|0; - $288 = $287 >>> 8; - $289 = $288&255; - $290 = ((($output)) + 10|0); - HEAP8[$290>>0] = $289; - $291 = HEAP32[$221>>2]|0; - $292 = $291 >>> 16; - $293 = $292&255; - $294 = ((($output)) + 11|0); - HEAP8[$294>>0] = $293; - $295 = HEAP32[$221>>2]|0; - $296 = $295 >>> 24; - $297 = ((($output)) + 12|0); - $298 = HEAP32[$224>>2]|0; - $299 = $296 | $298; - $300 = $299&255; - HEAP8[$297>>0] = $300; - $301 = HEAP32[$224>>2]|0; - $302 = $301 >>> 8; - $303 = $302&255; - $304 = ((($output)) + 13|0); - HEAP8[$304>>0] = $303; - $305 = HEAP32[$224>>2]|0; - $306 = $305 >>> 16; - $307 = $306&255; - $308 = ((($output)) + 14|0); - HEAP8[$308>>0] = $307; - $309 = HEAP32[$224>>2]|0; - $310 = $309 >>> 24; - $311 = $310&255; - $312 = ((($output)) + 15|0); - HEAP8[$312>>0] = $311; - $313 = ((($input)) + 20|0); - $314 = HEAP32[$313>>2]|0; - $315 = HEAP8[$239>>0]|0; - $316 = $315&255; - $317 = $316 | $314; - $318 = $317&255; - HEAP8[$239>>0] = $318; - $319 = HEAP32[$313>>2]|0; - $320 = $319 >>> 8; - $321 = $320&255; - $322 = ((($output)) + 17|0); - HEAP8[$322>>0] = $321; - $323 = HEAP32[$313>>2]|0; - $324 = $323 >>> 16; - $325 = $324&255; - $326 = ((($output)) + 18|0); - HEAP8[$326>>0] = $325; - $327 = HEAP32[$313>>2]|0; - $328 = $327 >>> 24; - $329 = ((($output)) + 19|0); - $330 = HEAP32[$227>>2]|0; - $331 = $328 | $330; - $332 = $331&255; - HEAP8[$329>>0] = $332; - $333 = HEAP32[$227>>2]|0; - $334 = $333 >>> 8; - $335 = $334&255; - $336 = ((($output)) + 20|0); - HEAP8[$336>>0] = $335; - $337 = HEAP32[$227>>2]|0; - $338 = $337 >>> 16; - $339 = $338&255; - $340 = ((($output)) + 21|0); - HEAP8[$340>>0] = $339; - $341 = HEAP32[$227>>2]|0; - $342 = $341 >>> 24; - $343 = ((($output)) + 22|0); - $344 = HEAP32[$230>>2]|0; - $345 = $342 | $344; - $346 = $345&255; - HEAP8[$343>>0] = $346; - $347 = HEAP32[$230>>2]|0; - $348 = $347 >>> 8; - $349 = $348&255; - $350 = ((($output)) + 23|0); - HEAP8[$350>>0] = $349; - $351 = HEAP32[$230>>2]|0; - $352 = $351 >>> 16; - $353 = $352&255; - $354 = ((($output)) + 24|0); - HEAP8[$354>>0] = $353; - $355 = HEAP32[$230>>2]|0; - $356 = $355 >>> 24; - $357 = ((($output)) + 25|0); - $358 = HEAP32[$233>>2]|0; - $359 = $356 | $358; - $360 = $359&255; - HEAP8[$357>>0] = $360; - $361 = HEAP32[$233>>2]|0; - $362 = $361 >>> 8; - $363 = $362&255; - $364 = ((($output)) + 26|0); - HEAP8[$364>>0] = $363; - $365 = HEAP32[$233>>2]|0; - $366 = $365 >>> 16; - $367 = $366&255; - $368 = ((($output)) + 27|0); - HEAP8[$368>>0] = $367; - $369 = HEAP32[$233>>2]|0; - $370 = $369 >>> 24; - $371 = ((($output)) + 28|0); - $372 = HEAP32[$236>>2]|0; - $373 = $370 | $372; - $374 = $373&255; - HEAP8[$371>>0] = $374; - $375 = HEAP32[$236>>2]|0; - $376 = $375 >>> 8; - $377 = $376&255; - $378 = ((($output)) + 29|0); - HEAP8[$378>>0] = $377; - $379 = HEAP32[$236>>2]|0; - $380 = $379 >>> 16; - $381 = $380&255; - $382 = ((($output)) + 30|0); - HEAP8[$382>>0] = $381; - $383 = HEAP32[$236>>2]|0; - $384 = $383 >>> 24; - $385 = $384&255; - $386 = ((($output)) + 31|0); - HEAP8[$386>>0] = $385; + $345 = $$1136 & 67108845; + $346 = HEAP32[$2>>2]|0; + $347 = (($346) - ($345))|0; + HEAP32[$2>>2] = $347; + $$sink3 = $$1136 & 33554431; + $348 = ((($2)) + 4|0); + $349 = HEAP32[$348>>2]|0; + $350 = (($349) - ($$sink3))|0; + HEAP32[$348>>2] = $350; + $$sink3$1 = $$1136 & 67108863; + $351 = ((($2)) + 8|0); + $352 = HEAP32[$351>>2]|0; + $353 = (($352) - ($$sink3$1))|0; + HEAP32[$351>>2] = $353; + $$sink3$2 = $$1136 & 33554431; + $354 = ((($2)) + 12|0); + $355 = HEAP32[$354>>2]|0; + $356 = (($355) - ($$sink3$2))|0; + HEAP32[$354>>2] = $356; + $$sink3$3 = $$1136 & 67108863; + $357 = ((($2)) + 16|0); + $358 = HEAP32[$357>>2]|0; + $359 = (($358) - ($$sink3$3))|0; + HEAP32[$357>>2] = $359; + $$sink3$4 = $$1136 & 33554431; + $360 = ((($2)) + 20|0); + $361 = HEAP32[$360>>2]|0; + $362 = (($361) - ($$sink3$4))|0; + HEAP32[$360>>2] = $362; + $$sink3$5 = $$1136 & 67108863; + $363 = ((($2)) + 24|0); + $364 = HEAP32[$363>>2]|0; + $365 = (($364) - ($$sink3$5))|0; + HEAP32[$363>>2] = $365; + $$sink3$6 = $$1136 & 33554431; + $366 = ((($2)) + 28|0); + $367 = HEAP32[$366>>2]|0; + $368 = (($367) - ($$sink3$6))|0; + HEAP32[$366>>2] = $368; + $$sink3$7 = $$1136 & 67108863; + $369 = ((($2)) + 32|0); + $370 = HEAP32[$369>>2]|0; + $371 = (($370) - ($$sink3$7))|0; + HEAP32[$369>>2] = $371; + $$sink3$8 = $$1136 & 33554431; + $372 = ((($2)) + 36|0); + $373 = HEAP32[$372>>2]|0; + $374 = (($373) - ($$sink3$8))|0; + HEAP32[$372>>2] = $374; + $375 = HEAP32[$218>>2]|0; + $376 = $375 << 2; + HEAP32[$218>>2] = $376; + $377 = ((($2)) + 8|0); + $378 = HEAP32[$377>>2]|0; + $379 = $378 << 3; + HEAP32[$377>>2] = $379; + $380 = ((($2)) + 12|0); + $381 = HEAP32[$380>>2]|0; + $382 = $381 << 5; + HEAP32[$380>>2] = $382; + $383 = ((($2)) + 16|0); + $384 = HEAP32[$383>>2]|0; + $385 = $384 << 6; + HEAP32[$383>>2] = $385; + $386 = ((($2)) + 24|0); + $387 = HEAP32[$386>>2]|0; + $388 = $387 << 1; + HEAP32[$386>>2] = $388; + $389 = ((($2)) + 28|0); + $390 = HEAP32[$389>>2]|0; + $391 = $390 << 3; + HEAP32[$389>>2] = $391; + $392 = ((($2)) + 32|0); + $393 = HEAP32[$392>>2]|0; + $394 = $393 << 4; + HEAP32[$392>>2] = $394; + $395 = ((($2)) + 36|0); + $396 = HEAP32[$395>>2]|0; + $397 = $396 << 6; + HEAP32[$395>>2] = $397; + $398 = ((($0)) + 16|0); + HEAP8[$398>>0] = 0; + $399 = HEAP32[$2>>2]|0; + $400 = $399&255; + HEAP8[$0>>0] = $400; + $401 = $399 >>> 8; + $402 = $401&255; + $403 = ((($0)) + 1|0); + HEAP8[$403>>0] = $402; + $404 = $399 >>> 16; + $405 = $404&255; + $406 = ((($0)) + 2|0); + HEAP8[$406>>0] = $405; + $407 = $399 >>> 24; + $408 = ((($0)) + 3|0); + $409 = HEAP32[$218>>2]|0; + $410 = $409 | $407; + $411 = $410&255; + HEAP8[$408>>0] = $411; + $412 = $409 >>> 8; + $413 = $412&255; + $414 = ((($0)) + 4|0); + HEAP8[$414>>0] = $413; + $415 = $409 >>> 16; + $416 = $415&255; + $417 = ((($0)) + 5|0); + HEAP8[$417>>0] = $416; + $418 = $409 >>> 24; + $419 = ((($0)) + 6|0); + $420 = HEAP32[$377>>2]|0; + $421 = $420 | $418; + $422 = $421&255; + HEAP8[$419>>0] = $422; + $423 = $420 >>> 8; + $424 = $423&255; + $425 = ((($0)) + 7|0); + HEAP8[$425>>0] = $424; + $426 = $420 >>> 16; + $427 = $426&255; + $428 = ((($0)) + 8|0); + HEAP8[$428>>0] = $427; + $429 = $420 >>> 24; + $430 = ((($0)) + 9|0); + $431 = HEAP32[$380>>2]|0; + $432 = $431 | $429; + $433 = $432&255; + HEAP8[$430>>0] = $433; + $434 = $431 >>> 8; + $435 = $434&255; + $436 = ((($0)) + 10|0); + HEAP8[$436>>0] = $435; + $437 = HEAP32[$380>>2]|0; + $438 = $437 >>> 16; + $439 = $438&255; + $440 = ((($0)) + 11|0); + HEAP8[$440>>0] = $439; + $441 = $437 >>> 24; + $442 = ((($0)) + 12|0); + $443 = HEAP32[$383>>2]|0; + $444 = $443 | $441; + $445 = $444&255; + HEAP8[$442>>0] = $445; + $446 = $443 >>> 8; + $447 = $446&255; + $448 = ((($0)) + 13|0); + HEAP8[$448>>0] = $447; + $449 = HEAP32[$383>>2]|0; + $450 = $449 >>> 16; + $451 = $450&255; + $452 = ((($0)) + 14|0); + HEAP8[$452>>0] = $451; + $453 = $449 >>> 24; + $454 = $453&255; + $455 = ((($0)) + 15|0); + HEAP8[$455>>0] = $454; + $456 = ((($2)) + 20|0); + $457 = HEAP32[$456>>2]|0; + $458 = HEAP8[$398>>0]|0; + $459 = $458&255; + $460 = $459 | $457; + $461 = $460&255; + HEAP8[$398>>0] = $461; + $462 = $457 >>> 8; + $463 = $462&255; + $464 = ((($0)) + 17|0); + HEAP8[$464>>0] = $463; + $465 = HEAP32[$456>>2]|0; + $466 = $465 >>> 16; + $467 = $466&255; + $468 = ((($0)) + 18|0); + HEAP8[$468>>0] = $467; + $469 = $465 >>> 24; + $470 = ((($0)) + 19|0); + $471 = HEAP32[$386>>2]|0; + $472 = $471 | $469; + $473 = $472&255; + HEAP8[$470>>0] = $473; + $474 = $471 >>> 8; + $475 = $474&255; + $476 = ((($0)) + 20|0); + HEAP8[$476>>0] = $475; + $477 = HEAP32[$386>>2]|0; + $478 = $477 >>> 16; + $479 = $478&255; + $480 = ((($0)) + 21|0); + HEAP8[$480>>0] = $479; + $481 = $477 >>> 24; + $482 = ((($0)) + 22|0); + $483 = HEAP32[$389>>2]|0; + $484 = $483 | $481; + $485 = $484&255; + HEAP8[$482>>0] = $485; + $486 = $483 >>> 8; + $487 = $486&255; + $488 = ((($0)) + 23|0); + HEAP8[$488>>0] = $487; + $489 = HEAP32[$389>>2]|0; + $490 = $489 >>> 16; + $491 = $490&255; + $492 = ((($0)) + 24|0); + HEAP8[$492>>0] = $491; + $493 = $489 >>> 24; + $494 = ((($0)) + 25|0); + $495 = HEAP32[$392>>2]|0; + $496 = $495 | $493; + $497 = $496&255; + HEAP8[$494>>0] = $497; + $498 = $495 >>> 8; + $499 = $498&255; + $500 = ((($0)) + 26|0); + HEAP8[$500>>0] = $499; + $501 = HEAP32[$392>>2]|0; + $502 = $501 >>> 16; + $503 = $502&255; + $504 = ((($0)) + 27|0); + HEAP8[$504>>0] = $503; + $505 = $501 >>> 24; + $506 = ((($0)) + 28|0); + $507 = HEAP32[$395>>2]|0; + $508 = $507 | $505; + $509 = $508&255; + HEAP8[$506>>0] = $509; + $510 = $507 >>> 8; + $511 = $510&255; + $512 = ((($0)) + 29|0); + HEAP8[$512>>0] = $511; + $513 = HEAP32[$395>>2]|0; + $514 = $513 >>> 16; + $515 = $514&255; + $516 = ((($0)) + 30|0); + HEAP8[$516>>0] = $515; + $517 = $513 >>> 24; + $518 = $517&255; + $519 = ((($0)) + 31|0); + HEAP8[$519>>0] = $518; STACKTOP = sp;return; } -function _s32_gte($a) { - $a = $a|0; - var $0 = 0, $1 = 0, $2 = 0, label = 0, sp = 0; +function _s32_gte($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, $3 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = (($a) + -67108845)|0; - $1 = $0 >> 31; - $2 = $1 ^ -1; - return ($2|0); -} -function _s32_eq($a,$b) { - $a = $a|0; - $b = $b|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + $1 = (($0) + -67108845)|0; + $2 = $1 >> 31; + $3 = $2 ^ -1; + return ($3|0); +} +function _s32_eq($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = $a ^ -1; - $1 = $0 ^ $b; - $2 = $1 << 16; - $3 = $2 & $1; - $4 = $3 << 8; + $2 = $0 ^ -1; + $3 = $2 ^ $1; + $4 = $3 << 16; $5 = $4 & $3; - $6 = $5 << 4; + $6 = $5 << 8; $7 = $6 & $5; - $8 = $7 << 2; + $8 = $7 << 4; $9 = $8 & $7; - $10 = $9 << 1; + $10 = $9 << 2; $11 = $10 & $9; - $12 = $11 >> 31; - return ($12|0); -} -function _fproduct($output,$in2,$in) { - $output = $output|0; - $in2 = $in2|0; - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; - var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0; - var $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0; - var $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0; - var $107 = 0, $1070 = 0, $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0; - var $1088 = 0, $1089 = 0, $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0; - var $1105 = 0, $1106 = 0, $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $1119 = 0, $112 = 0, $1120 = 0, $1121 = 0, $1122 = 0; - var $1123 = 0, $1124 = 0, $1125 = 0, $1126 = 0, $1127 = 0, $1128 = 0, $1129 = 0, $113 = 0, $1130 = 0, $1131 = 0, $1132 = 0, $1133 = 0, $1134 = 0, $1135 = 0, $1136 = 0, $1137 = 0, $1138 = 0, $1139 = 0, $114 = 0, $1140 = 0; - var $1141 = 0, $1142 = 0, $1143 = 0, $1144 = 0, $1145 = 0, $1146 = 0, $1147 = 0, $1148 = 0, $1149 = 0, $115 = 0, $1150 = 0, $1151 = 0, $1152 = 0, $1153 = 0, $1154 = 0, $1155 = 0, $1156 = 0, $1157 = 0, $1158 = 0, $1159 = 0; - var $116 = 0, $1160 = 0, $1161 = 0, $1162 = 0, $1163 = 0, $1164 = 0, $1165 = 0, $1166 = 0, $1167 = 0, $1168 = 0, $1169 = 0, $117 = 0, $1170 = 0, $1171 = 0, $1172 = 0, $1173 = 0, $1174 = 0, $1175 = 0, $1176 = 0, $1177 = 0; - var $1178 = 0, $1179 = 0, $118 = 0, $1180 = 0, $1181 = 0, $1182 = 0, $1183 = 0, $1184 = 0, $1185 = 0, $1186 = 0, $1187 = 0, $1188 = 0, $1189 = 0, $119 = 0, $1190 = 0, $1191 = 0, $1192 = 0, $1193 = 0, $1194 = 0, $1195 = 0; - var $1196 = 0, $1197 = 0, $1198 = 0, $1199 = 0, $12 = 0, $120 = 0, $1200 = 0, $1201 = 0, $1202 = 0, $1203 = 0, $1204 = 0, $1205 = 0, $1206 = 0, $1207 = 0, $1208 = 0, $1209 = 0, $121 = 0, $1210 = 0, $1211 = 0, $1212 = 0; - var $1213 = 0, $1214 = 0, $1215 = 0, $1216 = 0, $1217 = 0, $1218 = 0, $1219 = 0, $122 = 0, $1220 = 0, $1221 = 0, $1222 = 0, $1223 = 0, $1224 = 0, $1225 = 0, $1226 = 0, $1227 = 0, $1228 = 0, $1229 = 0, $123 = 0, $1230 = 0; - var $1231 = 0, $1232 = 0, $1233 = 0, $1234 = 0, $1235 = 0, $1236 = 0, $1237 = 0, $1238 = 0, $1239 = 0, $124 = 0, $1240 = 0, $1241 = 0, $1242 = 0, $1243 = 0, $1244 = 0, $1245 = 0, $1246 = 0, $1247 = 0, $1248 = 0, $1249 = 0; - var $125 = 0, $1250 = 0, $1251 = 0, $1252 = 0, $1253 = 0, $1254 = 0, $1255 = 0, $1256 = 0, $1257 = 0, $1258 = 0, $1259 = 0, $126 = 0, $1260 = 0, $1261 = 0, $1262 = 0, $1263 = 0, $1264 = 0, $1265 = 0, $1266 = 0, $1267 = 0; - var $1268 = 0, $1269 = 0, $127 = 0, $1270 = 0, $1271 = 0, $1272 = 0, $1273 = 0, $1274 = 0, $1275 = 0, $1276 = 0, $1277 = 0, $1278 = 0, $1279 = 0, $128 = 0, $1280 = 0, $1281 = 0, $1282 = 0, $1283 = 0, $1284 = 0, $1285 = 0; - var $1286 = 0, $1287 = 0, $1288 = 0, $1289 = 0, $129 = 0, $1290 = 0, $1291 = 0, $1292 = 0, $1293 = 0, $1294 = 0, $1295 = 0, $1296 = 0, $1297 = 0, $1298 = 0, $1299 = 0, $13 = 0, $130 = 0, $1300 = 0, $1301 = 0, $1302 = 0; - var $1303 = 0, $1304 = 0, $1305 = 0, $1306 = 0, $1307 = 0, $1308 = 0, $1309 = 0, $131 = 0, $1310 = 0, $1311 = 0, $1312 = 0, $1313 = 0, $1314 = 0, $1315 = 0, $1316 = 0, $1317 = 0, $1318 = 0, $1319 = 0, $132 = 0, $1320 = 0; - var $1321 = 0, $1322 = 0, $1323 = 0, $1324 = 0, $1325 = 0, $1326 = 0, $1327 = 0, $1328 = 0, $1329 = 0, $133 = 0, $1330 = 0, $1331 = 0, $1332 = 0, $1333 = 0, $1334 = 0, $1335 = 0, $1336 = 0, $1337 = 0, $1338 = 0, $1339 = 0; - var $134 = 0, $1340 = 0, $1341 = 0, $1342 = 0, $1343 = 0, $1344 = 0, $1345 = 0, $1346 = 0, $1347 = 0, $1348 = 0, $1349 = 0, $135 = 0, $1350 = 0, $1351 = 0, $1352 = 0, $1353 = 0, $1354 = 0, $1355 = 0, $1356 = 0, $1357 = 0; - var $1358 = 0, $1359 = 0, $136 = 0, $1360 = 0, $1361 = 0, $1362 = 0, $1363 = 0, $1364 = 0, $1365 = 0, $1366 = 0, $1367 = 0, $1368 = 0, $1369 = 0, $137 = 0, $1370 = 0, $1371 = 0, $1372 = 0, $1373 = 0, $1374 = 0, $1375 = 0; - var $1376 = 0, $1377 = 0, $1378 = 0, $1379 = 0, $138 = 0, $1380 = 0, $1381 = 0, $1382 = 0, $1383 = 0, $1384 = 0, $1385 = 0, $1386 = 0, $1387 = 0, $1388 = 0, $1389 = 0, $139 = 0, $1390 = 0, $1391 = 0, $1392 = 0, $1393 = 0; - var $1394 = 0, $1395 = 0, $1396 = 0, $1397 = 0, $1398 = 0, $1399 = 0, $14 = 0, $140 = 0, $1400 = 0, $1401 = 0, $1402 = 0, $1403 = 0, $1404 = 0, $1405 = 0, $1406 = 0, $1407 = 0, $1408 = 0, $1409 = 0, $141 = 0, $1410 = 0; - var $1411 = 0, $1412 = 0, $1413 = 0, $1414 = 0, $1415 = 0, $1416 = 0, $1417 = 0, $1418 = 0, $1419 = 0, $142 = 0, $1420 = 0, $1421 = 0, $1422 = 0, $1423 = 0, $1424 = 0, $1425 = 0, $1426 = 0, $1427 = 0, $1428 = 0, $1429 = 0; - var $143 = 0, $1430 = 0, $1431 = 0, $1432 = 0, $1433 = 0, $1434 = 0, $1435 = 0, $1436 = 0, $1437 = 0, $1438 = 0, $1439 = 0, $144 = 0, $1440 = 0, $1441 = 0, $1442 = 0, $1443 = 0, $1444 = 0, $1445 = 0, $1446 = 0, $1447 = 0; - var $1448 = 0, $1449 = 0, $145 = 0, $1450 = 0, $1451 = 0, $1452 = 0, $1453 = 0, $1454 = 0, $1455 = 0, $1456 = 0, $1457 = 0, $1458 = 0, $1459 = 0, $146 = 0, $1460 = 0, $1461 = 0, $1462 = 0, $1463 = 0, $1464 = 0, $1465 = 0; - var $1466 = 0, $1467 = 0, $1468 = 0, $1469 = 0, $147 = 0, $1470 = 0, $1471 = 0, $1472 = 0, $1473 = 0, $1474 = 0, $1475 = 0, $1476 = 0, $1477 = 0, $1478 = 0, $1479 = 0, $148 = 0, $1480 = 0, $1481 = 0, $1482 = 0, $1483 = 0; - var $1484 = 0, $1485 = 0, $1486 = 0, $1487 = 0, $1488 = 0, $1489 = 0, $149 = 0, $1490 = 0, $1491 = 0, $1492 = 0, $1493 = 0, $1494 = 0, $1495 = 0, $1496 = 0, $1497 = 0, $1498 = 0, $1499 = 0, $15 = 0, $150 = 0, $1500 = 0; - var $1501 = 0, $1502 = 0, $1503 = 0, $1504 = 0, $1505 = 0, $1506 = 0, $1507 = 0, $1508 = 0, $1509 = 0, $151 = 0, $1510 = 0, $1511 = 0, $1512 = 0, $1513 = 0, $1514 = 0, $1515 = 0, $1516 = 0, $1517 = 0, $1518 = 0, $1519 = 0; - var $152 = 0, $1520 = 0, $1521 = 0, $1522 = 0, $1523 = 0, $1524 = 0, $1525 = 0, $1526 = 0, $1527 = 0, $1528 = 0, $1529 = 0, $153 = 0, $1530 = 0, $1531 = 0, $1532 = 0, $1533 = 0, $1534 = 0, $1535 = 0, $1536 = 0, $1537 = 0; - var $1538 = 0, $1539 = 0, $154 = 0, $1540 = 0, $1541 = 0, $1542 = 0, $1543 = 0, $1544 = 0, $1545 = 0, $1546 = 0, $1547 = 0, $1548 = 0, $1549 = 0, $155 = 0, $1550 = 0, $1551 = 0, $1552 = 0, $1553 = 0, $1554 = 0, $1555 = 0; - var $1556 = 0, $1557 = 0, $1558 = 0, $1559 = 0, $156 = 0, $1560 = 0, $1561 = 0, $1562 = 0, $1563 = 0, $1564 = 0, $1565 = 0, $1566 = 0, $1567 = 0, $1568 = 0, $1569 = 0, $157 = 0, $1570 = 0, $1571 = 0, $1572 = 0, $1573 = 0; - var $1574 = 0, $1575 = 0, $1576 = 0, $1577 = 0, $1578 = 0, $1579 = 0, $158 = 0, $1580 = 0, $1581 = 0, $1582 = 0, $1583 = 0, $1584 = 0, $1585 = 0, $1586 = 0, $1587 = 0, $1588 = 0, $1589 = 0, $159 = 0, $1590 = 0, $1591 = 0; - var $1592 = 0, $1593 = 0, $1594 = 0, $1595 = 0, $1596 = 0, $1597 = 0, $1598 = 0, $1599 = 0, $16 = 0, $160 = 0, $1600 = 0, $1601 = 0, $1602 = 0, $1603 = 0, $1604 = 0, $1605 = 0, $1606 = 0, $1607 = 0, $1608 = 0, $1609 = 0; - var $161 = 0, $1610 = 0, $1611 = 0, $1612 = 0, $1613 = 0, $1614 = 0, $1615 = 0, $1616 = 0, $1617 = 0, $1618 = 0, $1619 = 0, $162 = 0, $1620 = 0, $1621 = 0, $1622 = 0, $1623 = 0, $1624 = 0, $1625 = 0, $1626 = 0, $1627 = 0; - var $1628 = 0, $1629 = 0, $163 = 0, $1630 = 0, $1631 = 0, $1632 = 0, $1633 = 0, $1634 = 0, $1635 = 0, $1636 = 0, $1637 = 0, $1638 = 0, $1639 = 0, $164 = 0, $1640 = 0, $1641 = 0, $1642 = 0, $1643 = 0, $1644 = 0, $1645 = 0; - var $1646 = 0, $1647 = 0, $1648 = 0, $1649 = 0, $165 = 0, $1650 = 0, $1651 = 0, $1652 = 0, $1653 = 0, $1654 = 0, $1655 = 0, $1656 = 0, $1657 = 0, $1658 = 0, $1659 = 0, $166 = 0, $1660 = 0, $1661 = 0, $1662 = 0, $1663 = 0; - var $1664 = 0, $1665 = 0, $1666 = 0, $1667 = 0, $1668 = 0, $1669 = 0, $167 = 0, $1670 = 0, $1671 = 0, $1672 = 0, $1673 = 0, $1674 = 0, $1675 = 0, $1676 = 0, $1677 = 0, $1678 = 0, $1679 = 0, $168 = 0, $1680 = 0, $1681 = 0; - var $1682 = 0, $1683 = 0, $1684 = 0, $1685 = 0, $1686 = 0, $1687 = 0, $1688 = 0, $1689 = 0, $169 = 0, $1690 = 0, $1691 = 0, $1692 = 0, $1693 = 0, $1694 = 0, $1695 = 0, $1696 = 0, $1697 = 0, $1698 = 0, $1699 = 0, $17 = 0; - var $170 = 0, $1700 = 0, $1701 = 0, $1702 = 0, $1703 = 0, $1704 = 0, $1705 = 0, $1706 = 0, $1707 = 0, $1708 = 0, $1709 = 0, $171 = 0, $1710 = 0, $1711 = 0, $1712 = 0, $1713 = 0, $1714 = 0, $1715 = 0, $1716 = 0, $1717 = 0; - var $1718 = 0, $1719 = 0, $172 = 0, $1720 = 0, $1721 = 0, $1722 = 0, $1723 = 0, $1724 = 0, $1725 = 0, $1726 = 0, $1727 = 0, $1728 = 0, $1729 = 0, $173 = 0, $1730 = 0, $1731 = 0, $1732 = 0, $1733 = 0, $1734 = 0, $1735 = 0; - var $1736 = 0, $1737 = 0, $1738 = 0, $1739 = 0, $174 = 0, $1740 = 0, $1741 = 0, $1742 = 0, $1743 = 0, $1744 = 0, $1745 = 0, $1746 = 0, $1747 = 0, $1748 = 0, $1749 = 0, $175 = 0, $1750 = 0, $1751 = 0, $1752 = 0, $1753 = 0; - var $1754 = 0, $1755 = 0, $1756 = 0, $1757 = 0, $1758 = 0, $1759 = 0, $176 = 0, $1760 = 0, $1761 = 0, $1762 = 0, $1763 = 0, $1764 = 0, $1765 = 0, $1766 = 0, $1767 = 0, $1768 = 0, $1769 = 0, $177 = 0, $1770 = 0, $1771 = 0; - var $1772 = 0, $1773 = 0, $1774 = 0, $1775 = 0, $1776 = 0, $1777 = 0, $1778 = 0, $1779 = 0, $178 = 0, $1780 = 0, $1781 = 0, $1782 = 0, $1783 = 0, $1784 = 0, $1785 = 0, $1786 = 0, $1787 = 0, $1788 = 0, $1789 = 0, $179 = 0; - var $1790 = 0, $1791 = 0, $1792 = 0, $1793 = 0, $1794 = 0, $1795 = 0, $1796 = 0, $1797 = 0, $1798 = 0, $1799 = 0, $18 = 0, $180 = 0, $1800 = 0, $1801 = 0, $1802 = 0, $1803 = 0, $1804 = 0, $1805 = 0, $1806 = 0, $1807 = 0; - var $1808 = 0, $1809 = 0, $181 = 0, $1810 = 0, $1811 = 0, $1812 = 0, $1813 = 0, $1814 = 0, $1815 = 0, $1816 = 0, $1817 = 0, $1818 = 0, $1819 = 0, $182 = 0, $1820 = 0, $1821 = 0, $1822 = 0, $1823 = 0, $1824 = 0, $1825 = 0; - var $1826 = 0, $1827 = 0, $1828 = 0, $1829 = 0, $183 = 0, $1830 = 0, $1831 = 0, $1832 = 0, $1833 = 0, $1834 = 0, $1835 = 0, $1836 = 0, $1837 = 0, $1838 = 0, $1839 = 0, $184 = 0, $1840 = 0, $1841 = 0, $1842 = 0, $1843 = 0; - var $1844 = 0, $1845 = 0, $1846 = 0, $1847 = 0, $1848 = 0, $1849 = 0, $185 = 0, $1850 = 0, $1851 = 0, $1852 = 0, $1853 = 0, $1854 = 0, $1855 = 0, $1856 = 0, $1857 = 0, $1858 = 0, $1859 = 0, $186 = 0, $1860 = 0, $1861 = 0; - var $1862 = 0, $1863 = 0, $1864 = 0, $1865 = 0, $1866 = 0, $1867 = 0, $1868 = 0, $1869 = 0, $187 = 0, $1870 = 0, $1871 = 0, $1872 = 0, $1873 = 0, $1874 = 0, $1875 = 0, $1876 = 0, $1877 = 0, $1878 = 0, $1879 = 0, $188 = 0; - var $1880 = 0, $1881 = 0, $1882 = 0, $1883 = 0, $1884 = 0, $1885 = 0, $1886 = 0, $1887 = 0, $1888 = 0, $1889 = 0, $189 = 0, $1890 = 0, $1891 = 0, $1892 = 0, $1893 = 0, $1894 = 0, $1895 = 0, $1896 = 0, $1897 = 0, $1898 = 0; - var $1899 = 0, $19 = 0, $190 = 0, $1900 = 0, $1901 = 0, $1902 = 0, $1903 = 0, $1904 = 0, $1905 = 0, $1906 = 0, $1907 = 0, $1908 = 0, $1909 = 0, $191 = 0, $1910 = 0, $1911 = 0, $1912 = 0, $1913 = 0, $1914 = 0, $1915 = 0; - var $1916 = 0, $1917 = 0, $1918 = 0, $1919 = 0, $192 = 0, $1920 = 0, $1921 = 0, $1922 = 0, $1923 = 0, $1924 = 0, $1925 = 0, $1926 = 0, $1927 = 0, $1928 = 0, $1929 = 0, $193 = 0, $1930 = 0, $1931 = 0, $1932 = 0, $1933 = 0; - var $1934 = 0, $1935 = 0, $1936 = 0, $1937 = 0, $1938 = 0, $1939 = 0, $194 = 0, $1940 = 0, $1941 = 0, $1942 = 0, $1943 = 0, $1944 = 0, $1945 = 0, $1946 = 0, $1947 = 0, $1948 = 0, $1949 = 0, $195 = 0, $1950 = 0, $1951 = 0; - var $1952 = 0, $1953 = 0, $1954 = 0, $1955 = 0, $1956 = 0, $1957 = 0, $1958 = 0, $1959 = 0, $196 = 0, $1960 = 0, $1961 = 0, $1962 = 0, $1963 = 0, $1964 = 0, $1965 = 0, $1966 = 0, $1967 = 0, $1968 = 0, $1969 = 0, $197 = 0; - var $1970 = 0, $1971 = 0, $1972 = 0, $1973 = 0, $1974 = 0, $1975 = 0, $1976 = 0, $1977 = 0, $1978 = 0, $1979 = 0, $198 = 0, $1980 = 0, $1981 = 0, $1982 = 0, $1983 = 0, $1984 = 0, $1985 = 0, $1986 = 0, $1987 = 0, $1988 = 0; - var $1989 = 0, $199 = 0, $1990 = 0, $1991 = 0, $1992 = 0, $1993 = 0, $1994 = 0, $1995 = 0, $1996 = 0, $1997 = 0, $1998 = 0, $1999 = 0, $2 = 0, $20 = 0, $200 = 0, $2000 = 0, $2001 = 0, $2002 = 0, $2003 = 0, $2004 = 0; - var $2005 = 0, $2006 = 0, $2007 = 0, $2008 = 0, $2009 = 0, $201 = 0, $2010 = 0, $2011 = 0, $2012 = 0, $2013 = 0, $2014 = 0, $2015 = 0, $2016 = 0, $2017 = 0, $2018 = 0, $2019 = 0, $202 = 0, $2020 = 0, $2021 = 0, $2022 = 0; - var $2023 = 0, $2024 = 0, $2025 = 0, $2026 = 0, $2027 = 0, $2028 = 0, $2029 = 0, $203 = 0, $2030 = 0, $2031 = 0, $2032 = 0, $2033 = 0, $2034 = 0, $2035 = 0, $2036 = 0, $2037 = 0, $2038 = 0, $2039 = 0, $204 = 0, $2040 = 0; - var $2041 = 0, $2042 = 0, $2043 = 0, $2044 = 0, $2045 = 0, $2046 = 0, $2047 = 0, $2048 = 0, $2049 = 0, $205 = 0, $2050 = 0, $2051 = 0, $2052 = 0, $2053 = 0, $2054 = 0, $2055 = 0, $2056 = 0, $2057 = 0, $2058 = 0, $2059 = 0; - var $206 = 0, $2060 = 0, $2061 = 0, $2062 = 0, $2063 = 0, $2064 = 0, $2065 = 0, $2066 = 0, $2067 = 0, $2068 = 0, $2069 = 0, $207 = 0, $2070 = 0, $2071 = 0, $2072 = 0, $2073 = 0, $2074 = 0, $2075 = 0, $2076 = 0, $2077 = 0; - var $2078 = 0, $2079 = 0, $208 = 0, $2080 = 0, $2081 = 0, $2082 = 0, $2083 = 0, $2084 = 0, $2085 = 0, $2086 = 0, $2087 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0; + $12 = $11 << 1; + $13 = $12 & $11; + $14 = $13 >> 31; + return ($14|0); +} +function _fproduct($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0, $1015 = 0, $1016 = 0; + var $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0, $1033 = 0, $1034 = 0; + var $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0, $1051 = 0, $1052 = 0; + var $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0, $107 = 0, $1070 = 0; + var $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0, $1088 = 0, $1089 = 0; + var $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0, $1105 = 0, $1106 = 0; + var $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $1119 = 0, $112 = 0, $1120 = 0, $1121 = 0, $1122 = 0, $1123 = 0, $1124 = 0; + var $1125 = 0, $1126 = 0, $1127 = 0, $1128 = 0, $1129 = 0, $113 = 0, $1130 = 0, $1131 = 0, $1132 = 0, $1133 = 0, $1134 = 0, $1135 = 0, $1136 = 0, $1137 = 0, $1138 = 0, $1139 = 0, $114 = 0, $1140 = 0, $1141 = 0, $1142 = 0; + var $1143 = 0, $1144 = 0, $1145 = 0, $1146 = 0, $1147 = 0, $1148 = 0, $1149 = 0, $115 = 0, $1150 = 0, $1151 = 0, $1152 = 0, $1153 = 0, $1154 = 0, $1155 = 0, $1156 = 0, $1157 = 0, $1158 = 0, $1159 = 0, $116 = 0, $1160 = 0; + var $1161 = 0, $1162 = 0, $1163 = 0, $1164 = 0, $1165 = 0, $1166 = 0, $1167 = 0, $1168 = 0, $1169 = 0, $117 = 0, $1170 = 0, $1171 = 0, $1172 = 0, $1173 = 0, $1174 = 0, $1175 = 0, $1176 = 0, $1177 = 0, $1178 = 0, $1179 = 0; + var $118 = 0, $1180 = 0, $1181 = 0, $1182 = 0, $1183 = 0, $1184 = 0, $1185 = 0, $1186 = 0, $1187 = 0, $1188 = 0, $1189 = 0, $119 = 0, $1190 = 0, $1191 = 0, $1192 = 0, $1193 = 0, $1194 = 0, $1195 = 0, $1196 = 0, $1197 = 0; + var $1198 = 0, $1199 = 0, $12 = 0, $120 = 0, $1200 = 0, $1201 = 0, $1202 = 0, $1203 = 0, $1204 = 0, $1205 = 0, $1206 = 0, $1207 = 0, $1208 = 0, $1209 = 0, $121 = 0, $1210 = 0, $1211 = 0, $1212 = 0, $1213 = 0, $1214 = 0; + var $1215 = 0, $1216 = 0, $1217 = 0, $1218 = 0, $1219 = 0, $122 = 0, $1220 = 0, $1221 = 0, $1222 = 0, $1223 = 0, $1224 = 0, $1225 = 0, $1226 = 0, $1227 = 0, $1228 = 0, $1229 = 0, $123 = 0, $1230 = 0, $1231 = 0, $1232 = 0; + var $1233 = 0, $1234 = 0, $1235 = 0, $1236 = 0, $1237 = 0, $1238 = 0, $1239 = 0, $124 = 0, $1240 = 0, $1241 = 0, $1242 = 0, $1243 = 0, $1244 = 0, $1245 = 0, $1246 = 0, $1247 = 0, $1248 = 0, $1249 = 0, $125 = 0, $1250 = 0; + var $1251 = 0, $1252 = 0, $1253 = 0, $1254 = 0, $1255 = 0, $1256 = 0, $1257 = 0, $1258 = 0, $1259 = 0, $126 = 0, $1260 = 0, $1261 = 0, $1262 = 0, $1263 = 0, $1264 = 0, $1265 = 0, $1266 = 0, $1267 = 0, $1268 = 0, $1269 = 0; + var $127 = 0, $1270 = 0, $1271 = 0, $1272 = 0, $1273 = 0, $1274 = 0, $1275 = 0, $1276 = 0, $1277 = 0, $1278 = 0, $1279 = 0, $128 = 0, $1280 = 0, $1281 = 0, $1282 = 0, $1283 = 0, $1284 = 0, $1285 = 0, $1286 = 0, $1287 = 0; + var $1288 = 0, $1289 = 0, $129 = 0, $1290 = 0, $1291 = 0, $1292 = 0, $1293 = 0, $1294 = 0, $1295 = 0, $1296 = 0, $1297 = 0, $1298 = 0, $1299 = 0, $13 = 0, $130 = 0, $1300 = 0, $1301 = 0, $1302 = 0, $1303 = 0, $1304 = 0; + var $1305 = 0, $1306 = 0, $1307 = 0, $1308 = 0, $1309 = 0, $131 = 0, $1310 = 0, $1311 = 0, $1312 = 0, $1313 = 0, $1314 = 0, $1315 = 0, $1316 = 0, $1317 = 0, $1318 = 0, $1319 = 0, $132 = 0, $1320 = 0, $1321 = 0, $1322 = 0; + var $1323 = 0, $1324 = 0, $1325 = 0, $1326 = 0, $1327 = 0, $1328 = 0, $1329 = 0, $133 = 0, $1330 = 0, $1331 = 0, $1332 = 0, $1333 = 0, $1334 = 0, $1335 = 0, $1336 = 0, $1337 = 0, $1338 = 0, $1339 = 0, $134 = 0, $1340 = 0; + var $1341 = 0, $1342 = 0, $1343 = 0, $1344 = 0, $1345 = 0, $1346 = 0, $1347 = 0, $1348 = 0, $1349 = 0, $135 = 0, $1350 = 0, $1351 = 0, $1352 = 0, $1353 = 0, $1354 = 0, $1355 = 0, $1356 = 0, $1357 = 0, $1358 = 0, $1359 = 0; + var $136 = 0, $1360 = 0, $1361 = 0, $1362 = 0, $1363 = 0, $1364 = 0, $1365 = 0, $1366 = 0, $1367 = 0, $1368 = 0, $1369 = 0, $137 = 0, $1370 = 0, $1371 = 0, $1372 = 0, $1373 = 0, $1374 = 0, $1375 = 0, $1376 = 0, $1377 = 0; + var $1378 = 0, $1379 = 0, $138 = 0, $1380 = 0, $1381 = 0, $1382 = 0, $1383 = 0, $1384 = 0, $1385 = 0, $1386 = 0, $1387 = 0, $1388 = 0, $1389 = 0, $139 = 0, $1390 = 0, $1391 = 0, $1392 = 0, $1393 = 0, $1394 = 0, $1395 = 0; + var $1396 = 0, $1397 = 0, $1398 = 0, $1399 = 0, $14 = 0, $140 = 0, $1400 = 0, $1401 = 0, $1402 = 0, $1403 = 0, $1404 = 0, $1405 = 0, $1406 = 0, $1407 = 0, $1408 = 0, $1409 = 0, $141 = 0, $1410 = 0, $1411 = 0, $1412 = 0; + var $1413 = 0, $1414 = 0, $1415 = 0, $1416 = 0, $1417 = 0, $1418 = 0, $1419 = 0, $142 = 0, $1420 = 0, $1421 = 0, $1422 = 0, $1423 = 0, $1424 = 0, $1425 = 0, $1426 = 0, $1427 = 0, $1428 = 0, $1429 = 0, $143 = 0, $1430 = 0; + var $1431 = 0, $1432 = 0, $1433 = 0, $1434 = 0, $1435 = 0, $1436 = 0, $1437 = 0, $1438 = 0, $1439 = 0, $144 = 0, $1440 = 0, $1441 = 0, $1442 = 0, $1443 = 0, $1444 = 0, $1445 = 0, $1446 = 0, $1447 = 0, $1448 = 0, $1449 = 0; + var $145 = 0, $1450 = 0, $1451 = 0, $1452 = 0, $1453 = 0, $1454 = 0, $1455 = 0, $1456 = 0, $1457 = 0, $1458 = 0, $1459 = 0, $146 = 0, $1460 = 0, $1461 = 0, $1462 = 0, $1463 = 0, $1464 = 0, $1465 = 0, $1466 = 0, $1467 = 0; + var $1468 = 0, $1469 = 0, $147 = 0, $1470 = 0, $1471 = 0, $1472 = 0, $1473 = 0, $1474 = 0, $1475 = 0, $1476 = 0, $1477 = 0, $1478 = 0, $1479 = 0, $148 = 0, $1480 = 0, $1481 = 0, $1482 = 0, $1483 = 0, $1484 = 0, $1485 = 0; + var $1486 = 0, $1487 = 0, $1488 = 0, $1489 = 0, $149 = 0, $1490 = 0, $1491 = 0, $1492 = 0, $1493 = 0, $1494 = 0, $1495 = 0, $1496 = 0, $1497 = 0, $1498 = 0, $1499 = 0, $15 = 0, $150 = 0, $1500 = 0, $1501 = 0, $1502 = 0; + var $1503 = 0, $1504 = 0, $1505 = 0, $1506 = 0, $1507 = 0, $1508 = 0, $1509 = 0, $151 = 0, $1510 = 0, $1511 = 0, $1512 = 0, $1513 = 0, $1514 = 0, $1515 = 0, $1516 = 0, $1517 = 0, $1518 = 0, $1519 = 0, $152 = 0, $1520 = 0; + var $1521 = 0, $1522 = 0, $1523 = 0, $1524 = 0, $1525 = 0, $1526 = 0, $1527 = 0, $1528 = 0, $1529 = 0, $153 = 0, $1530 = 0, $1531 = 0, $1532 = 0, $1533 = 0, $1534 = 0, $1535 = 0, $1536 = 0, $1537 = 0, $1538 = 0, $1539 = 0; + var $154 = 0, $1540 = 0, $1541 = 0, $1542 = 0, $1543 = 0, $1544 = 0, $1545 = 0, $1546 = 0, $1547 = 0, $1548 = 0, $1549 = 0, $155 = 0, $1550 = 0, $1551 = 0, $1552 = 0, $1553 = 0, $1554 = 0, $1555 = 0, $1556 = 0, $1557 = 0; + var $1558 = 0, $1559 = 0, $156 = 0, $1560 = 0, $1561 = 0, $1562 = 0, $1563 = 0, $1564 = 0, $1565 = 0, $1566 = 0, $1567 = 0, $1568 = 0, $1569 = 0, $157 = 0, $1570 = 0, $1571 = 0, $1572 = 0, $1573 = 0, $1574 = 0, $1575 = 0; + var $1576 = 0, $1577 = 0, $1578 = 0, $1579 = 0, $158 = 0, $1580 = 0, $1581 = 0, $1582 = 0, $1583 = 0, $1584 = 0, $1585 = 0, $1586 = 0, $1587 = 0, $1588 = 0, $1589 = 0, $159 = 0, $1590 = 0, $1591 = 0, $1592 = 0, $1593 = 0; + var $1594 = 0, $1595 = 0, $1596 = 0, $1597 = 0, $1598 = 0, $1599 = 0, $16 = 0, $160 = 0, $1600 = 0, $1601 = 0, $1602 = 0, $1603 = 0, $1604 = 0, $1605 = 0, $1606 = 0, $1607 = 0, $1608 = 0, $1609 = 0, $161 = 0, $1610 = 0; + var $1611 = 0, $1612 = 0, $1613 = 0, $1614 = 0, $1615 = 0, $1616 = 0, $1617 = 0, $1618 = 0, $1619 = 0, $162 = 0, $1620 = 0, $1621 = 0, $1622 = 0, $1623 = 0, $1624 = 0, $1625 = 0, $1626 = 0, $1627 = 0, $1628 = 0, $1629 = 0; + var $163 = 0, $1630 = 0, $1631 = 0, $1632 = 0, $1633 = 0, $1634 = 0, $1635 = 0, $1636 = 0, $1637 = 0, $1638 = 0, $1639 = 0, $164 = 0, $1640 = 0, $1641 = 0, $1642 = 0, $1643 = 0, $1644 = 0, $1645 = 0, $1646 = 0, $1647 = 0; + var $1648 = 0, $1649 = 0, $165 = 0, $1650 = 0, $1651 = 0, $1652 = 0, $1653 = 0, $1654 = 0, $1655 = 0, $1656 = 0, $1657 = 0, $1658 = 0, $1659 = 0, $166 = 0, $1660 = 0, $1661 = 0, $1662 = 0, $1663 = 0, $1664 = 0, $1665 = 0; + var $1666 = 0, $1667 = 0, $1668 = 0, $1669 = 0, $167 = 0, $1670 = 0, $1671 = 0, $1672 = 0, $1673 = 0, $1674 = 0, $1675 = 0, $1676 = 0, $1677 = 0, $1678 = 0, $1679 = 0, $168 = 0, $1680 = 0, $1681 = 0, $1682 = 0, $1683 = 0; + var $1684 = 0, $1685 = 0, $1686 = 0, $1687 = 0, $1688 = 0, $1689 = 0, $169 = 0, $1690 = 0, $1691 = 0, $1692 = 0, $1693 = 0, $1694 = 0, $1695 = 0, $1696 = 0, $1697 = 0, $1698 = 0, $1699 = 0, $17 = 0, $170 = 0, $1700 = 0; + var $1701 = 0, $1702 = 0, $1703 = 0, $1704 = 0, $1705 = 0, $1706 = 0, $1707 = 0, $1708 = 0, $1709 = 0, $171 = 0, $1710 = 0, $1711 = 0, $1712 = 0, $1713 = 0, $1714 = 0, $1715 = 0, $1716 = 0, $1717 = 0, $1718 = 0, $1719 = 0; + var $172 = 0, $1720 = 0, $1721 = 0, $1722 = 0, $1723 = 0, $1724 = 0, $1725 = 0, $1726 = 0, $1727 = 0, $1728 = 0, $1729 = 0, $173 = 0, $1730 = 0, $1731 = 0, $1732 = 0, $1733 = 0, $1734 = 0, $1735 = 0, $1736 = 0, $1737 = 0; + var $1738 = 0, $1739 = 0, $174 = 0, $1740 = 0, $1741 = 0, $1742 = 0, $1743 = 0, $1744 = 0, $1745 = 0, $1746 = 0, $1747 = 0, $1748 = 0, $1749 = 0, $175 = 0, $1750 = 0, $1751 = 0, $1752 = 0, $1753 = 0, $1754 = 0, $1755 = 0; + var $1756 = 0, $1757 = 0, $1758 = 0, $1759 = 0, $176 = 0, $1760 = 0, $1761 = 0, $1762 = 0, $1763 = 0, $1764 = 0, $1765 = 0, $1766 = 0, $1767 = 0, $1768 = 0, $1769 = 0, $177 = 0, $1770 = 0, $1771 = 0, $1772 = 0, $1773 = 0; + var $1774 = 0, $1775 = 0, $1776 = 0, $1777 = 0, $1778 = 0, $1779 = 0, $178 = 0, $1780 = 0, $1781 = 0, $1782 = 0, $1783 = 0, $1784 = 0, $1785 = 0, $1786 = 0, $1787 = 0, $1788 = 0, $1789 = 0, $179 = 0, $1790 = 0, $1791 = 0; + var $1792 = 0, $1793 = 0, $1794 = 0, $1795 = 0, $1796 = 0, $1797 = 0, $1798 = 0, $1799 = 0, $18 = 0, $180 = 0, $1800 = 0, $1801 = 0, $1802 = 0, $1803 = 0, $1804 = 0, $1805 = 0, $1806 = 0, $1807 = 0, $1808 = 0, $1809 = 0; + var $181 = 0, $1810 = 0, $1811 = 0, $1812 = 0, $1813 = 0, $1814 = 0, $1815 = 0, $1816 = 0, $1817 = 0, $1818 = 0, $1819 = 0, $182 = 0, $1820 = 0, $1821 = 0, $1822 = 0, $1823 = 0, $1824 = 0, $1825 = 0, $1826 = 0, $1827 = 0; + var $1828 = 0, $1829 = 0, $183 = 0, $1830 = 0, $1831 = 0, $1832 = 0, $1833 = 0, $1834 = 0, $1835 = 0, $1836 = 0, $1837 = 0, $1838 = 0, $1839 = 0, $184 = 0, $1840 = 0, $1841 = 0, $1842 = 0, $1843 = 0, $1844 = 0, $1845 = 0; + var $1846 = 0, $1847 = 0, $1848 = 0, $1849 = 0, $185 = 0, $1850 = 0, $1851 = 0, $1852 = 0, $1853 = 0, $1854 = 0, $1855 = 0, $1856 = 0, $1857 = 0, $1858 = 0, $1859 = 0, $186 = 0, $1860 = 0, $1861 = 0, $1862 = 0, $1863 = 0; + var $1864 = 0, $1865 = 0, $1866 = 0, $1867 = 0, $1868 = 0, $1869 = 0, $187 = 0, $1870 = 0, $1871 = 0, $1872 = 0, $1873 = 0, $1874 = 0, $1875 = 0, $1876 = 0, $1877 = 0, $1878 = 0, $1879 = 0, $188 = 0, $1880 = 0, $1881 = 0; + var $1882 = 0, $1883 = 0, $1884 = 0, $1885 = 0, $1886 = 0, $1887 = 0, $1888 = 0, $1889 = 0, $189 = 0, $1890 = 0, $1891 = 0, $1892 = 0, $1893 = 0, $1894 = 0, $1895 = 0, $1896 = 0, $1897 = 0, $1898 = 0, $1899 = 0, $19 = 0; + var $190 = 0, $1900 = 0, $1901 = 0, $1902 = 0, $1903 = 0, $1904 = 0, $1905 = 0, $1906 = 0, $1907 = 0, $1908 = 0, $1909 = 0, $191 = 0, $1910 = 0, $1911 = 0, $1912 = 0, $1913 = 0, $1914 = 0, $1915 = 0, $1916 = 0, $1917 = 0; + var $1918 = 0, $1919 = 0, $192 = 0, $1920 = 0, $1921 = 0, $1922 = 0, $1923 = 0, $1924 = 0, $1925 = 0, $1926 = 0, $1927 = 0, $1928 = 0, $1929 = 0, $193 = 0, $1930 = 0, $1931 = 0, $1932 = 0, $1933 = 0, $1934 = 0, $1935 = 0; + var $1936 = 0, $1937 = 0, $1938 = 0, $1939 = 0, $194 = 0, $1940 = 0, $1941 = 0, $1942 = 0, $1943 = 0, $1944 = 0, $1945 = 0, $1946 = 0, $1947 = 0, $1948 = 0, $1949 = 0, $195 = 0, $1950 = 0, $1951 = 0, $1952 = 0, $1953 = 0; + var $1954 = 0, $1955 = 0, $1956 = 0, $1957 = 0, $1958 = 0, $1959 = 0, $196 = 0, $1960 = 0, $1961 = 0, $1962 = 0, $1963 = 0, $1964 = 0, $1965 = 0, $1966 = 0, $1967 = 0, $1968 = 0, $1969 = 0, $197 = 0, $1970 = 0, $1971 = 0; + var $1972 = 0, $1973 = 0, $1974 = 0, $1975 = 0, $1976 = 0, $1977 = 0, $1978 = 0, $1979 = 0, $198 = 0, $1980 = 0, $1981 = 0, $1982 = 0, $1983 = 0, $1984 = 0, $1985 = 0, $1986 = 0, $1987 = 0, $1988 = 0, $1989 = 0, $199 = 0; + var $1990 = 0, $1991 = 0, $1992 = 0, $1993 = 0, $1994 = 0, $1995 = 0, $1996 = 0, $1997 = 0, $1998 = 0, $1999 = 0, $20 = 0, $200 = 0, $2000 = 0, $2001 = 0, $2002 = 0, $2003 = 0, $2004 = 0, $2005 = 0, $2006 = 0, $2007 = 0; + var $2008 = 0, $2009 = 0, $201 = 0, $2010 = 0, $2011 = 0, $2012 = 0, $2013 = 0, $2014 = 0, $2015 = 0, $2016 = 0, $2017 = 0, $2018 = 0, $2019 = 0, $202 = 0, $2020 = 0, $2021 = 0, $2022 = 0, $2023 = 0, $2024 = 0, $2025 = 0; + var $2026 = 0, $2027 = 0, $2028 = 0, $2029 = 0, $203 = 0, $2030 = 0, $2031 = 0, $2032 = 0, $2033 = 0, $2034 = 0, $2035 = 0, $2036 = 0, $2037 = 0, $2038 = 0, $2039 = 0, $204 = 0, $2040 = 0, $2041 = 0, $2042 = 0, $2043 = 0; + var $2044 = 0, $2045 = 0, $2046 = 0, $2047 = 0, $2048 = 0, $2049 = 0, $205 = 0, $2050 = 0, $2051 = 0, $2052 = 0, $2053 = 0, $2054 = 0, $2055 = 0, $2056 = 0, $2057 = 0, $2058 = 0, $2059 = 0, $206 = 0, $2060 = 0, $2061 = 0; + var $2062 = 0, $2063 = 0, $2064 = 0, $2065 = 0, $2066 = 0, $2067 = 0, $2068 = 0, $2069 = 0, $207 = 0, $2070 = 0, $2071 = 0, $2072 = 0, $2073 = 0, $2074 = 0, $2075 = 0, $2076 = 0, $2077 = 0, $2078 = 0, $2079 = 0, $208 = 0; + var $2080 = 0, $2081 = 0, $2082 = 0, $2083 = 0, $2084 = 0, $2085 = 0, $2086 = 0, $2087 = 0, $2088 = 0, $2089 = 0, $209 = 0, $2090 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0; var $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0; var $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0; var $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0; @@ -7464,2621 +3634,2521 @@ function _fproduct($output,$in2,$in) { var $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0; var $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = $in2; - $1 = $0; - $2 = HEAP32[$1>>2]|0; - $3 = (($0) + 4)|0; + $3 = $1; $4 = $3; $5 = HEAP32[$4>>2]|0; - $6 = (_bitshift64Ashr(0,($2|0),32)|0); - $7 = tempRet0; - $8 = $in; - $9 = $8; - $10 = HEAP32[$9>>2]|0; - $11 = (($8) + 4)|0; + $6 = (($3) + 4)|0; + $7 = $6; + $8 = HEAP32[$7>>2]|0; + $9 = (_bitshift64Ashr(0,($5|0),32)|0); + $10 = tempRet0; + $11 = $2; $12 = $11; $13 = HEAP32[$12>>2]|0; - $14 = (_bitshift64Ashr(0,($10|0),32)|0); - $15 = tempRet0; - $16 = (___muldi3(($14|0),($15|0),($6|0),($7|0))|0); - $17 = tempRet0; - $18 = $output; - $19 = $18; - HEAP32[$19>>2] = $16; - $20 = (($18) + 4)|0; - $21 = $20; - HEAP32[$21>>2] = $17; - $22 = $in2; - $23 = $22; - $24 = HEAP32[$23>>2]|0; - $25 = (($22) + 4)|0; + $14 = (($11) + 4)|0; + $15 = $14; + $16 = HEAP32[$15>>2]|0; + $17 = (_bitshift64Ashr(0,($13|0),32)|0); + $18 = tempRet0; + $19 = (___muldi3(($17|0),($18|0),($9|0),($10|0))|0); + $20 = tempRet0; + $21 = $0; + $22 = $21; + HEAP32[$22>>2] = $19; + $23 = (($21) + 4)|0; + $24 = $23; + HEAP32[$24>>2] = $20; + $25 = $1; $26 = $25; $27 = HEAP32[$26>>2]|0; - $28 = (_bitshift64Ashr(0,($24|0),32)|0); - $29 = tempRet0; - $30 = ((($in)) + 8|0); - $31 = $30; - $32 = $31; - $33 = HEAP32[$32>>2]|0; - $34 = (($31) + 4)|0; + $28 = (($25) + 4)|0; + $29 = $28; + $30 = HEAP32[$29>>2]|0; + $31 = (_bitshift64Ashr(0,($27|0),32)|0); + $32 = tempRet0; + $33 = ((($2)) + 8|0); + $34 = $33; $35 = $34; $36 = HEAP32[$35>>2]|0; - $37 = (_bitshift64Ashr(0,($33|0),32)|0); - $38 = tempRet0; - $39 = (___muldi3(($37|0),($38|0),($28|0),($29|0))|0); - $40 = tempRet0; - $41 = ((($in2)) + 8|0); - $42 = $41; - $43 = $42; - $44 = HEAP32[$43>>2]|0; - $45 = (($42) + 4)|0; + $37 = (($34) + 4)|0; + $38 = $37; + $39 = HEAP32[$38>>2]|0; + $40 = (_bitshift64Ashr(0,($36|0),32)|0); + $41 = tempRet0; + $42 = (___muldi3(($40|0),($41|0),($31|0),($32|0))|0); + $43 = tempRet0; + $44 = ((($1)) + 8|0); + $45 = $44; $46 = $45; $47 = HEAP32[$46>>2]|0; - $48 = (_bitshift64Ashr(0,($44|0),32)|0); - $49 = tempRet0; - $50 = $in; - $51 = $50; - $52 = HEAP32[$51>>2]|0; - $53 = (($50) + 4)|0; + $48 = (($45) + 4)|0; + $49 = $48; + $50 = HEAP32[$49>>2]|0; + $51 = (_bitshift64Ashr(0,($47|0),32)|0); + $52 = tempRet0; + $53 = $2; $54 = $53; $55 = HEAP32[$54>>2]|0; - $56 = (_bitshift64Ashr(0,($52|0),32)|0); - $57 = tempRet0; - $58 = (___muldi3(($56|0),($57|0),($48|0),($49|0))|0); - $59 = tempRet0; - $60 = (_i64Add(($58|0),($59|0),($39|0),($40|0))|0); - $61 = tempRet0; - $62 = ((($output)) + 8|0); - $63 = $62; - $64 = $63; - HEAP32[$64>>2] = $60; - $65 = (($63) + 4)|0; + $56 = (($53) + 4)|0; + $57 = $56; + $58 = HEAP32[$57>>2]|0; + $59 = (_bitshift64Ashr(0,($55|0),32)|0); + $60 = tempRet0; + $61 = (___muldi3(($59|0),($60|0),($51|0),($52|0))|0); + $62 = tempRet0; + $63 = (_i64Add(($61|0),($62|0),($42|0),($43|0))|0); + $64 = tempRet0; + $65 = ((($0)) + 8|0); $66 = $65; - HEAP32[$66>>2] = $61; - $67 = $41; - $68 = $67; - $69 = HEAP32[$68>>2]|0; - $70 = (($67) + 4)|0; + $67 = $66; + HEAP32[$67>>2] = $63; + $68 = (($66) + 4)|0; + $69 = $68; + HEAP32[$69>>2] = $64; + $70 = $44; $71 = $70; $72 = HEAP32[$71>>2]|0; - $73 = (_bitshift64Ashr(0,($69|0),31)|0); - $74 = tempRet0; - $75 = $30; - $76 = $75; - $77 = HEAP32[$76>>2]|0; - $78 = (($75) + 4)|0; + $73 = (($70) + 4)|0; + $74 = $73; + $75 = HEAP32[$74>>2]|0; + $76 = (_bitshift64Ashr(0,($72|0),31)|0); + $77 = tempRet0; + $78 = $33; $79 = $78; $80 = HEAP32[$79>>2]|0; - $81 = (_bitshift64Ashr(0,($77|0),32)|0); - $82 = tempRet0; - $83 = (___muldi3(($81|0),($82|0),($73|0),($74|0))|0); - $84 = tempRet0; - $85 = $in2; - $86 = $85; - $87 = HEAP32[$86>>2]|0; - $88 = (($85) + 4)|0; + $81 = (($78) + 4)|0; + $82 = $81; + $83 = HEAP32[$82>>2]|0; + $84 = (_bitshift64Ashr(0,($80|0),32)|0); + $85 = tempRet0; + $86 = (___muldi3(($84|0),($85|0),($76|0),($77|0))|0); + $87 = tempRet0; + $88 = $1; $89 = $88; $90 = HEAP32[$89>>2]|0; - $91 = (_bitshift64Ashr(0,($87|0),32)|0); - $92 = tempRet0; - $93 = ((($in)) + 16|0); - $94 = $93; - $95 = $94; - $96 = HEAP32[$95>>2]|0; - $97 = (($94) + 4)|0; - $98 = $97; - $99 = HEAP32[$98>>2]|0; - $100 = (_bitshift64Ashr(0,($96|0),32)|0); - $101 = tempRet0; - $102 = (___muldi3(($100|0),($101|0),($91|0),($92|0))|0); - $103 = tempRet0; - $104 = (_i64Add(($102|0),($103|0),($83|0),($84|0))|0); - $105 = tempRet0; - $106 = ((($in2)) + 16|0); - $107 = $106; - $108 = $107; - $109 = HEAP32[$108>>2]|0; - $110 = (($107) + 4)|0; + $91 = (($88) + 4)|0; + $92 = $91; + $93 = HEAP32[$92>>2]|0; + $94 = (_bitshift64Ashr(0,($90|0),32)|0); + $95 = tempRet0; + $96 = ((($2)) + 16|0); + $97 = $96; + $98 = $97; + $99 = HEAP32[$98>>2]|0; + $100 = (($97) + 4)|0; + $101 = $100; + $102 = HEAP32[$101>>2]|0; + $103 = (_bitshift64Ashr(0,($99|0),32)|0); + $104 = tempRet0; + $105 = (___muldi3(($103|0),($104|0),($94|0),($95|0))|0); + $106 = tempRet0; + $107 = (_i64Add(($105|0),($106|0),($86|0),($87|0))|0); + $108 = tempRet0; + $109 = ((($1)) + 16|0); + $110 = $109; $111 = $110; $112 = HEAP32[$111>>2]|0; - $113 = (_bitshift64Ashr(0,($109|0),32)|0); - $114 = tempRet0; - $115 = $in; - $116 = $115; - $117 = HEAP32[$116>>2]|0; - $118 = (($115) + 4)|0; + $113 = (($110) + 4)|0; + $114 = $113; + $115 = HEAP32[$114>>2]|0; + $116 = (_bitshift64Ashr(0,($112|0),32)|0); + $117 = tempRet0; + $118 = $2; $119 = $118; $120 = HEAP32[$119>>2]|0; - $121 = (_bitshift64Ashr(0,($117|0),32)|0); - $122 = tempRet0; - $123 = (___muldi3(($121|0),($122|0),($113|0),($114|0))|0); - $124 = tempRet0; - $125 = (_i64Add(($104|0),($105|0),($123|0),($124|0))|0); - $126 = tempRet0; - $127 = ((($output)) + 16|0); - $128 = $127; - $129 = $128; - HEAP32[$129>>2] = $125; - $130 = (($128) + 4)|0; + $121 = (($118) + 4)|0; + $122 = $121; + $123 = HEAP32[$122>>2]|0; + $124 = (_bitshift64Ashr(0,($120|0),32)|0); + $125 = tempRet0; + $126 = (___muldi3(($124|0),($125|0),($116|0),($117|0))|0); + $127 = tempRet0; + $128 = (_i64Add(($107|0),($108|0),($126|0),($127|0))|0); + $129 = tempRet0; + $130 = ((($0)) + 16|0); $131 = $130; - HEAP32[$131>>2] = $126; - $132 = $41; - $133 = $132; - $134 = HEAP32[$133>>2]|0; - $135 = (($132) + 4)|0; + $132 = $131; + HEAP32[$132>>2] = $128; + $133 = (($131) + 4)|0; + $134 = $133; + HEAP32[$134>>2] = $129; + $135 = $44; $136 = $135; $137 = HEAP32[$136>>2]|0; - $138 = (_bitshift64Ashr(0,($134|0),32)|0); - $139 = tempRet0; - $140 = $93; - $141 = $140; - $142 = HEAP32[$141>>2]|0; - $143 = (($140) + 4)|0; + $138 = (($135) + 4)|0; + $139 = $138; + $140 = HEAP32[$139>>2]|0; + $141 = (_bitshift64Ashr(0,($137|0),32)|0); + $142 = tempRet0; + $143 = $96; $144 = $143; $145 = HEAP32[$144>>2]|0; - $146 = (_bitshift64Ashr(0,($142|0),32)|0); - $147 = tempRet0; - $148 = (___muldi3(($146|0),($147|0),($138|0),($139|0))|0); - $149 = tempRet0; - $150 = $106; - $151 = $150; - $152 = HEAP32[$151>>2]|0; - $153 = (($150) + 4)|0; + $146 = (($143) + 4)|0; + $147 = $146; + $148 = HEAP32[$147>>2]|0; + $149 = (_bitshift64Ashr(0,($145|0),32)|0); + $150 = tempRet0; + $151 = (___muldi3(($149|0),($150|0),($141|0),($142|0))|0); + $152 = tempRet0; + $153 = $109; $154 = $153; $155 = HEAP32[$154>>2]|0; - $156 = (_bitshift64Ashr(0,($152|0),32)|0); - $157 = tempRet0; - $158 = $30; - $159 = $158; - $160 = HEAP32[$159>>2]|0; - $161 = (($158) + 4)|0; + $156 = (($153) + 4)|0; + $157 = $156; + $158 = HEAP32[$157>>2]|0; + $159 = (_bitshift64Ashr(0,($155|0),32)|0); + $160 = tempRet0; + $161 = $33; $162 = $161; $163 = HEAP32[$162>>2]|0; - $164 = (_bitshift64Ashr(0,($160|0),32)|0); - $165 = tempRet0; - $166 = (___muldi3(($164|0),($165|0),($156|0),($157|0))|0); - $167 = tempRet0; - $168 = (_i64Add(($166|0),($167|0),($148|0),($149|0))|0); - $169 = tempRet0; - $170 = $in2; - $171 = $170; - $172 = HEAP32[$171>>2]|0; - $173 = (($170) + 4)|0; + $164 = (($161) + 4)|0; + $165 = $164; + $166 = HEAP32[$165>>2]|0; + $167 = (_bitshift64Ashr(0,($163|0),32)|0); + $168 = tempRet0; + $169 = (___muldi3(($167|0),($168|0),($159|0),($160|0))|0); + $170 = tempRet0; + $171 = (_i64Add(($169|0),($170|0),($151|0),($152|0))|0); + $172 = tempRet0; + $173 = $1; $174 = $173; $175 = HEAP32[$174>>2]|0; - $176 = (_bitshift64Ashr(0,($172|0),32)|0); - $177 = tempRet0; - $178 = ((($in)) + 24|0); - $179 = $178; - $180 = $179; - $181 = HEAP32[$180>>2]|0; - $182 = (($179) + 4)|0; + $176 = (($173) + 4)|0; + $177 = $176; + $178 = HEAP32[$177>>2]|0; + $179 = (_bitshift64Ashr(0,($175|0),32)|0); + $180 = tempRet0; + $181 = ((($2)) + 24|0); + $182 = $181; $183 = $182; $184 = HEAP32[$183>>2]|0; - $185 = (_bitshift64Ashr(0,($181|0),32)|0); - $186 = tempRet0; - $187 = (___muldi3(($185|0),($186|0),($176|0),($177|0))|0); - $188 = tempRet0; - $189 = (_i64Add(($168|0),($169|0),($187|0),($188|0))|0); - $190 = tempRet0; - $191 = ((($in2)) + 24|0); - $192 = $191; - $193 = $192; - $194 = HEAP32[$193>>2]|0; - $195 = (($192) + 4)|0; + $185 = (($182) + 4)|0; + $186 = $185; + $187 = HEAP32[$186>>2]|0; + $188 = (_bitshift64Ashr(0,($184|0),32)|0); + $189 = tempRet0; + $190 = (___muldi3(($188|0),($189|0),($179|0),($180|0))|0); + $191 = tempRet0; + $192 = (_i64Add(($171|0),($172|0),($190|0),($191|0))|0); + $193 = tempRet0; + $194 = ((($1)) + 24|0); + $195 = $194; $196 = $195; $197 = HEAP32[$196>>2]|0; - $198 = (_bitshift64Ashr(0,($194|0),32)|0); - $199 = tempRet0; - $200 = $in; - $201 = $200; - $202 = HEAP32[$201>>2]|0; - $203 = (($200) + 4)|0; + $198 = (($195) + 4)|0; + $199 = $198; + $200 = HEAP32[$199>>2]|0; + $201 = (_bitshift64Ashr(0,($197|0),32)|0); + $202 = tempRet0; + $203 = $2; $204 = $203; $205 = HEAP32[$204>>2]|0; - $206 = (_bitshift64Ashr(0,($202|0),32)|0); - $207 = tempRet0; - $208 = (___muldi3(($206|0),($207|0),($198|0),($199|0))|0); - $209 = tempRet0; - $210 = (_i64Add(($189|0),($190|0),($208|0),($209|0))|0); - $211 = tempRet0; - $212 = ((($output)) + 24|0); - $213 = $212; - $214 = $213; - HEAP32[$214>>2] = $210; - $215 = (($213) + 4)|0; + $206 = (($203) + 4)|0; + $207 = $206; + $208 = HEAP32[$207>>2]|0; + $209 = (_bitshift64Ashr(0,($205|0),32)|0); + $210 = tempRet0; + $211 = (___muldi3(($209|0),($210|0),($201|0),($202|0))|0); + $212 = tempRet0; + $213 = (_i64Add(($192|0),($193|0),($211|0),($212|0))|0); + $214 = tempRet0; + $215 = ((($0)) + 24|0); $216 = $215; - HEAP32[$216>>2] = $211; - $217 = $106; - $218 = $217; - $219 = HEAP32[$218>>2]|0; - $220 = (($217) + 4)|0; + $217 = $216; + HEAP32[$217>>2] = $213; + $218 = (($216) + 4)|0; + $219 = $218; + HEAP32[$219>>2] = $214; + $220 = $109; $221 = $220; $222 = HEAP32[$221>>2]|0; - $223 = (_bitshift64Ashr(0,($219|0),32)|0); - $224 = tempRet0; - $225 = $93; - $226 = $225; - $227 = HEAP32[$226>>2]|0; - $228 = (($225) + 4)|0; + $223 = (($220) + 4)|0; + $224 = $223; + $225 = HEAP32[$224>>2]|0; + $226 = (_bitshift64Ashr(0,($222|0),32)|0); + $227 = tempRet0; + $228 = $96; $229 = $228; $230 = HEAP32[$229>>2]|0; - $231 = (_bitshift64Ashr(0,($227|0),32)|0); - $232 = tempRet0; - $233 = (___muldi3(($231|0),($232|0),($223|0),($224|0))|0); - $234 = tempRet0; - $235 = $41; - $236 = $235; - $237 = HEAP32[$236>>2]|0; - $238 = (($235) + 4)|0; + $231 = (($228) + 4)|0; + $232 = $231; + $233 = HEAP32[$232>>2]|0; + $234 = (_bitshift64Ashr(0,($230|0),32)|0); + $235 = tempRet0; + $236 = (___muldi3(($234|0),($235|0),($226|0),($227|0))|0); + $237 = tempRet0; + $238 = $44; $239 = $238; $240 = HEAP32[$239>>2]|0; - $241 = (_bitshift64Ashr(0,($237|0),32)|0); - $242 = tempRet0; - $243 = $178; - $244 = $243; - $245 = HEAP32[$244>>2]|0; - $246 = (($243) + 4)|0; + $241 = (($238) + 4)|0; + $242 = $241; + $243 = HEAP32[$242>>2]|0; + $244 = (_bitshift64Ashr(0,($240|0),32)|0); + $245 = tempRet0; + $246 = $181; $247 = $246; $248 = HEAP32[$247>>2]|0; - $249 = (_bitshift64Ashr(0,($245|0),32)|0); - $250 = tempRet0; - $251 = (___muldi3(($249|0),($250|0),($241|0),($242|0))|0); - $252 = tempRet0; - $253 = $191; - $254 = $253; - $255 = HEAP32[$254>>2]|0; - $256 = (($253) + 4)|0; + $249 = (($246) + 4)|0; + $250 = $249; + $251 = HEAP32[$250>>2]|0; + $252 = (_bitshift64Ashr(0,($248|0),32)|0); + $253 = tempRet0; + $254 = (___muldi3(($252|0),($253|0),($244|0),($245|0))|0); + $255 = tempRet0; + $256 = $194; $257 = $256; $258 = HEAP32[$257>>2]|0; - $259 = (_bitshift64Ashr(0,($255|0),32)|0); - $260 = tempRet0; - $261 = $30; - $262 = $261; - $263 = HEAP32[$262>>2]|0; - $264 = (($261) + 4)|0; + $259 = (($256) + 4)|0; + $260 = $259; + $261 = HEAP32[$260>>2]|0; + $262 = (_bitshift64Ashr(0,($258|0),32)|0); + $263 = tempRet0; + $264 = $33; $265 = $264; $266 = HEAP32[$265>>2]|0; - $267 = (_bitshift64Ashr(0,($263|0),32)|0); - $268 = tempRet0; - $269 = (___muldi3(($267|0),($268|0),($259|0),($260|0))|0); - $270 = tempRet0; - $271 = (_i64Add(($269|0),($270|0),($251|0),($252|0))|0); - $272 = tempRet0; - $273 = (_bitshift64Shl(($271|0),($272|0),1)|0); - $274 = tempRet0; - $275 = (_i64Add(($273|0),($274|0),($233|0),($234|0))|0); - $276 = tempRet0; - $277 = $in2; - $278 = $277; - $279 = HEAP32[$278>>2]|0; - $280 = (($277) + 4)|0; + $267 = (($264) + 4)|0; + $268 = $267; + $269 = HEAP32[$268>>2]|0; + $270 = (_bitshift64Ashr(0,($266|0),32)|0); + $271 = tempRet0; + $272 = (___muldi3(($270|0),($271|0),($262|0),($263|0))|0); + $273 = tempRet0; + $274 = (_i64Add(($272|0),($273|0),($254|0),($255|0))|0); + $275 = tempRet0; + $276 = (_bitshift64Shl(($274|0),($275|0),1)|0); + $277 = tempRet0; + $278 = (_i64Add(($276|0),($277|0),($236|0),($237|0))|0); + $279 = tempRet0; + $280 = $1; $281 = $280; $282 = HEAP32[$281>>2]|0; - $283 = (_bitshift64Ashr(0,($279|0),32)|0); - $284 = tempRet0; - $285 = ((($in)) + 32|0); - $286 = $285; - $287 = $286; - $288 = HEAP32[$287>>2]|0; - $289 = (($286) + 4)|0; + $283 = (($280) + 4)|0; + $284 = $283; + $285 = HEAP32[$284>>2]|0; + $286 = (_bitshift64Ashr(0,($282|0),32)|0); + $287 = tempRet0; + $288 = ((($2)) + 32|0); + $289 = $288; $290 = $289; $291 = HEAP32[$290>>2]|0; - $292 = (_bitshift64Ashr(0,($288|0),32)|0); - $293 = tempRet0; - $294 = (___muldi3(($292|0),($293|0),($283|0),($284|0))|0); - $295 = tempRet0; - $296 = (_i64Add(($275|0),($276|0),($294|0),($295|0))|0); - $297 = tempRet0; - $298 = ((($in2)) + 32|0); - $299 = $298; - $300 = $299; - $301 = HEAP32[$300>>2]|0; - $302 = (($299) + 4)|0; + $292 = (($289) + 4)|0; + $293 = $292; + $294 = HEAP32[$293>>2]|0; + $295 = (_bitshift64Ashr(0,($291|0),32)|0); + $296 = tempRet0; + $297 = (___muldi3(($295|0),($296|0),($286|0),($287|0))|0); + $298 = tempRet0; + $299 = (_i64Add(($278|0),($279|0),($297|0),($298|0))|0); + $300 = tempRet0; + $301 = ((($1)) + 32|0); + $302 = $301; $303 = $302; $304 = HEAP32[$303>>2]|0; - $305 = (_bitshift64Ashr(0,($301|0),32)|0); - $306 = tempRet0; - $307 = $in; - $308 = $307; - $309 = HEAP32[$308>>2]|0; - $310 = (($307) + 4)|0; + $305 = (($302) + 4)|0; + $306 = $305; + $307 = HEAP32[$306>>2]|0; + $308 = (_bitshift64Ashr(0,($304|0),32)|0); + $309 = tempRet0; + $310 = $2; $311 = $310; $312 = HEAP32[$311>>2]|0; - $313 = (_bitshift64Ashr(0,($309|0),32)|0); - $314 = tempRet0; - $315 = (___muldi3(($313|0),($314|0),($305|0),($306|0))|0); - $316 = tempRet0; - $317 = (_i64Add(($296|0),($297|0),($315|0),($316|0))|0); - $318 = tempRet0; - $319 = ((($output)) + 32|0); - $320 = $319; - $321 = $320; - HEAP32[$321>>2] = $317; - $322 = (($320) + 4)|0; + $313 = (($310) + 4)|0; + $314 = $313; + $315 = HEAP32[$314>>2]|0; + $316 = (_bitshift64Ashr(0,($312|0),32)|0); + $317 = tempRet0; + $318 = (___muldi3(($316|0),($317|0),($308|0),($309|0))|0); + $319 = tempRet0; + $320 = (_i64Add(($299|0),($300|0),($318|0),($319|0))|0); + $321 = tempRet0; + $322 = ((($0)) + 32|0); $323 = $322; - HEAP32[$323>>2] = $318; - $324 = $106; - $325 = $324; - $326 = HEAP32[$325>>2]|0; - $327 = (($324) + 4)|0; + $324 = $323; + HEAP32[$324>>2] = $320; + $325 = (($323) + 4)|0; + $326 = $325; + HEAP32[$326>>2] = $321; + $327 = $109; $328 = $327; $329 = HEAP32[$328>>2]|0; - $330 = (_bitshift64Ashr(0,($326|0),32)|0); - $331 = tempRet0; - $332 = $178; - $333 = $332; - $334 = HEAP32[$333>>2]|0; - $335 = (($332) + 4)|0; + $330 = (($327) + 4)|0; + $331 = $330; + $332 = HEAP32[$331>>2]|0; + $333 = (_bitshift64Ashr(0,($329|0),32)|0); + $334 = tempRet0; + $335 = $181; $336 = $335; $337 = HEAP32[$336>>2]|0; - $338 = (_bitshift64Ashr(0,($334|0),32)|0); - $339 = tempRet0; - $340 = (___muldi3(($338|0),($339|0),($330|0),($331|0))|0); - $341 = tempRet0; - $342 = $191; - $343 = $342; - $344 = HEAP32[$343>>2]|0; - $345 = (($342) + 4)|0; + $338 = (($335) + 4)|0; + $339 = $338; + $340 = HEAP32[$339>>2]|0; + $341 = (_bitshift64Ashr(0,($337|0),32)|0); + $342 = tempRet0; + $343 = (___muldi3(($341|0),($342|0),($333|0),($334|0))|0); + $344 = tempRet0; + $345 = $194; $346 = $345; $347 = HEAP32[$346>>2]|0; - $348 = (_bitshift64Ashr(0,($344|0),32)|0); - $349 = tempRet0; - $350 = $93; - $351 = $350; - $352 = HEAP32[$351>>2]|0; - $353 = (($350) + 4)|0; + $348 = (($345) + 4)|0; + $349 = $348; + $350 = HEAP32[$349>>2]|0; + $351 = (_bitshift64Ashr(0,($347|0),32)|0); + $352 = tempRet0; + $353 = $96; $354 = $353; $355 = HEAP32[$354>>2]|0; - $356 = (_bitshift64Ashr(0,($352|0),32)|0); - $357 = tempRet0; - $358 = (___muldi3(($356|0),($357|0),($348|0),($349|0))|0); - $359 = tempRet0; - $360 = (_i64Add(($358|0),($359|0),($340|0),($341|0))|0); - $361 = tempRet0; - $362 = $41; - $363 = $362; - $364 = HEAP32[$363>>2]|0; - $365 = (($362) + 4)|0; + $356 = (($353) + 4)|0; + $357 = $356; + $358 = HEAP32[$357>>2]|0; + $359 = (_bitshift64Ashr(0,($355|0),32)|0); + $360 = tempRet0; + $361 = (___muldi3(($359|0),($360|0),($351|0),($352|0))|0); + $362 = tempRet0; + $363 = (_i64Add(($361|0),($362|0),($343|0),($344|0))|0); + $364 = tempRet0; + $365 = $44; $366 = $365; $367 = HEAP32[$366>>2]|0; - $368 = (_bitshift64Ashr(0,($364|0),32)|0); - $369 = tempRet0; - $370 = $285; - $371 = $370; - $372 = HEAP32[$371>>2]|0; - $373 = (($370) + 4)|0; + $368 = (($365) + 4)|0; + $369 = $368; + $370 = HEAP32[$369>>2]|0; + $371 = (_bitshift64Ashr(0,($367|0),32)|0); + $372 = tempRet0; + $373 = $288; $374 = $373; $375 = HEAP32[$374>>2]|0; - $376 = (_bitshift64Ashr(0,($372|0),32)|0); - $377 = tempRet0; - $378 = (___muldi3(($376|0),($377|0),($368|0),($369|0))|0); - $379 = tempRet0; - $380 = (_i64Add(($360|0),($361|0),($378|0),($379|0))|0); - $381 = tempRet0; - $382 = $298; - $383 = $382; - $384 = HEAP32[$383>>2]|0; - $385 = (($382) + 4)|0; + $376 = (($373) + 4)|0; + $377 = $376; + $378 = HEAP32[$377>>2]|0; + $379 = (_bitshift64Ashr(0,($375|0),32)|0); + $380 = tempRet0; + $381 = (___muldi3(($379|0),($380|0),($371|0),($372|0))|0); + $382 = tempRet0; + $383 = (_i64Add(($363|0),($364|0),($381|0),($382|0))|0); + $384 = tempRet0; + $385 = $301; $386 = $385; $387 = HEAP32[$386>>2]|0; - $388 = (_bitshift64Ashr(0,($384|0),32)|0); - $389 = tempRet0; - $390 = $30; - $391 = $390; - $392 = HEAP32[$391>>2]|0; - $393 = (($390) + 4)|0; + $388 = (($385) + 4)|0; + $389 = $388; + $390 = HEAP32[$389>>2]|0; + $391 = (_bitshift64Ashr(0,($387|0),32)|0); + $392 = tempRet0; + $393 = $33; $394 = $393; $395 = HEAP32[$394>>2]|0; - $396 = (_bitshift64Ashr(0,($392|0),32)|0); - $397 = tempRet0; - $398 = (___muldi3(($396|0),($397|0),($388|0),($389|0))|0); - $399 = tempRet0; - $400 = (_i64Add(($380|0),($381|0),($398|0),($399|0))|0); - $401 = tempRet0; - $402 = $in2; - $403 = $402; - $404 = HEAP32[$403>>2]|0; - $405 = (($402) + 4)|0; + $396 = (($393) + 4)|0; + $397 = $396; + $398 = HEAP32[$397>>2]|0; + $399 = (_bitshift64Ashr(0,($395|0),32)|0); + $400 = tempRet0; + $401 = (___muldi3(($399|0),($400|0),($391|0),($392|0))|0); + $402 = tempRet0; + $403 = (_i64Add(($383|0),($384|0),($401|0),($402|0))|0); + $404 = tempRet0; + $405 = $1; $406 = $405; $407 = HEAP32[$406>>2]|0; - $408 = (_bitshift64Ashr(0,($404|0),32)|0); - $409 = tempRet0; - $410 = ((($in)) + 40|0); - $411 = $410; - $412 = $411; - $413 = HEAP32[$412>>2]|0; - $414 = (($411) + 4)|0; + $408 = (($405) + 4)|0; + $409 = $408; + $410 = HEAP32[$409>>2]|0; + $411 = (_bitshift64Ashr(0,($407|0),32)|0); + $412 = tempRet0; + $413 = ((($2)) + 40|0); + $414 = $413; $415 = $414; $416 = HEAP32[$415>>2]|0; - $417 = (_bitshift64Ashr(0,($413|0),32)|0); - $418 = tempRet0; - $419 = (___muldi3(($417|0),($418|0),($408|0),($409|0))|0); - $420 = tempRet0; - $421 = (_i64Add(($400|0),($401|0),($419|0),($420|0))|0); - $422 = tempRet0; - $423 = ((($in2)) + 40|0); - $424 = $423; - $425 = $424; - $426 = HEAP32[$425>>2]|0; - $427 = (($424) + 4)|0; + $417 = (($414) + 4)|0; + $418 = $417; + $419 = HEAP32[$418>>2]|0; + $420 = (_bitshift64Ashr(0,($416|0),32)|0); + $421 = tempRet0; + $422 = (___muldi3(($420|0),($421|0),($411|0),($412|0))|0); + $423 = tempRet0; + $424 = (_i64Add(($403|0),($404|0),($422|0),($423|0))|0); + $425 = tempRet0; + $426 = ((($1)) + 40|0); + $427 = $426; $428 = $427; $429 = HEAP32[$428>>2]|0; - $430 = (_bitshift64Ashr(0,($426|0),32)|0); - $431 = tempRet0; - $432 = $in; - $433 = $432; - $434 = HEAP32[$433>>2]|0; - $435 = (($432) + 4)|0; + $430 = (($427) + 4)|0; + $431 = $430; + $432 = HEAP32[$431>>2]|0; + $433 = (_bitshift64Ashr(0,($429|0),32)|0); + $434 = tempRet0; + $435 = $2; $436 = $435; $437 = HEAP32[$436>>2]|0; - $438 = (_bitshift64Ashr(0,($434|0),32)|0); - $439 = tempRet0; - $440 = (___muldi3(($438|0),($439|0),($430|0),($431|0))|0); - $441 = tempRet0; - $442 = (_i64Add(($421|0),($422|0),($440|0),($441|0))|0); - $443 = tempRet0; - $444 = ((($output)) + 40|0); - $445 = $444; - $446 = $445; - HEAP32[$446>>2] = $442; - $447 = (($445) + 4)|0; + $438 = (($435) + 4)|0; + $439 = $438; + $440 = HEAP32[$439>>2]|0; + $441 = (_bitshift64Ashr(0,($437|0),32)|0); + $442 = tempRet0; + $443 = (___muldi3(($441|0),($442|0),($433|0),($434|0))|0); + $444 = tempRet0; + $445 = (_i64Add(($424|0),($425|0),($443|0),($444|0))|0); + $446 = tempRet0; + $447 = ((($0)) + 40|0); $448 = $447; - HEAP32[$448>>2] = $443; - $449 = $191; - $450 = $449; - $451 = HEAP32[$450>>2]|0; - $452 = (($449) + 4)|0; + $449 = $448; + HEAP32[$449>>2] = $445; + $450 = (($448) + 4)|0; + $451 = $450; + HEAP32[$451>>2] = $446; + $452 = $194; $453 = $452; $454 = HEAP32[$453>>2]|0; - $455 = (_bitshift64Ashr(0,($451|0),32)|0); - $456 = tempRet0; - $457 = $178; - $458 = $457; - $459 = HEAP32[$458>>2]|0; - $460 = (($457) + 4)|0; + $455 = (($452) + 4)|0; + $456 = $455; + $457 = HEAP32[$456>>2]|0; + $458 = (_bitshift64Ashr(0,($454|0),32)|0); + $459 = tempRet0; + $460 = $181; $461 = $460; $462 = HEAP32[$461>>2]|0; - $463 = (_bitshift64Ashr(0,($459|0),32)|0); - $464 = tempRet0; - $465 = (___muldi3(($463|0),($464|0),($455|0),($456|0))|0); - $466 = tempRet0; - $467 = $41; - $468 = $467; - $469 = HEAP32[$468>>2]|0; - $470 = (($467) + 4)|0; + $463 = (($460) + 4)|0; + $464 = $463; + $465 = HEAP32[$464>>2]|0; + $466 = (_bitshift64Ashr(0,($462|0),32)|0); + $467 = tempRet0; + $468 = (___muldi3(($466|0),($467|0),($458|0),($459|0))|0); + $469 = tempRet0; + $470 = $44; $471 = $470; $472 = HEAP32[$471>>2]|0; - $473 = (_bitshift64Ashr(0,($469|0),32)|0); - $474 = tempRet0; - $475 = $410; - $476 = $475; - $477 = HEAP32[$476>>2]|0; - $478 = (($475) + 4)|0; + $473 = (($470) + 4)|0; + $474 = $473; + $475 = HEAP32[$474>>2]|0; + $476 = (_bitshift64Ashr(0,($472|0),32)|0); + $477 = tempRet0; + $478 = $413; $479 = $478; $480 = HEAP32[$479>>2]|0; - $481 = (_bitshift64Ashr(0,($477|0),32)|0); - $482 = tempRet0; - $483 = (___muldi3(($481|0),($482|0),($473|0),($474|0))|0); - $484 = tempRet0; - $485 = (_i64Add(($483|0),($484|0),($465|0),($466|0))|0); - $486 = tempRet0; - $487 = $423; - $488 = $487; - $489 = HEAP32[$488>>2]|0; - $490 = (($487) + 4)|0; + $481 = (($478) + 4)|0; + $482 = $481; + $483 = HEAP32[$482>>2]|0; + $484 = (_bitshift64Ashr(0,($480|0),32)|0); + $485 = tempRet0; + $486 = (___muldi3(($484|0),($485|0),($476|0),($477|0))|0); + $487 = tempRet0; + $488 = (_i64Add(($486|0),($487|0),($468|0),($469|0))|0); + $489 = tempRet0; + $490 = $426; $491 = $490; $492 = HEAP32[$491>>2]|0; - $493 = (_bitshift64Ashr(0,($489|0),32)|0); - $494 = tempRet0; - $495 = $30; - $496 = $495; - $497 = HEAP32[$496>>2]|0; - $498 = (($495) + 4)|0; + $493 = (($490) + 4)|0; + $494 = $493; + $495 = HEAP32[$494>>2]|0; + $496 = (_bitshift64Ashr(0,($492|0),32)|0); + $497 = tempRet0; + $498 = $33; $499 = $498; $500 = HEAP32[$499>>2]|0; - $501 = (_bitshift64Ashr(0,($497|0),32)|0); - $502 = tempRet0; - $503 = (___muldi3(($501|0),($502|0),($493|0),($494|0))|0); - $504 = tempRet0; - $505 = (_i64Add(($485|0),($486|0),($503|0),($504|0))|0); - $506 = tempRet0; - $507 = (_bitshift64Shl(($505|0),($506|0),1)|0); - $508 = tempRet0; - $509 = $106; - $510 = $509; - $511 = HEAP32[$510>>2]|0; - $512 = (($509) + 4)|0; + $501 = (($498) + 4)|0; + $502 = $501; + $503 = HEAP32[$502>>2]|0; + $504 = (_bitshift64Ashr(0,($500|0),32)|0); + $505 = tempRet0; + $506 = (___muldi3(($504|0),($505|0),($496|0),($497|0))|0); + $507 = tempRet0; + $508 = (_i64Add(($488|0),($489|0),($506|0),($507|0))|0); + $509 = tempRet0; + $510 = (_bitshift64Shl(($508|0),($509|0),1)|0); + $511 = tempRet0; + $512 = $109; $513 = $512; $514 = HEAP32[$513>>2]|0; - $515 = (_bitshift64Ashr(0,($511|0),32)|0); - $516 = tempRet0; - $517 = $285; - $518 = $517; - $519 = HEAP32[$518>>2]|0; - $520 = (($517) + 4)|0; + $515 = (($512) + 4)|0; + $516 = $515; + $517 = HEAP32[$516>>2]|0; + $518 = (_bitshift64Ashr(0,($514|0),32)|0); + $519 = tempRet0; + $520 = $288; $521 = $520; $522 = HEAP32[$521>>2]|0; - $523 = (_bitshift64Ashr(0,($519|0),32)|0); - $524 = tempRet0; - $525 = (___muldi3(($523|0),($524|0),($515|0),($516|0))|0); - $526 = tempRet0; - $527 = (_i64Add(($507|0),($508|0),($525|0),($526|0))|0); - $528 = tempRet0; - $529 = $298; - $530 = $529; - $531 = HEAP32[$530>>2]|0; - $532 = (($529) + 4)|0; + $523 = (($520) + 4)|0; + $524 = $523; + $525 = HEAP32[$524>>2]|0; + $526 = (_bitshift64Ashr(0,($522|0),32)|0); + $527 = tempRet0; + $528 = (___muldi3(($526|0),($527|0),($518|0),($519|0))|0); + $529 = tempRet0; + $530 = (_i64Add(($510|0),($511|0),($528|0),($529|0))|0); + $531 = tempRet0; + $532 = $301; $533 = $532; $534 = HEAP32[$533>>2]|0; - $535 = (_bitshift64Ashr(0,($531|0),32)|0); - $536 = tempRet0; - $537 = $93; - $538 = $537; - $539 = HEAP32[$538>>2]|0; - $540 = (($537) + 4)|0; + $535 = (($532) + 4)|0; + $536 = $535; + $537 = HEAP32[$536>>2]|0; + $538 = (_bitshift64Ashr(0,($534|0),32)|0); + $539 = tempRet0; + $540 = $96; $541 = $540; $542 = HEAP32[$541>>2]|0; - $543 = (_bitshift64Ashr(0,($539|0),32)|0); - $544 = tempRet0; - $545 = (___muldi3(($543|0),($544|0),($535|0),($536|0))|0); - $546 = tempRet0; - $547 = (_i64Add(($527|0),($528|0),($545|0),($546|0))|0); - $548 = tempRet0; - $549 = $in2; - $550 = $549; - $551 = HEAP32[$550>>2]|0; - $552 = (($549) + 4)|0; + $543 = (($540) + 4)|0; + $544 = $543; + $545 = HEAP32[$544>>2]|0; + $546 = (_bitshift64Ashr(0,($542|0),32)|0); + $547 = tempRet0; + $548 = (___muldi3(($546|0),($547|0),($538|0),($539|0))|0); + $549 = tempRet0; + $550 = (_i64Add(($530|0),($531|0),($548|0),($549|0))|0); + $551 = tempRet0; + $552 = $1; $553 = $552; $554 = HEAP32[$553>>2]|0; - $555 = (_bitshift64Ashr(0,($551|0),32)|0); - $556 = tempRet0; - $557 = ((($in)) + 48|0); - $558 = $557; - $559 = $558; - $560 = HEAP32[$559>>2]|0; - $561 = (($558) + 4)|0; + $555 = (($552) + 4)|0; + $556 = $555; + $557 = HEAP32[$556>>2]|0; + $558 = (_bitshift64Ashr(0,($554|0),32)|0); + $559 = tempRet0; + $560 = ((($2)) + 48|0); + $561 = $560; $562 = $561; $563 = HEAP32[$562>>2]|0; - $564 = (_bitshift64Ashr(0,($560|0),32)|0); - $565 = tempRet0; - $566 = (___muldi3(($564|0),($565|0),($555|0),($556|0))|0); - $567 = tempRet0; - $568 = (_i64Add(($547|0),($548|0),($566|0),($567|0))|0); - $569 = tempRet0; - $570 = ((($in2)) + 48|0); - $571 = $570; - $572 = $571; - $573 = HEAP32[$572>>2]|0; - $574 = (($571) + 4)|0; + $564 = (($561) + 4)|0; + $565 = $564; + $566 = HEAP32[$565>>2]|0; + $567 = (_bitshift64Ashr(0,($563|0),32)|0); + $568 = tempRet0; + $569 = (___muldi3(($567|0),($568|0),($558|0),($559|0))|0); + $570 = tempRet0; + $571 = (_i64Add(($550|0),($551|0),($569|0),($570|0))|0); + $572 = tempRet0; + $573 = ((($1)) + 48|0); + $574 = $573; $575 = $574; $576 = HEAP32[$575>>2]|0; - $577 = (_bitshift64Ashr(0,($573|0),32)|0); - $578 = tempRet0; - $579 = $in; - $580 = $579; - $581 = HEAP32[$580>>2]|0; - $582 = (($579) + 4)|0; + $577 = (($574) + 4)|0; + $578 = $577; + $579 = HEAP32[$578>>2]|0; + $580 = (_bitshift64Ashr(0,($576|0),32)|0); + $581 = tempRet0; + $582 = $2; $583 = $582; $584 = HEAP32[$583>>2]|0; - $585 = (_bitshift64Ashr(0,($581|0),32)|0); - $586 = tempRet0; - $587 = (___muldi3(($585|0),($586|0),($577|0),($578|0))|0); - $588 = tempRet0; - $589 = (_i64Add(($568|0),($569|0),($587|0),($588|0))|0); - $590 = tempRet0; - $591 = ((($output)) + 48|0); - $592 = $591; - $593 = $592; - HEAP32[$593>>2] = $589; - $594 = (($592) + 4)|0; + $585 = (($582) + 4)|0; + $586 = $585; + $587 = HEAP32[$586>>2]|0; + $588 = (_bitshift64Ashr(0,($584|0),32)|0); + $589 = tempRet0; + $590 = (___muldi3(($588|0),($589|0),($580|0),($581|0))|0); + $591 = tempRet0; + $592 = (_i64Add(($571|0),($572|0),($590|0),($591|0))|0); + $593 = tempRet0; + $594 = ((($0)) + 48|0); $595 = $594; - HEAP32[$595>>2] = $590; - $596 = $191; - $597 = $596; - $598 = HEAP32[$597>>2]|0; - $599 = (($596) + 4)|0; + $596 = $595; + HEAP32[$596>>2] = $592; + $597 = (($595) + 4)|0; + $598 = $597; + HEAP32[$598>>2] = $593; + $599 = $194; $600 = $599; $601 = HEAP32[$600>>2]|0; - $602 = (_bitshift64Ashr(0,($598|0),32)|0); - $603 = tempRet0; - $604 = $285; - $605 = $604; - $606 = HEAP32[$605>>2]|0; - $607 = (($604) + 4)|0; + $602 = (($599) + 4)|0; + $603 = $602; + $604 = HEAP32[$603>>2]|0; + $605 = (_bitshift64Ashr(0,($601|0),32)|0); + $606 = tempRet0; + $607 = $288; $608 = $607; $609 = HEAP32[$608>>2]|0; - $610 = (_bitshift64Ashr(0,($606|0),32)|0); - $611 = tempRet0; - $612 = (___muldi3(($610|0),($611|0),($602|0),($603|0))|0); - $613 = tempRet0; - $614 = $298; - $615 = $614; - $616 = HEAP32[$615>>2]|0; - $617 = (($614) + 4)|0; + $610 = (($607) + 4)|0; + $611 = $610; + $612 = HEAP32[$611>>2]|0; + $613 = (_bitshift64Ashr(0,($609|0),32)|0); + $614 = tempRet0; + $615 = (___muldi3(($613|0),($614|0),($605|0),($606|0))|0); + $616 = tempRet0; + $617 = $301; $618 = $617; $619 = HEAP32[$618>>2]|0; - $620 = (_bitshift64Ashr(0,($616|0),32)|0); - $621 = tempRet0; - $622 = $178; - $623 = $622; - $624 = HEAP32[$623>>2]|0; - $625 = (($622) + 4)|0; + $620 = (($617) + 4)|0; + $621 = $620; + $622 = HEAP32[$621>>2]|0; + $623 = (_bitshift64Ashr(0,($619|0),32)|0); + $624 = tempRet0; + $625 = $181; $626 = $625; $627 = HEAP32[$626>>2]|0; - $628 = (_bitshift64Ashr(0,($624|0),32)|0); - $629 = tempRet0; - $630 = (___muldi3(($628|0),($629|0),($620|0),($621|0))|0); - $631 = tempRet0; - $632 = (_i64Add(($630|0),($631|0),($612|0),($613|0))|0); - $633 = tempRet0; - $634 = $106; - $635 = $634; - $636 = HEAP32[$635>>2]|0; - $637 = (($634) + 4)|0; + $628 = (($625) + 4)|0; + $629 = $628; + $630 = HEAP32[$629>>2]|0; + $631 = (_bitshift64Ashr(0,($627|0),32)|0); + $632 = tempRet0; + $633 = (___muldi3(($631|0),($632|0),($623|0),($624|0))|0); + $634 = tempRet0; + $635 = (_i64Add(($633|0),($634|0),($615|0),($616|0))|0); + $636 = tempRet0; + $637 = $109; $638 = $637; $639 = HEAP32[$638>>2]|0; - $640 = (_bitshift64Ashr(0,($636|0),32)|0); - $641 = tempRet0; - $642 = $410; - $643 = $642; - $644 = HEAP32[$643>>2]|0; - $645 = (($642) + 4)|0; + $640 = (($637) + 4)|0; + $641 = $640; + $642 = HEAP32[$641>>2]|0; + $643 = (_bitshift64Ashr(0,($639|0),32)|0); + $644 = tempRet0; + $645 = $413; $646 = $645; $647 = HEAP32[$646>>2]|0; - $648 = (_bitshift64Ashr(0,($644|0),32)|0); - $649 = tempRet0; - $650 = (___muldi3(($648|0),($649|0),($640|0),($641|0))|0); - $651 = tempRet0; - $652 = (_i64Add(($632|0),($633|0),($650|0),($651|0))|0); - $653 = tempRet0; - $654 = $423; - $655 = $654; - $656 = HEAP32[$655>>2]|0; - $657 = (($654) + 4)|0; + $648 = (($645) + 4)|0; + $649 = $648; + $650 = HEAP32[$649>>2]|0; + $651 = (_bitshift64Ashr(0,($647|0),32)|0); + $652 = tempRet0; + $653 = (___muldi3(($651|0),($652|0),($643|0),($644|0))|0); + $654 = tempRet0; + $655 = (_i64Add(($635|0),($636|0),($653|0),($654|0))|0); + $656 = tempRet0; + $657 = $426; $658 = $657; $659 = HEAP32[$658>>2]|0; - $660 = (_bitshift64Ashr(0,($656|0),32)|0); - $661 = tempRet0; - $662 = $93; - $663 = $662; - $664 = HEAP32[$663>>2]|0; - $665 = (($662) + 4)|0; + $660 = (($657) + 4)|0; + $661 = $660; + $662 = HEAP32[$661>>2]|0; + $663 = (_bitshift64Ashr(0,($659|0),32)|0); + $664 = tempRet0; + $665 = $96; $666 = $665; $667 = HEAP32[$666>>2]|0; - $668 = (_bitshift64Ashr(0,($664|0),32)|0); - $669 = tempRet0; - $670 = (___muldi3(($668|0),($669|0),($660|0),($661|0))|0); - $671 = tempRet0; - $672 = (_i64Add(($652|0),($653|0),($670|0),($671|0))|0); - $673 = tempRet0; - $674 = $41; - $675 = $674; - $676 = HEAP32[$675>>2]|0; - $677 = (($674) + 4)|0; + $668 = (($665) + 4)|0; + $669 = $668; + $670 = HEAP32[$669>>2]|0; + $671 = (_bitshift64Ashr(0,($667|0),32)|0); + $672 = tempRet0; + $673 = (___muldi3(($671|0),($672|0),($663|0),($664|0))|0); + $674 = tempRet0; + $675 = (_i64Add(($655|0),($656|0),($673|0),($674|0))|0); + $676 = tempRet0; + $677 = $44; $678 = $677; $679 = HEAP32[$678>>2]|0; - $680 = (_bitshift64Ashr(0,($676|0),32)|0); - $681 = tempRet0; - $682 = $557; - $683 = $682; - $684 = HEAP32[$683>>2]|0; - $685 = (($682) + 4)|0; + $680 = (($677) + 4)|0; + $681 = $680; + $682 = HEAP32[$681>>2]|0; + $683 = (_bitshift64Ashr(0,($679|0),32)|0); + $684 = tempRet0; + $685 = $560; $686 = $685; $687 = HEAP32[$686>>2]|0; - $688 = (_bitshift64Ashr(0,($684|0),32)|0); - $689 = tempRet0; - $690 = (___muldi3(($688|0),($689|0),($680|0),($681|0))|0); - $691 = tempRet0; - $692 = (_i64Add(($672|0),($673|0),($690|0),($691|0))|0); - $693 = tempRet0; - $694 = $570; - $695 = $694; - $696 = HEAP32[$695>>2]|0; - $697 = (($694) + 4)|0; + $688 = (($685) + 4)|0; + $689 = $688; + $690 = HEAP32[$689>>2]|0; + $691 = (_bitshift64Ashr(0,($687|0),32)|0); + $692 = tempRet0; + $693 = (___muldi3(($691|0),($692|0),($683|0),($684|0))|0); + $694 = tempRet0; + $695 = (_i64Add(($675|0),($676|0),($693|0),($694|0))|0); + $696 = tempRet0; + $697 = $573; $698 = $697; $699 = HEAP32[$698>>2]|0; - $700 = (_bitshift64Ashr(0,($696|0),32)|0); - $701 = tempRet0; - $702 = $30; - $703 = $702; - $704 = HEAP32[$703>>2]|0; - $705 = (($702) + 4)|0; + $700 = (($697) + 4)|0; + $701 = $700; + $702 = HEAP32[$701>>2]|0; + $703 = (_bitshift64Ashr(0,($699|0),32)|0); + $704 = tempRet0; + $705 = $33; $706 = $705; $707 = HEAP32[$706>>2]|0; - $708 = (_bitshift64Ashr(0,($704|0),32)|0); - $709 = tempRet0; - $710 = (___muldi3(($708|0),($709|0),($700|0),($701|0))|0); - $711 = tempRet0; - $712 = (_i64Add(($692|0),($693|0),($710|0),($711|0))|0); - $713 = tempRet0; - $714 = $in2; - $715 = $714; - $716 = HEAP32[$715>>2]|0; - $717 = (($714) + 4)|0; + $708 = (($705) + 4)|0; + $709 = $708; + $710 = HEAP32[$709>>2]|0; + $711 = (_bitshift64Ashr(0,($707|0),32)|0); + $712 = tempRet0; + $713 = (___muldi3(($711|0),($712|0),($703|0),($704|0))|0); + $714 = tempRet0; + $715 = (_i64Add(($695|0),($696|0),($713|0),($714|0))|0); + $716 = tempRet0; + $717 = $1; $718 = $717; $719 = HEAP32[$718>>2]|0; - $720 = (_bitshift64Ashr(0,($716|0),32)|0); - $721 = tempRet0; - $722 = ((($in)) + 56|0); - $723 = $722; - $724 = $723; - $725 = HEAP32[$724>>2]|0; - $726 = (($723) + 4)|0; + $720 = (($717) + 4)|0; + $721 = $720; + $722 = HEAP32[$721>>2]|0; + $723 = (_bitshift64Ashr(0,($719|0),32)|0); + $724 = tempRet0; + $725 = ((($2)) + 56|0); + $726 = $725; $727 = $726; $728 = HEAP32[$727>>2]|0; - $729 = (_bitshift64Ashr(0,($725|0),32)|0); - $730 = tempRet0; - $731 = (___muldi3(($729|0),($730|0),($720|0),($721|0))|0); - $732 = tempRet0; - $733 = (_i64Add(($712|0),($713|0),($731|0),($732|0))|0); - $734 = tempRet0; - $735 = ((($in2)) + 56|0); - $736 = $735; - $737 = $736; - $738 = HEAP32[$737>>2]|0; - $739 = (($736) + 4)|0; + $729 = (($726) + 4)|0; + $730 = $729; + $731 = HEAP32[$730>>2]|0; + $732 = (_bitshift64Ashr(0,($728|0),32)|0); + $733 = tempRet0; + $734 = (___muldi3(($732|0),($733|0),($723|0),($724|0))|0); + $735 = tempRet0; + $736 = (_i64Add(($715|0),($716|0),($734|0),($735|0))|0); + $737 = tempRet0; + $738 = ((($1)) + 56|0); + $739 = $738; $740 = $739; $741 = HEAP32[$740>>2]|0; - $742 = (_bitshift64Ashr(0,($738|0),32)|0); - $743 = tempRet0; - $744 = $in; - $745 = $744; - $746 = HEAP32[$745>>2]|0; - $747 = (($744) + 4)|0; + $742 = (($739) + 4)|0; + $743 = $742; + $744 = HEAP32[$743>>2]|0; + $745 = (_bitshift64Ashr(0,($741|0),32)|0); + $746 = tempRet0; + $747 = $2; $748 = $747; $749 = HEAP32[$748>>2]|0; - $750 = (_bitshift64Ashr(0,($746|0),32)|0); - $751 = tempRet0; - $752 = (___muldi3(($750|0),($751|0),($742|0),($743|0))|0); - $753 = tempRet0; - $754 = (_i64Add(($733|0),($734|0),($752|0),($753|0))|0); - $755 = tempRet0; - $756 = ((($output)) + 56|0); - $757 = $756; - $758 = $757; - HEAP32[$758>>2] = $754; - $759 = (($757) + 4)|0; + $750 = (($747) + 4)|0; + $751 = $750; + $752 = HEAP32[$751>>2]|0; + $753 = (_bitshift64Ashr(0,($749|0),32)|0); + $754 = tempRet0; + $755 = (___muldi3(($753|0),($754|0),($745|0),($746|0))|0); + $756 = tempRet0; + $757 = (_i64Add(($736|0),($737|0),($755|0),($756|0))|0); + $758 = tempRet0; + $759 = ((($0)) + 56|0); $760 = $759; - HEAP32[$760>>2] = $755; - $761 = $298; - $762 = $761; - $763 = HEAP32[$762>>2]|0; - $764 = (($761) + 4)|0; + $761 = $760; + HEAP32[$761>>2] = $757; + $762 = (($760) + 4)|0; + $763 = $762; + HEAP32[$763>>2] = $758; + $764 = $301; $765 = $764; $766 = HEAP32[$765>>2]|0; - $767 = (_bitshift64Ashr(0,($763|0),32)|0); - $768 = tempRet0; - $769 = $285; - $770 = $769; - $771 = HEAP32[$770>>2]|0; - $772 = (($769) + 4)|0; + $767 = (($764) + 4)|0; + $768 = $767; + $769 = HEAP32[$768>>2]|0; + $770 = (_bitshift64Ashr(0,($766|0),32)|0); + $771 = tempRet0; + $772 = $288; $773 = $772; $774 = HEAP32[$773>>2]|0; - $775 = (_bitshift64Ashr(0,($771|0),32)|0); - $776 = tempRet0; - $777 = (___muldi3(($775|0),($776|0),($767|0),($768|0))|0); - $778 = tempRet0; - $779 = $191; - $780 = $779; - $781 = HEAP32[$780>>2]|0; - $782 = (($779) + 4)|0; + $775 = (($772) + 4)|0; + $776 = $775; + $777 = HEAP32[$776>>2]|0; + $778 = (_bitshift64Ashr(0,($774|0),32)|0); + $779 = tempRet0; + $780 = (___muldi3(($778|0),($779|0),($770|0),($771|0))|0); + $781 = tempRet0; + $782 = $194; $783 = $782; $784 = HEAP32[$783>>2]|0; - $785 = (_bitshift64Ashr(0,($781|0),32)|0); - $786 = tempRet0; - $787 = $410; - $788 = $787; - $789 = HEAP32[$788>>2]|0; - $790 = (($787) + 4)|0; + $785 = (($782) + 4)|0; + $786 = $785; + $787 = HEAP32[$786>>2]|0; + $788 = (_bitshift64Ashr(0,($784|0),32)|0); + $789 = tempRet0; + $790 = $413; $791 = $790; $792 = HEAP32[$791>>2]|0; - $793 = (_bitshift64Ashr(0,($789|0),32)|0); - $794 = tempRet0; - $795 = (___muldi3(($793|0),($794|0),($785|0),($786|0))|0); - $796 = tempRet0; - $797 = $423; - $798 = $797; - $799 = HEAP32[$798>>2]|0; - $800 = (($797) + 4)|0; + $793 = (($790) + 4)|0; + $794 = $793; + $795 = HEAP32[$794>>2]|0; + $796 = (_bitshift64Ashr(0,($792|0),32)|0); + $797 = tempRet0; + $798 = (___muldi3(($796|0),($797|0),($788|0),($789|0))|0); + $799 = tempRet0; + $800 = $426; $801 = $800; $802 = HEAP32[$801>>2]|0; - $803 = (_bitshift64Ashr(0,($799|0),32)|0); - $804 = tempRet0; - $805 = $178; - $806 = $805; - $807 = HEAP32[$806>>2]|0; - $808 = (($805) + 4)|0; + $803 = (($800) + 4)|0; + $804 = $803; + $805 = HEAP32[$804>>2]|0; + $806 = (_bitshift64Ashr(0,($802|0),32)|0); + $807 = tempRet0; + $808 = $181; $809 = $808; $810 = HEAP32[$809>>2]|0; - $811 = (_bitshift64Ashr(0,($807|0),32)|0); - $812 = tempRet0; - $813 = (___muldi3(($811|0),($812|0),($803|0),($804|0))|0); - $814 = tempRet0; - $815 = (_i64Add(($813|0),($814|0),($795|0),($796|0))|0); - $816 = tempRet0; - $817 = $41; - $818 = $817; - $819 = HEAP32[$818>>2]|0; - $820 = (($817) + 4)|0; + $811 = (($808) + 4)|0; + $812 = $811; + $813 = HEAP32[$812>>2]|0; + $814 = (_bitshift64Ashr(0,($810|0),32)|0); + $815 = tempRet0; + $816 = (___muldi3(($814|0),($815|0),($806|0),($807|0))|0); + $817 = tempRet0; + $818 = (_i64Add(($816|0),($817|0),($798|0),($799|0))|0); + $819 = tempRet0; + $820 = $44; $821 = $820; $822 = HEAP32[$821>>2]|0; - $823 = (_bitshift64Ashr(0,($819|0),32)|0); - $824 = tempRet0; - $825 = $722; - $826 = $825; - $827 = HEAP32[$826>>2]|0; - $828 = (($825) + 4)|0; + $823 = (($820) + 4)|0; + $824 = $823; + $825 = HEAP32[$824>>2]|0; + $826 = (_bitshift64Ashr(0,($822|0),32)|0); + $827 = tempRet0; + $828 = $725; $829 = $828; $830 = HEAP32[$829>>2]|0; - $831 = (_bitshift64Ashr(0,($827|0),32)|0); - $832 = tempRet0; - $833 = (___muldi3(($831|0),($832|0),($823|0),($824|0))|0); - $834 = tempRet0; - $835 = (_i64Add(($815|0),($816|0),($833|0),($834|0))|0); - $836 = tempRet0; - $837 = $735; - $838 = $837; - $839 = HEAP32[$838>>2]|0; - $840 = (($837) + 4)|0; + $831 = (($828) + 4)|0; + $832 = $831; + $833 = HEAP32[$832>>2]|0; + $834 = (_bitshift64Ashr(0,($830|0),32)|0); + $835 = tempRet0; + $836 = (___muldi3(($834|0),($835|0),($826|0),($827|0))|0); + $837 = tempRet0; + $838 = (_i64Add(($818|0),($819|0),($836|0),($837|0))|0); + $839 = tempRet0; + $840 = $738; $841 = $840; $842 = HEAP32[$841>>2]|0; - $843 = (_bitshift64Ashr(0,($839|0),32)|0); - $844 = tempRet0; - $845 = $30; - $846 = $845; - $847 = HEAP32[$846>>2]|0; - $848 = (($845) + 4)|0; + $843 = (($840) + 4)|0; + $844 = $843; + $845 = HEAP32[$844>>2]|0; + $846 = (_bitshift64Ashr(0,($842|0),32)|0); + $847 = tempRet0; + $848 = $33; $849 = $848; $850 = HEAP32[$849>>2]|0; - $851 = (_bitshift64Ashr(0,($847|0),32)|0); - $852 = tempRet0; - $853 = (___muldi3(($851|0),($852|0),($843|0),($844|0))|0); - $854 = tempRet0; - $855 = (_i64Add(($835|0),($836|0),($853|0),($854|0))|0); - $856 = tempRet0; - $857 = (_bitshift64Shl(($855|0),($856|0),1)|0); - $858 = tempRet0; - $859 = (_i64Add(($857|0),($858|0),($777|0),($778|0))|0); - $860 = tempRet0; - $861 = $106; - $862 = $861; - $863 = HEAP32[$862>>2]|0; - $864 = (($861) + 4)|0; + $851 = (($848) + 4)|0; + $852 = $851; + $853 = HEAP32[$852>>2]|0; + $854 = (_bitshift64Ashr(0,($850|0),32)|0); + $855 = tempRet0; + $856 = (___muldi3(($854|0),($855|0),($846|0),($847|0))|0); + $857 = tempRet0; + $858 = (_i64Add(($838|0),($839|0),($856|0),($857|0))|0); + $859 = tempRet0; + $860 = (_bitshift64Shl(($858|0),($859|0),1)|0); + $861 = tempRet0; + $862 = (_i64Add(($860|0),($861|0),($780|0),($781|0))|0); + $863 = tempRet0; + $864 = $109; $865 = $864; $866 = HEAP32[$865>>2]|0; - $867 = (_bitshift64Ashr(0,($863|0),32)|0); - $868 = tempRet0; - $869 = $557; - $870 = $869; - $871 = HEAP32[$870>>2]|0; - $872 = (($869) + 4)|0; + $867 = (($864) + 4)|0; + $868 = $867; + $869 = HEAP32[$868>>2]|0; + $870 = (_bitshift64Ashr(0,($866|0),32)|0); + $871 = tempRet0; + $872 = $560; $873 = $872; $874 = HEAP32[$873>>2]|0; - $875 = (_bitshift64Ashr(0,($871|0),32)|0); - $876 = tempRet0; - $877 = (___muldi3(($875|0),($876|0),($867|0),($868|0))|0); - $878 = tempRet0; - $879 = (_i64Add(($859|0),($860|0),($877|0),($878|0))|0); - $880 = tempRet0; - $881 = $570; - $882 = $881; - $883 = HEAP32[$882>>2]|0; - $884 = (($881) + 4)|0; + $875 = (($872) + 4)|0; + $876 = $875; + $877 = HEAP32[$876>>2]|0; + $878 = (_bitshift64Ashr(0,($874|0),32)|0); + $879 = tempRet0; + $880 = (___muldi3(($878|0),($879|0),($870|0),($871|0))|0); + $881 = tempRet0; + $882 = (_i64Add(($862|0),($863|0),($880|0),($881|0))|0); + $883 = tempRet0; + $884 = $573; $885 = $884; $886 = HEAP32[$885>>2]|0; - $887 = (_bitshift64Ashr(0,($883|0),32)|0); - $888 = tempRet0; - $889 = $93; - $890 = $889; - $891 = HEAP32[$890>>2]|0; - $892 = (($889) + 4)|0; + $887 = (($884) + 4)|0; + $888 = $887; + $889 = HEAP32[$888>>2]|0; + $890 = (_bitshift64Ashr(0,($886|0),32)|0); + $891 = tempRet0; + $892 = $96; $893 = $892; $894 = HEAP32[$893>>2]|0; - $895 = (_bitshift64Ashr(0,($891|0),32)|0); - $896 = tempRet0; - $897 = (___muldi3(($895|0),($896|0),($887|0),($888|0))|0); - $898 = tempRet0; - $899 = (_i64Add(($879|0),($880|0),($897|0),($898|0))|0); - $900 = tempRet0; - $901 = $in2; - $902 = $901; - $903 = HEAP32[$902>>2]|0; - $904 = (($901) + 4)|0; + $895 = (($892) + 4)|0; + $896 = $895; + $897 = HEAP32[$896>>2]|0; + $898 = (_bitshift64Ashr(0,($894|0),32)|0); + $899 = tempRet0; + $900 = (___muldi3(($898|0),($899|0),($890|0),($891|0))|0); + $901 = tempRet0; + $902 = (_i64Add(($882|0),($883|0),($900|0),($901|0))|0); + $903 = tempRet0; + $904 = $1; $905 = $904; $906 = HEAP32[$905>>2]|0; - $907 = (_bitshift64Ashr(0,($903|0),32)|0); - $908 = tempRet0; - $909 = ((($in)) + 64|0); - $910 = $909; - $911 = $910; - $912 = HEAP32[$911>>2]|0; - $913 = (($910) + 4)|0; + $907 = (($904) + 4)|0; + $908 = $907; + $909 = HEAP32[$908>>2]|0; + $910 = (_bitshift64Ashr(0,($906|0),32)|0); + $911 = tempRet0; + $912 = ((($2)) + 64|0); + $913 = $912; $914 = $913; $915 = HEAP32[$914>>2]|0; - $916 = (_bitshift64Ashr(0,($912|0),32)|0); - $917 = tempRet0; - $918 = (___muldi3(($916|0),($917|0),($907|0),($908|0))|0); - $919 = tempRet0; - $920 = (_i64Add(($899|0),($900|0),($918|0),($919|0))|0); - $921 = tempRet0; - $922 = ((($in2)) + 64|0); - $923 = $922; - $924 = $923; - $925 = HEAP32[$924>>2]|0; - $926 = (($923) + 4)|0; + $916 = (($913) + 4)|0; + $917 = $916; + $918 = HEAP32[$917>>2]|0; + $919 = (_bitshift64Ashr(0,($915|0),32)|0); + $920 = tempRet0; + $921 = (___muldi3(($919|0),($920|0),($910|0),($911|0))|0); + $922 = tempRet0; + $923 = (_i64Add(($902|0),($903|0),($921|0),($922|0))|0); + $924 = tempRet0; + $925 = ((($1)) + 64|0); + $926 = $925; $927 = $926; $928 = HEAP32[$927>>2]|0; - $929 = (_bitshift64Ashr(0,($925|0),32)|0); - $930 = tempRet0; - $931 = $in; - $932 = $931; - $933 = HEAP32[$932>>2]|0; - $934 = (($931) + 4)|0; + $929 = (($926) + 4)|0; + $930 = $929; + $931 = HEAP32[$930>>2]|0; + $932 = (_bitshift64Ashr(0,($928|0),32)|0); + $933 = tempRet0; + $934 = $2; $935 = $934; $936 = HEAP32[$935>>2]|0; - $937 = (_bitshift64Ashr(0,($933|0),32)|0); - $938 = tempRet0; - $939 = (___muldi3(($937|0),($938|0),($929|0),($930|0))|0); - $940 = tempRet0; - $941 = (_i64Add(($920|0),($921|0),($939|0),($940|0))|0); - $942 = tempRet0; - $943 = ((($output)) + 64|0); - $944 = $943; - $945 = $944; - HEAP32[$945>>2] = $941; - $946 = (($944) + 4)|0; + $937 = (($934) + 4)|0; + $938 = $937; + $939 = HEAP32[$938>>2]|0; + $940 = (_bitshift64Ashr(0,($936|0),32)|0); + $941 = tempRet0; + $942 = (___muldi3(($940|0),($941|0),($932|0),($933|0))|0); + $943 = tempRet0; + $944 = (_i64Add(($923|0),($924|0),($942|0),($943|0))|0); + $945 = tempRet0; + $946 = ((($0)) + 64|0); $947 = $946; - HEAP32[$947>>2] = $942; - $948 = $298; - $949 = $948; - $950 = HEAP32[$949>>2]|0; - $951 = (($948) + 4)|0; + $948 = $947; + HEAP32[$948>>2] = $944; + $949 = (($947) + 4)|0; + $950 = $949; + HEAP32[$950>>2] = $945; + $951 = $301; $952 = $951; $953 = HEAP32[$952>>2]|0; - $954 = (_bitshift64Ashr(0,($950|0),32)|0); - $955 = tempRet0; - $956 = $410; - $957 = $956; - $958 = HEAP32[$957>>2]|0; - $959 = (($956) + 4)|0; + $954 = (($951) + 4)|0; + $955 = $954; + $956 = HEAP32[$955>>2]|0; + $957 = (_bitshift64Ashr(0,($953|0),32)|0); + $958 = tempRet0; + $959 = $413; $960 = $959; $961 = HEAP32[$960>>2]|0; - $962 = (_bitshift64Ashr(0,($958|0),32)|0); - $963 = tempRet0; - $964 = (___muldi3(($962|0),($963|0),($954|0),($955|0))|0); - $965 = tempRet0; - $966 = $423; - $967 = $966; - $968 = HEAP32[$967>>2]|0; - $969 = (($966) + 4)|0; + $962 = (($959) + 4)|0; + $963 = $962; + $964 = HEAP32[$963>>2]|0; + $965 = (_bitshift64Ashr(0,($961|0),32)|0); + $966 = tempRet0; + $967 = (___muldi3(($965|0),($966|0),($957|0),($958|0))|0); + $968 = tempRet0; + $969 = $426; $970 = $969; $971 = HEAP32[$970>>2]|0; - $972 = (_bitshift64Ashr(0,($968|0),32)|0); - $973 = tempRet0; - $974 = $285; - $975 = $974; - $976 = HEAP32[$975>>2]|0; - $977 = (($974) + 4)|0; + $972 = (($969) + 4)|0; + $973 = $972; + $974 = HEAP32[$973>>2]|0; + $975 = (_bitshift64Ashr(0,($971|0),32)|0); + $976 = tempRet0; + $977 = $288; $978 = $977; $979 = HEAP32[$978>>2]|0; - $980 = (_bitshift64Ashr(0,($976|0),32)|0); - $981 = tempRet0; - $982 = (___muldi3(($980|0),($981|0),($972|0),($973|0))|0); - $983 = tempRet0; - $984 = (_i64Add(($982|0),($983|0),($964|0),($965|0))|0); - $985 = tempRet0; - $986 = $191; - $987 = $986; - $988 = HEAP32[$987>>2]|0; - $989 = (($986) + 4)|0; + $980 = (($977) + 4)|0; + $981 = $980; + $982 = HEAP32[$981>>2]|0; + $983 = (_bitshift64Ashr(0,($979|0),32)|0); + $984 = tempRet0; + $985 = (___muldi3(($983|0),($984|0),($975|0),($976|0))|0); + $986 = tempRet0; + $987 = (_i64Add(($985|0),($986|0),($967|0),($968|0))|0); + $988 = tempRet0; + $989 = $194; $990 = $989; $991 = HEAP32[$990>>2]|0; - $992 = (_bitshift64Ashr(0,($988|0),32)|0); - $993 = tempRet0; - $994 = $557; - $995 = $994; - $996 = HEAP32[$995>>2]|0; - $997 = (($994) + 4)|0; + $992 = (($989) + 4)|0; + $993 = $992; + $994 = HEAP32[$993>>2]|0; + $995 = (_bitshift64Ashr(0,($991|0),32)|0); + $996 = tempRet0; + $997 = $560; $998 = $997; $999 = HEAP32[$998>>2]|0; - $1000 = (_bitshift64Ashr(0,($996|0),32)|0); - $1001 = tempRet0; - $1002 = (___muldi3(($1000|0),($1001|0),($992|0),($993|0))|0); - $1003 = tempRet0; - $1004 = (_i64Add(($984|0),($985|0),($1002|0),($1003|0))|0); - $1005 = tempRet0; - $1006 = $570; - $1007 = $1006; - $1008 = HEAP32[$1007>>2]|0; - $1009 = (($1006) + 4)|0; + $1000 = (($997) + 4)|0; + $1001 = $1000; + $1002 = HEAP32[$1001>>2]|0; + $1003 = (_bitshift64Ashr(0,($999|0),32)|0); + $1004 = tempRet0; + $1005 = (___muldi3(($1003|0),($1004|0),($995|0),($996|0))|0); + $1006 = tempRet0; + $1007 = (_i64Add(($987|0),($988|0),($1005|0),($1006|0))|0); + $1008 = tempRet0; + $1009 = $573; $1010 = $1009; $1011 = HEAP32[$1010>>2]|0; - $1012 = (_bitshift64Ashr(0,($1008|0),32)|0); - $1013 = tempRet0; - $1014 = $178; - $1015 = $1014; - $1016 = HEAP32[$1015>>2]|0; - $1017 = (($1014) + 4)|0; + $1012 = (($1009) + 4)|0; + $1013 = $1012; + $1014 = HEAP32[$1013>>2]|0; + $1015 = (_bitshift64Ashr(0,($1011|0),32)|0); + $1016 = tempRet0; + $1017 = $181; $1018 = $1017; $1019 = HEAP32[$1018>>2]|0; - $1020 = (_bitshift64Ashr(0,($1016|0),32)|0); - $1021 = tempRet0; - $1022 = (___muldi3(($1020|0),($1021|0),($1012|0),($1013|0))|0); - $1023 = tempRet0; - $1024 = (_i64Add(($1004|0),($1005|0),($1022|0),($1023|0))|0); - $1025 = tempRet0; - $1026 = $106; - $1027 = $1026; - $1028 = HEAP32[$1027>>2]|0; - $1029 = (($1026) + 4)|0; + $1020 = (($1017) + 4)|0; + $1021 = $1020; + $1022 = HEAP32[$1021>>2]|0; + $1023 = (_bitshift64Ashr(0,($1019|0),32)|0); + $1024 = tempRet0; + $1025 = (___muldi3(($1023|0),($1024|0),($1015|0),($1016|0))|0); + $1026 = tempRet0; + $1027 = (_i64Add(($1007|0),($1008|0),($1025|0),($1026|0))|0); + $1028 = tempRet0; + $1029 = $109; $1030 = $1029; $1031 = HEAP32[$1030>>2]|0; - $1032 = (_bitshift64Ashr(0,($1028|0),32)|0); - $1033 = tempRet0; - $1034 = $722; - $1035 = $1034; - $1036 = HEAP32[$1035>>2]|0; - $1037 = (($1034) + 4)|0; + $1032 = (($1029) + 4)|0; + $1033 = $1032; + $1034 = HEAP32[$1033>>2]|0; + $1035 = (_bitshift64Ashr(0,($1031|0),32)|0); + $1036 = tempRet0; + $1037 = $725; $1038 = $1037; $1039 = HEAP32[$1038>>2]|0; - $1040 = (_bitshift64Ashr(0,($1036|0),32)|0); - $1041 = tempRet0; - $1042 = (___muldi3(($1040|0),($1041|0),($1032|0),($1033|0))|0); - $1043 = tempRet0; - $1044 = (_i64Add(($1024|0),($1025|0),($1042|0),($1043|0))|0); - $1045 = tempRet0; - $1046 = $735; - $1047 = $1046; - $1048 = HEAP32[$1047>>2]|0; - $1049 = (($1046) + 4)|0; + $1040 = (($1037) + 4)|0; + $1041 = $1040; + $1042 = HEAP32[$1041>>2]|0; + $1043 = (_bitshift64Ashr(0,($1039|0),32)|0); + $1044 = tempRet0; + $1045 = (___muldi3(($1043|0),($1044|0),($1035|0),($1036|0))|0); + $1046 = tempRet0; + $1047 = (_i64Add(($1027|0),($1028|0),($1045|0),($1046|0))|0); + $1048 = tempRet0; + $1049 = $738; $1050 = $1049; $1051 = HEAP32[$1050>>2]|0; - $1052 = (_bitshift64Ashr(0,($1048|0),32)|0); - $1053 = tempRet0; - $1054 = $93; - $1055 = $1054; - $1056 = HEAP32[$1055>>2]|0; - $1057 = (($1054) + 4)|0; + $1052 = (($1049) + 4)|0; + $1053 = $1052; + $1054 = HEAP32[$1053>>2]|0; + $1055 = (_bitshift64Ashr(0,($1051|0),32)|0); + $1056 = tempRet0; + $1057 = $96; $1058 = $1057; $1059 = HEAP32[$1058>>2]|0; - $1060 = (_bitshift64Ashr(0,($1056|0),32)|0); - $1061 = tempRet0; - $1062 = (___muldi3(($1060|0),($1061|0),($1052|0),($1053|0))|0); - $1063 = tempRet0; - $1064 = (_i64Add(($1044|0),($1045|0),($1062|0),($1063|0))|0); - $1065 = tempRet0; - $1066 = $41; - $1067 = $1066; - $1068 = HEAP32[$1067>>2]|0; - $1069 = (($1066) + 4)|0; + $1060 = (($1057) + 4)|0; + $1061 = $1060; + $1062 = HEAP32[$1061>>2]|0; + $1063 = (_bitshift64Ashr(0,($1059|0),32)|0); + $1064 = tempRet0; + $1065 = (___muldi3(($1063|0),($1064|0),($1055|0),($1056|0))|0); + $1066 = tempRet0; + $1067 = (_i64Add(($1047|0),($1048|0),($1065|0),($1066|0))|0); + $1068 = tempRet0; + $1069 = $44; $1070 = $1069; $1071 = HEAP32[$1070>>2]|0; - $1072 = (_bitshift64Ashr(0,($1068|0),32)|0); - $1073 = tempRet0; - $1074 = $909; - $1075 = $1074; - $1076 = HEAP32[$1075>>2]|0; - $1077 = (($1074) + 4)|0; + $1072 = (($1069) + 4)|0; + $1073 = $1072; + $1074 = HEAP32[$1073>>2]|0; + $1075 = (_bitshift64Ashr(0,($1071|0),32)|0); + $1076 = tempRet0; + $1077 = $912; $1078 = $1077; $1079 = HEAP32[$1078>>2]|0; - $1080 = (_bitshift64Ashr(0,($1076|0),32)|0); - $1081 = tempRet0; - $1082 = (___muldi3(($1080|0),($1081|0),($1072|0),($1073|0))|0); - $1083 = tempRet0; - $1084 = (_i64Add(($1064|0),($1065|0),($1082|0),($1083|0))|0); - $1085 = tempRet0; - $1086 = $922; - $1087 = $1086; - $1088 = HEAP32[$1087>>2]|0; - $1089 = (($1086) + 4)|0; + $1080 = (($1077) + 4)|0; + $1081 = $1080; + $1082 = HEAP32[$1081>>2]|0; + $1083 = (_bitshift64Ashr(0,($1079|0),32)|0); + $1084 = tempRet0; + $1085 = (___muldi3(($1083|0),($1084|0),($1075|0),($1076|0))|0); + $1086 = tempRet0; + $1087 = (_i64Add(($1067|0),($1068|0),($1085|0),($1086|0))|0); + $1088 = tempRet0; + $1089 = $925; $1090 = $1089; $1091 = HEAP32[$1090>>2]|0; - $1092 = (_bitshift64Ashr(0,($1088|0),32)|0); - $1093 = tempRet0; - $1094 = $30; - $1095 = $1094; - $1096 = HEAP32[$1095>>2]|0; - $1097 = (($1094) + 4)|0; + $1092 = (($1089) + 4)|0; + $1093 = $1092; + $1094 = HEAP32[$1093>>2]|0; + $1095 = (_bitshift64Ashr(0,($1091|0),32)|0); + $1096 = tempRet0; + $1097 = $33; $1098 = $1097; $1099 = HEAP32[$1098>>2]|0; - $1100 = (_bitshift64Ashr(0,($1096|0),32)|0); - $1101 = tempRet0; - $1102 = (___muldi3(($1100|0),($1101|0),($1092|0),($1093|0))|0); - $1103 = tempRet0; - $1104 = (_i64Add(($1084|0),($1085|0),($1102|0),($1103|0))|0); - $1105 = tempRet0; - $1106 = $in2; - $1107 = $1106; - $1108 = HEAP32[$1107>>2]|0; - $1109 = (($1106) + 4)|0; + $1100 = (($1097) + 4)|0; + $1101 = $1100; + $1102 = HEAP32[$1101>>2]|0; + $1103 = (_bitshift64Ashr(0,($1099|0),32)|0); + $1104 = tempRet0; + $1105 = (___muldi3(($1103|0),($1104|0),($1095|0),($1096|0))|0); + $1106 = tempRet0; + $1107 = (_i64Add(($1087|0),($1088|0),($1105|0),($1106|0))|0); + $1108 = tempRet0; + $1109 = $1; $1110 = $1109; $1111 = HEAP32[$1110>>2]|0; - $1112 = (_bitshift64Ashr(0,($1108|0),32)|0); - $1113 = tempRet0; - $1114 = ((($in)) + 72|0); - $1115 = $1114; - $1116 = $1115; - $1117 = HEAP32[$1116>>2]|0; - $1118 = (($1115) + 4)|0; + $1112 = (($1109) + 4)|0; + $1113 = $1112; + $1114 = HEAP32[$1113>>2]|0; + $1115 = (_bitshift64Ashr(0,($1111|0),32)|0); + $1116 = tempRet0; + $1117 = ((($2)) + 72|0); + $1118 = $1117; $1119 = $1118; $1120 = HEAP32[$1119>>2]|0; - $1121 = (_bitshift64Ashr(0,($1117|0),32)|0); - $1122 = tempRet0; - $1123 = (___muldi3(($1121|0),($1122|0),($1112|0),($1113|0))|0); - $1124 = tempRet0; - $1125 = (_i64Add(($1104|0),($1105|0),($1123|0),($1124|0))|0); - $1126 = tempRet0; - $1127 = ((($in2)) + 72|0); - $1128 = $1127; - $1129 = $1128; - $1130 = HEAP32[$1129>>2]|0; - $1131 = (($1128) + 4)|0; + $1121 = (($1118) + 4)|0; + $1122 = $1121; + $1123 = HEAP32[$1122>>2]|0; + $1124 = (_bitshift64Ashr(0,($1120|0),32)|0); + $1125 = tempRet0; + $1126 = (___muldi3(($1124|0),($1125|0),($1115|0),($1116|0))|0); + $1127 = tempRet0; + $1128 = (_i64Add(($1107|0),($1108|0),($1126|0),($1127|0))|0); + $1129 = tempRet0; + $1130 = ((($1)) + 72|0); + $1131 = $1130; $1132 = $1131; $1133 = HEAP32[$1132>>2]|0; - $1134 = (_bitshift64Ashr(0,($1130|0),32)|0); - $1135 = tempRet0; - $1136 = $in; - $1137 = $1136; - $1138 = HEAP32[$1137>>2]|0; - $1139 = (($1136) + 4)|0; + $1134 = (($1131) + 4)|0; + $1135 = $1134; + $1136 = HEAP32[$1135>>2]|0; + $1137 = (_bitshift64Ashr(0,($1133|0),32)|0); + $1138 = tempRet0; + $1139 = $2; $1140 = $1139; $1141 = HEAP32[$1140>>2]|0; - $1142 = (_bitshift64Ashr(0,($1138|0),32)|0); - $1143 = tempRet0; - $1144 = (___muldi3(($1142|0),($1143|0),($1134|0),($1135|0))|0); - $1145 = tempRet0; - $1146 = (_i64Add(($1125|0),($1126|0),($1144|0),($1145|0))|0); - $1147 = tempRet0; - $1148 = ((($output)) + 72|0); - $1149 = $1148; - $1150 = $1149; - HEAP32[$1150>>2] = $1146; - $1151 = (($1149) + 4)|0; + $1142 = (($1139) + 4)|0; + $1143 = $1142; + $1144 = HEAP32[$1143>>2]|0; + $1145 = (_bitshift64Ashr(0,($1141|0),32)|0); + $1146 = tempRet0; + $1147 = (___muldi3(($1145|0),($1146|0),($1137|0),($1138|0))|0); + $1148 = tempRet0; + $1149 = (_i64Add(($1128|0),($1129|0),($1147|0),($1148|0))|0); + $1150 = tempRet0; + $1151 = ((($0)) + 72|0); $1152 = $1151; - HEAP32[$1152>>2] = $1147; - $1153 = $423; - $1154 = $1153; - $1155 = HEAP32[$1154>>2]|0; - $1156 = (($1153) + 4)|0; + $1153 = $1152; + HEAP32[$1153>>2] = $1149; + $1154 = (($1152) + 4)|0; + $1155 = $1154; + HEAP32[$1155>>2] = $1150; + $1156 = $426; $1157 = $1156; $1158 = HEAP32[$1157>>2]|0; - $1159 = (_bitshift64Ashr(0,($1155|0),32)|0); - $1160 = tempRet0; - $1161 = $410; - $1162 = $1161; - $1163 = HEAP32[$1162>>2]|0; - $1164 = (($1161) + 4)|0; + $1159 = (($1156) + 4)|0; + $1160 = $1159; + $1161 = HEAP32[$1160>>2]|0; + $1162 = (_bitshift64Ashr(0,($1158|0),32)|0); + $1163 = tempRet0; + $1164 = $413; $1165 = $1164; $1166 = HEAP32[$1165>>2]|0; - $1167 = (_bitshift64Ashr(0,($1163|0),32)|0); - $1168 = tempRet0; - $1169 = (___muldi3(($1167|0),($1168|0),($1159|0),($1160|0))|0); - $1170 = tempRet0; - $1171 = $191; - $1172 = $1171; - $1173 = HEAP32[$1172>>2]|0; - $1174 = (($1171) + 4)|0; + $1167 = (($1164) + 4)|0; + $1168 = $1167; + $1169 = HEAP32[$1168>>2]|0; + $1170 = (_bitshift64Ashr(0,($1166|0),32)|0); + $1171 = tempRet0; + $1172 = (___muldi3(($1170|0),($1171|0),($1162|0),($1163|0))|0); + $1173 = tempRet0; + $1174 = $194; $1175 = $1174; $1176 = HEAP32[$1175>>2]|0; - $1177 = (_bitshift64Ashr(0,($1173|0),32)|0); - $1178 = tempRet0; - $1179 = $722; - $1180 = $1179; - $1181 = HEAP32[$1180>>2]|0; - $1182 = (($1179) + 4)|0; + $1177 = (($1174) + 4)|0; + $1178 = $1177; + $1179 = HEAP32[$1178>>2]|0; + $1180 = (_bitshift64Ashr(0,($1176|0),32)|0); + $1181 = tempRet0; + $1182 = $725; $1183 = $1182; $1184 = HEAP32[$1183>>2]|0; - $1185 = (_bitshift64Ashr(0,($1181|0),32)|0); - $1186 = tempRet0; - $1187 = (___muldi3(($1185|0),($1186|0),($1177|0),($1178|0))|0); - $1188 = tempRet0; - $1189 = (_i64Add(($1187|0),($1188|0),($1169|0),($1170|0))|0); - $1190 = tempRet0; - $1191 = $735; - $1192 = $1191; - $1193 = HEAP32[$1192>>2]|0; - $1194 = (($1191) + 4)|0; + $1185 = (($1182) + 4)|0; + $1186 = $1185; + $1187 = HEAP32[$1186>>2]|0; + $1188 = (_bitshift64Ashr(0,($1184|0),32)|0); + $1189 = tempRet0; + $1190 = (___muldi3(($1188|0),($1189|0),($1180|0),($1181|0))|0); + $1191 = tempRet0; + $1192 = (_i64Add(($1190|0),($1191|0),($1172|0),($1173|0))|0); + $1193 = tempRet0; + $1194 = $738; $1195 = $1194; $1196 = HEAP32[$1195>>2]|0; - $1197 = (_bitshift64Ashr(0,($1193|0),32)|0); - $1198 = tempRet0; - $1199 = $178; - $1200 = $1199; - $1201 = HEAP32[$1200>>2]|0; - $1202 = (($1199) + 4)|0; + $1197 = (($1194) + 4)|0; + $1198 = $1197; + $1199 = HEAP32[$1198>>2]|0; + $1200 = (_bitshift64Ashr(0,($1196|0),32)|0); + $1201 = tempRet0; + $1202 = $181; $1203 = $1202; $1204 = HEAP32[$1203>>2]|0; - $1205 = (_bitshift64Ashr(0,($1201|0),32)|0); - $1206 = tempRet0; - $1207 = (___muldi3(($1205|0),($1206|0),($1197|0),($1198|0))|0); - $1208 = tempRet0; - $1209 = (_i64Add(($1189|0),($1190|0),($1207|0),($1208|0))|0); - $1210 = tempRet0; - $1211 = $41; - $1212 = $1211; - $1213 = HEAP32[$1212>>2]|0; - $1214 = (($1211) + 4)|0; + $1205 = (($1202) + 4)|0; + $1206 = $1205; + $1207 = HEAP32[$1206>>2]|0; + $1208 = (_bitshift64Ashr(0,($1204|0),32)|0); + $1209 = tempRet0; + $1210 = (___muldi3(($1208|0),($1209|0),($1200|0),($1201|0))|0); + $1211 = tempRet0; + $1212 = (_i64Add(($1192|0),($1193|0),($1210|0),($1211|0))|0); + $1213 = tempRet0; + $1214 = $44; $1215 = $1214; $1216 = HEAP32[$1215>>2]|0; - $1217 = (_bitshift64Ashr(0,($1213|0),32)|0); - $1218 = tempRet0; - $1219 = $1114; - $1220 = $1219; - $1221 = HEAP32[$1220>>2]|0; - $1222 = (($1219) + 4)|0; + $1217 = (($1214) + 4)|0; + $1218 = $1217; + $1219 = HEAP32[$1218>>2]|0; + $1220 = (_bitshift64Ashr(0,($1216|0),32)|0); + $1221 = tempRet0; + $1222 = $1117; $1223 = $1222; $1224 = HEAP32[$1223>>2]|0; - $1225 = (_bitshift64Ashr(0,($1221|0),32)|0); - $1226 = tempRet0; - $1227 = (___muldi3(($1225|0),($1226|0),($1217|0),($1218|0))|0); - $1228 = tempRet0; - $1229 = (_i64Add(($1209|0),($1210|0),($1227|0),($1228|0))|0); - $1230 = tempRet0; - $1231 = $1127; - $1232 = $1231; - $1233 = HEAP32[$1232>>2]|0; - $1234 = (($1231) + 4)|0; + $1225 = (($1222) + 4)|0; + $1226 = $1225; + $1227 = HEAP32[$1226>>2]|0; + $1228 = (_bitshift64Ashr(0,($1224|0),32)|0); + $1229 = tempRet0; + $1230 = (___muldi3(($1228|0),($1229|0),($1220|0),($1221|0))|0); + $1231 = tempRet0; + $1232 = (_i64Add(($1212|0),($1213|0),($1230|0),($1231|0))|0); + $1233 = tempRet0; + $1234 = $1130; $1235 = $1234; $1236 = HEAP32[$1235>>2]|0; - $1237 = (_bitshift64Ashr(0,($1233|0),32)|0); - $1238 = tempRet0; - $1239 = $30; - $1240 = $1239; - $1241 = HEAP32[$1240>>2]|0; - $1242 = (($1239) + 4)|0; + $1237 = (($1234) + 4)|0; + $1238 = $1237; + $1239 = HEAP32[$1238>>2]|0; + $1240 = (_bitshift64Ashr(0,($1236|0),32)|0); + $1241 = tempRet0; + $1242 = $33; $1243 = $1242; $1244 = HEAP32[$1243>>2]|0; - $1245 = (_bitshift64Ashr(0,($1241|0),32)|0); - $1246 = tempRet0; - $1247 = (___muldi3(($1245|0),($1246|0),($1237|0),($1238|0))|0); - $1248 = tempRet0; - $1249 = (_i64Add(($1229|0),($1230|0),($1247|0),($1248|0))|0); - $1250 = tempRet0; - $1251 = (_bitshift64Shl(($1249|0),($1250|0),1)|0); - $1252 = tempRet0; - $1253 = $298; - $1254 = $1253; - $1255 = HEAP32[$1254>>2]|0; - $1256 = (($1253) + 4)|0; + $1245 = (($1242) + 4)|0; + $1246 = $1245; + $1247 = HEAP32[$1246>>2]|0; + $1248 = (_bitshift64Ashr(0,($1244|0),32)|0); + $1249 = tempRet0; + $1250 = (___muldi3(($1248|0),($1249|0),($1240|0),($1241|0))|0); + $1251 = tempRet0; + $1252 = (_i64Add(($1232|0),($1233|0),($1250|0),($1251|0))|0); + $1253 = tempRet0; + $1254 = (_bitshift64Shl(($1252|0),($1253|0),1)|0); + $1255 = tempRet0; + $1256 = $301; $1257 = $1256; $1258 = HEAP32[$1257>>2]|0; - $1259 = (_bitshift64Ashr(0,($1255|0),32)|0); - $1260 = tempRet0; - $1261 = $557; - $1262 = $1261; - $1263 = HEAP32[$1262>>2]|0; - $1264 = (($1261) + 4)|0; + $1259 = (($1256) + 4)|0; + $1260 = $1259; + $1261 = HEAP32[$1260>>2]|0; + $1262 = (_bitshift64Ashr(0,($1258|0),32)|0); + $1263 = tempRet0; + $1264 = $560; $1265 = $1264; $1266 = HEAP32[$1265>>2]|0; - $1267 = (_bitshift64Ashr(0,($1263|0),32)|0); - $1268 = tempRet0; - $1269 = (___muldi3(($1267|0),($1268|0),($1259|0),($1260|0))|0); - $1270 = tempRet0; - $1271 = (_i64Add(($1251|0),($1252|0),($1269|0),($1270|0))|0); - $1272 = tempRet0; - $1273 = $570; - $1274 = $1273; - $1275 = HEAP32[$1274>>2]|0; - $1276 = (($1273) + 4)|0; + $1267 = (($1264) + 4)|0; + $1268 = $1267; + $1269 = HEAP32[$1268>>2]|0; + $1270 = (_bitshift64Ashr(0,($1266|0),32)|0); + $1271 = tempRet0; + $1272 = (___muldi3(($1270|0),($1271|0),($1262|0),($1263|0))|0); + $1273 = tempRet0; + $1274 = (_i64Add(($1254|0),($1255|0),($1272|0),($1273|0))|0); + $1275 = tempRet0; + $1276 = $573; $1277 = $1276; $1278 = HEAP32[$1277>>2]|0; - $1279 = (_bitshift64Ashr(0,($1275|0),32)|0); - $1280 = tempRet0; - $1281 = $285; - $1282 = $1281; - $1283 = HEAP32[$1282>>2]|0; - $1284 = (($1281) + 4)|0; + $1279 = (($1276) + 4)|0; + $1280 = $1279; + $1281 = HEAP32[$1280>>2]|0; + $1282 = (_bitshift64Ashr(0,($1278|0),32)|0); + $1283 = tempRet0; + $1284 = $288; $1285 = $1284; $1286 = HEAP32[$1285>>2]|0; - $1287 = (_bitshift64Ashr(0,($1283|0),32)|0); - $1288 = tempRet0; - $1289 = (___muldi3(($1287|0),($1288|0),($1279|0),($1280|0))|0); - $1290 = tempRet0; - $1291 = (_i64Add(($1271|0),($1272|0),($1289|0),($1290|0))|0); - $1292 = tempRet0; - $1293 = $106; - $1294 = $1293; - $1295 = HEAP32[$1294>>2]|0; - $1296 = (($1293) + 4)|0; + $1287 = (($1284) + 4)|0; + $1288 = $1287; + $1289 = HEAP32[$1288>>2]|0; + $1290 = (_bitshift64Ashr(0,($1286|0),32)|0); + $1291 = tempRet0; + $1292 = (___muldi3(($1290|0),($1291|0),($1282|0),($1283|0))|0); + $1293 = tempRet0; + $1294 = (_i64Add(($1274|0),($1275|0),($1292|0),($1293|0))|0); + $1295 = tempRet0; + $1296 = $109; $1297 = $1296; $1298 = HEAP32[$1297>>2]|0; - $1299 = (_bitshift64Ashr(0,($1295|0),32)|0); - $1300 = tempRet0; - $1301 = $909; - $1302 = $1301; - $1303 = HEAP32[$1302>>2]|0; - $1304 = (($1301) + 4)|0; + $1299 = (($1296) + 4)|0; + $1300 = $1299; + $1301 = HEAP32[$1300>>2]|0; + $1302 = (_bitshift64Ashr(0,($1298|0),32)|0); + $1303 = tempRet0; + $1304 = $912; $1305 = $1304; $1306 = HEAP32[$1305>>2]|0; - $1307 = (_bitshift64Ashr(0,($1303|0),32)|0); - $1308 = tempRet0; - $1309 = (___muldi3(($1307|0),($1308|0),($1299|0),($1300|0))|0); - $1310 = tempRet0; - $1311 = (_i64Add(($1291|0),($1292|0),($1309|0),($1310|0))|0); - $1312 = tempRet0; - $1313 = $922; - $1314 = $1313; - $1315 = HEAP32[$1314>>2]|0; - $1316 = (($1313) + 4)|0; + $1307 = (($1304) + 4)|0; + $1308 = $1307; + $1309 = HEAP32[$1308>>2]|0; + $1310 = (_bitshift64Ashr(0,($1306|0),32)|0); + $1311 = tempRet0; + $1312 = (___muldi3(($1310|0),($1311|0),($1302|0),($1303|0))|0); + $1313 = tempRet0; + $1314 = (_i64Add(($1294|0),($1295|0),($1312|0),($1313|0))|0); + $1315 = tempRet0; + $1316 = $925; $1317 = $1316; $1318 = HEAP32[$1317>>2]|0; - $1319 = (_bitshift64Ashr(0,($1315|0),32)|0); - $1320 = tempRet0; - $1321 = $93; - $1322 = $1321; - $1323 = HEAP32[$1322>>2]|0; - $1324 = (($1321) + 4)|0; + $1319 = (($1316) + 4)|0; + $1320 = $1319; + $1321 = HEAP32[$1320>>2]|0; + $1322 = (_bitshift64Ashr(0,($1318|0),32)|0); + $1323 = tempRet0; + $1324 = $96; $1325 = $1324; $1326 = HEAP32[$1325>>2]|0; - $1327 = (_bitshift64Ashr(0,($1323|0),32)|0); - $1328 = tempRet0; - $1329 = (___muldi3(($1327|0),($1328|0),($1319|0),($1320|0))|0); - $1330 = tempRet0; - $1331 = (_i64Add(($1311|0),($1312|0),($1329|0),($1330|0))|0); - $1332 = tempRet0; - $1333 = ((($output)) + 80|0); - $1334 = $1333; - $1335 = $1334; - HEAP32[$1335>>2] = $1331; - $1336 = (($1334) + 4)|0; + $1327 = (($1324) + 4)|0; + $1328 = $1327; + $1329 = HEAP32[$1328>>2]|0; + $1330 = (_bitshift64Ashr(0,($1326|0),32)|0); + $1331 = tempRet0; + $1332 = (___muldi3(($1330|0),($1331|0),($1322|0),($1323|0))|0); + $1333 = tempRet0; + $1334 = (_i64Add(($1314|0),($1315|0),($1332|0),($1333|0))|0); + $1335 = tempRet0; + $1336 = ((($0)) + 80|0); $1337 = $1336; - HEAP32[$1337>>2] = $1332; - $1338 = $423; - $1339 = $1338; - $1340 = HEAP32[$1339>>2]|0; - $1341 = (($1338) + 4)|0; + $1338 = $1337; + HEAP32[$1338>>2] = $1334; + $1339 = (($1337) + 4)|0; + $1340 = $1339; + HEAP32[$1340>>2] = $1335; + $1341 = $426; $1342 = $1341; $1343 = HEAP32[$1342>>2]|0; - $1344 = (_bitshift64Ashr(0,($1340|0),32)|0); - $1345 = tempRet0; - $1346 = $557; - $1347 = $1346; - $1348 = HEAP32[$1347>>2]|0; - $1349 = (($1346) + 4)|0; + $1344 = (($1341) + 4)|0; + $1345 = $1344; + $1346 = HEAP32[$1345>>2]|0; + $1347 = (_bitshift64Ashr(0,($1343|0),32)|0); + $1348 = tempRet0; + $1349 = $560; $1350 = $1349; $1351 = HEAP32[$1350>>2]|0; - $1352 = (_bitshift64Ashr(0,($1348|0),32)|0); - $1353 = tempRet0; - $1354 = (___muldi3(($1352|0),($1353|0),($1344|0),($1345|0))|0); - $1355 = tempRet0; - $1356 = $570; - $1357 = $1356; - $1358 = HEAP32[$1357>>2]|0; - $1359 = (($1356) + 4)|0; + $1352 = (($1349) + 4)|0; + $1353 = $1352; + $1354 = HEAP32[$1353>>2]|0; + $1355 = (_bitshift64Ashr(0,($1351|0),32)|0); + $1356 = tempRet0; + $1357 = (___muldi3(($1355|0),($1356|0),($1347|0),($1348|0))|0); + $1358 = tempRet0; + $1359 = $573; $1360 = $1359; $1361 = HEAP32[$1360>>2]|0; - $1362 = (_bitshift64Ashr(0,($1358|0),32)|0); - $1363 = tempRet0; - $1364 = $410; - $1365 = $1364; - $1366 = HEAP32[$1365>>2]|0; - $1367 = (($1364) + 4)|0; + $1362 = (($1359) + 4)|0; + $1363 = $1362; + $1364 = HEAP32[$1363>>2]|0; + $1365 = (_bitshift64Ashr(0,($1361|0),32)|0); + $1366 = tempRet0; + $1367 = $413; $1368 = $1367; $1369 = HEAP32[$1368>>2]|0; - $1370 = (_bitshift64Ashr(0,($1366|0),32)|0); - $1371 = tempRet0; - $1372 = (___muldi3(($1370|0),($1371|0),($1362|0),($1363|0))|0); - $1373 = tempRet0; - $1374 = (_i64Add(($1372|0),($1373|0),($1354|0),($1355|0))|0); - $1375 = tempRet0; - $1376 = $298; - $1377 = $1376; - $1378 = HEAP32[$1377>>2]|0; - $1379 = (($1376) + 4)|0; + $1370 = (($1367) + 4)|0; + $1371 = $1370; + $1372 = HEAP32[$1371>>2]|0; + $1373 = (_bitshift64Ashr(0,($1369|0),32)|0); + $1374 = tempRet0; + $1375 = (___muldi3(($1373|0),($1374|0),($1365|0),($1366|0))|0); + $1376 = tempRet0; + $1377 = (_i64Add(($1375|0),($1376|0),($1357|0),($1358|0))|0); + $1378 = tempRet0; + $1379 = $301; $1380 = $1379; $1381 = HEAP32[$1380>>2]|0; - $1382 = (_bitshift64Ashr(0,($1378|0),32)|0); - $1383 = tempRet0; - $1384 = $722; - $1385 = $1384; - $1386 = HEAP32[$1385>>2]|0; - $1387 = (($1384) + 4)|0; + $1382 = (($1379) + 4)|0; + $1383 = $1382; + $1384 = HEAP32[$1383>>2]|0; + $1385 = (_bitshift64Ashr(0,($1381|0),32)|0); + $1386 = tempRet0; + $1387 = $725; $1388 = $1387; $1389 = HEAP32[$1388>>2]|0; - $1390 = (_bitshift64Ashr(0,($1386|0),32)|0); - $1391 = tempRet0; - $1392 = (___muldi3(($1390|0),($1391|0),($1382|0),($1383|0))|0); - $1393 = tempRet0; - $1394 = (_i64Add(($1374|0),($1375|0),($1392|0),($1393|0))|0); - $1395 = tempRet0; - $1396 = $735; - $1397 = $1396; - $1398 = HEAP32[$1397>>2]|0; - $1399 = (($1396) + 4)|0; + $1390 = (($1387) + 4)|0; + $1391 = $1390; + $1392 = HEAP32[$1391>>2]|0; + $1393 = (_bitshift64Ashr(0,($1389|0),32)|0); + $1394 = tempRet0; + $1395 = (___muldi3(($1393|0),($1394|0),($1385|0),($1386|0))|0); + $1396 = tempRet0; + $1397 = (_i64Add(($1377|0),($1378|0),($1395|0),($1396|0))|0); + $1398 = tempRet0; + $1399 = $738; $1400 = $1399; $1401 = HEAP32[$1400>>2]|0; - $1402 = (_bitshift64Ashr(0,($1398|0),32)|0); - $1403 = tempRet0; - $1404 = $285; - $1405 = $1404; - $1406 = HEAP32[$1405>>2]|0; - $1407 = (($1404) + 4)|0; + $1402 = (($1399) + 4)|0; + $1403 = $1402; + $1404 = HEAP32[$1403>>2]|0; + $1405 = (_bitshift64Ashr(0,($1401|0),32)|0); + $1406 = tempRet0; + $1407 = $288; $1408 = $1407; $1409 = HEAP32[$1408>>2]|0; - $1410 = (_bitshift64Ashr(0,($1406|0),32)|0); - $1411 = tempRet0; - $1412 = (___muldi3(($1410|0),($1411|0),($1402|0),($1403|0))|0); - $1413 = tempRet0; - $1414 = (_i64Add(($1394|0),($1395|0),($1412|0),($1413|0))|0); - $1415 = tempRet0; - $1416 = $191; - $1417 = $1416; - $1418 = HEAP32[$1417>>2]|0; - $1419 = (($1416) + 4)|0; + $1410 = (($1407) + 4)|0; + $1411 = $1410; + $1412 = HEAP32[$1411>>2]|0; + $1413 = (_bitshift64Ashr(0,($1409|0),32)|0); + $1414 = tempRet0; + $1415 = (___muldi3(($1413|0),($1414|0),($1405|0),($1406|0))|0); + $1416 = tempRet0; + $1417 = (_i64Add(($1397|0),($1398|0),($1415|0),($1416|0))|0); + $1418 = tempRet0; + $1419 = $194; $1420 = $1419; $1421 = HEAP32[$1420>>2]|0; - $1422 = (_bitshift64Ashr(0,($1418|0),32)|0); - $1423 = tempRet0; - $1424 = $909; - $1425 = $1424; - $1426 = HEAP32[$1425>>2]|0; - $1427 = (($1424) + 4)|0; + $1422 = (($1419) + 4)|0; + $1423 = $1422; + $1424 = HEAP32[$1423>>2]|0; + $1425 = (_bitshift64Ashr(0,($1421|0),32)|0); + $1426 = tempRet0; + $1427 = $912; $1428 = $1427; $1429 = HEAP32[$1428>>2]|0; - $1430 = (_bitshift64Ashr(0,($1426|0),32)|0); - $1431 = tempRet0; - $1432 = (___muldi3(($1430|0),($1431|0),($1422|0),($1423|0))|0); - $1433 = tempRet0; - $1434 = (_i64Add(($1414|0),($1415|0),($1432|0),($1433|0))|0); - $1435 = tempRet0; - $1436 = $922; - $1437 = $1436; - $1438 = HEAP32[$1437>>2]|0; - $1439 = (($1436) + 4)|0; + $1430 = (($1427) + 4)|0; + $1431 = $1430; + $1432 = HEAP32[$1431>>2]|0; + $1433 = (_bitshift64Ashr(0,($1429|0),32)|0); + $1434 = tempRet0; + $1435 = (___muldi3(($1433|0),($1434|0),($1425|0),($1426|0))|0); + $1436 = tempRet0; + $1437 = (_i64Add(($1417|0),($1418|0),($1435|0),($1436|0))|0); + $1438 = tempRet0; + $1439 = $925; $1440 = $1439; $1441 = HEAP32[$1440>>2]|0; - $1442 = (_bitshift64Ashr(0,($1438|0),32)|0); - $1443 = tempRet0; - $1444 = $178; - $1445 = $1444; - $1446 = HEAP32[$1445>>2]|0; - $1447 = (($1444) + 4)|0; + $1442 = (($1439) + 4)|0; + $1443 = $1442; + $1444 = HEAP32[$1443>>2]|0; + $1445 = (_bitshift64Ashr(0,($1441|0),32)|0); + $1446 = tempRet0; + $1447 = $181; $1448 = $1447; $1449 = HEAP32[$1448>>2]|0; - $1450 = (_bitshift64Ashr(0,($1446|0),32)|0); - $1451 = tempRet0; - $1452 = (___muldi3(($1450|0),($1451|0),($1442|0),($1443|0))|0); - $1453 = tempRet0; - $1454 = (_i64Add(($1434|0),($1435|0),($1452|0),($1453|0))|0); - $1455 = tempRet0; - $1456 = $106; - $1457 = $1456; - $1458 = HEAP32[$1457>>2]|0; - $1459 = (($1456) + 4)|0; + $1450 = (($1447) + 4)|0; + $1451 = $1450; + $1452 = HEAP32[$1451>>2]|0; + $1453 = (_bitshift64Ashr(0,($1449|0),32)|0); + $1454 = tempRet0; + $1455 = (___muldi3(($1453|0),($1454|0),($1445|0),($1446|0))|0); + $1456 = tempRet0; + $1457 = (_i64Add(($1437|0),($1438|0),($1455|0),($1456|0))|0); + $1458 = tempRet0; + $1459 = $109; $1460 = $1459; $1461 = HEAP32[$1460>>2]|0; - $1462 = (_bitshift64Ashr(0,($1458|0),32)|0); - $1463 = tempRet0; - $1464 = $1114; - $1465 = $1464; - $1466 = HEAP32[$1465>>2]|0; - $1467 = (($1464) + 4)|0; + $1462 = (($1459) + 4)|0; + $1463 = $1462; + $1464 = HEAP32[$1463>>2]|0; + $1465 = (_bitshift64Ashr(0,($1461|0),32)|0); + $1466 = tempRet0; + $1467 = $1117; $1468 = $1467; $1469 = HEAP32[$1468>>2]|0; - $1470 = (_bitshift64Ashr(0,($1466|0),32)|0); - $1471 = tempRet0; - $1472 = (___muldi3(($1470|0),($1471|0),($1462|0),($1463|0))|0); - $1473 = tempRet0; - $1474 = (_i64Add(($1454|0),($1455|0),($1472|0),($1473|0))|0); - $1475 = tempRet0; - $1476 = $1127; - $1477 = $1476; - $1478 = HEAP32[$1477>>2]|0; - $1479 = (($1476) + 4)|0; + $1470 = (($1467) + 4)|0; + $1471 = $1470; + $1472 = HEAP32[$1471>>2]|0; + $1473 = (_bitshift64Ashr(0,($1469|0),32)|0); + $1474 = tempRet0; + $1475 = (___muldi3(($1473|0),($1474|0),($1465|0),($1466|0))|0); + $1476 = tempRet0; + $1477 = (_i64Add(($1457|0),($1458|0),($1475|0),($1476|0))|0); + $1478 = tempRet0; + $1479 = $1130; $1480 = $1479; $1481 = HEAP32[$1480>>2]|0; - $1482 = (_bitshift64Ashr(0,($1478|0),32)|0); - $1483 = tempRet0; - $1484 = $93; - $1485 = $1484; - $1486 = HEAP32[$1485>>2]|0; - $1487 = (($1484) + 4)|0; + $1482 = (($1479) + 4)|0; + $1483 = $1482; + $1484 = HEAP32[$1483>>2]|0; + $1485 = (_bitshift64Ashr(0,($1481|0),32)|0); + $1486 = tempRet0; + $1487 = $96; $1488 = $1487; $1489 = HEAP32[$1488>>2]|0; - $1490 = (_bitshift64Ashr(0,($1486|0),32)|0); - $1491 = tempRet0; - $1492 = (___muldi3(($1490|0),($1491|0),($1482|0),($1483|0))|0); - $1493 = tempRet0; - $1494 = (_i64Add(($1474|0),($1475|0),($1492|0),($1493|0))|0); - $1495 = tempRet0; - $1496 = ((($output)) + 88|0); - $1497 = $1496; - $1498 = $1497; - HEAP32[$1498>>2] = $1494; - $1499 = (($1497) + 4)|0; + $1490 = (($1487) + 4)|0; + $1491 = $1490; + $1492 = HEAP32[$1491>>2]|0; + $1493 = (_bitshift64Ashr(0,($1489|0),32)|0); + $1494 = tempRet0; + $1495 = (___muldi3(($1493|0),($1494|0),($1485|0),($1486|0))|0); + $1496 = tempRet0; + $1497 = (_i64Add(($1477|0),($1478|0),($1495|0),($1496|0))|0); + $1498 = tempRet0; + $1499 = ((($0)) + 88|0); $1500 = $1499; - HEAP32[$1500>>2] = $1495; - $1501 = $570; - $1502 = $1501; - $1503 = HEAP32[$1502>>2]|0; - $1504 = (($1501) + 4)|0; + $1501 = $1500; + HEAP32[$1501>>2] = $1497; + $1502 = (($1500) + 4)|0; + $1503 = $1502; + HEAP32[$1503>>2] = $1498; + $1504 = $573; $1505 = $1504; $1506 = HEAP32[$1505>>2]|0; - $1507 = (_bitshift64Ashr(0,($1503|0),32)|0); - $1508 = tempRet0; - $1509 = $557; - $1510 = $1509; - $1511 = HEAP32[$1510>>2]|0; - $1512 = (($1509) + 4)|0; + $1507 = (($1504) + 4)|0; + $1508 = $1507; + $1509 = HEAP32[$1508>>2]|0; + $1510 = (_bitshift64Ashr(0,($1506|0),32)|0); + $1511 = tempRet0; + $1512 = $560; $1513 = $1512; $1514 = HEAP32[$1513>>2]|0; - $1515 = (_bitshift64Ashr(0,($1511|0),32)|0); - $1516 = tempRet0; - $1517 = (___muldi3(($1515|0),($1516|0),($1507|0),($1508|0))|0); - $1518 = tempRet0; - $1519 = $423; - $1520 = $1519; - $1521 = HEAP32[$1520>>2]|0; - $1522 = (($1519) + 4)|0; + $1515 = (($1512) + 4)|0; + $1516 = $1515; + $1517 = HEAP32[$1516>>2]|0; + $1518 = (_bitshift64Ashr(0,($1514|0),32)|0); + $1519 = tempRet0; + $1520 = (___muldi3(($1518|0),($1519|0),($1510|0),($1511|0))|0); + $1521 = tempRet0; + $1522 = $426; $1523 = $1522; $1524 = HEAP32[$1523>>2]|0; - $1525 = (_bitshift64Ashr(0,($1521|0),32)|0); - $1526 = tempRet0; - $1527 = $722; - $1528 = $1527; - $1529 = HEAP32[$1528>>2]|0; - $1530 = (($1527) + 4)|0; + $1525 = (($1522) + 4)|0; + $1526 = $1525; + $1527 = HEAP32[$1526>>2]|0; + $1528 = (_bitshift64Ashr(0,($1524|0),32)|0); + $1529 = tempRet0; + $1530 = $725; $1531 = $1530; $1532 = HEAP32[$1531>>2]|0; - $1533 = (_bitshift64Ashr(0,($1529|0),32)|0); - $1534 = tempRet0; - $1535 = (___muldi3(($1533|0),($1534|0),($1525|0),($1526|0))|0); - $1536 = tempRet0; - $1537 = $735; - $1538 = $1537; - $1539 = HEAP32[$1538>>2]|0; - $1540 = (($1537) + 4)|0; + $1533 = (($1530) + 4)|0; + $1534 = $1533; + $1535 = HEAP32[$1534>>2]|0; + $1536 = (_bitshift64Ashr(0,($1532|0),32)|0); + $1537 = tempRet0; + $1538 = (___muldi3(($1536|0),($1537|0),($1528|0),($1529|0))|0); + $1539 = tempRet0; + $1540 = $738; $1541 = $1540; $1542 = HEAP32[$1541>>2]|0; - $1543 = (_bitshift64Ashr(0,($1539|0),32)|0); - $1544 = tempRet0; - $1545 = $410; - $1546 = $1545; - $1547 = HEAP32[$1546>>2]|0; - $1548 = (($1545) + 4)|0; + $1543 = (($1540) + 4)|0; + $1544 = $1543; + $1545 = HEAP32[$1544>>2]|0; + $1546 = (_bitshift64Ashr(0,($1542|0),32)|0); + $1547 = tempRet0; + $1548 = $413; $1549 = $1548; $1550 = HEAP32[$1549>>2]|0; - $1551 = (_bitshift64Ashr(0,($1547|0),32)|0); - $1552 = tempRet0; - $1553 = (___muldi3(($1551|0),($1552|0),($1543|0),($1544|0))|0); - $1554 = tempRet0; - $1555 = (_i64Add(($1553|0),($1554|0),($1535|0),($1536|0))|0); - $1556 = tempRet0; - $1557 = $191; - $1558 = $1557; - $1559 = HEAP32[$1558>>2]|0; - $1560 = (($1557) + 4)|0; + $1551 = (($1548) + 4)|0; + $1552 = $1551; + $1553 = HEAP32[$1552>>2]|0; + $1554 = (_bitshift64Ashr(0,($1550|0),32)|0); + $1555 = tempRet0; + $1556 = (___muldi3(($1554|0),($1555|0),($1546|0),($1547|0))|0); + $1557 = tempRet0; + $1558 = (_i64Add(($1556|0),($1557|0),($1538|0),($1539|0))|0); + $1559 = tempRet0; + $1560 = $194; $1561 = $1560; $1562 = HEAP32[$1561>>2]|0; - $1563 = (_bitshift64Ashr(0,($1559|0),32)|0); - $1564 = tempRet0; - $1565 = $1114; - $1566 = $1565; - $1567 = HEAP32[$1566>>2]|0; - $1568 = (($1565) + 4)|0; + $1563 = (($1560) + 4)|0; + $1564 = $1563; + $1565 = HEAP32[$1564>>2]|0; + $1566 = (_bitshift64Ashr(0,($1562|0),32)|0); + $1567 = tempRet0; + $1568 = $1117; $1569 = $1568; $1570 = HEAP32[$1569>>2]|0; - $1571 = (_bitshift64Ashr(0,($1567|0),32)|0); - $1572 = tempRet0; - $1573 = (___muldi3(($1571|0),($1572|0),($1563|0),($1564|0))|0); - $1574 = tempRet0; - $1575 = (_i64Add(($1555|0),($1556|0),($1573|0),($1574|0))|0); - $1576 = tempRet0; - $1577 = $1127; - $1578 = $1577; - $1579 = HEAP32[$1578>>2]|0; - $1580 = (($1577) + 4)|0; + $1571 = (($1568) + 4)|0; + $1572 = $1571; + $1573 = HEAP32[$1572>>2]|0; + $1574 = (_bitshift64Ashr(0,($1570|0),32)|0); + $1575 = tempRet0; + $1576 = (___muldi3(($1574|0),($1575|0),($1566|0),($1567|0))|0); + $1577 = tempRet0; + $1578 = (_i64Add(($1558|0),($1559|0),($1576|0),($1577|0))|0); + $1579 = tempRet0; + $1580 = $1130; $1581 = $1580; $1582 = HEAP32[$1581>>2]|0; - $1583 = (_bitshift64Ashr(0,($1579|0),32)|0); - $1584 = tempRet0; - $1585 = $178; - $1586 = $1585; - $1587 = HEAP32[$1586>>2]|0; - $1588 = (($1585) + 4)|0; + $1583 = (($1580) + 4)|0; + $1584 = $1583; + $1585 = HEAP32[$1584>>2]|0; + $1586 = (_bitshift64Ashr(0,($1582|0),32)|0); + $1587 = tempRet0; + $1588 = $181; $1589 = $1588; $1590 = HEAP32[$1589>>2]|0; - $1591 = (_bitshift64Ashr(0,($1587|0),32)|0); - $1592 = tempRet0; - $1593 = (___muldi3(($1591|0),($1592|0),($1583|0),($1584|0))|0); - $1594 = tempRet0; - $1595 = (_i64Add(($1575|0),($1576|0),($1593|0),($1594|0))|0); - $1596 = tempRet0; - $1597 = (_bitshift64Shl(($1595|0),($1596|0),1)|0); - $1598 = tempRet0; - $1599 = (_i64Add(($1597|0),($1598|0),($1517|0),($1518|0))|0); - $1600 = tempRet0; - $1601 = $298; - $1602 = $1601; - $1603 = HEAP32[$1602>>2]|0; - $1604 = (($1601) + 4)|0; + $1591 = (($1588) + 4)|0; + $1592 = $1591; + $1593 = HEAP32[$1592>>2]|0; + $1594 = (_bitshift64Ashr(0,($1590|0),32)|0); + $1595 = tempRet0; + $1596 = (___muldi3(($1594|0),($1595|0),($1586|0),($1587|0))|0); + $1597 = tempRet0; + $1598 = (_i64Add(($1578|0),($1579|0),($1596|0),($1597|0))|0); + $1599 = tempRet0; + $1600 = (_bitshift64Shl(($1598|0),($1599|0),1)|0); + $1601 = tempRet0; + $1602 = (_i64Add(($1600|0),($1601|0),($1520|0),($1521|0))|0); + $1603 = tempRet0; + $1604 = $301; $1605 = $1604; $1606 = HEAP32[$1605>>2]|0; - $1607 = (_bitshift64Ashr(0,($1603|0),32)|0); - $1608 = tempRet0; - $1609 = $909; - $1610 = $1609; - $1611 = HEAP32[$1610>>2]|0; - $1612 = (($1609) + 4)|0; + $1607 = (($1604) + 4)|0; + $1608 = $1607; + $1609 = HEAP32[$1608>>2]|0; + $1610 = (_bitshift64Ashr(0,($1606|0),32)|0); + $1611 = tempRet0; + $1612 = $912; $1613 = $1612; $1614 = HEAP32[$1613>>2]|0; - $1615 = (_bitshift64Ashr(0,($1611|0),32)|0); - $1616 = tempRet0; - $1617 = (___muldi3(($1615|0),($1616|0),($1607|0),($1608|0))|0); - $1618 = tempRet0; - $1619 = (_i64Add(($1599|0),($1600|0),($1617|0),($1618|0))|0); - $1620 = tempRet0; - $1621 = $922; - $1622 = $1621; - $1623 = HEAP32[$1622>>2]|0; - $1624 = (($1621) + 4)|0; + $1615 = (($1612) + 4)|0; + $1616 = $1615; + $1617 = HEAP32[$1616>>2]|0; + $1618 = (_bitshift64Ashr(0,($1614|0),32)|0); + $1619 = tempRet0; + $1620 = (___muldi3(($1618|0),($1619|0),($1610|0),($1611|0))|0); + $1621 = tempRet0; + $1622 = (_i64Add(($1602|0),($1603|0),($1620|0),($1621|0))|0); + $1623 = tempRet0; + $1624 = $925; $1625 = $1624; $1626 = HEAP32[$1625>>2]|0; - $1627 = (_bitshift64Ashr(0,($1623|0),32)|0); - $1628 = tempRet0; - $1629 = $285; - $1630 = $1629; - $1631 = HEAP32[$1630>>2]|0; - $1632 = (($1629) + 4)|0; + $1627 = (($1624) + 4)|0; + $1628 = $1627; + $1629 = HEAP32[$1628>>2]|0; + $1630 = (_bitshift64Ashr(0,($1626|0),32)|0); + $1631 = tempRet0; + $1632 = $288; $1633 = $1632; $1634 = HEAP32[$1633>>2]|0; - $1635 = (_bitshift64Ashr(0,($1631|0),32)|0); - $1636 = tempRet0; - $1637 = (___muldi3(($1635|0),($1636|0),($1627|0),($1628|0))|0); - $1638 = tempRet0; - $1639 = (_i64Add(($1619|0),($1620|0),($1637|0),($1638|0))|0); - $1640 = tempRet0; - $1641 = ((($output)) + 96|0); - $1642 = $1641; - $1643 = $1642; - HEAP32[$1643>>2] = $1639; - $1644 = (($1642) + 4)|0; + $1635 = (($1632) + 4)|0; + $1636 = $1635; + $1637 = HEAP32[$1636>>2]|0; + $1638 = (_bitshift64Ashr(0,($1634|0),32)|0); + $1639 = tempRet0; + $1640 = (___muldi3(($1638|0),($1639|0),($1630|0),($1631|0))|0); + $1641 = tempRet0; + $1642 = (_i64Add(($1622|0),($1623|0),($1640|0),($1641|0))|0); + $1643 = tempRet0; + $1644 = ((($0)) + 96|0); $1645 = $1644; - HEAP32[$1645>>2] = $1640; - $1646 = $570; - $1647 = $1646; - $1648 = HEAP32[$1647>>2]|0; - $1649 = (($1646) + 4)|0; + $1646 = $1645; + HEAP32[$1646>>2] = $1642; + $1647 = (($1645) + 4)|0; + $1648 = $1647; + HEAP32[$1648>>2] = $1643; + $1649 = $573; $1650 = $1649; $1651 = HEAP32[$1650>>2]|0; - $1652 = (_bitshift64Ashr(0,($1648|0),32)|0); - $1653 = tempRet0; - $1654 = $722; - $1655 = $1654; - $1656 = HEAP32[$1655>>2]|0; - $1657 = (($1654) + 4)|0; + $1652 = (($1649) + 4)|0; + $1653 = $1652; + $1654 = HEAP32[$1653>>2]|0; + $1655 = (_bitshift64Ashr(0,($1651|0),32)|0); + $1656 = tempRet0; + $1657 = $725; $1658 = $1657; $1659 = HEAP32[$1658>>2]|0; - $1660 = (_bitshift64Ashr(0,($1656|0),32)|0); - $1661 = tempRet0; - $1662 = (___muldi3(($1660|0),($1661|0),($1652|0),($1653|0))|0); - $1663 = tempRet0; - $1664 = $735; - $1665 = $1664; - $1666 = HEAP32[$1665>>2]|0; - $1667 = (($1664) + 4)|0; + $1660 = (($1657) + 4)|0; + $1661 = $1660; + $1662 = HEAP32[$1661>>2]|0; + $1663 = (_bitshift64Ashr(0,($1659|0),32)|0); + $1664 = tempRet0; + $1665 = (___muldi3(($1663|0),($1664|0),($1655|0),($1656|0))|0); + $1666 = tempRet0; + $1667 = $738; $1668 = $1667; $1669 = HEAP32[$1668>>2]|0; - $1670 = (_bitshift64Ashr(0,($1666|0),32)|0); - $1671 = tempRet0; - $1672 = $557; - $1673 = $1672; - $1674 = HEAP32[$1673>>2]|0; - $1675 = (($1672) + 4)|0; + $1670 = (($1667) + 4)|0; + $1671 = $1670; + $1672 = HEAP32[$1671>>2]|0; + $1673 = (_bitshift64Ashr(0,($1669|0),32)|0); + $1674 = tempRet0; + $1675 = $560; $1676 = $1675; $1677 = HEAP32[$1676>>2]|0; - $1678 = (_bitshift64Ashr(0,($1674|0),32)|0); - $1679 = tempRet0; - $1680 = (___muldi3(($1678|0),($1679|0),($1670|0),($1671|0))|0); - $1681 = tempRet0; - $1682 = (_i64Add(($1680|0),($1681|0),($1662|0),($1663|0))|0); - $1683 = tempRet0; - $1684 = $423; - $1685 = $1684; - $1686 = HEAP32[$1685>>2]|0; - $1687 = (($1684) + 4)|0; + $1678 = (($1675) + 4)|0; + $1679 = $1678; + $1680 = HEAP32[$1679>>2]|0; + $1681 = (_bitshift64Ashr(0,($1677|0),32)|0); + $1682 = tempRet0; + $1683 = (___muldi3(($1681|0),($1682|0),($1673|0),($1674|0))|0); + $1684 = tempRet0; + $1685 = (_i64Add(($1683|0),($1684|0),($1665|0),($1666|0))|0); + $1686 = tempRet0; + $1687 = $426; $1688 = $1687; $1689 = HEAP32[$1688>>2]|0; - $1690 = (_bitshift64Ashr(0,($1686|0),32)|0); - $1691 = tempRet0; - $1692 = $909; - $1693 = $1692; - $1694 = HEAP32[$1693>>2]|0; - $1695 = (($1692) + 4)|0; + $1690 = (($1687) + 4)|0; + $1691 = $1690; + $1692 = HEAP32[$1691>>2]|0; + $1693 = (_bitshift64Ashr(0,($1689|0),32)|0); + $1694 = tempRet0; + $1695 = $912; $1696 = $1695; $1697 = HEAP32[$1696>>2]|0; - $1698 = (_bitshift64Ashr(0,($1694|0),32)|0); - $1699 = tempRet0; - $1700 = (___muldi3(($1698|0),($1699|0),($1690|0),($1691|0))|0); - $1701 = tempRet0; - $1702 = (_i64Add(($1682|0),($1683|0),($1700|0),($1701|0))|0); - $1703 = tempRet0; - $1704 = $922; - $1705 = $1704; - $1706 = HEAP32[$1705>>2]|0; - $1707 = (($1704) + 4)|0; + $1698 = (($1695) + 4)|0; + $1699 = $1698; + $1700 = HEAP32[$1699>>2]|0; + $1701 = (_bitshift64Ashr(0,($1697|0),32)|0); + $1702 = tempRet0; + $1703 = (___muldi3(($1701|0),($1702|0),($1693|0),($1694|0))|0); + $1704 = tempRet0; + $1705 = (_i64Add(($1685|0),($1686|0),($1703|0),($1704|0))|0); + $1706 = tempRet0; + $1707 = $925; $1708 = $1707; $1709 = HEAP32[$1708>>2]|0; - $1710 = (_bitshift64Ashr(0,($1706|0),32)|0); - $1711 = tempRet0; - $1712 = $410; - $1713 = $1712; - $1714 = HEAP32[$1713>>2]|0; - $1715 = (($1712) + 4)|0; + $1710 = (($1707) + 4)|0; + $1711 = $1710; + $1712 = HEAP32[$1711>>2]|0; + $1713 = (_bitshift64Ashr(0,($1709|0),32)|0); + $1714 = tempRet0; + $1715 = $413; $1716 = $1715; $1717 = HEAP32[$1716>>2]|0; - $1718 = (_bitshift64Ashr(0,($1714|0),32)|0); - $1719 = tempRet0; - $1720 = (___muldi3(($1718|0),($1719|0),($1710|0),($1711|0))|0); - $1721 = tempRet0; - $1722 = (_i64Add(($1702|0),($1703|0),($1720|0),($1721|0))|0); - $1723 = tempRet0; - $1724 = $298; - $1725 = $1724; - $1726 = HEAP32[$1725>>2]|0; - $1727 = (($1724) + 4)|0; + $1718 = (($1715) + 4)|0; + $1719 = $1718; + $1720 = HEAP32[$1719>>2]|0; + $1721 = (_bitshift64Ashr(0,($1717|0),32)|0); + $1722 = tempRet0; + $1723 = (___muldi3(($1721|0),($1722|0),($1713|0),($1714|0))|0); + $1724 = tempRet0; + $1725 = (_i64Add(($1705|0),($1706|0),($1723|0),($1724|0))|0); + $1726 = tempRet0; + $1727 = $301; $1728 = $1727; $1729 = HEAP32[$1728>>2]|0; - $1730 = (_bitshift64Ashr(0,($1726|0),32)|0); - $1731 = tempRet0; - $1732 = $1114; - $1733 = $1732; - $1734 = HEAP32[$1733>>2]|0; - $1735 = (($1732) + 4)|0; + $1730 = (($1727) + 4)|0; + $1731 = $1730; + $1732 = HEAP32[$1731>>2]|0; + $1733 = (_bitshift64Ashr(0,($1729|0),32)|0); + $1734 = tempRet0; + $1735 = $1117; $1736 = $1735; $1737 = HEAP32[$1736>>2]|0; - $1738 = (_bitshift64Ashr(0,($1734|0),32)|0); - $1739 = tempRet0; - $1740 = (___muldi3(($1738|0),($1739|0),($1730|0),($1731|0))|0); - $1741 = tempRet0; - $1742 = (_i64Add(($1722|0),($1723|0),($1740|0),($1741|0))|0); - $1743 = tempRet0; - $1744 = $1127; - $1745 = $1744; - $1746 = HEAP32[$1745>>2]|0; - $1747 = (($1744) + 4)|0; + $1738 = (($1735) + 4)|0; + $1739 = $1738; + $1740 = HEAP32[$1739>>2]|0; + $1741 = (_bitshift64Ashr(0,($1737|0),32)|0); + $1742 = tempRet0; + $1743 = (___muldi3(($1741|0),($1742|0),($1733|0),($1734|0))|0); + $1744 = tempRet0; + $1745 = (_i64Add(($1725|0),($1726|0),($1743|0),($1744|0))|0); + $1746 = tempRet0; + $1747 = $1130; $1748 = $1747; $1749 = HEAP32[$1748>>2]|0; - $1750 = (_bitshift64Ashr(0,($1746|0),32)|0); - $1751 = tempRet0; - $1752 = $285; - $1753 = $1752; - $1754 = HEAP32[$1753>>2]|0; - $1755 = (($1752) + 4)|0; + $1750 = (($1747) + 4)|0; + $1751 = $1750; + $1752 = HEAP32[$1751>>2]|0; + $1753 = (_bitshift64Ashr(0,($1749|0),32)|0); + $1754 = tempRet0; + $1755 = $288; $1756 = $1755; $1757 = HEAP32[$1756>>2]|0; - $1758 = (_bitshift64Ashr(0,($1754|0),32)|0); - $1759 = tempRet0; - $1760 = (___muldi3(($1758|0),($1759|0),($1750|0),($1751|0))|0); - $1761 = tempRet0; - $1762 = (_i64Add(($1742|0),($1743|0),($1760|0),($1761|0))|0); - $1763 = tempRet0; - $1764 = ((($output)) + 104|0); - $1765 = $1764; - $1766 = $1765; - HEAP32[$1766>>2] = $1762; - $1767 = (($1765) + 4)|0; + $1758 = (($1755) + 4)|0; + $1759 = $1758; + $1760 = HEAP32[$1759>>2]|0; + $1761 = (_bitshift64Ashr(0,($1757|0),32)|0); + $1762 = tempRet0; + $1763 = (___muldi3(($1761|0),($1762|0),($1753|0),($1754|0))|0); + $1764 = tempRet0; + $1765 = (_i64Add(($1745|0),($1746|0),($1763|0),($1764|0))|0); + $1766 = tempRet0; + $1767 = ((($0)) + 104|0); $1768 = $1767; - HEAP32[$1768>>2] = $1763; - $1769 = $735; - $1770 = $1769; - $1771 = HEAP32[$1770>>2]|0; - $1772 = (($1769) + 4)|0; + $1769 = $1768; + HEAP32[$1769>>2] = $1765; + $1770 = (($1768) + 4)|0; + $1771 = $1770; + HEAP32[$1771>>2] = $1766; + $1772 = $738; $1773 = $1772; $1774 = HEAP32[$1773>>2]|0; - $1775 = (_bitshift64Ashr(0,($1771|0),32)|0); - $1776 = tempRet0; - $1777 = $722; - $1778 = $1777; - $1779 = HEAP32[$1778>>2]|0; - $1780 = (($1777) + 4)|0; + $1775 = (($1772) + 4)|0; + $1776 = $1775; + $1777 = HEAP32[$1776>>2]|0; + $1778 = (_bitshift64Ashr(0,($1774|0),32)|0); + $1779 = tempRet0; + $1780 = $725; $1781 = $1780; $1782 = HEAP32[$1781>>2]|0; - $1783 = (_bitshift64Ashr(0,($1779|0),32)|0); - $1784 = tempRet0; - $1785 = (___muldi3(($1783|0),($1784|0),($1775|0),($1776|0))|0); - $1786 = tempRet0; - $1787 = $423; - $1788 = $1787; - $1789 = HEAP32[$1788>>2]|0; - $1790 = (($1787) + 4)|0; + $1783 = (($1780) + 4)|0; + $1784 = $1783; + $1785 = HEAP32[$1784>>2]|0; + $1786 = (_bitshift64Ashr(0,($1782|0),32)|0); + $1787 = tempRet0; + $1788 = (___muldi3(($1786|0),($1787|0),($1778|0),($1779|0))|0); + $1789 = tempRet0; + $1790 = $426; $1791 = $1790; $1792 = HEAP32[$1791>>2]|0; - $1793 = (_bitshift64Ashr(0,($1789|0),32)|0); - $1794 = tempRet0; - $1795 = $1114; - $1796 = $1795; - $1797 = HEAP32[$1796>>2]|0; - $1798 = (($1795) + 4)|0; + $1793 = (($1790) + 4)|0; + $1794 = $1793; + $1795 = HEAP32[$1794>>2]|0; + $1796 = (_bitshift64Ashr(0,($1792|0),32)|0); + $1797 = tempRet0; + $1798 = $1117; $1799 = $1798; $1800 = HEAP32[$1799>>2]|0; - $1801 = (_bitshift64Ashr(0,($1797|0),32)|0); - $1802 = tempRet0; - $1803 = (___muldi3(($1801|0),($1802|0),($1793|0),($1794|0))|0); - $1804 = tempRet0; - $1805 = (_i64Add(($1803|0),($1804|0),($1785|0),($1786|0))|0); - $1806 = tempRet0; - $1807 = $1127; - $1808 = $1807; - $1809 = HEAP32[$1808>>2]|0; - $1810 = (($1807) + 4)|0; + $1801 = (($1798) + 4)|0; + $1802 = $1801; + $1803 = HEAP32[$1802>>2]|0; + $1804 = (_bitshift64Ashr(0,($1800|0),32)|0); + $1805 = tempRet0; + $1806 = (___muldi3(($1804|0),($1805|0),($1796|0),($1797|0))|0); + $1807 = tempRet0; + $1808 = (_i64Add(($1806|0),($1807|0),($1788|0),($1789|0))|0); + $1809 = tempRet0; + $1810 = $1130; $1811 = $1810; $1812 = HEAP32[$1811>>2]|0; - $1813 = (_bitshift64Ashr(0,($1809|0),32)|0); - $1814 = tempRet0; - $1815 = $410; - $1816 = $1815; - $1817 = HEAP32[$1816>>2]|0; - $1818 = (($1815) + 4)|0; + $1813 = (($1810) + 4)|0; + $1814 = $1813; + $1815 = HEAP32[$1814>>2]|0; + $1816 = (_bitshift64Ashr(0,($1812|0),32)|0); + $1817 = tempRet0; + $1818 = $413; $1819 = $1818; $1820 = HEAP32[$1819>>2]|0; - $1821 = (_bitshift64Ashr(0,($1817|0),32)|0); - $1822 = tempRet0; - $1823 = (___muldi3(($1821|0),($1822|0),($1813|0),($1814|0))|0); - $1824 = tempRet0; - $1825 = (_i64Add(($1805|0),($1806|0),($1823|0),($1824|0))|0); - $1826 = tempRet0; - $1827 = (_bitshift64Shl(($1825|0),($1826|0),1)|0); - $1828 = tempRet0; - $1829 = $570; - $1830 = $1829; - $1831 = HEAP32[$1830>>2]|0; - $1832 = (($1829) + 4)|0; + $1821 = (($1818) + 4)|0; + $1822 = $1821; + $1823 = HEAP32[$1822>>2]|0; + $1824 = (_bitshift64Ashr(0,($1820|0),32)|0); + $1825 = tempRet0; + $1826 = (___muldi3(($1824|0),($1825|0),($1816|0),($1817|0))|0); + $1827 = tempRet0; + $1828 = (_i64Add(($1808|0),($1809|0),($1826|0),($1827|0))|0); + $1829 = tempRet0; + $1830 = (_bitshift64Shl(($1828|0),($1829|0),1)|0); + $1831 = tempRet0; + $1832 = $573; $1833 = $1832; $1834 = HEAP32[$1833>>2]|0; - $1835 = (_bitshift64Ashr(0,($1831|0),32)|0); - $1836 = tempRet0; - $1837 = $909; - $1838 = $1837; - $1839 = HEAP32[$1838>>2]|0; - $1840 = (($1837) + 4)|0; + $1835 = (($1832) + 4)|0; + $1836 = $1835; + $1837 = HEAP32[$1836>>2]|0; + $1838 = (_bitshift64Ashr(0,($1834|0),32)|0); + $1839 = tempRet0; + $1840 = $912; $1841 = $1840; $1842 = HEAP32[$1841>>2]|0; - $1843 = (_bitshift64Ashr(0,($1839|0),32)|0); - $1844 = tempRet0; - $1845 = (___muldi3(($1843|0),($1844|0),($1835|0),($1836|0))|0); - $1846 = tempRet0; - $1847 = (_i64Add(($1827|0),($1828|0),($1845|0),($1846|0))|0); - $1848 = tempRet0; - $1849 = $922; - $1850 = $1849; - $1851 = HEAP32[$1850>>2]|0; - $1852 = (($1849) + 4)|0; + $1843 = (($1840) + 4)|0; + $1844 = $1843; + $1845 = HEAP32[$1844>>2]|0; + $1846 = (_bitshift64Ashr(0,($1842|0),32)|0); + $1847 = tempRet0; + $1848 = (___muldi3(($1846|0),($1847|0),($1838|0),($1839|0))|0); + $1849 = tempRet0; + $1850 = (_i64Add(($1830|0),($1831|0),($1848|0),($1849|0))|0); + $1851 = tempRet0; + $1852 = $925; $1853 = $1852; $1854 = HEAP32[$1853>>2]|0; - $1855 = (_bitshift64Ashr(0,($1851|0),32)|0); - $1856 = tempRet0; - $1857 = $557; - $1858 = $1857; - $1859 = HEAP32[$1858>>2]|0; - $1860 = (($1857) + 4)|0; + $1855 = (($1852) + 4)|0; + $1856 = $1855; + $1857 = HEAP32[$1856>>2]|0; + $1858 = (_bitshift64Ashr(0,($1854|0),32)|0); + $1859 = tempRet0; + $1860 = $560; $1861 = $1860; $1862 = HEAP32[$1861>>2]|0; - $1863 = (_bitshift64Ashr(0,($1859|0),32)|0); - $1864 = tempRet0; - $1865 = (___muldi3(($1863|0),($1864|0),($1855|0),($1856|0))|0); - $1866 = tempRet0; - $1867 = (_i64Add(($1847|0),($1848|0),($1865|0),($1866|0))|0); - $1868 = tempRet0; - $1869 = ((($output)) + 112|0); - $1870 = $1869; - $1871 = $1870; - HEAP32[$1871>>2] = $1867; - $1872 = (($1870) + 4)|0; + $1863 = (($1860) + 4)|0; + $1864 = $1863; + $1865 = HEAP32[$1864>>2]|0; + $1866 = (_bitshift64Ashr(0,($1862|0),32)|0); + $1867 = tempRet0; + $1868 = (___muldi3(($1866|0),($1867|0),($1858|0),($1859|0))|0); + $1869 = tempRet0; + $1870 = (_i64Add(($1850|0),($1851|0),($1868|0),($1869|0))|0); + $1871 = tempRet0; + $1872 = ((($0)) + 112|0); $1873 = $1872; - HEAP32[$1873>>2] = $1868; - $1874 = $735; - $1875 = $1874; - $1876 = HEAP32[$1875>>2]|0; - $1877 = (($1874) + 4)|0; + $1874 = $1873; + HEAP32[$1874>>2] = $1870; + $1875 = (($1873) + 4)|0; + $1876 = $1875; + HEAP32[$1876>>2] = $1871; + $1877 = $738; $1878 = $1877; $1879 = HEAP32[$1878>>2]|0; - $1880 = (_bitshift64Ashr(0,($1876|0),32)|0); - $1881 = tempRet0; - $1882 = $909; - $1883 = $1882; - $1884 = HEAP32[$1883>>2]|0; - $1885 = (($1882) + 4)|0; + $1880 = (($1877) + 4)|0; + $1881 = $1880; + $1882 = HEAP32[$1881>>2]|0; + $1883 = (_bitshift64Ashr(0,($1879|0),32)|0); + $1884 = tempRet0; + $1885 = $912; $1886 = $1885; $1887 = HEAP32[$1886>>2]|0; - $1888 = (_bitshift64Ashr(0,($1884|0),32)|0); - $1889 = tempRet0; - $1890 = (___muldi3(($1888|0),($1889|0),($1880|0),($1881|0))|0); - $1891 = tempRet0; - $1892 = $922; - $1893 = $1892; - $1894 = HEAP32[$1893>>2]|0; - $1895 = (($1892) + 4)|0; + $1888 = (($1885) + 4)|0; + $1889 = $1888; + $1890 = HEAP32[$1889>>2]|0; + $1891 = (_bitshift64Ashr(0,($1887|0),32)|0); + $1892 = tempRet0; + $1893 = (___muldi3(($1891|0),($1892|0),($1883|0),($1884|0))|0); + $1894 = tempRet0; + $1895 = $925; $1896 = $1895; $1897 = HEAP32[$1896>>2]|0; - $1898 = (_bitshift64Ashr(0,($1894|0),32)|0); - $1899 = tempRet0; - $1900 = $722; - $1901 = $1900; - $1902 = HEAP32[$1901>>2]|0; - $1903 = (($1900) + 4)|0; + $1898 = (($1895) + 4)|0; + $1899 = $1898; + $1900 = HEAP32[$1899>>2]|0; + $1901 = (_bitshift64Ashr(0,($1897|0),32)|0); + $1902 = tempRet0; + $1903 = $725; $1904 = $1903; $1905 = HEAP32[$1904>>2]|0; - $1906 = (_bitshift64Ashr(0,($1902|0),32)|0); - $1907 = tempRet0; - $1908 = (___muldi3(($1906|0),($1907|0),($1898|0),($1899|0))|0); - $1909 = tempRet0; - $1910 = (_i64Add(($1908|0),($1909|0),($1890|0),($1891|0))|0); - $1911 = tempRet0; - $1912 = $570; - $1913 = $1912; - $1914 = HEAP32[$1913>>2]|0; - $1915 = (($1912) + 4)|0; + $1906 = (($1903) + 4)|0; + $1907 = $1906; + $1908 = HEAP32[$1907>>2]|0; + $1909 = (_bitshift64Ashr(0,($1905|0),32)|0); + $1910 = tempRet0; + $1911 = (___muldi3(($1909|0),($1910|0),($1901|0),($1902|0))|0); + $1912 = tempRet0; + $1913 = (_i64Add(($1911|0),($1912|0),($1893|0),($1894|0))|0); + $1914 = tempRet0; + $1915 = $573; $1916 = $1915; $1917 = HEAP32[$1916>>2]|0; - $1918 = (_bitshift64Ashr(0,($1914|0),32)|0); - $1919 = tempRet0; - $1920 = $1114; - $1921 = $1920; - $1922 = HEAP32[$1921>>2]|0; - $1923 = (($1920) + 4)|0; + $1918 = (($1915) + 4)|0; + $1919 = $1918; + $1920 = HEAP32[$1919>>2]|0; + $1921 = (_bitshift64Ashr(0,($1917|0),32)|0); + $1922 = tempRet0; + $1923 = $1117; $1924 = $1923; $1925 = HEAP32[$1924>>2]|0; - $1926 = (_bitshift64Ashr(0,($1922|0),32)|0); - $1927 = tempRet0; - $1928 = (___muldi3(($1926|0),($1927|0),($1918|0),($1919|0))|0); - $1929 = tempRet0; - $1930 = (_i64Add(($1910|0),($1911|0),($1928|0),($1929|0))|0); - $1931 = tempRet0; - $1932 = $1127; - $1933 = $1932; - $1934 = HEAP32[$1933>>2]|0; - $1935 = (($1932) + 4)|0; + $1926 = (($1923) + 4)|0; + $1927 = $1926; + $1928 = HEAP32[$1927>>2]|0; + $1929 = (_bitshift64Ashr(0,($1925|0),32)|0); + $1930 = tempRet0; + $1931 = (___muldi3(($1929|0),($1930|0),($1921|0),($1922|0))|0); + $1932 = tempRet0; + $1933 = (_i64Add(($1913|0),($1914|0),($1931|0),($1932|0))|0); + $1934 = tempRet0; + $1935 = $1130; $1936 = $1935; $1937 = HEAP32[$1936>>2]|0; - $1938 = (_bitshift64Ashr(0,($1934|0),32)|0); - $1939 = tempRet0; - $1940 = $557; - $1941 = $1940; - $1942 = HEAP32[$1941>>2]|0; - $1943 = (($1940) + 4)|0; + $1938 = (($1935) + 4)|0; + $1939 = $1938; + $1940 = HEAP32[$1939>>2]|0; + $1941 = (_bitshift64Ashr(0,($1937|0),32)|0); + $1942 = tempRet0; + $1943 = $560; $1944 = $1943; $1945 = HEAP32[$1944>>2]|0; - $1946 = (_bitshift64Ashr(0,($1942|0),32)|0); - $1947 = tempRet0; - $1948 = (___muldi3(($1946|0),($1947|0),($1938|0),($1939|0))|0); - $1949 = tempRet0; - $1950 = (_i64Add(($1930|0),($1931|0),($1948|0),($1949|0))|0); - $1951 = tempRet0; - $1952 = ((($output)) + 120|0); - $1953 = $1952; - $1954 = $1953; - HEAP32[$1954>>2] = $1950; - $1955 = (($1953) + 4)|0; + $1946 = (($1943) + 4)|0; + $1947 = $1946; + $1948 = HEAP32[$1947>>2]|0; + $1949 = (_bitshift64Ashr(0,($1945|0),32)|0); + $1950 = tempRet0; + $1951 = (___muldi3(($1949|0),($1950|0),($1941|0),($1942|0))|0); + $1952 = tempRet0; + $1953 = (_i64Add(($1933|0),($1934|0),($1951|0),($1952|0))|0); + $1954 = tempRet0; + $1955 = ((($0)) + 120|0); $1956 = $1955; - HEAP32[$1956>>2] = $1951; - $1957 = $922; - $1958 = $1957; - $1959 = HEAP32[$1958>>2]|0; - $1960 = (($1957) + 4)|0; + $1957 = $1956; + HEAP32[$1957>>2] = $1953; + $1958 = (($1956) + 4)|0; + $1959 = $1958; + HEAP32[$1959>>2] = $1954; + $1960 = $925; $1961 = $1960; $1962 = HEAP32[$1961>>2]|0; - $1963 = (_bitshift64Ashr(0,($1959|0),32)|0); - $1964 = tempRet0; - $1965 = $909; - $1966 = $1965; - $1967 = HEAP32[$1966>>2]|0; - $1968 = (($1965) + 4)|0; + $1963 = (($1960) + 4)|0; + $1964 = $1963; + $1965 = HEAP32[$1964>>2]|0; + $1966 = (_bitshift64Ashr(0,($1962|0),32)|0); + $1967 = tempRet0; + $1968 = $912; $1969 = $1968; $1970 = HEAP32[$1969>>2]|0; - $1971 = (_bitshift64Ashr(0,($1967|0),32)|0); - $1972 = tempRet0; - $1973 = (___muldi3(($1971|0),($1972|0),($1963|0),($1964|0))|0); - $1974 = tempRet0; - $1975 = $735; - $1976 = $1975; - $1977 = HEAP32[$1976>>2]|0; - $1978 = (($1975) + 4)|0; + $1971 = (($1968) + 4)|0; + $1972 = $1971; + $1973 = HEAP32[$1972>>2]|0; + $1974 = (_bitshift64Ashr(0,($1970|0),32)|0); + $1975 = tempRet0; + $1976 = (___muldi3(($1974|0),($1975|0),($1966|0),($1967|0))|0); + $1977 = tempRet0; + $1978 = $738; $1979 = $1978; $1980 = HEAP32[$1979>>2]|0; - $1981 = (_bitshift64Ashr(0,($1977|0),32)|0); - $1982 = tempRet0; - $1983 = $1114; - $1984 = $1983; - $1985 = HEAP32[$1984>>2]|0; - $1986 = (($1983) + 4)|0; + $1981 = (($1978) + 4)|0; + $1982 = $1981; + $1983 = HEAP32[$1982>>2]|0; + $1984 = (_bitshift64Ashr(0,($1980|0),32)|0); + $1985 = tempRet0; + $1986 = $1117; $1987 = $1986; $1988 = HEAP32[$1987>>2]|0; - $1989 = (_bitshift64Ashr(0,($1985|0),32)|0); - $1990 = tempRet0; - $1991 = (___muldi3(($1989|0),($1990|0),($1981|0),($1982|0))|0); - $1992 = tempRet0; - $1993 = $1127; - $1994 = $1993; - $1995 = HEAP32[$1994>>2]|0; - $1996 = (($1993) + 4)|0; + $1989 = (($1986) + 4)|0; + $1990 = $1989; + $1991 = HEAP32[$1990>>2]|0; + $1992 = (_bitshift64Ashr(0,($1988|0),32)|0); + $1993 = tempRet0; + $1994 = (___muldi3(($1992|0),($1993|0),($1984|0),($1985|0))|0); + $1995 = tempRet0; + $1996 = $1130; $1997 = $1996; $1998 = HEAP32[$1997>>2]|0; - $1999 = (_bitshift64Ashr(0,($1995|0),32)|0); - $2000 = tempRet0; - $2001 = $722; - $2002 = $2001; - $2003 = HEAP32[$2002>>2]|0; - $2004 = (($2001) + 4)|0; + $1999 = (($1996) + 4)|0; + $2000 = $1999; + $2001 = HEAP32[$2000>>2]|0; + $2002 = (_bitshift64Ashr(0,($1998|0),32)|0); + $2003 = tempRet0; + $2004 = $725; $2005 = $2004; $2006 = HEAP32[$2005>>2]|0; - $2007 = (_bitshift64Ashr(0,($2003|0),32)|0); - $2008 = tempRet0; - $2009 = (___muldi3(($2007|0),($2008|0),($1999|0),($2000|0))|0); - $2010 = tempRet0; - $2011 = (_i64Add(($2009|0),($2010|0),($1991|0),($1992|0))|0); - $2012 = tempRet0; - $2013 = (_bitshift64Shl(($2011|0),($2012|0),1)|0); - $2014 = tempRet0; - $2015 = (_i64Add(($2013|0),($2014|0),($1973|0),($1974|0))|0); - $2016 = tempRet0; - $2017 = ((($output)) + 128|0); - $2018 = $2017; - $2019 = $2018; - HEAP32[$2019>>2] = $2015; - $2020 = (($2018) + 4)|0; + $2007 = (($2004) + 4)|0; + $2008 = $2007; + $2009 = HEAP32[$2008>>2]|0; + $2010 = (_bitshift64Ashr(0,($2006|0),32)|0); + $2011 = tempRet0; + $2012 = (___muldi3(($2010|0),($2011|0),($2002|0),($2003|0))|0); + $2013 = tempRet0; + $2014 = (_i64Add(($2012|0),($2013|0),($1994|0),($1995|0))|0); + $2015 = tempRet0; + $2016 = (_bitshift64Shl(($2014|0),($2015|0),1)|0); + $2017 = tempRet0; + $2018 = (_i64Add(($2016|0),($2017|0),($1976|0),($1977|0))|0); + $2019 = tempRet0; + $2020 = ((($0)) + 128|0); $2021 = $2020; - HEAP32[$2021>>2] = $2016; - $2022 = $922; - $2023 = $2022; - $2024 = HEAP32[$2023>>2]|0; - $2025 = (($2022) + 4)|0; + $2022 = $2021; + HEAP32[$2022>>2] = $2018; + $2023 = (($2021) + 4)|0; + $2024 = $2023; + HEAP32[$2024>>2] = $2019; + $2025 = $925; $2026 = $2025; $2027 = HEAP32[$2026>>2]|0; - $2028 = (_bitshift64Ashr(0,($2024|0),32)|0); - $2029 = tempRet0; - $2030 = $1114; - $2031 = $2030; - $2032 = HEAP32[$2031>>2]|0; - $2033 = (($2030) + 4)|0; + $2028 = (($2025) + 4)|0; + $2029 = $2028; + $2030 = HEAP32[$2029>>2]|0; + $2031 = (_bitshift64Ashr(0,($2027|0),32)|0); + $2032 = tempRet0; + $2033 = $1117; $2034 = $2033; $2035 = HEAP32[$2034>>2]|0; - $2036 = (_bitshift64Ashr(0,($2032|0),32)|0); - $2037 = tempRet0; - $2038 = (___muldi3(($2036|0),($2037|0),($2028|0),($2029|0))|0); - $2039 = tempRet0; - $2040 = $1127; - $2041 = $2040; - $2042 = HEAP32[$2041>>2]|0; - $2043 = (($2040) + 4)|0; + $2036 = (($2033) + 4)|0; + $2037 = $2036; + $2038 = HEAP32[$2037>>2]|0; + $2039 = (_bitshift64Ashr(0,($2035|0),32)|0); + $2040 = tempRet0; + $2041 = (___muldi3(($2039|0),($2040|0),($2031|0),($2032|0))|0); + $2042 = tempRet0; + $2043 = $1130; $2044 = $2043; $2045 = HEAP32[$2044>>2]|0; - $2046 = (_bitshift64Ashr(0,($2042|0),32)|0); - $2047 = tempRet0; - $2048 = $909; - $2049 = $2048; - $2050 = HEAP32[$2049>>2]|0; - $2051 = (($2048) + 4)|0; + $2046 = (($2043) + 4)|0; + $2047 = $2046; + $2048 = HEAP32[$2047>>2]|0; + $2049 = (_bitshift64Ashr(0,($2045|0),32)|0); + $2050 = tempRet0; + $2051 = $912; $2052 = $2051; $2053 = HEAP32[$2052>>2]|0; - $2054 = (_bitshift64Ashr(0,($2050|0),32)|0); - $2055 = tempRet0; - $2056 = (___muldi3(($2054|0),($2055|0),($2046|0),($2047|0))|0); - $2057 = tempRet0; - $2058 = (_i64Add(($2056|0),($2057|0),($2038|0),($2039|0))|0); - $2059 = tempRet0; - $2060 = ((($output)) + 136|0); - $2061 = $2060; - $2062 = $2061; - HEAP32[$2062>>2] = $2058; - $2063 = (($2061) + 4)|0; + $2054 = (($2051) + 4)|0; + $2055 = $2054; + $2056 = HEAP32[$2055>>2]|0; + $2057 = (_bitshift64Ashr(0,($2053|0),32)|0); + $2058 = tempRet0; + $2059 = (___muldi3(($2057|0),($2058|0),($2049|0),($2050|0))|0); + $2060 = tempRet0; + $2061 = (_i64Add(($2059|0),($2060|0),($2041|0),($2042|0))|0); + $2062 = tempRet0; + $2063 = ((($0)) + 136|0); $2064 = $2063; - HEAP32[$2064>>2] = $2059; - $2065 = $1127; - $2066 = $2065; - $2067 = HEAP32[$2066>>2]|0; - $2068 = (($2065) + 4)|0; + $2065 = $2064; + HEAP32[$2065>>2] = $2061; + $2066 = (($2064) + 4)|0; + $2067 = $2066; + HEAP32[$2067>>2] = $2062; + $2068 = $1130; $2069 = $2068; $2070 = HEAP32[$2069>>2]|0; - $2071 = (_bitshift64Ashr(0,($2067|0),31)|0); - $2072 = tempRet0; - $2073 = $1114; - $2074 = $2073; - $2075 = HEAP32[$2074>>2]|0; - $2076 = (($2073) + 4)|0; + $2071 = (($2068) + 4)|0; + $2072 = $2071; + $2073 = HEAP32[$2072>>2]|0; + $2074 = (_bitshift64Ashr(0,($2070|0),31)|0); + $2075 = tempRet0; + $2076 = $1117; $2077 = $2076; $2078 = HEAP32[$2077>>2]|0; - $2079 = (_bitshift64Ashr(0,($2075|0),32)|0); - $2080 = tempRet0; - $2081 = (___muldi3(($2079|0),($2080|0),($2071|0),($2072|0))|0); - $2082 = tempRet0; - $2083 = ((($output)) + 144|0); - $2084 = $2083; - $2085 = $2084; - HEAP32[$2085>>2] = $2081; - $2086 = (($2084) + 4)|0; + $2079 = (($2076) + 4)|0; + $2080 = $2079; + $2081 = HEAP32[$2080>>2]|0; + $2082 = (_bitshift64Ashr(0,($2078|0),32)|0); + $2083 = tempRet0; + $2084 = (___muldi3(($2082|0),($2083|0),($2074|0),($2075|0))|0); + $2085 = tempRet0; + $2086 = ((($0)) + 144|0); $2087 = $2086; - HEAP32[$2087>>2] = $2082; + $2088 = $2087; + HEAP32[$2088>>2] = $2084; + $2089 = (($2087) + 4)|0; + $2090 = $2089; + HEAP32[$2090>>2] = $2085; return; } -function _freduce_degree($output) { - $output = $output|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; - var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; - var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; - var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; - var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; - var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; - var $297 = 0, $298 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0; +function _freduce_degree($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0; + var $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0; + var $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0; + var $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0; + var $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0; + var $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0; + var $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0; + var $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0; var $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0; var $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0; var $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0; var sp = 0; sp = STACKTOP; - $0 = ((($output)) + 144|0); - $1 = $0; + $1 = ((($0)) + 144|0); $2 = $1; - $3 = HEAP32[$2>>2]|0; - $4 = (($1) + 4)|0; - $5 = $4; - $6 = HEAP32[$5>>2]|0; - $7 = (_bitshift64Shl(($3|0),($6|0),4)|0); - $8 = tempRet0; - $9 = ((($output)) + 64|0); + $3 = $2; + $4 = HEAP32[$3>>2]|0; + $5 = (($2) + 4)|0; + $6 = $5; + $7 = HEAP32[$6>>2]|0; + $8 = ((($0)) + 64|0); + $9 = $8; $10 = $9; - $11 = $10; - $12 = HEAP32[$11>>2]|0; - $13 = (($10) + 4)|0; - $14 = $13; - $15 = HEAP32[$14>>2]|0; - $16 = (_i64Add(($12|0),($15|0),($7|0),($8|0))|0); - $17 = tempRet0; - $18 = (_bitshift64Shl(($3|0),($6|0),1)|0); - $19 = tempRet0; - $20 = (_i64Add(($18|0),($19|0),($16|0),($17|0))|0); - $21 = tempRet0; - $22 = $0; - $23 = $22; - $24 = HEAP32[$23>>2]|0; - $25 = (($22) + 4)|0; + $11 = HEAP32[$10>>2]|0; + $12 = (($9) + 4)|0; + $13 = $12; + $14 = HEAP32[$13>>2]|0; + $15 = (___muldi3(($4|0),($7|0),18,0)|0); + $16 = tempRet0; + $17 = (_i64Add(($11|0),($14|0),($4|0),($7|0))|0); + $18 = tempRet0; + $19 = (_i64Add(($17|0),($18|0),($15|0),($16|0))|0); + $20 = tempRet0; + $21 = $8; + $22 = $21; + HEAP32[$22>>2] = $19; + $23 = (($21) + 4)|0; + $24 = $23; + HEAP32[$24>>2] = $20; + $25 = ((($0)) + 136|0); $26 = $25; - $27 = HEAP32[$26>>2]|0; - $28 = (_i64Add(($20|0),($21|0),($24|0),($27|0))|0); - $29 = tempRet0; - $30 = $9; - $31 = $30; - HEAP32[$31>>2] = $28; - $32 = (($30) + 4)|0; + $27 = $26; + $28 = HEAP32[$27>>2]|0; + $29 = (($26) + 4)|0; + $30 = $29; + $31 = HEAP32[$30>>2]|0; + $32 = ((($0)) + 56|0); $33 = $32; - HEAP32[$33>>2] = $29; - $34 = ((($output)) + 136|0); - $35 = $34; - $36 = $35; - $37 = HEAP32[$36>>2]|0; - $38 = (($35) + 4)|0; - $39 = $38; - $40 = HEAP32[$39>>2]|0; - $41 = (_bitshift64Shl(($37|0),($40|0),4)|0); + $34 = $33; + $35 = HEAP32[$34>>2]|0; + $36 = (($33) + 4)|0; + $37 = $36; + $38 = HEAP32[$37>>2]|0; + $39 = (___muldi3(($28|0),($31|0),18,0)|0); + $40 = tempRet0; + $41 = (_i64Add(($35|0),($38|0),($28|0),($31|0))|0); $42 = tempRet0; - $43 = ((($output)) + 56|0); - $44 = $43; - $45 = $44; - $46 = HEAP32[$45>>2]|0; - $47 = (($44) + 4)|0; + $43 = (_i64Add(($41|0),($42|0),($39|0),($40|0))|0); + $44 = tempRet0; + $45 = $32; + $46 = $45; + HEAP32[$46>>2] = $43; + $47 = (($45) + 4)|0; $48 = $47; - $49 = HEAP32[$48>>2]|0; - $50 = (_i64Add(($46|0),($49|0),($41|0),($42|0))|0); - $51 = tempRet0; - $52 = (_bitshift64Shl(($37|0),($40|0),1)|0); - $53 = tempRet0; - $54 = (_i64Add(($52|0),($53|0),($50|0),($51|0))|0); - $55 = tempRet0; - $56 = $34; + HEAP32[$48>>2] = $44; + $49 = ((($0)) + 128|0); + $50 = $49; + $51 = $50; + $52 = HEAP32[$51>>2]|0; + $53 = (($50) + 4)|0; + $54 = $53; + $55 = HEAP32[$54>>2]|0; + $56 = ((($0)) + 48|0); $57 = $56; - $58 = HEAP32[$57>>2]|0; - $59 = (($56) + 4)|0; - $60 = $59; - $61 = HEAP32[$60>>2]|0; - $62 = (_i64Add(($54|0),($55|0),($58|0),($61|0))|0); - $63 = tempRet0; - $64 = $43; - $65 = $64; - HEAP32[$65>>2] = $62; - $66 = (($64) + 4)|0; - $67 = $66; - HEAP32[$67>>2] = $63; - $68 = ((($output)) + 128|0); - $69 = $68; + $58 = $57; + $59 = HEAP32[$58>>2]|0; + $60 = (($57) + 4)|0; + $61 = $60; + $62 = HEAP32[$61>>2]|0; + $63 = (___muldi3(($52|0),($55|0),18,0)|0); + $64 = tempRet0; + $65 = (_i64Add(($59|0),($62|0),($52|0),($55|0))|0); + $66 = tempRet0; + $67 = (_i64Add(($65|0),($66|0),($63|0),($64|0))|0); + $68 = tempRet0; + $69 = $56; $70 = $69; - $71 = HEAP32[$70>>2]|0; - $72 = (($69) + 4)|0; - $73 = $72; - $74 = HEAP32[$73>>2]|0; - $75 = (_bitshift64Shl(($71|0),($74|0),4)|0); - $76 = tempRet0; - $77 = ((($output)) + 48|0); + HEAP32[$70>>2] = $67; + $71 = (($69) + 4)|0; + $72 = $71; + HEAP32[$72>>2] = $68; + $73 = ((($0)) + 120|0); + $74 = $73; + $75 = $74; + $76 = HEAP32[$75>>2]|0; + $77 = (($74) + 4)|0; $78 = $77; - $79 = $78; - $80 = HEAP32[$79>>2]|0; - $81 = (($78) + 4)|0; + $79 = HEAP32[$78>>2]|0; + $80 = ((($0)) + 40|0); + $81 = $80; $82 = $81; $83 = HEAP32[$82>>2]|0; - $84 = (_i64Add(($80|0),($83|0),($75|0),($76|0))|0); - $85 = tempRet0; - $86 = (_bitshift64Shl(($71|0),($74|0),1)|0); - $87 = tempRet0; - $88 = (_i64Add(($86|0),($87|0),($84|0),($85|0))|0); - $89 = tempRet0; - $90 = $68; - $91 = $90; - $92 = HEAP32[$91>>2]|0; - $93 = (($90) + 4)|0; + $84 = (($81) + 4)|0; + $85 = $84; + $86 = HEAP32[$85>>2]|0; + $87 = (___muldi3(($76|0),($79|0),18,0)|0); + $88 = tempRet0; + $89 = (_i64Add(($83|0),($86|0),($76|0),($79|0))|0); + $90 = tempRet0; + $91 = (_i64Add(($89|0),($90|0),($87|0),($88|0))|0); + $92 = tempRet0; + $93 = $80; $94 = $93; - $95 = HEAP32[$94>>2]|0; - $96 = (_i64Add(($88|0),($89|0),($92|0),($95|0))|0); - $97 = tempRet0; - $98 = $77; + HEAP32[$94>>2] = $91; + $95 = (($93) + 4)|0; + $96 = $95; + HEAP32[$96>>2] = $92; + $97 = ((($0)) + 112|0); + $98 = $97; $99 = $98; - HEAP32[$99>>2] = $96; - $100 = (($98) + 4)|0; - $101 = $100; - HEAP32[$101>>2] = $97; - $102 = ((($output)) + 120|0); - $103 = $102; - $104 = $103; - $105 = HEAP32[$104>>2]|0; - $106 = (($103) + 4)|0; - $107 = $106; - $108 = HEAP32[$107>>2]|0; - $109 = (_bitshift64Shl(($105|0),($108|0),4)|0); - $110 = tempRet0; - $111 = ((($output)) + 40|0); - $112 = $111; - $113 = $112; - $114 = HEAP32[$113>>2]|0; - $115 = (($112) + 4)|0; - $116 = $115; - $117 = HEAP32[$116>>2]|0; - $118 = (_i64Add(($114|0),($117|0),($109|0),($110|0))|0); - $119 = tempRet0; - $120 = (_bitshift64Shl(($105|0),($108|0),1)|0); - $121 = tempRet0; - $122 = (_i64Add(($120|0),($121|0),($118|0),($119|0))|0); - $123 = tempRet0; - $124 = $102; - $125 = $124; - $126 = HEAP32[$125>>2]|0; - $127 = (($124) + 4)|0; - $128 = $127; - $129 = HEAP32[$128>>2]|0; - $130 = (_i64Add(($122|0),($123|0),($126|0),($129|0))|0); - $131 = tempRet0; - $132 = $111; + $100 = HEAP32[$99>>2]|0; + $101 = (($98) + 4)|0; + $102 = $101; + $103 = HEAP32[$102>>2]|0; + $104 = ((($0)) + 32|0); + $105 = $104; + $106 = $105; + $107 = HEAP32[$106>>2]|0; + $108 = (($105) + 4)|0; + $109 = $108; + $110 = HEAP32[$109>>2]|0; + $111 = (___muldi3(($100|0),($103|0),18,0)|0); + $112 = tempRet0; + $113 = (_i64Add(($107|0),($110|0),($100|0),($103|0))|0); + $114 = tempRet0; + $115 = (_i64Add(($113|0),($114|0),($111|0),($112|0))|0); + $116 = tempRet0; + $117 = $104; + $118 = $117; + HEAP32[$118>>2] = $115; + $119 = (($117) + 4)|0; + $120 = $119; + HEAP32[$120>>2] = $116; + $121 = ((($0)) + 104|0); + $122 = $121; + $123 = $122; + $124 = HEAP32[$123>>2]|0; + $125 = (($122) + 4)|0; + $126 = $125; + $127 = HEAP32[$126>>2]|0; + $128 = ((($0)) + 24|0); + $129 = $128; + $130 = $129; + $131 = HEAP32[$130>>2]|0; + $132 = (($129) + 4)|0; $133 = $132; - HEAP32[$133>>2] = $130; - $134 = (($132) + 4)|0; - $135 = $134; - HEAP32[$135>>2] = $131; - $136 = ((($output)) + 112|0); - $137 = $136; - $138 = $137; - $139 = HEAP32[$138>>2]|0; - $140 = (($137) + 4)|0; - $141 = $140; - $142 = HEAP32[$141>>2]|0; - $143 = (_bitshift64Shl(($139|0),($142|0),4)|0); - $144 = tempRet0; - $145 = ((($output)) + 32|0); + $134 = HEAP32[$133>>2]|0; + $135 = (___muldi3(($124|0),($127|0),18,0)|0); + $136 = tempRet0; + $137 = (_i64Add(($131|0),($134|0),($124|0),($127|0))|0); + $138 = tempRet0; + $139 = (_i64Add(($137|0),($138|0),($135|0),($136|0))|0); + $140 = tempRet0; + $141 = $128; + $142 = $141; + HEAP32[$142>>2] = $139; + $143 = (($141) + 4)|0; + $144 = $143; + HEAP32[$144>>2] = $140; + $145 = ((($0)) + 96|0); $146 = $145; $147 = $146; $148 = HEAP32[$147>>2]|0; $149 = (($146) + 4)|0; $150 = $149; $151 = HEAP32[$150>>2]|0; - $152 = (_i64Add(($148|0),($151|0),($143|0),($144|0))|0); - $153 = tempRet0; - $154 = (_bitshift64Shl(($139|0),($142|0),1)|0); - $155 = tempRet0; - $156 = (_i64Add(($154|0),($155|0),($152|0),($153|0))|0); - $157 = tempRet0; - $158 = $136; - $159 = $158; - $160 = HEAP32[$159>>2]|0; - $161 = (($158) + 4)|0; - $162 = $161; - $163 = HEAP32[$162>>2]|0; - $164 = (_i64Add(($156|0),($157|0),($160|0),($163|0))|0); - $165 = tempRet0; - $166 = $145; - $167 = $166; - HEAP32[$167>>2] = $164; - $168 = (($166) + 4)|0; - $169 = $168; - HEAP32[$169>>2] = $165; - $170 = ((($output)) + 104|0); + $152 = ((($0)) + 16|0); + $153 = $152; + $154 = $153; + $155 = HEAP32[$154>>2]|0; + $156 = (($153) + 4)|0; + $157 = $156; + $158 = HEAP32[$157>>2]|0; + $159 = (___muldi3(($148|0),($151|0),18,0)|0); + $160 = tempRet0; + $161 = (_i64Add(($155|0),($158|0),($148|0),($151|0))|0); + $162 = tempRet0; + $163 = (_i64Add(($161|0),($162|0),($159|0),($160|0))|0); + $164 = tempRet0; + $165 = $152; + $166 = $165; + HEAP32[$166>>2] = $163; + $167 = (($165) + 4)|0; + $168 = $167; + HEAP32[$168>>2] = $164; + $169 = ((($0)) + 88|0); + $170 = $169; $171 = $170; - $172 = $171; - $173 = HEAP32[$172>>2]|0; - $174 = (($171) + 4)|0; - $175 = $174; - $176 = HEAP32[$175>>2]|0; - $177 = (_bitshift64Shl(($173|0),($176|0),4)|0); - $178 = tempRet0; - $179 = ((($output)) + 24|0); - $180 = $179; + $172 = HEAP32[$171>>2]|0; + $173 = (($170) + 4)|0; + $174 = $173; + $175 = HEAP32[$174>>2]|0; + $176 = ((($0)) + 8|0); + $177 = $176; + $178 = $177; + $179 = HEAP32[$178>>2]|0; + $180 = (($177) + 4)|0; $181 = $180; $182 = HEAP32[$181>>2]|0; - $183 = (($180) + 4)|0; - $184 = $183; - $185 = HEAP32[$184>>2]|0; - $186 = (_i64Add(($182|0),($185|0),($177|0),($178|0))|0); - $187 = tempRet0; - $188 = (_bitshift64Shl(($173|0),($176|0),1)|0); - $189 = tempRet0; - $190 = (_i64Add(($188|0),($189|0),($186|0),($187|0))|0); - $191 = tempRet0; - $192 = $170; - $193 = $192; - $194 = HEAP32[$193>>2]|0; - $195 = (($192) + 4)|0; - $196 = $195; - $197 = HEAP32[$196>>2]|0; - $198 = (_i64Add(($190|0),($191|0),($194|0),($197|0))|0); - $199 = tempRet0; - $200 = $179; - $201 = $200; - HEAP32[$201>>2] = $198; - $202 = (($200) + 4)|0; + $183 = (___muldi3(($172|0),($175|0),18,0)|0); + $184 = tempRet0; + $185 = (_i64Add(($179|0),($182|0),($172|0),($175|0))|0); + $186 = tempRet0; + $187 = (_i64Add(($185|0),($186|0),($183|0),($184|0))|0); + $188 = tempRet0; + $189 = $176; + $190 = $189; + HEAP32[$190>>2] = $187; + $191 = (($189) + 4)|0; + $192 = $191; + HEAP32[$192>>2] = $188; + $193 = ((($0)) + 80|0); + $194 = $193; + $195 = $194; + $196 = HEAP32[$195>>2]|0; + $197 = (($194) + 4)|0; + $198 = $197; + $199 = HEAP32[$198>>2]|0; + $200 = (_bitshift64Shl(($196|0),($199|0),4)|0); + $201 = tempRet0; + $202 = $0; $203 = $202; - HEAP32[$203>>2] = $199; - $204 = ((($output)) + 96|0); - $205 = $204; + $204 = HEAP32[$203>>2]|0; + $205 = (($202) + 4)|0; $206 = $205; $207 = HEAP32[$206>>2]|0; - $208 = (($205) + 4)|0; - $209 = $208; - $210 = HEAP32[$209>>2]|0; - $211 = (_bitshift64Shl(($207|0),($210|0),4)|0); - $212 = tempRet0; - $213 = ((($output)) + 16|0); - $214 = $213; - $215 = $214; - $216 = HEAP32[$215>>2]|0; - $217 = (($214) + 4)|0; - $218 = $217; - $219 = HEAP32[$218>>2]|0; - $220 = (_i64Add(($216|0),($219|0),($211|0),($212|0))|0); - $221 = tempRet0; - $222 = (_bitshift64Shl(($207|0),($210|0),1)|0); - $223 = tempRet0; - $224 = (_i64Add(($222|0),($223|0),($220|0),($221|0))|0); - $225 = tempRet0; - $226 = $204; - $227 = $226; - $228 = HEAP32[$227>>2]|0; - $229 = (($226) + 4)|0; - $230 = $229; - $231 = HEAP32[$230>>2]|0; - $232 = (_i64Add(($224|0),($225|0),($228|0),($231|0))|0); - $233 = tempRet0; - $234 = $213; - $235 = $234; - HEAP32[$235>>2] = $232; - $236 = (($234) + 4)|0; - $237 = $236; - HEAP32[$237>>2] = $233; - $238 = ((($output)) + 88|0); - $239 = $238; - $240 = $239; - $241 = HEAP32[$240>>2]|0; - $242 = (($239) + 4)|0; - $243 = $242; - $244 = HEAP32[$243>>2]|0; - $245 = (_bitshift64Shl(($241|0),($244|0),4)|0); - $246 = tempRet0; - $247 = ((($output)) + 8|0); - $248 = $247; - $249 = $248; - $250 = HEAP32[$249>>2]|0; - $251 = (($248) + 4)|0; - $252 = $251; - $253 = HEAP32[$252>>2]|0; - $254 = (_i64Add(($250|0),($253|0),($245|0),($246|0))|0); - $255 = tempRet0; - $256 = (_bitshift64Shl(($241|0),($244|0),1)|0); - $257 = tempRet0; - $258 = (_i64Add(($256|0),($257|0),($254|0),($255|0))|0); - $259 = tempRet0; - $260 = $238; - $261 = $260; - $262 = HEAP32[$261>>2]|0; - $263 = (($260) + 4)|0; - $264 = $263; - $265 = HEAP32[$264>>2]|0; - $266 = (_i64Add(($258|0),($259|0),($262|0),($265|0))|0); - $267 = tempRet0; - $268 = $247; - $269 = $268; - HEAP32[$269>>2] = $266; - $270 = (($268) + 4)|0; - $271 = $270; - HEAP32[$271>>2] = $267; - $272 = ((($output)) + 80|0); - $273 = $272; - $274 = $273; - $275 = HEAP32[$274>>2]|0; - $276 = (($273) + 4)|0; - $277 = $276; - $278 = HEAP32[$277>>2]|0; - $279 = (_bitshift64Shl(($275|0),($278|0),4)|0); - $280 = tempRet0; - $281 = $output; - $282 = $281; - $283 = HEAP32[$282>>2]|0; - $284 = (($281) + 4)|0; - $285 = $284; - $286 = HEAP32[$285>>2]|0; - $287 = (_i64Add(($283|0),($286|0),($279|0),($280|0))|0); - $288 = tempRet0; - $289 = (_bitshift64Shl(($275|0),($278|0),1)|0); - $290 = tempRet0; - $291 = (_i64Add(($289|0),($290|0),($287|0),($288|0))|0); - $292 = tempRet0; - $293 = (_i64Add(($291|0),($292|0),($275|0),($278|0))|0); - $294 = tempRet0; - $295 = $output; - $296 = $295; - HEAP32[$296>>2] = $293; - $297 = (($295) + 4)|0; - $298 = $297; - HEAP32[$298>>2] = $294; + $208 = (_i64Add(($204|0),($207|0),($200|0),($201|0))|0); + $209 = tempRet0; + $210 = (_bitshift64Shl(($196|0),($199|0),1)|0); + $211 = tempRet0; + $212 = (_i64Add(($208|0),($209|0),($210|0),($211|0))|0); + $213 = tempRet0; + $214 = (_i64Add(($212|0),($213|0),($196|0),($199|0))|0); + $215 = tempRet0; + $216 = $0; + $217 = $216; + HEAP32[$217>>2] = $214; + $218 = (($216) + 4)|0; + $219 = $218; + HEAP32[$219>>2] = $215; return; } -function _freduce_coefficients($output) { - $output = $output|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0; - var $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0; - var $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0; - var $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0; - var $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $i$01 = 0, label = 0, sp = 0; +function _freduce_coefficients($0) { + $0 = $0|0; + var $$036 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0; + var $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0; + var $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0; + var $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0; + var $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0; + var $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = ((($output)) + 80|0); - $1 = $0; + $1 = ((($0)) + 80|0); $2 = $1; - HEAP32[$2>>2] = 0; - $3 = (($1) + 4)|0; - $4 = $3; - HEAP32[$4>>2] = 0; - $i$01 = 0; + $3 = $2; + HEAP32[$3>>2] = 0; + $4 = (($2) + 4)|0; + $5 = $4; + HEAP32[$5>>2] = 0; + $$036 = 0; while(1) { - $5 = (($output) + ($i$01<<3)|0); - $6 = $5; + $6 = (($0) + ($$036<<3)|0); $7 = $6; - $8 = HEAP32[$7>>2]|0; - $9 = (($6) + 4)|0; - $10 = $9; - $11 = HEAP32[$10>>2]|0; - $12 = (_div_by_2_26($8,$11)|0); - $13 = tempRet0; - $14 = (_bitshift64Shl(($12|0),($13|0),26)|0); - $15 = tempRet0; - $16 = (_i64Subtract(($8|0),($11|0),($14|0),($15|0))|0); - $17 = tempRet0; - $18 = $5; - $19 = $18; - HEAP32[$19>>2] = $16; - $20 = (($18) + 4)|0; - $21 = $20; - HEAP32[$21>>2] = $17; - $22 = $i$01 | 1; - $23 = (($output) + ($22<<3)|0); - $24 = $23; + $8 = $7; + $9 = HEAP32[$8>>2]|0; + $10 = (($7) + 4)|0; + $11 = $10; + $12 = HEAP32[$11>>2]|0; + $13 = (_div_by_2_26($9,$12)|0); + $14 = tempRet0; + $15 = (_bitshift64Shl(($13|0),($14|0),26)|0); + $16 = tempRet0; + $17 = (_i64Subtract(($9|0),($12|0),($15|0),($16|0))|0); + $18 = tempRet0; + $19 = $6; + $20 = $19; + HEAP32[$20>>2] = $17; + $21 = (($19) + 4)|0; + $22 = $21; + HEAP32[$22>>2] = $18; + $23 = $$036 | 1; + $24 = (($0) + ($23<<3)|0); $25 = $24; - $26 = HEAP32[$25>>2]|0; - $27 = (($24) + 4)|0; - $28 = $27; - $29 = HEAP32[$28>>2]|0; - $30 = (_i64Add(($26|0),($29|0),($12|0),($13|0))|0); - $31 = tempRet0; - $32 = (_div_by_2_25($30,$31)|0); - $33 = tempRet0; - $34 = (_bitshift64Shl(($32|0),($33|0),25)|0); - $35 = tempRet0; - $36 = (_i64Subtract(($30|0),($31|0),($34|0),($35|0))|0); - $37 = tempRet0; - $38 = $23; - $39 = $38; - HEAP32[$39>>2] = $36; - $40 = (($38) + 4)|0; - $41 = $40; - HEAP32[$41>>2] = $37; - $42 = (($i$01) + 2)|0; - $43 = (($output) + ($42<<3)|0); - $44 = $43; + $26 = $25; + $27 = HEAP32[$26>>2]|0; + $28 = (($25) + 4)|0; + $29 = $28; + $30 = HEAP32[$29>>2]|0; + $31 = (_i64Add(($27|0),($30|0),($13|0),($14|0))|0); + $32 = tempRet0; + $33 = (_div_by_2_25($31,$32)|0); + $34 = tempRet0; + $35 = (_bitshift64Shl(($33|0),($34|0),25)|0); + $36 = tempRet0; + $37 = (_i64Subtract(($31|0),($32|0),($35|0),($36|0))|0); + $38 = tempRet0; + $39 = $24; + $40 = $39; + HEAP32[$40>>2] = $37; + $41 = (($39) + 4)|0; + $42 = $41; + HEAP32[$42>>2] = $38; + $43 = (($$036) + 2)|0; + $44 = (($0) + ($43<<3)|0); $45 = $44; - $46 = HEAP32[$45>>2]|0; - $47 = (($44) + 4)|0; - $48 = $47; - $49 = HEAP32[$48>>2]|0; - $50 = (_i64Add(($46|0),($49|0),($32|0),($33|0))|0); - $51 = tempRet0; - $52 = $43; - $53 = $52; - HEAP32[$53>>2] = $50; - $54 = (($52) + 4)|0; - $55 = $54; - HEAP32[$55>>2] = $51; - $56 = ($42>>>0)<(10); - if ($56) { - $i$01 = $42; + $46 = $45; + $47 = HEAP32[$46>>2]|0; + $48 = (($45) + 4)|0; + $49 = $48; + $50 = HEAP32[$49>>2]|0; + $51 = (_i64Add(($47|0),($50|0),($33|0),($34|0))|0); + $52 = tempRet0; + $53 = $44; + $54 = $53; + HEAP32[$54>>2] = $51; + $55 = (($53) + 4)|0; + $56 = $55; + HEAP32[$56>>2] = $52; + $57 = ($43>>>0)<(10); + if ($57) { + $$036 = $43; } else { break; } } - $57 = $0; - $58 = $57; - $59 = HEAP32[$58>>2]|0; - $60 = (($57) + 4)|0; - $61 = $60; - $62 = HEAP32[$61>>2]|0; - $63 = (_bitshift64Shl(($59|0),($62|0),4)|0); - $64 = tempRet0; - $65 = $output; - $66 = $65; - $67 = HEAP32[$66>>2]|0; - $68 = (($65) + 4)|0; - $69 = $68; - $70 = HEAP32[$69>>2]|0; - $71 = (_i64Add(($67|0),($70|0),($63|0),($64|0))|0); - $72 = tempRet0; - $73 = (_bitshift64Shl(($59|0),($62|0),1)|0); - $74 = tempRet0; - $75 = (_i64Add(($73|0),($74|0),($71|0),($72|0))|0); - $76 = tempRet0; - $77 = (_i64Add(($75|0),($76|0),($59|0),($62|0))|0); - $78 = tempRet0; - $79 = $output; - $80 = $79; - HEAP32[$80>>2] = $77; - $81 = (($79) + 4)|0; - $82 = $81; - HEAP32[$82>>2] = $78; - $83 = $0; - $84 = $83; - HEAP32[$84>>2] = 0; - $85 = (($83) + 4)|0; - $86 = $85; - HEAP32[$86>>2] = 0; - $87 = $output; - $88 = $87; - $89 = HEAP32[$88>>2]|0; - $90 = (($87) + 4)|0; + $58 = $1; + $59 = $58; + $60 = HEAP32[$59>>2]|0; + $61 = (($58) + 4)|0; + $62 = $61; + $63 = HEAP32[$62>>2]|0; + $64 = $0; + $65 = $64; + $66 = HEAP32[$65>>2]|0; + $67 = (($64) + 4)|0; + $68 = $67; + $69 = HEAP32[$68>>2]|0; + $70 = (___muldi3(($60|0),($63|0),18,0)|0); + $71 = tempRet0; + $72 = (_i64Add(($66|0),($69|0),($60|0),($63|0))|0); + $73 = tempRet0; + $74 = (_i64Add(($72|0),($73|0),($70|0),($71|0))|0); + $75 = tempRet0; + $76 = $1; + $77 = $76; + HEAP32[$77>>2] = 0; + $78 = (($76) + 4)|0; + $79 = $78; + HEAP32[$79>>2] = 0; + $80 = (_div_by_2_26($74,$75)|0); + $81 = tempRet0; + $82 = (_bitshift64Shl(($80|0),($81|0),26)|0); + $83 = tempRet0; + $84 = (_i64Subtract(($74|0),($75|0),($82|0),($83|0))|0); + $85 = tempRet0; + $86 = $0; + $87 = $86; + HEAP32[$87>>2] = $84; + $88 = (($86) + 4)|0; + $89 = $88; + HEAP32[$89>>2] = $85; + $90 = ((($0)) + 8|0); $91 = $90; - $92 = HEAP32[$91>>2]|0; - $93 = (_div_by_2_26($89,$92)|0); - $94 = tempRet0; - $95 = (_bitshift64Shl(($93|0),($94|0),26)|0); - $96 = tempRet0; - $97 = (_i64Subtract(($89|0),($92|0),($95|0),($96|0))|0); + $92 = $91; + $93 = HEAP32[$92>>2]|0; + $94 = (($91) + 4)|0; + $95 = $94; + $96 = HEAP32[$95>>2]|0; + $97 = (_i64Add(($93|0),($96|0),($80|0),($81|0))|0); $98 = tempRet0; - $99 = $output; + $99 = $90; $100 = $99; HEAP32[$100>>2] = $97; $101 = (($99) + 4)|0; $102 = $101; HEAP32[$102>>2] = $98; - $103 = ((($output)) + 8|0); - $104 = $103; - $105 = $104; - $106 = HEAP32[$105>>2]|0; - $107 = (($104) + 4)|0; - $108 = $107; - $109 = HEAP32[$108>>2]|0; - $110 = (_i64Add(($106|0),($109|0),($93|0),($94|0))|0); - $111 = tempRet0; - $112 = $103; - $113 = $112; - HEAP32[$113>>2] = $110; - $114 = (($112) + 4)|0; - $115 = $114; - HEAP32[$115>>2] = $111; return; } function _div_by_2_26($0,$1) { @@ -10109,29 +6179,29 @@ function _div_by_2_25($0,$1) { tempRet0 = ($7); return ($6|0); } -function _fsquare($output,$in) { - $output = $output|0; - $in = $in|0; - var $t = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; +function _fsquare($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; sp = STACKTOP; STACKTOP = STACKTOP + 160|0; - $t = sp; - _fsquare_inner($t,$in); - _freduce_degree($t); - _freduce_coefficients($t); - dest=$output; src=$t; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + $2 = sp; + _fsquare_inner($2,$1); + _freduce_degree($2); + _freduce_coefficients($2); + dest=$0; src=$2; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); STACKTOP = sp;return; } -function _fsquare_inner($output,$in) { - $output = $output|0; - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; - var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0; - var $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0; - var $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0; - var $107 = 0, $1070 = 0, $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0; - var $1088 = 0, $1089 = 0, $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0; - var $1105 = 0, $1106 = 0, $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0; +function _fsquare_inner($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0, $1015 = 0, $1016 = 0; + var $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0, $1033 = 0, $1034 = 0; + var $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0, $1051 = 0, $1052 = 0; + var $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0, $107 = 0, $1070 = 0; + var $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0, $1088 = 0, $1089 = 0; + var $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0, $1105 = 0, $1106 = 0; + var $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $1119 = 0, $112 = 0, $1120 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0; var $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0; var $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0; var $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0; @@ -10183,4914 +6253,5314 @@ function _fsquare_inner($output,$in) { var $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, label = 0; var sp = 0; sp = STACKTOP; - $0 = $in; - $1 = $0; - $2 = HEAP32[$1>>2]|0; - $3 = (($0) + 4)|0; - $4 = $3; - $5 = HEAP32[$4>>2]|0; - $6 = (_bitshift64Ashr(0,($2|0),32)|0); - $7 = tempRet0; - $8 = (___muldi3(($6|0),($7|0),($6|0),($7|0))|0); + $2 = $1; + $3 = $2; + $4 = HEAP32[$3>>2]|0; + $5 = (($2) + 4)|0; + $6 = $5; + $7 = HEAP32[$6>>2]|0; + $8 = (_bitshift64Ashr(0,($4|0),32)|0); $9 = tempRet0; - $10 = $output; - $11 = $10; - HEAP32[$11>>2] = $8; - $12 = (($10) + 4)|0; + $10 = (___muldi3(($8|0),($9|0),($8|0),($9|0))|0); + $11 = tempRet0; + $12 = $0; $13 = $12; - HEAP32[$13>>2] = $9; - $14 = $in; + HEAP32[$13>>2] = $10; + $14 = (($12) + 4)|0; $15 = $14; - $16 = HEAP32[$15>>2]|0; - $17 = (($14) + 4)|0; - $18 = $17; - $19 = HEAP32[$18>>2]|0; - $20 = (_bitshift64Ashr(0,($16|0),31)|0); - $21 = tempRet0; - $22 = ((($in)) + 8|0); - $23 = $22; - $24 = $23; - $25 = HEAP32[$24>>2]|0; - $26 = (($23) + 4)|0; - $27 = $26; - $28 = HEAP32[$27>>2]|0; - $29 = (_bitshift64Ashr(0,($25|0),32)|0); - $30 = tempRet0; - $31 = (___muldi3(($29|0),($30|0),($20|0),($21|0))|0); + HEAP32[$15>>2] = $11; + $16 = $1; + $17 = $16; + $18 = HEAP32[$17>>2]|0; + $19 = (($16) + 4)|0; + $20 = $19; + $21 = HEAP32[$20>>2]|0; + $22 = (_bitshift64Ashr(0,($18|0),31)|0); + $23 = tempRet0; + $24 = ((($1)) + 8|0); + $25 = $24; + $26 = $25; + $27 = HEAP32[$26>>2]|0; + $28 = (($25) + 4)|0; + $29 = $28; + $30 = HEAP32[$29>>2]|0; + $31 = (_bitshift64Ashr(0,($27|0),32)|0); $32 = tempRet0; - $33 = ((($output)) + 8|0); - $34 = $33; - $35 = $34; - HEAP32[$35>>2] = $31; - $36 = (($34) + 4)|0; + $33 = (___muldi3(($31|0),($32|0),($22|0),($23|0))|0); + $34 = tempRet0; + $35 = ((($0)) + 8|0); + $36 = $35; $37 = $36; - HEAP32[$37>>2] = $32; - $38 = $22; + HEAP32[$37>>2] = $33; + $38 = (($36) + 4)|0; $39 = $38; - $40 = HEAP32[$39>>2]|0; - $41 = (($38) + 4)|0; - $42 = $41; - $43 = HEAP32[$42>>2]|0; - $44 = (_bitshift64Ashr(0,($40|0),32)|0); - $45 = tempRet0; - $46 = (___muldi3(($44|0),($45|0),($44|0),($45|0))|0); + HEAP32[$39>>2] = $34; + $40 = $24; + $41 = $40; + $42 = HEAP32[$41>>2]|0; + $43 = (($40) + 4)|0; + $44 = $43; + $45 = HEAP32[$44>>2]|0; + $46 = (_bitshift64Ashr(0,($42|0),32)|0); $47 = tempRet0; - $48 = $in; - $49 = $48; - $50 = HEAP32[$49>>2]|0; - $51 = (($48) + 4)|0; - $52 = $51; - $53 = HEAP32[$52>>2]|0; - $54 = (_bitshift64Ashr(0,($50|0),32)|0); - $55 = tempRet0; - $56 = ((($in)) + 16|0); - $57 = $56; - $58 = $57; - $59 = HEAP32[$58>>2]|0; - $60 = (($57) + 4)|0; - $61 = $60; - $62 = HEAP32[$61>>2]|0; - $63 = (_bitshift64Ashr(0,($59|0),32)|0); - $64 = tempRet0; - $65 = (___muldi3(($63|0),($64|0),($54|0),($55|0))|0); + $48 = (___muldi3(($46|0),($47|0),($46|0),($47|0))|0); + $49 = tempRet0; + $50 = $1; + $51 = $50; + $52 = HEAP32[$51>>2]|0; + $53 = (($50) + 4)|0; + $54 = $53; + $55 = HEAP32[$54>>2]|0; + $56 = (_bitshift64Ashr(0,($52|0),32)|0); + $57 = tempRet0; + $58 = ((($1)) + 16|0); + $59 = $58; + $60 = $59; + $61 = HEAP32[$60>>2]|0; + $62 = (($59) + 4)|0; + $63 = $62; + $64 = HEAP32[$63>>2]|0; + $65 = (_bitshift64Ashr(0,($61|0),32)|0); $66 = tempRet0; - $67 = (_i64Add(($65|0),($66|0),($46|0),($47|0))|0); + $67 = (___muldi3(($65|0),($66|0),($56|0),($57|0))|0); $68 = tempRet0; - $69 = (_bitshift64Shl(($67|0),($68|0),1)|0); + $69 = (_i64Add(($67|0),($68|0),($48|0),($49|0))|0); $70 = tempRet0; - $71 = ((($output)) + 16|0); - $72 = $71; - $73 = $72; - HEAP32[$73>>2] = $69; - $74 = (($72) + 4)|0; + $71 = (_bitshift64Shl(($69|0),($70|0),1)|0); + $72 = tempRet0; + $73 = ((($0)) + 16|0); + $74 = $73; $75 = $74; - HEAP32[$75>>2] = $70; - $76 = $22; + HEAP32[$75>>2] = $71; + $76 = (($74) + 4)|0; $77 = $76; - $78 = HEAP32[$77>>2]|0; - $79 = (($76) + 4)|0; - $80 = $79; - $81 = HEAP32[$80>>2]|0; - $82 = (_bitshift64Ashr(0,($78|0),32)|0); - $83 = tempRet0; - $84 = $56; - $85 = $84; - $86 = HEAP32[$85>>2]|0; - $87 = (($84) + 4)|0; - $88 = $87; - $89 = HEAP32[$88>>2]|0; - $90 = (_bitshift64Ashr(0,($86|0),32)|0); - $91 = tempRet0; - $92 = (___muldi3(($90|0),($91|0),($82|0),($83|0))|0); - $93 = tempRet0; - $94 = $in; - $95 = $94; - $96 = HEAP32[$95>>2]|0; - $97 = (($94) + 4)|0; - $98 = $97; - $99 = HEAP32[$98>>2]|0; - $100 = (_bitshift64Ashr(0,($96|0),32)|0); - $101 = tempRet0; - $102 = ((($in)) + 24|0); - $103 = $102; - $104 = $103; - $105 = HEAP32[$104>>2]|0; - $106 = (($103) + 4)|0; - $107 = $106; - $108 = HEAP32[$107>>2]|0; - $109 = (_bitshift64Ashr(0,($105|0),32)|0); - $110 = tempRet0; - $111 = (___muldi3(($109|0),($110|0),($100|0),($101|0))|0); + HEAP32[$77>>2] = $72; + $78 = $24; + $79 = $78; + $80 = HEAP32[$79>>2]|0; + $81 = (($78) + 4)|0; + $82 = $81; + $83 = HEAP32[$82>>2]|0; + $84 = (_bitshift64Ashr(0,($80|0),32)|0); + $85 = tempRet0; + $86 = $58; + $87 = $86; + $88 = HEAP32[$87>>2]|0; + $89 = (($86) + 4)|0; + $90 = $89; + $91 = HEAP32[$90>>2]|0; + $92 = (_bitshift64Ashr(0,($88|0),32)|0); + $93 = tempRet0; + $94 = (___muldi3(($92|0),($93|0),($84|0),($85|0))|0); + $95 = tempRet0; + $96 = $1; + $97 = $96; + $98 = HEAP32[$97>>2]|0; + $99 = (($96) + 4)|0; + $100 = $99; + $101 = HEAP32[$100>>2]|0; + $102 = (_bitshift64Ashr(0,($98|0),32)|0); + $103 = tempRet0; + $104 = ((($1)) + 24|0); + $105 = $104; + $106 = $105; + $107 = HEAP32[$106>>2]|0; + $108 = (($105) + 4)|0; + $109 = $108; + $110 = HEAP32[$109>>2]|0; + $111 = (_bitshift64Ashr(0,($107|0),32)|0); $112 = tempRet0; - $113 = (_i64Add(($111|0),($112|0),($92|0),($93|0))|0); + $113 = (___muldi3(($111|0),($112|0),($102|0),($103|0))|0); $114 = tempRet0; - $115 = (_bitshift64Shl(($113|0),($114|0),1)|0); + $115 = (_i64Add(($113|0),($114|0),($94|0),($95|0))|0); $116 = tempRet0; - $117 = ((($output)) + 24|0); - $118 = $117; - $119 = $118; - HEAP32[$119>>2] = $115; - $120 = (($118) + 4)|0; + $117 = (_bitshift64Shl(($115|0),($116|0),1)|0); + $118 = tempRet0; + $119 = ((($0)) + 24|0); + $120 = $119; $121 = $120; - HEAP32[$121>>2] = $116; - $122 = $56; + HEAP32[$121>>2] = $117; + $122 = (($120) + 4)|0; $123 = $122; - $124 = HEAP32[$123>>2]|0; - $125 = (($122) + 4)|0; - $126 = $125; - $127 = HEAP32[$126>>2]|0; - $128 = (_bitshift64Ashr(0,($124|0),32)|0); - $129 = tempRet0; - $130 = (___muldi3(($128|0),($129|0),($128|0),($129|0))|0); + HEAP32[$123>>2] = $118; + $124 = $58; + $125 = $124; + $126 = HEAP32[$125>>2]|0; + $127 = (($124) + 4)|0; + $128 = $127; + $129 = HEAP32[$128>>2]|0; + $130 = (_bitshift64Ashr(0,($126|0),32)|0); $131 = tempRet0; - $132 = $22; - $133 = $132; - $134 = HEAP32[$133>>2]|0; - $135 = (($132) + 4)|0; - $136 = $135; - $137 = HEAP32[$136>>2]|0; - $138 = (_bitshift64Ashr(0,($134|0),30)|0); - $139 = tempRet0; - $140 = $102; - $141 = $140; - $142 = HEAP32[$141>>2]|0; - $143 = (($140) + 4)|0; - $144 = $143; - $145 = HEAP32[$144>>2]|0; - $146 = (_bitshift64Ashr(0,($142|0),32)|0); - $147 = tempRet0; - $148 = (___muldi3(($146|0),($147|0),($138|0),($139|0))|0); + $132 = (___muldi3(($130|0),($131|0),($130|0),($131|0))|0); + $133 = tempRet0; + $134 = $24; + $135 = $134; + $136 = HEAP32[$135>>2]|0; + $137 = (($134) + 4)|0; + $138 = $137; + $139 = HEAP32[$138>>2]|0; + $140 = (_bitshift64Ashr(0,($136|0),30)|0); + $141 = tempRet0; + $142 = $104; + $143 = $142; + $144 = HEAP32[$143>>2]|0; + $145 = (($142) + 4)|0; + $146 = $145; + $147 = HEAP32[$146>>2]|0; + $148 = (_bitshift64Ashr(0,($144|0),32)|0); $149 = tempRet0; - $150 = (_i64Add(($148|0),($149|0),($130|0),($131|0))|0); + $150 = (___muldi3(($148|0),($149|0),($140|0),($141|0))|0); $151 = tempRet0; - $152 = $in; - $153 = $152; - $154 = HEAP32[$153>>2]|0; - $155 = (($152) + 4)|0; - $156 = $155; - $157 = HEAP32[$156>>2]|0; - $158 = (_bitshift64Ashr(0,($154|0),31)|0); - $159 = tempRet0; - $160 = ((($in)) + 32|0); - $161 = $160; - $162 = $161; - $163 = HEAP32[$162>>2]|0; - $164 = (($161) + 4)|0; - $165 = $164; - $166 = HEAP32[$165>>2]|0; - $167 = (_bitshift64Ashr(0,($163|0),32)|0); - $168 = tempRet0; - $169 = (___muldi3(($167|0),($168|0),($158|0),($159|0))|0); + $152 = (_i64Add(($150|0),($151|0),($132|0),($133|0))|0); + $153 = tempRet0; + $154 = $1; + $155 = $154; + $156 = HEAP32[$155>>2]|0; + $157 = (($154) + 4)|0; + $158 = $157; + $159 = HEAP32[$158>>2]|0; + $160 = (_bitshift64Ashr(0,($156|0),31)|0); + $161 = tempRet0; + $162 = ((($1)) + 32|0); + $163 = $162; + $164 = $163; + $165 = HEAP32[$164>>2]|0; + $166 = (($163) + 4)|0; + $167 = $166; + $168 = HEAP32[$167>>2]|0; + $169 = (_bitshift64Ashr(0,($165|0),32)|0); $170 = tempRet0; - $171 = (_i64Add(($150|0),($151|0),($169|0),($170|0))|0); + $171 = (___muldi3(($169|0),($170|0),($160|0),($161|0))|0); $172 = tempRet0; - $173 = ((($output)) + 32|0); - $174 = $173; - $175 = $174; - HEAP32[$175>>2] = $171; - $176 = (($174) + 4)|0; + $173 = (_i64Add(($152|0),($153|0),($171|0),($172|0))|0); + $174 = tempRet0; + $175 = ((($0)) + 32|0); + $176 = $175; $177 = $176; - HEAP32[$177>>2] = $172; - $178 = $56; + HEAP32[$177>>2] = $173; + $178 = (($176) + 4)|0; $179 = $178; - $180 = HEAP32[$179>>2]|0; - $181 = (($178) + 4)|0; - $182 = $181; - $183 = HEAP32[$182>>2]|0; - $184 = (_bitshift64Ashr(0,($180|0),32)|0); - $185 = tempRet0; - $186 = $102; - $187 = $186; - $188 = HEAP32[$187>>2]|0; - $189 = (($186) + 4)|0; - $190 = $189; - $191 = HEAP32[$190>>2]|0; - $192 = (_bitshift64Ashr(0,($188|0),32)|0); - $193 = tempRet0; - $194 = (___muldi3(($192|0),($193|0),($184|0),($185|0))|0); + HEAP32[$179>>2] = $174; + $180 = $58; + $181 = $180; + $182 = HEAP32[$181>>2]|0; + $183 = (($180) + 4)|0; + $184 = $183; + $185 = HEAP32[$184>>2]|0; + $186 = (_bitshift64Ashr(0,($182|0),32)|0); + $187 = tempRet0; + $188 = $104; + $189 = $188; + $190 = HEAP32[$189>>2]|0; + $191 = (($188) + 4)|0; + $192 = $191; + $193 = HEAP32[$192>>2]|0; + $194 = (_bitshift64Ashr(0,($190|0),32)|0); $195 = tempRet0; - $196 = $22; - $197 = $196; - $198 = HEAP32[$197>>2]|0; - $199 = (($196) + 4)|0; - $200 = $199; - $201 = HEAP32[$200>>2]|0; - $202 = (_bitshift64Ashr(0,($198|0),32)|0); - $203 = tempRet0; - $204 = $160; - $205 = $204; - $206 = HEAP32[$205>>2]|0; - $207 = (($204) + 4)|0; - $208 = $207; - $209 = HEAP32[$208>>2]|0; - $210 = (_bitshift64Ashr(0,($206|0),32)|0); - $211 = tempRet0; - $212 = (___muldi3(($210|0),($211|0),($202|0),($203|0))|0); + $196 = (___muldi3(($194|0),($195|0),($186|0),($187|0))|0); + $197 = tempRet0; + $198 = $24; + $199 = $198; + $200 = HEAP32[$199>>2]|0; + $201 = (($198) + 4)|0; + $202 = $201; + $203 = HEAP32[$202>>2]|0; + $204 = (_bitshift64Ashr(0,($200|0),32)|0); + $205 = tempRet0; + $206 = $162; + $207 = $206; + $208 = HEAP32[$207>>2]|0; + $209 = (($206) + 4)|0; + $210 = $209; + $211 = HEAP32[$210>>2]|0; + $212 = (_bitshift64Ashr(0,($208|0),32)|0); $213 = tempRet0; - $214 = (_i64Add(($212|0),($213|0),($194|0),($195|0))|0); + $214 = (___muldi3(($212|0),($213|0),($204|0),($205|0))|0); $215 = tempRet0; - $216 = $in; - $217 = $216; - $218 = HEAP32[$217>>2]|0; - $219 = (($216) + 4)|0; - $220 = $219; - $221 = HEAP32[$220>>2]|0; - $222 = (_bitshift64Ashr(0,($218|0),32)|0); - $223 = tempRet0; - $224 = ((($in)) + 40|0); - $225 = $224; - $226 = $225; - $227 = HEAP32[$226>>2]|0; - $228 = (($225) + 4)|0; - $229 = $228; - $230 = HEAP32[$229>>2]|0; - $231 = (_bitshift64Ashr(0,($227|0),32)|0); - $232 = tempRet0; - $233 = (___muldi3(($231|0),($232|0),($222|0),($223|0))|0); + $216 = (_i64Add(($214|0),($215|0),($196|0),($197|0))|0); + $217 = tempRet0; + $218 = $1; + $219 = $218; + $220 = HEAP32[$219>>2]|0; + $221 = (($218) + 4)|0; + $222 = $221; + $223 = HEAP32[$222>>2]|0; + $224 = (_bitshift64Ashr(0,($220|0),32)|0); + $225 = tempRet0; + $226 = ((($1)) + 40|0); + $227 = $226; + $228 = $227; + $229 = HEAP32[$228>>2]|0; + $230 = (($227) + 4)|0; + $231 = $230; + $232 = HEAP32[$231>>2]|0; + $233 = (_bitshift64Ashr(0,($229|0),32)|0); $234 = tempRet0; - $235 = (_i64Add(($214|0),($215|0),($233|0),($234|0))|0); + $235 = (___muldi3(($233|0),($234|0),($224|0),($225|0))|0); $236 = tempRet0; - $237 = (_bitshift64Shl(($235|0),($236|0),1)|0); + $237 = (_i64Add(($216|0),($217|0),($235|0),($236|0))|0); $238 = tempRet0; - $239 = ((($output)) + 40|0); - $240 = $239; - $241 = $240; - HEAP32[$241>>2] = $237; - $242 = (($240) + 4)|0; + $239 = (_bitshift64Shl(($237|0),($238|0),1)|0); + $240 = tempRet0; + $241 = ((($0)) + 40|0); + $242 = $241; $243 = $242; - HEAP32[$243>>2] = $238; - $244 = $102; + HEAP32[$243>>2] = $239; + $244 = (($242) + 4)|0; $245 = $244; - $246 = HEAP32[$245>>2]|0; - $247 = (($244) + 4)|0; - $248 = $247; - $249 = HEAP32[$248>>2]|0; - $250 = (_bitshift64Ashr(0,($246|0),32)|0); - $251 = tempRet0; - $252 = (___muldi3(($250|0),($251|0),($250|0),($251|0))|0); + HEAP32[$245>>2] = $240; + $246 = $104; + $247 = $246; + $248 = HEAP32[$247>>2]|0; + $249 = (($246) + 4)|0; + $250 = $249; + $251 = HEAP32[$250>>2]|0; + $252 = (_bitshift64Ashr(0,($248|0),32)|0); $253 = tempRet0; - $254 = $56; - $255 = $254; - $256 = HEAP32[$255>>2]|0; - $257 = (($254) + 4)|0; - $258 = $257; - $259 = HEAP32[$258>>2]|0; - $260 = (_bitshift64Ashr(0,($256|0),32)|0); - $261 = tempRet0; - $262 = $160; - $263 = $262; - $264 = HEAP32[$263>>2]|0; - $265 = (($262) + 4)|0; - $266 = $265; - $267 = HEAP32[$266>>2]|0; - $268 = (_bitshift64Ashr(0,($264|0),32)|0); - $269 = tempRet0; - $270 = (___muldi3(($268|0),($269|0),($260|0),($261|0))|0); + $254 = (___muldi3(($252|0),($253|0),($252|0),($253|0))|0); + $255 = tempRet0; + $256 = $58; + $257 = $256; + $258 = HEAP32[$257>>2]|0; + $259 = (($256) + 4)|0; + $260 = $259; + $261 = HEAP32[$260>>2]|0; + $262 = (_bitshift64Ashr(0,($258|0),32)|0); + $263 = tempRet0; + $264 = $162; + $265 = $264; + $266 = HEAP32[$265>>2]|0; + $267 = (($264) + 4)|0; + $268 = $267; + $269 = HEAP32[$268>>2]|0; + $270 = (_bitshift64Ashr(0,($266|0),32)|0); $271 = tempRet0; - $272 = (_i64Add(($270|0),($271|0),($252|0),($253|0))|0); + $272 = (___muldi3(($270|0),($271|0),($262|0),($263|0))|0); $273 = tempRet0; - $274 = $in; - $275 = $274; - $276 = HEAP32[$275>>2]|0; - $277 = (($274) + 4)|0; - $278 = $277; - $279 = HEAP32[$278>>2]|0; - $280 = (_bitshift64Ashr(0,($276|0),32)|0); - $281 = tempRet0; - $282 = ((($in)) + 48|0); - $283 = $282; - $284 = $283; - $285 = HEAP32[$284>>2]|0; - $286 = (($283) + 4)|0; - $287 = $286; - $288 = HEAP32[$287>>2]|0; - $289 = (_bitshift64Ashr(0,($285|0),32)|0); - $290 = tempRet0; - $291 = (___muldi3(($289|0),($290|0),($280|0),($281|0))|0); + $274 = (_i64Add(($272|0),($273|0),($254|0),($255|0))|0); + $275 = tempRet0; + $276 = $1; + $277 = $276; + $278 = HEAP32[$277>>2]|0; + $279 = (($276) + 4)|0; + $280 = $279; + $281 = HEAP32[$280>>2]|0; + $282 = (_bitshift64Ashr(0,($278|0),32)|0); + $283 = tempRet0; + $284 = ((($1)) + 48|0); + $285 = $284; + $286 = $285; + $287 = HEAP32[$286>>2]|0; + $288 = (($285) + 4)|0; + $289 = $288; + $290 = HEAP32[$289>>2]|0; + $291 = (_bitshift64Ashr(0,($287|0),32)|0); $292 = tempRet0; - $293 = (_i64Add(($272|0),($273|0),($291|0),($292|0))|0); + $293 = (___muldi3(($291|0),($292|0),($282|0),($283|0))|0); $294 = tempRet0; - $295 = $22; - $296 = $295; - $297 = HEAP32[$296>>2]|0; - $298 = (($295) + 4)|0; - $299 = $298; - $300 = HEAP32[$299>>2]|0; - $301 = (_bitshift64Ashr(0,($297|0),31)|0); - $302 = tempRet0; - $303 = $224; - $304 = $303; - $305 = HEAP32[$304>>2]|0; - $306 = (($303) + 4)|0; - $307 = $306; - $308 = HEAP32[$307>>2]|0; - $309 = (_bitshift64Ashr(0,($305|0),32)|0); - $310 = tempRet0; - $311 = (___muldi3(($309|0),($310|0),($301|0),($302|0))|0); + $295 = (_i64Add(($274|0),($275|0),($293|0),($294|0))|0); + $296 = tempRet0; + $297 = $24; + $298 = $297; + $299 = HEAP32[$298>>2]|0; + $300 = (($297) + 4)|0; + $301 = $300; + $302 = HEAP32[$301>>2]|0; + $303 = (_bitshift64Ashr(0,($299|0),31)|0); + $304 = tempRet0; + $305 = $226; + $306 = $305; + $307 = HEAP32[$306>>2]|0; + $308 = (($305) + 4)|0; + $309 = $308; + $310 = HEAP32[$309>>2]|0; + $311 = (_bitshift64Ashr(0,($307|0),32)|0); $312 = tempRet0; - $313 = (_i64Add(($293|0),($294|0),($311|0),($312|0))|0); + $313 = (___muldi3(($311|0),($312|0),($303|0),($304|0))|0); $314 = tempRet0; - $315 = (_bitshift64Shl(($313|0),($314|0),1)|0); + $315 = (_i64Add(($295|0),($296|0),($313|0),($314|0))|0); $316 = tempRet0; - $317 = ((($output)) + 48|0); - $318 = $317; - $319 = $318; - HEAP32[$319>>2] = $315; - $320 = (($318) + 4)|0; + $317 = (_bitshift64Shl(($315|0),($316|0),1)|0); + $318 = tempRet0; + $319 = ((($0)) + 48|0); + $320 = $319; $321 = $320; - HEAP32[$321>>2] = $316; - $322 = $102; + HEAP32[$321>>2] = $317; + $322 = (($320) + 4)|0; $323 = $322; - $324 = HEAP32[$323>>2]|0; - $325 = (($322) + 4)|0; - $326 = $325; - $327 = HEAP32[$326>>2]|0; - $328 = (_bitshift64Ashr(0,($324|0),32)|0); - $329 = tempRet0; - $330 = $160; - $331 = $330; - $332 = HEAP32[$331>>2]|0; - $333 = (($330) + 4)|0; - $334 = $333; - $335 = HEAP32[$334>>2]|0; - $336 = (_bitshift64Ashr(0,($332|0),32)|0); - $337 = tempRet0; - $338 = (___muldi3(($336|0),($337|0),($328|0),($329|0))|0); + HEAP32[$323>>2] = $318; + $324 = $104; + $325 = $324; + $326 = HEAP32[$325>>2]|0; + $327 = (($324) + 4)|0; + $328 = $327; + $329 = HEAP32[$328>>2]|0; + $330 = (_bitshift64Ashr(0,($326|0),32)|0); + $331 = tempRet0; + $332 = $162; + $333 = $332; + $334 = HEAP32[$333>>2]|0; + $335 = (($332) + 4)|0; + $336 = $335; + $337 = HEAP32[$336>>2]|0; + $338 = (_bitshift64Ashr(0,($334|0),32)|0); $339 = tempRet0; - $340 = $56; - $341 = $340; - $342 = HEAP32[$341>>2]|0; - $343 = (($340) + 4)|0; - $344 = $343; - $345 = HEAP32[$344>>2]|0; - $346 = (_bitshift64Ashr(0,($342|0),32)|0); - $347 = tempRet0; - $348 = $224; - $349 = $348; - $350 = HEAP32[$349>>2]|0; - $351 = (($348) + 4)|0; - $352 = $351; - $353 = HEAP32[$352>>2]|0; - $354 = (_bitshift64Ashr(0,($350|0),32)|0); - $355 = tempRet0; - $356 = (___muldi3(($354|0),($355|0),($346|0),($347|0))|0); + $340 = (___muldi3(($338|0),($339|0),($330|0),($331|0))|0); + $341 = tempRet0; + $342 = $58; + $343 = $342; + $344 = HEAP32[$343>>2]|0; + $345 = (($342) + 4)|0; + $346 = $345; + $347 = HEAP32[$346>>2]|0; + $348 = (_bitshift64Ashr(0,($344|0),32)|0); + $349 = tempRet0; + $350 = $226; + $351 = $350; + $352 = HEAP32[$351>>2]|0; + $353 = (($350) + 4)|0; + $354 = $353; + $355 = HEAP32[$354>>2]|0; + $356 = (_bitshift64Ashr(0,($352|0),32)|0); $357 = tempRet0; - $358 = (_i64Add(($356|0),($357|0),($338|0),($339|0))|0); + $358 = (___muldi3(($356|0),($357|0),($348|0),($349|0))|0); $359 = tempRet0; - $360 = $22; - $361 = $360; - $362 = HEAP32[$361>>2]|0; - $363 = (($360) + 4)|0; - $364 = $363; - $365 = HEAP32[$364>>2]|0; - $366 = (_bitshift64Ashr(0,($362|0),32)|0); - $367 = tempRet0; - $368 = $282; - $369 = $368; - $370 = HEAP32[$369>>2]|0; - $371 = (($368) + 4)|0; - $372 = $371; - $373 = HEAP32[$372>>2]|0; - $374 = (_bitshift64Ashr(0,($370|0),32)|0); - $375 = tempRet0; - $376 = (___muldi3(($374|0),($375|0),($366|0),($367|0))|0); + $360 = (_i64Add(($358|0),($359|0),($340|0),($341|0))|0); + $361 = tempRet0; + $362 = $24; + $363 = $362; + $364 = HEAP32[$363>>2]|0; + $365 = (($362) + 4)|0; + $366 = $365; + $367 = HEAP32[$366>>2]|0; + $368 = (_bitshift64Ashr(0,($364|0),32)|0); + $369 = tempRet0; + $370 = $284; + $371 = $370; + $372 = HEAP32[$371>>2]|0; + $373 = (($370) + 4)|0; + $374 = $373; + $375 = HEAP32[$374>>2]|0; + $376 = (_bitshift64Ashr(0,($372|0),32)|0); $377 = tempRet0; - $378 = (_i64Add(($358|0),($359|0),($376|0),($377|0))|0); + $378 = (___muldi3(($376|0),($377|0),($368|0),($369|0))|0); $379 = tempRet0; - $380 = $in; - $381 = $380; - $382 = HEAP32[$381>>2]|0; - $383 = (($380) + 4)|0; - $384 = $383; - $385 = HEAP32[$384>>2]|0; - $386 = (_bitshift64Ashr(0,($382|0),32)|0); - $387 = tempRet0; - $388 = ((($in)) + 56|0); - $389 = $388; - $390 = $389; - $391 = HEAP32[$390>>2]|0; - $392 = (($389) + 4)|0; - $393 = $392; - $394 = HEAP32[$393>>2]|0; - $395 = (_bitshift64Ashr(0,($391|0),32)|0); - $396 = tempRet0; - $397 = (___muldi3(($395|0),($396|0),($386|0),($387|0))|0); + $380 = (_i64Add(($360|0),($361|0),($378|0),($379|0))|0); + $381 = tempRet0; + $382 = $1; + $383 = $382; + $384 = HEAP32[$383>>2]|0; + $385 = (($382) + 4)|0; + $386 = $385; + $387 = HEAP32[$386>>2]|0; + $388 = (_bitshift64Ashr(0,($384|0),32)|0); + $389 = tempRet0; + $390 = ((($1)) + 56|0); + $391 = $390; + $392 = $391; + $393 = HEAP32[$392>>2]|0; + $394 = (($391) + 4)|0; + $395 = $394; + $396 = HEAP32[$395>>2]|0; + $397 = (_bitshift64Ashr(0,($393|0),32)|0); $398 = tempRet0; - $399 = (_i64Add(($378|0),($379|0),($397|0),($398|0))|0); + $399 = (___muldi3(($397|0),($398|0),($388|0),($389|0))|0); $400 = tempRet0; - $401 = (_bitshift64Shl(($399|0),($400|0),1)|0); + $401 = (_i64Add(($380|0),($381|0),($399|0),($400|0))|0); $402 = tempRet0; - $403 = ((($output)) + 56|0); - $404 = $403; - $405 = $404; - HEAP32[$405>>2] = $401; - $406 = (($404) + 4)|0; + $403 = (_bitshift64Shl(($401|0),($402|0),1)|0); + $404 = tempRet0; + $405 = ((($0)) + 56|0); + $406 = $405; $407 = $406; - HEAP32[$407>>2] = $402; - $408 = $160; + HEAP32[$407>>2] = $403; + $408 = (($406) + 4)|0; $409 = $408; - $410 = HEAP32[$409>>2]|0; - $411 = (($408) + 4)|0; - $412 = $411; - $413 = HEAP32[$412>>2]|0; - $414 = (_bitshift64Ashr(0,($410|0),32)|0); - $415 = tempRet0; - $416 = (___muldi3(($414|0),($415|0),($414|0),($415|0))|0); + HEAP32[$409>>2] = $404; + $410 = $162; + $411 = $410; + $412 = HEAP32[$411>>2]|0; + $413 = (($410) + 4)|0; + $414 = $413; + $415 = HEAP32[$414>>2]|0; + $416 = (_bitshift64Ashr(0,($412|0),32)|0); $417 = tempRet0; - $418 = $56; - $419 = $418; - $420 = HEAP32[$419>>2]|0; - $421 = (($418) + 4)|0; - $422 = $421; - $423 = HEAP32[$422>>2]|0; - $424 = (_bitshift64Ashr(0,($420|0),32)|0); - $425 = tempRet0; - $426 = $282; - $427 = $426; - $428 = HEAP32[$427>>2]|0; - $429 = (($426) + 4)|0; - $430 = $429; - $431 = HEAP32[$430>>2]|0; - $432 = (_bitshift64Ashr(0,($428|0),32)|0); - $433 = tempRet0; - $434 = (___muldi3(($432|0),($433|0),($424|0),($425|0))|0); + $418 = (___muldi3(($416|0),($417|0),($416|0),($417|0))|0); + $419 = tempRet0; + $420 = $58; + $421 = $420; + $422 = HEAP32[$421>>2]|0; + $423 = (($420) + 4)|0; + $424 = $423; + $425 = HEAP32[$424>>2]|0; + $426 = (_bitshift64Ashr(0,($422|0),32)|0); + $427 = tempRet0; + $428 = $284; + $429 = $428; + $430 = HEAP32[$429>>2]|0; + $431 = (($428) + 4)|0; + $432 = $431; + $433 = HEAP32[$432>>2]|0; + $434 = (_bitshift64Ashr(0,($430|0),32)|0); $435 = tempRet0; - $436 = $in; - $437 = $436; - $438 = HEAP32[$437>>2]|0; - $439 = (($436) + 4)|0; - $440 = $439; - $441 = HEAP32[$440>>2]|0; - $442 = (_bitshift64Ashr(0,($438|0),32)|0); - $443 = tempRet0; - $444 = ((($in)) + 64|0); - $445 = $444; - $446 = $445; - $447 = HEAP32[$446>>2]|0; - $448 = (($445) + 4)|0; - $449 = $448; - $450 = HEAP32[$449>>2]|0; - $451 = (_bitshift64Ashr(0,($447|0),32)|0); - $452 = tempRet0; - $453 = (___muldi3(($451|0),($452|0),($442|0),($443|0))|0); + $436 = (___muldi3(($434|0),($435|0),($426|0),($427|0))|0); + $437 = tempRet0; + $438 = $1; + $439 = $438; + $440 = HEAP32[$439>>2]|0; + $441 = (($438) + 4)|0; + $442 = $441; + $443 = HEAP32[$442>>2]|0; + $444 = (_bitshift64Ashr(0,($440|0),32)|0); + $445 = tempRet0; + $446 = ((($1)) + 64|0); + $447 = $446; + $448 = $447; + $449 = HEAP32[$448>>2]|0; + $450 = (($447) + 4)|0; + $451 = $450; + $452 = HEAP32[$451>>2]|0; + $453 = (_bitshift64Ashr(0,($449|0),32)|0); $454 = tempRet0; - $455 = (_i64Add(($453|0),($454|0),($434|0),($435|0))|0); + $455 = (___muldi3(($453|0),($454|0),($444|0),($445|0))|0); $456 = tempRet0; - $457 = $22; - $458 = $457; - $459 = HEAP32[$458>>2]|0; - $460 = (($457) + 4)|0; - $461 = $460; - $462 = HEAP32[$461>>2]|0; - $463 = (_bitshift64Ashr(0,($459|0),32)|0); - $464 = tempRet0; - $465 = $388; - $466 = $465; - $467 = HEAP32[$466>>2]|0; - $468 = (($465) + 4)|0; - $469 = $468; - $470 = HEAP32[$469>>2]|0; - $471 = (_bitshift64Ashr(0,($467|0),32)|0); - $472 = tempRet0; - $473 = (___muldi3(($471|0),($472|0),($463|0),($464|0))|0); + $457 = (_i64Add(($455|0),($456|0),($436|0),($437|0))|0); + $458 = tempRet0; + $459 = $24; + $460 = $459; + $461 = HEAP32[$460>>2]|0; + $462 = (($459) + 4)|0; + $463 = $462; + $464 = HEAP32[$463>>2]|0; + $465 = (_bitshift64Ashr(0,($461|0),32)|0); + $466 = tempRet0; + $467 = $390; + $468 = $467; + $469 = HEAP32[$468>>2]|0; + $470 = (($467) + 4)|0; + $471 = $470; + $472 = HEAP32[$471>>2]|0; + $473 = (_bitshift64Ashr(0,($469|0),32)|0); $474 = tempRet0; - $475 = $102; - $476 = $475; - $477 = HEAP32[$476>>2]|0; - $478 = (($475) + 4)|0; - $479 = $478; - $480 = HEAP32[$479>>2]|0; - $481 = (_bitshift64Ashr(0,($477|0),32)|0); - $482 = tempRet0; - $483 = $224; - $484 = $483; - $485 = HEAP32[$484>>2]|0; - $486 = (($483) + 4)|0; - $487 = $486; - $488 = HEAP32[$487>>2]|0; - $489 = (_bitshift64Ashr(0,($485|0),32)|0); - $490 = tempRet0; - $491 = (___muldi3(($489|0),($490|0),($481|0),($482|0))|0); + $475 = (___muldi3(($473|0),($474|0),($465|0),($466|0))|0); + $476 = tempRet0; + $477 = $104; + $478 = $477; + $479 = HEAP32[$478>>2]|0; + $480 = (($477) + 4)|0; + $481 = $480; + $482 = HEAP32[$481>>2]|0; + $483 = (_bitshift64Ashr(0,($479|0),32)|0); + $484 = tempRet0; + $485 = $226; + $486 = $485; + $487 = HEAP32[$486>>2]|0; + $488 = (($485) + 4)|0; + $489 = $488; + $490 = HEAP32[$489>>2]|0; + $491 = (_bitshift64Ashr(0,($487|0),32)|0); $492 = tempRet0; - $493 = (_i64Add(($491|0),($492|0),($473|0),($474|0))|0); + $493 = (___muldi3(($491|0),($492|0),($483|0),($484|0))|0); $494 = tempRet0; - $495 = (_bitshift64Shl(($493|0),($494|0),1)|0); + $495 = (_i64Add(($493|0),($494|0),($475|0),($476|0))|0); $496 = tempRet0; - $497 = (_i64Add(($455|0),($456|0),($495|0),($496|0))|0); + $497 = (_bitshift64Shl(($495|0),($496|0),1)|0); $498 = tempRet0; - $499 = (_bitshift64Shl(($497|0),($498|0),1)|0); + $499 = (_i64Add(($457|0),($458|0),($497|0),($498|0))|0); $500 = tempRet0; - $501 = (_i64Add(($499|0),($500|0),($416|0),($417|0))|0); + $501 = (_bitshift64Shl(($499|0),($500|0),1)|0); $502 = tempRet0; - $503 = ((($output)) + 64|0); - $504 = $503; - $505 = $504; - HEAP32[$505>>2] = $501; - $506 = (($504) + 4)|0; + $503 = (_i64Add(($501|0),($502|0),($418|0),($419|0))|0); + $504 = tempRet0; + $505 = ((($0)) + 64|0); + $506 = $505; $507 = $506; - HEAP32[$507>>2] = $502; - $508 = $160; + HEAP32[$507>>2] = $503; + $508 = (($506) + 4)|0; $509 = $508; - $510 = HEAP32[$509>>2]|0; - $511 = (($508) + 4)|0; - $512 = $511; - $513 = HEAP32[$512>>2]|0; - $514 = (_bitshift64Ashr(0,($510|0),32)|0); - $515 = tempRet0; - $516 = $224; - $517 = $516; - $518 = HEAP32[$517>>2]|0; - $519 = (($516) + 4)|0; - $520 = $519; - $521 = HEAP32[$520>>2]|0; - $522 = (_bitshift64Ashr(0,($518|0),32)|0); - $523 = tempRet0; - $524 = (___muldi3(($522|0),($523|0),($514|0),($515|0))|0); + HEAP32[$509>>2] = $504; + $510 = $162; + $511 = $510; + $512 = HEAP32[$511>>2]|0; + $513 = (($510) + 4)|0; + $514 = $513; + $515 = HEAP32[$514>>2]|0; + $516 = (_bitshift64Ashr(0,($512|0),32)|0); + $517 = tempRet0; + $518 = $226; + $519 = $518; + $520 = HEAP32[$519>>2]|0; + $521 = (($518) + 4)|0; + $522 = $521; + $523 = HEAP32[$522>>2]|0; + $524 = (_bitshift64Ashr(0,($520|0),32)|0); $525 = tempRet0; - $526 = $102; - $527 = $526; - $528 = HEAP32[$527>>2]|0; - $529 = (($526) + 4)|0; - $530 = $529; - $531 = HEAP32[$530>>2]|0; - $532 = (_bitshift64Ashr(0,($528|0),32)|0); - $533 = tempRet0; - $534 = $282; - $535 = $534; - $536 = HEAP32[$535>>2]|0; - $537 = (($534) + 4)|0; - $538 = $537; - $539 = HEAP32[$538>>2]|0; - $540 = (_bitshift64Ashr(0,($536|0),32)|0); - $541 = tempRet0; - $542 = (___muldi3(($540|0),($541|0),($532|0),($533|0))|0); + $526 = (___muldi3(($524|0),($525|0),($516|0),($517|0))|0); + $527 = tempRet0; + $528 = $104; + $529 = $528; + $530 = HEAP32[$529>>2]|0; + $531 = (($528) + 4)|0; + $532 = $531; + $533 = HEAP32[$532>>2]|0; + $534 = (_bitshift64Ashr(0,($530|0),32)|0); + $535 = tempRet0; + $536 = $284; + $537 = $536; + $538 = HEAP32[$537>>2]|0; + $539 = (($536) + 4)|0; + $540 = $539; + $541 = HEAP32[$540>>2]|0; + $542 = (_bitshift64Ashr(0,($538|0),32)|0); $543 = tempRet0; - $544 = (_i64Add(($542|0),($543|0),($524|0),($525|0))|0); + $544 = (___muldi3(($542|0),($543|0),($534|0),($535|0))|0); $545 = tempRet0; - $546 = $56; - $547 = $546; - $548 = HEAP32[$547>>2]|0; - $549 = (($546) + 4)|0; - $550 = $549; - $551 = HEAP32[$550>>2]|0; - $552 = (_bitshift64Ashr(0,($548|0),32)|0); - $553 = tempRet0; - $554 = $388; - $555 = $554; - $556 = HEAP32[$555>>2]|0; - $557 = (($554) + 4)|0; - $558 = $557; - $559 = HEAP32[$558>>2]|0; - $560 = (_bitshift64Ashr(0,($556|0),32)|0); - $561 = tempRet0; - $562 = (___muldi3(($560|0),($561|0),($552|0),($553|0))|0); + $546 = (_i64Add(($544|0),($545|0),($526|0),($527|0))|0); + $547 = tempRet0; + $548 = $58; + $549 = $548; + $550 = HEAP32[$549>>2]|0; + $551 = (($548) + 4)|0; + $552 = $551; + $553 = HEAP32[$552>>2]|0; + $554 = (_bitshift64Ashr(0,($550|0),32)|0); + $555 = tempRet0; + $556 = $390; + $557 = $556; + $558 = HEAP32[$557>>2]|0; + $559 = (($556) + 4)|0; + $560 = $559; + $561 = HEAP32[$560>>2]|0; + $562 = (_bitshift64Ashr(0,($558|0),32)|0); $563 = tempRet0; - $564 = (_i64Add(($544|0),($545|0),($562|0),($563|0))|0); + $564 = (___muldi3(($562|0),($563|0),($554|0),($555|0))|0); $565 = tempRet0; - $566 = $22; - $567 = $566; - $568 = HEAP32[$567>>2]|0; - $569 = (($566) + 4)|0; - $570 = $569; - $571 = HEAP32[$570>>2]|0; - $572 = (_bitshift64Ashr(0,($568|0),32)|0); - $573 = tempRet0; - $574 = $444; - $575 = $574; - $576 = HEAP32[$575>>2]|0; - $577 = (($574) + 4)|0; - $578 = $577; - $579 = HEAP32[$578>>2]|0; - $580 = (_bitshift64Ashr(0,($576|0),32)|0); - $581 = tempRet0; - $582 = (___muldi3(($580|0),($581|0),($572|0),($573|0))|0); + $566 = (_i64Add(($546|0),($547|0),($564|0),($565|0))|0); + $567 = tempRet0; + $568 = $24; + $569 = $568; + $570 = HEAP32[$569>>2]|0; + $571 = (($568) + 4)|0; + $572 = $571; + $573 = HEAP32[$572>>2]|0; + $574 = (_bitshift64Ashr(0,($570|0),32)|0); + $575 = tempRet0; + $576 = $446; + $577 = $576; + $578 = HEAP32[$577>>2]|0; + $579 = (($576) + 4)|0; + $580 = $579; + $581 = HEAP32[$580>>2]|0; + $582 = (_bitshift64Ashr(0,($578|0),32)|0); $583 = tempRet0; - $584 = (_i64Add(($564|0),($565|0),($582|0),($583|0))|0); + $584 = (___muldi3(($582|0),($583|0),($574|0),($575|0))|0); $585 = tempRet0; - $586 = $in; - $587 = $586; - $588 = HEAP32[$587>>2]|0; - $589 = (($586) + 4)|0; - $590 = $589; - $591 = HEAP32[$590>>2]|0; - $592 = (_bitshift64Ashr(0,($588|0),32)|0); - $593 = tempRet0; - $594 = ((($in)) + 72|0); - $595 = $594; - $596 = $595; - $597 = HEAP32[$596>>2]|0; - $598 = (($595) + 4)|0; - $599 = $598; - $600 = HEAP32[$599>>2]|0; - $601 = (_bitshift64Ashr(0,($597|0),32)|0); - $602 = tempRet0; - $603 = (___muldi3(($601|0),($602|0),($592|0),($593|0))|0); + $586 = (_i64Add(($566|0),($567|0),($584|0),($585|0))|0); + $587 = tempRet0; + $588 = $1; + $589 = $588; + $590 = HEAP32[$589>>2]|0; + $591 = (($588) + 4)|0; + $592 = $591; + $593 = HEAP32[$592>>2]|0; + $594 = (_bitshift64Ashr(0,($590|0),32)|0); + $595 = tempRet0; + $596 = ((($1)) + 72|0); + $597 = $596; + $598 = $597; + $599 = HEAP32[$598>>2]|0; + $600 = (($597) + 4)|0; + $601 = $600; + $602 = HEAP32[$601>>2]|0; + $603 = (_bitshift64Ashr(0,($599|0),32)|0); $604 = tempRet0; - $605 = (_i64Add(($584|0),($585|0),($603|0),($604|0))|0); + $605 = (___muldi3(($603|0),($604|0),($594|0),($595|0))|0); $606 = tempRet0; - $607 = (_bitshift64Shl(($605|0),($606|0),1)|0); + $607 = (_i64Add(($586|0),($587|0),($605|0),($606|0))|0); $608 = tempRet0; - $609 = ((($output)) + 72|0); - $610 = $609; - $611 = $610; - HEAP32[$611>>2] = $607; - $612 = (($610) + 4)|0; + $609 = (_bitshift64Shl(($607|0),($608|0),1)|0); + $610 = tempRet0; + $611 = ((($0)) + 72|0); + $612 = $611; $613 = $612; - HEAP32[$613>>2] = $608; - $614 = $224; + HEAP32[$613>>2] = $609; + $614 = (($612) + 4)|0; $615 = $614; - $616 = HEAP32[$615>>2]|0; - $617 = (($614) + 4)|0; - $618 = $617; - $619 = HEAP32[$618>>2]|0; - $620 = (_bitshift64Ashr(0,($616|0),32)|0); - $621 = tempRet0; - $622 = (___muldi3(($620|0),($621|0),($620|0),($621|0))|0); + HEAP32[$615>>2] = $610; + $616 = $226; + $617 = $616; + $618 = HEAP32[$617>>2]|0; + $619 = (($616) + 4)|0; + $620 = $619; + $621 = HEAP32[$620>>2]|0; + $622 = (_bitshift64Ashr(0,($618|0),32)|0); $623 = tempRet0; - $624 = $160; - $625 = $624; - $626 = HEAP32[$625>>2]|0; - $627 = (($624) + 4)|0; - $628 = $627; - $629 = HEAP32[$628>>2]|0; - $630 = (_bitshift64Ashr(0,($626|0),32)|0); - $631 = tempRet0; - $632 = $282; - $633 = $632; - $634 = HEAP32[$633>>2]|0; - $635 = (($632) + 4)|0; - $636 = $635; - $637 = HEAP32[$636>>2]|0; - $638 = (_bitshift64Ashr(0,($634|0),32)|0); - $639 = tempRet0; - $640 = (___muldi3(($638|0),($639|0),($630|0),($631|0))|0); + $624 = (___muldi3(($622|0),($623|0),($622|0),($623|0))|0); + $625 = tempRet0; + $626 = $162; + $627 = $626; + $628 = HEAP32[$627>>2]|0; + $629 = (($626) + 4)|0; + $630 = $629; + $631 = HEAP32[$630>>2]|0; + $632 = (_bitshift64Ashr(0,($628|0),32)|0); + $633 = tempRet0; + $634 = $284; + $635 = $634; + $636 = HEAP32[$635>>2]|0; + $637 = (($634) + 4)|0; + $638 = $637; + $639 = HEAP32[$638>>2]|0; + $640 = (_bitshift64Ashr(0,($636|0),32)|0); $641 = tempRet0; - $642 = (_i64Add(($640|0),($641|0),($622|0),($623|0))|0); + $642 = (___muldi3(($640|0),($641|0),($632|0),($633|0))|0); $643 = tempRet0; - $644 = $56; - $645 = $644; - $646 = HEAP32[$645>>2]|0; - $647 = (($644) + 4)|0; - $648 = $647; - $649 = HEAP32[$648>>2]|0; - $650 = (_bitshift64Ashr(0,($646|0),32)|0); - $651 = tempRet0; - $652 = $444; - $653 = $652; - $654 = HEAP32[$653>>2]|0; - $655 = (($652) + 4)|0; - $656 = $655; - $657 = HEAP32[$656>>2]|0; - $658 = (_bitshift64Ashr(0,($654|0),32)|0); - $659 = tempRet0; - $660 = (___muldi3(($658|0),($659|0),($650|0),($651|0))|0); + $644 = (_i64Add(($642|0),($643|0),($624|0),($625|0))|0); + $645 = tempRet0; + $646 = $58; + $647 = $646; + $648 = HEAP32[$647>>2]|0; + $649 = (($646) + 4)|0; + $650 = $649; + $651 = HEAP32[$650>>2]|0; + $652 = (_bitshift64Ashr(0,($648|0),32)|0); + $653 = tempRet0; + $654 = $446; + $655 = $654; + $656 = HEAP32[$655>>2]|0; + $657 = (($654) + 4)|0; + $658 = $657; + $659 = HEAP32[$658>>2]|0; + $660 = (_bitshift64Ashr(0,($656|0),32)|0); $661 = tempRet0; - $662 = (_i64Add(($642|0),($643|0),($660|0),($661|0))|0); + $662 = (___muldi3(($660|0),($661|0),($652|0),($653|0))|0); $663 = tempRet0; - $664 = $102; - $665 = $664; - $666 = HEAP32[$665>>2]|0; - $667 = (($664) + 4)|0; - $668 = $667; - $669 = HEAP32[$668>>2]|0; - $670 = (_bitshift64Ashr(0,($666|0),32)|0); - $671 = tempRet0; - $672 = $388; - $673 = $672; - $674 = HEAP32[$673>>2]|0; - $675 = (($672) + 4)|0; - $676 = $675; - $677 = HEAP32[$676>>2]|0; - $678 = (_bitshift64Ashr(0,($674|0),32)|0); - $679 = tempRet0; - $680 = (___muldi3(($678|0),($679|0),($670|0),($671|0))|0); + $664 = (_i64Add(($644|0),($645|0),($662|0),($663|0))|0); + $665 = tempRet0; + $666 = $104; + $667 = $666; + $668 = HEAP32[$667>>2]|0; + $669 = (($666) + 4)|0; + $670 = $669; + $671 = HEAP32[$670>>2]|0; + $672 = (_bitshift64Ashr(0,($668|0),32)|0); + $673 = tempRet0; + $674 = $390; + $675 = $674; + $676 = HEAP32[$675>>2]|0; + $677 = (($674) + 4)|0; + $678 = $677; + $679 = HEAP32[$678>>2]|0; + $680 = (_bitshift64Ashr(0,($676|0),32)|0); $681 = tempRet0; - $682 = $22; - $683 = $682; - $684 = HEAP32[$683>>2]|0; - $685 = (($682) + 4)|0; - $686 = $685; - $687 = HEAP32[$686>>2]|0; - $688 = (_bitshift64Ashr(0,($684|0),32)|0); - $689 = tempRet0; - $690 = $594; - $691 = $690; - $692 = HEAP32[$691>>2]|0; - $693 = (($690) + 4)|0; - $694 = $693; - $695 = HEAP32[$694>>2]|0; - $696 = (_bitshift64Ashr(0,($692|0),32)|0); - $697 = tempRet0; - $698 = (___muldi3(($696|0),($697|0),($688|0),($689|0))|0); + $682 = (___muldi3(($680|0),($681|0),($672|0),($673|0))|0); + $683 = tempRet0; + $684 = $24; + $685 = $684; + $686 = HEAP32[$685>>2]|0; + $687 = (($684) + 4)|0; + $688 = $687; + $689 = HEAP32[$688>>2]|0; + $690 = (_bitshift64Ashr(0,($686|0),32)|0); + $691 = tempRet0; + $692 = $596; + $693 = $692; + $694 = HEAP32[$693>>2]|0; + $695 = (($692) + 4)|0; + $696 = $695; + $697 = HEAP32[$696>>2]|0; + $698 = (_bitshift64Ashr(0,($694|0),32)|0); $699 = tempRet0; - $700 = (_i64Add(($698|0),($699|0),($680|0),($681|0))|0); + $700 = (___muldi3(($698|0),($699|0),($690|0),($691|0))|0); $701 = tempRet0; - $702 = (_bitshift64Shl(($700|0),($701|0),1)|0); + $702 = (_i64Add(($700|0),($701|0),($682|0),($683|0))|0); $703 = tempRet0; - $704 = (_i64Add(($662|0),($663|0),($702|0),($703|0))|0); + $704 = (_bitshift64Shl(($702|0),($703|0),1)|0); $705 = tempRet0; - $706 = (_bitshift64Shl(($704|0),($705|0),1)|0); + $706 = (_i64Add(($664|0),($665|0),($704|0),($705|0))|0); $707 = tempRet0; - $708 = ((($output)) + 80|0); - $709 = $708; - $710 = $709; - HEAP32[$710>>2] = $706; - $711 = (($709) + 4)|0; + $708 = (_bitshift64Shl(($706|0),($707|0),1)|0); + $709 = tempRet0; + $710 = ((($0)) + 80|0); + $711 = $710; $712 = $711; - HEAP32[$712>>2] = $707; - $713 = $224; + HEAP32[$712>>2] = $708; + $713 = (($711) + 4)|0; $714 = $713; - $715 = HEAP32[$714>>2]|0; - $716 = (($713) + 4)|0; - $717 = $716; - $718 = HEAP32[$717>>2]|0; - $719 = (_bitshift64Ashr(0,($715|0),32)|0); - $720 = tempRet0; - $721 = $282; - $722 = $721; - $723 = HEAP32[$722>>2]|0; - $724 = (($721) + 4)|0; - $725 = $724; - $726 = HEAP32[$725>>2]|0; - $727 = (_bitshift64Ashr(0,($723|0),32)|0); - $728 = tempRet0; - $729 = (___muldi3(($727|0),($728|0),($719|0),($720|0))|0); + HEAP32[$714>>2] = $709; + $715 = $226; + $716 = $715; + $717 = HEAP32[$716>>2]|0; + $718 = (($715) + 4)|0; + $719 = $718; + $720 = HEAP32[$719>>2]|0; + $721 = (_bitshift64Ashr(0,($717|0),32)|0); + $722 = tempRet0; + $723 = $284; + $724 = $723; + $725 = HEAP32[$724>>2]|0; + $726 = (($723) + 4)|0; + $727 = $726; + $728 = HEAP32[$727>>2]|0; + $729 = (_bitshift64Ashr(0,($725|0),32)|0); $730 = tempRet0; - $731 = $160; - $732 = $731; - $733 = HEAP32[$732>>2]|0; - $734 = (($731) + 4)|0; - $735 = $734; - $736 = HEAP32[$735>>2]|0; - $737 = (_bitshift64Ashr(0,($733|0),32)|0); - $738 = tempRet0; - $739 = $388; - $740 = $739; - $741 = HEAP32[$740>>2]|0; - $742 = (($739) + 4)|0; - $743 = $742; - $744 = HEAP32[$743>>2]|0; - $745 = (_bitshift64Ashr(0,($741|0),32)|0); - $746 = tempRet0; - $747 = (___muldi3(($745|0),($746|0),($737|0),($738|0))|0); + $731 = (___muldi3(($729|0),($730|0),($721|0),($722|0))|0); + $732 = tempRet0; + $733 = $162; + $734 = $733; + $735 = HEAP32[$734>>2]|0; + $736 = (($733) + 4)|0; + $737 = $736; + $738 = HEAP32[$737>>2]|0; + $739 = (_bitshift64Ashr(0,($735|0),32)|0); + $740 = tempRet0; + $741 = $390; + $742 = $741; + $743 = HEAP32[$742>>2]|0; + $744 = (($741) + 4)|0; + $745 = $744; + $746 = HEAP32[$745>>2]|0; + $747 = (_bitshift64Ashr(0,($743|0),32)|0); $748 = tempRet0; - $749 = (_i64Add(($747|0),($748|0),($729|0),($730|0))|0); + $749 = (___muldi3(($747|0),($748|0),($739|0),($740|0))|0); $750 = tempRet0; - $751 = $102; - $752 = $751; - $753 = HEAP32[$752>>2]|0; - $754 = (($751) + 4)|0; - $755 = $754; - $756 = HEAP32[$755>>2]|0; - $757 = (_bitshift64Ashr(0,($753|0),32)|0); - $758 = tempRet0; - $759 = $444; - $760 = $759; - $761 = HEAP32[$760>>2]|0; - $762 = (($759) + 4)|0; - $763 = $762; - $764 = HEAP32[$763>>2]|0; - $765 = (_bitshift64Ashr(0,($761|0),32)|0); - $766 = tempRet0; - $767 = (___muldi3(($765|0),($766|0),($757|0),($758|0))|0); + $751 = (_i64Add(($749|0),($750|0),($731|0),($732|0))|0); + $752 = tempRet0; + $753 = $104; + $754 = $753; + $755 = HEAP32[$754>>2]|0; + $756 = (($753) + 4)|0; + $757 = $756; + $758 = HEAP32[$757>>2]|0; + $759 = (_bitshift64Ashr(0,($755|0),32)|0); + $760 = tempRet0; + $761 = $446; + $762 = $761; + $763 = HEAP32[$762>>2]|0; + $764 = (($761) + 4)|0; + $765 = $764; + $766 = HEAP32[$765>>2]|0; + $767 = (_bitshift64Ashr(0,($763|0),32)|0); $768 = tempRet0; - $769 = (_i64Add(($749|0),($750|0),($767|0),($768|0))|0); + $769 = (___muldi3(($767|0),($768|0),($759|0),($760|0))|0); $770 = tempRet0; - $771 = $56; - $772 = $771; - $773 = HEAP32[$772>>2]|0; - $774 = (($771) + 4)|0; - $775 = $774; - $776 = HEAP32[$775>>2]|0; - $777 = (_bitshift64Ashr(0,($773|0),32)|0); - $778 = tempRet0; - $779 = $594; - $780 = $779; - $781 = HEAP32[$780>>2]|0; - $782 = (($779) + 4)|0; - $783 = $782; - $784 = HEAP32[$783>>2]|0; - $785 = (_bitshift64Ashr(0,($781|0),32)|0); - $786 = tempRet0; - $787 = (___muldi3(($785|0),($786|0),($777|0),($778|0))|0); + $771 = (_i64Add(($751|0),($752|0),($769|0),($770|0))|0); + $772 = tempRet0; + $773 = $58; + $774 = $773; + $775 = HEAP32[$774>>2]|0; + $776 = (($773) + 4)|0; + $777 = $776; + $778 = HEAP32[$777>>2]|0; + $779 = (_bitshift64Ashr(0,($775|0),32)|0); + $780 = tempRet0; + $781 = $596; + $782 = $781; + $783 = HEAP32[$782>>2]|0; + $784 = (($781) + 4)|0; + $785 = $784; + $786 = HEAP32[$785>>2]|0; + $787 = (_bitshift64Ashr(0,($783|0),32)|0); $788 = tempRet0; - $789 = (_i64Add(($769|0),($770|0),($787|0),($788|0))|0); + $789 = (___muldi3(($787|0),($788|0),($779|0),($780|0))|0); $790 = tempRet0; - $791 = (_bitshift64Shl(($789|0),($790|0),1)|0); + $791 = (_i64Add(($771|0),($772|0),($789|0),($790|0))|0); $792 = tempRet0; - $793 = ((($output)) + 88|0); - $794 = $793; - $795 = $794; - HEAP32[$795>>2] = $791; - $796 = (($794) + 4)|0; + $793 = (_bitshift64Shl(($791|0),($792|0),1)|0); + $794 = tempRet0; + $795 = ((($0)) + 88|0); + $796 = $795; $797 = $796; - HEAP32[$797>>2] = $792; - $798 = $282; + HEAP32[$797>>2] = $793; + $798 = (($796) + 4)|0; $799 = $798; - $800 = HEAP32[$799>>2]|0; - $801 = (($798) + 4)|0; - $802 = $801; - $803 = HEAP32[$802>>2]|0; - $804 = (_bitshift64Ashr(0,($800|0),32)|0); - $805 = tempRet0; - $806 = (___muldi3(($804|0),($805|0),($804|0),($805|0))|0); + HEAP32[$799>>2] = $794; + $800 = $284; + $801 = $800; + $802 = HEAP32[$801>>2]|0; + $803 = (($800) + 4)|0; + $804 = $803; + $805 = HEAP32[$804>>2]|0; + $806 = (_bitshift64Ashr(0,($802|0),32)|0); $807 = tempRet0; - $808 = $160; - $809 = $808; - $810 = HEAP32[$809>>2]|0; - $811 = (($808) + 4)|0; - $812 = $811; - $813 = HEAP32[$812>>2]|0; - $814 = (_bitshift64Ashr(0,($810|0),32)|0); - $815 = tempRet0; - $816 = $444; - $817 = $816; - $818 = HEAP32[$817>>2]|0; - $819 = (($816) + 4)|0; - $820 = $819; - $821 = HEAP32[$820>>2]|0; - $822 = (_bitshift64Ashr(0,($818|0),32)|0); - $823 = tempRet0; - $824 = (___muldi3(($822|0),($823|0),($814|0),($815|0))|0); + $808 = (___muldi3(($806|0),($807|0),($806|0),($807|0))|0); + $809 = tempRet0; + $810 = $162; + $811 = $810; + $812 = HEAP32[$811>>2]|0; + $813 = (($810) + 4)|0; + $814 = $813; + $815 = HEAP32[$814>>2]|0; + $816 = (_bitshift64Ashr(0,($812|0),32)|0); + $817 = tempRet0; + $818 = $446; + $819 = $818; + $820 = HEAP32[$819>>2]|0; + $821 = (($818) + 4)|0; + $822 = $821; + $823 = HEAP32[$822>>2]|0; + $824 = (_bitshift64Ashr(0,($820|0),32)|0); $825 = tempRet0; - $826 = $224; - $827 = $826; - $828 = HEAP32[$827>>2]|0; - $829 = (($826) + 4)|0; - $830 = $829; - $831 = HEAP32[$830>>2]|0; - $832 = (_bitshift64Ashr(0,($828|0),32)|0); - $833 = tempRet0; - $834 = $388; - $835 = $834; - $836 = HEAP32[$835>>2]|0; - $837 = (($834) + 4)|0; - $838 = $837; - $839 = HEAP32[$838>>2]|0; - $840 = (_bitshift64Ashr(0,($836|0),32)|0); - $841 = tempRet0; - $842 = (___muldi3(($840|0),($841|0),($832|0),($833|0))|0); + $826 = (___muldi3(($824|0),($825|0),($816|0),($817|0))|0); + $827 = tempRet0; + $828 = $226; + $829 = $828; + $830 = HEAP32[$829>>2]|0; + $831 = (($828) + 4)|0; + $832 = $831; + $833 = HEAP32[$832>>2]|0; + $834 = (_bitshift64Ashr(0,($830|0),32)|0); + $835 = tempRet0; + $836 = $390; + $837 = $836; + $838 = HEAP32[$837>>2]|0; + $839 = (($836) + 4)|0; + $840 = $839; + $841 = HEAP32[$840>>2]|0; + $842 = (_bitshift64Ashr(0,($838|0),32)|0); $843 = tempRet0; - $844 = $102; - $845 = $844; - $846 = HEAP32[$845>>2]|0; - $847 = (($844) + 4)|0; - $848 = $847; - $849 = HEAP32[$848>>2]|0; - $850 = (_bitshift64Ashr(0,($846|0),32)|0); - $851 = tempRet0; - $852 = $594; - $853 = $852; - $854 = HEAP32[$853>>2]|0; - $855 = (($852) + 4)|0; - $856 = $855; - $857 = HEAP32[$856>>2]|0; - $858 = (_bitshift64Ashr(0,($854|0),32)|0); - $859 = tempRet0; - $860 = (___muldi3(($858|0),($859|0),($850|0),($851|0))|0); + $844 = (___muldi3(($842|0),($843|0),($834|0),($835|0))|0); + $845 = tempRet0; + $846 = $104; + $847 = $846; + $848 = HEAP32[$847>>2]|0; + $849 = (($846) + 4)|0; + $850 = $849; + $851 = HEAP32[$850>>2]|0; + $852 = (_bitshift64Ashr(0,($848|0),32)|0); + $853 = tempRet0; + $854 = $596; + $855 = $854; + $856 = HEAP32[$855>>2]|0; + $857 = (($854) + 4)|0; + $858 = $857; + $859 = HEAP32[$858>>2]|0; + $860 = (_bitshift64Ashr(0,($856|0),32)|0); $861 = tempRet0; - $862 = (_i64Add(($860|0),($861|0),($842|0),($843|0))|0); + $862 = (___muldi3(($860|0),($861|0),($852|0),($853|0))|0); $863 = tempRet0; - $864 = (_bitshift64Shl(($862|0),($863|0),1)|0); + $864 = (_i64Add(($862|0),($863|0),($844|0),($845|0))|0); $865 = tempRet0; - $866 = (_i64Add(($864|0),($865|0),($824|0),($825|0))|0); + $866 = (_bitshift64Shl(($864|0),($865|0),1)|0); $867 = tempRet0; - $868 = (_bitshift64Shl(($866|0),($867|0),1)|0); + $868 = (_i64Add(($866|0),($867|0),($826|0),($827|0))|0); $869 = tempRet0; - $870 = (_i64Add(($868|0),($869|0),($806|0),($807|0))|0); + $870 = (_bitshift64Shl(($868|0),($869|0),1)|0); $871 = tempRet0; - $872 = ((($output)) + 96|0); - $873 = $872; - $874 = $873; - HEAP32[$874>>2] = $870; - $875 = (($873) + 4)|0; + $872 = (_i64Add(($870|0),($871|0),($808|0),($809|0))|0); + $873 = tempRet0; + $874 = ((($0)) + 96|0); + $875 = $874; $876 = $875; - HEAP32[$876>>2] = $871; - $877 = $282; + HEAP32[$876>>2] = $872; + $877 = (($875) + 4)|0; $878 = $877; - $879 = HEAP32[$878>>2]|0; - $880 = (($877) + 4)|0; - $881 = $880; - $882 = HEAP32[$881>>2]|0; - $883 = (_bitshift64Ashr(0,($879|0),32)|0); - $884 = tempRet0; - $885 = $388; - $886 = $885; - $887 = HEAP32[$886>>2]|0; - $888 = (($885) + 4)|0; - $889 = $888; - $890 = HEAP32[$889>>2]|0; - $891 = (_bitshift64Ashr(0,($887|0),32)|0); - $892 = tempRet0; - $893 = (___muldi3(($891|0),($892|0),($883|0),($884|0))|0); + HEAP32[$878>>2] = $873; + $879 = $284; + $880 = $879; + $881 = HEAP32[$880>>2]|0; + $882 = (($879) + 4)|0; + $883 = $882; + $884 = HEAP32[$883>>2]|0; + $885 = (_bitshift64Ashr(0,($881|0),32)|0); + $886 = tempRet0; + $887 = $390; + $888 = $887; + $889 = HEAP32[$888>>2]|0; + $890 = (($887) + 4)|0; + $891 = $890; + $892 = HEAP32[$891>>2]|0; + $893 = (_bitshift64Ashr(0,($889|0),32)|0); $894 = tempRet0; - $895 = $224; - $896 = $895; - $897 = HEAP32[$896>>2]|0; - $898 = (($895) + 4)|0; - $899 = $898; - $900 = HEAP32[$899>>2]|0; - $901 = (_bitshift64Ashr(0,($897|0),32)|0); - $902 = tempRet0; - $903 = $444; - $904 = $903; - $905 = HEAP32[$904>>2]|0; - $906 = (($903) + 4)|0; - $907 = $906; - $908 = HEAP32[$907>>2]|0; - $909 = (_bitshift64Ashr(0,($905|0),32)|0); - $910 = tempRet0; - $911 = (___muldi3(($909|0),($910|0),($901|0),($902|0))|0); + $895 = (___muldi3(($893|0),($894|0),($885|0),($886|0))|0); + $896 = tempRet0; + $897 = $226; + $898 = $897; + $899 = HEAP32[$898>>2]|0; + $900 = (($897) + 4)|0; + $901 = $900; + $902 = HEAP32[$901>>2]|0; + $903 = (_bitshift64Ashr(0,($899|0),32)|0); + $904 = tempRet0; + $905 = $446; + $906 = $905; + $907 = HEAP32[$906>>2]|0; + $908 = (($905) + 4)|0; + $909 = $908; + $910 = HEAP32[$909>>2]|0; + $911 = (_bitshift64Ashr(0,($907|0),32)|0); $912 = tempRet0; - $913 = (_i64Add(($911|0),($912|0),($893|0),($894|0))|0); + $913 = (___muldi3(($911|0),($912|0),($903|0),($904|0))|0); $914 = tempRet0; - $915 = $160; - $916 = $915; - $917 = HEAP32[$916>>2]|0; - $918 = (($915) + 4)|0; - $919 = $918; - $920 = HEAP32[$919>>2]|0; - $921 = (_bitshift64Ashr(0,($917|0),32)|0); - $922 = tempRet0; - $923 = $594; - $924 = $923; - $925 = HEAP32[$924>>2]|0; - $926 = (($923) + 4)|0; - $927 = $926; - $928 = HEAP32[$927>>2]|0; - $929 = (_bitshift64Ashr(0,($925|0),32)|0); - $930 = tempRet0; - $931 = (___muldi3(($929|0),($930|0),($921|0),($922|0))|0); + $915 = (_i64Add(($913|0),($914|0),($895|0),($896|0))|0); + $916 = tempRet0; + $917 = $162; + $918 = $917; + $919 = HEAP32[$918>>2]|0; + $920 = (($917) + 4)|0; + $921 = $920; + $922 = HEAP32[$921>>2]|0; + $923 = (_bitshift64Ashr(0,($919|0),32)|0); + $924 = tempRet0; + $925 = $596; + $926 = $925; + $927 = HEAP32[$926>>2]|0; + $928 = (($925) + 4)|0; + $929 = $928; + $930 = HEAP32[$929>>2]|0; + $931 = (_bitshift64Ashr(0,($927|0),32)|0); $932 = tempRet0; - $933 = (_i64Add(($913|0),($914|0),($931|0),($932|0))|0); + $933 = (___muldi3(($931|0),($932|0),($923|0),($924|0))|0); $934 = tempRet0; - $935 = (_bitshift64Shl(($933|0),($934|0),1)|0); + $935 = (_i64Add(($915|0),($916|0),($933|0),($934|0))|0); $936 = tempRet0; - $937 = ((($output)) + 104|0); - $938 = $937; - $939 = $938; - HEAP32[$939>>2] = $935; - $940 = (($938) + 4)|0; + $937 = (_bitshift64Shl(($935|0),($936|0),1)|0); + $938 = tempRet0; + $939 = ((($0)) + 104|0); + $940 = $939; $941 = $940; - HEAP32[$941>>2] = $936; - $942 = $388; + HEAP32[$941>>2] = $937; + $942 = (($940) + 4)|0; $943 = $942; - $944 = HEAP32[$943>>2]|0; - $945 = (($942) + 4)|0; - $946 = $945; - $947 = HEAP32[$946>>2]|0; - $948 = (_bitshift64Ashr(0,($944|0),32)|0); - $949 = tempRet0; - $950 = (___muldi3(($948|0),($949|0),($948|0),($949|0))|0); + HEAP32[$943>>2] = $938; + $944 = $390; + $945 = $944; + $946 = HEAP32[$945>>2]|0; + $947 = (($944) + 4)|0; + $948 = $947; + $949 = HEAP32[$948>>2]|0; + $950 = (_bitshift64Ashr(0,($946|0),32)|0); $951 = tempRet0; - $952 = $282; - $953 = $952; - $954 = HEAP32[$953>>2]|0; - $955 = (($952) + 4)|0; - $956 = $955; - $957 = HEAP32[$956>>2]|0; - $958 = (_bitshift64Ashr(0,($954|0),32)|0); - $959 = tempRet0; - $960 = $444; - $961 = $960; - $962 = HEAP32[$961>>2]|0; - $963 = (($960) + 4)|0; - $964 = $963; - $965 = HEAP32[$964>>2]|0; - $966 = (_bitshift64Ashr(0,($962|0),32)|0); - $967 = tempRet0; - $968 = (___muldi3(($966|0),($967|0),($958|0),($959|0))|0); + $952 = (___muldi3(($950|0),($951|0),($950|0),($951|0))|0); + $953 = tempRet0; + $954 = $284; + $955 = $954; + $956 = HEAP32[$955>>2]|0; + $957 = (($954) + 4)|0; + $958 = $957; + $959 = HEAP32[$958>>2]|0; + $960 = (_bitshift64Ashr(0,($956|0),32)|0); + $961 = tempRet0; + $962 = $446; + $963 = $962; + $964 = HEAP32[$963>>2]|0; + $965 = (($962) + 4)|0; + $966 = $965; + $967 = HEAP32[$966>>2]|0; + $968 = (_bitshift64Ashr(0,($964|0),32)|0); $969 = tempRet0; - $970 = (_i64Add(($968|0),($969|0),($950|0),($951|0))|0); + $970 = (___muldi3(($968|0),($969|0),($960|0),($961|0))|0); $971 = tempRet0; - $972 = $224; - $973 = $972; - $974 = HEAP32[$973>>2]|0; - $975 = (($972) + 4)|0; - $976 = $975; - $977 = HEAP32[$976>>2]|0; - $978 = (_bitshift64Ashr(0,($974|0),31)|0); - $979 = tempRet0; - $980 = $594; - $981 = $980; - $982 = HEAP32[$981>>2]|0; - $983 = (($980) + 4)|0; - $984 = $983; - $985 = HEAP32[$984>>2]|0; - $986 = (_bitshift64Ashr(0,($982|0),32)|0); - $987 = tempRet0; - $988 = (___muldi3(($986|0),($987|0),($978|0),($979|0))|0); + $972 = (_i64Add(($970|0),($971|0),($952|0),($953|0))|0); + $973 = tempRet0; + $974 = $226; + $975 = $974; + $976 = HEAP32[$975>>2]|0; + $977 = (($974) + 4)|0; + $978 = $977; + $979 = HEAP32[$978>>2]|0; + $980 = (_bitshift64Ashr(0,($976|0),31)|0); + $981 = tempRet0; + $982 = $596; + $983 = $982; + $984 = HEAP32[$983>>2]|0; + $985 = (($982) + 4)|0; + $986 = $985; + $987 = HEAP32[$986>>2]|0; + $988 = (_bitshift64Ashr(0,($984|0),32)|0); $989 = tempRet0; - $990 = (_i64Add(($970|0),($971|0),($988|0),($989|0))|0); + $990 = (___muldi3(($988|0),($989|0),($980|0),($981|0))|0); $991 = tempRet0; - $992 = (_bitshift64Shl(($990|0),($991|0),1)|0); + $992 = (_i64Add(($972|0),($973|0),($990|0),($991|0))|0); $993 = tempRet0; - $994 = ((($output)) + 112|0); - $995 = $994; - $996 = $995; - HEAP32[$996>>2] = $992; - $997 = (($995) + 4)|0; + $994 = (_bitshift64Shl(($992|0),($993|0),1)|0); + $995 = tempRet0; + $996 = ((($0)) + 112|0); + $997 = $996; $998 = $997; - HEAP32[$998>>2] = $993; - $999 = $388; + HEAP32[$998>>2] = $994; + $999 = (($997) + 4)|0; $1000 = $999; - $1001 = HEAP32[$1000>>2]|0; - $1002 = (($999) + 4)|0; - $1003 = $1002; - $1004 = HEAP32[$1003>>2]|0; - $1005 = (_bitshift64Ashr(0,($1001|0),32)|0); - $1006 = tempRet0; - $1007 = $444; - $1008 = $1007; - $1009 = HEAP32[$1008>>2]|0; - $1010 = (($1007) + 4)|0; - $1011 = $1010; - $1012 = HEAP32[$1011>>2]|0; - $1013 = (_bitshift64Ashr(0,($1009|0),32)|0); - $1014 = tempRet0; - $1015 = (___muldi3(($1013|0),($1014|0),($1005|0),($1006|0))|0); + HEAP32[$1000>>2] = $995; + $1001 = $390; + $1002 = $1001; + $1003 = HEAP32[$1002>>2]|0; + $1004 = (($1001) + 4)|0; + $1005 = $1004; + $1006 = HEAP32[$1005>>2]|0; + $1007 = (_bitshift64Ashr(0,($1003|0),32)|0); + $1008 = tempRet0; + $1009 = $446; + $1010 = $1009; + $1011 = HEAP32[$1010>>2]|0; + $1012 = (($1009) + 4)|0; + $1013 = $1012; + $1014 = HEAP32[$1013>>2]|0; + $1015 = (_bitshift64Ashr(0,($1011|0),32)|0); $1016 = tempRet0; - $1017 = $282; - $1018 = $1017; - $1019 = HEAP32[$1018>>2]|0; - $1020 = (($1017) + 4)|0; - $1021 = $1020; - $1022 = HEAP32[$1021>>2]|0; - $1023 = (_bitshift64Ashr(0,($1019|0),32)|0); - $1024 = tempRet0; - $1025 = $594; - $1026 = $1025; - $1027 = HEAP32[$1026>>2]|0; - $1028 = (($1025) + 4)|0; - $1029 = $1028; - $1030 = HEAP32[$1029>>2]|0; - $1031 = (_bitshift64Ashr(0,($1027|0),32)|0); - $1032 = tempRet0; - $1033 = (___muldi3(($1031|0),($1032|0),($1023|0),($1024|0))|0); + $1017 = (___muldi3(($1015|0),($1016|0),($1007|0),($1008|0))|0); + $1018 = tempRet0; + $1019 = $284; + $1020 = $1019; + $1021 = HEAP32[$1020>>2]|0; + $1022 = (($1019) + 4)|0; + $1023 = $1022; + $1024 = HEAP32[$1023>>2]|0; + $1025 = (_bitshift64Ashr(0,($1021|0),32)|0); + $1026 = tempRet0; + $1027 = $596; + $1028 = $1027; + $1029 = HEAP32[$1028>>2]|0; + $1030 = (($1027) + 4)|0; + $1031 = $1030; + $1032 = HEAP32[$1031>>2]|0; + $1033 = (_bitshift64Ashr(0,($1029|0),32)|0); $1034 = tempRet0; - $1035 = (_i64Add(($1033|0),($1034|0),($1015|0),($1016|0))|0); + $1035 = (___muldi3(($1033|0),($1034|0),($1025|0),($1026|0))|0); $1036 = tempRet0; - $1037 = (_bitshift64Shl(($1035|0),($1036|0),1)|0); + $1037 = (_i64Add(($1035|0),($1036|0),($1017|0),($1018|0))|0); $1038 = tempRet0; - $1039 = ((($output)) + 120|0); - $1040 = $1039; - $1041 = $1040; - HEAP32[$1041>>2] = $1037; - $1042 = (($1040) + 4)|0; + $1039 = (_bitshift64Shl(($1037|0),($1038|0),1)|0); + $1040 = tempRet0; + $1041 = ((($0)) + 120|0); + $1042 = $1041; $1043 = $1042; - HEAP32[$1043>>2] = $1038; - $1044 = $444; + HEAP32[$1043>>2] = $1039; + $1044 = (($1042) + 4)|0; $1045 = $1044; - $1046 = HEAP32[$1045>>2]|0; - $1047 = (($1044) + 4)|0; - $1048 = $1047; - $1049 = HEAP32[$1048>>2]|0; - $1050 = (_bitshift64Ashr(0,($1046|0),32)|0); - $1051 = tempRet0; - $1052 = (___muldi3(($1050|0),($1051|0),($1050|0),($1051|0))|0); + HEAP32[$1045>>2] = $1040; + $1046 = $446; + $1047 = $1046; + $1048 = HEAP32[$1047>>2]|0; + $1049 = (($1046) + 4)|0; + $1050 = $1049; + $1051 = HEAP32[$1050>>2]|0; + $1052 = (_bitshift64Ashr(0,($1048|0),32)|0); $1053 = tempRet0; - $1054 = $388; - $1055 = $1054; - $1056 = HEAP32[$1055>>2]|0; - $1057 = (($1054) + 4)|0; - $1058 = $1057; - $1059 = HEAP32[$1058>>2]|0; - $1060 = (_bitshift64Ashr(0,($1056|0),30)|0); - $1061 = tempRet0; - $1062 = $594; - $1063 = $1062; - $1064 = HEAP32[$1063>>2]|0; - $1065 = (($1062) + 4)|0; - $1066 = $1065; - $1067 = HEAP32[$1066>>2]|0; - $1068 = (_bitshift64Ashr(0,($1064|0),32)|0); - $1069 = tempRet0; - $1070 = (___muldi3(($1068|0),($1069|0),($1060|0),($1061|0))|0); + $1054 = (___muldi3(($1052|0),($1053|0),($1052|0),($1053|0))|0); + $1055 = tempRet0; + $1056 = $390; + $1057 = $1056; + $1058 = HEAP32[$1057>>2]|0; + $1059 = (($1056) + 4)|0; + $1060 = $1059; + $1061 = HEAP32[$1060>>2]|0; + $1062 = (_bitshift64Ashr(0,($1058|0),30)|0); + $1063 = tempRet0; + $1064 = $596; + $1065 = $1064; + $1066 = HEAP32[$1065>>2]|0; + $1067 = (($1064) + 4)|0; + $1068 = $1067; + $1069 = HEAP32[$1068>>2]|0; + $1070 = (_bitshift64Ashr(0,($1066|0),32)|0); $1071 = tempRet0; - $1072 = (_i64Add(($1070|0),($1071|0),($1052|0),($1053|0))|0); + $1072 = (___muldi3(($1070|0),($1071|0),($1062|0),($1063|0))|0); $1073 = tempRet0; - $1074 = ((($output)) + 128|0); - $1075 = $1074; - $1076 = $1075; - HEAP32[$1076>>2] = $1072; - $1077 = (($1075) + 4)|0; + $1074 = (_i64Add(($1072|0),($1073|0),($1054|0),($1055|0))|0); + $1075 = tempRet0; + $1076 = ((($0)) + 128|0); + $1077 = $1076; $1078 = $1077; - HEAP32[$1078>>2] = $1073; - $1079 = $444; + HEAP32[$1078>>2] = $1074; + $1079 = (($1077) + 4)|0; $1080 = $1079; - $1081 = HEAP32[$1080>>2]|0; - $1082 = (($1079) + 4)|0; - $1083 = $1082; - $1084 = HEAP32[$1083>>2]|0; - $1085 = (_bitshift64Ashr(0,($1081|0),31)|0); - $1086 = tempRet0; - $1087 = $594; - $1088 = $1087; - $1089 = HEAP32[$1088>>2]|0; - $1090 = (($1087) + 4)|0; - $1091 = $1090; - $1092 = HEAP32[$1091>>2]|0; - $1093 = (_bitshift64Ashr(0,($1089|0),32)|0); - $1094 = tempRet0; - $1095 = (___muldi3(($1093|0),($1094|0),($1085|0),($1086|0))|0); + HEAP32[$1080>>2] = $1075; + $1081 = $446; + $1082 = $1081; + $1083 = HEAP32[$1082>>2]|0; + $1084 = (($1081) + 4)|0; + $1085 = $1084; + $1086 = HEAP32[$1085>>2]|0; + $1087 = (_bitshift64Ashr(0,($1083|0),31)|0); + $1088 = tempRet0; + $1089 = $596; + $1090 = $1089; + $1091 = HEAP32[$1090>>2]|0; + $1092 = (($1089) + 4)|0; + $1093 = $1092; + $1094 = HEAP32[$1093>>2]|0; + $1095 = (_bitshift64Ashr(0,($1091|0),32)|0); $1096 = tempRet0; - $1097 = ((($output)) + 136|0); - $1098 = $1097; - $1099 = $1098; - HEAP32[$1099>>2] = $1095; - $1100 = (($1098) + 4)|0; + $1097 = (___muldi3(($1095|0),($1096|0),($1087|0),($1088|0))|0); + $1098 = tempRet0; + $1099 = ((($0)) + 136|0); + $1100 = $1099; $1101 = $1100; - HEAP32[$1101>>2] = $1096; - $1102 = $594; + HEAP32[$1101>>2] = $1097; + $1102 = (($1100) + 4)|0; $1103 = $1102; - $1104 = HEAP32[$1103>>2]|0; - $1105 = (($1102) + 4)|0; - $1106 = $1105; - $1107 = HEAP32[$1106>>2]|0; - $1108 = (_bitshift64Ashr(0,($1104|0),32)|0); - $1109 = tempRet0; - $1110 = (_bitshift64Ashr(0,($1104|0),31)|0); + HEAP32[$1103>>2] = $1098; + $1104 = $596; + $1105 = $1104; + $1106 = HEAP32[$1105>>2]|0; + $1107 = (($1104) + 4)|0; + $1108 = $1107; + $1109 = HEAP32[$1108>>2]|0; + $1110 = (_bitshift64Ashr(0,($1106|0),32)|0); $1111 = tempRet0; - $1112 = (___muldi3(($1110|0),($1111|0),($1108|0),($1109|0))|0); + $1112 = (_bitshift64Ashr(0,($1106|0),31)|0); $1113 = tempRet0; - $1114 = ((($output)) + 144|0); - $1115 = $1114; - $1116 = $1115; - HEAP32[$1116>>2] = $1112; - $1117 = (($1115) + 4)|0; + $1114 = (___muldi3(($1112|0),($1113|0),($1110|0),($1111|0))|0); + $1115 = tempRet0; + $1116 = ((($0)) + 144|0); + $1117 = $1116; $1118 = $1117; - HEAP32[$1118>>2] = $1113; + HEAP32[$1118>>2] = $1114; + $1119 = (($1117) + 4)|0; + $1120 = $1119; + HEAP32[$1120>>2] = $1115; return; } -function _swap_conditional($a,$b,$0,$1) { - $a = $a|0; - $b = $b|0; +function _swap_conditional($0,$1,$2,$3) { $0 = $0|0; $1 = $1|0; - var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; - var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0; - var $9 = 0, $exitcond = 0, $i$02 = 0, label = 0, sp = 0; - sp = STACKTOP; - $2 = (_i64Subtract(0,0,($0|0),($1|0))|0); - $3 = tempRet0; - $i$02 = 0; - while(1) { - $4 = (($a) + ($i$02<<3)|0); - $5 = $4; - $6 = $5; - $7 = HEAP32[$6>>2]|0; - $8 = (($5) + 4)|0; - $9 = $8; - $10 = HEAP32[$9>>2]|0; - $11 = (($b) + ($i$02<<3)|0); - $12 = $11; - $13 = $12; - $14 = HEAP32[$13>>2]|0; - $15 = (($12) + 4)|0; - $16 = $15; - $17 = HEAP32[$16>>2]|0; - $18 = $14 ^ $7; - $19 = $17 ^ $10; - $20 = $18 & $2; - $21 = $19 & $3; - $22 = $20 ^ $7; - $21 ^ $10; - $23 = (_bitshift64Ashr(0,($22|0),32)|0); - $24 = tempRet0; - $25 = $4; - $26 = $25; - HEAP32[$26>>2] = $23; - $27 = (($25) + 4)|0; - $28 = $27; - HEAP32[$28>>2] = $24; - $29 = $11; - $30 = $29; - $31 = HEAP32[$30>>2]|0; - $32 = (($29) + 4)|0; - $33 = $32; - $34 = HEAP32[$33>>2]|0; - $35 = $20 ^ $31; - $21 ^ $34; - $36 = (_bitshift64Ashr(0,($35|0),32)|0); - $37 = tempRet0; - $38 = $11; - $39 = $38; - HEAP32[$39>>2] = $36; - $40 = (($38) + 4)|0; - $41 = $40; - HEAP32[$41>>2] = $37; - $42 = (($i$02) + 1)|0; - $exitcond = ($42|0)==(10); - if ($exitcond) { - break; - } else { - $i$02 = $42; - } - } - return; -} -function _fmonty($x2,$z2,$x3,$z3,$x,$z,$xprime,$zprime,$qmqp) { - $x2 = $x2|0; - $z2 = $z2|0; - $x3 = $x3|0; - $z3 = $z3|0; - $x = $x|0; - $z = $z|0; - $xprime = $xprime|0; - $zprime = $zprime|0; - $qmqp = $qmqp|0; - var $0 = 0, $origx = 0, $origxprime = 0, $xx = 0, $xxprime = 0, $xxxprime = 0, $zz = 0, $zzprime = 0, $zzz = 0, $zzzprime = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 1232|0; - $origx = sp + 1144|0; - $origxprime = sp + 1064|0; - $zzz = sp + 912|0; - $xx = sp + 760|0; - $zz = sp + 608|0; - $xxprime = sp + 456|0; - $zzprime = sp + 304|0; - $zzzprime = sp + 152|0; - $xxxprime = sp; - dest=$origx; src=$x; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - _fsum($x,$z); - _fdifference($z,$origx); - dest=$origxprime; src=$xprime; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - _fsum($xprime,$zprime); - _fdifference($zprime,$origxprime); - _fproduct($xxprime,$xprime,$z); - _fproduct($zzprime,$x,$zprime); - _freduce_degree($xxprime); - _freduce_coefficients($xxprime); - _freduce_degree($zzprime); - _freduce_coefficients($zzprime); - dest=$origxprime; src=$xxprime; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - _fsum($xxprime,$zzprime); - _fdifference($zzprime,$origxprime); - _fsquare($xxxprime,$xxprime); - _fsquare($zzzprime,$zzprime); - _fproduct($zzprime,$zzzprime,$qmqp); - _freduce_degree($zzprime); - _freduce_coefficients($zzprime); - dest=$x3; src=$xxxprime; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - dest=$z3; src=$zzprime; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - _fsquare($xx,$x); - _fsquare($zz,$z); - _fproduct($x2,$xx,$zz); - _freduce_degree($x2); - _freduce_coefficients($x2); - _fdifference($zz,$xx); - $0 = ((($zzz)) + 80|0); - dest=$0; stop=dest+72|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); - _fscalar_product($zzz,$zz); - _freduce_coefficients($zzz); - _fsum($zzz,$xx); - _fproduct($z2,$zz,$zzz); - _freduce_degree($z2); - _freduce_coefficients($z2); - STACKTOP = sp;return; -} -function _fsum($output,$in) { - $output = $output|0; - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; - var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; - var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; - var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; - var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + $2 = $2|0; + $3 = $3|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0; + var $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0; + var $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0; + var $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0; + var $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0; + var $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0; + var $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0; + var $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0; + var $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0; + var $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0; + var $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; + var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0; + var $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0; + var $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0; + var label = 0, sp = 0; sp = STACKTOP; - $0 = $output; - $1 = $0; - $2 = HEAP32[$1>>2]|0; - $3 = (($0) + 4)|0; - $4 = $3; - $5 = HEAP32[$4>>2]|0; - $6 = $in; + $4 = (_i64Subtract(0,0,($2|0),($3|0))|0); + $5 = tempRet0; + $6 = $0; $7 = $6; $8 = HEAP32[$7>>2]|0; $9 = (($6) + 4)|0; $10 = $9; $11 = HEAP32[$10>>2]|0; - $12 = (_i64Add(($8|0),($11|0),($2|0),($5|0))|0); - $13 = tempRet0; - $14 = $output; - $15 = $14; - HEAP32[$15>>2] = $12; - $16 = (($14) + 4)|0; - $17 = $16; - HEAP32[$17>>2] = $13; - $18 = ((($output)) + 8|0); - $19 = $18; - $20 = $19; - $21 = HEAP32[$20>>2]|0; - $22 = (($19) + 4)|0; - $23 = $22; - $24 = HEAP32[$23>>2]|0; - $25 = ((($in)) + 8|0); + $12 = $1; + $13 = $12; + $14 = HEAP32[$13>>2]|0; + $15 = (($12) + 4)|0; + $16 = $15; + $17 = HEAP32[$16>>2]|0; + $18 = $14 ^ $8; + $19 = $17 ^ $11; + $20 = $18 & $4; + $21 = $19 & $5; + $22 = $20 ^ $8; + $21 ^ $11; + $23 = (_bitshift64Ashr(0,($22|0),32)|0); + $24 = tempRet0; + $25 = $0; $26 = $25; - $27 = $26; - $28 = HEAP32[$27>>2]|0; - $29 = (($26) + 4)|0; + HEAP32[$26>>2] = $23; + $27 = (($25) + 4)|0; + $28 = $27; + HEAP32[$28>>2] = $24; + $29 = $1; $30 = $29; $31 = HEAP32[$30>>2]|0; - $32 = (_i64Add(($28|0),($31|0),($21|0),($24|0))|0); - $33 = tempRet0; - $34 = $18; - $35 = $34; - HEAP32[$35>>2] = $32; - $36 = (($34) + 4)|0; - $37 = $36; - HEAP32[$37>>2] = $33; - $38 = ((($output)) + 16|0); + $32 = (($29) + 4)|0; + $33 = $32; + $34 = HEAP32[$33>>2]|0; + $35 = $31 ^ $20; + $34 ^ $21; + $36 = (_bitshift64Ashr(0,($35|0),32)|0); + $37 = tempRet0; + $38 = $1; $39 = $38; - $40 = $39; - $41 = HEAP32[$40>>2]|0; - $42 = (($39) + 4)|0; + HEAP32[$39>>2] = $36; + $40 = (($38) + 4)|0; + $41 = $40; + HEAP32[$41>>2] = $37; + $42 = ((($0)) + 8|0); $43 = $42; - $44 = HEAP32[$43>>2]|0; - $45 = ((($in)) + 16|0); - $46 = $45; + $44 = $43; + $45 = HEAP32[$44>>2]|0; + $46 = (($43) + 4)|0; $47 = $46; $48 = HEAP32[$47>>2]|0; - $49 = (($46) + 4)|0; + $49 = ((($1)) + 8|0); $50 = $49; - $51 = HEAP32[$50>>2]|0; - $52 = (_i64Add(($48|0),($51|0),($41|0),($44|0))|0); - $53 = tempRet0; - $54 = $38; - $55 = $54; - HEAP32[$55>>2] = $52; - $56 = (($54) + 4)|0; - $57 = $56; - HEAP32[$57>>2] = $53; - $58 = ((($output)) + 24|0); - $59 = $58; - $60 = $59; - $61 = HEAP32[$60>>2]|0; - $62 = (($59) + 4)|0; - $63 = $62; - $64 = HEAP32[$63>>2]|0; - $65 = ((($in)) + 24|0); + $51 = $50; + $52 = HEAP32[$51>>2]|0; + $53 = (($50) + 4)|0; + $54 = $53; + $55 = HEAP32[$54>>2]|0; + $56 = $52 ^ $45; + $57 = $55 ^ $48; + $58 = $56 & $4; + $59 = $57 & $5; + $60 = $58 ^ $45; + $59 ^ $48; + $61 = (_bitshift64Ashr(0,($60|0),32)|0); + $62 = tempRet0; + $63 = $42; + $64 = $63; + HEAP32[$64>>2] = $61; + $65 = (($63) + 4)|0; $66 = $65; - $67 = $66; - $68 = HEAP32[$67>>2]|0; - $69 = (($66) + 4)|0; - $70 = $69; - $71 = HEAP32[$70>>2]|0; - $72 = (_i64Add(($68|0),($71|0),($61|0),($64|0))|0); - $73 = tempRet0; - $74 = $58; - $75 = $74; - HEAP32[$75>>2] = $72; - $76 = (($74) + 4)|0; + HEAP32[$66>>2] = $62; + $67 = $49; + $68 = $67; + $69 = HEAP32[$68>>2]|0; + $70 = (($67) + 4)|0; + $71 = $70; + $72 = HEAP32[$71>>2]|0; + $73 = $69 ^ $58; + $72 ^ $59; + $74 = (_bitshift64Ashr(0,($73|0),32)|0); + $75 = tempRet0; + $76 = $49; $77 = $76; - HEAP32[$77>>2] = $73; - $78 = ((($output)) + 32|0); + HEAP32[$77>>2] = $74; + $78 = (($76) + 4)|0; $79 = $78; - $80 = $79; - $81 = HEAP32[$80>>2]|0; - $82 = (($79) + 4)|0; - $83 = $82; - $84 = HEAP32[$83>>2]|0; - $85 = ((($in)) + 32|0); - $86 = $85; - $87 = $86; - $88 = HEAP32[$87>>2]|0; - $89 = (($86) + 4)|0; - $90 = $89; - $91 = HEAP32[$90>>2]|0; - $92 = (_i64Add(($88|0),($91|0),($81|0),($84|0))|0); - $93 = tempRet0; - $94 = $78; - $95 = $94; - HEAP32[$95>>2] = $92; - $96 = (($94) + 4)|0; - $97 = $96; - HEAP32[$97>>2] = $93; - $98 = ((($output)) + 40|0); - $99 = $98; - $100 = $99; - $101 = HEAP32[$100>>2]|0; - $102 = (($99) + 4)|0; - $103 = $102; - $104 = HEAP32[$103>>2]|0; - $105 = ((($in)) + 40|0); + HEAP32[$79>>2] = $75; + $80 = ((($0)) + 16|0); + $81 = $80; + $82 = $81; + $83 = HEAP32[$82>>2]|0; + $84 = (($81) + 4)|0; + $85 = $84; + $86 = HEAP32[$85>>2]|0; + $87 = ((($1)) + 16|0); + $88 = $87; + $89 = $88; + $90 = HEAP32[$89>>2]|0; + $91 = (($88) + 4)|0; + $92 = $91; + $93 = HEAP32[$92>>2]|0; + $94 = $90 ^ $83; + $95 = $93 ^ $86; + $96 = $94 & $4; + $97 = $95 & $5; + $98 = $96 ^ $83; + $97 ^ $86; + $99 = (_bitshift64Ashr(0,($98|0),32)|0); + $100 = tempRet0; + $101 = $80; + $102 = $101; + HEAP32[$102>>2] = $99; + $103 = (($101) + 4)|0; + $104 = $103; + HEAP32[$104>>2] = $100; + $105 = $87; $106 = $105; - $107 = $106; - $108 = HEAP32[$107>>2]|0; - $109 = (($106) + 4)|0; - $110 = $109; - $111 = HEAP32[$110>>2]|0; - $112 = (_i64Add(($108|0),($111|0),($101|0),($104|0))|0); + $107 = HEAP32[$106>>2]|0; + $108 = (($105) + 4)|0; + $109 = $108; + $110 = HEAP32[$109>>2]|0; + $111 = $107 ^ $96; + $110 ^ $97; + $112 = (_bitshift64Ashr(0,($111|0),32)|0); $113 = tempRet0; - $114 = $98; + $114 = $87; $115 = $114; HEAP32[$115>>2] = $112; $116 = (($114) + 4)|0; $117 = $116; HEAP32[$117>>2] = $113; - $118 = ((($output)) + 48|0); + $118 = ((($0)) + 24|0); $119 = $118; $120 = $119; $121 = HEAP32[$120>>2]|0; $122 = (($119) + 4)|0; $123 = $122; $124 = HEAP32[$123>>2]|0; - $125 = ((($in)) + 48|0); + $125 = ((($1)) + 24|0); $126 = $125; $127 = $126; $128 = HEAP32[$127>>2]|0; $129 = (($126) + 4)|0; $130 = $129; $131 = HEAP32[$130>>2]|0; - $132 = (_i64Add(($128|0),($131|0),($121|0),($124|0))|0); - $133 = tempRet0; - $134 = $118; - $135 = $134; - HEAP32[$135>>2] = $132; - $136 = (($134) + 4)|0; - $137 = $136; - HEAP32[$137>>2] = $133; - $138 = ((($output)) + 56|0); - $139 = $138; + $132 = $128 ^ $121; + $133 = $131 ^ $124; + $134 = $132 & $4; + $135 = $133 & $5; + $136 = $134 ^ $121; + $135 ^ $124; + $137 = (_bitshift64Ashr(0,($136|0),32)|0); + $138 = tempRet0; + $139 = $118; $140 = $139; - $141 = HEAP32[$140>>2]|0; - $142 = (($139) + 4)|0; - $143 = $142; - $144 = HEAP32[$143>>2]|0; - $145 = ((($in)) + 56|0); - $146 = $145; + HEAP32[$140>>2] = $137; + $141 = (($139) + 4)|0; + $142 = $141; + HEAP32[$142>>2] = $138; + $143 = $125; + $144 = $143; + $145 = HEAP32[$144>>2]|0; + $146 = (($143) + 4)|0; $147 = $146; $148 = HEAP32[$147>>2]|0; - $149 = (($146) + 4)|0; - $150 = $149; - $151 = HEAP32[$150>>2]|0; - $152 = (_i64Add(($148|0),($151|0),($141|0),($144|0))|0); - $153 = tempRet0; - $154 = $138; + $149 = $145 ^ $134; + $148 ^ $135; + $150 = (_bitshift64Ashr(0,($149|0),32)|0); + $151 = tempRet0; + $152 = $125; + $153 = $152; + HEAP32[$153>>2] = $150; + $154 = (($152) + 4)|0; $155 = $154; - HEAP32[$155>>2] = $152; - $156 = (($154) + 4)|0; + HEAP32[$155>>2] = $151; + $156 = ((($0)) + 32|0); $157 = $156; - HEAP32[$157>>2] = $153; - $158 = ((($output)) + 64|0); - $159 = $158; - $160 = $159; - $161 = HEAP32[$160>>2]|0; - $162 = (($159) + 4)|0; - $163 = $162; - $164 = HEAP32[$163>>2]|0; - $165 = ((($in)) + 64|0); - $166 = $165; - $167 = $166; - $168 = HEAP32[$167>>2]|0; - $169 = (($166) + 4)|0; - $170 = $169; - $171 = HEAP32[$170>>2]|0; - $172 = (_i64Add(($168|0),($171|0),($161|0),($164|0))|0); - $173 = tempRet0; - $174 = $158; - $175 = $174; - HEAP32[$175>>2] = $172; - $176 = (($174) + 4)|0; - $177 = $176; - HEAP32[$177>>2] = $173; - $178 = ((($output)) + 72|0); - $179 = $178; + $158 = $157; + $159 = HEAP32[$158>>2]|0; + $160 = (($157) + 4)|0; + $161 = $160; + $162 = HEAP32[$161>>2]|0; + $163 = ((($1)) + 32|0); + $164 = $163; + $165 = $164; + $166 = HEAP32[$165>>2]|0; + $167 = (($164) + 4)|0; + $168 = $167; + $169 = HEAP32[$168>>2]|0; + $170 = $166 ^ $159; + $171 = $169 ^ $162; + $172 = $170 & $4; + $173 = $171 & $5; + $174 = $172 ^ $159; + $173 ^ $162; + $175 = (_bitshift64Ashr(0,($174|0),32)|0); + $176 = tempRet0; + $177 = $156; + $178 = $177; + HEAP32[$178>>2] = $175; + $179 = (($177) + 4)|0; $180 = $179; - $181 = HEAP32[$180>>2]|0; - $182 = (($179) + 4)|0; - $183 = $182; - $184 = HEAP32[$183>>2]|0; - $185 = ((($in)) + 72|0); - $186 = $185; - $187 = $186; - $188 = HEAP32[$187>>2]|0; - $189 = (($186) + 4)|0; - $190 = $189; - $191 = HEAP32[$190>>2]|0; - $192 = (_i64Add(($188|0),($191|0),($181|0),($184|0))|0); - $193 = tempRet0; - $194 = $178; + HEAP32[$180>>2] = $176; + $181 = $163; + $182 = $181; + $183 = HEAP32[$182>>2]|0; + $184 = (($181) + 4)|0; + $185 = $184; + $186 = HEAP32[$185>>2]|0; + $187 = $183 ^ $172; + $186 ^ $173; + $188 = (_bitshift64Ashr(0,($187|0),32)|0); + $189 = tempRet0; + $190 = $163; + $191 = $190; + HEAP32[$191>>2] = $188; + $192 = (($190) + 4)|0; + $193 = $192; + HEAP32[$193>>2] = $189; + $194 = ((($0)) + 40|0); $195 = $194; - HEAP32[$195>>2] = $192; - $196 = (($194) + 4)|0; - $197 = $196; - HEAP32[$197>>2] = $193; + $196 = $195; + $197 = HEAP32[$196>>2]|0; + $198 = (($195) + 4)|0; + $199 = $198; + $200 = HEAP32[$199>>2]|0; + $201 = ((($1)) + 40|0); + $202 = $201; + $203 = $202; + $204 = HEAP32[$203>>2]|0; + $205 = (($202) + 4)|0; + $206 = $205; + $207 = HEAP32[$206>>2]|0; + $208 = $204 ^ $197; + $209 = $207 ^ $200; + $210 = $208 & $4; + $211 = $209 & $5; + $212 = $210 ^ $197; + $211 ^ $200; + $213 = (_bitshift64Ashr(0,($212|0),32)|0); + $214 = tempRet0; + $215 = $194; + $216 = $215; + HEAP32[$216>>2] = $213; + $217 = (($215) + 4)|0; + $218 = $217; + HEAP32[$218>>2] = $214; + $219 = $201; + $220 = $219; + $221 = HEAP32[$220>>2]|0; + $222 = (($219) + 4)|0; + $223 = $222; + $224 = HEAP32[$223>>2]|0; + $225 = $221 ^ $210; + $224 ^ $211; + $226 = (_bitshift64Ashr(0,($225|0),32)|0); + $227 = tempRet0; + $228 = $201; + $229 = $228; + HEAP32[$229>>2] = $226; + $230 = (($228) + 4)|0; + $231 = $230; + HEAP32[$231>>2] = $227; + $232 = ((($0)) + 48|0); + $233 = $232; + $234 = $233; + $235 = HEAP32[$234>>2]|0; + $236 = (($233) + 4)|0; + $237 = $236; + $238 = HEAP32[$237>>2]|0; + $239 = ((($1)) + 48|0); + $240 = $239; + $241 = $240; + $242 = HEAP32[$241>>2]|0; + $243 = (($240) + 4)|0; + $244 = $243; + $245 = HEAP32[$244>>2]|0; + $246 = $242 ^ $235; + $247 = $245 ^ $238; + $248 = $246 & $4; + $249 = $247 & $5; + $250 = $248 ^ $235; + $249 ^ $238; + $251 = (_bitshift64Ashr(0,($250|0),32)|0); + $252 = tempRet0; + $253 = $232; + $254 = $253; + HEAP32[$254>>2] = $251; + $255 = (($253) + 4)|0; + $256 = $255; + HEAP32[$256>>2] = $252; + $257 = $239; + $258 = $257; + $259 = HEAP32[$258>>2]|0; + $260 = (($257) + 4)|0; + $261 = $260; + $262 = HEAP32[$261>>2]|0; + $263 = $259 ^ $248; + $262 ^ $249; + $264 = (_bitshift64Ashr(0,($263|0),32)|0); + $265 = tempRet0; + $266 = $239; + $267 = $266; + HEAP32[$267>>2] = $264; + $268 = (($266) + 4)|0; + $269 = $268; + HEAP32[$269>>2] = $265; + $270 = ((($0)) + 56|0); + $271 = $270; + $272 = $271; + $273 = HEAP32[$272>>2]|0; + $274 = (($271) + 4)|0; + $275 = $274; + $276 = HEAP32[$275>>2]|0; + $277 = ((($1)) + 56|0); + $278 = $277; + $279 = $278; + $280 = HEAP32[$279>>2]|0; + $281 = (($278) + 4)|0; + $282 = $281; + $283 = HEAP32[$282>>2]|0; + $284 = $280 ^ $273; + $285 = $283 ^ $276; + $286 = $284 & $4; + $287 = $285 & $5; + $288 = $286 ^ $273; + $287 ^ $276; + $289 = (_bitshift64Ashr(0,($288|0),32)|0); + $290 = tempRet0; + $291 = $270; + $292 = $291; + HEAP32[$292>>2] = $289; + $293 = (($291) + 4)|0; + $294 = $293; + HEAP32[$294>>2] = $290; + $295 = $277; + $296 = $295; + $297 = HEAP32[$296>>2]|0; + $298 = (($295) + 4)|0; + $299 = $298; + $300 = HEAP32[$299>>2]|0; + $301 = $297 ^ $286; + $300 ^ $287; + $302 = (_bitshift64Ashr(0,($301|0),32)|0); + $303 = tempRet0; + $304 = $277; + $305 = $304; + HEAP32[$305>>2] = $302; + $306 = (($304) + 4)|0; + $307 = $306; + HEAP32[$307>>2] = $303; + $308 = ((($0)) + 64|0); + $309 = $308; + $310 = $309; + $311 = HEAP32[$310>>2]|0; + $312 = (($309) + 4)|0; + $313 = $312; + $314 = HEAP32[$313>>2]|0; + $315 = ((($1)) + 64|0); + $316 = $315; + $317 = $316; + $318 = HEAP32[$317>>2]|0; + $319 = (($316) + 4)|0; + $320 = $319; + $321 = HEAP32[$320>>2]|0; + $322 = $318 ^ $311; + $323 = $321 ^ $314; + $324 = $322 & $4; + $325 = $323 & $5; + $326 = $324 ^ $311; + $325 ^ $314; + $327 = (_bitshift64Ashr(0,($326|0),32)|0); + $328 = tempRet0; + $329 = $308; + $330 = $329; + HEAP32[$330>>2] = $327; + $331 = (($329) + 4)|0; + $332 = $331; + HEAP32[$332>>2] = $328; + $333 = $315; + $334 = $333; + $335 = HEAP32[$334>>2]|0; + $336 = (($333) + 4)|0; + $337 = $336; + $338 = HEAP32[$337>>2]|0; + $339 = $335 ^ $324; + $338 ^ $325; + $340 = (_bitshift64Ashr(0,($339|0),32)|0); + $341 = tempRet0; + $342 = $315; + $343 = $342; + HEAP32[$343>>2] = $340; + $344 = (($342) + 4)|0; + $345 = $344; + HEAP32[$345>>2] = $341; + $346 = ((($0)) + 72|0); + $347 = $346; + $348 = $347; + $349 = HEAP32[$348>>2]|0; + $350 = (($347) + 4)|0; + $351 = $350; + $352 = HEAP32[$351>>2]|0; + $353 = ((($1)) + 72|0); + $354 = $353; + $355 = $354; + $356 = HEAP32[$355>>2]|0; + $357 = (($354) + 4)|0; + $358 = $357; + $359 = HEAP32[$358>>2]|0; + $360 = $356 ^ $349; + $361 = $359 ^ $352; + $362 = $360 & $4; + $363 = $361 & $5; + $364 = $362 ^ $349; + $363 ^ $352; + $365 = (_bitshift64Ashr(0,($364|0),32)|0); + $366 = tempRet0; + $367 = $346; + $368 = $367; + HEAP32[$368>>2] = $365; + $369 = (($367) + 4)|0; + $370 = $369; + HEAP32[$370>>2] = $366; + $371 = $353; + $372 = $371; + $373 = HEAP32[$372>>2]|0; + $374 = (($371) + 4)|0; + $375 = $374; + $376 = HEAP32[$375>>2]|0; + $377 = $373 ^ $362; + $376 ^ $363; + $378 = (_bitshift64Ashr(0,($377|0),32)|0); + $379 = tempRet0; + $380 = $353; + $381 = $380; + HEAP32[$381>>2] = $378; + $382 = (($380) + 4)|0; + $383 = $382; + HEAP32[$383>>2] = $379; return; } -function _fdifference($output,$in) { - $output = $output|0; - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; +function _fmonty($0,$1,$2,$3,$4,$5,$6,$7,$8) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + $4 = $4|0; + $5 = $5|0; + $6 = $6|0; + $7 = $7|0; + $8 = $8|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $9 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 1232|0; + $9 = sp + 1144|0; + $10 = sp + 1064|0; + $11 = sp + 912|0; + $12 = sp + 760|0; + $13 = sp + 608|0; + $14 = sp + 456|0; + $15 = sp + 304|0; + $16 = sp + 152|0; + $17 = sp; + dest=$9; src=$4; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsum($4,$5); + _fdifference($5,$9); + dest=$10; src=$6; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsum($6,$7); + _fdifference($7,$10); + _fproduct($14,$6,$5); + _fproduct($15,$4,$7); + _freduce_degree($14); + _freduce_coefficients($14); + _freduce_degree($15); + _freduce_coefficients($15); + dest=$10; src=$14; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsum($14,$15); + _fdifference($15,$10); + _fsquare($17,$14); + _fsquare($16,$15); + _fproduct($15,$16,$8); + _freduce_degree($15); + _freduce_coefficients($15); + dest=$2; src=$17; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + dest=$3; src=$15; stop=dest+80|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + _fsquare($12,$4); + _fsquare($13,$5); + _fproduct($0,$12,$13); + _freduce_degree($0); + _freduce_coefficients($0); + _fdifference($13,$12); + $18 = ((($11)) + 80|0); + dest=$18; stop=dest+72|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); + _fscalar_product($11,$13); + _freduce_coefficients($11); + _fsum($11,$12); + _fproduct($1,$13,$11); + _freduce_degree($1); + _freduce_coefficients($1); + STACKTOP = sp;return; +} +function _fsum($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = $in; - $1 = $0; - $2 = HEAP32[$1>>2]|0; - $3 = (($0) + 4)|0; - $4 = $3; - $5 = HEAP32[$4>>2]|0; - $6 = $output; - $7 = $6; - $8 = HEAP32[$7>>2]|0; - $9 = (($6) + 4)|0; - $10 = $9; - $11 = HEAP32[$10>>2]|0; - $12 = (_i64Subtract(($2|0),($5|0),($8|0),($11|0))|0); - $13 = tempRet0; - $14 = $output; - $15 = $14; - HEAP32[$15>>2] = $12; - $16 = (($14) + 4)|0; + $2 = $0; + $3 = $2; + $4 = HEAP32[$3>>2]|0; + $5 = (($2) + 4)|0; + $6 = $5; + $7 = HEAP32[$6>>2]|0; + $8 = $1; + $9 = $8; + $10 = HEAP32[$9>>2]|0; + $11 = (($8) + 4)|0; + $12 = $11; + $13 = HEAP32[$12>>2]|0; + $14 = (_i64Add(($10|0),($13|0),($4|0),($7|0))|0); + $15 = tempRet0; + $16 = $0; $17 = $16; - HEAP32[$17>>2] = $13; - $18 = ((($in)) + 8|0); + HEAP32[$17>>2] = $14; + $18 = (($16) + 4)|0; $19 = $18; - $20 = $19; - $21 = HEAP32[$20>>2]|0; - $22 = (($19) + 4)|0; - $23 = $22; - $24 = HEAP32[$23>>2]|0; - $25 = ((($output)) + 8|0); - $26 = $25; - $27 = $26; - $28 = HEAP32[$27>>2]|0; - $29 = (($26) + 4)|0; - $30 = $29; - $31 = HEAP32[$30>>2]|0; - $32 = (_i64Subtract(($21|0),($24|0),($28|0),($31|0))|0); - $33 = tempRet0; - $34 = $25; - $35 = $34; - HEAP32[$35>>2] = $32; - $36 = (($34) + 4)|0; + HEAP32[$19>>2] = $15; + $20 = ((($0)) + 8|0); + $21 = $20; + $22 = $21; + $23 = HEAP32[$22>>2]|0; + $24 = (($21) + 4)|0; + $25 = $24; + $26 = HEAP32[$25>>2]|0; + $27 = ((($1)) + 8|0); + $28 = $27; + $29 = $28; + $30 = HEAP32[$29>>2]|0; + $31 = (($28) + 4)|0; + $32 = $31; + $33 = HEAP32[$32>>2]|0; + $34 = (_i64Add(($30|0),($33|0),($23|0),($26|0))|0); + $35 = tempRet0; + $36 = $20; $37 = $36; - HEAP32[$37>>2] = $33; - $38 = ((($in)) + 16|0); + HEAP32[$37>>2] = $34; + $38 = (($36) + 4)|0; $39 = $38; - $40 = $39; - $41 = HEAP32[$40>>2]|0; - $42 = (($39) + 4)|0; - $43 = $42; - $44 = HEAP32[$43>>2]|0; - $45 = ((($output)) + 16|0); - $46 = $45; - $47 = $46; - $48 = HEAP32[$47>>2]|0; - $49 = (($46) + 4)|0; - $50 = $49; - $51 = HEAP32[$50>>2]|0; - $52 = (_i64Subtract(($41|0),($44|0),($48|0),($51|0))|0); - $53 = tempRet0; - $54 = $45; - $55 = $54; - HEAP32[$55>>2] = $52; - $56 = (($54) + 4)|0; + HEAP32[$39>>2] = $35; + $40 = ((($0)) + 16|0); + $41 = $40; + $42 = $41; + $43 = HEAP32[$42>>2]|0; + $44 = (($41) + 4)|0; + $45 = $44; + $46 = HEAP32[$45>>2]|0; + $47 = ((($1)) + 16|0); + $48 = $47; + $49 = $48; + $50 = HEAP32[$49>>2]|0; + $51 = (($48) + 4)|0; + $52 = $51; + $53 = HEAP32[$52>>2]|0; + $54 = (_i64Add(($50|0),($53|0),($43|0),($46|0))|0); + $55 = tempRet0; + $56 = $40; $57 = $56; - HEAP32[$57>>2] = $53; - $58 = ((($in)) + 24|0); + HEAP32[$57>>2] = $54; + $58 = (($56) + 4)|0; $59 = $58; - $60 = $59; - $61 = HEAP32[$60>>2]|0; - $62 = (($59) + 4)|0; - $63 = $62; - $64 = HEAP32[$63>>2]|0; - $65 = ((($output)) + 24|0); - $66 = $65; - $67 = $66; - $68 = HEAP32[$67>>2]|0; - $69 = (($66) + 4)|0; - $70 = $69; - $71 = HEAP32[$70>>2]|0; - $72 = (_i64Subtract(($61|0),($64|0),($68|0),($71|0))|0); - $73 = tempRet0; - $74 = $65; - $75 = $74; - HEAP32[$75>>2] = $72; - $76 = (($74) + 4)|0; + HEAP32[$59>>2] = $55; + $60 = ((($0)) + 24|0); + $61 = $60; + $62 = $61; + $63 = HEAP32[$62>>2]|0; + $64 = (($61) + 4)|0; + $65 = $64; + $66 = HEAP32[$65>>2]|0; + $67 = ((($1)) + 24|0); + $68 = $67; + $69 = $68; + $70 = HEAP32[$69>>2]|0; + $71 = (($68) + 4)|0; + $72 = $71; + $73 = HEAP32[$72>>2]|0; + $74 = (_i64Add(($70|0),($73|0),($63|0),($66|0))|0); + $75 = tempRet0; + $76 = $60; $77 = $76; - HEAP32[$77>>2] = $73; - $78 = ((($in)) + 32|0); + HEAP32[$77>>2] = $74; + $78 = (($76) + 4)|0; $79 = $78; - $80 = $79; - $81 = HEAP32[$80>>2]|0; - $82 = (($79) + 4)|0; - $83 = $82; - $84 = HEAP32[$83>>2]|0; - $85 = ((($output)) + 32|0); - $86 = $85; - $87 = $86; - $88 = HEAP32[$87>>2]|0; - $89 = (($86) + 4)|0; - $90 = $89; - $91 = HEAP32[$90>>2]|0; - $92 = (_i64Subtract(($81|0),($84|0),($88|0),($91|0))|0); - $93 = tempRet0; - $94 = $85; - $95 = $94; - HEAP32[$95>>2] = $92; - $96 = (($94) + 4)|0; + HEAP32[$79>>2] = $75; + $80 = ((($0)) + 32|0); + $81 = $80; + $82 = $81; + $83 = HEAP32[$82>>2]|0; + $84 = (($81) + 4)|0; + $85 = $84; + $86 = HEAP32[$85>>2]|0; + $87 = ((($1)) + 32|0); + $88 = $87; + $89 = $88; + $90 = HEAP32[$89>>2]|0; + $91 = (($88) + 4)|0; + $92 = $91; + $93 = HEAP32[$92>>2]|0; + $94 = (_i64Add(($90|0),($93|0),($83|0),($86|0))|0); + $95 = tempRet0; + $96 = $80; $97 = $96; - HEAP32[$97>>2] = $93; - $98 = ((($in)) + 40|0); + HEAP32[$97>>2] = $94; + $98 = (($96) + 4)|0; $99 = $98; - $100 = $99; - $101 = HEAP32[$100>>2]|0; - $102 = (($99) + 4)|0; - $103 = $102; - $104 = HEAP32[$103>>2]|0; - $105 = ((($output)) + 40|0); - $106 = $105; - $107 = $106; - $108 = HEAP32[$107>>2]|0; - $109 = (($106) + 4)|0; - $110 = $109; - $111 = HEAP32[$110>>2]|0; - $112 = (_i64Subtract(($101|0),($104|0),($108|0),($111|0))|0); - $113 = tempRet0; - $114 = $105; - $115 = $114; - HEAP32[$115>>2] = $112; - $116 = (($114) + 4)|0; + HEAP32[$99>>2] = $95; + $100 = ((($0)) + 40|0); + $101 = $100; + $102 = $101; + $103 = HEAP32[$102>>2]|0; + $104 = (($101) + 4)|0; + $105 = $104; + $106 = HEAP32[$105>>2]|0; + $107 = ((($1)) + 40|0); + $108 = $107; + $109 = $108; + $110 = HEAP32[$109>>2]|0; + $111 = (($108) + 4)|0; + $112 = $111; + $113 = HEAP32[$112>>2]|0; + $114 = (_i64Add(($110|0),($113|0),($103|0),($106|0))|0); + $115 = tempRet0; + $116 = $100; $117 = $116; - HEAP32[$117>>2] = $113; - $118 = ((($in)) + 48|0); + HEAP32[$117>>2] = $114; + $118 = (($116) + 4)|0; $119 = $118; - $120 = $119; - $121 = HEAP32[$120>>2]|0; - $122 = (($119) + 4)|0; - $123 = $122; - $124 = HEAP32[$123>>2]|0; - $125 = ((($output)) + 48|0); - $126 = $125; - $127 = $126; - $128 = HEAP32[$127>>2]|0; - $129 = (($126) + 4)|0; - $130 = $129; - $131 = HEAP32[$130>>2]|0; - $132 = (_i64Subtract(($121|0),($124|0),($128|0),($131|0))|0); - $133 = tempRet0; - $134 = $125; - $135 = $134; - HEAP32[$135>>2] = $132; - $136 = (($134) + 4)|0; + HEAP32[$119>>2] = $115; + $120 = ((($0)) + 48|0); + $121 = $120; + $122 = $121; + $123 = HEAP32[$122>>2]|0; + $124 = (($121) + 4)|0; + $125 = $124; + $126 = HEAP32[$125>>2]|0; + $127 = ((($1)) + 48|0); + $128 = $127; + $129 = $128; + $130 = HEAP32[$129>>2]|0; + $131 = (($128) + 4)|0; + $132 = $131; + $133 = HEAP32[$132>>2]|0; + $134 = (_i64Add(($130|0),($133|0),($123|0),($126|0))|0); + $135 = tempRet0; + $136 = $120; $137 = $136; - HEAP32[$137>>2] = $133; - $138 = ((($in)) + 56|0); + HEAP32[$137>>2] = $134; + $138 = (($136) + 4)|0; $139 = $138; - $140 = $139; - $141 = HEAP32[$140>>2]|0; - $142 = (($139) + 4)|0; - $143 = $142; - $144 = HEAP32[$143>>2]|0; - $145 = ((($output)) + 56|0); - $146 = $145; - $147 = $146; - $148 = HEAP32[$147>>2]|0; - $149 = (($146) + 4)|0; - $150 = $149; - $151 = HEAP32[$150>>2]|0; - $152 = (_i64Subtract(($141|0),($144|0),($148|0),($151|0))|0); - $153 = tempRet0; - $154 = $145; - $155 = $154; - HEAP32[$155>>2] = $152; - $156 = (($154) + 4)|0; + HEAP32[$139>>2] = $135; + $140 = ((($0)) + 56|0); + $141 = $140; + $142 = $141; + $143 = HEAP32[$142>>2]|0; + $144 = (($141) + 4)|0; + $145 = $144; + $146 = HEAP32[$145>>2]|0; + $147 = ((($1)) + 56|0); + $148 = $147; + $149 = $148; + $150 = HEAP32[$149>>2]|0; + $151 = (($148) + 4)|0; + $152 = $151; + $153 = HEAP32[$152>>2]|0; + $154 = (_i64Add(($150|0),($153|0),($143|0),($146|0))|0); + $155 = tempRet0; + $156 = $140; $157 = $156; - HEAP32[$157>>2] = $153; - $158 = ((($in)) + 64|0); + HEAP32[$157>>2] = $154; + $158 = (($156) + 4)|0; $159 = $158; - $160 = $159; - $161 = HEAP32[$160>>2]|0; - $162 = (($159) + 4)|0; - $163 = $162; - $164 = HEAP32[$163>>2]|0; - $165 = ((($output)) + 64|0); - $166 = $165; - $167 = $166; - $168 = HEAP32[$167>>2]|0; - $169 = (($166) + 4)|0; - $170 = $169; - $171 = HEAP32[$170>>2]|0; - $172 = (_i64Subtract(($161|0),($164|0),($168|0),($171|0))|0); - $173 = tempRet0; - $174 = $165; - $175 = $174; - HEAP32[$175>>2] = $172; - $176 = (($174) + 4)|0; + HEAP32[$159>>2] = $155; + $160 = ((($0)) + 64|0); + $161 = $160; + $162 = $161; + $163 = HEAP32[$162>>2]|0; + $164 = (($161) + 4)|0; + $165 = $164; + $166 = HEAP32[$165>>2]|0; + $167 = ((($1)) + 64|0); + $168 = $167; + $169 = $168; + $170 = HEAP32[$169>>2]|0; + $171 = (($168) + 4)|0; + $172 = $171; + $173 = HEAP32[$172>>2]|0; + $174 = (_i64Add(($170|0),($173|0),($163|0),($166|0))|0); + $175 = tempRet0; + $176 = $160; $177 = $176; - HEAP32[$177>>2] = $173; - $178 = ((($in)) + 72|0); + HEAP32[$177>>2] = $174; + $178 = (($176) + 4)|0; $179 = $178; - $180 = $179; - $181 = HEAP32[$180>>2]|0; - $182 = (($179) + 4)|0; - $183 = $182; - $184 = HEAP32[$183>>2]|0; - $185 = ((($output)) + 72|0); - $186 = $185; - $187 = $186; - $188 = HEAP32[$187>>2]|0; - $189 = (($186) + 4)|0; - $190 = $189; - $191 = HEAP32[$190>>2]|0; - $192 = (_i64Subtract(($181|0),($184|0),($188|0),($191|0))|0); - $193 = tempRet0; - $194 = $185; - $195 = $194; - HEAP32[$195>>2] = $192; - $196 = (($194) + 4)|0; + HEAP32[$179>>2] = $175; + $180 = ((($0)) + 72|0); + $181 = $180; + $182 = $181; + $183 = HEAP32[$182>>2]|0; + $184 = (($181) + 4)|0; + $185 = $184; + $186 = HEAP32[$185>>2]|0; + $187 = ((($1)) + 72|0); + $188 = $187; + $189 = $188; + $190 = HEAP32[$189>>2]|0; + $191 = (($188) + 4)|0; + $192 = $191; + $193 = HEAP32[$192>>2]|0; + $194 = (_i64Add(($190|0),($193|0),($183|0),($186|0))|0); + $195 = tempRet0; + $196 = $180; $197 = $196; - HEAP32[$197>>2] = $193; + HEAP32[$197>>2] = $194; + $198 = (($196) + 4)|0; + $199 = $198; + HEAP32[$199>>2] = $195; return; } -function _fscalar_product($output,$in) { - $output = $output|0; - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; +function _fdifference($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = $in; - $1 = $0; - $2 = HEAP32[$1>>2]|0; - $3 = (($0) + 4)|0; - $4 = $3; - $5 = HEAP32[$4>>2]|0; - $6 = (___muldi3(($2|0),($5|0),121665,0)|0); - $7 = tempRet0; - $8 = $output; + $2 = $1; + $3 = $2; + $4 = HEAP32[$3>>2]|0; + $5 = (($2) + 4)|0; + $6 = $5; + $7 = HEAP32[$6>>2]|0; + $8 = $0; $9 = $8; - HEAP32[$9>>2] = $6; - $10 = (($8) + 4)|0; - $11 = $10; - HEAP32[$11>>2] = $7; - $12 = ((($in)) + 8|0); - $13 = $12; - $14 = $13; - $15 = HEAP32[$14>>2]|0; - $16 = (($13) + 4)|0; + $10 = HEAP32[$9>>2]|0; + $11 = (($8) + 4)|0; + $12 = $11; + $13 = HEAP32[$12>>2]|0; + $14 = (_i64Subtract(($4|0),($7|0),($10|0),($13|0))|0); + $15 = tempRet0; + $16 = $0; $17 = $16; - $18 = HEAP32[$17>>2]|0; - $19 = (___muldi3(($15|0),($18|0),121665,0)|0); - $20 = tempRet0; - $21 = ((($output)) + 8|0); + HEAP32[$17>>2] = $14; + $18 = (($16) + 4)|0; + $19 = $18; + HEAP32[$19>>2] = $15; + $20 = ((($1)) + 8|0); + $21 = $20; $22 = $21; - $23 = $22; - HEAP32[$23>>2] = $19; - $24 = (($22) + 4)|0; + $23 = HEAP32[$22>>2]|0; + $24 = (($21) + 4)|0; $25 = $24; - HEAP32[$25>>2] = $20; - $26 = ((($in)) + 16|0); - $27 = $26; + $26 = HEAP32[$25>>2]|0; + $27 = ((($0)) + 8|0); $28 = $27; - $29 = HEAP32[$28>>2]|0; - $30 = (($27) + 4)|0; - $31 = $30; - $32 = HEAP32[$31>>2]|0; - $33 = (___muldi3(($29|0),($32|0),121665,0)|0); - $34 = tempRet0; - $35 = ((($output)) + 16|0); - $36 = $35; + $29 = $28; + $30 = HEAP32[$29>>2]|0; + $31 = (($28) + 4)|0; + $32 = $31; + $33 = HEAP32[$32>>2]|0; + $34 = (_i64Subtract(($23|0),($26|0),($30|0),($33|0))|0); + $35 = tempRet0; + $36 = $27; $37 = $36; - HEAP32[$37>>2] = $33; + HEAP32[$37>>2] = $34; $38 = (($36) + 4)|0; $39 = $38; - HEAP32[$39>>2] = $34; - $40 = ((($in)) + 24|0); + HEAP32[$39>>2] = $35; + $40 = ((($1)) + 16|0); $41 = $40; $42 = $41; $43 = HEAP32[$42>>2]|0; $44 = (($41) + 4)|0; $45 = $44; $46 = HEAP32[$45>>2]|0; - $47 = (___muldi3(($43|0),($46|0),121665,0)|0); - $48 = tempRet0; - $49 = ((($output)) + 24|0); - $50 = $49; - $51 = $50; - HEAP32[$51>>2] = $47; - $52 = (($50) + 4)|0; - $53 = $52; - HEAP32[$53>>2] = $48; - $54 = ((($in)) + 32|0); - $55 = $54; - $56 = $55; - $57 = HEAP32[$56>>2]|0; - $58 = (($55) + 4)|0; + $47 = ((($0)) + 16|0); + $48 = $47; + $49 = $48; + $50 = HEAP32[$49>>2]|0; + $51 = (($48) + 4)|0; + $52 = $51; + $53 = HEAP32[$52>>2]|0; + $54 = (_i64Subtract(($43|0),($46|0),($50|0),($53|0))|0); + $55 = tempRet0; + $56 = $47; + $57 = $56; + HEAP32[$57>>2] = $54; + $58 = (($56) + 4)|0; $59 = $58; - $60 = HEAP32[$59>>2]|0; - $61 = (___muldi3(($57|0),($60|0),121665,0)|0); - $62 = tempRet0; - $63 = ((($output)) + 32|0); - $64 = $63; + HEAP32[$59>>2] = $55; + $60 = ((($1)) + 24|0); + $61 = $60; + $62 = $61; + $63 = HEAP32[$62>>2]|0; + $64 = (($61) + 4)|0; $65 = $64; - HEAP32[$65>>2] = $61; - $66 = (($64) + 4)|0; - $67 = $66; - HEAP32[$67>>2] = $62; - $68 = ((($in)) + 40|0); + $66 = HEAP32[$65>>2]|0; + $67 = ((($0)) + 24|0); + $68 = $67; $69 = $68; - $70 = $69; - $71 = HEAP32[$70>>2]|0; - $72 = (($69) + 4)|0; - $73 = $72; - $74 = HEAP32[$73>>2]|0; - $75 = (___muldi3(($71|0),($74|0),121665,0)|0); - $76 = tempRet0; - $77 = ((($output)) + 40|0); - $78 = $77; + $70 = HEAP32[$69>>2]|0; + $71 = (($68) + 4)|0; + $72 = $71; + $73 = HEAP32[$72>>2]|0; + $74 = (_i64Subtract(($63|0),($66|0),($70|0),($73|0))|0); + $75 = tempRet0; + $76 = $67; + $77 = $76; + HEAP32[$77>>2] = $74; + $78 = (($76) + 4)|0; $79 = $78; HEAP32[$79>>2] = $75; - $80 = (($78) + 4)|0; + $80 = ((($1)) + 32|0); $81 = $80; - HEAP32[$81>>2] = $76; - $82 = ((($in)) + 48|0); - $83 = $82; - $84 = $83; - $85 = HEAP32[$84>>2]|0; - $86 = (($83) + 4)|0; - $87 = $86; - $88 = HEAP32[$87>>2]|0; - $89 = (___muldi3(($85|0),($88|0),121665,0)|0); - $90 = tempRet0; - $91 = ((($output)) + 48|0); + $82 = $81; + $83 = HEAP32[$82>>2]|0; + $84 = (($81) + 4)|0; + $85 = $84; + $86 = HEAP32[$85>>2]|0; + $87 = ((($0)) + 32|0); + $88 = $87; + $89 = $88; + $90 = HEAP32[$89>>2]|0; + $91 = (($88) + 4)|0; $92 = $91; - $93 = $92; - HEAP32[$93>>2] = $89; - $94 = (($92) + 4)|0; - $95 = $94; - HEAP32[$95>>2] = $90; - $96 = ((($in)) + 56|0); + $93 = HEAP32[$92>>2]|0; + $94 = (_i64Subtract(($83|0),($86|0),($90|0),($93|0))|0); + $95 = tempRet0; + $96 = $87; $97 = $96; - $98 = $97; - $99 = HEAP32[$98>>2]|0; - $100 = (($97) + 4)|0; + HEAP32[$97>>2] = $94; + $98 = (($96) + 4)|0; + $99 = $98; + HEAP32[$99>>2] = $95; + $100 = ((($1)) + 40|0); $101 = $100; - $102 = HEAP32[$101>>2]|0; - $103 = (___muldi3(($99|0),($102|0),121665,0)|0); - $104 = tempRet0; - $105 = ((($output)) + 56|0); - $106 = $105; - $107 = $106; - HEAP32[$107>>2] = $103; - $108 = (($106) + 4)|0; + $102 = $101; + $103 = HEAP32[$102>>2]|0; + $104 = (($101) + 4)|0; + $105 = $104; + $106 = HEAP32[$105>>2]|0; + $107 = ((($0)) + 40|0); + $108 = $107; $109 = $108; - HEAP32[$109>>2] = $104; - $110 = ((($in)) + 64|0); - $111 = $110; + $110 = HEAP32[$109>>2]|0; + $111 = (($108) + 4)|0; $112 = $111; $113 = HEAP32[$112>>2]|0; - $114 = (($111) + 4)|0; - $115 = $114; - $116 = HEAP32[$115>>2]|0; - $117 = (___muldi3(($113|0),($116|0),121665,0)|0); - $118 = tempRet0; - $119 = ((($output)) + 64|0); - $120 = $119; + $114 = (_i64Subtract(($103|0),($106|0),($110|0),($113|0))|0); + $115 = tempRet0; + $116 = $107; + $117 = $116; + HEAP32[$117>>2] = $114; + $118 = (($116) + 4)|0; + $119 = $118; + HEAP32[$119>>2] = $115; + $120 = ((($1)) + 48|0); $121 = $120; - HEAP32[$121>>2] = $117; - $122 = (($120) + 4)|0; - $123 = $122; - HEAP32[$123>>2] = $118; - $124 = ((($in)) + 72|0); + $122 = $121; + $123 = HEAP32[$122>>2]|0; + $124 = (($121) + 4)|0; $125 = $124; - $126 = $125; - $127 = HEAP32[$126>>2]|0; - $128 = (($125) + 4)|0; - $129 = $128; + $126 = HEAP32[$125>>2]|0; + $127 = ((($0)) + 48|0); + $128 = $127; + $129 = $128; $130 = HEAP32[$129>>2]|0; - $131 = (___muldi3(($127|0),($130|0),121665,0)|0); - $132 = tempRet0; - $133 = ((($output)) + 72|0); - $134 = $133; - $135 = $134; - HEAP32[$135>>2] = $131; - $136 = (($134) + 4)|0; + $131 = (($128) + 4)|0; + $132 = $131; + $133 = HEAP32[$132>>2]|0; + $134 = (_i64Subtract(($123|0),($126|0),($130|0),($133|0))|0); + $135 = tempRet0; + $136 = $127; + $137 = $136; + HEAP32[$137>>2] = $134; + $138 = (($136) + 4)|0; + $139 = $138; + HEAP32[$139>>2] = $135; + $140 = ((($1)) + 56|0); + $141 = $140; + $142 = $141; + $143 = HEAP32[$142>>2]|0; + $144 = (($141) + 4)|0; + $145 = $144; + $146 = HEAP32[$145>>2]|0; + $147 = ((($0)) + 56|0); + $148 = $147; + $149 = $148; + $150 = HEAP32[$149>>2]|0; + $151 = (($148) + 4)|0; + $152 = $151; + $153 = HEAP32[$152>>2]|0; + $154 = (_i64Subtract(($143|0),($146|0),($150|0),($153|0))|0); + $155 = tempRet0; + $156 = $147; + $157 = $156; + HEAP32[$157>>2] = $154; + $158 = (($156) + 4)|0; + $159 = $158; + HEAP32[$159>>2] = $155; + $160 = ((($1)) + 64|0); + $161 = $160; + $162 = $161; + $163 = HEAP32[$162>>2]|0; + $164 = (($161) + 4)|0; + $165 = $164; + $166 = HEAP32[$165>>2]|0; + $167 = ((($0)) + 64|0); + $168 = $167; + $169 = $168; + $170 = HEAP32[$169>>2]|0; + $171 = (($168) + 4)|0; + $172 = $171; + $173 = HEAP32[$172>>2]|0; + $174 = (_i64Subtract(($163|0),($166|0),($170|0),($173|0))|0); + $175 = tempRet0; + $176 = $167; + $177 = $176; + HEAP32[$177>>2] = $174; + $178 = (($176) + 4)|0; + $179 = $178; + HEAP32[$179>>2] = $175; + $180 = ((($1)) + 72|0); + $181 = $180; + $182 = $181; + $183 = HEAP32[$182>>2]|0; + $184 = (($181) + 4)|0; + $185 = $184; + $186 = HEAP32[$185>>2]|0; + $187 = ((($0)) + 72|0); + $188 = $187; + $189 = $188; + $190 = HEAP32[$189>>2]|0; + $191 = (($188) + 4)|0; + $192 = $191; + $193 = HEAP32[$192>>2]|0; + $194 = (_i64Subtract(($183|0),($186|0),($190|0),($193|0))|0); + $195 = tempRet0; + $196 = $187; + $197 = $196; + HEAP32[$197>>2] = $194; + $198 = (($196) + 4)|0; + $199 = $198; + HEAP32[$199>>2] = $195; + return; +} +function _fscalar_product($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; + var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; + var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; + var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = $1; + $3 = $2; + $4 = HEAP32[$3>>2]|0; + $5 = (($2) + 4)|0; + $6 = $5; + $7 = HEAP32[$6>>2]|0; + $8 = (___muldi3(($4|0),($7|0),121665,0)|0); + $9 = tempRet0; + $10 = $0; + $11 = $10; + HEAP32[$11>>2] = $8; + $12 = (($10) + 4)|0; + $13 = $12; + HEAP32[$13>>2] = $9; + $14 = ((($1)) + 8|0); + $15 = $14; + $16 = $15; + $17 = HEAP32[$16>>2]|0; + $18 = (($15) + 4)|0; + $19 = $18; + $20 = HEAP32[$19>>2]|0; + $21 = (___muldi3(($17|0),($20|0),121665,0)|0); + $22 = tempRet0; + $23 = ((($0)) + 8|0); + $24 = $23; + $25 = $24; + HEAP32[$25>>2] = $21; + $26 = (($24) + 4)|0; + $27 = $26; + HEAP32[$27>>2] = $22; + $28 = ((($1)) + 16|0); + $29 = $28; + $30 = $29; + $31 = HEAP32[$30>>2]|0; + $32 = (($29) + 4)|0; + $33 = $32; + $34 = HEAP32[$33>>2]|0; + $35 = (___muldi3(($31|0),($34|0),121665,0)|0); + $36 = tempRet0; + $37 = ((($0)) + 16|0); + $38 = $37; + $39 = $38; + HEAP32[$39>>2] = $35; + $40 = (($38) + 4)|0; + $41 = $40; + HEAP32[$41>>2] = $36; + $42 = ((($1)) + 24|0); + $43 = $42; + $44 = $43; + $45 = HEAP32[$44>>2]|0; + $46 = (($43) + 4)|0; + $47 = $46; + $48 = HEAP32[$47>>2]|0; + $49 = (___muldi3(($45|0),($48|0),121665,0)|0); + $50 = tempRet0; + $51 = ((($0)) + 24|0); + $52 = $51; + $53 = $52; + HEAP32[$53>>2] = $49; + $54 = (($52) + 4)|0; + $55 = $54; + HEAP32[$55>>2] = $50; + $56 = ((($1)) + 32|0); + $57 = $56; + $58 = $57; + $59 = HEAP32[$58>>2]|0; + $60 = (($57) + 4)|0; + $61 = $60; + $62 = HEAP32[$61>>2]|0; + $63 = (___muldi3(($59|0),($62|0),121665,0)|0); + $64 = tempRet0; + $65 = ((($0)) + 32|0); + $66 = $65; + $67 = $66; + HEAP32[$67>>2] = $63; + $68 = (($66) + 4)|0; + $69 = $68; + HEAP32[$69>>2] = $64; + $70 = ((($1)) + 40|0); + $71 = $70; + $72 = $71; + $73 = HEAP32[$72>>2]|0; + $74 = (($71) + 4)|0; + $75 = $74; + $76 = HEAP32[$75>>2]|0; + $77 = (___muldi3(($73|0),($76|0),121665,0)|0); + $78 = tempRet0; + $79 = ((($0)) + 40|0); + $80 = $79; + $81 = $80; + HEAP32[$81>>2] = $77; + $82 = (($80) + 4)|0; + $83 = $82; + HEAP32[$83>>2] = $78; + $84 = ((($1)) + 48|0); + $85 = $84; + $86 = $85; + $87 = HEAP32[$86>>2]|0; + $88 = (($85) + 4)|0; + $89 = $88; + $90 = HEAP32[$89>>2]|0; + $91 = (___muldi3(($87|0),($90|0),121665,0)|0); + $92 = tempRet0; + $93 = ((($0)) + 48|0); + $94 = $93; + $95 = $94; + HEAP32[$95>>2] = $91; + $96 = (($94) + 4)|0; + $97 = $96; + HEAP32[$97>>2] = $92; + $98 = ((($1)) + 56|0); + $99 = $98; + $100 = $99; + $101 = HEAP32[$100>>2]|0; + $102 = (($99) + 4)|0; + $103 = $102; + $104 = HEAP32[$103>>2]|0; + $105 = (___muldi3(($101|0),($104|0),121665,0)|0); + $106 = tempRet0; + $107 = ((($0)) + 56|0); + $108 = $107; + $109 = $108; + HEAP32[$109>>2] = $105; + $110 = (($108) + 4)|0; + $111 = $110; + HEAP32[$111>>2] = $106; + $112 = ((($1)) + 64|0); + $113 = $112; + $114 = $113; + $115 = HEAP32[$114>>2]|0; + $116 = (($113) + 4)|0; + $117 = $116; + $118 = HEAP32[$117>>2]|0; + $119 = (___muldi3(($115|0),($118|0),121665,0)|0); + $120 = tempRet0; + $121 = ((($0)) + 64|0); + $122 = $121; + $123 = $122; + HEAP32[$123>>2] = $119; + $124 = (($122) + 4)|0; + $125 = $124; + HEAP32[$125>>2] = $120; + $126 = ((($1)) + 72|0); + $127 = $126; + $128 = $127; + $129 = HEAP32[$128>>2]|0; + $130 = (($127) + 4)|0; + $131 = $130; + $132 = HEAP32[$131>>2]|0; + $133 = (___muldi3(($129|0),($132|0),121665,0)|0); + $134 = tempRet0; + $135 = ((($0)) + 72|0); + $136 = $135; $137 = $136; - HEAP32[$137>>2] = $132; + HEAP32[$137>>2] = $133; + $138 = (($136) + 4)|0; + $139 = $138; + HEAP32[$139>>2] = $134; return; } -function _crypto_sign_ed25519_ref10_fe_0($h) { - $h = $h|0; +function _crypto_sign_ed25519_ref10_fe_0($0) { + $0 = $0|0; var dest = 0, label = 0, sp = 0, stop = 0; sp = STACKTOP; - dest=$h; stop=dest+40|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); + dest=$0; stop=dest+40|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); return; } -function _crypto_sign_ed25519_ref10_fe_1($h) { - $h = $h|0; - var $0 = 0, dest = 0, label = 0, sp = 0, stop = 0; +function _crypto_sign_ed25519_ref10_fe_1($0) { + $0 = $0|0; + var $1 = 0, dest = 0, label = 0, sp = 0, stop = 0; sp = STACKTOP; - HEAP32[$h>>2] = 1; - $0 = ((($h)) + 4|0); - dest=$0; stop=dest+36|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); + HEAP32[$0>>2] = 1; + $1 = ((($0)) + 4|0); + dest=$1; stop=dest+36|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); return; } -function _crypto_sign_ed25519_ref10_fe_add($h,$f,$g) { - $h = $h|0; - $f = $f|0; - $g = $g|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; - var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_fe_add($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0; + var $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0; + var $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); - $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); - $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); - $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); - $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); - $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); - $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); - $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); - $18 = HEAP32[$17>>2]|0; - $19 = HEAP32[$g>>2]|0; - $20 = ((($g)) + 4|0); + $3 = HEAP32[$1>>2]|0; + $4 = ((($1)) + 4|0); + $5 = HEAP32[$4>>2]|0; + $6 = ((($1)) + 8|0); + $7 = HEAP32[$6>>2]|0; + $8 = ((($1)) + 12|0); + $9 = HEAP32[$8>>2]|0; + $10 = ((($1)) + 16|0); + $11 = HEAP32[$10>>2]|0; + $12 = ((($1)) + 20|0); + $13 = HEAP32[$12>>2]|0; + $14 = ((($1)) + 24|0); + $15 = HEAP32[$14>>2]|0; + $16 = ((($1)) + 28|0); + $17 = HEAP32[$16>>2]|0; + $18 = ((($1)) + 32|0); + $19 = HEAP32[$18>>2]|0; + $20 = ((($1)) + 36|0); $21 = HEAP32[$20>>2]|0; - $22 = ((($g)) + 8|0); - $23 = HEAP32[$22>>2]|0; - $24 = ((($g)) + 12|0); - $25 = HEAP32[$24>>2]|0; - $26 = ((($g)) + 16|0); - $27 = HEAP32[$26>>2]|0; - $28 = ((($g)) + 20|0); - $29 = HEAP32[$28>>2]|0; - $30 = ((($g)) + 24|0); - $31 = HEAP32[$30>>2]|0; - $32 = ((($g)) + 28|0); - $33 = HEAP32[$32>>2]|0; - $34 = ((($g)) + 32|0); - $35 = HEAP32[$34>>2]|0; - $36 = ((($g)) + 36|0); - $37 = HEAP32[$36>>2]|0; - $38 = (($19) + ($0))|0; - $39 = (($21) + ($2))|0; - $40 = (($23) + ($4))|0; - $41 = (($25) + ($6))|0; - $42 = (($27) + ($8))|0; - $43 = (($29) + ($10))|0; - $44 = (($31) + ($12))|0; - $45 = (($33) + ($14))|0; - $46 = (($35) + ($16))|0; - $47 = (($37) + ($18))|0; - HEAP32[$h>>2] = $38; - $48 = ((($h)) + 4|0); - HEAP32[$48>>2] = $39; - $49 = ((($h)) + 8|0); - HEAP32[$49>>2] = $40; - $50 = ((($h)) + 12|0); - HEAP32[$50>>2] = $41; - $51 = ((($h)) + 16|0); + $22 = HEAP32[$2>>2]|0; + $23 = ((($2)) + 4|0); + $24 = HEAP32[$23>>2]|0; + $25 = ((($2)) + 8|0); + $26 = HEAP32[$25>>2]|0; + $27 = ((($2)) + 12|0); + $28 = HEAP32[$27>>2]|0; + $29 = ((($2)) + 16|0); + $30 = HEAP32[$29>>2]|0; + $31 = ((($2)) + 20|0); + $32 = HEAP32[$31>>2]|0; + $33 = ((($2)) + 24|0); + $34 = HEAP32[$33>>2]|0; + $35 = ((($2)) + 28|0); + $36 = HEAP32[$35>>2]|0; + $37 = ((($2)) + 32|0); + $38 = HEAP32[$37>>2]|0; + $39 = ((($2)) + 36|0); + $40 = HEAP32[$39>>2]|0; + $41 = (($22) + ($3))|0; + $42 = (($24) + ($5))|0; + $43 = (($26) + ($7))|0; + $44 = (($28) + ($9))|0; + $45 = (($30) + ($11))|0; + $46 = (($32) + ($13))|0; + $47 = (($34) + ($15))|0; + $48 = (($36) + ($17))|0; + $49 = (($38) + ($19))|0; + $50 = (($40) + ($21))|0; + HEAP32[$0>>2] = $41; + $51 = ((($0)) + 4|0); HEAP32[$51>>2] = $42; - $52 = ((($h)) + 20|0); + $52 = ((($0)) + 8|0); HEAP32[$52>>2] = $43; - $53 = ((($h)) + 24|0); + $53 = ((($0)) + 12|0); HEAP32[$53>>2] = $44; - $54 = ((($h)) + 28|0); + $54 = ((($0)) + 16|0); HEAP32[$54>>2] = $45; - $55 = ((($h)) + 32|0); + $55 = ((($0)) + 20|0); HEAP32[$55>>2] = $46; - $56 = ((($h)) + 36|0); + $56 = ((($0)) + 24|0); HEAP32[$56>>2] = $47; + $57 = ((($0)) + 28|0); + HEAP32[$57>>2] = $48; + $58 = ((($0)) + 32|0); + HEAP32[$58>>2] = $49; + $59 = ((($0)) + 36|0); + HEAP32[$59>>2] = $50; return; } -function _crypto_sign_ed25519_ref10_fe_cmov($f,$g,$b) { - $f = $f|0; - $g = $g|0; - $b = $b|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; - var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0; - var $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_fe_cmov($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0; + var $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0; + var $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0; + var $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); - $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); - $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); - $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); - $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); - $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); - $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); - $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); - $18 = HEAP32[$17>>2]|0; - $19 = HEAP32[$g>>2]|0; - $20 = ((($g)) + 4|0); + $3 = HEAP32[$0>>2]|0; + $4 = ((($0)) + 4|0); + $5 = HEAP32[$4>>2]|0; + $6 = ((($0)) + 8|0); + $7 = HEAP32[$6>>2]|0; + $8 = ((($0)) + 12|0); + $9 = HEAP32[$8>>2]|0; + $10 = ((($0)) + 16|0); + $11 = HEAP32[$10>>2]|0; + $12 = ((($0)) + 20|0); + $13 = HEAP32[$12>>2]|0; + $14 = ((($0)) + 24|0); + $15 = HEAP32[$14>>2]|0; + $16 = ((($0)) + 28|0); + $17 = HEAP32[$16>>2]|0; + $18 = ((($0)) + 32|0); + $19 = HEAP32[$18>>2]|0; + $20 = ((($0)) + 36|0); $21 = HEAP32[$20>>2]|0; - $22 = ((($g)) + 8|0); - $23 = HEAP32[$22>>2]|0; - $24 = ((($g)) + 12|0); - $25 = HEAP32[$24>>2]|0; - $26 = ((($g)) + 16|0); - $27 = HEAP32[$26>>2]|0; - $28 = ((($g)) + 20|0); - $29 = HEAP32[$28>>2]|0; - $30 = ((($g)) + 24|0); - $31 = HEAP32[$30>>2]|0; - $32 = ((($g)) + 28|0); - $33 = HEAP32[$32>>2]|0; - $34 = ((($g)) + 32|0); - $35 = HEAP32[$34>>2]|0; - $36 = ((($g)) + 36|0); - $37 = HEAP32[$36>>2]|0; - $38 = $19 ^ $0; - $39 = $21 ^ $2; - $40 = $23 ^ $4; - $41 = $25 ^ $6; - $42 = $27 ^ $8; - $43 = $29 ^ $10; - $44 = $31 ^ $12; - $45 = $33 ^ $14; - $46 = $35 ^ $16; - $47 = $37 ^ $18; - $48 = (0 - ($b))|0; - $49 = $38 & $48; - $50 = $39 & $48; - $51 = $40 & $48; - $52 = $41 & $48; - $53 = $42 & $48; - $54 = $43 & $48; - $55 = $44 & $48; - $56 = $45 & $48; - $57 = $46 & $48; - $58 = $47 & $48; - $59 = $49 ^ $0; - HEAP32[$f>>2] = $59; - $60 = $50 ^ $2; - HEAP32[$1>>2] = $60; - $61 = $51 ^ $4; - HEAP32[$3>>2] = $61; - $62 = $52 ^ $6; - HEAP32[$5>>2] = $62; - $63 = $53 ^ $8; - HEAP32[$7>>2] = $63; - $64 = $54 ^ $10; - HEAP32[$9>>2] = $64; - $65 = $55 ^ $12; - HEAP32[$11>>2] = $65; - $66 = $56 ^ $14; - HEAP32[$13>>2] = $66; - $67 = $57 ^ $16; - HEAP32[$15>>2] = $67; - $68 = $58 ^ $18; - HEAP32[$17>>2] = $68; + $22 = HEAP32[$1>>2]|0; + $23 = ((($1)) + 4|0); + $24 = HEAP32[$23>>2]|0; + $25 = ((($1)) + 8|0); + $26 = HEAP32[$25>>2]|0; + $27 = ((($1)) + 12|0); + $28 = HEAP32[$27>>2]|0; + $29 = ((($1)) + 16|0); + $30 = HEAP32[$29>>2]|0; + $31 = ((($1)) + 20|0); + $32 = HEAP32[$31>>2]|0; + $33 = ((($1)) + 24|0); + $34 = HEAP32[$33>>2]|0; + $35 = ((($1)) + 28|0); + $36 = HEAP32[$35>>2]|0; + $37 = ((($1)) + 32|0); + $38 = HEAP32[$37>>2]|0; + $39 = ((($1)) + 36|0); + $40 = HEAP32[$39>>2]|0; + $41 = $22 ^ $3; + $42 = $24 ^ $5; + $43 = $26 ^ $7; + $44 = $28 ^ $9; + $45 = $30 ^ $11; + $46 = $32 ^ $13; + $47 = $34 ^ $15; + $48 = $36 ^ $17; + $49 = $38 ^ $19; + $50 = $40 ^ $21; + $51 = (0 - ($2))|0; + $52 = $41 & $51; + $53 = $42 & $51; + $54 = $43 & $51; + $55 = $44 & $51; + $56 = $45 & $51; + $57 = $46 & $51; + $58 = $47 & $51; + $59 = $48 & $51; + $60 = $49 & $51; + $61 = $50 & $51; + $62 = $52 ^ $3; + HEAP32[$0>>2] = $62; + $63 = $53 ^ $5; + HEAP32[$4>>2] = $63; + $64 = $54 ^ $7; + HEAP32[$6>>2] = $64; + $65 = $55 ^ $9; + HEAP32[$8>>2] = $65; + $66 = $56 ^ $11; + HEAP32[$10>>2] = $66; + $67 = $57 ^ $13; + HEAP32[$12>>2] = $67; + $68 = $58 ^ $15; + HEAP32[$14>>2] = $68; + $69 = $59 ^ $17; + HEAP32[$16>>2] = $69; + $70 = $60 ^ $19; + HEAP32[$18>>2] = $70; + $71 = $61 ^ $21; + HEAP32[$20>>2] = $71; return; } -function _crypto_sign_ed25519_ref10_fe_copy($h,$f) { - $h = $h|0; - $f = $f|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_fe_copy($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); + $3 = ((($1)) + 4|0); $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); + $5 = ((($1)) + 8|0); $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); + $7 = ((($1)) + 12|0); $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); + $9 = ((($1)) + 16|0); $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); + $11 = ((($1)) + 20|0); $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); + $13 = ((($1)) + 24|0); $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); + $15 = ((($1)) + 28|0); $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); + $17 = ((($1)) + 32|0); $18 = HEAP32[$17>>2]|0; - HEAP32[$h>>2] = $0; - $19 = ((($h)) + 4|0); - HEAP32[$19>>2] = $2; - $20 = ((($h)) + 8|0); - HEAP32[$20>>2] = $4; - $21 = ((($h)) + 12|0); - HEAP32[$21>>2] = $6; - $22 = ((($h)) + 16|0); - HEAP32[$22>>2] = $8; - $23 = ((($h)) + 20|0); - HEAP32[$23>>2] = $10; - $24 = ((($h)) + 24|0); - HEAP32[$24>>2] = $12; - $25 = ((($h)) + 28|0); - HEAP32[$25>>2] = $14; - $26 = ((($h)) + 32|0); - HEAP32[$26>>2] = $16; - $27 = ((($h)) + 36|0); - HEAP32[$27>>2] = $18; + $19 = ((($1)) + 36|0); + $20 = HEAP32[$19>>2]|0; + HEAP32[$0>>2] = $2; + $21 = ((($0)) + 4|0); + HEAP32[$21>>2] = $4; + $22 = ((($0)) + 8|0); + HEAP32[$22>>2] = $6; + $23 = ((($0)) + 12|0); + HEAP32[$23>>2] = $8; + $24 = ((($0)) + 16|0); + HEAP32[$24>>2] = $10; + $25 = ((($0)) + 20|0); + HEAP32[$25>>2] = $12; + $26 = ((($0)) + 24|0); + HEAP32[$26>>2] = $14; + $27 = ((($0)) + 28|0); + HEAP32[$27>>2] = $16; + $28 = ((($0)) + 32|0); + HEAP32[$28>>2] = $18; + $29 = ((($0)) + 36|0); + HEAP32[$29>>2] = $20; return; } -function _crypto_sign_ed25519_ref10_fe_frombytes($h,$s) { - $h = $h|0; - $s = $s|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; +function _crypto_sign_ed25519_ref10_fe_frombytes($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0; var $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0; var $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0; var $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = (_load_4($s)|0); - $1 = tempRet0; - $2 = ((($s)) + 4|0); - $3 = (_load_3($2)|0); - $4 = tempRet0; - $5 = (_bitshift64Shl(($3|0),($4|0),6)|0); + $2 = (_load_4($1)|0); + $3 = tempRet0; + $4 = ((($1)) + 4|0); + $5 = (_load_3($4)|0); $6 = tempRet0; - $7 = ((($s)) + 7|0); - $8 = (_load_3($7)|0); - $9 = tempRet0; - $10 = (_bitshift64Shl(($8|0),($9|0),5)|0); + $7 = (_bitshift64Shl(($5|0),($6|0),6)|0); + $8 = tempRet0; + $9 = ((($1)) + 7|0); + $10 = (_load_3($9)|0); $11 = tempRet0; - $12 = ((($s)) + 10|0); - $13 = (_load_3($12)|0); - $14 = tempRet0; - $15 = (_bitshift64Shl(($13|0),($14|0),3)|0); + $12 = (_bitshift64Shl(($10|0),($11|0),5)|0); + $13 = tempRet0; + $14 = ((($1)) + 10|0); + $15 = (_load_3($14)|0); $16 = tempRet0; - $17 = ((($s)) + 13|0); - $18 = (_load_3($17)|0); - $19 = tempRet0; - $20 = (_bitshift64Shl(($18|0),($19|0),2)|0); + $17 = (_bitshift64Shl(($15|0),($16|0),3)|0); + $18 = tempRet0; + $19 = ((($1)) + 13|0); + $20 = (_load_3($19)|0); $21 = tempRet0; - $22 = ((($s)) + 16|0); - $23 = (_load_4($22)|0); - $24 = tempRet0; - $25 = ((($s)) + 20|0); - $26 = (_load_3($25)|0); - $27 = tempRet0; - $28 = (_bitshift64Shl(($26|0),($27|0),7)|0); + $22 = (_bitshift64Shl(($20|0),($21|0),2)|0); + $23 = tempRet0; + $24 = ((($1)) + 16|0); + $25 = (_load_4($24)|0); + $26 = tempRet0; + $27 = ((($1)) + 20|0); + $28 = (_load_3($27)|0); $29 = tempRet0; - $30 = ((($s)) + 23|0); - $31 = (_load_3($30)|0); - $32 = tempRet0; - $33 = (_bitshift64Shl(($31|0),($32|0),5)|0); + $30 = (_bitshift64Shl(($28|0),($29|0),7)|0); + $31 = tempRet0; + $32 = ((($1)) + 23|0); + $33 = (_load_3($32)|0); $34 = tempRet0; - $35 = ((($s)) + 26|0); - $36 = (_load_3($35)|0); - $37 = tempRet0; - $38 = (_bitshift64Shl(($36|0),($37|0),4)|0); + $35 = (_bitshift64Shl(($33|0),($34|0),5)|0); + $36 = tempRet0; + $37 = ((($1)) + 26|0); + $38 = (_load_3($37)|0); $39 = tempRet0; - $40 = ((($s)) + 29|0); - $41 = (_load_3($40)|0); - $42 = tempRet0; - $43 = (_bitshift64Shl(($41|0),($42|0),2)|0); + $40 = (_bitshift64Shl(($38|0),($39|0),4)|0); + $41 = tempRet0; + $42 = ((($1)) + 29|0); + $43 = (_load_3($42)|0); $44 = tempRet0; - $45 = $43 & 33554428; - $46 = (_i64Add(($45|0),0,16777216,0)|0); - $47 = tempRet0; - $48 = (_bitshift64Lshr(($46|0),($47|0),25)|0); + $45 = (_bitshift64Shl(($43|0),($44|0),2)|0); + $46 = tempRet0; + $47 = $45 & 33554428; + $48 = (_i64Add(($47|0),0,16777216,0)|0); $49 = tempRet0; - $50 = (_i64Subtract(0,0,($48|0),($49|0))|0); + $50 = (_bitshift64Lshr(($48|0),($49|0),25)|0); $51 = tempRet0; - $52 = $50 & 19; - $53 = (_i64Add(($52|0),0,($0|0),($1|0))|0); - $54 = tempRet0; - $55 = (_bitshift64Shl(($48|0),($49|0),25)|0); + $52 = (_i64Subtract(0,0,($50|0),($51|0))|0); + $53 = tempRet0; + $54 = $52 & 19; + $55 = (_i64Add(($54|0),0,($2|0),($3|0))|0); $56 = tempRet0; - $57 = (_i64Add(($5|0),($6|0),16777216,0)|0); + $57 = (_bitshift64Shl(($50|0),($51|0),25)|0); $58 = tempRet0; - $59 = (_bitshift64Ashr(($57|0),($58|0),25)|0); + $59 = (_i64Add(($7|0),($8|0),16777216,0)|0); $60 = tempRet0; - $61 = (_i64Add(($59|0),($60|0),($10|0),($11|0))|0); + $61 = (_bitshift64Ashr(($59|0),($60|0),25)|0); $62 = tempRet0; - $63 = (_bitshift64Shl(($59|0),($60|0),25)|0); + $63 = (_i64Add(($61|0),($62|0),($12|0),($13|0))|0); $64 = tempRet0; - $65 = (_i64Subtract(($5|0),($6|0),($63|0),($64|0))|0); + $65 = (_bitshift64Shl(($61|0),($62|0),25)|0); $66 = tempRet0; - $67 = (_i64Add(($15|0),($16|0),16777216,0)|0); + $67 = (_i64Subtract(($7|0),($8|0),($65|0),($66|0))|0); $68 = tempRet0; - $69 = (_bitshift64Ashr(($67|0),($68|0),25)|0); + $69 = (_i64Add(($17|0),($18|0),16777216,0)|0); $70 = tempRet0; - $71 = (_i64Add(($69|0),($70|0),($20|0),($21|0))|0); + $71 = (_bitshift64Ashr(($69|0),($70|0),25)|0); $72 = tempRet0; - $73 = (_bitshift64Shl(($69|0),($70|0),25)|0); + $73 = (_i64Add(($71|0),($72|0),($22|0),($23|0))|0); $74 = tempRet0; - $75 = (_i64Subtract(($15|0),($16|0),($73|0),($74|0))|0); + $75 = (_bitshift64Shl(($71|0),($72|0),25)|0); $76 = tempRet0; - $77 = (_i64Add(($23|0),($24|0),16777216,0)|0); + $77 = (_i64Subtract(($17|0),($18|0),($75|0),($76|0))|0); $78 = tempRet0; - $79 = (_bitshift64Ashr(($77|0),($78|0),25)|0); + $79 = (_i64Add(($25|0),($26|0),16777216,0)|0); $80 = tempRet0; - $81 = (_i64Add(($28|0),($29|0),($79|0),($80|0))|0); + $81 = (_bitshift64Ashr(($79|0),($80|0),25)|0); $82 = tempRet0; - $83 = (_bitshift64Shl(($79|0),($80|0),25)|0); + $83 = (_i64Add(($30|0),($31|0),($81|0),($82|0))|0); $84 = tempRet0; - $85 = (_i64Subtract(($23|0),($24|0),($83|0),($84|0))|0); + $85 = (_bitshift64Shl(($81|0),($82|0),25)|0); $86 = tempRet0; - $87 = (_i64Add(($33|0),($34|0),16777216,0)|0); + $87 = (_i64Subtract(($25|0),($26|0),($85|0),($86|0))|0); $88 = tempRet0; - $89 = (_bitshift64Ashr(($87|0),($88|0),25)|0); + $89 = (_i64Add(($35|0),($36|0),16777216,0)|0); $90 = tempRet0; - $91 = (_i64Add(($89|0),($90|0),($38|0),($39|0))|0); + $91 = (_bitshift64Ashr(($89|0),($90|0),25)|0); $92 = tempRet0; - $93 = (_bitshift64Shl(($89|0),($90|0),25)|0); + $93 = (_i64Add(($91|0),($92|0),($40|0),($41|0))|0); $94 = tempRet0; - $95 = (_i64Add(($53|0),($54|0),33554432,0)|0); + $95 = (_bitshift64Shl(($91|0),($92|0),25)|0); $96 = tempRet0; - $97 = (_bitshift64Ashr(($95|0),($96|0),26)|0); + $97 = (_i64Add(($55|0),($56|0),33554432,0)|0); $98 = tempRet0; - $99 = (_i64Add(($65|0),($66|0),($97|0),($98|0))|0); + $99 = (_bitshift64Ashr(($97|0),($98|0),26)|0); $100 = tempRet0; - $101 = (_bitshift64Shl(($97|0),($98|0),26)|0); + $101 = (_i64Add(($67|0),($68|0),($99|0),($100|0))|0); $102 = tempRet0; - $103 = (_i64Subtract(($53|0),($54|0),($101|0),($102|0))|0); + $103 = (_bitshift64Shl(($99|0),($100|0),26)|0); $104 = tempRet0; - $105 = (_i64Add(($61|0),($62|0),33554432,0)|0); + $105 = (_i64Subtract(($55|0),($56|0),($103|0),($104|0))|0); $106 = tempRet0; - $107 = (_bitshift64Ashr(($105|0),($106|0),26)|0); + $107 = (_i64Add(($63|0),($64|0),33554432,0)|0); $108 = tempRet0; - $109 = (_i64Add(($75|0),($76|0),($107|0),($108|0))|0); + $109 = (_bitshift64Ashr(($107|0),($108|0),26)|0); $110 = tempRet0; - $111 = (_bitshift64Shl(($107|0),($108|0),26)|0); + $111 = (_i64Add(($77|0),($78|0),($109|0),($110|0))|0); $112 = tempRet0; - $113 = (_i64Subtract(($61|0),($62|0),($111|0),($112|0))|0); + $113 = (_bitshift64Shl(($109|0),($110|0),26)|0); $114 = tempRet0; - $115 = (_i64Add(($71|0),($72|0),33554432,0)|0); + $115 = (_i64Subtract(($63|0),($64|0),($113|0),($114|0))|0); $116 = tempRet0; - $117 = (_bitshift64Ashr(($115|0),($116|0),26)|0); + $117 = (_i64Add(($73|0),($74|0),33554432,0)|0); $118 = tempRet0; - $119 = (_i64Add(($85|0),($86|0),($117|0),($118|0))|0); + $119 = (_bitshift64Ashr(($117|0),($118|0),26)|0); $120 = tempRet0; - $121 = (_bitshift64Shl(($117|0),($118|0),26)|0); + $121 = (_i64Add(($87|0),($88|0),($119|0),($120|0))|0); $122 = tempRet0; - $123 = (_i64Subtract(($71|0),($72|0),($121|0),($122|0))|0); + $123 = (_bitshift64Shl(($119|0),($120|0),26)|0); $124 = tempRet0; - $125 = (_i64Add(($81|0),($82|0),33554432,0)|0); + $125 = (_i64Subtract(($73|0),($74|0),($123|0),($124|0))|0); $126 = tempRet0; - $127 = (_bitshift64Ashr(($125|0),($126|0),26)|0); + $127 = (_i64Add(($83|0),($84|0),33554432,0)|0); $128 = tempRet0; - $129 = (_i64Add(($127|0),($128|0),($33|0),($34|0))|0); + $129 = (_bitshift64Ashr(($127|0),($128|0),26)|0); $130 = tempRet0; - $131 = (_i64Subtract(($129|0),($130|0),($93|0),($94|0))|0); + $131 = (_i64Add(($129|0),($130|0),($35|0),($36|0))|0); $132 = tempRet0; - $133 = (_bitshift64Shl(($127|0),($128|0),26)|0); + $133 = (_i64Subtract(($131|0),($132|0),($95|0),($96|0))|0); $134 = tempRet0; - $135 = (_i64Subtract(($81|0),($82|0),($133|0),($134|0))|0); + $135 = (_bitshift64Shl(($129|0),($130|0),26)|0); $136 = tempRet0; - $137 = (_i64Add(($91|0),($92|0),33554432,0)|0); + $137 = (_i64Subtract(($83|0),($84|0),($135|0),($136|0))|0); $138 = tempRet0; - $139 = (_bitshift64Ashr(($137|0),($138|0),26)|0); + $139 = (_i64Add(($93|0),($94|0),33554432,0)|0); $140 = tempRet0; - $141 = (_i64Add(($139|0),($140|0),($45|0),0)|0); + $141 = (_bitshift64Ashr(($139|0),($140|0),26)|0); $142 = tempRet0; - $143 = (_i64Subtract(($141|0),($142|0),($55|0),($56|0))|0); + $143 = (_i64Add(($141|0),($142|0),($47|0),0)|0); $144 = tempRet0; - $145 = (_bitshift64Shl(($139|0),($140|0),26)|0); + $145 = (_i64Subtract(($143|0),($144|0),($57|0),($58|0))|0); $146 = tempRet0; - $147 = (_i64Subtract(($91|0),($92|0),($145|0),($146|0))|0); + $147 = (_bitshift64Shl(($141|0),($142|0),26)|0); $148 = tempRet0; - HEAP32[$h>>2] = $103; - $149 = ((($h)) + 4|0); - HEAP32[$149>>2] = $99; - $150 = ((($h)) + 8|0); - HEAP32[$150>>2] = $113; - $151 = ((($h)) + 12|0); - HEAP32[$151>>2] = $109; - $152 = ((($h)) + 16|0); - HEAP32[$152>>2] = $123; - $153 = ((($h)) + 20|0); - HEAP32[$153>>2] = $119; - $154 = ((($h)) + 24|0); - HEAP32[$154>>2] = $135; - $155 = ((($h)) + 28|0); - HEAP32[$155>>2] = $131; - $156 = ((($h)) + 32|0); - HEAP32[$156>>2] = $147; - $157 = ((($h)) + 36|0); - HEAP32[$157>>2] = $143; + $149 = (_i64Subtract(($93|0),($94|0),($147|0),($148|0))|0); + $150 = tempRet0; + HEAP32[$0>>2] = $105; + $151 = ((($0)) + 4|0); + HEAP32[$151>>2] = $101; + $152 = ((($0)) + 8|0); + HEAP32[$152>>2] = $115; + $153 = ((($0)) + 12|0); + HEAP32[$153>>2] = $111; + $154 = ((($0)) + 16|0); + HEAP32[$154>>2] = $125; + $155 = ((($0)) + 20|0); + HEAP32[$155>>2] = $121; + $156 = ((($0)) + 24|0); + HEAP32[$156>>2] = $137; + $157 = ((($0)) + 28|0); + HEAP32[$157>>2] = $133; + $158 = ((($0)) + 32|0); + HEAP32[$158>>2] = $149; + $159 = ((($0)) + 36|0); + HEAP32[$159>>2] = $145; return; } -function _load_4($in) { - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; +function _load_4($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; var $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP8[$in>>0]|0; - $1 = $0&255; - $2 = ((($in)) + 1|0); - $3 = HEAP8[$2>>0]|0; - $4 = $3&255; - $5 = (_bitshift64Shl(($4|0),0,8)|0); - $6 = tempRet0; - $7 = $5 | $1; - $8 = ((($in)) + 2|0); - $9 = HEAP8[$8>>0]|0; - $10 = $9&255; - $11 = (_bitshift64Shl(($10|0),0,16)|0); - $12 = tempRet0; - $13 = $7 | $11; - $14 = $6 | $12; - $15 = ((($in)) + 3|0); - $16 = HEAP8[$15>>0]|0; - $17 = $16&255; - $18 = (_bitshift64Shl(($17|0),0,24)|0); - $19 = tempRet0; - $20 = $13 | $18; + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = ((($0)) + 1|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = (_bitshift64Shl(($5|0),0,8)|0); + $7 = tempRet0; + $8 = $6 | $2; + $9 = ((($0)) + 2|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = (_bitshift64Shl(($11|0),0,16)|0); + $13 = tempRet0; + $14 = $8 | $12; + $15 = $7 | $13; + $16 = ((($0)) + 3|0); + $17 = HEAP8[$16>>0]|0; + $18 = $17&255; + $19 = (_bitshift64Shl(($18|0),0,24)|0); + $20 = tempRet0; $21 = $14 | $19; - tempRet0 = ($21); - return ($20|0); + $22 = $15 | $20; + tempRet0 = ($22); + return ($21|0); } -function _load_3($in) { - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; +function _load_3($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP8[$in>>0]|0; - $1 = $0&255; - $2 = ((($in)) + 1|0); - $3 = HEAP8[$2>>0]|0; - $4 = $3&255; - $5 = (_bitshift64Shl(($4|0),0,8)|0); - $6 = tempRet0; - $7 = $5 | $1; - $8 = ((($in)) + 2|0); - $9 = HEAP8[$8>>0]|0; - $10 = $9&255; - $11 = (_bitshift64Shl(($10|0),0,16)|0); - $12 = tempRet0; - $13 = $7 | $11; - $14 = $6 | $12; - tempRet0 = ($14); - return ($13|0); -} -function _crypto_sign_ed25519_ref10_fe_invert($out,$z) { - $out = $out|0; - $z = $z|0; - var $0 = 0, $1 = 0, $2 = 0, $exitcond = 0, $exitcond10 = 0, $exitcond11 = 0, $i$74 = 0, $i$83 = 0, $i$92 = 0, $t0 = 0, $t1 = 0, $t2 = 0, $t3 = 0, label = 0, sp = 0; + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = ((($0)) + 1|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = (_bitshift64Shl(($5|0),0,8)|0); + $7 = tempRet0; + $8 = $6 | $2; + $9 = ((($0)) + 2|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = (_bitshift64Shl(($11|0),0,16)|0); + $13 = tempRet0; + $14 = $8 | $12; + $15 = $7 | $13; + tempRet0 = ($15); + return ($14|0); +} +function _crypto_sign_ed25519_ref10_fe_invert($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$728 = 0, $$827 = 0, $$926 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $exitcond = 0, $exitcond34 = 0, $exitcond35 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 160|0; - $t0 = sp + 120|0; - $t1 = sp + 80|0; - $t2 = sp + 40|0; - $t3 = sp; - _crypto_sign_ed25519_ref10_fe_sq($t0,$z); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_mul($t1,$z,$t1); - _crypto_sign_ed25519_ref10_fe_mul($t0,$t0,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t0); - _crypto_sign_ed25519_ref10_fe_mul($t1,$t1,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_mul($t2,$t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - _crypto_sign_ed25519_ref10_fe_mul($t2,$t3,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); - $i$74 = 1; + $2 = sp + 120|0; + $3 = sp + 80|0; + $4 = sp + 40|0; + $5 = sp; + _crypto_sign_ed25519_ref10_fe_sq($2,$1); + _crypto_sign_ed25519_ref10_fe_sq($3,$2); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_mul($3,$1,$3); + _crypto_sign_ed25519_ref10_fe_mul($2,$2,$3); + _crypto_sign_ed25519_ref10_fe_sq($4,$2); + _crypto_sign_ed25519_ref10_fe_mul($3,$3,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$3); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_mul($3,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($4,$3); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_mul($4,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($5,$4); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + _crypto_sign_ed25519_ref10_fe_mul($4,$5,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_mul($3,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($4,$3); + $$728 = 1; while(1) { - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - $0 = (($i$74) + 1)|0; - $exitcond11 = ($0|0)==(50); - if ($exitcond11) { + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + $6 = (($$728) + 1)|0; + $exitcond35 = ($6|0)==(50); + if ($exitcond35) { break; } else { - $i$74 = $0; + $$728 = $6; } } - _crypto_sign_ed25519_ref10_fe_mul($t2,$t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t3,$t2); - $i$83 = 1; + _crypto_sign_ed25519_ref10_fe_mul($4,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($5,$4); + $$827 = 1; while(1) { - _crypto_sign_ed25519_ref10_fe_sq($t3,$t3); - $1 = (($i$83) + 1)|0; - $exitcond10 = ($1|0)==(100); - if ($exitcond10) { + _crypto_sign_ed25519_ref10_fe_sq($5,$5); + $7 = (($$827) + 1)|0; + $exitcond34 = ($7|0)==(100); + if ($exitcond34) { break; } else { - $i$83 = $1; + $$827 = $7; } } - _crypto_sign_ed25519_ref10_fe_mul($t2,$t3,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - $i$92 = 1; + _crypto_sign_ed25519_ref10_fe_mul($4,$5,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + $$926 = 1; while(1) { - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - $2 = (($i$92) + 1)|0; - $exitcond = ($2|0)==(50); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + $8 = (($$926) + 1)|0; + $exitcond = ($8|0)==(50); if ($exitcond) { break; } else { - $i$92 = $2; + $$926 = $8; } } - _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_mul($out,$t1,$t0); + _crypto_sign_ed25519_ref10_fe_mul($3,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_mul($0,$3,$2); STACKTOP = sp;return; } -function _crypto_sign_ed25519_ref10_fe_isnegative($f) { - $f = $f|0; - var $0 = 0, $1 = 0, $2 = 0, $s = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_fe_isnegative($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 32|0; - $s = sp; - _crypto_sign_ed25519_ref10_fe_tobytes($s,$f); - $0 = HEAP8[$s>>0]|0; - $1 = $0&255; - $2 = $1 & 1; - STACKTOP = sp;return ($2|0); + $1 = sp; + _crypto_sign_ed25519_ref10_fe_tobytes($1,$0); + $2 = HEAP8[$1>>0]|0; + $3 = $2 & 1; + $4 = $3&255; + STACKTOP = sp;return ($4|0); } -function _crypto_sign_ed25519_ref10_fe_isnonzero($f) { - $f = $f|0; - var $0 = 0, $s = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_fe_isnonzero($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 32|0; - $s = sp; - _crypto_sign_ed25519_ref10_fe_tobytes($s,$f); - $0 = (_crypto_verify_32_ref($s,33172)|0); - STACKTOP = sp;return ($0|0); -} -function _crypto_sign_ed25519_ref10_fe_mul($h,$f,$g) { - $h = $h|0; - $f = $f|0; - $g = $g|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; - var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; - var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; - var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; - var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; - var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; - var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; - var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; - var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; - var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; - var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; - var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; - var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0; - var $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0; - var $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0; - var $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0; - var $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0; - var $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0; - var $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0; - var $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0; - var $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0; - var $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0; - var $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0; - var $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0; - var $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0; + $1 = sp; + _crypto_sign_ed25519_ref10_fe_tobytes($1,$0); + $2 = (_crypto_verify_32_ref($1,33460)|0); + STACKTOP = sp;return ($2|0); +} +function _crypto_sign_ed25519_ref10_fe_mul($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0; + var $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0; + var $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0; + var $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0; + var $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0; + var $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0; + var $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0; + var $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0; + var $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0; + var $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0; + var $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0; + var $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0; + var $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0; + var $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0; + var $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0; + var $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0; + var $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0; + var $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0; + var $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0; + var $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0; + var $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0; + var $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0; + var $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0; + var $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0; + var $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0; var $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0; var $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); + $3 = HEAP32[$1>>2]|0; + $4 = ((($1)) + 4|0); + $5 = HEAP32[$4>>2]|0; + $6 = ((($1)) + 8|0); + $7 = HEAP32[$6>>2]|0; + $8 = ((($1)) + 12|0); + $9 = HEAP32[$8>>2]|0; + $10 = ((($1)) + 16|0); + $11 = HEAP32[$10>>2]|0; + $12 = ((($1)) + 20|0); + $13 = HEAP32[$12>>2]|0; + $14 = ((($1)) + 24|0); + $15 = HEAP32[$14>>2]|0; + $16 = ((($1)) + 28|0); + $17 = HEAP32[$16>>2]|0; + $18 = ((($1)) + 32|0); + $19 = HEAP32[$18>>2]|0; + $20 = ((($1)) + 36|0); + $21 = HEAP32[$20>>2]|0; + $22 = HEAP32[$2>>2]|0; + $23 = ((($2)) + 4|0); + $24 = HEAP32[$23>>2]|0; + $25 = ((($2)) + 8|0); + $26 = HEAP32[$25>>2]|0; + $27 = ((($2)) + 12|0); + $28 = HEAP32[$27>>2]|0; + $29 = ((($2)) + 16|0); + $30 = HEAP32[$29>>2]|0; + $31 = ((($2)) + 20|0); + $32 = HEAP32[$31>>2]|0; + $33 = ((($2)) + 24|0); + $34 = HEAP32[$33>>2]|0; + $35 = ((($2)) + 28|0); + $36 = HEAP32[$35>>2]|0; + $37 = ((($2)) + 32|0); + $38 = HEAP32[$37>>2]|0; + $39 = ((($2)) + 36|0); + $40 = HEAP32[$39>>2]|0; + $41 = ($24*19)|0; + $42 = ($26*19)|0; + $43 = ($28*19)|0; + $44 = ($30*19)|0; + $45 = ($32*19)|0; + $46 = ($34*19)|0; + $47 = ($36*19)|0; + $48 = ($38*19)|0; + $49 = ($40*19)|0; + $50 = $5 << 1; + $51 = $9 << 1; + $52 = $13 << 1; + $53 = $17 << 1; + $54 = $21 << 1; + $55 = ($3|0)<(0); + $56 = $55 << 31 >> 31; + $57 = ($22|0)<(0); + $58 = $57 << 31 >> 31; + $59 = (___muldi3(($22|0),($58|0),($3|0),($56|0))|0); + $60 = tempRet0; + $61 = ($24|0)<(0); + $62 = $61 << 31 >> 31; + $63 = (___muldi3(($24|0),($62|0),($3|0),($56|0))|0); + $64 = tempRet0; + $65 = ($26|0)<(0); + $66 = $65 << 31 >> 31; + $67 = (___muldi3(($26|0),($66|0),($3|0),($56|0))|0); + $68 = tempRet0; + $69 = ($28|0)<(0); + $70 = $69 << 31 >> 31; + $71 = (___muldi3(($28|0),($70|0),($3|0),($56|0))|0); + $72 = tempRet0; + $73 = ($30|0)<(0); + $74 = $73 << 31 >> 31; + $75 = (___muldi3(($30|0),($74|0),($3|0),($56|0))|0); + $76 = tempRet0; + $77 = ($32|0)<(0); + $78 = $77 << 31 >> 31; + $79 = (___muldi3(($32|0),($78|0),($3|0),($56|0))|0); + $80 = tempRet0; + $81 = ($34|0)<(0); + $82 = $81 << 31 >> 31; + $83 = (___muldi3(($34|0),($82|0),($3|0),($56|0))|0); + $84 = tempRet0; + $85 = ($36|0)<(0); + $86 = $85 << 31 >> 31; + $87 = (___muldi3(($36|0),($86|0),($3|0),($56|0))|0); + $88 = tempRet0; + $89 = ($38|0)<(0); + $90 = $89 << 31 >> 31; + $91 = (___muldi3(($38|0),($90|0),($3|0),($56|0))|0); + $92 = tempRet0; + $93 = ($40|0)<(0); + $94 = $93 << 31 >> 31; + $95 = (___muldi3(($40|0),($94|0),($3|0),($56|0))|0); + $96 = tempRet0; + $97 = ($5|0)<(0); + $98 = $97 << 31 >> 31; + $99 = (___muldi3(($22|0),($58|0),($5|0),($98|0))|0); + $100 = tempRet0; + $101 = ($50|0)<(0); + $102 = $101 << 31 >> 31; + $103 = (___muldi3(($24|0),($62|0),($50|0),($102|0))|0); + $104 = tempRet0; + $105 = (___muldi3(($26|0),($66|0),($5|0),($98|0))|0); + $106 = tempRet0; + $107 = (___muldi3(($28|0),($70|0),($50|0),($102|0))|0); + $108 = tempRet0; + $109 = (___muldi3(($30|0),($74|0),($5|0),($98|0))|0); + $110 = tempRet0; + $111 = (___muldi3(($32|0),($78|0),($50|0),($102|0))|0); + $112 = tempRet0; + $113 = (___muldi3(($34|0),($82|0),($5|0),($98|0))|0); + $114 = tempRet0; + $115 = (___muldi3(($36|0),($86|0),($50|0),($102|0))|0); + $116 = tempRet0; + $117 = (___muldi3(($38|0),($90|0),($5|0),($98|0))|0); + $118 = tempRet0; + $119 = ($49|0)<(0); + $120 = $119 << 31 >> 31; + $121 = (___muldi3(($49|0),($120|0),($50|0),($102|0))|0); + $122 = tempRet0; + $123 = ($7|0)<(0); + $124 = $123 << 31 >> 31; + $125 = (___muldi3(($22|0),($58|0),($7|0),($124|0))|0); + $126 = tempRet0; + $127 = (___muldi3(($24|0),($62|0),($7|0),($124|0))|0); + $128 = tempRet0; + $129 = (___muldi3(($26|0),($66|0),($7|0),($124|0))|0); + $130 = tempRet0; + $131 = (___muldi3(($28|0),($70|0),($7|0),($124|0))|0); + $132 = tempRet0; + $133 = (___muldi3(($30|0),($74|0),($7|0),($124|0))|0); + $134 = tempRet0; + $135 = (___muldi3(($32|0),($78|0),($7|0),($124|0))|0); + $136 = tempRet0; + $137 = (___muldi3(($34|0),($82|0),($7|0),($124|0))|0); + $138 = tempRet0; + $139 = (___muldi3(($36|0),($86|0),($7|0),($124|0))|0); + $140 = tempRet0; + $141 = ($48|0)<(0); + $142 = $141 << 31 >> 31; + $143 = (___muldi3(($48|0),($142|0),($7|0),($124|0))|0); + $144 = tempRet0; + $145 = (___muldi3(($49|0),($120|0),($7|0),($124|0))|0); + $146 = tempRet0; + $147 = ($9|0)<(0); + $148 = $147 << 31 >> 31; + $149 = (___muldi3(($22|0),($58|0),($9|0),($148|0))|0); + $150 = tempRet0; + $151 = ($51|0)<(0); + $152 = $151 << 31 >> 31; + $153 = (___muldi3(($24|0),($62|0),($51|0),($152|0))|0); + $154 = tempRet0; + $155 = (___muldi3(($26|0),($66|0),($9|0),($148|0))|0); + $156 = tempRet0; + $157 = (___muldi3(($28|0),($70|0),($51|0),($152|0))|0); + $158 = tempRet0; + $159 = (___muldi3(($30|0),($74|0),($9|0),($148|0))|0); + $160 = tempRet0; + $161 = (___muldi3(($32|0),($78|0),($51|0),($152|0))|0); + $162 = tempRet0; + $163 = (___muldi3(($34|0),($82|0),($9|0),($148|0))|0); + $164 = tempRet0; + $165 = ($47|0)<(0); + $166 = $165 << 31 >> 31; + $167 = (___muldi3(($47|0),($166|0),($51|0),($152|0))|0); + $168 = tempRet0; + $169 = (___muldi3(($48|0),($142|0),($9|0),($148|0))|0); + $170 = tempRet0; + $171 = (___muldi3(($49|0),($120|0),($51|0),($152|0))|0); + $172 = tempRet0; + $173 = ($11|0)<(0); + $174 = $173 << 31 >> 31; + $175 = (___muldi3(($22|0),($58|0),($11|0),($174|0))|0); + $176 = tempRet0; + $177 = (___muldi3(($24|0),($62|0),($11|0),($174|0))|0); + $178 = tempRet0; + $179 = (___muldi3(($26|0),($66|0),($11|0),($174|0))|0); + $180 = tempRet0; + $181 = (___muldi3(($28|0),($70|0),($11|0),($174|0))|0); + $182 = tempRet0; + $183 = (___muldi3(($30|0),($74|0),($11|0),($174|0))|0); + $184 = tempRet0; + $185 = (___muldi3(($32|0),($78|0),($11|0),($174|0))|0); + $186 = tempRet0; + $187 = ($46|0)<(0); + $188 = $187 << 31 >> 31; + $189 = (___muldi3(($46|0),($188|0),($11|0),($174|0))|0); + $190 = tempRet0; + $191 = (___muldi3(($47|0),($166|0),($11|0),($174|0))|0); + $192 = tempRet0; + $193 = (___muldi3(($48|0),($142|0),($11|0),($174|0))|0); + $194 = tempRet0; + $195 = (___muldi3(($49|0),($120|0),($11|0),($174|0))|0); + $196 = tempRet0; + $197 = ($13|0)<(0); + $198 = $197 << 31 >> 31; + $199 = (___muldi3(($22|0),($58|0),($13|0),($198|0))|0); + $200 = tempRet0; + $201 = ($52|0)<(0); + $202 = $201 << 31 >> 31; + $203 = (___muldi3(($24|0),($62|0),($52|0),($202|0))|0); + $204 = tempRet0; + $205 = (___muldi3(($26|0),($66|0),($13|0),($198|0))|0); + $206 = tempRet0; + $207 = (___muldi3(($28|0),($70|0),($52|0),($202|0))|0); + $208 = tempRet0; + $209 = (___muldi3(($30|0),($74|0),($13|0),($198|0))|0); + $210 = tempRet0; + $211 = ($45|0)<(0); + $212 = $211 << 31 >> 31; + $213 = (___muldi3(($45|0),($212|0),($52|0),($202|0))|0); + $214 = tempRet0; + $215 = (___muldi3(($46|0),($188|0),($13|0),($198|0))|0); + $216 = tempRet0; + $217 = (___muldi3(($47|0),($166|0),($52|0),($202|0))|0); + $218 = tempRet0; + $219 = (___muldi3(($48|0),($142|0),($13|0),($198|0))|0); + $220 = tempRet0; + $221 = (___muldi3(($49|0),($120|0),($52|0),($202|0))|0); + $222 = tempRet0; + $223 = ($15|0)<(0); + $224 = $223 << 31 >> 31; + $225 = (___muldi3(($22|0),($58|0),($15|0),($224|0))|0); + $226 = tempRet0; + $227 = (___muldi3(($24|0),($62|0),($15|0),($224|0))|0); + $228 = tempRet0; + $229 = (___muldi3(($26|0),($66|0),($15|0),($224|0))|0); + $230 = tempRet0; + $231 = (___muldi3(($28|0),($70|0),($15|0),($224|0))|0); + $232 = tempRet0; + $233 = ($44|0)<(0); + $234 = $233 << 31 >> 31; + $235 = (___muldi3(($44|0),($234|0),($15|0),($224|0))|0); + $236 = tempRet0; + $237 = (___muldi3(($45|0),($212|0),($15|0),($224|0))|0); + $238 = tempRet0; + $239 = (___muldi3(($46|0),($188|0),($15|0),($224|0))|0); + $240 = tempRet0; + $241 = (___muldi3(($47|0),($166|0),($15|0),($224|0))|0); + $242 = tempRet0; + $243 = (___muldi3(($48|0),($142|0),($15|0),($224|0))|0); + $244 = tempRet0; + $245 = (___muldi3(($49|0),($120|0),($15|0),($224|0))|0); + $246 = tempRet0; + $247 = ($17|0)<(0); + $248 = $247 << 31 >> 31; + $249 = (___muldi3(($22|0),($58|0),($17|0),($248|0))|0); + $250 = tempRet0; + $251 = ($53|0)<(0); + $252 = $251 << 31 >> 31; + $253 = (___muldi3(($24|0),($62|0),($53|0),($252|0))|0); + $254 = tempRet0; + $255 = (___muldi3(($26|0),($66|0),($17|0),($248|0))|0); + $256 = tempRet0; + $257 = ($43|0)<(0); + $258 = $257 << 31 >> 31; + $259 = (___muldi3(($43|0),($258|0),($53|0),($252|0))|0); + $260 = tempRet0; + $261 = (___muldi3(($44|0),($234|0),($17|0),($248|0))|0); + $262 = tempRet0; + $263 = (___muldi3(($45|0),($212|0),($53|0),($252|0))|0); + $264 = tempRet0; + $265 = (___muldi3(($46|0),($188|0),($17|0),($248|0))|0); + $266 = tempRet0; + $267 = (___muldi3(($47|0),($166|0),($53|0),($252|0))|0); + $268 = tempRet0; + $269 = (___muldi3(($48|0),($142|0),($17|0),($248|0))|0); + $270 = tempRet0; + $271 = (___muldi3(($49|0),($120|0),($53|0),($252|0))|0); + $272 = tempRet0; + $273 = ($19|0)<(0); + $274 = $273 << 31 >> 31; + $275 = (___muldi3(($22|0),($58|0),($19|0),($274|0))|0); + $276 = tempRet0; + $277 = (___muldi3(($24|0),($62|0),($19|0),($274|0))|0); + $278 = tempRet0; + $279 = ($42|0)<(0); + $280 = $279 << 31 >> 31; + $281 = (___muldi3(($42|0),($280|0),($19|0),($274|0))|0); + $282 = tempRet0; + $283 = (___muldi3(($43|0),($258|0),($19|0),($274|0))|0); + $284 = tempRet0; + $285 = (___muldi3(($44|0),($234|0),($19|0),($274|0))|0); + $286 = tempRet0; + $287 = (___muldi3(($45|0),($212|0),($19|0),($274|0))|0); + $288 = tempRet0; + $289 = (___muldi3(($46|0),($188|0),($19|0),($274|0))|0); + $290 = tempRet0; + $291 = (___muldi3(($47|0),($166|0),($19|0),($274|0))|0); + $292 = tempRet0; + $293 = (___muldi3(($48|0),($142|0),($19|0),($274|0))|0); + $294 = tempRet0; + $295 = (___muldi3(($49|0),($120|0),($19|0),($274|0))|0); + $296 = tempRet0; + $297 = ($21|0)<(0); + $298 = $297 << 31 >> 31; + $299 = (___muldi3(($22|0),($58|0),($21|0),($298|0))|0); + $300 = tempRet0; + $301 = ($54|0)<(0); + $302 = $301 << 31 >> 31; + $303 = ($41|0)<(0); + $304 = $303 << 31 >> 31; + $305 = (___muldi3(($41|0),($304|0),($54|0),($302|0))|0); + $306 = tempRet0; + $307 = (___muldi3(($42|0),($280|0),($21|0),($298|0))|0); + $308 = tempRet0; + $309 = (___muldi3(($43|0),($258|0),($54|0),($302|0))|0); + $310 = tempRet0; + $311 = (___muldi3(($44|0),($234|0),($21|0),($298|0))|0); + $312 = tempRet0; + $313 = (___muldi3(($45|0),($212|0),($54|0),($302|0))|0); + $314 = tempRet0; + $315 = (___muldi3(($46|0),($188|0),($21|0),($298|0))|0); + $316 = tempRet0; + $317 = (___muldi3(($47|0),($166|0),($54|0),($302|0))|0); + $318 = tempRet0; + $319 = (___muldi3(($48|0),($142|0),($21|0),($298|0))|0); + $320 = tempRet0; + $321 = (___muldi3(($49|0),($120|0),($54|0),($302|0))|0); + $322 = tempRet0; + $323 = (_i64Add(($305|0),($306|0),($59|0),($60|0))|0); + $324 = tempRet0; + $325 = (_i64Add(($323|0),($324|0),($281|0),($282|0))|0); + $326 = tempRet0; + $327 = (_i64Add(($325|0),($326|0),($259|0),($260|0))|0); + $328 = tempRet0; + $329 = (_i64Add(($327|0),($328|0),($235|0),($236|0))|0); + $330 = tempRet0; + $331 = (_i64Add(($329|0),($330|0),($213|0),($214|0))|0); + $332 = tempRet0; + $333 = (_i64Add(($331|0),($332|0),($189|0),($190|0))|0); + $334 = tempRet0; + $335 = (_i64Add(($333|0),($334|0),($167|0),($168|0))|0); + $336 = tempRet0; + $337 = (_i64Add(($335|0),($336|0),($143|0),($144|0))|0); + $338 = tempRet0; + $339 = (_i64Add(($337|0),($338|0),($121|0),($122|0))|0); + $340 = tempRet0; + $341 = (_i64Add(($63|0),($64|0),($99|0),($100|0))|0); + $342 = tempRet0; + $343 = (_i64Add(($153|0),($154|0),($175|0),($176|0))|0); + $344 = tempRet0; + $345 = (_i64Add(($343|0),($344|0),($129|0),($130|0))|0); + $346 = tempRet0; + $347 = (_i64Add(($345|0),($346|0),($107|0),($108|0))|0); + $348 = tempRet0; + $349 = (_i64Add(($347|0),($348|0),($75|0),($76|0))|0); + $350 = tempRet0; + $351 = (_i64Add(($349|0),($350|0),($313|0),($314|0))|0); + $352 = tempRet0; + $353 = (_i64Add(($351|0),($352|0),($289|0),($290|0))|0); + $354 = tempRet0; + $355 = (_i64Add(($353|0),($354|0),($267|0),($268|0))|0); + $356 = tempRet0; + $357 = (_i64Add(($355|0),($356|0),($243|0),($244|0))|0); + $358 = tempRet0; + $359 = (_i64Add(($357|0),($358|0),($221|0),($222|0))|0); + $360 = tempRet0; + $361 = (_i64Add(($339|0),($340|0),33554432,0)|0); + $362 = tempRet0; + $363 = (_bitshift64Ashr(($361|0),($362|0),26)|0); + $364 = tempRet0; + $365 = (_i64Add(($341|0),($342|0),($307|0),($308|0))|0); + $366 = tempRet0; + $367 = (_i64Add(($365|0),($366|0),($283|0),($284|0))|0); + $368 = tempRet0; + $369 = (_i64Add(($367|0),($368|0),($261|0),($262|0))|0); + $370 = tempRet0; + $371 = (_i64Add(($369|0),($370|0),($237|0),($238|0))|0); + $372 = tempRet0; + $373 = (_i64Add(($371|0),($372|0),($215|0),($216|0))|0); + $374 = tempRet0; + $375 = (_i64Add(($373|0),($374|0),($191|0),($192|0))|0); + $376 = tempRet0; + $377 = (_i64Add(($375|0),($376|0),($169|0),($170|0))|0); + $378 = tempRet0; + $379 = (_i64Add(($377|0),($378|0),($145|0),($146|0))|0); + $380 = tempRet0; + $381 = (_i64Add(($379|0),($380|0),($363|0),($364|0))|0); + $382 = tempRet0; + $383 = (_bitshift64Shl(($363|0),($364|0),26)|0); + $384 = tempRet0; + $385 = (_i64Subtract(($339|0),($340|0),($383|0),($384|0))|0); + $386 = tempRet0; + $387 = (_i64Add(($359|0),($360|0),33554432,0)|0); + $388 = tempRet0; + $389 = (_bitshift64Ashr(($387|0),($388|0),26)|0); + $390 = tempRet0; + $391 = (_i64Add(($177|0),($178|0),($199|0),($200|0))|0); + $392 = tempRet0; + $393 = (_i64Add(($391|0),($392|0),($155|0),($156|0))|0); + $394 = tempRet0; + $395 = (_i64Add(($393|0),($394|0),($131|0),($132|0))|0); + $396 = tempRet0; + $397 = (_i64Add(($395|0),($396|0),($109|0),($110|0))|0); + $398 = tempRet0; + $399 = (_i64Add(($397|0),($398|0),($79|0),($80|0))|0); + $400 = tempRet0; + $401 = (_i64Add(($399|0),($400|0),($315|0),($316|0))|0); + $402 = tempRet0; + $403 = (_i64Add(($401|0),($402|0),($291|0),($292|0))|0); + $404 = tempRet0; + $405 = (_i64Add(($403|0),($404|0),($269|0),($270|0))|0); + $406 = tempRet0; + $407 = (_i64Add(($405|0),($406|0),($245|0),($246|0))|0); + $408 = tempRet0; + $409 = (_i64Add(($407|0),($408|0),($389|0),($390|0))|0); + $410 = tempRet0; + $411 = (_bitshift64Shl(($389|0),($390|0),26)|0); + $412 = tempRet0; + $413 = (_i64Subtract(($359|0),($360|0),($411|0),($412|0))|0); + $414 = tempRet0; + $415 = (_i64Add(($381|0),($382|0),16777216,0)|0); + $416 = tempRet0; + $417 = (_bitshift64Ashr(($415|0),($416|0),25)|0); + $418 = tempRet0; + $419 = (_i64Add(($103|0),($104|0),($125|0),($126|0))|0); + $420 = tempRet0; + $421 = (_i64Add(($419|0),($420|0),($67|0),($68|0))|0); + $422 = tempRet0; + $423 = (_i64Add(($421|0),($422|0),($309|0),($310|0))|0); + $424 = tempRet0; + $425 = (_i64Add(($423|0),($424|0),($285|0),($286|0))|0); + $426 = tempRet0; + $427 = (_i64Add(($425|0),($426|0),($263|0),($264|0))|0); + $428 = tempRet0; + $429 = (_i64Add(($427|0),($428|0),($239|0),($240|0))|0); + $430 = tempRet0; + $431 = (_i64Add(($429|0),($430|0),($217|0),($218|0))|0); + $432 = tempRet0; + $433 = (_i64Add(($431|0),($432|0),($193|0),($194|0))|0); + $434 = tempRet0; + $435 = (_i64Add(($433|0),($434|0),($171|0),($172|0))|0); + $436 = tempRet0; + $437 = (_i64Add(($435|0),($436|0),($417|0),($418|0))|0); + $438 = tempRet0; + $439 = (_bitshift64Shl(($417|0),($418|0),25)|0); + $440 = tempRet0; + $441 = (_i64Subtract(($381|0),($382|0),($439|0),($440|0))|0); + $442 = tempRet0; + $443 = (_i64Add(($409|0),($410|0),16777216,0)|0); + $444 = tempRet0; + $445 = (_bitshift64Ashr(($443|0),($444|0),25)|0); + $446 = tempRet0; + $447 = (_i64Add(($203|0),($204|0),($225|0),($226|0))|0); + $448 = tempRet0; + $449 = (_i64Add(($447|0),($448|0),($179|0),($180|0))|0); + $450 = tempRet0; + $451 = (_i64Add(($449|0),($450|0),($157|0),($158|0))|0); + $452 = tempRet0; + $453 = (_i64Add(($451|0),($452|0),($133|0),($134|0))|0); + $454 = tempRet0; + $455 = (_i64Add(($453|0),($454|0),($111|0),($112|0))|0); + $456 = tempRet0; + $457 = (_i64Add(($455|0),($456|0),($83|0),($84|0))|0); + $458 = tempRet0; + $459 = (_i64Add(($457|0),($458|0),($317|0),($318|0))|0); + $460 = tempRet0; + $461 = (_i64Add(($459|0),($460|0),($293|0),($294|0))|0); + $462 = tempRet0; + $463 = (_i64Add(($461|0),($462|0),($271|0),($272|0))|0); + $464 = tempRet0; + $465 = (_i64Add(($463|0),($464|0),($445|0),($446|0))|0); + $466 = tempRet0; + $467 = (_bitshift64Shl(($445|0),($446|0),25)|0); + $468 = tempRet0; + $469 = (_i64Subtract(($409|0),($410|0),($467|0),($468|0))|0); + $470 = tempRet0; + $471 = (_i64Add(($437|0),($438|0),33554432,0)|0); + $472 = tempRet0; + $473 = (_bitshift64Ashr(($471|0),($472|0),26)|0); + $474 = tempRet0; + $475 = (_i64Add(($127|0),($128|0),($149|0),($150|0))|0); + $476 = tempRet0; + $477 = (_i64Add(($475|0),($476|0),($105|0),($106|0))|0); + $478 = tempRet0; + $479 = (_i64Add(($477|0),($478|0),($71|0),($72|0))|0); + $480 = tempRet0; + $481 = (_i64Add(($479|0),($480|0),($311|0),($312|0))|0); + $482 = tempRet0; + $483 = (_i64Add(($481|0),($482|0),($287|0),($288|0))|0); + $484 = tempRet0; + $485 = (_i64Add(($483|0),($484|0),($265|0),($266|0))|0); + $486 = tempRet0; + $487 = (_i64Add(($485|0),($486|0),($241|0),($242|0))|0); + $488 = tempRet0; + $489 = (_i64Add(($487|0),($488|0),($219|0),($220|0))|0); + $490 = tempRet0; + $491 = (_i64Add(($489|0),($490|0),($195|0),($196|0))|0); + $492 = tempRet0; + $493 = (_i64Add(($491|0),($492|0),($473|0),($474|0))|0); + $494 = tempRet0; + $495 = (_bitshift64Shl(($473|0),($474|0),26)|0); + $496 = tempRet0; + $497 = (_i64Subtract(($437|0),($438|0),($495|0),($496|0))|0); + $498 = tempRet0; + $499 = (_i64Add(($465|0),($466|0),33554432,0)|0); + $500 = tempRet0; + $501 = (_bitshift64Ashr(($499|0),($500|0),26)|0); + $502 = tempRet0; + $503 = (_i64Add(($227|0),($228|0),($249|0),($250|0))|0); + $504 = tempRet0; + $505 = (_i64Add(($503|0),($504|0),($205|0),($206|0))|0); + $506 = tempRet0; + $507 = (_i64Add(($505|0),($506|0),($181|0),($182|0))|0); + $508 = tempRet0; + $509 = (_i64Add(($507|0),($508|0),($159|0),($160|0))|0); + $510 = tempRet0; + $511 = (_i64Add(($509|0),($510|0),($135|0),($136|0))|0); + $512 = tempRet0; + $513 = (_i64Add(($511|0),($512|0),($113|0),($114|0))|0); + $514 = tempRet0; + $515 = (_i64Add(($513|0),($514|0),($87|0),($88|0))|0); + $516 = tempRet0; + $517 = (_i64Add(($515|0),($516|0),($319|0),($320|0))|0); + $518 = tempRet0; + $519 = (_i64Add(($517|0),($518|0),($295|0),($296|0))|0); + $520 = tempRet0; + $521 = (_i64Add(($519|0),($520|0),($501|0),($502|0))|0); + $522 = tempRet0; + $523 = (_bitshift64Shl(($501|0),($502|0),26)|0); + $524 = tempRet0; + $525 = (_i64Subtract(($465|0),($466|0),($523|0),($524|0))|0); + $526 = tempRet0; + $527 = (_i64Add(($493|0),($494|0),16777216,0)|0); + $528 = tempRet0; + $529 = (_bitshift64Ashr(($527|0),($528|0),25)|0); + $530 = tempRet0; + $531 = (_i64Add(($529|0),($530|0),($413|0),($414|0))|0); + $532 = tempRet0; + $533 = (_bitshift64Shl(($529|0),($530|0),25)|0); + $534 = tempRet0; + $535 = (_i64Subtract(($493|0),($494|0),($533|0),($534|0))|0); + $536 = tempRet0; + $537 = (_i64Add(($521|0),($522|0),16777216,0)|0); + $538 = tempRet0; + $539 = (_bitshift64Ashr(($537|0),($538|0),25)|0); + $540 = tempRet0; + $541 = (_i64Add(($253|0),($254|0),($275|0),($276|0))|0); + $542 = tempRet0; + $543 = (_i64Add(($541|0),($542|0),($229|0),($230|0))|0); + $544 = tempRet0; + $545 = (_i64Add(($543|0),($544|0),($207|0),($208|0))|0); + $546 = tempRet0; + $547 = (_i64Add(($545|0),($546|0),($183|0),($184|0))|0); + $548 = tempRet0; + $549 = (_i64Add(($547|0),($548|0),($161|0),($162|0))|0); + $550 = tempRet0; + $551 = (_i64Add(($549|0),($550|0),($137|0),($138|0))|0); + $552 = tempRet0; + $553 = (_i64Add(($551|0),($552|0),($115|0),($116|0))|0); + $554 = tempRet0; + $555 = (_i64Add(($553|0),($554|0),($91|0),($92|0))|0); + $556 = tempRet0; + $557 = (_i64Add(($555|0),($556|0),($321|0),($322|0))|0); + $558 = tempRet0; + $559 = (_i64Add(($557|0),($558|0),($539|0),($540|0))|0); + $560 = tempRet0; + $561 = (_bitshift64Shl(($539|0),($540|0),25)|0); + $562 = tempRet0; + $563 = (_i64Subtract(($521|0),($522|0),($561|0),($562|0))|0); + $564 = tempRet0; + $565 = (_i64Add(($531|0),($532|0),33554432,0)|0); + $566 = tempRet0; + $567 = (_bitshift64Ashr(($565|0),($566|0),26)|0); + $568 = tempRet0; + $569 = (_i64Add(($469|0),($470|0),($567|0),($568|0))|0); + $570 = tempRet0; + $571 = (_bitshift64Shl(($567|0),($568|0),26)|0); + $572 = tempRet0; + $573 = (_i64Subtract(($531|0),($532|0),($571|0),($572|0))|0); + $574 = tempRet0; + $575 = (_i64Add(($559|0),($560|0),33554432,0)|0); + $576 = tempRet0; + $577 = (_bitshift64Ashr(($575|0),($576|0),26)|0); + $578 = tempRet0; + $579 = (_i64Add(($277|0),($278|0),($299|0),($300|0))|0); + $580 = tempRet0; + $581 = (_i64Add(($579|0),($580|0),($255|0),($256|0))|0); + $582 = tempRet0; + $583 = (_i64Add(($581|0),($582|0),($231|0),($232|0))|0); + $584 = tempRet0; + $585 = (_i64Add(($583|0),($584|0),($209|0),($210|0))|0); + $586 = tempRet0; + $587 = (_i64Add(($585|0),($586|0),($185|0),($186|0))|0); + $588 = tempRet0; + $589 = (_i64Add(($587|0),($588|0),($163|0),($164|0))|0); + $590 = tempRet0; + $591 = (_i64Add(($589|0),($590|0),($139|0),($140|0))|0); + $592 = tempRet0; + $593 = (_i64Add(($591|0),($592|0),($117|0),($118|0))|0); + $594 = tempRet0; + $595 = (_i64Add(($593|0),($594|0),($95|0),($96|0))|0); + $596 = tempRet0; + $597 = (_i64Add(($595|0),($596|0),($577|0),($578|0))|0); + $598 = tempRet0; + $599 = (_bitshift64Shl(($577|0),($578|0),26)|0); + $600 = tempRet0; + $601 = (_i64Subtract(($559|0),($560|0),($599|0),($600|0))|0); + $602 = tempRet0; + $603 = (_i64Add(($597|0),($598|0),16777216,0)|0); + $604 = tempRet0; + $605 = (_bitshift64Ashr(($603|0),($604|0),25)|0); + $606 = tempRet0; + $607 = (___muldi3(($605|0),($606|0),19,0)|0); + $608 = tempRet0; + $609 = (_i64Add(($607|0),($608|0),($385|0),($386|0))|0); + $610 = tempRet0; + $611 = (_bitshift64Shl(($605|0),($606|0),25)|0); + $612 = tempRet0; + $613 = (_i64Subtract(($597|0),($598|0),($611|0),($612|0))|0); + $614 = tempRet0; + $615 = (_i64Add(($609|0),($610|0),33554432,0)|0); + $616 = tempRet0; + $617 = (_bitshift64Ashr(($615|0),($616|0),26)|0); + $618 = tempRet0; + $619 = (_i64Add(($441|0),($442|0),($617|0),($618|0))|0); + $620 = tempRet0; + $621 = (_bitshift64Shl(($617|0),($618|0),26)|0); + $622 = tempRet0; + $623 = (_i64Subtract(($609|0),($610|0),($621|0),($622|0))|0); + $624 = tempRet0; + HEAP32[$0>>2] = $623; + $625 = ((($0)) + 4|0); + HEAP32[$625>>2] = $619; + $626 = ((($0)) + 8|0); + HEAP32[$626>>2] = $497; + $627 = ((($0)) + 12|0); + HEAP32[$627>>2] = $535; + $628 = ((($0)) + 16|0); + HEAP32[$628>>2] = $573; + $629 = ((($0)) + 20|0); + HEAP32[$629>>2] = $569; + $630 = ((($0)) + 24|0); + HEAP32[$630>>2] = $525; + $631 = ((($0)) + 28|0); + HEAP32[$631>>2] = $563; + $632 = ((($0)) + 32|0); + HEAP32[$632>>2] = $601; + $633 = ((($0)) + 36|0); + HEAP32[$633>>2] = $613; + return; +} +function _crypto_sign_ed25519_ref10_fe_neg($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); + $3 = ((($1)) + 4|0); $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); + $5 = ((($1)) + 8|0); $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); + $7 = ((($1)) + 12|0); $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); + $9 = ((($1)) + 16|0); $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); + $11 = ((($1)) + 20|0); $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); + $13 = ((($1)) + 24|0); $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); + $15 = ((($1)) + 28|0); $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); + $17 = ((($1)) + 32|0); $18 = HEAP32[$17>>2]|0; - $19 = HEAP32[$g>>2]|0; - $20 = ((($g)) + 4|0); - $21 = HEAP32[$20>>2]|0; - $22 = ((($g)) + 8|0); - $23 = HEAP32[$22>>2]|0; - $24 = ((($g)) + 12|0); - $25 = HEAP32[$24>>2]|0; - $26 = ((($g)) + 16|0); - $27 = HEAP32[$26>>2]|0; - $28 = ((($g)) + 20|0); - $29 = HEAP32[$28>>2]|0; - $30 = ((($g)) + 24|0); - $31 = HEAP32[$30>>2]|0; - $32 = ((($g)) + 28|0); - $33 = HEAP32[$32>>2]|0; - $34 = ((($g)) + 32|0); - $35 = HEAP32[$34>>2]|0; - $36 = ((($g)) + 36|0); - $37 = HEAP32[$36>>2]|0; - $38 = ($21*19)|0; - $39 = ($23*19)|0; - $40 = ($25*19)|0; - $41 = ($27*19)|0; - $42 = ($29*19)|0; - $43 = ($31*19)|0; - $44 = ($33*19)|0; - $45 = ($35*19)|0; - $46 = ($37*19)|0; - $47 = $2 << 1; - $48 = $6 << 1; - $49 = $10 << 1; - $50 = $14 << 1; - $51 = $18 << 1; - $52 = ($0|0)<(0); + $19 = ((($1)) + 36|0); + $20 = HEAP32[$19>>2]|0; + $21 = (0 - ($2))|0; + $22 = (0 - ($4))|0; + $23 = (0 - ($6))|0; + $24 = (0 - ($8))|0; + $25 = (0 - ($10))|0; + $26 = (0 - ($12))|0; + $27 = (0 - ($14))|0; + $28 = (0 - ($16))|0; + $29 = (0 - ($18))|0; + $30 = (0 - ($20))|0; + HEAP32[$0>>2] = $21; + $31 = ((($0)) + 4|0); + HEAP32[$31>>2] = $22; + $32 = ((($0)) + 8|0); + HEAP32[$32>>2] = $23; + $33 = ((($0)) + 12|0); + HEAP32[$33>>2] = $24; + $34 = ((($0)) + 16|0); + HEAP32[$34>>2] = $25; + $35 = ((($0)) + 20|0); + HEAP32[$35>>2] = $26; + $36 = ((($0)) + 24|0); + HEAP32[$36>>2] = $27; + $37 = ((($0)) + 28|0); + HEAP32[$37>>2] = $28; + $38 = ((($0)) + 32|0); + HEAP32[$38>>2] = $29; + $39 = ((($0)) + 36|0); + HEAP32[$39>>2] = $30; + return; +} +function _crypto_sign_ed25519_ref10_fe_pow22523($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$729 = 0, $$828 = 0, $$927 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $exitcond = 0, $exitcond35 = 0, $exitcond36 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 128|0; + $2 = sp + 80|0; + $3 = sp + 40|0; + $4 = sp; + _crypto_sign_ed25519_ref10_fe_sq($2,$1); + _crypto_sign_ed25519_ref10_fe_sq($3,$2); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_mul($3,$1,$3); + _crypto_sign_ed25519_ref10_fe_mul($2,$2,$3); + _crypto_sign_ed25519_ref10_fe_sq($2,$2); + _crypto_sign_ed25519_ref10_fe_mul($2,$3,$2); + _crypto_sign_ed25519_ref10_fe_sq($3,$2); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_mul($2,$3,$2); + _crypto_sign_ed25519_ref10_fe_sq($3,$2); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_mul($3,$3,$2); + _crypto_sign_ed25519_ref10_fe_sq($4,$3); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + _crypto_sign_ed25519_ref10_fe_mul($3,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + _crypto_sign_ed25519_ref10_fe_mul($2,$3,$2); + _crypto_sign_ed25519_ref10_fe_sq($3,$2); + $$729 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + $5 = (($$729) + 1)|0; + $exitcond36 = ($5|0)==(50); + if ($exitcond36) { + break; + } else { + $$729 = $5; + } + } + _crypto_sign_ed25519_ref10_fe_mul($3,$3,$2); + _crypto_sign_ed25519_ref10_fe_sq($4,$3); + $$828 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($4,$4); + $6 = (($$828) + 1)|0; + $exitcond35 = ($6|0)==(100); + if ($exitcond35) { + break; + } else { + $$828 = $6; + } + } + _crypto_sign_ed25519_ref10_fe_mul($3,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + $$927 = 1; + while(1) { + _crypto_sign_ed25519_ref10_fe_sq($3,$3); + $7 = (($$927) + 1)|0; + $exitcond = ($7|0)==(50); + if ($exitcond) { + break; + } else { + $$927 = $7; + } + } + _crypto_sign_ed25519_ref10_fe_mul($2,$3,$2); + _crypto_sign_ed25519_ref10_fe_sq($2,$2); + _crypto_sign_ed25519_ref10_fe_sq($2,$2); + _crypto_sign_ed25519_ref10_fe_mul($0,$2,$1); + STACKTOP = sp;return; +} +function _crypto_sign_ed25519_ref10_fe_sq($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0; + var $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0; + var $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0; + var $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0; + var $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0; + var $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0; + var $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0; + var $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0; + var $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0; + var $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0; + var $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0; + var $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0; + var $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0; + var $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0; + var $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0; + var $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; + sp = STACKTOP; + $2 = HEAP32[$1>>2]|0; + $3 = ((($1)) + 4|0); + $4 = HEAP32[$3>>2]|0; + $5 = ((($1)) + 8|0); + $6 = HEAP32[$5>>2]|0; + $7 = ((($1)) + 12|0); + $8 = HEAP32[$7>>2]|0; + $9 = ((($1)) + 16|0); + $10 = HEAP32[$9>>2]|0; + $11 = ((($1)) + 20|0); + $12 = HEAP32[$11>>2]|0; + $13 = ((($1)) + 24|0); + $14 = HEAP32[$13>>2]|0; + $15 = ((($1)) + 28|0); + $16 = HEAP32[$15>>2]|0; + $17 = ((($1)) + 32|0); + $18 = HEAP32[$17>>2]|0; + $19 = ((($1)) + 36|0); + $20 = HEAP32[$19>>2]|0; + $21 = $2 << 1; + $22 = $4 << 1; + $23 = $6 << 1; + $24 = $8 << 1; + $25 = $10 << 1; + $26 = $12 << 1; + $27 = $14 << 1; + $28 = $16 << 1; + $29 = ($12*38)|0; + $30 = ($14*19)|0; + $31 = ($16*38)|0; + $32 = ($18*19)|0; + $33 = ($20*38)|0; + $34 = ($2|0)<(0); + $35 = $34 << 31 >> 31; + $36 = (___muldi3(($2|0),($35|0),($2|0),($35|0))|0); + $37 = tempRet0; + $38 = ($21|0)<(0); + $39 = $38 << 31 >> 31; + $40 = ($4|0)<(0); + $41 = $40 << 31 >> 31; + $42 = (___muldi3(($21|0),($39|0),($4|0),($41|0))|0); + $43 = tempRet0; + $44 = ($6|0)<(0); + $45 = $44 << 31 >> 31; + $46 = (___muldi3(($6|0),($45|0),($21|0),($39|0))|0); + $47 = tempRet0; + $48 = ($8|0)<(0); + $49 = $48 << 31 >> 31; + $50 = (___muldi3(($8|0),($49|0),($21|0),($39|0))|0); + $51 = tempRet0; + $52 = ($10|0)<(0); $53 = $52 << 31 >> 31; - $54 = ($19|0)<(0); - $55 = $54 << 31 >> 31; - $56 = (___muldi3(($19|0),($55|0),($0|0),($53|0))|0); - $57 = tempRet0; - $58 = ($21|0)<(0); - $59 = $58 << 31 >> 31; - $60 = (___muldi3(($21|0),($59|0),($0|0),($53|0))|0); - $61 = tempRet0; - $62 = ($23|0)<(0); - $63 = $62 << 31 >> 31; - $64 = (___muldi3(($23|0),($63|0),($0|0),($53|0))|0); - $65 = tempRet0; - $66 = ($25|0)<(0); - $67 = $66 << 31 >> 31; - $68 = (___muldi3(($25|0),($67|0),($0|0),($53|0))|0); - $69 = tempRet0; - $70 = ($27|0)<(0); - $71 = $70 << 31 >> 31; - $72 = (___muldi3(($27|0),($71|0),($0|0),($53|0))|0); - $73 = tempRet0; - $74 = ($29|0)<(0); - $75 = $74 << 31 >> 31; - $76 = (___muldi3(($29|0),($75|0),($0|0),($53|0))|0); - $77 = tempRet0; - $78 = ($31|0)<(0); - $79 = $78 << 31 >> 31; - $80 = (___muldi3(($31|0),($79|0),($0|0),($53|0))|0); + $54 = (___muldi3(($10|0),($53|0),($21|0),($39|0))|0); + $55 = tempRet0; + $56 = ($12|0)<(0); + $57 = $56 << 31 >> 31; + $58 = (___muldi3(($12|0),($57|0),($21|0),($39|0))|0); + $59 = tempRet0; + $60 = ($14|0)<(0); + $61 = $60 << 31 >> 31; + $62 = (___muldi3(($14|0),($61|0),($21|0),($39|0))|0); + $63 = tempRet0; + $64 = ($16|0)<(0); + $65 = $64 << 31 >> 31; + $66 = (___muldi3(($16|0),($65|0),($21|0),($39|0))|0); + $67 = tempRet0; + $68 = ($18|0)<(0); + $69 = $68 << 31 >> 31; + $70 = (___muldi3(($18|0),($69|0),($21|0),($39|0))|0); + $71 = tempRet0; + $72 = ($20|0)<(0); + $73 = $72 << 31 >> 31; + $74 = (___muldi3(($20|0),($73|0),($21|0),($39|0))|0); + $75 = tempRet0; + $76 = ($22|0)<(0); + $77 = $76 << 31 >> 31; + $78 = (___muldi3(($22|0),($77|0),($4|0),($41|0))|0); + $79 = tempRet0; + $80 = (___muldi3(($22|0),($77|0),($6|0),($45|0))|0); $81 = tempRet0; - $82 = ($33|0)<(0); + $82 = ($24|0)<(0); $83 = $82 << 31 >> 31; - $84 = (___muldi3(($33|0),($83|0),($0|0),($53|0))|0); + $84 = (___muldi3(($24|0),($83|0),($22|0),($77|0))|0); $85 = tempRet0; - $86 = ($35|0)<(0); - $87 = $86 << 31 >> 31; - $88 = (___muldi3(($35|0),($87|0),($0|0),($53|0))|0); - $89 = tempRet0; - $90 = ($37|0)<(0); - $91 = $90 << 31 >> 31; - $92 = (___muldi3(($37|0),($91|0),($0|0),($53|0))|0); + $86 = (___muldi3(($10|0),($53|0),($22|0),($77|0))|0); + $87 = tempRet0; + $88 = ($26|0)<(0); + $89 = $88 << 31 >> 31; + $90 = (___muldi3(($26|0),($89|0),($22|0),($77|0))|0); + $91 = tempRet0; + $92 = (___muldi3(($14|0),($61|0),($22|0),($77|0))|0); $93 = tempRet0; - $94 = ($2|0)<(0); + $94 = ($28|0)<(0); $95 = $94 << 31 >> 31; - $96 = (___muldi3(($19|0),($55|0),($2|0),($95|0))|0); + $96 = (___muldi3(($28|0),($95|0),($22|0),($77|0))|0); $97 = tempRet0; - $98 = ($47|0)<(0); - $99 = $98 << 31 >> 31; - $100 = (___muldi3(($21|0),($59|0),($47|0),($99|0))|0); - $101 = tempRet0; - $102 = (___muldi3(($23|0),($63|0),($2|0),($95|0))|0); + $98 = (___muldi3(($18|0),($69|0),($22|0),($77|0))|0); + $99 = tempRet0; + $100 = ($33|0)<(0); + $101 = $100 << 31 >> 31; + $102 = (___muldi3(($33|0),($101|0),($22|0),($77|0))|0); $103 = tempRet0; - $104 = (___muldi3(($25|0),($67|0),($47|0),($99|0))|0); + $104 = (___muldi3(($6|0),($45|0),($6|0),($45|0))|0); $105 = tempRet0; - $106 = (___muldi3(($27|0),($71|0),($2|0),($95|0))|0); - $107 = tempRet0; - $108 = (___muldi3(($29|0),($75|0),($47|0),($99|0))|0); + $106 = ($23|0)<(0); + $107 = $106 << 31 >> 31; + $108 = (___muldi3(($23|0),($107|0),($8|0),($49|0))|0); $109 = tempRet0; - $110 = (___muldi3(($31|0),($79|0),($2|0),($95|0))|0); + $110 = (___muldi3(($10|0),($53|0),($23|0),($107|0))|0); $111 = tempRet0; - $112 = (___muldi3(($33|0),($83|0),($47|0),($99|0))|0); + $112 = (___muldi3(($12|0),($57|0),($23|0),($107|0))|0); $113 = tempRet0; - $114 = (___muldi3(($35|0),($87|0),($2|0),($95|0))|0); + $114 = (___muldi3(($14|0),($61|0),($23|0),($107|0))|0); $115 = tempRet0; - $116 = ($46|0)<(0); - $117 = $116 << 31 >> 31; - $118 = (___muldi3(($46|0),($117|0),($47|0),($99|0))|0); - $119 = tempRet0; - $120 = ($4|0)<(0); - $121 = $120 << 31 >> 31; - $122 = (___muldi3(($19|0),($55|0),($4|0),($121|0))|0); + $116 = (___muldi3(($16|0),($65|0),($23|0),($107|0))|0); + $117 = tempRet0; + $118 = ($32|0)<(0); + $119 = $118 << 31 >> 31; + $120 = (___muldi3(($32|0),($119|0),($23|0),($107|0))|0); + $121 = tempRet0; + $122 = (___muldi3(($33|0),($101|0),($6|0),($45|0))|0); $123 = tempRet0; - $124 = (___muldi3(($21|0),($59|0),($4|0),($121|0))|0); + $124 = (___muldi3(($24|0),($83|0),($8|0),($49|0))|0); $125 = tempRet0; - $126 = (___muldi3(($23|0),($63|0),($4|0),($121|0))|0); + $126 = (___muldi3(($24|0),($83|0),($10|0),($53|0))|0); $127 = tempRet0; - $128 = (___muldi3(($25|0),($67|0),($4|0),($121|0))|0); + $128 = (___muldi3(($26|0),($89|0),($24|0),($83|0))|0); $129 = tempRet0; - $130 = (___muldi3(($27|0),($71|0),($4|0),($121|0))|0); + $130 = (___muldi3(($14|0),($61|0),($24|0),($83|0))|0); $131 = tempRet0; - $132 = (___muldi3(($29|0),($75|0),($4|0),($121|0))|0); - $133 = tempRet0; - $134 = (___muldi3(($31|0),($79|0),($4|0),($121|0))|0); + $132 = ($31|0)<(0); + $133 = $132 << 31 >> 31; + $134 = (___muldi3(($31|0),($133|0),($24|0),($83|0))|0); $135 = tempRet0; - $136 = (___muldi3(($33|0),($83|0),($4|0),($121|0))|0); + $136 = (___muldi3(($32|0),($119|0),($24|0),($83|0))|0); $137 = tempRet0; - $138 = ($45|0)<(0); - $139 = $138 << 31 >> 31; - $140 = (___muldi3(($45|0),($139|0),($4|0),($121|0))|0); + $138 = (___muldi3(($33|0),($101|0),($24|0),($83|0))|0); + $139 = tempRet0; + $140 = (___muldi3(($10|0),($53|0),($10|0),($53|0))|0); $141 = tempRet0; - $142 = (___muldi3(($46|0),($117|0),($4|0),($121|0))|0); - $143 = tempRet0; - $144 = ($6|0)<(0); - $145 = $144 << 31 >> 31; - $146 = (___muldi3(($19|0),($55|0),($6|0),($145|0))|0); - $147 = tempRet0; - $148 = ($48|0)<(0); - $149 = $148 << 31 >> 31; - $150 = (___muldi3(($21|0),($59|0),($48|0),($149|0))|0); + $142 = ($25|0)<(0); + $143 = $142 << 31 >> 31; + $144 = (___muldi3(($25|0),($143|0),($12|0),($57|0))|0); + $145 = tempRet0; + $146 = ($30|0)<(0); + $147 = $146 << 31 >> 31; + $148 = (___muldi3(($30|0),($147|0),($25|0),($143|0))|0); + $149 = tempRet0; + $150 = (___muldi3(($31|0),($133|0),($10|0),($53|0))|0); $151 = tempRet0; - $152 = (___muldi3(($23|0),($63|0),($6|0),($145|0))|0); + $152 = (___muldi3(($32|0),($119|0),($25|0),($143|0))|0); $153 = tempRet0; - $154 = (___muldi3(($25|0),($67|0),($48|0),($149|0))|0); + $154 = (___muldi3(($33|0),($101|0),($10|0),($53|0))|0); $155 = tempRet0; - $156 = (___muldi3(($27|0),($71|0),($6|0),($145|0))|0); - $157 = tempRet0; - $158 = (___muldi3(($29|0),($75|0),($48|0),($149|0))|0); + $156 = ($29|0)<(0); + $157 = $156 << 31 >> 31; + $158 = (___muldi3(($29|0),($157|0),($12|0),($57|0))|0); $159 = tempRet0; - $160 = (___muldi3(($31|0),($79|0),($6|0),($145|0))|0); + $160 = (___muldi3(($30|0),($147|0),($26|0),($89|0))|0); $161 = tempRet0; - $162 = ($44|0)<(0); - $163 = $162 << 31 >> 31; - $164 = (___muldi3(($44|0),($163|0),($48|0),($149|0))|0); + $162 = (___muldi3(($31|0),($133|0),($26|0),($89|0))|0); + $163 = tempRet0; + $164 = (___muldi3(($32|0),($119|0),($26|0),($89|0))|0); $165 = tempRet0; - $166 = (___muldi3(($45|0),($139|0),($6|0),($145|0))|0); + $166 = (___muldi3(($33|0),($101|0),($26|0),($89|0))|0); $167 = tempRet0; - $168 = (___muldi3(($46|0),($117|0),($48|0),($149|0))|0); + $168 = (___muldi3(($30|0),($147|0),($14|0),($61|0))|0); $169 = tempRet0; - $170 = ($8|0)<(0); - $171 = $170 << 31 >> 31; - $172 = (___muldi3(($19|0),($55|0),($8|0),($171|0))|0); - $173 = tempRet0; - $174 = (___muldi3(($21|0),($59|0),($8|0),($171|0))|0); + $170 = (___muldi3(($31|0),($133|0),($14|0),($61|0))|0); + $171 = tempRet0; + $172 = ($27|0)<(0); + $173 = $172 << 31 >> 31; + $174 = (___muldi3(($32|0),($119|0),($27|0),($173|0))|0); $175 = tempRet0; - $176 = (___muldi3(($23|0),($63|0),($8|0),($171|0))|0); + $176 = (___muldi3(($33|0),($101|0),($14|0),($61|0))|0); $177 = tempRet0; - $178 = (___muldi3(($25|0),($67|0),($8|0),($171|0))|0); + $178 = (___muldi3(($31|0),($133|0),($16|0),($65|0))|0); $179 = tempRet0; - $180 = (___muldi3(($27|0),($71|0),($8|0),($171|0))|0); + $180 = (___muldi3(($32|0),($119|0),($28|0),($95|0))|0); $181 = tempRet0; - $182 = (___muldi3(($29|0),($75|0),($8|0),($171|0))|0); + $182 = (___muldi3(($33|0),($101|0),($28|0),($95|0))|0); $183 = tempRet0; - $184 = ($43|0)<(0); - $185 = $184 << 31 >> 31; - $186 = (___muldi3(($43|0),($185|0),($8|0),($171|0))|0); + $184 = (___muldi3(($32|0),($119|0),($18|0),($69|0))|0); + $185 = tempRet0; + $186 = (___muldi3(($33|0),($101|0),($18|0),($69|0))|0); $187 = tempRet0; - $188 = (___muldi3(($44|0),($163|0),($8|0),($171|0))|0); + $188 = (___muldi3(($33|0),($101|0),($20|0),($73|0))|0); $189 = tempRet0; - $190 = (___muldi3(($45|0),($139|0),($8|0),($171|0))|0); + $190 = (_i64Add(($158|0),($159|0),($36|0),($37|0))|0); $191 = tempRet0; - $192 = (___muldi3(($46|0),($117|0),($8|0),($171|0))|0); + $192 = (_i64Add(($190|0),($191|0),($148|0),($149|0))|0); $193 = tempRet0; - $194 = ($10|0)<(0); - $195 = $194 << 31 >> 31; - $196 = (___muldi3(($19|0),($55|0),($10|0),($195|0))|0); + $194 = (_i64Add(($192|0),($193|0),($134|0),($135|0))|0); + $195 = tempRet0; + $196 = (_i64Add(($194|0),($195|0),($120|0),($121|0))|0); $197 = tempRet0; - $198 = ($49|0)<(0); - $199 = $198 << 31 >> 31; - $200 = (___muldi3(($21|0),($59|0),($49|0),($199|0))|0); + $198 = (_i64Add(($196|0),($197|0),($102|0),($103|0))|0); + $199 = tempRet0; + $200 = (_i64Add(($46|0),($47|0),($78|0),($79|0))|0); $201 = tempRet0; - $202 = (___muldi3(($23|0),($63|0),($10|0),($195|0))|0); + $202 = (_i64Add(($50|0),($51|0),($80|0),($81|0))|0); $203 = tempRet0; - $204 = (___muldi3(($25|0),($67|0),($49|0),($199|0))|0); + $204 = (_i64Add(($84|0),($85|0),($104|0),($105|0))|0); $205 = tempRet0; - $206 = (___muldi3(($27|0),($71|0),($10|0),($195|0))|0); + $206 = (_i64Add(($204|0),($205|0),($54|0),($55|0))|0); $207 = tempRet0; - $208 = ($42|0)<(0); - $209 = $208 << 31 >> 31; - $210 = (___muldi3(($42|0),($209|0),($49|0),($199|0))|0); + $208 = (_i64Add(($206|0),($207|0),($178|0),($179|0))|0); + $209 = tempRet0; + $210 = (_i64Add(($208|0),($209|0),($174|0),($175|0))|0); $211 = tempRet0; - $212 = (___muldi3(($43|0),($185|0),($10|0),($195|0))|0); + $212 = (_i64Add(($210|0),($211|0),($166|0),($167|0))|0); $213 = tempRet0; - $214 = (___muldi3(($44|0),($163|0),($49|0),($199|0))|0); + $214 = (_i64Add(($198|0),($199|0),33554432,0)|0); $215 = tempRet0; - $216 = (___muldi3(($45|0),($139|0),($10|0),($195|0))|0); + $216 = (_bitshift64Ashr(($214|0),($215|0),26)|0); $217 = tempRet0; - $218 = (___muldi3(($46|0),($117|0),($49|0),($199|0))|0); + $218 = (_i64Add(($160|0),($161|0),($42|0),($43|0))|0); $219 = tempRet0; - $220 = ($12|0)<(0); - $221 = $220 << 31 >> 31; - $222 = (___muldi3(($19|0),($55|0),($12|0),($221|0))|0); + $220 = (_i64Add(($218|0),($219|0),($150|0),($151|0))|0); + $221 = tempRet0; + $222 = (_i64Add(($220|0),($221|0),($136|0),($137|0))|0); $223 = tempRet0; - $224 = (___muldi3(($21|0),($59|0),($12|0),($221|0))|0); + $224 = (_i64Add(($222|0),($223|0),($122|0),($123|0))|0); $225 = tempRet0; - $226 = (___muldi3(($23|0),($63|0),($12|0),($221|0))|0); + $226 = (_i64Add(($224|0),($225|0),($216|0),($217|0))|0); $227 = tempRet0; - $228 = (___muldi3(($25|0),($67|0),($12|0),($221|0))|0); + $228 = (_bitshift64Shl(($216|0),($217|0),26)|0); $229 = tempRet0; - $230 = ($41|0)<(0); - $231 = $230 << 31 >> 31; - $232 = (___muldi3(($41|0),($231|0),($12|0),($221|0))|0); + $230 = (_i64Subtract(($198|0),($199|0),($228|0),($229|0))|0); + $231 = tempRet0; + $232 = (_i64Add(($212|0),($213|0),33554432,0)|0); $233 = tempRet0; - $234 = (___muldi3(($42|0),($209|0),($12|0),($221|0))|0); + $234 = (_bitshift64Ashr(($232|0),($233|0),26)|0); $235 = tempRet0; - $236 = (___muldi3(($43|0),($185|0),($12|0),($221|0))|0); + $236 = (_i64Add(($86|0),($87|0),($108|0),($109|0))|0); $237 = tempRet0; - $238 = (___muldi3(($44|0),($163|0),($12|0),($221|0))|0); + $238 = (_i64Add(($236|0),($237|0),($58|0),($59|0))|0); $239 = tempRet0; - $240 = (___muldi3(($45|0),($139|0),($12|0),($221|0))|0); + $240 = (_i64Add(($238|0),($239|0),($180|0),($181|0))|0); $241 = tempRet0; - $242 = (___muldi3(($46|0),($117|0),($12|0),($221|0))|0); + $242 = (_i64Add(($240|0),($241|0),($176|0),($177|0))|0); $243 = tempRet0; - $244 = ($14|0)<(0); - $245 = $244 << 31 >> 31; - $246 = (___muldi3(($19|0),($55|0),($14|0),($245|0))|0); + $244 = (_i64Add(($242|0),($243|0),($234|0),($235|0))|0); + $245 = tempRet0; + $246 = (_bitshift64Shl(($234|0),($235|0),26)|0); $247 = tempRet0; - $248 = ($50|0)<(0); - $249 = $248 << 31 >> 31; - $250 = (___muldi3(($21|0),($59|0),($50|0),($249|0))|0); + $248 = (_i64Subtract(($212|0),($213|0),($246|0),($247|0))|0); + $249 = tempRet0; + $250 = (_i64Add(($226|0),($227|0),16777216,0)|0); $251 = tempRet0; - $252 = (___muldi3(($23|0),($63|0),($14|0),($245|0))|0); + $252 = (_bitshift64Ashr(($250|0),($251|0),25)|0); $253 = tempRet0; - $254 = ($40|0)<(0); - $255 = $254 << 31 >> 31; - $256 = (___muldi3(($40|0),($255|0),($50|0),($249|0))|0); + $254 = (_i64Add(($200|0),($201|0),($168|0),($169|0))|0); + $255 = tempRet0; + $256 = (_i64Add(($254|0),($255|0),($162|0),($163|0))|0); $257 = tempRet0; - $258 = (___muldi3(($41|0),($231|0),($14|0),($245|0))|0); + $258 = (_i64Add(($256|0),($257|0),($152|0),($153|0))|0); $259 = tempRet0; - $260 = (___muldi3(($42|0),($209|0),($50|0),($249|0))|0); + $260 = (_i64Add(($258|0),($259|0),($138|0),($139|0))|0); $261 = tempRet0; - $262 = (___muldi3(($43|0),($185|0),($14|0),($245|0))|0); + $262 = (_i64Add(($260|0),($261|0),($252|0),($253|0))|0); $263 = tempRet0; - $264 = (___muldi3(($44|0),($163|0),($50|0),($249|0))|0); + $264 = (_bitshift64Shl(($252|0),($253|0),25)|0); $265 = tempRet0; - $266 = (___muldi3(($45|0),($139|0),($14|0),($245|0))|0); + $266 = (_i64Subtract(($226|0),($227|0),($264|0),($265|0))|0); $267 = tempRet0; - $268 = (___muldi3(($46|0),($117|0),($50|0),($249|0))|0); + $268 = (_i64Add(($244|0),($245|0),16777216,0)|0); $269 = tempRet0; - $270 = ($16|0)<(0); - $271 = $270 << 31 >> 31; - $272 = (___muldi3(($19|0),($55|0),($16|0),($271|0))|0); + $270 = (_bitshift64Ashr(($268|0),($269|0),25)|0); + $271 = tempRet0; + $272 = (_i64Add(($124|0),($125|0),($110|0),($111|0))|0); $273 = tempRet0; - $274 = (___muldi3(($21|0),($59|0),($16|0),($271|0))|0); + $274 = (_i64Add(($272|0),($273|0),($90|0),($91|0))|0); $275 = tempRet0; - $276 = ($39|0)<(0); - $277 = $276 << 31 >> 31; - $278 = (___muldi3(($39|0),($277|0),($16|0),($271|0))|0); + $276 = (_i64Add(($274|0),($275|0),($62|0),($63|0))|0); + $277 = tempRet0; + $278 = (_i64Add(($276|0),($277|0),($184|0),($185|0))|0); $279 = tempRet0; - $280 = (___muldi3(($40|0),($255|0),($16|0),($271|0))|0); + $280 = (_i64Add(($278|0),($279|0),($182|0),($183|0))|0); $281 = tempRet0; - $282 = (___muldi3(($41|0),($231|0),($16|0),($271|0))|0); + $282 = (_i64Add(($280|0),($281|0),($270|0),($271|0))|0); $283 = tempRet0; - $284 = (___muldi3(($42|0),($209|0),($16|0),($271|0))|0); + $284 = (_bitshift64Shl(($270|0),($271|0),25)|0); $285 = tempRet0; - $286 = (___muldi3(($43|0),($185|0),($16|0),($271|0))|0); + $286 = (_i64Subtract(($244|0),($245|0),($284|0),($285|0))|0); $287 = tempRet0; - $288 = (___muldi3(($44|0),($163|0),($16|0),($271|0))|0); + $288 = (_i64Add(($262|0),($263|0),33554432,0)|0); $289 = tempRet0; - $290 = (___muldi3(($45|0),($139|0),($16|0),($271|0))|0); + $290 = (_bitshift64Ashr(($288|0),($289|0),26)|0); $291 = tempRet0; - $292 = (___muldi3(($46|0),($117|0),($16|0),($271|0))|0); + $292 = (_i64Add(($202|0),($203|0),($170|0),($171|0))|0); $293 = tempRet0; - $294 = ($18|0)<(0); - $295 = $294 << 31 >> 31; - $296 = (___muldi3(($19|0),($55|0),($18|0),($295|0))|0); + $294 = (_i64Add(($292|0),($293|0),($164|0),($165|0))|0); + $295 = tempRet0; + $296 = (_i64Add(($294|0),($295|0),($154|0),($155|0))|0); $297 = tempRet0; - $298 = ($51|0)<(0); - $299 = $298 << 31 >> 31; - $300 = ($38|0)<(0); - $301 = $300 << 31 >> 31; - $302 = (___muldi3(($38|0),($301|0),($51|0),($299|0))|0); + $298 = (_i64Add(($296|0),($297|0),($290|0),($291|0))|0); + $299 = tempRet0; + $300 = (_bitshift64Shl(($290|0),($291|0),26)|0); + $301 = tempRet0; + $302 = (_i64Subtract(($262|0),($263|0),($300|0),($301|0))|0); $303 = tempRet0; - $304 = (___muldi3(($39|0),($277|0),($18|0),($295|0))|0); + $304 = (_i64Add(($282|0),($283|0),33554432,0)|0); $305 = tempRet0; - $306 = (___muldi3(($40|0),($255|0),($51|0),($299|0))|0); + $306 = (_bitshift64Ashr(($304|0),($305|0),26)|0); $307 = tempRet0; - $308 = (___muldi3(($41|0),($231|0),($18|0),($295|0))|0); + $308 = (_i64Add(($112|0),($113|0),($126|0),($127|0))|0); $309 = tempRet0; - $310 = (___muldi3(($42|0),($209|0),($51|0),($299|0))|0); + $310 = (_i64Add(($308|0),($309|0),($92|0),($93|0))|0); $311 = tempRet0; - $312 = (___muldi3(($43|0),($185|0),($18|0),($295|0))|0); + $312 = (_i64Add(($310|0),($311|0),($66|0),($67|0))|0); $313 = tempRet0; - $314 = (___muldi3(($44|0),($163|0),($51|0),($299|0))|0); + $314 = (_i64Add(($312|0),($313|0),($186|0),($187|0))|0); $315 = tempRet0; - $316 = (___muldi3(($45|0),($139|0),($18|0),($295|0))|0); + $316 = (_i64Add(($314|0),($315|0),($306|0),($307|0))|0); $317 = tempRet0; - $318 = (___muldi3(($46|0),($117|0),($51|0),($299|0))|0); + $318 = (_bitshift64Shl(($306|0),($307|0),26)|0); $319 = tempRet0; - $320 = (_i64Add(($302|0),($303|0),($56|0),($57|0))|0); + $320 = (_i64Subtract(($282|0),($283|0),($318|0),($319|0))|0); $321 = tempRet0; - $322 = (_i64Add(($320|0),($321|0),($278|0),($279|0))|0); + $322 = (_i64Add(($298|0),($299|0),16777216,0)|0); $323 = tempRet0; - $324 = (_i64Add(($322|0),($323|0),($256|0),($257|0))|0); + $324 = (_bitshift64Ashr(($322|0),($323|0),25)|0); $325 = tempRet0; - $326 = (_i64Add(($324|0),($325|0),($232|0),($233|0))|0); + $326 = (_i64Add(($324|0),($325|0),($248|0),($249|0))|0); $327 = tempRet0; - $328 = (_i64Add(($326|0),($327|0),($210|0),($211|0))|0); + $328 = (_bitshift64Shl(($324|0),($325|0),25)|0); $329 = tempRet0; - $330 = (_i64Add(($328|0),($329|0),($186|0),($187|0))|0); + $330 = (_i64Subtract(($298|0),($299|0),($328|0),($329|0))|0); $331 = tempRet0; - $332 = (_i64Add(($330|0),($331|0),($164|0),($165|0))|0); + $332 = (_i64Add(($316|0),($317|0),16777216,0)|0); $333 = tempRet0; - $334 = (_i64Add(($332|0),($333|0),($140|0),($141|0))|0); + $334 = (_bitshift64Ashr(($332|0),($333|0),25)|0); $335 = tempRet0; - $336 = (_i64Add(($334|0),($335|0),($118|0),($119|0))|0); + $336 = (_i64Add(($114|0),($115|0),($140|0),($141|0))|0); $337 = tempRet0; - $338 = (_i64Add(($60|0),($61|0),($96|0),($97|0))|0); + $338 = (_i64Add(($336|0),($337|0),($128|0),($129|0))|0); $339 = tempRet0; - $340 = (_i64Add(($150|0),($151|0),($172|0),($173|0))|0); + $340 = (_i64Add(($338|0),($339|0),($96|0),($97|0))|0); $341 = tempRet0; - $342 = (_i64Add(($340|0),($341|0),($126|0),($127|0))|0); + $342 = (_i64Add(($340|0),($341|0),($70|0),($71|0))|0); $343 = tempRet0; - $344 = (_i64Add(($342|0),($343|0),($104|0),($105|0))|0); + $344 = (_i64Add(($342|0),($343|0),($188|0),($189|0))|0); $345 = tempRet0; - $346 = (_i64Add(($344|0),($345|0),($72|0),($73|0))|0); + $346 = (_i64Add(($344|0),($345|0),($334|0),($335|0))|0); $347 = tempRet0; - $348 = (_i64Add(($346|0),($347|0),($310|0),($311|0))|0); + $348 = (_bitshift64Shl(($334|0),($335|0),25)|0); $349 = tempRet0; - $350 = (_i64Add(($348|0),($349|0),($286|0),($287|0))|0); + $350 = (_i64Subtract(($316|0),($317|0),($348|0),($349|0))|0); $351 = tempRet0; - $352 = (_i64Add(($350|0),($351|0),($264|0),($265|0))|0); + $352 = (_i64Add(($326|0),($327|0),33554432,0)|0); $353 = tempRet0; - $354 = (_i64Add(($352|0),($353|0),($240|0),($241|0))|0); + $354 = (_bitshift64Ashr(($352|0),($353|0),26)|0); $355 = tempRet0; - $356 = (_i64Add(($354|0),($355|0),($218|0),($219|0))|0); + $356 = (_i64Add(($286|0),($287|0),($354|0),($355|0))|0); $357 = tempRet0; - $358 = (_i64Add(($336|0),($337|0),33554432,0)|0); + $358 = (_bitshift64Shl(($354|0),($355|0),26)|0); $359 = tempRet0; - $360 = (_bitshift64Ashr(($358|0),($359|0),26)|0); + $360 = (_i64Subtract(($326|0),($327|0),($358|0),($359|0))|0); $361 = tempRet0; - $362 = (_i64Add(($338|0),($339|0),($304|0),($305|0))|0); + $362 = (_i64Add(($346|0),($347|0),33554432,0)|0); $363 = tempRet0; - $364 = (_i64Add(($362|0),($363|0),($280|0),($281|0))|0); + $364 = (_bitshift64Ashr(($362|0),($363|0),26)|0); $365 = tempRet0; - $366 = (_i64Add(($364|0),($365|0),($258|0),($259|0))|0); + $366 = (_i64Add(($130|0),($131|0),($144|0),($145|0))|0); $367 = tempRet0; - $368 = (_i64Add(($366|0),($367|0),($234|0),($235|0))|0); + $368 = (_i64Add(($366|0),($367|0),($116|0),($117|0))|0); $369 = tempRet0; - $370 = (_i64Add(($368|0),($369|0),($212|0),($213|0))|0); + $370 = (_i64Add(($368|0),($369|0),($98|0),($99|0))|0); $371 = tempRet0; - $372 = (_i64Add(($370|0),($371|0),($188|0),($189|0))|0); + $372 = (_i64Add(($370|0),($371|0),($74|0),($75|0))|0); $373 = tempRet0; - $374 = (_i64Add(($372|0),($373|0),($166|0),($167|0))|0); + $374 = (_i64Add(($372|0),($373|0),($364|0),($365|0))|0); $375 = tempRet0; - $376 = (_i64Add(($374|0),($375|0),($142|0),($143|0))|0); + $376 = (_bitshift64Shl(($364|0),($365|0),26)|0); $377 = tempRet0; - $378 = (_i64Add(($376|0),($377|0),($360|0),($361|0))|0); + $378 = (_i64Subtract(($346|0),($347|0),($376|0),($377|0))|0); $379 = tempRet0; - $380 = (_bitshift64Shl(($360|0),($361|0),26)|0); + $380 = (_i64Add(($374|0),($375|0),16777216,0)|0); $381 = tempRet0; - $382 = (_i64Subtract(($336|0),($337|0),($380|0),($381|0))|0); + $382 = (_bitshift64Ashr(($380|0),($381|0),25)|0); $383 = tempRet0; - $384 = (_i64Add(($356|0),($357|0),33554432,0)|0); + $384 = (___muldi3(($382|0),($383|0),19,0)|0); $385 = tempRet0; - $386 = (_bitshift64Ashr(($384|0),($385|0),26)|0); + $386 = (_i64Add(($384|0),($385|0),($230|0),($231|0))|0); $387 = tempRet0; - $388 = (_i64Add(($174|0),($175|0),($196|0),($197|0))|0); + $388 = (_bitshift64Shl(($382|0),($383|0),25)|0); $389 = tempRet0; - $390 = (_i64Add(($388|0),($389|0),($152|0),($153|0))|0); + $390 = (_i64Subtract(($374|0),($375|0),($388|0),($389|0))|0); $391 = tempRet0; - $392 = (_i64Add(($390|0),($391|0),($128|0),($129|0))|0); + $392 = (_i64Add(($386|0),($387|0),33554432,0)|0); $393 = tempRet0; - $394 = (_i64Add(($392|0),($393|0),($106|0),($107|0))|0); + $394 = (_bitshift64Ashr(($392|0),($393|0),26)|0); $395 = tempRet0; - $396 = (_i64Add(($394|0),($395|0),($76|0),($77|0))|0); + $396 = (_i64Add(($266|0),($267|0),($394|0),($395|0))|0); $397 = tempRet0; - $398 = (_i64Add(($396|0),($397|0),($312|0),($313|0))|0); + $398 = (_bitshift64Shl(($394|0),($395|0),26)|0); $399 = tempRet0; - $400 = (_i64Add(($398|0),($399|0),($288|0),($289|0))|0); + $400 = (_i64Subtract(($386|0),($387|0),($398|0),($399|0))|0); $401 = tempRet0; - $402 = (_i64Add(($400|0),($401|0),($266|0),($267|0))|0); - $403 = tempRet0; - $404 = (_i64Add(($402|0),($403|0),($242|0),($243|0))|0); - $405 = tempRet0; - $406 = (_i64Add(($404|0),($405|0),($386|0),($387|0))|0); - $407 = tempRet0; - $408 = (_bitshift64Shl(($386|0),($387|0),26)|0); - $409 = tempRet0; - $410 = (_i64Subtract(($356|0),($357|0),($408|0),($409|0))|0); - $411 = tempRet0; - $412 = (_i64Add(($378|0),($379|0),16777216,0)|0); - $413 = tempRet0; - $414 = (_bitshift64Ashr(($412|0),($413|0),25)|0); - $415 = tempRet0; - $416 = (_i64Add(($100|0),($101|0),($122|0),($123|0))|0); - $417 = tempRet0; - $418 = (_i64Add(($416|0),($417|0),($64|0),($65|0))|0); - $419 = tempRet0; - $420 = (_i64Add(($418|0),($419|0),($306|0),($307|0))|0); - $421 = tempRet0; - $422 = (_i64Add(($420|0),($421|0),($282|0),($283|0))|0); - $423 = tempRet0; - $424 = (_i64Add(($422|0),($423|0),($260|0),($261|0))|0); - $425 = tempRet0; - $426 = (_i64Add(($424|0),($425|0),($236|0),($237|0))|0); - $427 = tempRet0; - $428 = (_i64Add(($426|0),($427|0),($214|0),($215|0))|0); - $429 = tempRet0; - $430 = (_i64Add(($428|0),($429|0),($190|0),($191|0))|0); - $431 = tempRet0; - $432 = (_i64Add(($430|0),($431|0),($168|0),($169|0))|0); - $433 = tempRet0; - $434 = (_i64Add(($432|0),($433|0),($414|0),($415|0))|0); - $435 = tempRet0; - $436 = (_bitshift64Shl(($414|0),($415|0),25)|0); - $437 = tempRet0; - $438 = (_i64Subtract(($378|0),($379|0),($436|0),($437|0))|0); - $439 = tempRet0; - $440 = (_i64Add(($406|0),($407|0),16777216,0)|0); - $441 = tempRet0; - $442 = (_bitshift64Ashr(($440|0),($441|0),25)|0); - $443 = tempRet0; - $444 = (_i64Add(($200|0),($201|0),($222|0),($223|0))|0); - $445 = tempRet0; - $446 = (_i64Add(($444|0),($445|0),($176|0),($177|0))|0); - $447 = tempRet0; - $448 = (_i64Add(($446|0),($447|0),($154|0),($155|0))|0); - $449 = tempRet0; - $450 = (_i64Add(($448|0),($449|0),($130|0),($131|0))|0); - $451 = tempRet0; - $452 = (_i64Add(($450|0),($451|0),($108|0),($109|0))|0); - $453 = tempRet0; - $454 = (_i64Add(($452|0),($453|0),($80|0),($81|0))|0); - $455 = tempRet0; - $456 = (_i64Add(($454|0),($455|0),($314|0),($315|0))|0); - $457 = tempRet0; - $458 = (_i64Add(($456|0),($457|0),($290|0),($291|0))|0); - $459 = tempRet0; - $460 = (_i64Add(($458|0),($459|0),($268|0),($269|0))|0); - $461 = tempRet0; - $462 = (_i64Add(($460|0),($461|0),($442|0),($443|0))|0); - $463 = tempRet0; - $464 = (_bitshift64Shl(($442|0),($443|0),25)|0); - $465 = tempRet0; - $466 = (_i64Subtract(($406|0),($407|0),($464|0),($465|0))|0); - $467 = tempRet0; - $468 = (_i64Add(($434|0),($435|0),33554432,0)|0); - $469 = tempRet0; - $470 = (_bitshift64Ashr(($468|0),($469|0),26)|0); - $471 = tempRet0; - $472 = (_i64Add(($124|0),($125|0),($146|0),($147|0))|0); - $473 = tempRet0; - $474 = (_i64Add(($472|0),($473|0),($102|0),($103|0))|0); - $475 = tempRet0; - $476 = (_i64Add(($474|0),($475|0),($68|0),($69|0))|0); - $477 = tempRet0; - $478 = (_i64Add(($476|0),($477|0),($308|0),($309|0))|0); - $479 = tempRet0; - $480 = (_i64Add(($478|0),($479|0),($284|0),($285|0))|0); - $481 = tempRet0; - $482 = (_i64Add(($480|0),($481|0),($262|0),($263|0))|0); - $483 = tempRet0; - $484 = (_i64Add(($482|0),($483|0),($238|0),($239|0))|0); - $485 = tempRet0; - $486 = (_i64Add(($484|0),($485|0),($216|0),($217|0))|0); - $487 = tempRet0; - $488 = (_i64Add(($486|0),($487|0),($192|0),($193|0))|0); - $489 = tempRet0; - $490 = (_i64Add(($488|0),($489|0),($470|0),($471|0))|0); - $491 = tempRet0; - $492 = (_bitshift64Shl(($470|0),($471|0),26)|0); - $493 = tempRet0; - $494 = (_i64Subtract(($434|0),($435|0),($492|0),($493|0))|0); - $495 = tempRet0; - $496 = (_i64Add(($462|0),($463|0),33554432,0)|0); - $497 = tempRet0; - $498 = (_bitshift64Ashr(($496|0),($497|0),26)|0); - $499 = tempRet0; - $500 = (_i64Add(($224|0),($225|0),($246|0),($247|0))|0); - $501 = tempRet0; - $502 = (_i64Add(($500|0),($501|0),($202|0),($203|0))|0); - $503 = tempRet0; - $504 = (_i64Add(($502|0),($503|0),($178|0),($179|0))|0); - $505 = tempRet0; - $506 = (_i64Add(($504|0),($505|0),($156|0),($157|0))|0); - $507 = tempRet0; - $508 = (_i64Add(($506|0),($507|0),($132|0),($133|0))|0); - $509 = tempRet0; - $510 = (_i64Add(($508|0),($509|0),($110|0),($111|0))|0); - $511 = tempRet0; - $512 = (_i64Add(($510|0),($511|0),($84|0),($85|0))|0); - $513 = tempRet0; - $514 = (_i64Add(($512|0),($513|0),($316|0),($317|0))|0); - $515 = tempRet0; - $516 = (_i64Add(($514|0),($515|0),($292|0),($293|0))|0); - $517 = tempRet0; - $518 = (_i64Add(($516|0),($517|0),($498|0),($499|0))|0); - $519 = tempRet0; - $520 = (_bitshift64Shl(($498|0),($499|0),26)|0); - $521 = tempRet0; - $522 = (_i64Subtract(($462|0),($463|0),($520|0),($521|0))|0); - $523 = tempRet0; - $524 = (_i64Add(($490|0),($491|0),16777216,0)|0); - $525 = tempRet0; - $526 = (_bitshift64Ashr(($524|0),($525|0),25)|0); - $527 = tempRet0; - $528 = (_i64Add(($526|0),($527|0),($410|0),($411|0))|0); - $529 = tempRet0; - $530 = (_bitshift64Shl(($526|0),($527|0),25)|0); - $531 = tempRet0; - $532 = (_i64Subtract(($490|0),($491|0),($530|0),($531|0))|0); - $533 = tempRet0; - $534 = (_i64Add(($518|0),($519|0),16777216,0)|0); - $535 = tempRet0; - $536 = (_bitshift64Ashr(($534|0),($535|0),25)|0); - $537 = tempRet0; - $538 = (_i64Add(($250|0),($251|0),($272|0),($273|0))|0); - $539 = tempRet0; - $540 = (_i64Add(($538|0),($539|0),($226|0),($227|0))|0); - $541 = tempRet0; - $542 = (_i64Add(($540|0),($541|0),($204|0),($205|0))|0); - $543 = tempRet0; - $544 = (_i64Add(($542|0),($543|0),($180|0),($181|0))|0); - $545 = tempRet0; - $546 = (_i64Add(($544|0),($545|0),($158|0),($159|0))|0); - $547 = tempRet0; - $548 = (_i64Add(($546|0),($547|0),($134|0),($135|0))|0); - $549 = tempRet0; - $550 = (_i64Add(($548|0),($549|0),($112|0),($113|0))|0); - $551 = tempRet0; - $552 = (_i64Add(($550|0),($551|0),($88|0),($89|0))|0); - $553 = tempRet0; - $554 = (_i64Add(($552|0),($553|0),($318|0),($319|0))|0); - $555 = tempRet0; - $556 = (_i64Add(($554|0),($555|0),($536|0),($537|0))|0); - $557 = tempRet0; - $558 = (_bitshift64Shl(($536|0),($537|0),25)|0); - $559 = tempRet0; - $560 = (_i64Subtract(($518|0),($519|0),($558|0),($559|0))|0); - $561 = tempRet0; - $562 = (_i64Add(($528|0),($529|0),33554432,0)|0); - $563 = tempRet0; - $564 = (_bitshift64Ashr(($562|0),($563|0),26)|0); - $565 = tempRet0; - $566 = (_i64Add(($466|0),($467|0),($564|0),($565|0))|0); - $567 = tempRet0; - $568 = (_bitshift64Shl(($564|0),($565|0),26)|0); - $569 = tempRet0; - $570 = (_i64Subtract(($528|0),($529|0),($568|0),($569|0))|0); - $571 = tempRet0; - $572 = (_i64Add(($556|0),($557|0),33554432,0)|0); - $573 = tempRet0; - $574 = (_bitshift64Ashr(($572|0),($573|0),26)|0); - $575 = tempRet0; - $576 = (_i64Add(($274|0),($275|0),($296|0),($297|0))|0); - $577 = tempRet0; - $578 = (_i64Add(($576|0),($577|0),($252|0),($253|0))|0); - $579 = tempRet0; - $580 = (_i64Add(($578|0),($579|0),($228|0),($229|0))|0); - $581 = tempRet0; - $582 = (_i64Add(($580|0),($581|0),($206|0),($207|0))|0); - $583 = tempRet0; - $584 = (_i64Add(($582|0),($583|0),($182|0),($183|0))|0); - $585 = tempRet0; - $586 = (_i64Add(($584|0),($585|0),($160|0),($161|0))|0); - $587 = tempRet0; - $588 = (_i64Add(($586|0),($587|0),($136|0),($137|0))|0); - $589 = tempRet0; - $590 = (_i64Add(($588|0),($589|0),($114|0),($115|0))|0); - $591 = tempRet0; - $592 = (_i64Add(($590|0),($591|0),($92|0),($93|0))|0); - $593 = tempRet0; - $594 = (_i64Add(($592|0),($593|0),($574|0),($575|0))|0); - $595 = tempRet0; - $596 = (_bitshift64Shl(($574|0),($575|0),26)|0); - $597 = tempRet0; - $598 = (_i64Subtract(($556|0),($557|0),($596|0),($597|0))|0); - $599 = tempRet0; - $600 = (_i64Add(($594|0),($595|0),16777216,0)|0); - $601 = tempRet0; - $602 = (_bitshift64Ashr(($600|0),($601|0),25)|0); - $603 = tempRet0; - $604 = (___muldi3(($602|0),($603|0),19,0)|0); - $605 = tempRet0; - $606 = (_i64Add(($604|0),($605|0),($382|0),($383|0))|0); - $607 = tempRet0; - $608 = (_bitshift64Shl(($602|0),($603|0),25)|0); - $609 = tempRet0; - $610 = (_i64Subtract(($594|0),($595|0),($608|0),($609|0))|0); - $611 = tempRet0; - $612 = (_i64Add(($606|0),($607|0),33554432,0)|0); - $613 = tempRet0; - $614 = (_bitshift64Ashr(($612|0),($613|0),26)|0); - $615 = tempRet0; - $616 = (_i64Add(($438|0),($439|0),($614|0),($615|0))|0); - $617 = tempRet0; - $618 = (_bitshift64Shl(($614|0),($615|0),26)|0); - $619 = tempRet0; - $620 = (_i64Subtract(($606|0),($607|0),($618|0),($619|0))|0); - $621 = tempRet0; - HEAP32[$h>>2] = $620; - $622 = ((($h)) + 4|0); - HEAP32[$622>>2] = $616; - $623 = ((($h)) + 8|0); - HEAP32[$623>>2] = $494; - $624 = ((($h)) + 12|0); - HEAP32[$624>>2] = $532; - $625 = ((($h)) + 16|0); - HEAP32[$625>>2] = $570; - $626 = ((($h)) + 20|0); - HEAP32[$626>>2] = $566; - $627 = ((($h)) + 24|0); - HEAP32[$627>>2] = $522; - $628 = ((($h)) + 28|0); - HEAP32[$628>>2] = $560; - $629 = ((($h)) + 32|0); - HEAP32[$629>>2] = $598; - $630 = ((($h)) + 36|0); - HEAP32[$630>>2] = $610; + HEAP32[$0>>2] = $400; + $402 = ((($0)) + 4|0); + HEAP32[$402>>2] = $396; + $403 = ((($0)) + 8|0); + HEAP32[$403>>2] = $302; + $404 = ((($0)) + 12|0); + HEAP32[$404>>2] = $330; + $405 = ((($0)) + 16|0); + HEAP32[$405>>2] = $360; + $406 = ((($0)) + 20|0); + HEAP32[$406>>2] = $356; + $407 = ((($0)) + 24|0); + HEAP32[$407>>2] = $320; + $408 = ((($0)) + 28|0); + HEAP32[$408>>2] = $350; + $409 = ((($0)) + 32|0); + HEAP32[$409>>2] = $378; + $410 = ((($0)) + 36|0); + HEAP32[$410>>2] = $390; return; } -function _crypto_sign_ed25519_ref10_fe_neg($h,$f) { - $h = $h|0; - $f = $f|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); - $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); - $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); - $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); - $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); - $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); - $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); - $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); - $18 = HEAP32[$17>>2]|0; - $19 = (0 - ($0))|0; - $20 = (0 - ($2))|0; - $21 = (0 - ($4))|0; - $22 = (0 - ($6))|0; - $23 = (0 - ($8))|0; - $24 = (0 - ($10))|0; - $25 = (0 - ($12))|0; - $26 = (0 - ($14))|0; - $27 = (0 - ($16))|0; - $28 = (0 - ($18))|0; - HEAP32[$h>>2] = $19; - $29 = ((($h)) + 4|0); - HEAP32[$29>>2] = $20; - $30 = ((($h)) + 8|0); - HEAP32[$30>>2] = $21; - $31 = ((($h)) + 12|0); - HEAP32[$31>>2] = $22; - $32 = ((($h)) + 16|0); - HEAP32[$32>>2] = $23; - $33 = ((($h)) + 20|0); - HEAP32[$33>>2] = $24; - $34 = ((($h)) + 24|0); - HEAP32[$34>>2] = $25; - $35 = ((($h)) + 28|0); - HEAP32[$35>>2] = $26; - $36 = ((($h)) + 32|0); - HEAP32[$36>>2] = $27; - $37 = ((($h)) + 36|0); - HEAP32[$37>>2] = $28; - return; -} -function _crypto_sign_ed25519_ref10_fe_pow22523($out,$z) { - $out = $out|0; - $z = $z|0; - var $0 = 0, $1 = 0, $2 = 0, $exitcond = 0, $exitcond10 = 0, $exitcond11 = 0, $i$74 = 0, $i$83 = 0, $i$92 = 0, $t0 = 0, $t1 = 0, $t2 = 0, label = 0, sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 128|0; - $t0 = sp + 80|0; - $t1 = sp + 40|0; - $t2 = sp; - _crypto_sign_ed25519_ref10_fe_sq($t0,$z); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_mul($t1,$z,$t1); - _crypto_sign_ed25519_ref10_fe_mul($t0,$t0,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t0,$t0); - _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_mul($t1,$t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t0); - $i$74 = 1; - while(1) { - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - $0 = (($i$74) + 1)|0; - $exitcond11 = ($0|0)==(50); - if ($exitcond11) { - break; - } else { - $i$74 = $0; - } - } - _crypto_sign_ed25519_ref10_fe_mul($t1,$t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t2,$t1); - $i$83 = 1; - while(1) { - _crypto_sign_ed25519_ref10_fe_sq($t2,$t2); - $1 = (($i$83) + 1)|0; - $exitcond10 = ($1|0)==(100); - if ($exitcond10) { - break; - } else { - $i$83 = $1; - } - } - _crypto_sign_ed25519_ref10_fe_mul($t1,$t2,$t1); - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - $i$92 = 1; - while(1) { - _crypto_sign_ed25519_ref10_fe_sq($t1,$t1); - $2 = (($i$92) + 1)|0; - $exitcond = ($2|0)==(50); - if ($exitcond) { - break; - } else { - $i$92 = $2; - } - } - _crypto_sign_ed25519_ref10_fe_mul($t0,$t1,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t0,$t0); - _crypto_sign_ed25519_ref10_fe_sq($t0,$t0); - _crypto_sign_ed25519_ref10_fe_mul($out,$t0,$z); - STACKTOP = sp;return; -} -function _crypto_sign_ed25519_ref10_fe_sq($h,$f) { - $h = $h|0; - $f = $f|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; - var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; - var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; - var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; - var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; - var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; - var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; - var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; - var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; - var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; - var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; - var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; - var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0; +function _crypto_sign_ed25519_ref10_fe_sq2($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0; + var $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0; + var $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0; + var $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0; + var $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0; + var $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0; + var $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0; + var $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0; + var $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0; + var $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0; + var $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0; + var $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0; + var $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0; + var $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0; var $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0; var $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0; var $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); + $3 = ((($1)) + 4|0); $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); + $5 = ((($1)) + 8|0); $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); + $7 = ((($1)) + 12|0); $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); + $9 = ((($1)) + 16|0); $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); + $11 = ((($1)) + 20|0); $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); + $13 = ((($1)) + 24|0); $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); + $15 = ((($1)) + 28|0); $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); + $17 = ((($1)) + 32|0); $18 = HEAP32[$17>>2]|0; - $19 = $0 << 1; - $20 = $2 << 1; - $21 = $4 << 1; - $22 = $6 << 1; - $23 = $8 << 1; - $24 = $10 << 1; - $25 = $12 << 1; - $26 = $14 << 1; - $27 = ($10*38)|0; - $28 = ($12*19)|0; - $29 = ($14*38)|0; - $30 = ($16*19)|0; - $31 = ($18*38)|0; - $32 = ($0|0)<(0); - $33 = $32 << 31 >> 31; - $34 = (___muldi3(($0|0),($33|0),($0|0),($33|0))|0); - $35 = tempRet0; - $36 = ($19|0)<(0); - $37 = $36 << 31 >> 31; - $38 = ($2|0)<(0); + $19 = ((($1)) + 36|0); + $20 = HEAP32[$19>>2]|0; + $21 = $2 << 1; + $22 = $4 << 1; + $23 = $6 << 1; + $24 = $8 << 1; + $25 = $10 << 1; + $26 = $12 << 1; + $27 = $14 << 1; + $28 = $16 << 1; + $29 = ($12*38)|0; + $30 = ($14*19)|0; + $31 = ($16*38)|0; + $32 = ($18*19)|0; + $33 = ($20*38)|0; + $34 = ($2|0)<(0); + $35 = $34 << 31 >> 31; + $36 = (___muldi3(($2|0),($35|0),($2|0),($35|0))|0); + $37 = tempRet0; + $38 = ($21|0)<(0); $39 = $38 << 31 >> 31; - $40 = (___muldi3(($19|0),($37|0),($2|0),($39|0))|0); - $41 = tempRet0; - $42 = ($4|0)<(0); - $43 = $42 << 31 >> 31; - $44 = (___muldi3(($4|0),($43|0),($19|0),($37|0))|0); - $45 = tempRet0; - $46 = ($6|0)<(0); - $47 = $46 << 31 >> 31; - $48 = (___muldi3(($6|0),($47|0),($19|0),($37|0))|0); - $49 = tempRet0; - $50 = ($8|0)<(0); - $51 = $50 << 31 >> 31; - $52 = (___muldi3(($8|0),($51|0),($19|0),($37|0))|0); - $53 = tempRet0; - $54 = ($10|0)<(0); - $55 = $54 << 31 >> 31; - $56 = (___muldi3(($10|0),($55|0),($19|0),($37|0))|0); - $57 = tempRet0; - $58 = ($12|0)<(0); - $59 = $58 << 31 >> 31; - $60 = (___muldi3(($12|0),($59|0),($19|0),($37|0))|0); - $61 = tempRet0; - $62 = ($14|0)<(0); - $63 = $62 << 31 >> 31; - $64 = (___muldi3(($14|0),($63|0),($19|0),($37|0))|0); - $65 = tempRet0; - $66 = ($16|0)<(0); - $67 = $66 << 31 >> 31; - $68 = (___muldi3(($16|0),($67|0),($19|0),($37|0))|0); - $69 = tempRet0; - $70 = ($18|0)<(0); - $71 = $70 << 31 >> 31; - $72 = (___muldi3(($18|0),($71|0),($19|0),($37|0))|0); - $73 = tempRet0; - $74 = ($20|0)<(0); - $75 = $74 << 31 >> 31; - $76 = (___muldi3(($20|0),($75|0),($2|0),($39|0))|0); - $77 = tempRet0; - $78 = (___muldi3(($20|0),($75|0),($4|0),($43|0))|0); + $40 = ($4|0)<(0); + $41 = $40 << 31 >> 31; + $42 = (___muldi3(($21|0),($39|0),($4|0),($41|0))|0); + $43 = tempRet0; + $44 = ($6|0)<(0); + $45 = $44 << 31 >> 31; + $46 = (___muldi3(($6|0),($45|0),($21|0),($39|0))|0); + $47 = tempRet0; + $48 = ($8|0)<(0); + $49 = $48 << 31 >> 31; + $50 = (___muldi3(($8|0),($49|0),($21|0),($39|0))|0); + $51 = tempRet0; + $52 = ($10|0)<(0); + $53 = $52 << 31 >> 31; + $54 = (___muldi3(($10|0),($53|0),($21|0),($39|0))|0); + $55 = tempRet0; + $56 = ($12|0)<(0); + $57 = $56 << 31 >> 31; + $58 = (___muldi3(($12|0),($57|0),($21|0),($39|0))|0); + $59 = tempRet0; + $60 = ($14|0)<(0); + $61 = $60 << 31 >> 31; + $62 = (___muldi3(($14|0),($61|0),($21|0),($39|0))|0); + $63 = tempRet0; + $64 = ($16|0)<(0); + $65 = $64 << 31 >> 31; + $66 = (___muldi3(($16|0),($65|0),($21|0),($39|0))|0); + $67 = tempRet0; + $68 = ($18|0)<(0); + $69 = $68 << 31 >> 31; + $70 = (___muldi3(($18|0),($69|0),($21|0),($39|0))|0); + $71 = tempRet0; + $72 = ($20|0)<(0); + $73 = $72 << 31 >> 31; + $74 = (___muldi3(($20|0),($73|0),($21|0),($39|0))|0); + $75 = tempRet0; + $76 = ($22|0)<(0); + $77 = $76 << 31 >> 31; + $78 = (___muldi3(($22|0),($77|0),($4|0),($41|0))|0); $79 = tempRet0; - $80 = ($22|0)<(0); - $81 = $80 << 31 >> 31; - $82 = (___muldi3(($22|0),($81|0),($20|0),($75|0))|0); - $83 = tempRet0; - $84 = (___muldi3(($8|0),($51|0),($20|0),($75|0))|0); + $80 = (___muldi3(($22|0),($77|0),($6|0),($45|0))|0); + $81 = tempRet0; + $82 = ($24|0)<(0); + $83 = $82 << 31 >> 31; + $84 = (___muldi3(($24|0),($83|0),($22|0),($77|0))|0); $85 = tempRet0; - $86 = ($24|0)<(0); - $87 = $86 << 31 >> 31; - $88 = (___muldi3(($24|0),($87|0),($20|0),($75|0))|0); - $89 = tempRet0; - $90 = (___muldi3(($12|0),($59|0),($20|0),($75|0))|0); + $86 = (___muldi3(($10|0),($53|0),($22|0),($77|0))|0); + $87 = tempRet0; + $88 = ($26|0)<(0); + $89 = $88 << 31 >> 31; + $90 = (___muldi3(($26|0),($89|0),($22|0),($77|0))|0); $91 = tempRet0; - $92 = ($26|0)<(0); - $93 = $92 << 31 >> 31; - $94 = (___muldi3(($26|0),($93|0),($20|0),($75|0))|0); - $95 = tempRet0; - $96 = (___muldi3(($16|0),($67|0),($20|0),($75|0))|0); + $92 = (___muldi3(($14|0),($61|0),($22|0),($77|0))|0); + $93 = tempRet0; + $94 = ($28|0)<(0); + $95 = $94 << 31 >> 31; + $96 = (___muldi3(($28|0),($95|0),($22|0),($77|0))|0); $97 = tempRet0; - $98 = ($31|0)<(0); - $99 = $98 << 31 >> 31; - $100 = (___muldi3(($31|0),($99|0),($20|0),($75|0))|0); - $101 = tempRet0; - $102 = (___muldi3(($4|0),($43|0),($4|0),($43|0))|0); + $98 = (___muldi3(($18|0),($69|0),($22|0),($77|0))|0); + $99 = tempRet0; + $100 = ($33|0)<(0); + $101 = $100 << 31 >> 31; + $102 = (___muldi3(($33|0),($101|0),($22|0),($77|0))|0); $103 = tempRet0; - $104 = ($21|0)<(0); - $105 = $104 << 31 >> 31; - $106 = (___muldi3(($21|0),($105|0),($6|0),($47|0))|0); - $107 = tempRet0; - $108 = (___muldi3(($8|0),($51|0),($21|0),($105|0))|0); + $104 = (___muldi3(($6|0),($45|0),($6|0),($45|0))|0); + $105 = tempRet0; + $106 = ($23|0)<(0); + $107 = $106 << 31 >> 31; + $108 = (___muldi3(($23|0),($107|0),($8|0),($49|0))|0); $109 = tempRet0; - $110 = (___muldi3(($10|0),($55|0),($21|0),($105|0))|0); + $110 = (___muldi3(($10|0),($53|0),($23|0),($107|0))|0); $111 = tempRet0; - $112 = (___muldi3(($12|0),($59|0),($21|0),($105|0))|0); + $112 = (___muldi3(($12|0),($57|0),($23|0),($107|0))|0); $113 = tempRet0; - $114 = (___muldi3(($14|0),($63|0),($21|0),($105|0))|0); + $114 = (___muldi3(($14|0),($61|0),($23|0),($107|0))|0); $115 = tempRet0; - $116 = ($30|0)<(0); - $117 = $116 << 31 >> 31; - $118 = (___muldi3(($30|0),($117|0),($21|0),($105|0))|0); - $119 = tempRet0; - $120 = (___muldi3(($31|0),($99|0),($4|0),($43|0))|0); + $116 = (___muldi3(($16|0),($65|0),($23|0),($107|0))|0); + $117 = tempRet0; + $118 = ($32|0)<(0); + $119 = $118 << 31 >> 31; + $120 = (___muldi3(($32|0),($119|0),($23|0),($107|0))|0); $121 = tempRet0; - $122 = (___muldi3(($22|0),($81|0),($6|0),($47|0))|0); + $122 = (___muldi3(($33|0),($101|0),($6|0),($45|0))|0); $123 = tempRet0; - $124 = (___muldi3(($22|0),($81|0),($8|0),($51|0))|0); + $124 = (___muldi3(($24|0),($83|0),($8|0),($49|0))|0); $125 = tempRet0; - $126 = (___muldi3(($24|0),($87|0),($22|0),($81|0))|0); + $126 = (___muldi3(($24|0),($83|0),($10|0),($53|0))|0); $127 = tempRet0; - $128 = (___muldi3(($12|0),($59|0),($22|0),($81|0))|0); + $128 = (___muldi3(($26|0),($89|0),($24|0),($83|0))|0); $129 = tempRet0; - $130 = ($29|0)<(0); - $131 = $130 << 31 >> 31; - $132 = (___muldi3(($29|0),($131|0),($22|0),($81|0))|0); - $133 = tempRet0; - $134 = (___muldi3(($30|0),($117|0),($22|0),($81|0))|0); + $130 = (___muldi3(($14|0),($61|0),($24|0),($83|0))|0); + $131 = tempRet0; + $132 = ($31|0)<(0); + $133 = $132 << 31 >> 31; + $134 = (___muldi3(($31|0),($133|0),($24|0),($83|0))|0); $135 = tempRet0; - $136 = (___muldi3(($31|0),($99|0),($22|0),($81|0))|0); + $136 = (___muldi3(($32|0),($119|0),($24|0),($83|0))|0); $137 = tempRet0; - $138 = (___muldi3(($8|0),($51|0),($8|0),($51|0))|0); + $138 = (___muldi3(($33|0),($101|0),($24|0),($83|0))|0); $139 = tempRet0; - $140 = ($23|0)<(0); - $141 = $140 << 31 >> 31; - $142 = (___muldi3(($23|0),($141|0),($10|0),($55|0))|0); - $143 = tempRet0; - $144 = ($28|0)<(0); - $145 = $144 << 31 >> 31; - $146 = (___muldi3(($28|0),($145|0),($23|0),($141|0))|0); - $147 = tempRet0; - $148 = (___muldi3(($29|0),($131|0),($8|0),($51|0))|0); + $140 = (___muldi3(($10|0),($53|0),($10|0),($53|0))|0); + $141 = tempRet0; + $142 = ($25|0)<(0); + $143 = $142 << 31 >> 31; + $144 = (___muldi3(($25|0),($143|0),($12|0),($57|0))|0); + $145 = tempRet0; + $146 = ($30|0)<(0); + $147 = $146 << 31 >> 31; + $148 = (___muldi3(($30|0),($147|0),($25|0),($143|0))|0); $149 = tempRet0; - $150 = (___muldi3(($30|0),($117|0),($23|0),($141|0))|0); + $150 = (___muldi3(($31|0),($133|0),($10|0),($53|0))|0); $151 = tempRet0; - $152 = (___muldi3(($31|0),($99|0),($8|0),($51|0))|0); + $152 = (___muldi3(($32|0),($119|0),($25|0),($143|0))|0); $153 = tempRet0; - $154 = ($27|0)<(0); - $155 = $154 << 31 >> 31; - $156 = (___muldi3(($27|0),($155|0),($10|0),($55|0))|0); - $157 = tempRet0; - $158 = (___muldi3(($28|0),($145|0),($24|0),($87|0))|0); + $154 = (___muldi3(($33|0),($101|0),($10|0),($53|0))|0); + $155 = tempRet0; + $156 = ($29|0)<(0); + $157 = $156 << 31 >> 31; + $158 = (___muldi3(($29|0),($157|0),($12|0),($57|0))|0); $159 = tempRet0; - $160 = (___muldi3(($29|0),($131|0),($24|0),($87|0))|0); + $160 = (___muldi3(($30|0),($147|0),($26|0),($89|0))|0); $161 = tempRet0; - $162 = (___muldi3(($30|0),($117|0),($24|0),($87|0))|0); + $162 = (___muldi3(($31|0),($133|0),($26|0),($89|0))|0); $163 = tempRet0; - $164 = (___muldi3(($31|0),($99|0),($24|0),($87|0))|0); + $164 = (___muldi3(($32|0),($119|0),($26|0),($89|0))|0); $165 = tempRet0; - $166 = (___muldi3(($28|0),($145|0),($12|0),($59|0))|0); + $166 = (___muldi3(($33|0),($101|0),($26|0),($89|0))|0); $167 = tempRet0; - $168 = (___muldi3(($29|0),($131|0),($12|0),($59|0))|0); + $168 = (___muldi3(($30|0),($147|0),($14|0),($61|0))|0); $169 = tempRet0; - $170 = ($25|0)<(0); - $171 = $170 << 31 >> 31; - $172 = (___muldi3(($30|0),($117|0),($25|0),($171|0))|0); - $173 = tempRet0; - $174 = (___muldi3(($31|0),($99|0),($12|0),($59|0))|0); + $170 = (___muldi3(($31|0),($133|0),($14|0),($61|0))|0); + $171 = tempRet0; + $172 = ($27|0)<(0); + $173 = $172 << 31 >> 31; + $174 = (___muldi3(($32|0),($119|0),($27|0),($173|0))|0); $175 = tempRet0; - $176 = (___muldi3(($29|0),($131|0),($14|0),($63|0))|0); + $176 = (___muldi3(($33|0),($101|0),($14|0),($61|0))|0); $177 = tempRet0; - $178 = (___muldi3(($30|0),($117|0),($26|0),($93|0))|0); + $178 = (___muldi3(($31|0),($133|0),($16|0),($65|0))|0); $179 = tempRet0; - $180 = (___muldi3(($31|0),($99|0),($26|0),($93|0))|0); + $180 = (___muldi3(($32|0),($119|0),($28|0),($95|0))|0); $181 = tempRet0; - $182 = (___muldi3(($30|0),($117|0),($16|0),($67|0))|0); + $182 = (___muldi3(($33|0),($101|0),($28|0),($95|0))|0); $183 = tempRet0; - $184 = (___muldi3(($31|0),($99|0),($16|0),($67|0))|0); + $184 = (___muldi3(($32|0),($119|0),($18|0),($69|0))|0); $185 = tempRet0; - $186 = (___muldi3(($31|0),($99|0),($18|0),($71|0))|0); + $186 = (___muldi3(($33|0),($101|0),($18|0),($69|0))|0); $187 = tempRet0; - $188 = (_i64Add(($156|0),($157|0),($34|0),($35|0))|0); + $188 = (___muldi3(($33|0),($101|0),($20|0),($73|0))|0); $189 = tempRet0; - $190 = (_i64Add(($188|0),($189|0),($146|0),($147|0))|0); + $190 = (_i64Add(($158|0),($159|0),($36|0),($37|0))|0); $191 = tempRet0; - $192 = (_i64Add(($190|0),($191|0),($132|0),($133|0))|0); + $192 = (_i64Add(($190|0),($191|0),($148|0),($149|0))|0); $193 = tempRet0; - $194 = (_i64Add(($192|0),($193|0),($118|0),($119|0))|0); + $194 = (_i64Add(($192|0),($193|0),($134|0),($135|0))|0); $195 = tempRet0; - $196 = (_i64Add(($194|0),($195|0),($100|0),($101|0))|0); + $196 = (_i64Add(($194|0),($195|0),($120|0),($121|0))|0); $197 = tempRet0; - $198 = (_i64Add(($44|0),($45|0),($76|0),($77|0))|0); + $198 = (_i64Add(($196|0),($197|0),($102|0),($103|0))|0); $199 = tempRet0; - $200 = (_i64Add(($48|0),($49|0),($78|0),($79|0))|0); + $200 = (_i64Add(($160|0),($161|0),($42|0),($43|0))|0); $201 = tempRet0; - $202 = (_i64Add(($82|0),($83|0),($102|0),($103|0))|0); + $202 = (_i64Add(($200|0),($201|0),($150|0),($151|0))|0); $203 = tempRet0; - $204 = (_i64Add(($202|0),($203|0),($52|0),($53|0))|0); + $204 = (_i64Add(($202|0),($203|0),($136|0),($137|0))|0); $205 = tempRet0; - $206 = (_i64Add(($204|0),($205|0),($176|0),($177|0))|0); + $206 = (_i64Add(($204|0),($205|0),($122|0),($123|0))|0); $207 = tempRet0; - $208 = (_i64Add(($206|0),($207|0),($172|0),($173|0))|0); + $208 = (_i64Add(($46|0),($47|0),($78|0),($79|0))|0); $209 = tempRet0; - $210 = (_i64Add(($208|0),($209|0),($164|0),($165|0))|0); + $210 = (_i64Add(($208|0),($209|0),($168|0),($169|0))|0); $211 = tempRet0; - $212 = (_i64Add(($196|0),($197|0),33554432,0)|0); + $212 = (_i64Add(($210|0),($211|0),($162|0),($163|0))|0); $213 = tempRet0; - $214 = (_bitshift64Ashr(($212|0),($213|0),26)|0); + $214 = (_i64Add(($212|0),($213|0),($152|0),($153|0))|0); $215 = tempRet0; - $216 = (_i64Add(($158|0),($159|0),($40|0),($41|0))|0); + $216 = (_i64Add(($214|0),($215|0),($138|0),($139|0))|0); $217 = tempRet0; - $218 = (_i64Add(($216|0),($217|0),($148|0),($149|0))|0); + $218 = (_i64Add(($50|0),($51|0),($80|0),($81|0))|0); $219 = tempRet0; - $220 = (_i64Add(($218|0),($219|0),($134|0),($135|0))|0); + $220 = (_i64Add(($218|0),($219|0),($170|0),($171|0))|0); $221 = tempRet0; - $222 = (_i64Add(($220|0),($221|0),($120|0),($121|0))|0); + $222 = (_i64Add(($220|0),($221|0),($164|0),($165|0))|0); $223 = tempRet0; - $224 = (_i64Add(($222|0),($223|0),($214|0),($215|0))|0); + $224 = (_i64Add(($222|0),($223|0),($154|0),($155|0))|0); $225 = tempRet0; - $226 = (_bitshift64Shl(($214|0),($215|0),26)|0); + $226 = (_i64Add(($84|0),($85|0),($104|0),($105|0))|0); $227 = tempRet0; - $228 = (_i64Subtract(($196|0),($197|0),($226|0),($227|0))|0); + $228 = (_i64Add(($226|0),($227|0),($54|0),($55|0))|0); $229 = tempRet0; - $230 = (_i64Add(($210|0),($211|0),33554432,0)|0); + $230 = (_i64Add(($228|0),($229|0),($178|0),($179|0))|0); $231 = tempRet0; - $232 = (_bitshift64Ashr(($230|0),($231|0),26)|0); + $232 = (_i64Add(($230|0),($231|0),($174|0),($175|0))|0); $233 = tempRet0; - $234 = (_i64Add(($84|0),($85|0),($106|0),($107|0))|0); + $234 = (_i64Add(($232|0),($233|0),($166|0),($167|0))|0); $235 = tempRet0; - $236 = (_i64Add(($234|0),($235|0),($56|0),($57|0))|0); + $236 = (_i64Add(($86|0),($87|0),($108|0),($109|0))|0); $237 = tempRet0; - $238 = (_i64Add(($236|0),($237|0),($178|0),($179|0))|0); + $238 = (_i64Add(($236|0),($237|0),($58|0),($59|0))|0); $239 = tempRet0; - $240 = (_i64Add(($238|0),($239|0),($174|0),($175|0))|0); + $240 = (_i64Add(($238|0),($239|0),($180|0),($181|0))|0); $241 = tempRet0; - $242 = (_i64Add(($240|0),($241|0),($232|0),($233|0))|0); + $242 = (_i64Add(($240|0),($241|0),($176|0),($177|0))|0); $243 = tempRet0; - $244 = (_bitshift64Shl(($232|0),($233|0),26)|0); + $244 = (_i64Add(($124|0),($125|0),($110|0),($111|0))|0); $245 = tempRet0; - $246 = (_i64Subtract(($210|0),($211|0),($244|0),($245|0))|0); + $246 = (_i64Add(($244|0),($245|0),($90|0),($91|0))|0); $247 = tempRet0; - $248 = (_i64Add(($224|0),($225|0),16777216,0)|0); + $248 = (_i64Add(($246|0),($247|0),($62|0),($63|0))|0); $249 = tempRet0; - $250 = (_bitshift64Ashr(($248|0),($249|0),25)|0); + $250 = (_i64Add(($248|0),($249|0),($184|0),($185|0))|0); $251 = tempRet0; - $252 = (_i64Add(($198|0),($199|0),($166|0),($167|0))|0); + $252 = (_i64Add(($250|0),($251|0),($182|0),($183|0))|0); $253 = tempRet0; - $254 = (_i64Add(($252|0),($253|0),($160|0),($161|0))|0); + $254 = (_i64Add(($112|0),($113|0),($126|0),($127|0))|0); $255 = tempRet0; - $256 = (_i64Add(($254|0),($255|0),($150|0),($151|0))|0); + $256 = (_i64Add(($254|0),($255|0),($92|0),($93|0))|0); $257 = tempRet0; - $258 = (_i64Add(($256|0),($257|0),($136|0),($137|0))|0); + $258 = (_i64Add(($256|0),($257|0),($66|0),($67|0))|0); $259 = tempRet0; - $260 = (_i64Add(($258|0),($259|0),($250|0),($251|0))|0); + $260 = (_i64Add(($258|0),($259|0),($186|0),($187|0))|0); $261 = tempRet0; - $262 = (_bitshift64Shl(($250|0),($251|0),25)|0); + $262 = (_i64Add(($114|0),($115|0),($140|0),($141|0))|0); $263 = tempRet0; - $264 = (_i64Subtract(($224|0),($225|0),($262|0),($263|0))|0); + $264 = (_i64Add(($262|0),($263|0),($128|0),($129|0))|0); $265 = tempRet0; - $266 = (_i64Add(($242|0),($243|0),16777216,0)|0); + $266 = (_i64Add(($264|0),($265|0),($96|0),($97|0))|0); $267 = tempRet0; - $268 = (_bitshift64Ashr(($266|0),($267|0),25)|0); + $268 = (_i64Add(($266|0),($267|0),($70|0),($71|0))|0); $269 = tempRet0; - $270 = (_i64Add(($122|0),($123|0),($108|0),($109|0))|0); + $270 = (_i64Add(($268|0),($269|0),($188|0),($189|0))|0); $271 = tempRet0; - $272 = (_i64Add(($270|0),($271|0),($88|0),($89|0))|0); + $272 = (_i64Add(($130|0),($131|0),($144|0),($145|0))|0); $273 = tempRet0; - $274 = (_i64Add(($272|0),($273|0),($60|0),($61|0))|0); + $274 = (_i64Add(($272|0),($273|0),($116|0),($117|0))|0); $275 = tempRet0; - $276 = (_i64Add(($274|0),($275|0),($182|0),($183|0))|0); + $276 = (_i64Add(($274|0),($275|0),($98|0),($99|0))|0); $277 = tempRet0; - $278 = (_i64Add(($276|0),($277|0),($180|0),($181|0))|0); + $278 = (_i64Add(($276|0),($277|0),($74|0),($75|0))|0); $279 = tempRet0; - $280 = (_i64Add(($278|0),($279|0),($268|0),($269|0))|0); + $280 = (_bitshift64Shl(($198|0),($199|0),1)|0); $281 = tempRet0; - $282 = (_bitshift64Shl(($268|0),($269|0),25)|0); + $282 = (_bitshift64Shl(($206|0),($207|0),1)|0); $283 = tempRet0; - $284 = (_i64Subtract(($242|0),($243|0),($282|0),($283|0))|0); + $284 = (_bitshift64Shl(($216|0),($217|0),1)|0); $285 = tempRet0; - $286 = (_i64Add(($260|0),($261|0),33554432,0)|0); + $286 = (_bitshift64Shl(($224|0),($225|0),1)|0); $287 = tempRet0; - $288 = (_bitshift64Ashr(($286|0),($287|0),26)|0); + $288 = (_bitshift64Shl(($234|0),($235|0),1)|0); $289 = tempRet0; - $290 = (_i64Add(($200|0),($201|0),($168|0),($169|0))|0); + $290 = (_bitshift64Shl(($242|0),($243|0),1)|0); $291 = tempRet0; - $292 = (_i64Add(($290|0),($291|0),($162|0),($163|0))|0); + $292 = (_bitshift64Shl(($252|0),($253|0),1)|0); $293 = tempRet0; - $294 = (_i64Add(($292|0),($293|0),($152|0),($153|0))|0); + $294 = (_bitshift64Shl(($260|0),($261|0),1)|0); $295 = tempRet0; - $296 = (_i64Add(($294|0),($295|0),($288|0),($289|0))|0); + $296 = (_bitshift64Shl(($270|0),($271|0),1)|0); $297 = tempRet0; - $298 = (_bitshift64Shl(($288|0),($289|0),26)|0); + $298 = (_bitshift64Shl(($278|0),($279|0),1)|0); $299 = tempRet0; - $300 = (_i64Subtract(($260|0),($261|0),($298|0),($299|0))|0); + $300 = (_i64Add(($280|0),($281|0),33554432,0)|0); $301 = tempRet0; - $302 = (_i64Add(($280|0),($281|0),33554432,0)|0); + $302 = (_bitshift64Ashr(($300|0),($301|0),26)|0); $303 = tempRet0; - $304 = (_bitshift64Ashr(($302|0),($303|0),26)|0); + $304 = (_i64Add(($302|0),($303|0),($282|0),($283|0))|0); $305 = tempRet0; - $306 = (_i64Add(($110|0),($111|0),($124|0),($125|0))|0); + $306 = (_bitshift64Shl(($302|0),($303|0),26)|0); $307 = tempRet0; - $308 = (_i64Add(($306|0),($307|0),($90|0),($91|0))|0); + $308 = (_i64Subtract(($280|0),($281|0),($306|0),($307|0))|0); $309 = tempRet0; - $310 = (_i64Add(($308|0),($309|0),($64|0),($65|0))|0); + $310 = (_i64Add(($288|0),($289|0),33554432,0)|0); $311 = tempRet0; - $312 = (_i64Add(($310|0),($311|0),($184|0),($185|0))|0); + $312 = (_bitshift64Ashr(($310|0),($311|0),26)|0); $313 = tempRet0; - $314 = (_i64Add(($312|0),($313|0),($304|0),($305|0))|0); + $314 = (_i64Add(($312|0),($313|0),($290|0),($291|0))|0); $315 = tempRet0; - $316 = (_bitshift64Shl(($304|0),($305|0),26)|0); + $316 = (_bitshift64Shl(($312|0),($313|0),26)|0); $317 = tempRet0; - $318 = (_i64Subtract(($280|0),($281|0),($316|0),($317|0))|0); + $318 = (_i64Subtract(($288|0),($289|0),($316|0),($317|0))|0); $319 = tempRet0; - $320 = (_i64Add(($296|0),($297|0),16777216,0)|0); + $320 = (_i64Add(($304|0),($305|0),16777216,0)|0); $321 = tempRet0; $322 = (_bitshift64Ashr(($320|0),($321|0),25)|0); $323 = tempRet0; - $324 = (_i64Add(($322|0),($323|0),($246|0),($247|0))|0); + $324 = (_i64Add(($322|0),($323|0),($284|0),($285|0))|0); $325 = tempRet0; $326 = (_bitshift64Shl(($322|0),($323|0),25)|0); $327 = tempRet0; - $328 = (_i64Subtract(($296|0),($297|0),($326|0),($327|0))|0); + $328 = (_i64Subtract(($304|0),($305|0),($326|0),($327|0))|0); $329 = tempRet0; $330 = (_i64Add(($314|0),($315|0),16777216,0)|0); $331 = tempRet0; $332 = (_bitshift64Ashr(($330|0),($331|0),25)|0); $333 = tempRet0; - $334 = (_i64Add(($112|0),($113|0),($138|0),($139|0))|0); + $334 = (_i64Add(($332|0),($333|0),($292|0),($293|0))|0); $335 = tempRet0; - $336 = (_i64Add(($334|0),($335|0),($126|0),($127|0))|0); + $336 = (_bitshift64Shl(($332|0),($333|0),25)|0); $337 = tempRet0; - $338 = (_i64Add(($336|0),($337|0),($94|0),($95|0))|0); + $338 = (_i64Subtract(($314|0),($315|0),($336|0),($337|0))|0); $339 = tempRet0; - $340 = (_i64Add(($338|0),($339|0),($68|0),($69|0))|0); + $340 = (_i64Add(($324|0),($325|0),33554432,0)|0); $341 = tempRet0; - $342 = (_i64Add(($340|0),($341|0),($186|0),($187|0))|0); + $342 = (_bitshift64Ashr(($340|0),($341|0),26)|0); $343 = tempRet0; - $344 = (_i64Add(($342|0),($343|0),($332|0),($333|0))|0); + $344 = (_i64Add(($342|0),($343|0),($286|0),($287|0))|0); $345 = tempRet0; - $346 = (_bitshift64Shl(($332|0),($333|0),25)|0); + $346 = (_bitshift64Shl(($342|0),($343|0),26)|0); $347 = tempRet0; - $348 = (_i64Subtract(($314|0),($315|0),($346|0),($347|0))|0); + $348 = (_i64Subtract(($324|0),($325|0),($346|0),($347|0))|0); $349 = tempRet0; - $350 = (_i64Add(($324|0),($325|0),33554432,0)|0); + $350 = (_i64Add(($334|0),($335|0),33554432,0)|0); $351 = tempRet0; $352 = (_bitshift64Ashr(($350|0),($351|0),26)|0); $353 = tempRet0; - $354 = (_i64Add(($284|0),($285|0),($352|0),($353|0))|0); + $354 = (_i64Add(($352|0),($353|0),($294|0),($295|0))|0); $355 = tempRet0; $356 = (_bitshift64Shl(($352|0),($353|0),26)|0); $357 = tempRet0; - $358 = (_i64Subtract(($324|0),($325|0),($356|0),($357|0))|0); + $358 = (_i64Subtract(($334|0),($335|0),($356|0),($357|0))|0); $359 = tempRet0; - $360 = (_i64Add(($344|0),($345|0),33554432,0)|0); + $360 = (_i64Add(($344|0),($345|0),16777216,0)|0); $361 = tempRet0; - $362 = (_bitshift64Ashr(($360|0),($361|0),26)|0); + $362 = (_bitshift64Ashr(($360|0),($361|0),25)|0); $363 = tempRet0; - $364 = (_i64Add(($128|0),($129|0),($142|0),($143|0))|0); + $364 = (_i64Add(($362|0),($363|0),($318|0),($319|0))|0); $365 = tempRet0; - $366 = (_i64Add(($364|0),($365|0),($114|0),($115|0))|0); + $366 = (_bitshift64Shl(($362|0),($363|0),25)|0); $367 = tempRet0; - $368 = (_i64Add(($366|0),($367|0),($96|0),($97|0))|0); + $368 = (_i64Subtract(($344|0),($345|0),($366|0),($367|0))|0); $369 = tempRet0; - $370 = (_i64Add(($368|0),($369|0),($72|0),($73|0))|0); + $370 = (_i64Add(($354|0),($355|0),16777216,0)|0); $371 = tempRet0; - $372 = (_i64Add(($370|0),($371|0),($362|0),($363|0))|0); + $372 = (_bitshift64Ashr(($370|0),($371|0),25)|0); $373 = tempRet0; - $374 = (_bitshift64Shl(($362|0),($363|0),26)|0); + $374 = (_i64Add(($372|0),($373|0),($296|0),($297|0))|0); $375 = tempRet0; - $376 = (_i64Subtract(($344|0),($345|0),($374|0),($375|0))|0); + $376 = (_bitshift64Shl(($372|0),($373|0),25)|0); $377 = tempRet0; - $378 = (_i64Add(($372|0),($373|0),16777216,0)|0); + $378 = (_i64Subtract(($354|0),($355|0),($376|0),($377|0))|0); $379 = tempRet0; - $380 = (_bitshift64Ashr(($378|0),($379|0),25)|0); + $380 = (_i64Add(($364|0),($365|0),33554432,0)|0); $381 = tempRet0; - $382 = (___muldi3(($380|0),($381|0),19,0)|0); + $382 = (_bitshift64Ashr(($380|0),($381|0),26)|0); $383 = tempRet0; - $384 = (_i64Add(($382|0),($383|0),($228|0),($229|0))|0); + $384 = (_i64Add(($338|0),($339|0),($382|0),($383|0))|0); $385 = tempRet0; - $386 = (_bitshift64Shl(($380|0),($381|0),25)|0); + $386 = (_bitshift64Shl(($382|0),($383|0),26)|0); $387 = tempRet0; - $388 = (_i64Subtract(($372|0),($373|0),($386|0),($387|0))|0); + $388 = (_i64Subtract(($364|0),($365|0),($386|0),($387|0))|0); $389 = tempRet0; - $390 = (_i64Add(($384|0),($385|0),33554432,0)|0); + $390 = (_i64Add(($374|0),($375|0),33554432,0)|0); $391 = tempRet0; $392 = (_bitshift64Ashr(($390|0),($391|0),26)|0); $393 = tempRet0; - $394 = (_i64Add(($264|0),($265|0),($392|0),($393|0))|0); + $394 = (_i64Add(($392|0),($393|0),($298|0),($299|0))|0); $395 = tempRet0; $396 = (_bitshift64Shl(($392|0),($393|0),26)|0); $397 = tempRet0; - $398 = (_i64Subtract(($384|0),($385|0),($396|0),($397|0))|0); - $399 = tempRet0; - HEAP32[$h>>2] = $398; - $400 = ((($h)) + 4|0); - HEAP32[$400>>2] = $394; - $401 = ((($h)) + 8|0); - HEAP32[$401>>2] = $300; - $402 = ((($h)) + 12|0); - HEAP32[$402>>2] = $328; - $403 = ((($h)) + 16|0); - HEAP32[$403>>2] = $358; - $404 = ((($h)) + 20|0); - HEAP32[$404>>2] = $354; - $405 = ((($h)) + 24|0); - HEAP32[$405>>2] = $318; - $406 = ((($h)) + 28|0); - HEAP32[$406>>2] = $348; - $407 = ((($h)) + 32|0); - HEAP32[$407>>2] = $376; - $408 = ((($h)) + 36|0); - HEAP32[$408>>2] = $388; - return; -} -function _crypto_sign_ed25519_ref10_fe_sq2($h,$f) { - $h = $h|0; - $f = $f|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; - var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; - var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; - var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; - var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; - var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; - var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; - var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; - var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; - var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; - var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; - var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; - var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0; - var $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0; - var $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0; - var $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0; - var $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); - $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); - $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); - $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); - $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); - $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); - $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); - $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); - $18 = HEAP32[$17>>2]|0; - $19 = $0 << 1; - $20 = $2 << 1; - $21 = $4 << 1; - $22 = $6 << 1; - $23 = $8 << 1; - $24 = $10 << 1; - $25 = $12 << 1; - $26 = $14 << 1; - $27 = ($10*38)|0; - $28 = ($12*19)|0; - $29 = ($14*38)|0; - $30 = ($16*19)|0; - $31 = ($18*38)|0; - $32 = ($0|0)<(0); - $33 = $32 << 31 >> 31; - $34 = (___muldi3(($0|0),($33|0),($0|0),($33|0))|0); - $35 = tempRet0; - $36 = ($19|0)<(0); - $37 = $36 << 31 >> 31; - $38 = ($2|0)<(0); - $39 = $38 << 31 >> 31; - $40 = (___muldi3(($19|0),($37|0),($2|0),($39|0))|0); - $41 = tempRet0; - $42 = ($4|0)<(0); - $43 = $42 << 31 >> 31; - $44 = (___muldi3(($4|0),($43|0),($19|0),($37|0))|0); - $45 = tempRet0; - $46 = ($6|0)<(0); - $47 = $46 << 31 >> 31; - $48 = (___muldi3(($6|0),($47|0),($19|0),($37|0))|0); - $49 = tempRet0; - $50 = ($8|0)<(0); - $51 = $50 << 31 >> 31; - $52 = (___muldi3(($8|0),($51|0),($19|0),($37|0))|0); - $53 = tempRet0; - $54 = ($10|0)<(0); - $55 = $54 << 31 >> 31; - $56 = (___muldi3(($10|0),($55|0),($19|0),($37|0))|0); - $57 = tempRet0; - $58 = ($12|0)<(0); - $59 = $58 << 31 >> 31; - $60 = (___muldi3(($12|0),($59|0),($19|0),($37|0))|0); - $61 = tempRet0; - $62 = ($14|0)<(0); - $63 = $62 << 31 >> 31; - $64 = (___muldi3(($14|0),($63|0),($19|0),($37|0))|0); - $65 = tempRet0; - $66 = ($16|0)<(0); - $67 = $66 << 31 >> 31; - $68 = (___muldi3(($16|0),($67|0),($19|0),($37|0))|0); - $69 = tempRet0; - $70 = ($18|0)<(0); - $71 = $70 << 31 >> 31; - $72 = (___muldi3(($18|0),($71|0),($19|0),($37|0))|0); - $73 = tempRet0; - $74 = ($20|0)<(0); - $75 = $74 << 31 >> 31; - $76 = (___muldi3(($20|0),($75|0),($2|0),($39|0))|0); - $77 = tempRet0; - $78 = (___muldi3(($20|0),($75|0),($4|0),($43|0))|0); - $79 = tempRet0; - $80 = ($22|0)<(0); - $81 = $80 << 31 >> 31; - $82 = (___muldi3(($22|0),($81|0),($20|0),($75|0))|0); - $83 = tempRet0; - $84 = (___muldi3(($8|0),($51|0),($20|0),($75|0))|0); - $85 = tempRet0; - $86 = ($24|0)<(0); - $87 = $86 << 31 >> 31; - $88 = (___muldi3(($24|0),($87|0),($20|0),($75|0))|0); - $89 = tempRet0; - $90 = (___muldi3(($12|0),($59|0),($20|0),($75|0))|0); - $91 = tempRet0; - $92 = ($26|0)<(0); - $93 = $92 << 31 >> 31; - $94 = (___muldi3(($26|0),($93|0),($20|0),($75|0))|0); - $95 = tempRet0; - $96 = (___muldi3(($16|0),($67|0),($20|0),($75|0))|0); - $97 = tempRet0; - $98 = ($31|0)<(0); - $99 = $98 << 31 >> 31; - $100 = (___muldi3(($31|0),($99|0),($20|0),($75|0))|0); - $101 = tempRet0; - $102 = (___muldi3(($4|0),($43|0),($4|0),($43|0))|0); - $103 = tempRet0; - $104 = ($21|0)<(0); - $105 = $104 << 31 >> 31; - $106 = (___muldi3(($21|0),($105|0),($6|0),($47|0))|0); - $107 = tempRet0; - $108 = (___muldi3(($8|0),($51|0),($21|0),($105|0))|0); - $109 = tempRet0; - $110 = (___muldi3(($10|0),($55|0),($21|0),($105|0))|0); - $111 = tempRet0; - $112 = (___muldi3(($12|0),($59|0),($21|0),($105|0))|0); - $113 = tempRet0; - $114 = (___muldi3(($14|0),($63|0),($21|0),($105|0))|0); - $115 = tempRet0; - $116 = ($30|0)<(0); - $117 = $116 << 31 >> 31; - $118 = (___muldi3(($30|0),($117|0),($21|0),($105|0))|0); - $119 = tempRet0; - $120 = (___muldi3(($31|0),($99|0),($4|0),($43|0))|0); - $121 = tempRet0; - $122 = (___muldi3(($22|0),($81|0),($6|0),($47|0))|0); - $123 = tempRet0; - $124 = (___muldi3(($22|0),($81|0),($8|0),($51|0))|0); - $125 = tempRet0; - $126 = (___muldi3(($24|0),($87|0),($22|0),($81|0))|0); - $127 = tempRet0; - $128 = (___muldi3(($12|0),($59|0),($22|0),($81|0))|0); - $129 = tempRet0; - $130 = ($29|0)<(0); - $131 = $130 << 31 >> 31; - $132 = (___muldi3(($29|0),($131|0),($22|0),($81|0))|0); - $133 = tempRet0; - $134 = (___muldi3(($30|0),($117|0),($22|0),($81|0))|0); - $135 = tempRet0; - $136 = (___muldi3(($31|0),($99|0),($22|0),($81|0))|0); - $137 = tempRet0; - $138 = (___muldi3(($8|0),($51|0),($8|0),($51|0))|0); - $139 = tempRet0; - $140 = ($23|0)<(0); - $141 = $140 << 31 >> 31; - $142 = (___muldi3(($23|0),($141|0),($10|0),($55|0))|0); - $143 = tempRet0; - $144 = ($28|0)<(0); - $145 = $144 << 31 >> 31; - $146 = (___muldi3(($28|0),($145|0),($23|0),($141|0))|0); - $147 = tempRet0; - $148 = (___muldi3(($29|0),($131|0),($8|0),($51|0))|0); - $149 = tempRet0; - $150 = (___muldi3(($30|0),($117|0),($23|0),($141|0))|0); - $151 = tempRet0; - $152 = (___muldi3(($31|0),($99|0),($8|0),($51|0))|0); - $153 = tempRet0; - $154 = ($27|0)<(0); - $155 = $154 << 31 >> 31; - $156 = (___muldi3(($27|0),($155|0),($10|0),($55|0))|0); - $157 = tempRet0; - $158 = (___muldi3(($28|0),($145|0),($24|0),($87|0))|0); - $159 = tempRet0; - $160 = (___muldi3(($29|0),($131|0),($24|0),($87|0))|0); - $161 = tempRet0; - $162 = (___muldi3(($30|0),($117|0),($24|0),($87|0))|0); - $163 = tempRet0; - $164 = (___muldi3(($31|0),($99|0),($24|0),($87|0))|0); - $165 = tempRet0; - $166 = (___muldi3(($28|0),($145|0),($12|0),($59|0))|0); - $167 = tempRet0; - $168 = (___muldi3(($29|0),($131|0),($12|0),($59|0))|0); - $169 = tempRet0; - $170 = ($25|0)<(0); - $171 = $170 << 31 >> 31; - $172 = (___muldi3(($30|0),($117|0),($25|0),($171|0))|0); - $173 = tempRet0; - $174 = (___muldi3(($31|0),($99|0),($12|0),($59|0))|0); - $175 = tempRet0; - $176 = (___muldi3(($29|0),($131|0),($14|0),($63|0))|0); - $177 = tempRet0; - $178 = (___muldi3(($30|0),($117|0),($26|0),($93|0))|0); - $179 = tempRet0; - $180 = (___muldi3(($31|0),($99|0),($26|0),($93|0))|0); - $181 = tempRet0; - $182 = (___muldi3(($30|0),($117|0),($16|0),($67|0))|0); - $183 = tempRet0; - $184 = (___muldi3(($31|0),($99|0),($16|0),($67|0))|0); - $185 = tempRet0; - $186 = (___muldi3(($31|0),($99|0),($18|0),($71|0))|0); - $187 = tempRet0; - $188 = (_i64Add(($156|0),($157|0),($34|0),($35|0))|0); - $189 = tempRet0; - $190 = (_i64Add(($188|0),($189|0),($146|0),($147|0))|0); - $191 = tempRet0; - $192 = (_i64Add(($190|0),($191|0),($132|0),($133|0))|0); - $193 = tempRet0; - $194 = (_i64Add(($192|0),($193|0),($118|0),($119|0))|0); - $195 = tempRet0; - $196 = (_i64Add(($194|0),($195|0),($100|0),($101|0))|0); - $197 = tempRet0; - $198 = (_i64Add(($158|0),($159|0),($40|0),($41|0))|0); - $199 = tempRet0; - $200 = (_i64Add(($198|0),($199|0),($148|0),($149|0))|0); - $201 = tempRet0; - $202 = (_i64Add(($200|0),($201|0),($134|0),($135|0))|0); - $203 = tempRet0; - $204 = (_i64Add(($202|0),($203|0),($120|0),($121|0))|0); - $205 = tempRet0; - $206 = (_i64Add(($44|0),($45|0),($76|0),($77|0))|0); - $207 = tempRet0; - $208 = (_i64Add(($206|0),($207|0),($166|0),($167|0))|0); - $209 = tempRet0; - $210 = (_i64Add(($208|0),($209|0),($160|0),($161|0))|0); - $211 = tempRet0; - $212 = (_i64Add(($210|0),($211|0),($150|0),($151|0))|0); - $213 = tempRet0; - $214 = (_i64Add(($212|0),($213|0),($136|0),($137|0))|0); - $215 = tempRet0; - $216 = (_i64Add(($48|0),($49|0),($78|0),($79|0))|0); - $217 = tempRet0; - $218 = (_i64Add(($216|0),($217|0),($168|0),($169|0))|0); - $219 = tempRet0; - $220 = (_i64Add(($218|0),($219|0),($162|0),($163|0))|0); - $221 = tempRet0; - $222 = (_i64Add(($220|0),($221|0),($152|0),($153|0))|0); - $223 = tempRet0; - $224 = (_i64Add(($82|0),($83|0),($102|0),($103|0))|0); - $225 = tempRet0; - $226 = (_i64Add(($224|0),($225|0),($52|0),($53|0))|0); - $227 = tempRet0; - $228 = (_i64Add(($226|0),($227|0),($176|0),($177|0))|0); - $229 = tempRet0; - $230 = (_i64Add(($228|0),($229|0),($172|0),($173|0))|0); - $231 = tempRet0; - $232 = (_i64Add(($230|0),($231|0),($164|0),($165|0))|0); - $233 = tempRet0; - $234 = (_i64Add(($84|0),($85|0),($106|0),($107|0))|0); - $235 = tempRet0; - $236 = (_i64Add(($234|0),($235|0),($56|0),($57|0))|0); - $237 = tempRet0; - $238 = (_i64Add(($236|0),($237|0),($178|0),($179|0))|0); - $239 = tempRet0; - $240 = (_i64Add(($238|0),($239|0),($174|0),($175|0))|0); - $241 = tempRet0; - $242 = (_i64Add(($122|0),($123|0),($108|0),($109|0))|0); - $243 = tempRet0; - $244 = (_i64Add(($242|0),($243|0),($88|0),($89|0))|0); - $245 = tempRet0; - $246 = (_i64Add(($244|0),($245|0),($60|0),($61|0))|0); - $247 = tempRet0; - $248 = (_i64Add(($246|0),($247|0),($182|0),($183|0))|0); - $249 = tempRet0; - $250 = (_i64Add(($248|0),($249|0),($180|0),($181|0))|0); - $251 = tempRet0; - $252 = (_i64Add(($110|0),($111|0),($124|0),($125|0))|0); - $253 = tempRet0; - $254 = (_i64Add(($252|0),($253|0),($90|0),($91|0))|0); - $255 = tempRet0; - $256 = (_i64Add(($254|0),($255|0),($64|0),($65|0))|0); - $257 = tempRet0; - $258 = (_i64Add(($256|0),($257|0),($184|0),($185|0))|0); - $259 = tempRet0; - $260 = (_i64Add(($112|0),($113|0),($138|0),($139|0))|0); - $261 = tempRet0; - $262 = (_i64Add(($260|0),($261|0),($126|0),($127|0))|0); - $263 = tempRet0; - $264 = (_i64Add(($262|0),($263|0),($94|0),($95|0))|0); - $265 = tempRet0; - $266 = (_i64Add(($264|0),($265|0),($68|0),($69|0))|0); - $267 = tempRet0; - $268 = (_i64Add(($266|0),($267|0),($186|0),($187|0))|0); - $269 = tempRet0; - $270 = (_i64Add(($128|0),($129|0),($142|0),($143|0))|0); - $271 = tempRet0; - $272 = (_i64Add(($270|0),($271|0),($114|0),($115|0))|0); - $273 = tempRet0; - $274 = (_i64Add(($272|0),($273|0),($96|0),($97|0))|0); - $275 = tempRet0; - $276 = (_i64Add(($274|0),($275|0),($72|0),($73|0))|0); - $277 = tempRet0; - $278 = (_bitshift64Shl(($196|0),($197|0),1)|0); - $279 = tempRet0; - $280 = (_bitshift64Shl(($204|0),($205|0),1)|0); - $281 = tempRet0; - $282 = (_bitshift64Shl(($214|0),($215|0),1)|0); - $283 = tempRet0; - $284 = (_bitshift64Shl(($222|0),($223|0),1)|0); - $285 = tempRet0; - $286 = (_bitshift64Shl(($232|0),($233|0),1)|0); - $287 = tempRet0; - $288 = (_bitshift64Shl(($240|0),($241|0),1)|0); - $289 = tempRet0; - $290 = (_bitshift64Shl(($250|0),($251|0),1)|0); - $291 = tempRet0; - $292 = (_bitshift64Shl(($258|0),($259|0),1)|0); - $293 = tempRet0; - $294 = (_bitshift64Shl(($268|0),($269|0),1)|0); - $295 = tempRet0; - $296 = (_bitshift64Shl(($276|0),($277|0),1)|0); - $297 = tempRet0; - $298 = (_i64Add(($278|0),($279|0),33554432,0)|0); - $299 = tempRet0; - $300 = (_bitshift64Ashr(($298|0),($299|0),26)|0); - $301 = tempRet0; - $302 = (_i64Add(($300|0),($301|0),($280|0),($281|0))|0); - $303 = tempRet0; - $304 = (_bitshift64Shl(($300|0),($301|0),26)|0); - $305 = tempRet0; - $306 = (_i64Subtract(($278|0),($279|0),($304|0),($305|0))|0); - $307 = tempRet0; - $308 = (_i64Add(($286|0),($287|0),33554432,0)|0); - $309 = tempRet0; - $310 = (_bitshift64Ashr(($308|0),($309|0),26)|0); - $311 = tempRet0; - $312 = (_i64Add(($310|0),($311|0),($288|0),($289|0))|0); - $313 = tempRet0; - $314 = (_bitshift64Shl(($310|0),($311|0),26)|0); - $315 = tempRet0; - $316 = (_i64Subtract(($286|0),($287|0),($314|0),($315|0))|0); - $317 = tempRet0; - $318 = (_i64Add(($302|0),($303|0),16777216,0)|0); - $319 = tempRet0; - $320 = (_bitshift64Ashr(($318|0),($319|0),25)|0); - $321 = tempRet0; - $322 = (_i64Add(($320|0),($321|0),($282|0),($283|0))|0); - $323 = tempRet0; - $324 = (_bitshift64Shl(($320|0),($321|0),25)|0); - $325 = tempRet0; - $326 = (_i64Subtract(($302|0),($303|0),($324|0),($325|0))|0); - $327 = tempRet0; - $328 = (_i64Add(($312|0),($313|0),16777216,0)|0); - $329 = tempRet0; - $330 = (_bitshift64Ashr(($328|0),($329|0),25)|0); - $331 = tempRet0; - $332 = (_i64Add(($330|0),($331|0),($290|0),($291|0))|0); - $333 = tempRet0; - $334 = (_bitshift64Shl(($330|0),($331|0),25)|0); - $335 = tempRet0; - $336 = (_i64Subtract(($312|0),($313|0),($334|0),($335|0))|0); - $337 = tempRet0; - $338 = (_i64Add(($322|0),($323|0),33554432,0)|0); - $339 = tempRet0; - $340 = (_bitshift64Ashr(($338|0),($339|0),26)|0); - $341 = tempRet0; - $342 = (_i64Add(($340|0),($341|0),($284|0),($285|0))|0); - $343 = tempRet0; - $344 = (_bitshift64Shl(($340|0),($341|0),26)|0); - $345 = tempRet0; - $346 = (_i64Subtract(($322|0),($323|0),($344|0),($345|0))|0); - $347 = tempRet0; - $348 = (_i64Add(($332|0),($333|0),33554432,0)|0); - $349 = tempRet0; - $350 = (_bitshift64Ashr(($348|0),($349|0),26)|0); - $351 = tempRet0; - $352 = (_i64Add(($350|0),($351|0),($292|0),($293|0))|0); - $353 = tempRet0; - $354 = (_bitshift64Shl(($350|0),($351|0),26)|0); - $355 = tempRet0; - $356 = (_i64Subtract(($332|0),($333|0),($354|0),($355|0))|0); - $357 = tempRet0; - $358 = (_i64Add(($342|0),($343|0),16777216,0)|0); - $359 = tempRet0; - $360 = (_bitshift64Ashr(($358|0),($359|0),25)|0); - $361 = tempRet0; - $362 = (_i64Add(($360|0),($361|0),($316|0),($317|0))|0); - $363 = tempRet0; - $364 = (_bitshift64Shl(($360|0),($361|0),25)|0); - $365 = tempRet0; - $366 = (_i64Subtract(($342|0),($343|0),($364|0),($365|0))|0); - $367 = tempRet0; - $368 = (_i64Add(($352|0),($353|0),16777216,0)|0); - $369 = tempRet0; - $370 = (_bitshift64Ashr(($368|0),($369|0),25)|0); - $371 = tempRet0; - $372 = (_i64Add(($370|0),($371|0),($294|0),($295|0))|0); - $373 = tempRet0; - $374 = (_bitshift64Shl(($370|0),($371|0),25)|0); - $375 = tempRet0; - $376 = (_i64Subtract(($352|0),($353|0),($374|0),($375|0))|0); - $377 = tempRet0; - $378 = (_i64Add(($362|0),($363|0),33554432,0)|0); - $379 = tempRet0; - $380 = (_bitshift64Ashr(($378|0),($379|0),26)|0); - $381 = tempRet0; - $382 = (_i64Add(($336|0),($337|0),($380|0),($381|0))|0); - $383 = tempRet0; - $384 = (_bitshift64Shl(($380|0),($381|0),26)|0); - $385 = tempRet0; - $386 = (_i64Subtract(($362|0),($363|0),($384|0),($385|0))|0); - $387 = tempRet0; - $388 = (_i64Add(($372|0),($373|0),33554432,0)|0); - $389 = tempRet0; - $390 = (_bitshift64Ashr(($388|0),($389|0),26)|0); - $391 = tempRet0; - $392 = (_i64Add(($390|0),($391|0),($296|0),($297|0))|0); - $393 = tempRet0; - $394 = (_bitshift64Shl(($390|0),($391|0),26)|0); - $395 = tempRet0; - $396 = (_i64Subtract(($372|0),($373|0),($394|0),($395|0))|0); - $397 = tempRet0; - $398 = (_i64Add(($392|0),($393|0),16777216,0)|0); + $398 = (_i64Subtract(($374|0),($375|0),($396|0),($397|0))|0); $399 = tempRet0; - $400 = (_bitshift64Ashr(($398|0),($399|0),25)|0); + $400 = (_i64Add(($394|0),($395|0),16777216,0)|0); $401 = tempRet0; - $402 = (___muldi3(($400|0),($401|0),19,0)|0); + $402 = (_bitshift64Ashr(($400|0),($401|0),25)|0); $403 = tempRet0; - $404 = (_i64Add(($402|0),($403|0),($306|0),($307|0))|0); + $404 = (___muldi3(($402|0),($403|0),19,0)|0); $405 = tempRet0; - $406 = (_bitshift64Shl(($400|0),($401|0),25)|0); + $406 = (_i64Add(($404|0),($405|0),($308|0),($309|0))|0); $407 = tempRet0; - $408 = (_i64Subtract(($392|0),($393|0),($406|0),($407|0))|0); + $408 = (_bitshift64Shl(($402|0),($403|0),25)|0); $409 = tempRet0; - $410 = (_i64Add(($404|0),($405|0),33554432,0)|0); + $410 = (_i64Subtract(($394|0),($395|0),($408|0),($409|0))|0); $411 = tempRet0; - $412 = (_bitshift64Ashr(($410|0),($411|0),26)|0); + $412 = (_i64Add(($406|0),($407|0),33554432,0)|0); $413 = tempRet0; - $414 = (_i64Add(($326|0),($327|0),($412|0),($413|0))|0); + $414 = (_bitshift64Ashr(($412|0),($413|0),26)|0); $415 = tempRet0; - $416 = (_bitshift64Shl(($412|0),($413|0),26)|0); + $416 = (_i64Add(($328|0),($329|0),($414|0),($415|0))|0); $417 = tempRet0; - $418 = (_i64Subtract(($404|0),($405|0),($416|0),($417|0))|0); + $418 = (_bitshift64Shl(($414|0),($415|0),26)|0); $419 = tempRet0; - HEAP32[$h>>2] = $418; - $420 = ((($h)) + 4|0); - HEAP32[$420>>2] = $414; - $421 = ((($h)) + 8|0); - HEAP32[$421>>2] = $346; - $422 = ((($h)) + 12|0); - HEAP32[$422>>2] = $366; - $423 = ((($h)) + 16|0); - HEAP32[$423>>2] = $386; - $424 = ((($h)) + 20|0); - HEAP32[$424>>2] = $382; - $425 = ((($h)) + 24|0); - HEAP32[$425>>2] = $356; - $426 = ((($h)) + 28|0); - HEAP32[$426>>2] = $376; - $427 = ((($h)) + 32|0); - HEAP32[$427>>2] = $396; - $428 = ((($h)) + 36|0); - HEAP32[$428>>2] = $408; + $420 = (_i64Subtract(($406|0),($407|0),($418|0),($419|0))|0); + $421 = tempRet0; + HEAP32[$0>>2] = $420; + $422 = ((($0)) + 4|0); + HEAP32[$422>>2] = $416; + $423 = ((($0)) + 8|0); + HEAP32[$423>>2] = $348; + $424 = ((($0)) + 12|0); + HEAP32[$424>>2] = $368; + $425 = ((($0)) + 16|0); + HEAP32[$425>>2] = $388; + $426 = ((($0)) + 20|0); + HEAP32[$426>>2] = $384; + $427 = ((($0)) + 24|0); + HEAP32[$427>>2] = $358; + $428 = ((($0)) + 28|0); + HEAP32[$428>>2] = $378; + $429 = ((($0)) + 32|0); + HEAP32[$429>>2] = $398; + $430 = ((($0)) + 36|0); + HEAP32[$430>>2] = $410; return; } -function _crypto_sign_ed25519_ref10_fe_sub($h,$f,$g) { - $h = $h|0; - $f = $f|0; - $g = $g|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; - var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_fe_sub($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0; + var $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0; + var $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP32[$f>>2]|0; - $1 = ((($f)) + 4|0); - $2 = HEAP32[$1>>2]|0; - $3 = ((($f)) + 8|0); - $4 = HEAP32[$3>>2]|0; - $5 = ((($f)) + 12|0); - $6 = HEAP32[$5>>2]|0; - $7 = ((($f)) + 16|0); - $8 = HEAP32[$7>>2]|0; - $9 = ((($f)) + 20|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 24|0); - $12 = HEAP32[$11>>2]|0; - $13 = ((($f)) + 28|0); - $14 = HEAP32[$13>>2]|0; - $15 = ((($f)) + 32|0); - $16 = HEAP32[$15>>2]|0; - $17 = ((($f)) + 36|0); - $18 = HEAP32[$17>>2]|0; - $19 = HEAP32[$g>>2]|0; - $20 = ((($g)) + 4|0); + $3 = HEAP32[$1>>2]|0; + $4 = ((($1)) + 4|0); + $5 = HEAP32[$4>>2]|0; + $6 = ((($1)) + 8|0); + $7 = HEAP32[$6>>2]|0; + $8 = ((($1)) + 12|0); + $9 = HEAP32[$8>>2]|0; + $10 = ((($1)) + 16|0); + $11 = HEAP32[$10>>2]|0; + $12 = ((($1)) + 20|0); + $13 = HEAP32[$12>>2]|0; + $14 = ((($1)) + 24|0); + $15 = HEAP32[$14>>2]|0; + $16 = ((($1)) + 28|0); + $17 = HEAP32[$16>>2]|0; + $18 = ((($1)) + 32|0); + $19 = HEAP32[$18>>2]|0; + $20 = ((($1)) + 36|0); $21 = HEAP32[$20>>2]|0; - $22 = ((($g)) + 8|0); - $23 = HEAP32[$22>>2]|0; - $24 = ((($g)) + 12|0); - $25 = HEAP32[$24>>2]|0; - $26 = ((($g)) + 16|0); - $27 = HEAP32[$26>>2]|0; - $28 = ((($g)) + 20|0); - $29 = HEAP32[$28>>2]|0; - $30 = ((($g)) + 24|0); - $31 = HEAP32[$30>>2]|0; - $32 = ((($g)) + 28|0); - $33 = HEAP32[$32>>2]|0; - $34 = ((($g)) + 32|0); - $35 = HEAP32[$34>>2]|0; - $36 = ((($g)) + 36|0); - $37 = HEAP32[$36>>2]|0; - $38 = (($0) - ($19))|0; - $39 = (($2) - ($21))|0; - $40 = (($4) - ($23))|0; - $41 = (($6) - ($25))|0; - $42 = (($8) - ($27))|0; - $43 = (($10) - ($29))|0; - $44 = (($12) - ($31))|0; - $45 = (($14) - ($33))|0; - $46 = (($16) - ($35))|0; - $47 = (($18) - ($37))|0; - HEAP32[$h>>2] = $38; - $48 = ((($h)) + 4|0); - HEAP32[$48>>2] = $39; - $49 = ((($h)) + 8|0); - HEAP32[$49>>2] = $40; - $50 = ((($h)) + 12|0); - HEAP32[$50>>2] = $41; - $51 = ((($h)) + 16|0); + $22 = HEAP32[$2>>2]|0; + $23 = ((($2)) + 4|0); + $24 = HEAP32[$23>>2]|0; + $25 = ((($2)) + 8|0); + $26 = HEAP32[$25>>2]|0; + $27 = ((($2)) + 12|0); + $28 = HEAP32[$27>>2]|0; + $29 = ((($2)) + 16|0); + $30 = HEAP32[$29>>2]|0; + $31 = ((($2)) + 20|0); + $32 = HEAP32[$31>>2]|0; + $33 = ((($2)) + 24|0); + $34 = HEAP32[$33>>2]|0; + $35 = ((($2)) + 28|0); + $36 = HEAP32[$35>>2]|0; + $37 = ((($2)) + 32|0); + $38 = HEAP32[$37>>2]|0; + $39 = ((($2)) + 36|0); + $40 = HEAP32[$39>>2]|0; + $41 = (($3) - ($22))|0; + $42 = (($5) - ($24))|0; + $43 = (($7) - ($26))|0; + $44 = (($9) - ($28))|0; + $45 = (($11) - ($30))|0; + $46 = (($13) - ($32))|0; + $47 = (($15) - ($34))|0; + $48 = (($17) - ($36))|0; + $49 = (($19) - ($38))|0; + $50 = (($21) - ($40))|0; + HEAP32[$0>>2] = $41; + $51 = ((($0)) + 4|0); HEAP32[$51>>2] = $42; - $52 = ((($h)) + 20|0); + $52 = ((($0)) + 8|0); HEAP32[$52>>2] = $43; - $53 = ((($h)) + 24|0); + $53 = ((($0)) + 12|0); HEAP32[$53>>2] = $44; - $54 = ((($h)) + 28|0); + $54 = ((($0)) + 16|0); HEAP32[$54>>2] = $45; - $55 = ((($h)) + 32|0); + $55 = ((($0)) + 20|0); HEAP32[$55>>2] = $46; - $56 = ((($h)) + 36|0); + $56 = ((($0)) + 24|0); HEAP32[$56>>2] = $47; + $57 = ((($0)) + 28|0); + HEAP32[$57>>2] = $48; + $58 = ((($0)) + 32|0); + HEAP32[$58>>2] = $49; + $59 = ((($0)) + 36|0); + HEAP32[$59>>2] = $50; return; } -function _crypto_sign_ed25519_ref10_fe_tobytes($s,$h) { - $s = $s|0; - $h = $h|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0; +function _crypto_sign_ed25519_ref10_fe_tobytes($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0; + var $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0; + var $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0; + var $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0; + var $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0; + var $190 = 0, $191 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0; var $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0; var $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0; var $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0; var $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP32[$h>>2]|0; - $1 = ((($h)) + 4|0); $2 = HEAP32[$1>>2]|0; - $3 = ((($h)) + 8|0); + $3 = ((($1)) + 4|0); $4 = HEAP32[$3>>2]|0; - $5 = ((($h)) + 12|0); + $5 = ((($1)) + 8|0); $6 = HEAP32[$5>>2]|0; - $7 = ((($h)) + 16|0); + $7 = ((($1)) + 12|0); $8 = HEAP32[$7>>2]|0; - $9 = ((($h)) + 20|0); + $9 = ((($1)) + 16|0); $10 = HEAP32[$9>>2]|0; - $11 = ((($h)) + 24|0); + $11 = ((($1)) + 20|0); $12 = HEAP32[$11>>2]|0; - $13 = ((($h)) + 28|0); + $13 = ((($1)) + 24|0); $14 = HEAP32[$13>>2]|0; - $15 = ((($h)) + 32|0); + $15 = ((($1)) + 28|0); $16 = HEAP32[$15>>2]|0; - $17 = ((($h)) + 36|0); + $17 = ((($1)) + 32|0); $18 = HEAP32[$17>>2]|0; - $19 = ($18*19)|0; - $20 = (($19) + 16777216)|0; - $21 = $20 >> 25; - $22 = (($21) + ($0))|0; - $23 = $22 >> 26; + $19 = ((($1)) + 36|0); + $20 = HEAP32[$19>>2]|0; + $21 = ($20*19)|0; + $22 = (($21) + 16777216)|0; + $23 = $22 >> 25; $24 = (($23) + ($2))|0; - $25 = $24 >> 25; + $25 = $24 >> 26; $26 = (($25) + ($4))|0; - $27 = $26 >> 26; + $27 = $26 >> 25; $28 = (($27) + ($6))|0; - $29 = $28 >> 25; + $29 = $28 >> 26; $30 = (($29) + ($8))|0; - $31 = $30 >> 26; + $31 = $30 >> 25; $32 = (($31) + ($10))|0; - $33 = $32 >> 25; + $33 = $32 >> 26; $34 = (($33) + ($12))|0; - $35 = $34 >> 26; + $35 = $34 >> 25; $36 = (($35) + ($14))|0; - $37 = $36 >> 25; + $37 = $36 >> 26; $38 = (($37) + ($16))|0; - $39 = $38 >> 26; + $39 = $38 >> 25; $40 = (($39) + ($18))|0; - $41 = $40 >> 25; - $42 = ($41*19)|0; - $43 = (($42) + ($0))|0; - $44 = $43 >> 26; + $41 = $40 >> 26; + $42 = (($41) + ($20))|0; + $43 = $42 >> 25; + $44 = ($43*19)|0; $45 = (($44) + ($2))|0; - $46 = $44 << 26; - $47 = (($43) - ($46))|0; - $48 = $45 >> 25; - $49 = (($48) + ($4))|0; - $50 = $48 << 25; - $51 = (($45) - ($50))|0; - $52 = $49 >> 26; - $53 = (($52) + ($6))|0; - $54 = $52 << 26; - $55 = (($49) - ($54))|0; - $56 = $53 >> 25; - $57 = (($56) + ($8))|0; - $58 = $56 << 25; - $59 = (($53) - ($58))|0; - $60 = $57 >> 26; - $61 = (($60) + ($10))|0; - $62 = $60 << 26; - $63 = (($57) - ($62))|0; - $64 = $61 >> 25; - $65 = (($64) + ($12))|0; - $66 = $64 << 25; - $67 = (($61) - ($66))|0; - $68 = $65 >> 26; - $69 = (($68) + ($14))|0; - $70 = $68 << 26; - $71 = (($65) - ($70))|0; - $72 = $69 >> 25; - $73 = (($72) + ($16))|0; - $74 = $72 << 25; - $75 = (($69) - ($74))|0; - $76 = $73 >> 26; - $77 = (($76) + ($18))|0; - $78 = $76 << 26; - $79 = (($73) - ($78))|0; - $80 = $77 & 33554431; - $81 = $47&255; - HEAP8[$s>>0] = $81; - $82 = $47 >>> 8; - $83 = $82&255; - $84 = ((($s)) + 1|0); - HEAP8[$84>>0] = $83; - $85 = $47 >>> 16; - $86 = $85&255; - $87 = ((($s)) + 2|0); - HEAP8[$87>>0] = $86; - $88 = $47 >>> 24; - $89 = $51 << 2; - $90 = $89 | $88; - $91 = $90&255; - $92 = ((($s)) + 3|0); - HEAP8[$92>>0] = $91; - $93 = $51 >>> 6; - $94 = $93&255; - $95 = ((($s)) + 4|0); - HEAP8[$95>>0] = $94; - $96 = $51 >>> 14; - $97 = $96&255; - $98 = ((($s)) + 5|0); - HEAP8[$98>>0] = $97; - $99 = $51 >>> 22; - $100 = $55 << 3; - $101 = $100 | $99; - $102 = $101&255; - $103 = ((($s)) + 6|0); - HEAP8[$103>>0] = $102; - $104 = $55 >>> 5; - $105 = $104&255; - $106 = ((($s)) + 7|0); - HEAP8[$106>>0] = $105; - $107 = $55 >>> 13; - $108 = $107&255; - $109 = ((($s)) + 8|0); - HEAP8[$109>>0] = $108; - $110 = $55 >>> 21; - $111 = $59 << 5; - $112 = $111 | $110; - $113 = $112&255; - $114 = ((($s)) + 9|0); - HEAP8[$114>>0] = $113; - $115 = $59 >>> 3; - $116 = $115&255; - $117 = ((($s)) + 10|0); - HEAP8[$117>>0] = $116; - $118 = $59 >>> 11; - $119 = $118&255; - $120 = ((($s)) + 11|0); - HEAP8[$120>>0] = $119; - $121 = $59 >>> 19; - $122 = $63 << 6; - $123 = $122 | $121; - $124 = $123&255; - $125 = ((($s)) + 12|0); - HEAP8[$125>>0] = $124; - $126 = $63 >>> 2; - $127 = $126&255; - $128 = ((($s)) + 13|0); - HEAP8[$128>>0] = $127; - $129 = $63 >>> 10; - $130 = $129&255; - $131 = ((($s)) + 14|0); - HEAP8[$131>>0] = $130; - $132 = $63 >>> 18; - $133 = $132&255; - $134 = ((($s)) + 15|0); - HEAP8[$134>>0] = $133; - $135 = $67&255; - $136 = ((($s)) + 16|0); + $46 = $45 >> 26; + $47 = (($46) + ($4))|0; + $48 = $46 << 26; + $49 = (($45) - ($48))|0; + $50 = $47 >> 25; + $51 = (($50) + ($6))|0; + $52 = $50 << 25; + $53 = (($47) - ($52))|0; + $54 = $51 >> 26; + $55 = (($54) + ($8))|0; + $56 = $54 << 26; + $57 = (($51) - ($56))|0; + $58 = $55 >> 25; + $59 = (($58) + ($10))|0; + $60 = $58 << 25; + $61 = (($55) - ($60))|0; + $62 = $59 >> 26; + $63 = (($62) + ($12))|0; + $64 = $62 << 26; + $65 = (($59) - ($64))|0; + $66 = $63 >> 25; + $67 = (($66) + ($14))|0; + $68 = $66 << 25; + $69 = (($63) - ($68))|0; + $70 = $67 >> 26; + $71 = (($70) + ($16))|0; + $72 = $70 << 26; + $73 = (($67) - ($72))|0; + $74 = $71 >> 25; + $75 = (($74) + ($18))|0; + $76 = $74 << 25; + $77 = (($71) - ($76))|0; + $78 = $75 >> 26; + $79 = (($78) + ($20))|0; + $80 = $78 << 26; + $81 = (($75) - ($80))|0; + $82 = $79 & 33554431; + $83 = $49&255; + HEAP8[$0>>0] = $83; + $84 = $49 >>> 8; + $85 = $84&255; + $86 = ((($0)) + 1|0); + HEAP8[$86>>0] = $85; + $87 = $49 >>> 16; + $88 = $87&255; + $89 = ((($0)) + 2|0); + HEAP8[$89>>0] = $88; + $90 = $49 >>> 24; + $91 = $53 << 2; + $92 = $91 | $90; + $93 = $92&255; + $94 = ((($0)) + 3|0); + HEAP8[$94>>0] = $93; + $95 = $53 >>> 6; + $96 = $95&255; + $97 = ((($0)) + 4|0); + HEAP8[$97>>0] = $96; + $98 = $53 >>> 14; + $99 = $98&255; + $100 = ((($0)) + 5|0); + HEAP8[$100>>0] = $99; + $101 = $53 >>> 22; + $102 = $57 << 3; + $103 = $102 | $101; + $104 = $103&255; + $105 = ((($0)) + 6|0); + HEAP8[$105>>0] = $104; + $106 = $57 >>> 5; + $107 = $106&255; + $108 = ((($0)) + 7|0); + HEAP8[$108>>0] = $107; + $109 = $57 >>> 13; + $110 = $109&255; + $111 = ((($0)) + 8|0); + HEAP8[$111>>0] = $110; + $112 = $57 >>> 21; + $113 = $61 << 5; + $114 = $113 | $112; + $115 = $114&255; + $116 = ((($0)) + 9|0); + HEAP8[$116>>0] = $115; + $117 = $61 >>> 3; + $118 = $117&255; + $119 = ((($0)) + 10|0); + HEAP8[$119>>0] = $118; + $120 = $61 >>> 11; + $121 = $120&255; + $122 = ((($0)) + 11|0); + HEAP8[$122>>0] = $121; + $123 = $61 >>> 19; + $124 = $65 << 6; + $125 = $124 | $123; + $126 = $125&255; + $127 = ((($0)) + 12|0); + HEAP8[$127>>0] = $126; + $128 = $65 >>> 2; + $129 = $128&255; + $130 = ((($0)) + 13|0); + HEAP8[$130>>0] = $129; + $131 = $65 >>> 10; + $132 = $131&255; + $133 = ((($0)) + 14|0); + HEAP8[$133>>0] = $132; + $134 = $65 >>> 18; + $135 = $134&255; + $136 = ((($0)) + 15|0); HEAP8[$136>>0] = $135; - $137 = $67 >>> 8; - $138 = $137&255; - $139 = ((($s)) + 17|0); - HEAP8[$139>>0] = $138; - $140 = $67 >>> 16; - $141 = $140&255; - $142 = ((($s)) + 18|0); - HEAP8[$142>>0] = $141; - $143 = $67 >>> 24; - $144 = $71 << 1; - $145 = $144 | $143; - $146 = $145&255; - $147 = ((($s)) + 19|0); - HEAP8[$147>>0] = $146; - $148 = $71 >>> 7; - $149 = $148&255; - $150 = ((($s)) + 20|0); - HEAP8[$150>>0] = $149; - $151 = $71 >>> 15; - $152 = $151&255; - $153 = ((($s)) + 21|0); - HEAP8[$153>>0] = $152; - $154 = $71 >>> 23; - $155 = $75 << 3; - $156 = $155 | $154; - $157 = $156&255; - $158 = ((($s)) + 22|0); - HEAP8[$158>>0] = $157; - $159 = $75 >>> 5; - $160 = $159&255; - $161 = ((($s)) + 23|0); - HEAP8[$161>>0] = $160; - $162 = $75 >>> 13; - $163 = $162&255; - $164 = ((($s)) + 24|0); - HEAP8[$164>>0] = $163; - $165 = $75 >>> 21; - $166 = $79 << 4; - $167 = $166 | $165; - $168 = $167&255; - $169 = ((($s)) + 25|0); - HEAP8[$169>>0] = $168; - $170 = $79 >>> 4; - $171 = $170&255; - $172 = ((($s)) + 26|0); - HEAP8[$172>>0] = $171; - $173 = $79 >>> 12; - $174 = $173&255; - $175 = ((($s)) + 27|0); - HEAP8[$175>>0] = $174; - $176 = $79 >>> 20; - $177 = $80 << 6; - $178 = $176 | $177; - $179 = $178&255; - $180 = ((($s)) + 28|0); - HEAP8[$180>>0] = $179; - $181 = $77 >>> 2; - $182 = $181&255; - $183 = ((($s)) + 29|0); - HEAP8[$183>>0] = $182; - $184 = $77 >>> 10; - $185 = $184&255; - $186 = ((($s)) + 30|0); - HEAP8[$186>>0] = $185; - $187 = $80 >>> 18; - $188 = $187&255; - $189 = ((($s)) + 31|0); - HEAP8[$189>>0] = $188; + $137 = $69&255; + $138 = ((($0)) + 16|0); + HEAP8[$138>>0] = $137; + $139 = $69 >>> 8; + $140 = $139&255; + $141 = ((($0)) + 17|0); + HEAP8[$141>>0] = $140; + $142 = $69 >>> 16; + $143 = $142&255; + $144 = ((($0)) + 18|0); + HEAP8[$144>>0] = $143; + $145 = $69 >>> 24; + $146 = $73 << 1; + $147 = $146 | $145; + $148 = $147&255; + $149 = ((($0)) + 19|0); + HEAP8[$149>>0] = $148; + $150 = $73 >>> 7; + $151 = $150&255; + $152 = ((($0)) + 20|0); + HEAP8[$152>>0] = $151; + $153 = $73 >>> 15; + $154 = $153&255; + $155 = ((($0)) + 21|0); + HEAP8[$155>>0] = $154; + $156 = $73 >>> 23; + $157 = $77 << 3; + $158 = $157 | $156; + $159 = $158&255; + $160 = ((($0)) + 22|0); + HEAP8[$160>>0] = $159; + $161 = $77 >>> 5; + $162 = $161&255; + $163 = ((($0)) + 23|0); + HEAP8[$163>>0] = $162; + $164 = $77 >>> 13; + $165 = $164&255; + $166 = ((($0)) + 24|0); + HEAP8[$166>>0] = $165; + $167 = $77 >>> 21; + $168 = $81 << 4; + $169 = $168 | $167; + $170 = $169&255; + $171 = ((($0)) + 25|0); + HEAP8[$171>>0] = $170; + $172 = $81 >>> 4; + $173 = $172&255; + $174 = ((($0)) + 26|0); + HEAP8[$174>>0] = $173; + $175 = $81 >>> 12; + $176 = $175&255; + $177 = ((($0)) + 27|0); + HEAP8[$177>>0] = $176; + $178 = $81 >>> 20; + $179 = $82 << 6; + $180 = $178 | $179; + $181 = $180&255; + $182 = ((($0)) + 28|0); + HEAP8[$182>>0] = $181; + $183 = $79 >>> 2; + $184 = $183&255; + $185 = ((($0)) + 29|0); + HEAP8[$185>>0] = $184; + $186 = $79 >>> 10; + $187 = $186&255; + $188 = ((($0)) + 30|0); + HEAP8[$188>>0] = $187; + $189 = $82 >>> 18; + $190 = $189&255; + $191 = ((($0)) + 31|0); + HEAP8[$191>>0] = $190; return; } -function _crypto_sign_ed25519_ref10_ge_add($r,$p,$q) { - $r = $r|0; - $p = $p|0; - $q = $q|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $t0 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_add($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 48|0; - $t0 = sp; - $0 = ((($p)) + 40|0); - _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); - $1 = ((($r)) + 40|0); - _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); - $2 = ((($r)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($2,$r,$q); - $3 = ((($q)) + 40|0); - _crypto_sign_ed25519_ref10_fe_mul($1,$1,$3); - $4 = ((($r)) + 120|0); - $5 = ((($q)) + 120|0); - $6 = ((($p)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); - $7 = ((($p)) + 80|0); - $8 = ((($q)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($r,$7,$8); - _crypto_sign_ed25519_ref10_fe_add($t0,$r,$r); - _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); - _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); - _crypto_sign_ed25519_ref10_fe_add($2,$t0,$4); - _crypto_sign_ed25519_ref10_fe_sub($4,$t0,$4); + $3 = sp; + $4 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($0,$4,$1); + $5 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($5,$4,$1); + $6 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($6,$0,$2); + $7 = ((($2)) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($5,$5,$7); + $8 = ((($0)) + 120|0); + $9 = ((($2)) + 120|0); + $10 = ((($1)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($8,$9,$10); + $11 = ((($1)) + 80|0); + $12 = ((($2)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($0,$11,$12); + _crypto_sign_ed25519_ref10_fe_add($3,$0,$0); + _crypto_sign_ed25519_ref10_fe_sub($0,$6,$5); + _crypto_sign_ed25519_ref10_fe_add($5,$6,$5); + _crypto_sign_ed25519_ref10_fe_add($6,$3,$8); + _crypto_sign_ed25519_ref10_fe_sub($8,$3,$8); STACKTOP = sp;return; } -function _crypto_sign_ed25519_ref10_ge_double_scalarmult_vartime($r,$a,$A,$b) { - $r = $r|0; - $a = $a|0; - $A = $A|0; - $b = $b|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $5 = 0, $6 = 0, $7 = 0; - var $8 = 0, $9 = 0, $A2 = 0, $Ai = 0, $aslide = 0, $bslide = 0, $i$0$lcssa = 0, $i$02 = 0, $i$11 = 0, $t = 0, $u = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_double_scalarmult_vartime($0,$1,$2,$3) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + var $$0$lcssa = 0, $$022 = 0, $$121 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; + var $27 = 0, $28 = 0, $29 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0; + var $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 2272|0; - $aslide = sp + 2016|0; - $bslide = sp + 1760|0; - $Ai = sp + 480|0; - $t = sp + 320|0; - $u = sp + 160|0; - $A2 = sp; - _slide($aslide,$a); - _slide($bslide,$b); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($Ai,$A); - _crypto_sign_ed25519_ref10_ge_p3_dbl($t,$A); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($A2,$t); - _crypto_sign_ed25519_ref10_ge_add($t,$A2,$Ai); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $0 = ((($Ai)) + 160|0); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($0,$u); - _crypto_sign_ed25519_ref10_ge_add($t,$A2,$0); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $1 = ((($Ai)) + 320|0); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($1,$u); - _crypto_sign_ed25519_ref10_ge_add($t,$A2,$1); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $2 = ((($Ai)) + 480|0); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($2,$u); - _crypto_sign_ed25519_ref10_ge_add($t,$A2,$2); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $3 = ((($Ai)) + 640|0); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($3,$u); - _crypto_sign_ed25519_ref10_ge_add($t,$A2,$3); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $4 = ((($Ai)) + 800|0); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($4,$u); - _crypto_sign_ed25519_ref10_ge_add($t,$A2,$4); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $5 = ((($Ai)) + 960|0); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($5,$u); - _crypto_sign_ed25519_ref10_ge_add($t,$A2,$5); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $6 = ((($Ai)) + 1120|0); - _crypto_sign_ed25519_ref10_ge_p3_to_cached($6,$u); - _crypto_sign_ed25519_ref10_ge_p2_0($r); - $i$02 = 255; + $4 = sp + 2016|0; + $5 = sp + 1760|0; + $6 = sp + 480|0; + $7 = sp + 320|0; + $8 = sp + 160|0; + $9 = sp; + _slide($4,$1); + _slide($5,$3); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($6,$2); + _crypto_sign_ed25519_ref10_ge_p3_dbl($7,$2); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($9,$7); + _crypto_sign_ed25519_ref10_ge_add($7,$9,$6); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $10 = ((($6)) + 160|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($10,$8); + _crypto_sign_ed25519_ref10_ge_add($7,$9,$10); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $11 = ((($6)) + 320|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($11,$8); + _crypto_sign_ed25519_ref10_ge_add($7,$9,$11); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $12 = ((($6)) + 480|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($12,$8); + _crypto_sign_ed25519_ref10_ge_add($7,$9,$12); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $13 = ((($6)) + 640|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($13,$8); + _crypto_sign_ed25519_ref10_ge_add($7,$9,$13); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $14 = ((($6)) + 800|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($14,$8); + _crypto_sign_ed25519_ref10_ge_add($7,$9,$14); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $15 = ((($6)) + 960|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($15,$8); + _crypto_sign_ed25519_ref10_ge_add($7,$9,$15); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $16 = ((($6)) + 1120|0); + _crypto_sign_ed25519_ref10_ge_p3_to_cached($16,$8); + _crypto_sign_ed25519_ref10_ge_p2_0($0); + $$022 = 255; while(1) { - $7 = (($aslide) + ($i$02)|0); - $8 = HEAP8[$7>>0]|0; - $9 = ($8<<24>>24)==(0); - if (!($9)) { - $i$0$lcssa = $i$02; + $17 = (($4) + ($$022)|0); + $18 = HEAP8[$17>>0]|0; + $19 = ($18<<24>>24)==(0); + if (!($19)) { + $$0$lcssa = $$022; break; } - $10 = (($bslide) + ($i$02)|0); - $11 = HEAP8[$10>>0]|0; - $12 = ($11<<24>>24)==(0); - if (!($12)) { - $i$0$lcssa = $i$02; + $20 = (($5) + ($$022)|0); + $21 = HEAP8[$20>>0]|0; + $22 = ($21<<24>>24)==(0); + if (!($22)) { + $$0$lcssa = $$022; break; } - $14 = (($i$02) + -1)|0; - $15 = ($i$02|0)>(0); - if ($15) { - $i$02 = $14; + $24 = (($$022) + -1)|0; + $25 = ($$022|0)>(0); + if ($25) { + $$022 = $24; } else { - $i$0$lcssa = $14; + $$0$lcssa = $24; break; } } - $13 = ($i$0$lcssa|0)>(-1); - if ($13) { - $i$11 = $i$0$lcssa; + $23 = ($$0$lcssa|0)>(-1); + if ($23) { + $$121 = $$0$lcssa; } else { STACKTOP = sp;return; } while(1) { - _crypto_sign_ed25519_ref10_ge_p2_dbl($t,$r); - $16 = (($aslide) + ($i$11)|0); - $17 = HEAP8[$16>>0]|0; - $18 = ($17<<24>>24)>(0); - if ($18) { - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $19 = HEAP8[$16>>0]|0; - $20 = $19 << 24 >> 24; - $21 = (($20|0) / 2)&-1; - $22 = (($Ai) + (($21*160)|0)|0); - _crypto_sign_ed25519_ref10_ge_add($t,$u,$22); + _crypto_sign_ed25519_ref10_ge_p2_dbl($7,$0); + $26 = (($4) + ($$121)|0); + $27 = HEAP8[$26>>0]|0; + $28 = ($27<<24>>24)>(0); + if ($28) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $29 = HEAP8[$26>>0]|0; + $30 = (($29<<24>>24) / 2)&-1; + $31 = $30 << 24 >> 24; + $32 = (($6) + (($31*160)|0)|0); + _crypto_sign_ed25519_ref10_ge_add($7,$8,$32); } else { - $23 = ($17<<24>>24)<(0); - if ($23) { - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $24 = HEAP8[$16>>0]|0; - $25 = $24 << 24 >> 24; - $26 = (($25|0) / -2)&-1; - $27 = (($Ai) + (($26*160)|0)|0); - _crypto_sign_ed25519_ref10_ge_sub($t,$u,$27); + $33 = ($27<<24>>24)<(0); + if ($33) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $34 = HEAP8[$26>>0]|0; + $35 = (($34<<24>>24) / -2)&-1; + $36 = $35 << 24 >> 24; + $37 = (($6) + (($36*160)|0)|0); + _crypto_sign_ed25519_ref10_ge_sub($7,$8,$37); } } - $28 = (($bslide) + ($i$11)|0); - $29 = HEAP8[$28>>0]|0; - $30 = ($29<<24>>24)>(0); - if ($30) { - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $31 = HEAP8[$28>>0]|0; - $32 = $31 << 24 >> 24; - $33 = (($32|0) / 2)&-1; - $34 = (712 + (($33*120)|0)|0); - _crypto_sign_ed25519_ref10_ge_madd($t,$u,$34); + $38 = (($5) + ($$121)|0); + $39 = HEAP8[$38>>0]|0; + $40 = ($39<<24>>24)>(0); + if ($40) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $41 = HEAP8[$38>>0]|0; + $42 = (($41<<24>>24) / 2)&-1; + $43 = $42 << 24 >> 24; + $44 = (712 + (($43*120)|0)|0); + _crypto_sign_ed25519_ref10_ge_madd($7,$8,$44); } else { - $35 = ($29<<24>>24)<(0); - if ($35) { - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($u,$t); - $36 = HEAP8[$28>>0]|0; - $37 = $36 << 24 >> 24; - $38 = (($37|0) / -2)&-1; - $39 = (712 + (($38*120)|0)|0); - _crypto_sign_ed25519_ref10_ge_msub($t,$u,$39); + $45 = ($39<<24>>24)<(0); + if ($45) { + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($8,$7); + $46 = HEAP8[$38>>0]|0; + $47 = (($46<<24>>24) / -2)&-1; + $48 = $47 << 24 >> 24; + $49 = (712 + (($48*120)|0)|0); + _crypto_sign_ed25519_ref10_ge_msub($7,$8,$49); } } - _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($r,$t); - $40 = (($i$11) + -1)|0; - $41 = ($i$11|0)>(0); - if ($41) { - $i$11 = $40; + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($0,$7); + $50 = (($$121) + -1)|0; + $51 = ($$121|0)>(0); + if ($51) { + $$121 = $50; } else { break; } } STACKTOP = sp;return; } -function _slide($r,$a) { - $r = $r|0; - $a = $a|0; - var $$lcssa = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0; - var $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $b$03 = 0, $exitcond = 0, $exitcond9 = 0; - var $i$07 = 0, $i$14 = 0, $k$02 = 0, label = 0, sp = 0; +function _slide($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$05559 = 0, $$05663 = 0, $$058 = 0, $$160 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0; + var $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0; + var $exitcond = 0, $exitcond65 = 0, label = 0, sp = 0; sp = STACKTOP; - $i$07 = 0; + $$05663 = 0; while(1) { - $0 = $i$07 >> 3; - $1 = (($a) + ($0)|0); - $2 = HEAP8[$1>>0]|0; - $3 = $2&255; - $4 = $i$07 & 7; - $5 = $3 >>> $4; - $6 = $5 & 1; - $7 = $6&255; - $8 = (($r) + ($i$07)|0); - HEAP8[$8>>0] = $7; - $9 = (($i$07) + 1)|0; - $exitcond9 = ($9|0)==(256); - if ($exitcond9) { - $i$14 = 0; + $2 = $$05663 >> 3; + $3 = (($1) + ($2)|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = $$05663 & 7; + $7 = $5 >>> $6; + $8 = $7 & 1; + $9 = $8&255; + $10 = (($0) + ($$05663)|0); + HEAP8[$10>>0] = $9; + $11 = (($$05663) + 1)|0; + $exitcond65 = ($11|0)==(256); + if ($exitcond65) { + $$160 = 0; break; } else { - $i$07 = $9; + $$05663 = $11; } } while(1) { - $10 = (($r) + ($i$14)|0); - $11 = HEAP8[$10>>0]|0; - $12 = ($11<<24>>24)==(0); + $12 = (($0) + ($$160)|0); + $13 = HEAP8[$12>>0]|0; + $14 = ($13<<24>>24)==(0); L5: do { - if (!($12)) { - $b$03 = 1; + if (!($14)) { + $$05559 = 1; while(1) { - $13 = (($b$03) + ($i$14))|0; - $14 = ($13|0)<(256); - if (!($14)) { + $15 = (($$05559) + ($$160))|0; + $16 = ($15|0)<(256); + if (!($16)) { break L5; } - $15 = (($r) + ($13)|0); - $16 = HEAP8[$15>>0]|0; - $17 = ($16<<24>>24)==(0); + $17 = (($0) + ($15)|0); + $18 = HEAP8[$17>>0]|0; + $19 = ($18<<24>>24)==(0); L9: do { - if (!($17)) { - $18 = HEAP8[$10>>0]|0; - $19 = $18 << 24 >> 24; - $20 = $16 << 24 >> 24; - $21 = $20 << $b$03; - $22 = (($19) + ($21))|0; - $23 = ($22|0)<(16); - if ($23) { - $24 = $22&255; - HEAP8[$10>>0] = $24; - HEAP8[$15>>0] = 0; + if (!($19)) { + $20 = HEAP8[$12>>0]|0; + $21 = $20 << 24 >> 24; + $22 = $18 << 24 >> 24; + $23 = $22 << $$05559; + $24 = (($21) + ($23))|0; + $25 = ($24|0)<(16); + if ($25) { + $26 = $24&255; + HEAP8[$12>>0] = $26; + HEAP8[$17>>0] = 0; break; } - $25 = (($19) - ($21))|0; - $26 = ($25|0)>(-16); - if (!($26)) { + $27 = (($21) - ($23))|0; + $28 = ($27|0)>(-16); + if (!($28)) { break L5; } - $27 = $25&255; - HEAP8[$10>>0] = $27; - $k$02 = $13; + $29 = $27&255; + HEAP8[$12>>0] = $29; + $$058 = $15; while(1) { - $28 = (($r) + ($k$02)|0); - $29 = HEAP8[$28>>0]|0; - $30 = ($29<<24>>24)==(0); - if ($30) { - $$lcssa = $28; + $30 = (($0) + ($$058)|0); + $31 = HEAP8[$30>>0]|0; + $32 = ($31<<24>>24)==(0); + if ($32) { break; } - HEAP8[$28>>0] = 0; - $31 = (($k$02) + 1)|0; - $32 = ($31|0)<(256); - if ($32) { - $k$02 = $31; + HEAP8[$30>>0] = 0; + $33 = (($$058) + 1)|0; + $34 = ($33|0)<(256); + if ($34) { + $$058 = $33; } else { break L9; } } - HEAP8[$$lcssa>>0] = 1; + HEAP8[$30>>0] = 1; } } while(0); - $33 = (($b$03) + 1)|0; - $34 = ($33|0)<(7); - if ($34) { - $b$03 = $33; + $35 = (($$05559) + 1)|0; + $36 = ($35|0)<(7); + if ($36) { + $$05559 = $35; } else { break; } } } } while(0); - $35 = (($i$14) + 1)|0; - $exitcond = ($35|0)==(256); + $37 = (($$160) + 1)|0; + $exitcond = ($37|0)==(256); if ($exitcond) { break; } else { - $i$14 = $35; + $$160 = $37; } } return; } -function _crypto_sign_ed25519_ref10_ge_frombytes_negate_vartime($h,$s) { - $h = $h|0; - $s = $s|0; - var $$0 = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $check = 0, $u = 0, $v = 0, $v3 = 0, $vxx = 0, label = 0; +function _crypto_sign_ed25519_ref10_ge_frombytes_negate_vartime($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$0 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0; var sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 208|0; - $u = sp + 160|0; - $v = sp + 120|0; - $v3 = sp + 80|0; - $vxx = sp + 40|0; - $check = sp; - $0 = ((($h)) + 40|0); - _crypto_sign_ed25519_ref10_fe_frombytes($0,$s); - $1 = ((($h)) + 80|0); - _crypto_sign_ed25519_ref10_fe_1($1); - _crypto_sign_ed25519_ref10_fe_sq($u,$0); - _crypto_sign_ed25519_ref10_fe_mul($v,$u,1672); - _crypto_sign_ed25519_ref10_fe_sub($u,$u,$1); - _crypto_sign_ed25519_ref10_fe_add($v,$v,$1); - _crypto_sign_ed25519_ref10_fe_sq($v3,$v); - _crypto_sign_ed25519_ref10_fe_mul($v3,$v3,$v); - _crypto_sign_ed25519_ref10_fe_sq($h,$v3); - _crypto_sign_ed25519_ref10_fe_mul($h,$h,$v); - _crypto_sign_ed25519_ref10_fe_mul($h,$h,$u); - _crypto_sign_ed25519_ref10_fe_pow22523($h,$h); - _crypto_sign_ed25519_ref10_fe_mul($h,$h,$v3); - _crypto_sign_ed25519_ref10_fe_mul($h,$h,$u); - _crypto_sign_ed25519_ref10_fe_sq($vxx,$h); - _crypto_sign_ed25519_ref10_fe_mul($vxx,$vxx,$v); - _crypto_sign_ed25519_ref10_fe_sub($check,$vxx,$u); - $2 = (_crypto_sign_ed25519_ref10_fe_isnonzero($check)|0); - $3 = ($2|0)==(0); + $2 = sp + 160|0; + $3 = sp + 120|0; + $4 = sp + 80|0; + $5 = sp + 40|0; + $6 = sp; + $7 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_frombytes($7,$1); + $8 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_1($8); + _crypto_sign_ed25519_ref10_fe_sq($2,$7); + _crypto_sign_ed25519_ref10_fe_mul($3,$2,1672); + _crypto_sign_ed25519_ref10_fe_sub($2,$2,$8); + _crypto_sign_ed25519_ref10_fe_add($3,$3,$8); + _crypto_sign_ed25519_ref10_fe_sq($4,$3); + _crypto_sign_ed25519_ref10_fe_mul($4,$4,$3); + _crypto_sign_ed25519_ref10_fe_sq($0,$4); + _crypto_sign_ed25519_ref10_fe_mul($0,$0,$3); + _crypto_sign_ed25519_ref10_fe_mul($0,$0,$2); + _crypto_sign_ed25519_ref10_fe_pow22523($0,$0); + _crypto_sign_ed25519_ref10_fe_mul($0,$0,$4); + _crypto_sign_ed25519_ref10_fe_mul($0,$0,$2); + _crypto_sign_ed25519_ref10_fe_sq($5,$0); + _crypto_sign_ed25519_ref10_fe_mul($5,$5,$3); + _crypto_sign_ed25519_ref10_fe_sub($6,$5,$2); + $9 = (_crypto_sign_ed25519_ref10_fe_isnonzero($6)|0); + $10 = ($9|0)==(0); do { - if (!($3)) { - _crypto_sign_ed25519_ref10_fe_add($check,$vxx,$u); - $4 = (_crypto_sign_ed25519_ref10_fe_isnonzero($check)|0); - $5 = ($4|0)==(0); - if ($5) { - _crypto_sign_ed25519_ref10_fe_mul($h,$h,1712); + if (!($10)) { + _crypto_sign_ed25519_ref10_fe_add($6,$5,$2); + $11 = (_crypto_sign_ed25519_ref10_fe_isnonzero($6)|0); + $12 = ($11|0)==(0); + if ($12) { + _crypto_sign_ed25519_ref10_fe_mul($0,$0,1712); break; } else { $$0 = -1; @@ -15098,623 +11568,619 @@ function _crypto_sign_ed25519_ref10_ge_frombytes_negate_vartime($h,$s) { } } } while(0); - $6 = (_crypto_sign_ed25519_ref10_fe_isnegative($h)|0); - $7 = ((($s)) + 31|0); - $8 = HEAP8[$7>>0]|0; - $9 = $8&255; - $10 = $9 >>> 7; - $11 = ($6|0)==($10|0); - if ($11) { - _crypto_sign_ed25519_ref10_fe_neg($h,$h); + $13 = (_crypto_sign_ed25519_ref10_fe_isnegative($0)|0); + $14 = ((($1)) + 31|0); + $15 = HEAP8[$14>>0]|0; + $16 = $15&255; + $17 = $16 >>> 7; + $18 = ($13|0)==($17|0); + if ($18) { + _crypto_sign_ed25519_ref10_fe_neg($0,$0); } - $12 = ((($h)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($12,$h,$0); + $19 = ((($0)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($19,$0,$7); $$0 = 0; STACKTOP = sp;return ($$0|0); } -function _crypto_sign_ed25519_ref10_ge_madd($r,$p,$q) { - $r = $r|0; - $p = $p|0; - $q = $q|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $t0 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_madd($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 48|0; - $t0 = sp; - $0 = ((($p)) + 40|0); - _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); - $1 = ((($r)) + 40|0); - _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); - $2 = ((($r)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($2,$r,$q); - $3 = ((($q)) + 40|0); - _crypto_sign_ed25519_ref10_fe_mul($1,$1,$3); - $4 = ((($r)) + 120|0); - $5 = ((($q)) + 80|0); - $6 = ((($p)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); - $7 = ((($p)) + 80|0); - _crypto_sign_ed25519_ref10_fe_add($t0,$7,$7); - _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); - _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); - _crypto_sign_ed25519_ref10_fe_add($2,$t0,$4); - _crypto_sign_ed25519_ref10_fe_sub($4,$t0,$4); + $3 = sp; + $4 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($0,$4,$1); + $5 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($5,$4,$1); + $6 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($6,$0,$2); + $7 = ((($2)) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($5,$5,$7); + $8 = ((($0)) + 120|0); + $9 = ((($2)) + 80|0); + $10 = ((($1)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($8,$9,$10); + $11 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_add($3,$11,$11); + _crypto_sign_ed25519_ref10_fe_sub($0,$6,$5); + _crypto_sign_ed25519_ref10_fe_add($5,$6,$5); + _crypto_sign_ed25519_ref10_fe_add($6,$3,$8); + _crypto_sign_ed25519_ref10_fe_sub($8,$3,$8); STACKTOP = sp;return; } -function _crypto_sign_ed25519_ref10_ge_msub($r,$p,$q) { - $r = $r|0; - $p = $p|0; - $q = $q|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $t0 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_msub($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 48|0; - $t0 = sp; - $0 = ((($p)) + 40|0); - _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); - $1 = ((($r)) + 40|0); - _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); - $2 = ((($r)) + 80|0); - $3 = ((($q)) + 40|0); - _crypto_sign_ed25519_ref10_fe_mul($2,$r,$3); - _crypto_sign_ed25519_ref10_fe_mul($1,$1,$q); - $4 = ((($r)) + 120|0); - $5 = ((($q)) + 80|0); - $6 = ((($p)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); - $7 = ((($p)) + 80|0); - _crypto_sign_ed25519_ref10_fe_add($t0,$7,$7); - _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); - _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); - _crypto_sign_ed25519_ref10_fe_sub($2,$t0,$4); - _crypto_sign_ed25519_ref10_fe_add($4,$t0,$4); + $3 = sp; + $4 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($0,$4,$1); + $5 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($5,$4,$1); + $6 = ((($0)) + 80|0); + $7 = ((($2)) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($6,$0,$7); + _crypto_sign_ed25519_ref10_fe_mul($5,$5,$2); + $8 = ((($0)) + 120|0); + $9 = ((($2)) + 80|0); + $10 = ((($1)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($8,$9,$10); + $11 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_add($3,$11,$11); + _crypto_sign_ed25519_ref10_fe_sub($0,$6,$5); + _crypto_sign_ed25519_ref10_fe_add($5,$6,$5); + _crypto_sign_ed25519_ref10_fe_sub($6,$3,$8); + _crypto_sign_ed25519_ref10_fe_add($8,$3,$8); STACKTOP = sp;return; } -function _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($r,$p) { - $r = $r|0; - $p = $p|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = ((($p)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($r,$p,$0); - $1 = ((($r)) + 40|0); - $2 = ((($p)) + 40|0); - $3 = ((($p)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($1,$2,$3); - $4 = ((($r)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($4,$3,$0); + $2 = ((($1)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($0,$1,$2); + $3 = ((($0)) + 40|0); + $4 = ((($1)) + 40|0); + $5 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($3,$4,$5); + $6 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($6,$5,$2); return; } -function _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($r,$p) { - $r = $r|0; - $p = $p|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = ((($p)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($r,$p,$0); - $1 = ((($r)) + 40|0); - $2 = ((($p)) + 40|0); - $3 = ((($p)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($1,$2,$3); - $4 = ((($r)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($4,$3,$0); - $5 = ((($r)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($5,$p,$2); + $2 = ((($1)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($0,$1,$2); + $3 = ((($0)) + 40|0); + $4 = ((($1)) + 40|0); + $5 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($3,$4,$5); + $6 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($6,$5,$2); + $7 = ((($0)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($7,$1,$4); return; } -function _crypto_sign_ed25519_ref10_ge_p2_0($h) { - $h = $h|0; - var $0 = 0, $1 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_p2_0($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, label = 0, sp = 0; sp = STACKTOP; - _crypto_sign_ed25519_ref10_fe_0($h); - $0 = ((($h)) + 40|0); - _crypto_sign_ed25519_ref10_fe_1($0); - $1 = ((($h)) + 80|0); + _crypto_sign_ed25519_ref10_fe_0($0); + $1 = ((($0)) + 40|0); _crypto_sign_ed25519_ref10_fe_1($1); + $2 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_1($2); return; } -function _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$p) { - $r = $r|0; - $p = $p|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $t0 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_p2_dbl($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 48|0; - $t0 = sp; - _crypto_sign_ed25519_ref10_fe_sq($r,$p); - $0 = ((($r)) + 80|0); - $1 = ((($p)) + 40|0); + $2 = sp; _crypto_sign_ed25519_ref10_fe_sq($0,$1); - $2 = ((($r)) + 120|0); - $3 = ((($p)) + 80|0); - _crypto_sign_ed25519_ref10_fe_sq2($2,$3); - $4 = ((($r)) + 40|0); - _crypto_sign_ed25519_ref10_fe_add($4,$p,$1); - _crypto_sign_ed25519_ref10_fe_sq($t0,$4); - _crypto_sign_ed25519_ref10_fe_add($4,$0,$r); - _crypto_sign_ed25519_ref10_fe_sub($0,$0,$r); - _crypto_sign_ed25519_ref10_fe_sub($r,$t0,$4); - _crypto_sign_ed25519_ref10_fe_sub($2,$2,$0); + $3 = ((($0)) + 80|0); + $4 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_sq($3,$4); + $5 = ((($0)) + 120|0); + $6 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_sq2($5,$6); + $7 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($7,$1,$4); + _crypto_sign_ed25519_ref10_fe_sq($2,$7); + _crypto_sign_ed25519_ref10_fe_add($7,$3,$0); + _crypto_sign_ed25519_ref10_fe_sub($3,$3,$0); + _crypto_sign_ed25519_ref10_fe_sub($0,$2,$7); + _crypto_sign_ed25519_ref10_fe_sub($5,$5,$3); STACKTOP = sp;return; } -function _crypto_sign_ed25519_ref10_ge_p3_0($h) { - $h = $h|0; - var $0 = 0, $1 = 0, $2 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_p3_0($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, $3 = 0, label = 0, sp = 0; sp = STACKTOP; - _crypto_sign_ed25519_ref10_fe_0($h); - $0 = ((($h)) + 40|0); - _crypto_sign_ed25519_ref10_fe_1($0); - $1 = ((($h)) + 80|0); + _crypto_sign_ed25519_ref10_fe_0($0); + $1 = ((($0)) + 40|0); _crypto_sign_ed25519_ref10_fe_1($1); - $2 = ((($h)) + 120|0); - _crypto_sign_ed25519_ref10_fe_0($2); + $2 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_1($2); + $3 = ((($0)) + 120|0); + _crypto_sign_ed25519_ref10_fe_0($3); return; } -function _crypto_sign_ed25519_ref10_ge_p3_dbl($r,$p) { - $r = $r|0; - $p = $p|0; - var $q = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_p3_dbl($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 128|0; - $q = sp; - _crypto_sign_ed25519_ref10_ge_p3_to_p2($q,$p); - _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$q); + $2 = sp; + _crypto_sign_ed25519_ref10_ge_p3_to_p2($2,$1); + _crypto_sign_ed25519_ref10_ge_p2_dbl($0,$2); STACKTOP = sp;return; } -function _crypto_sign_ed25519_ref10_ge_p3_to_cached($r,$p) { - $r = $r|0; - $p = $p|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_p3_to_cached($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = ((($p)) + 40|0); - _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); - $1 = ((($r)) + 40|0); - _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); - $2 = ((($r)) + 80|0); - $3 = ((($p)) + 80|0); - _crypto_sign_ed25519_ref10_fe_copy($2,$3); - $4 = ((($r)) + 120|0); - $5 = ((($p)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($4,$5,1752); + $2 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($0,$2,$1); + $3 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($3,$2,$1); + $4 = ((($0)) + 80|0); + $5 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_copy($4,$5); + $6 = ((($0)) + 120|0); + $7 = ((($1)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($6,$7,1752); return; } -function _crypto_sign_ed25519_ref10_ge_p3_to_p2($r,$p) { - $r = $r|0; - $p = $p|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_p3_to_p2($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, label = 0, sp = 0; sp = STACKTOP; - _crypto_sign_ed25519_ref10_fe_copy($r,$p); - $0 = ((($r)) + 40|0); - $1 = ((($p)) + 40|0); _crypto_sign_ed25519_ref10_fe_copy($0,$1); - $2 = ((($r)) + 80|0); - $3 = ((($p)) + 80|0); + $2 = ((($0)) + 40|0); + $3 = ((($1)) + 40|0); _crypto_sign_ed25519_ref10_fe_copy($2,$3); + $4 = ((($0)) + 80|0); + $5 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_copy($4,$5); return; } -function _crypto_sign_ed25519_ref10_ge_p3_tobytes($s,$h) { - $s = $s|0; - $h = $h|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $recip = 0, $x = 0, $y = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_p3_tobytes($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 128|0; - $recip = sp + 80|0; - $x = sp + 40|0; - $y = sp; - $0 = ((($h)) + 80|0); - _crypto_sign_ed25519_ref10_fe_invert($recip,$0); - _crypto_sign_ed25519_ref10_fe_mul($x,$h,$recip); - $1 = ((($h)) + 40|0); - _crypto_sign_ed25519_ref10_fe_mul($y,$1,$recip); - _crypto_sign_ed25519_ref10_fe_tobytes($s,$y); - $2 = (_crypto_sign_ed25519_ref10_fe_isnegative($x)|0); - $3 = $2 << 7; - $4 = ((($s)) + 31|0); - $5 = HEAP8[$4>>0]|0; - $6 = $5&255; - $7 = $6 ^ $3; - $8 = $7&255; - HEAP8[$4>>0] = $8; + $2 = sp + 80|0; + $3 = sp + 40|0; + $4 = sp; + $5 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_invert($2,$5); + _crypto_sign_ed25519_ref10_fe_mul($3,$1,$2); + $6 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$6,$2); + _crypto_sign_ed25519_ref10_fe_tobytes($0,$4); + $7 = (_crypto_sign_ed25519_ref10_fe_isnegative($3)|0); + $8 = $7 << 7; + $9 = ((($0)) + 31|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = $11 ^ $8; + $13 = $12&255; + HEAP8[$9>>0] = $13; STACKTOP = sp;return; } -function _crypto_sign_ed25519_ref10_ge_precomp_0($h) { - $h = $h|0; - var $0 = 0, $1 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_precomp_0($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, label = 0, sp = 0; sp = STACKTOP; - _crypto_sign_ed25519_ref10_fe_1($h); - $0 = ((($h)) + 40|0); _crypto_sign_ed25519_ref10_fe_1($0); - $1 = ((($h)) + 80|0); - _crypto_sign_ed25519_ref10_fe_0($1); + $1 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_1($1); + $2 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_0($2); return; } -function _crypto_sign_ed25519_ref10_ge_scalarmult_base($h,$a) { - $h = $h|0; - $a = $a|0; - var $$lcssa = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0; - var $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $carry$04 = 0, $e = 0, $exitcond = 0; - var $exitcond7 = 0, $i$06 = 0, $i$15 = 0, $i$23 = 0, $i$32 = 0, $r = 0, $s = 0, $sext = 0, $sext1 = 0, $t = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_scalarmult_base($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$03135 = 0, $$037 = 0, $$136 = 0, $$234 = 0, $$333 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0; + var $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; + var $8 = 0, $9 = 0, $exitcond = 0, $exitcond38 = 0, $sext = 0, $sext32 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 464|0; - $e = sp + 400|0; - $r = sp + 240|0; - $s = sp + 120|0; - $t = sp; - $i$06 = 0; + $2 = sp + 400|0; + $3 = sp + 240|0; + $4 = sp + 120|0; + $5 = sp; + $$037 = 0; while(1) { - $0 = (($a) + ($i$06)|0); - $1 = HEAP8[$0>>0]|0; - $2 = $1&255; - $3 = $2 & 15; - $4 = $3&255; - $5 = $i$06 << 1; - $6 = (($e) + ($5)|0); - HEAP8[$6>>0] = $4; - $7 = HEAP8[$0>>0]|0; - $8 = ($7&255) >>> 4; - $9 = $5 | 1; - $10 = (($e) + ($9)|0); + $6 = (($1) + ($$037)|0); + $7 = HEAP8[$6>>0]|0; + $8 = $7 & 15; + $9 = $$037 << 1; + $10 = (($2) + ($9)|0); HEAP8[$10>>0] = $8; - $11 = (($i$06) + 1)|0; - $exitcond7 = ($11|0)==(32); - if ($exitcond7) { - $carry$04 = 0;$i$15 = 0; + $11 = ($7&255) >>> 4; + $12 = $9 | 1; + $13 = (($2) + ($12)|0); + HEAP8[$13>>0] = $11; + $14 = (($$037) + 1)|0; + $exitcond38 = ($14|0)==(32); + if ($exitcond38) { + $$03135 = 0;$$136 = 0; break; } else { - $i$06 = $11; + $$037 = $14; } } while(1) { - $12 = (($e) + ($i$15)|0); - $13 = HEAP8[$12>>0]|0; - $14 = $13&255; - $15 = (($14) + ($carry$04))|0; - $sext = $15 << 24; - $sext1 = (($sext) + 134217728)|0; - $16 = $sext1 >> 28; - $17 = $16 << 4; - $18 = (($15) - ($17))|0; - $19 = $18&255; - HEAP8[$12>>0] = $19; - $20 = (($i$15) + 1)|0; - $exitcond = ($20|0)==(63); + $15 = (($2) + ($$136)|0); + $16 = HEAP8[$15>>0]|0; + $17 = $16&255; + $18 = (($17) + ($$03135))|0; + $sext = $18 << 24; + $sext32 = (($sext) + 134217728)|0; + $19 = $sext32 >> 28; + $20 = $19 << 4; + $21 = (($18) - ($20))|0; + $22 = $21&255; + HEAP8[$15>>0] = $22; + $23 = (($$136) + 1)|0; + $exitcond = ($23|0)==(63); if ($exitcond) { - $$lcssa = $16; break; } else { - $carry$04 = $16;$i$15 = $20; + $$03135 = $19;$$136 = $23; } } - $21 = ((($e)) + 63|0); - $22 = HEAP8[$21>>0]|0; - $23 = $22&255; - $24 = (($23) + ($$lcssa))|0; - $25 = $24&255; - HEAP8[$21>>0] = $25; - _crypto_sign_ed25519_ref10_ge_p3_0($h); - $i$23 = 1; + $24 = ((($2)) + 63|0); + $25 = HEAP8[$24>>0]|0; + $26 = $25&255; + $27 = (($26) + ($19))|0; + $28 = $27&255; + HEAP8[$24>>0] = $28; + _crypto_sign_ed25519_ref10_ge_p3_0($0); + $$234 = 1; while(1) { - $26 = (($i$23|0) / 2)&-1; - $27 = (($e) + ($i$23)|0); - $28 = HEAP8[$27>>0]|0; - _select60($t,$26,$28); - _crypto_sign_ed25519_ref10_ge_madd($r,$h,$t); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($h,$r); - $29 = (($i$23) + 2)|0; - $30 = ($29|0)<(64); - if ($30) { - $i$23 = $29; + $29 = (($$234|0) / 2)&-1; + $30 = (($2) + ($$234)|0); + $31 = HEAP8[$30>>0]|0; + _select_60($5,$29,$31); + _crypto_sign_ed25519_ref10_ge_madd($3,$0,$5); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($0,$3); + $32 = (($$234) + 2)|0; + $33 = ($32|0)<(64); + if ($33) { + $$234 = $32; } else { break; } } - _crypto_sign_ed25519_ref10_ge_p3_dbl($r,$h); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($s,$r); - _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$s); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($s,$r); - _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$s); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($s,$r); - _crypto_sign_ed25519_ref10_ge_p2_dbl($r,$s); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($h,$r); - $i$32 = 0; + _crypto_sign_ed25519_ref10_ge_p3_dbl($3,$0); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($4,$3); + _crypto_sign_ed25519_ref10_ge_p2_dbl($3,$4); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($4,$3); + _crypto_sign_ed25519_ref10_ge_p2_dbl($3,$4); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p2($4,$3); + _crypto_sign_ed25519_ref10_ge_p2_dbl($3,$4); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($0,$3); + $$333 = 0; while(1) { - $31 = (($i$32|0) / 2)&-1; - $32 = (($e) + ($i$32)|0); - $33 = HEAP8[$32>>0]|0; - _select60($t,$31,$33); - _crypto_sign_ed25519_ref10_ge_madd($r,$h,$t); - _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($h,$r); - $34 = (($i$32) + 2)|0; - $35 = ($34|0)<(64); - if ($35) { - $i$32 = $34; + $34 = (($$333|0) / 2)&-1; + $35 = (($2) + ($$333)|0); + $36 = HEAP8[$35>>0]|0; + _select_60($5,$34,$36); + _crypto_sign_ed25519_ref10_ge_madd($3,$0,$5); + _crypto_sign_ed25519_ref10_ge_p1p1_to_p3($0,$3); + $37 = (($$333) + 2)|0; + $38 = ($37|0)<(64); + if ($38) { + $$333 = $37; } else { break; } } STACKTOP = sp;return; } -function _select60($t,$pos,$b) { - $t = $t|0; - $pos = $pos|0; - $b = $b|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $minust = 0, label = 0, sp = 0; +function _select_60($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0; + var $3 = 0, $30 = 0, $31 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 128|0; - $minust = sp; - $0 = (_negative($b)|0); - $1 = $b << 24 >> 24; - $2 = $0&255; - $3 = (0 - ($2))|0; - $4 = $1 & $3; - $5 = $4 << 1; - $6 = (($1) - ($5))|0; - $7 = $6&255; - _crypto_sign_ed25519_ref10_ge_precomp_0($t); - $8 = (1792 + (($pos*960)|0)|0); - $9 = (_equal($7,1)|0); - _cmov($t,$8,$9); - $10 = (((1792 + (($pos*960)|0)|0)) + 120|0); - $11 = (_equal($7,2)|0); - _cmov($t,$10,$11); - $12 = (((1792 + (($pos*960)|0)|0)) + 240|0); - $13 = (_equal($7,3)|0); - _cmov($t,$12,$13); - $14 = (((1792 + (($pos*960)|0)|0)) + 360|0); - $15 = (_equal($7,4)|0); - _cmov($t,$14,$15); - $16 = (((1792 + (($pos*960)|0)|0)) + 480|0); - $17 = (_equal($7,5)|0); - _cmov($t,$16,$17); - $18 = (((1792 + (($pos*960)|0)|0)) + 600|0); - $19 = (_equal($7,6)|0); - _cmov($t,$18,$19); - $20 = (((1792 + (($pos*960)|0)|0)) + 720|0); - $21 = (_equal($7,7)|0); - _cmov($t,$20,$21); - $22 = (((1792 + (($pos*960)|0)|0)) + 840|0); - $23 = (_equal($7,8)|0); - _cmov($t,$22,$23); - $24 = ((($t)) + 40|0); - _crypto_sign_ed25519_ref10_fe_copy($minust,$24); - $25 = ((($minust)) + 40|0); - _crypto_sign_ed25519_ref10_fe_copy($25,$t); - $26 = ((($minust)) + 80|0); - $27 = ((($t)) + 80|0); - _crypto_sign_ed25519_ref10_fe_neg($26,$27); - _cmov($t,$minust,$0); + $3 = sp; + $4 = (_negative($2)|0); + $5 = $2 << 24 >> 24; + $6 = $4&255; + $7 = (0 - ($6))|0; + $8 = $5 & $7; + $9 = $8 << 1; + $10 = (($5) - ($9))|0; + $11 = $10&255; + _crypto_sign_ed25519_ref10_ge_precomp_0($0); + $12 = (1792 + (($1*960)|0)|0); + $13 = (_equal($11,1)|0); + _cmov($0,$12,$13); + $14 = (((1792 + (($1*960)|0)|0)) + 120|0); + $15 = (_equal($11,2)|0); + _cmov($0,$14,$15); + $16 = (((1792 + (($1*960)|0)|0)) + 240|0); + $17 = (_equal($11,3)|0); + _cmov($0,$16,$17); + $18 = (((1792 + (($1*960)|0)|0)) + 360|0); + $19 = (_equal($11,4)|0); + _cmov($0,$18,$19); + $20 = (((1792 + (($1*960)|0)|0)) + 480|0); + $21 = (_equal($11,5)|0); + _cmov($0,$20,$21); + $22 = (((1792 + (($1*960)|0)|0)) + 600|0); + $23 = (_equal($11,6)|0); + _cmov($0,$22,$23); + $24 = (((1792 + (($1*960)|0)|0)) + 720|0); + $25 = (_equal($11,7)|0); + _cmov($0,$24,$25); + $26 = (((1792 + (($1*960)|0)|0)) + 840|0); + $27 = (_equal($11,8)|0); + _cmov($0,$26,$27); + $28 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_copy($3,$28); + $29 = ((($3)) + 40|0); + _crypto_sign_ed25519_ref10_fe_copy($29,$0); + $30 = ((($3)) + 80|0); + $31 = ((($0)) + 80|0); + _crypto_sign_ed25519_ref10_fe_neg($30,$31); + _cmov($0,$3,$4); STACKTOP = sp;return; } -function _negative($b) { - $b = $b|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, label = 0, sp = 0; +function _negative($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = $b << 24 >> 24; - $1 = ($0|0)<(0); - $2 = $1 << 31 >> 31; - $3 = (_bitshift64Lshr(($0|0),($2|0),63)|0); - $4 = tempRet0; - $5 = $3&255; - return ($5|0); + $1 = $0 << 24 >> 24; + $2 = ($1|0)<(0); + $3 = $2 << 31 >> 31; + $4 = (_bitshift64Lshr(($1|0),($3|0),63)|0); + $5 = tempRet0; + $6 = $4&255; + return ($6|0); } -function _equal($b,$c) { - $b = $b|0; - $c = $c|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; +function _equal($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = $c ^ $b; - $1 = $0&255; - $2 = (($1) + -1)|0; - $3 = $2 >>> 31; - $4 = $3&255; - return ($4|0); + $2 = $1 ^ $0; + $3 = $2&255; + $4 = (($3) + -1)|0; + $5 = $4 >>> 31; + $6 = $5&255; + return ($6|0); } -function _cmov($t,$u,$b) { - $t = $t|0; - $u = $u|0; - $b = $b|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; +function _cmov($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = $b&255; - _crypto_sign_ed25519_ref10_fe_cmov($t,$u,$0); - $1 = ((($t)) + 40|0); - $2 = ((($u)) + 40|0); - _crypto_sign_ed25519_ref10_fe_cmov($1,$2,$0); - $3 = ((($t)) + 80|0); - $4 = ((($u)) + 80|0); - _crypto_sign_ed25519_ref10_fe_cmov($3,$4,$0); + $3 = $2&255; + _crypto_sign_ed25519_ref10_fe_cmov($0,$1,$3); + $4 = ((($0)) + 40|0); + $5 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_cmov($4,$5,$3); + $6 = ((($0)) + 80|0); + $7 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_cmov($6,$7,$3); return; } -function _crypto_sign_ed25519_ref10_ge_sub($r,$p,$q) { - $r = $r|0; - $p = $p|0; - $q = $q|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $t0 = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_sub($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 48|0; - $t0 = sp; - $0 = ((($p)) + 40|0); - _crypto_sign_ed25519_ref10_fe_add($r,$0,$p); - $1 = ((($r)) + 40|0); - _crypto_sign_ed25519_ref10_fe_sub($1,$0,$p); - $2 = ((($r)) + 80|0); - $3 = ((($q)) + 40|0); - _crypto_sign_ed25519_ref10_fe_mul($2,$r,$3); - _crypto_sign_ed25519_ref10_fe_mul($1,$1,$q); - $4 = ((($r)) + 120|0); - $5 = ((($q)) + 120|0); - $6 = ((($p)) + 120|0); - _crypto_sign_ed25519_ref10_fe_mul($4,$5,$6); - $7 = ((($p)) + 80|0); - $8 = ((($q)) + 80|0); - _crypto_sign_ed25519_ref10_fe_mul($r,$7,$8); - _crypto_sign_ed25519_ref10_fe_add($t0,$r,$r); - _crypto_sign_ed25519_ref10_fe_sub($r,$2,$1); - _crypto_sign_ed25519_ref10_fe_add($1,$2,$1); - _crypto_sign_ed25519_ref10_fe_sub($2,$t0,$4); - _crypto_sign_ed25519_ref10_fe_add($4,$t0,$4); + $3 = sp; + $4 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_add($0,$4,$1); + $5 = ((($0)) + 40|0); + _crypto_sign_ed25519_ref10_fe_sub($5,$4,$1); + $6 = ((($0)) + 80|0); + $7 = ((($2)) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($6,$0,$7); + _crypto_sign_ed25519_ref10_fe_mul($5,$5,$2); + $8 = ((($0)) + 120|0); + $9 = ((($2)) + 120|0); + $10 = ((($1)) + 120|0); + _crypto_sign_ed25519_ref10_fe_mul($8,$9,$10); + $11 = ((($1)) + 80|0); + $12 = ((($2)) + 80|0); + _crypto_sign_ed25519_ref10_fe_mul($0,$11,$12); + _crypto_sign_ed25519_ref10_fe_add($3,$0,$0); + _crypto_sign_ed25519_ref10_fe_sub($0,$6,$5); + _crypto_sign_ed25519_ref10_fe_add($5,$6,$5); + _crypto_sign_ed25519_ref10_fe_sub($6,$3,$8); + _crypto_sign_ed25519_ref10_fe_add($8,$3,$8); STACKTOP = sp;return; } -function _crypto_sign_ed25519_ref10_ge_tobytes($s,$h) { - $s = $s|0; - $h = $h|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $recip = 0, $x = 0, $y = 0, label = 0, sp = 0; +function _crypto_sign_ed25519_ref10_ge_tobytes($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 128|0; - $recip = sp + 80|0; - $x = sp + 40|0; - $y = sp; - $0 = ((($h)) + 80|0); - _crypto_sign_ed25519_ref10_fe_invert($recip,$0); - _crypto_sign_ed25519_ref10_fe_mul($x,$h,$recip); - $1 = ((($h)) + 40|0); - _crypto_sign_ed25519_ref10_fe_mul($y,$1,$recip); - _crypto_sign_ed25519_ref10_fe_tobytes($s,$y); - $2 = (_crypto_sign_ed25519_ref10_fe_isnegative($x)|0); - $3 = $2 << 7; - $4 = ((($s)) + 31|0); - $5 = HEAP8[$4>>0]|0; - $6 = $5&255; - $7 = $6 ^ $3; - $8 = $7&255; - HEAP8[$4>>0] = $8; + $2 = sp + 80|0; + $3 = sp + 40|0; + $4 = sp; + $5 = ((($1)) + 80|0); + _crypto_sign_ed25519_ref10_fe_invert($2,$5); + _crypto_sign_ed25519_ref10_fe_mul($3,$1,$2); + $6 = ((($1)) + 40|0); + _crypto_sign_ed25519_ref10_fe_mul($4,$6,$2); + _crypto_sign_ed25519_ref10_fe_tobytes($0,$4); + $7 = (_crypto_sign_ed25519_ref10_fe_isnegative($3)|0); + $8 = $7 << 7; + $9 = ((($0)) + 31|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = $11 ^ $8; + $13 = $12&255; + HEAP8[$9>>0] = $13; STACKTOP = sp;return; } -function _crypto_sign_edwards25519sha512batch_ref10_open($m,$mlen,$sm,$0,$1,$pk) { - $m = $m|0; - $mlen = $mlen|0; - $sm = $sm|0; +function _crypto_sign_edwards25519sha512batch_ref10_open($0,$1,$2,$3,$4,$5) { $0 = $0|0; $1 = $1|0; - $pk = $pk|0; - var $$0 = 0, $$sum = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $A = 0, $R = 0, $h = 0, $pkcopy1 = 0, $rcheck = 0, $rcopy = 0, $scopy = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; + $2 = $2|0; + $3 = $3|0; + $4 = $4|0; + $5 = $5|0; + var $$0 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; sp = STACKTOP; STACKTOP = STACKTOP + 480|0; - $pkcopy1 = sp + 440|0; - $rcopy = sp + 344|0; - $scopy = sp + 312|0; - $h = sp + 376|0; - $rcheck = sp + 280|0; - $A = sp + 120|0; - $R = sp; - $2 = ($1>>>0)<(0); - $3 = ($0>>>0)<(64); - $4 = ($1|0)==(0); - $5 = $4 & $3; - $6 = $2 | $5; - if (!($6)) { - $7 = ((($sm)) + 63|0); - $8 = HEAP8[$7>>0]|0; - $9 = ($8&255)>(31); - if (!($9)) { - $10 = (_crypto_sign_ed25519_ref10_ge_frombytes_negate_vartime($A,$pk)|0); - $11 = ($10|0)==(0); - if ($11) { - dest=$pkcopy1; src=$pk; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - dest=$rcopy; src=$sm; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - $12 = ((($sm)) + 32|0); - dest=$scopy; src=$12; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - _memmove(($m|0),($sm|0),($0|0))|0; - $13 = ((($m)) + 32|0); - dest=$13; src=$pkcopy1; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); - (_crypto_hash_sha512_ref($h,$m,$0,$1)|0); - _crypto_sign_ed25519_ref10_sc_reduce($h); - _crypto_sign_ed25519_ref10_ge_double_scalarmult_vartime($R,$h,$A,$scopy); - _crypto_sign_ed25519_ref10_ge_tobytes($rcheck,$R); - $14 = (_crypto_verify_32_ref($rcheck,$rcopy)|0); - $15 = ($14|0)==(0); - if ($15) { - $16 = ((($m)) + 64|0); - $17 = (_i64Add(($0|0),($1|0),-64,-1)|0); - $18 = tempRet0; - _memmove(($m|0),($16|0),($17|0))|0; - $$sum = (($0) + -64)|0; - $19 = (($m) + ($$sum)|0); - dest=$19; stop=dest+64|0; do { HEAP8[dest>>0]=0|0; dest=dest+1|0; } while ((dest|0) < (stop|0)); - $20 = $mlen; - $21 = $20; - HEAP32[$21>>2] = $17; - $22 = (($20) + 4)|0; - $23 = $22; - HEAP32[$23>>2] = $18; + $6 = sp + 440|0; + $7 = sp + 408|0; + $8 = sp + 376|0; + $9 = sp + 312|0; + $10 = sp + 280|0; + $11 = sp + 120|0; + $12 = sp; + $13 = ($4>>>0)<(0); + $14 = ($3>>>0)<(64); + $15 = ($4|0)==(0); + $16 = $15 & $14; + $17 = $13 | $16; + if (!($17)) { + $18 = ((($2)) + 63|0); + $19 = HEAP8[$18>>0]|0; + $20 = ($19&255)>(31); + if (!($20)) { + $21 = (_crypto_sign_ed25519_ref10_ge_frombytes_negate_vartime($11,$5)|0); + $22 = ($21|0)==(0); + if ($22) { + dest=$6; src=$5; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + dest=$7; src=$2; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + $23 = ((($2)) + 32|0); + dest=$8; src=$23; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + _memmove(($0|0),($2|0),($3|0))|0; + $24 = ((($0)) + 32|0); + dest=$24; src=$6; stop=dest+32|0; do { HEAP8[dest>>0]=HEAP8[src>>0]|0; dest=dest+1|0; src=src+1|0; } while ((dest|0) < (stop|0)); + (_crypto_hash_sha512_ref($9,$0,$3,$4)|0); + _crypto_sign_ed25519_ref10_sc_reduce($9); + _crypto_sign_ed25519_ref10_ge_double_scalarmult_vartime($12,$9,$11,$8); + _crypto_sign_ed25519_ref10_ge_tobytes($10,$12); + $25 = (_crypto_verify_32_ref($10,$7)|0); + $26 = ($25|0)==(0); + if ($26) { + $27 = ((($0)) + 64|0); + $28 = (_i64Add(($3|0),($4|0),-64,-1)|0); + $29 = tempRet0; + _memmove(($0|0),($27|0),($28|0))|0; + $30 = (($0) + ($3)|0); + $31 = ((($30)) + -64|0); + dest=$31; stop=dest+64|0; do { HEAP8[dest>>0]=0|0; dest=dest+1|0; } while ((dest|0) < (stop|0)); + $32 = $1; + $33 = $32; + HEAP32[$33>>2] = $28; + $34 = (($32) + 4)|0; + $35 = $34; + HEAP32[$35>>2] = $29; $$0 = 0; STACKTOP = sp;return ($$0|0); } } } } - $24 = $mlen; - $25 = $24; - HEAP32[$25>>2] = -1; - $26 = (($24) + 4)|0; - $27 = $26; - HEAP32[$27>>2] = -1; - _memset(($m|0),0,($0|0))|0; + $36 = $1; + $37 = $36; + HEAP32[$37>>2] = -1; + $38 = (($36) + 4)|0; + $39 = $38; + HEAP32[$39>>2] = -1; + _memset(($0|0),0,($3|0))|0; $$0 = -1; STACKTOP = sp;return ($$0|0); } -function _crypto_sign_ed25519_ref10_sc_muladd($s,$a,$b,$c) { - $s = $s|0; - $a = $a|0; - $b = $b|0; - $c = $c|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; - var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0; - var $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0; - var $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0; - var $107 = 0, $1070 = 0, $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0; - var $1088 = 0, $1089 = 0, $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0; - var $1105 = 0, $1106 = 0, $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $1119 = 0, $112 = 0, $1120 = 0, $1121 = 0, $1122 = 0; - var $1123 = 0, $1124 = 0, $1125 = 0, $1126 = 0, $1127 = 0, $1128 = 0, $1129 = 0, $113 = 0, $1130 = 0, $1131 = 0, $1132 = 0, $1133 = 0, $1134 = 0, $1135 = 0, $1136 = 0, $1137 = 0, $1138 = 0, $1139 = 0, $114 = 0, $1140 = 0; - var $1141 = 0, $1142 = 0, $1143 = 0, $1144 = 0, $1145 = 0, $1146 = 0, $1147 = 0, $1148 = 0, $1149 = 0, $115 = 0, $1150 = 0, $1151 = 0, $1152 = 0, $1153 = 0, $1154 = 0, $1155 = 0, $1156 = 0, $1157 = 0, $1158 = 0, $1159 = 0; - var $116 = 0, $1160 = 0, $1161 = 0, $1162 = 0, $1163 = 0, $1164 = 0, $1165 = 0, $1166 = 0, $1167 = 0, $1168 = 0, $1169 = 0, $117 = 0, $1170 = 0, $1171 = 0, $1172 = 0, $1173 = 0, $1174 = 0, $1175 = 0, $1176 = 0, $1177 = 0; - var $1178 = 0, $1179 = 0, $118 = 0, $1180 = 0, $1181 = 0, $1182 = 0, $1183 = 0, $1184 = 0, $1185 = 0, $1186 = 0, $1187 = 0, $1188 = 0, $1189 = 0, $119 = 0, $1190 = 0, $1191 = 0, $1192 = 0, $1193 = 0, $1194 = 0, $1195 = 0; - var $1196 = 0, $1197 = 0, $1198 = 0, $1199 = 0, $12 = 0, $120 = 0, $1200 = 0, $1201 = 0, $1202 = 0, $1203 = 0, $1204 = 0, $1205 = 0, $1206 = 0, $1207 = 0, $1208 = 0, $1209 = 0, $121 = 0, $1210 = 0, $1211 = 0, $1212 = 0; - var $1213 = 0, $1214 = 0, $1215 = 0, $1216 = 0, $1217 = 0, $1218 = 0, $1219 = 0, $122 = 0, $1220 = 0, $1221 = 0, $1222 = 0, $1223 = 0, $1224 = 0, $1225 = 0, $1226 = 0, $1227 = 0, $1228 = 0, $1229 = 0, $123 = 0, $1230 = 0; - var $1231 = 0, $1232 = 0, $1233 = 0, $1234 = 0, $1235 = 0, $1236 = 0, $1237 = 0, $1238 = 0, $1239 = 0, $124 = 0, $1240 = 0, $1241 = 0, $1242 = 0, $1243 = 0, $1244 = 0, $1245 = 0, $1246 = 0, $1247 = 0, $1248 = 0, $1249 = 0; - var $125 = 0, $1250 = 0, $1251 = 0, $1252 = 0, $1253 = 0, $1254 = 0, $1255 = 0, $1256 = 0, $1257 = 0, $1258 = 0, $1259 = 0, $126 = 0, $1260 = 0, $1261 = 0, $1262 = 0, $1263 = 0, $1264 = 0, $1265 = 0, $1266 = 0, $1267 = 0; - var $1268 = 0, $1269 = 0, $127 = 0, $1270 = 0, $1271 = 0, $1272 = 0, $1273 = 0, $1274 = 0, $1275 = 0, $1276 = 0, $1277 = 0, $1278 = 0, $1279 = 0, $128 = 0, $1280 = 0, $1281 = 0, $1282 = 0, $1283 = 0, $1284 = 0, $1285 = 0; - var $1286 = 0, $1287 = 0, $1288 = 0, $1289 = 0, $129 = 0, $1290 = 0, $1291 = 0, $1292 = 0, $1293 = 0, $1294 = 0, $1295 = 0, $1296 = 0, $1297 = 0, $1298 = 0, $1299 = 0, $13 = 0, $130 = 0, $1300 = 0, $1301 = 0, $1302 = 0; - var $1303 = 0, $1304 = 0, $1305 = 0, $1306 = 0, $1307 = 0, $1308 = 0, $1309 = 0, $131 = 0, $1310 = 0, $1311 = 0, $1312 = 0, $1313 = 0, $1314 = 0, $1315 = 0, $1316 = 0, $1317 = 0, $1318 = 0, $1319 = 0, $132 = 0, $1320 = 0; - var $1321 = 0, $1322 = 0, $1323 = 0, $1324 = 0, $1325 = 0, $1326 = 0, $1327 = 0, $1328 = 0, $1329 = 0, $133 = 0, $1330 = 0, $1331 = 0, $1332 = 0, $1333 = 0, $1334 = 0, $1335 = 0, $1336 = 0, $1337 = 0, $1338 = 0, $1339 = 0; - var $134 = 0, $1340 = 0, $1341 = 0, $1342 = 0, $1343 = 0, $1344 = 0, $1345 = 0, $1346 = 0, $1347 = 0, $1348 = 0, $1349 = 0, $135 = 0, $1350 = 0, $1351 = 0, $1352 = 0, $1353 = 0, $1354 = 0, $1355 = 0, $1356 = 0, $1357 = 0; - var $1358 = 0, $1359 = 0, $136 = 0, $1360 = 0, $1361 = 0, $1362 = 0, $1363 = 0, $1364 = 0, $1365 = 0, $1366 = 0, $1367 = 0, $1368 = 0, $1369 = 0, $137 = 0, $1370 = 0, $1371 = 0, $1372 = 0, $1373 = 0, $1374 = 0, $1375 = 0; - var $1376 = 0, $1377 = 0, $1378 = 0, $1379 = 0, $138 = 0, $1380 = 0, $1381 = 0, $1382 = 0, $1383 = 0, $1384 = 0, $1385 = 0, $1386 = 0, $1387 = 0, $1388 = 0, $1389 = 0, $139 = 0, $1390 = 0, $1391 = 0, $1392 = 0, $1393 = 0; - var $1394 = 0, $1395 = 0, $1396 = 0, $1397 = 0, $1398 = 0, $1399 = 0, $14 = 0, $140 = 0, $1400 = 0, $1401 = 0, $1402 = 0, $1403 = 0, $1404 = 0, $1405 = 0, $1406 = 0, $1407 = 0, $1408 = 0, $1409 = 0, $141 = 0, $1410 = 0; - var $1411 = 0, $1412 = 0, $1413 = 0, $1414 = 0, $1415 = 0, $1416 = 0, $1417 = 0, $1418 = 0, $1419 = 0, $142 = 0, $1420 = 0, $1421 = 0, $1422 = 0, $1423 = 0, $1424 = 0, $1425 = 0, $1426 = 0, $1427 = 0, $1428 = 0, $1429 = 0; - var $143 = 0, $1430 = 0, $1431 = 0, $1432 = 0, $1433 = 0, $1434 = 0, $1435 = 0, $1436 = 0, $1437 = 0, $1438 = 0, $1439 = 0, $144 = 0, $1440 = 0, $1441 = 0, $1442 = 0, $1443 = 0, $1444 = 0, $1445 = 0, $1446 = 0, $1447 = 0; - var $1448 = 0, $1449 = 0, $145 = 0, $1450 = 0, $1451 = 0, $1452 = 0, $1453 = 0, $1454 = 0, $1455 = 0, $1456 = 0, $1457 = 0, $1458 = 0, $1459 = 0, $146 = 0, $1460 = 0, $1461 = 0, $1462 = 0, $1463 = 0, $1464 = 0, $1465 = 0; - var $1466 = 0, $1467 = 0, $1468 = 0, $1469 = 0, $147 = 0, $1470 = 0, $1471 = 0, $1472 = 0, $1473 = 0, $1474 = 0, $1475 = 0, $1476 = 0, $1477 = 0, $1478 = 0, $1479 = 0, $148 = 0, $1480 = 0, $1481 = 0, $1482 = 0, $1483 = 0; - var $1484 = 0, $1485 = 0, $1486 = 0, $1487 = 0, $1488 = 0, $1489 = 0, $149 = 0, $1490 = 0, $1491 = 0, $1492 = 0, $1493 = 0, $1494 = 0, $1495 = 0, $1496 = 0, $1497 = 0, $1498 = 0, $1499 = 0, $15 = 0, $150 = 0, $1500 = 0; - var $1501 = 0, $1502 = 0, $1503 = 0, $1504 = 0, $1505 = 0, $1506 = 0, $1507 = 0, $1508 = 0, $1509 = 0, $151 = 0, $1510 = 0, $1511 = 0, $1512 = 0, $1513 = 0, $1514 = 0, $1515 = 0, $1516 = 0, $1517 = 0, $1518 = 0, $1519 = 0; - var $152 = 0, $1520 = 0, $1521 = 0, $1522 = 0, $1523 = 0, $1524 = 0, $1525 = 0, $1526 = 0, $1527 = 0, $1528 = 0, $1529 = 0, $153 = 0, $1530 = 0, $1531 = 0, $1532 = 0, $1533 = 0, $1534 = 0, $1535 = 0, $1536 = 0, $1537 = 0; - var $1538 = 0, $1539 = 0, $154 = 0, $1540 = 0, $1541 = 0, $1542 = 0, $1543 = 0, $1544 = 0, $1545 = 0, $1546 = 0, $1547 = 0, $1548 = 0, $1549 = 0, $155 = 0, $1550 = 0, $1551 = 0, $1552 = 0, $1553 = 0, $1554 = 0, $1555 = 0; - var $1556 = 0, $1557 = 0, $1558 = 0, $1559 = 0, $156 = 0, $1560 = 0, $1561 = 0, $1562 = 0, $1563 = 0, $1564 = 0, $1565 = 0, $1566 = 0, $1567 = 0, $1568 = 0, $1569 = 0, $157 = 0, $1570 = 0, $1571 = 0, $1572 = 0, $1573 = 0; - var $1574 = 0, $1575 = 0, $1576 = 0, $1577 = 0, $1578 = 0, $1579 = 0, $158 = 0, $1580 = 0, $1581 = 0, $1582 = 0, $1583 = 0, $1584 = 0, $1585 = 0, $1586 = 0, $1587 = 0, $1588 = 0, $1589 = 0, $159 = 0, $1590 = 0, $1591 = 0; - var $1592 = 0, $1593 = 0, $1594 = 0, $1595 = 0, $1596 = 0, $1597 = 0, $1598 = 0, $1599 = 0, $16 = 0, $160 = 0, $1600 = 0, $1601 = 0, $1602 = 0, $1603 = 0, $1604 = 0, $1605 = 0, $1606 = 0, $1607 = 0, $1608 = 0, $1609 = 0; - var $161 = 0, $1610 = 0, $1611 = 0, $1612 = 0, $1613 = 0, $1614 = 0, $1615 = 0, $1616 = 0, $1617 = 0, $1618 = 0, $1619 = 0, $162 = 0, $1620 = 0, $1621 = 0, $1622 = 0, $1623 = 0, $1624 = 0, $1625 = 0, $1626 = 0, $1627 = 0; - var $1628 = 0, $1629 = 0, $163 = 0, $1630 = 0, $1631 = 0, $1632 = 0, $1633 = 0, $1634 = 0, $1635 = 0, $1636 = 0, $1637 = 0, $1638 = 0, $1639 = 0, $164 = 0, $1640 = 0, $1641 = 0, $1642 = 0, $1643 = 0, $1644 = 0, $1645 = 0; - var $1646 = 0, $1647 = 0, $1648 = 0, $1649 = 0, $165 = 0, $1650 = 0, $1651 = 0, $1652 = 0, $1653 = 0, $1654 = 0, $1655 = 0, $1656 = 0, $1657 = 0, $1658 = 0, $1659 = 0, $166 = 0, $1660 = 0, $1661 = 0, $1662 = 0, $1663 = 0; - var $1664 = 0, $1665 = 0, $1666 = 0, $1667 = 0, $1668 = 0, $1669 = 0, $167 = 0, $1670 = 0, $1671 = 0, $1672 = 0, $1673 = 0, $1674 = 0, $1675 = 0, $1676 = 0, $1677 = 0, $1678 = 0, $1679 = 0, $168 = 0, $1680 = 0, $1681 = 0; - var $1682 = 0, $1683 = 0, $1684 = 0, $1685 = 0, $1686 = 0, $1687 = 0, $1688 = 0, $1689 = 0, $169 = 0, $1690 = 0, $1691 = 0, $1692 = 0, $1693 = 0, $1694 = 0, $1695 = 0, $1696 = 0, $1697 = 0, $1698 = 0, $1699 = 0, $17 = 0; - var $170 = 0, $1700 = 0, $1701 = 0, $1702 = 0, $1703 = 0, $1704 = 0, $1705 = 0, $1706 = 0, $1707 = 0, $1708 = 0, $1709 = 0, $171 = 0, $1710 = 0, $1711 = 0, $1712 = 0, $1713 = 0, $1714 = 0, $1715 = 0, $1716 = 0, $1717 = 0; - var $1718 = 0, $1719 = 0, $172 = 0, $1720 = 0, $1721 = 0, $1722 = 0, $1723 = 0, $1724 = 0, $1725 = 0, $1726 = 0, $1727 = 0, $1728 = 0, $1729 = 0, $173 = 0, $1730 = 0, $1731 = 0, $1732 = 0, $1733 = 0, $1734 = 0, $1735 = 0; - var $1736 = 0, $1737 = 0, $1738 = 0, $1739 = 0, $174 = 0, $1740 = 0, $1741 = 0, $1742 = 0, $1743 = 0, $1744 = 0, $1745 = 0, $1746 = 0, $1747 = 0, $1748 = 0, $1749 = 0, $175 = 0, $1750 = 0, $1751 = 0, $1752 = 0, $1753 = 0; - var $1754 = 0, $1755 = 0, $1756 = 0, $1757 = 0, $1758 = 0, $1759 = 0, $176 = 0, $1760 = 0, $1761 = 0, $1762 = 0, $1763 = 0, $1764 = 0, $1765 = 0, $1766 = 0, $1767 = 0, $1768 = 0, $1769 = 0, $177 = 0, $1770 = 0, $1771 = 0; - var $1772 = 0, $1773 = 0, $1774 = 0, $1775 = 0, $1776 = 0, $1777 = 0, $1778 = 0, $1779 = 0, $178 = 0, $1780 = 0, $1781 = 0, $1782 = 0, $1783 = 0, $1784 = 0, $1785 = 0, $1786 = 0, $1787 = 0, $1788 = 0, $1789 = 0, $179 = 0; - var $1790 = 0, $1791 = 0, $1792 = 0, $1793 = 0, $1794 = 0, $1795 = 0, $1796 = 0, $1797 = 0, $1798 = 0, $1799 = 0, $18 = 0, $180 = 0, $1800 = 0, $1801 = 0, $1802 = 0, $1803 = 0, $1804 = 0, $1805 = 0, $1806 = 0, $1807 = 0; - var $1808 = 0, $1809 = 0, $181 = 0, $1810 = 0, $1811 = 0, $1812 = 0, $1813 = 0, $1814 = 0, $1815 = 0, $1816 = 0, $1817 = 0, $1818 = 0, $1819 = 0, $182 = 0, $1820 = 0, $1821 = 0, $1822 = 0, $1823 = 0, $1824 = 0, $1825 = 0; - var $1826 = 0, $1827 = 0, $1828 = 0, $1829 = 0, $183 = 0, $1830 = 0, $1831 = 0, $1832 = 0, $1833 = 0, $1834 = 0, $1835 = 0, $1836 = 0, $1837 = 0, $1838 = 0, $1839 = 0, $184 = 0, $1840 = 0, $1841 = 0, $1842 = 0, $1843 = 0; - var $1844 = 0, $1845 = 0, $1846 = 0, $1847 = 0, $1848 = 0, $1849 = 0, $185 = 0, $1850 = 0, $1851 = 0, $1852 = 0, $1853 = 0, $1854 = 0, $1855 = 0, $1856 = 0, $1857 = 0, $1858 = 0, $1859 = 0, $186 = 0, $1860 = 0, $1861 = 0; - var $1862 = 0, $1863 = 0, $1864 = 0, $1865 = 0, $1866 = 0, $1867 = 0, $1868 = 0, $1869 = 0, $187 = 0, $1870 = 0, $1871 = 0, $1872 = 0, $1873 = 0, $1874 = 0, $1875 = 0, $1876 = 0, $1877 = 0, $1878 = 0, $188 = 0, $189 = 0; - var $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0; - var $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0; - var $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0; - var $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0; - var $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0; - var $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0; - var $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0; - var $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0; - var $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0; +function _crypto_sign_ed25519_ref10_sc_muladd($0,$1,$2,$3) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + var $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0, $1015 = 0, $1016 = 0; + var $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0, $1033 = 0, $1034 = 0; + var $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0, $1051 = 0, $1052 = 0; + var $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0, $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0, $107 = 0, $1070 = 0; + var $1071 = 0, $1072 = 0, $1073 = 0, $1074 = 0, $1075 = 0, $1076 = 0, $1077 = 0, $1078 = 0, $1079 = 0, $108 = 0, $1080 = 0, $1081 = 0, $1082 = 0, $1083 = 0, $1084 = 0, $1085 = 0, $1086 = 0, $1087 = 0, $1088 = 0, $1089 = 0; + var $109 = 0, $1090 = 0, $1091 = 0, $1092 = 0, $1093 = 0, $1094 = 0, $1095 = 0, $1096 = 0, $1097 = 0, $1098 = 0, $1099 = 0, $11 = 0, $110 = 0, $1100 = 0, $1101 = 0, $1102 = 0, $1103 = 0, $1104 = 0, $1105 = 0, $1106 = 0; + var $1107 = 0, $1108 = 0, $1109 = 0, $111 = 0, $1110 = 0, $1111 = 0, $1112 = 0, $1113 = 0, $1114 = 0, $1115 = 0, $1116 = 0, $1117 = 0, $1118 = 0, $1119 = 0, $112 = 0, $1120 = 0, $1121 = 0, $1122 = 0, $1123 = 0, $1124 = 0; + var $1125 = 0, $1126 = 0, $1127 = 0, $1128 = 0, $1129 = 0, $113 = 0, $1130 = 0, $1131 = 0, $1132 = 0, $1133 = 0, $1134 = 0, $1135 = 0, $1136 = 0, $1137 = 0, $1138 = 0, $1139 = 0, $114 = 0, $1140 = 0, $1141 = 0, $1142 = 0; + var $1143 = 0, $1144 = 0, $1145 = 0, $1146 = 0, $1147 = 0, $1148 = 0, $1149 = 0, $115 = 0, $1150 = 0, $1151 = 0, $1152 = 0, $1153 = 0, $1154 = 0, $1155 = 0, $1156 = 0, $1157 = 0, $1158 = 0, $1159 = 0, $116 = 0, $1160 = 0; + var $1161 = 0, $1162 = 0, $1163 = 0, $1164 = 0, $1165 = 0, $1166 = 0, $1167 = 0, $1168 = 0, $1169 = 0, $117 = 0, $1170 = 0, $1171 = 0, $1172 = 0, $1173 = 0, $1174 = 0, $1175 = 0, $1176 = 0, $1177 = 0, $1178 = 0, $1179 = 0; + var $118 = 0, $1180 = 0, $1181 = 0, $1182 = 0, $1183 = 0, $1184 = 0, $1185 = 0, $1186 = 0, $1187 = 0, $1188 = 0, $1189 = 0, $119 = 0, $1190 = 0, $1191 = 0, $1192 = 0, $1193 = 0, $1194 = 0, $1195 = 0, $1196 = 0, $1197 = 0; + var $1198 = 0, $1199 = 0, $12 = 0, $120 = 0, $1200 = 0, $1201 = 0, $1202 = 0, $1203 = 0, $1204 = 0, $1205 = 0, $1206 = 0, $1207 = 0, $1208 = 0, $1209 = 0, $121 = 0, $1210 = 0, $1211 = 0, $1212 = 0, $1213 = 0, $1214 = 0; + var $1215 = 0, $1216 = 0, $1217 = 0, $1218 = 0, $1219 = 0, $122 = 0, $1220 = 0, $1221 = 0, $1222 = 0, $1223 = 0, $1224 = 0, $1225 = 0, $1226 = 0, $1227 = 0, $1228 = 0, $1229 = 0, $123 = 0, $1230 = 0, $1231 = 0, $1232 = 0; + var $1233 = 0, $1234 = 0, $1235 = 0, $1236 = 0, $1237 = 0, $1238 = 0, $1239 = 0, $124 = 0, $1240 = 0, $1241 = 0, $1242 = 0, $1243 = 0, $1244 = 0, $1245 = 0, $1246 = 0, $1247 = 0, $1248 = 0, $1249 = 0, $125 = 0, $1250 = 0; + var $1251 = 0, $1252 = 0, $1253 = 0, $1254 = 0, $1255 = 0, $1256 = 0, $1257 = 0, $1258 = 0, $1259 = 0, $126 = 0, $1260 = 0, $1261 = 0, $1262 = 0, $1263 = 0, $1264 = 0, $1265 = 0, $1266 = 0, $1267 = 0, $1268 = 0, $1269 = 0; + var $127 = 0, $1270 = 0, $1271 = 0, $1272 = 0, $1273 = 0, $1274 = 0, $1275 = 0, $1276 = 0, $1277 = 0, $1278 = 0, $1279 = 0, $128 = 0, $1280 = 0, $1281 = 0, $1282 = 0, $1283 = 0, $1284 = 0, $1285 = 0, $1286 = 0, $1287 = 0; + var $1288 = 0, $1289 = 0, $129 = 0, $1290 = 0, $1291 = 0, $1292 = 0, $1293 = 0, $1294 = 0, $1295 = 0, $1296 = 0, $1297 = 0, $1298 = 0, $1299 = 0, $13 = 0, $130 = 0, $1300 = 0, $1301 = 0, $1302 = 0, $1303 = 0, $1304 = 0; + var $1305 = 0, $1306 = 0, $1307 = 0, $1308 = 0, $1309 = 0, $131 = 0, $1310 = 0, $1311 = 0, $1312 = 0, $1313 = 0, $1314 = 0, $1315 = 0, $1316 = 0, $1317 = 0, $1318 = 0, $1319 = 0, $132 = 0, $1320 = 0, $1321 = 0, $1322 = 0; + var $1323 = 0, $1324 = 0, $1325 = 0, $1326 = 0, $1327 = 0, $1328 = 0, $1329 = 0, $133 = 0, $1330 = 0, $1331 = 0, $1332 = 0, $1333 = 0, $1334 = 0, $1335 = 0, $1336 = 0, $1337 = 0, $1338 = 0, $1339 = 0, $134 = 0, $1340 = 0; + var $1341 = 0, $1342 = 0, $1343 = 0, $1344 = 0, $1345 = 0, $1346 = 0, $1347 = 0, $1348 = 0, $1349 = 0, $135 = 0, $1350 = 0, $1351 = 0, $1352 = 0, $1353 = 0, $1354 = 0, $1355 = 0, $1356 = 0, $1357 = 0, $1358 = 0, $1359 = 0; + var $136 = 0, $1360 = 0, $1361 = 0, $1362 = 0, $1363 = 0, $1364 = 0, $1365 = 0, $1366 = 0, $1367 = 0, $1368 = 0, $1369 = 0, $137 = 0, $1370 = 0, $1371 = 0, $1372 = 0, $1373 = 0, $1374 = 0, $1375 = 0, $1376 = 0, $1377 = 0; + var $1378 = 0, $1379 = 0, $138 = 0, $1380 = 0, $1381 = 0, $1382 = 0, $1383 = 0, $1384 = 0, $1385 = 0, $1386 = 0, $1387 = 0, $1388 = 0, $1389 = 0, $139 = 0, $1390 = 0, $1391 = 0, $1392 = 0, $1393 = 0, $1394 = 0, $1395 = 0; + var $1396 = 0, $1397 = 0, $1398 = 0, $1399 = 0, $14 = 0, $140 = 0, $1400 = 0, $1401 = 0, $1402 = 0, $1403 = 0, $1404 = 0, $1405 = 0, $1406 = 0, $1407 = 0, $1408 = 0, $1409 = 0, $141 = 0, $1410 = 0, $1411 = 0, $1412 = 0; + var $1413 = 0, $1414 = 0, $1415 = 0, $1416 = 0, $1417 = 0, $1418 = 0, $1419 = 0, $142 = 0, $1420 = 0, $1421 = 0, $1422 = 0, $1423 = 0, $1424 = 0, $1425 = 0, $1426 = 0, $1427 = 0, $1428 = 0, $1429 = 0, $143 = 0, $1430 = 0; + var $1431 = 0, $1432 = 0, $1433 = 0, $1434 = 0, $1435 = 0, $1436 = 0, $1437 = 0, $1438 = 0, $1439 = 0, $144 = 0, $1440 = 0, $1441 = 0, $1442 = 0, $1443 = 0, $1444 = 0, $1445 = 0, $1446 = 0, $1447 = 0, $1448 = 0, $1449 = 0; + var $145 = 0, $1450 = 0, $1451 = 0, $1452 = 0, $1453 = 0, $1454 = 0, $1455 = 0, $1456 = 0, $1457 = 0, $1458 = 0, $1459 = 0, $146 = 0, $1460 = 0, $1461 = 0, $1462 = 0, $1463 = 0, $1464 = 0, $1465 = 0, $1466 = 0, $1467 = 0; + var $1468 = 0, $1469 = 0, $147 = 0, $1470 = 0, $1471 = 0, $1472 = 0, $1473 = 0, $1474 = 0, $1475 = 0, $1476 = 0, $1477 = 0, $1478 = 0, $1479 = 0, $148 = 0, $1480 = 0, $1481 = 0, $1482 = 0, $1483 = 0, $1484 = 0, $1485 = 0; + var $1486 = 0, $1487 = 0, $1488 = 0, $1489 = 0, $149 = 0, $1490 = 0, $1491 = 0, $1492 = 0, $1493 = 0, $1494 = 0, $1495 = 0, $1496 = 0, $1497 = 0, $1498 = 0, $1499 = 0, $15 = 0, $150 = 0, $1500 = 0, $1501 = 0, $1502 = 0; + var $1503 = 0, $1504 = 0, $1505 = 0, $1506 = 0, $1507 = 0, $1508 = 0, $1509 = 0, $151 = 0, $1510 = 0, $1511 = 0, $1512 = 0, $1513 = 0, $1514 = 0, $1515 = 0, $1516 = 0, $1517 = 0, $1518 = 0, $1519 = 0, $152 = 0, $1520 = 0; + var $1521 = 0, $1522 = 0, $1523 = 0, $1524 = 0, $1525 = 0, $1526 = 0, $1527 = 0, $1528 = 0, $1529 = 0, $153 = 0, $1530 = 0, $1531 = 0, $1532 = 0, $1533 = 0, $1534 = 0, $1535 = 0, $1536 = 0, $1537 = 0, $1538 = 0, $1539 = 0; + var $154 = 0, $1540 = 0, $1541 = 0, $1542 = 0, $1543 = 0, $1544 = 0, $1545 = 0, $1546 = 0, $1547 = 0, $1548 = 0, $1549 = 0, $155 = 0, $1550 = 0, $1551 = 0, $1552 = 0, $1553 = 0, $1554 = 0, $1555 = 0, $1556 = 0, $1557 = 0; + var $1558 = 0, $1559 = 0, $156 = 0, $1560 = 0, $1561 = 0, $1562 = 0, $1563 = 0, $1564 = 0, $1565 = 0, $1566 = 0, $1567 = 0, $1568 = 0, $1569 = 0, $157 = 0, $1570 = 0, $1571 = 0, $1572 = 0, $1573 = 0, $1574 = 0, $1575 = 0; + var $1576 = 0, $1577 = 0, $1578 = 0, $1579 = 0, $158 = 0, $1580 = 0, $1581 = 0, $1582 = 0, $1583 = 0, $1584 = 0, $1585 = 0, $1586 = 0, $1587 = 0, $1588 = 0, $1589 = 0, $159 = 0, $1590 = 0, $1591 = 0, $1592 = 0, $1593 = 0; + var $1594 = 0, $1595 = 0, $1596 = 0, $1597 = 0, $1598 = 0, $1599 = 0, $16 = 0, $160 = 0, $1600 = 0, $1601 = 0, $1602 = 0, $1603 = 0, $1604 = 0, $1605 = 0, $1606 = 0, $1607 = 0, $1608 = 0, $1609 = 0, $161 = 0, $1610 = 0; + var $1611 = 0, $1612 = 0, $1613 = 0, $1614 = 0, $1615 = 0, $1616 = 0, $1617 = 0, $1618 = 0, $1619 = 0, $162 = 0, $1620 = 0, $1621 = 0, $1622 = 0, $1623 = 0, $1624 = 0, $1625 = 0, $1626 = 0, $1627 = 0, $1628 = 0, $1629 = 0; + var $163 = 0, $1630 = 0, $1631 = 0, $1632 = 0, $1633 = 0, $1634 = 0, $1635 = 0, $1636 = 0, $1637 = 0, $1638 = 0, $1639 = 0, $164 = 0, $1640 = 0, $1641 = 0, $1642 = 0, $1643 = 0, $1644 = 0, $1645 = 0, $1646 = 0, $1647 = 0; + var $1648 = 0, $1649 = 0, $165 = 0, $1650 = 0, $1651 = 0, $1652 = 0, $1653 = 0, $1654 = 0, $1655 = 0, $1656 = 0, $1657 = 0, $1658 = 0, $1659 = 0, $166 = 0, $1660 = 0, $1661 = 0, $1662 = 0, $1663 = 0, $1664 = 0, $1665 = 0; + var $1666 = 0, $1667 = 0, $1668 = 0, $1669 = 0, $167 = 0, $1670 = 0, $1671 = 0, $1672 = 0, $1673 = 0, $1674 = 0, $1675 = 0, $1676 = 0, $1677 = 0, $1678 = 0, $1679 = 0, $168 = 0, $1680 = 0, $1681 = 0, $1682 = 0, $1683 = 0; + var $1684 = 0, $1685 = 0, $1686 = 0, $1687 = 0, $1688 = 0, $1689 = 0, $169 = 0, $1690 = 0, $1691 = 0, $1692 = 0, $1693 = 0, $1694 = 0, $1695 = 0, $1696 = 0, $1697 = 0, $1698 = 0, $1699 = 0, $17 = 0, $170 = 0, $1700 = 0; + var $1701 = 0, $1702 = 0, $1703 = 0, $1704 = 0, $1705 = 0, $1706 = 0, $1707 = 0, $1708 = 0, $1709 = 0, $171 = 0, $1710 = 0, $1711 = 0, $1712 = 0, $1713 = 0, $1714 = 0, $1715 = 0, $1716 = 0, $1717 = 0, $1718 = 0, $1719 = 0; + var $172 = 0, $1720 = 0, $1721 = 0, $1722 = 0, $1723 = 0, $1724 = 0, $1725 = 0, $1726 = 0, $1727 = 0, $1728 = 0, $1729 = 0, $173 = 0, $1730 = 0, $1731 = 0, $1732 = 0, $1733 = 0, $1734 = 0, $1735 = 0, $1736 = 0, $1737 = 0; + var $1738 = 0, $1739 = 0, $174 = 0, $1740 = 0, $1741 = 0, $1742 = 0, $1743 = 0, $1744 = 0, $1745 = 0, $1746 = 0, $1747 = 0, $1748 = 0, $1749 = 0, $175 = 0, $1750 = 0, $1751 = 0, $1752 = 0, $1753 = 0, $1754 = 0, $1755 = 0; + var $1756 = 0, $1757 = 0, $1758 = 0, $1759 = 0, $176 = 0, $1760 = 0, $1761 = 0, $1762 = 0, $1763 = 0, $1764 = 0, $1765 = 0, $1766 = 0, $1767 = 0, $1768 = 0, $1769 = 0, $177 = 0, $1770 = 0, $1771 = 0, $1772 = 0, $1773 = 0; + var $1774 = 0, $1775 = 0, $1776 = 0, $1777 = 0, $1778 = 0, $1779 = 0, $178 = 0, $1780 = 0, $1781 = 0, $1782 = 0, $1783 = 0, $1784 = 0, $1785 = 0, $1786 = 0, $1787 = 0, $1788 = 0, $1789 = 0, $179 = 0, $1790 = 0, $1791 = 0; + var $1792 = 0, $1793 = 0, $1794 = 0, $1795 = 0, $1796 = 0, $1797 = 0, $1798 = 0, $1799 = 0, $18 = 0, $180 = 0, $1800 = 0, $1801 = 0, $1802 = 0, $1803 = 0, $1804 = 0, $1805 = 0, $1806 = 0, $1807 = 0, $1808 = 0, $1809 = 0; + var $181 = 0, $1810 = 0, $1811 = 0, $1812 = 0, $1813 = 0, $1814 = 0, $1815 = 0, $1816 = 0, $1817 = 0, $1818 = 0, $1819 = 0, $182 = 0, $1820 = 0, $1821 = 0, $1822 = 0, $1823 = 0, $1824 = 0, $1825 = 0, $1826 = 0, $1827 = 0; + var $1828 = 0, $1829 = 0, $183 = 0, $1830 = 0, $1831 = 0, $1832 = 0, $1833 = 0, $1834 = 0, $1835 = 0, $1836 = 0, $1837 = 0, $1838 = 0, $1839 = 0, $184 = 0, $1840 = 0, $1841 = 0, $1842 = 0, $1843 = 0, $1844 = 0, $1845 = 0; + var $1846 = 0, $1847 = 0, $1848 = 0, $1849 = 0, $185 = 0, $1850 = 0, $1851 = 0, $1852 = 0, $1853 = 0, $1854 = 0, $1855 = 0, $1856 = 0, $1857 = 0, $1858 = 0, $1859 = 0, $186 = 0, $1860 = 0, $1861 = 0, $1862 = 0, $1863 = 0; + var $1864 = 0, $1865 = 0, $1866 = 0, $1867 = 0, $1868 = 0, $1869 = 0, $187 = 0, $1870 = 0, $1871 = 0, $1872 = 0, $1873 = 0, $1874 = 0, $1875 = 0, $1876 = 0, $1877 = 0, $1878 = 0, $1879 = 0, $188 = 0, $1880 = 0, $1881 = 0; + var $1882 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; + var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; + var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; + var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; + var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; + var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; + var $297 = 0, $298 = 0, $299 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0; + var $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0; + var $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0; var $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0; var $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0; var $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0; @@ -15753,1491 +12219,1487 @@ function _crypto_sign_ed25519_ref10_sc_muladd($s,$a,$b,$c) { var $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, label = 0; var sp = 0; sp = STACKTOP; - $0 = (_load_347($a)|0); - $1 = tempRet0; - $2 = $0 & 2097151; - $3 = ((($a)) + 2|0); - $4 = (_load_448($3)|0); + $4 = (_load_3_47($1)|0); $5 = tempRet0; - $6 = (_bitshift64Lshr(($4|0),($5|0),5)|0); - $7 = tempRet0; - $8 = $6 & 2097151; - $9 = ((($a)) + 5|0); - $10 = (_load_347($9)|0); + $6 = $4 & 2097151; + $7 = ((($1)) + 2|0); + $8 = (_load_4_48($7)|0); + $9 = tempRet0; + $10 = (_bitshift64Lshr(($8|0),($9|0),5)|0); $11 = tempRet0; - $12 = (_bitshift64Lshr(($10|0),($11|0),2)|0); - $13 = tempRet0; - $14 = $12 & 2097151; - $15 = ((($a)) + 7|0); - $16 = (_load_448($15)|0); + $12 = $10 & 2097151; + $13 = ((($1)) + 5|0); + $14 = (_load_3_47($13)|0); + $15 = tempRet0; + $16 = (_bitshift64Lshr(($14|0),($15|0),2)|0); $17 = tempRet0; - $18 = (_bitshift64Lshr(($16|0),($17|0),7)|0); - $19 = tempRet0; - $20 = $18 & 2097151; - $21 = ((($a)) + 10|0); - $22 = (_load_448($21)|0); + $18 = $16 & 2097151; + $19 = ((($1)) + 7|0); + $20 = (_load_4_48($19)|0); + $21 = tempRet0; + $22 = (_bitshift64Lshr(($20|0),($21|0),7)|0); $23 = tempRet0; - $24 = (_bitshift64Lshr(($22|0),($23|0),4)|0); - $25 = tempRet0; - $26 = $24 & 2097151; - $27 = ((($a)) + 13|0); - $28 = (_load_347($27)|0); + $24 = $22 & 2097151; + $25 = ((($1)) + 10|0); + $26 = (_load_4_48($25)|0); + $27 = tempRet0; + $28 = (_bitshift64Lshr(($26|0),($27|0),4)|0); $29 = tempRet0; - $30 = (_bitshift64Lshr(($28|0),($29|0),1)|0); - $31 = tempRet0; - $32 = $30 & 2097151; - $33 = ((($a)) + 15|0); - $34 = (_load_448($33)|0); + $30 = $28 & 2097151; + $31 = ((($1)) + 13|0); + $32 = (_load_3_47($31)|0); + $33 = tempRet0; + $34 = (_bitshift64Lshr(($32|0),($33|0),1)|0); $35 = tempRet0; - $36 = (_bitshift64Lshr(($34|0),($35|0),6)|0); - $37 = tempRet0; - $38 = $36 & 2097151; - $39 = ((($a)) + 18|0); - $40 = (_load_347($39)|0); + $36 = $34 & 2097151; + $37 = ((($1)) + 15|0); + $38 = (_load_4_48($37)|0); + $39 = tempRet0; + $40 = (_bitshift64Lshr(($38|0),($39|0),6)|0); $41 = tempRet0; - $42 = (_bitshift64Lshr(($40|0),($41|0),3)|0); - $43 = tempRet0; - $44 = $42 & 2097151; - $45 = ((($a)) + 21|0); - $46 = (_load_347($45)|0); + $42 = $40 & 2097151; + $43 = ((($1)) + 18|0); + $44 = (_load_3_47($43)|0); + $45 = tempRet0; + $46 = (_bitshift64Lshr(($44|0),($45|0),3)|0); $47 = tempRet0; $48 = $46 & 2097151; - $49 = ((($a)) + 23|0); - $50 = (_load_448($49)|0); + $49 = ((($1)) + 21|0); + $50 = (_load_3_47($49)|0); $51 = tempRet0; - $52 = (_bitshift64Lshr(($50|0),($51|0),5)|0); - $53 = tempRet0; - $54 = $52 & 2097151; - $55 = ((($a)) + 26|0); - $56 = (_load_347($55)|0); + $52 = $50 & 2097151; + $53 = ((($1)) + 23|0); + $54 = (_load_4_48($53)|0); + $55 = tempRet0; + $56 = (_bitshift64Lshr(($54|0),($55|0),5)|0); $57 = tempRet0; - $58 = (_bitshift64Lshr(($56|0),($57|0),2)|0); - $59 = tempRet0; - $60 = $58 & 2097151; - $61 = ((($a)) + 28|0); - $62 = (_load_448($61)|0); + $58 = $56 & 2097151; + $59 = ((($1)) + 26|0); + $60 = (_load_3_47($59)|0); + $61 = tempRet0; + $62 = (_bitshift64Lshr(($60|0),($61|0),2)|0); $63 = tempRet0; - $64 = (_bitshift64Lshr(($62|0),($63|0),7)|0); - $65 = tempRet0; - $66 = (_load_347($b)|0); + $64 = $62 & 2097151; + $65 = ((($1)) + 28|0); + $66 = (_load_4_48($65)|0); $67 = tempRet0; - $68 = $66 & 2097151; - $69 = ((($b)) + 2|0); - $70 = (_load_448($69)|0); + $68 = (_bitshift64Lshr(($66|0),($67|0),7)|0); + $69 = tempRet0; + $70 = (_load_3_47($2)|0); $71 = tempRet0; - $72 = (_bitshift64Lshr(($70|0),($71|0),5)|0); - $73 = tempRet0; - $74 = $72 & 2097151; - $75 = ((($b)) + 5|0); - $76 = (_load_347($75)|0); + $72 = $70 & 2097151; + $73 = ((($2)) + 2|0); + $74 = (_load_4_48($73)|0); + $75 = tempRet0; + $76 = (_bitshift64Lshr(($74|0),($75|0),5)|0); $77 = tempRet0; - $78 = (_bitshift64Lshr(($76|0),($77|0),2)|0); - $79 = tempRet0; - $80 = $78 & 2097151; - $81 = ((($b)) + 7|0); - $82 = (_load_448($81)|0); + $78 = $76 & 2097151; + $79 = ((($2)) + 5|0); + $80 = (_load_3_47($79)|0); + $81 = tempRet0; + $82 = (_bitshift64Lshr(($80|0),($81|0),2)|0); $83 = tempRet0; - $84 = (_bitshift64Lshr(($82|0),($83|0),7)|0); - $85 = tempRet0; - $86 = $84 & 2097151; - $87 = ((($b)) + 10|0); - $88 = (_load_448($87)|0); + $84 = $82 & 2097151; + $85 = ((($2)) + 7|0); + $86 = (_load_4_48($85)|0); + $87 = tempRet0; + $88 = (_bitshift64Lshr(($86|0),($87|0),7)|0); $89 = tempRet0; - $90 = (_bitshift64Lshr(($88|0),($89|0),4)|0); - $91 = tempRet0; - $92 = $90 & 2097151; - $93 = ((($b)) + 13|0); - $94 = (_load_347($93)|0); + $90 = $88 & 2097151; + $91 = ((($2)) + 10|0); + $92 = (_load_4_48($91)|0); + $93 = tempRet0; + $94 = (_bitshift64Lshr(($92|0),($93|0),4)|0); $95 = tempRet0; - $96 = (_bitshift64Lshr(($94|0),($95|0),1)|0); - $97 = tempRet0; - $98 = $96 & 2097151; - $99 = ((($b)) + 15|0); - $100 = (_load_448($99)|0); + $96 = $94 & 2097151; + $97 = ((($2)) + 13|0); + $98 = (_load_3_47($97)|0); + $99 = tempRet0; + $100 = (_bitshift64Lshr(($98|0),($99|0),1)|0); $101 = tempRet0; - $102 = (_bitshift64Lshr(($100|0),($101|0),6)|0); - $103 = tempRet0; - $104 = $102 & 2097151; - $105 = ((($b)) + 18|0); - $106 = (_load_347($105)|0); + $102 = $100 & 2097151; + $103 = ((($2)) + 15|0); + $104 = (_load_4_48($103)|0); + $105 = tempRet0; + $106 = (_bitshift64Lshr(($104|0),($105|0),6)|0); $107 = tempRet0; - $108 = (_bitshift64Lshr(($106|0),($107|0),3)|0); - $109 = tempRet0; - $110 = $108 & 2097151; - $111 = ((($b)) + 21|0); - $112 = (_load_347($111)|0); + $108 = $106 & 2097151; + $109 = ((($2)) + 18|0); + $110 = (_load_3_47($109)|0); + $111 = tempRet0; + $112 = (_bitshift64Lshr(($110|0),($111|0),3)|0); $113 = tempRet0; $114 = $112 & 2097151; - $115 = ((($b)) + 23|0); - $116 = (_load_448($115)|0); + $115 = ((($2)) + 21|0); + $116 = (_load_3_47($115)|0); $117 = tempRet0; - $118 = (_bitshift64Lshr(($116|0),($117|0),5)|0); - $119 = tempRet0; - $120 = $118 & 2097151; - $121 = ((($b)) + 26|0); - $122 = (_load_347($121)|0); + $118 = $116 & 2097151; + $119 = ((($2)) + 23|0); + $120 = (_load_4_48($119)|0); + $121 = tempRet0; + $122 = (_bitshift64Lshr(($120|0),($121|0),5)|0); $123 = tempRet0; - $124 = (_bitshift64Lshr(($122|0),($123|0),2)|0); - $125 = tempRet0; - $126 = $124 & 2097151; - $127 = ((($b)) + 28|0); - $128 = (_load_448($127)|0); + $124 = $122 & 2097151; + $125 = ((($2)) + 26|0); + $126 = (_load_3_47($125)|0); + $127 = tempRet0; + $128 = (_bitshift64Lshr(($126|0),($127|0),2)|0); $129 = tempRet0; - $130 = (_bitshift64Lshr(($128|0),($129|0),7)|0); - $131 = tempRet0; - $132 = (_load_347($c)|0); + $130 = $128 & 2097151; + $131 = ((($2)) + 28|0); + $132 = (_load_4_48($131)|0); $133 = tempRet0; - $134 = $132 & 2097151; - $135 = ((($c)) + 2|0); - $136 = (_load_448($135)|0); + $134 = (_bitshift64Lshr(($132|0),($133|0),7)|0); + $135 = tempRet0; + $136 = (_load_3_47($3)|0); $137 = tempRet0; - $138 = (_bitshift64Lshr(($136|0),($137|0),5)|0); - $139 = tempRet0; - $140 = $138 & 2097151; - $141 = ((($c)) + 5|0); - $142 = (_load_347($141)|0); + $138 = $136 & 2097151; + $139 = ((($3)) + 2|0); + $140 = (_load_4_48($139)|0); + $141 = tempRet0; + $142 = (_bitshift64Lshr(($140|0),($141|0),5)|0); $143 = tempRet0; - $144 = (_bitshift64Lshr(($142|0),($143|0),2)|0); - $145 = tempRet0; - $146 = $144 & 2097151; - $147 = ((($c)) + 7|0); - $148 = (_load_448($147)|0); + $144 = $142 & 2097151; + $145 = ((($3)) + 5|0); + $146 = (_load_3_47($145)|0); + $147 = tempRet0; + $148 = (_bitshift64Lshr(($146|0),($147|0),2)|0); $149 = tempRet0; - $150 = (_bitshift64Lshr(($148|0),($149|0),7)|0); - $151 = tempRet0; - $152 = $150 & 2097151; - $153 = ((($c)) + 10|0); - $154 = (_load_448($153)|0); + $150 = $148 & 2097151; + $151 = ((($3)) + 7|0); + $152 = (_load_4_48($151)|0); + $153 = tempRet0; + $154 = (_bitshift64Lshr(($152|0),($153|0),7)|0); $155 = tempRet0; - $156 = (_bitshift64Lshr(($154|0),($155|0),4)|0); - $157 = tempRet0; - $158 = $156 & 2097151; - $159 = ((($c)) + 13|0); - $160 = (_load_347($159)|0); + $156 = $154 & 2097151; + $157 = ((($3)) + 10|0); + $158 = (_load_4_48($157)|0); + $159 = tempRet0; + $160 = (_bitshift64Lshr(($158|0),($159|0),4)|0); $161 = tempRet0; - $162 = (_bitshift64Lshr(($160|0),($161|0),1)|0); - $163 = tempRet0; - $164 = $162 & 2097151; - $165 = ((($c)) + 15|0); - $166 = (_load_448($165)|0); + $162 = $160 & 2097151; + $163 = ((($3)) + 13|0); + $164 = (_load_3_47($163)|0); + $165 = tempRet0; + $166 = (_bitshift64Lshr(($164|0),($165|0),1)|0); $167 = tempRet0; - $168 = (_bitshift64Lshr(($166|0),($167|0),6)|0); - $169 = tempRet0; - $170 = $168 & 2097151; - $171 = ((($c)) + 18|0); - $172 = (_load_347($171)|0); + $168 = $166 & 2097151; + $169 = ((($3)) + 15|0); + $170 = (_load_4_48($169)|0); + $171 = tempRet0; + $172 = (_bitshift64Lshr(($170|0),($171|0),6)|0); $173 = tempRet0; - $174 = (_bitshift64Lshr(($172|0),($173|0),3)|0); - $175 = tempRet0; - $176 = $174 & 2097151; - $177 = ((($c)) + 21|0); - $178 = (_load_347($177)|0); + $174 = $172 & 2097151; + $175 = ((($3)) + 18|0); + $176 = (_load_3_47($175)|0); + $177 = tempRet0; + $178 = (_bitshift64Lshr(($176|0),($177|0),3)|0); $179 = tempRet0; $180 = $178 & 2097151; - $181 = ((($c)) + 23|0); - $182 = (_load_448($181)|0); + $181 = ((($3)) + 21|0); + $182 = (_load_3_47($181)|0); $183 = tempRet0; - $184 = (_bitshift64Lshr(($182|0),($183|0),5)|0); - $185 = tempRet0; - $186 = $184 & 2097151; - $187 = ((($c)) + 26|0); - $188 = (_load_347($187)|0); + $184 = $182 & 2097151; + $185 = ((($3)) + 23|0); + $186 = (_load_4_48($185)|0); + $187 = tempRet0; + $188 = (_bitshift64Lshr(($186|0),($187|0),5)|0); $189 = tempRet0; - $190 = (_bitshift64Lshr(($188|0),($189|0),2)|0); - $191 = tempRet0; - $192 = $190 & 2097151; - $193 = ((($c)) + 28|0); - $194 = (_load_448($193)|0); + $190 = $188 & 2097151; + $191 = ((($3)) + 26|0); + $192 = (_load_3_47($191)|0); + $193 = tempRet0; + $194 = (_bitshift64Lshr(($192|0),($193|0),2)|0); $195 = tempRet0; - $196 = (_bitshift64Lshr(($194|0),($195|0),7)|0); - $197 = tempRet0; - $198 = (___muldi3(($68|0),0,($2|0),0)|0); + $196 = $194 & 2097151; + $197 = ((($3)) + 28|0); + $198 = (_load_4_48($197)|0); $199 = tempRet0; - $200 = (_i64Add(($134|0),0,($198|0),($199|0))|0); + $200 = (_bitshift64Lshr(($198|0),($199|0),7)|0); $201 = tempRet0; - $202 = (___muldi3(($74|0),0,($2|0),0)|0); + $202 = (___muldi3(($72|0),0,($6|0),0)|0); $203 = tempRet0; - $204 = (___muldi3(($68|0),0,($8|0),0)|0); + $204 = (_i64Add(($138|0),0,($202|0),($203|0))|0); $205 = tempRet0; - $206 = (___muldi3(($80|0),0,($2|0),0)|0); + $206 = (___muldi3(($78|0),0,($6|0),0)|0); $207 = tempRet0; - $208 = (___muldi3(($74|0),0,($8|0),0)|0); + $208 = (___muldi3(($72|0),0,($12|0),0)|0); $209 = tempRet0; - $210 = (___muldi3(($68|0),0,($14|0),0)|0); + $210 = (___muldi3(($84|0),0,($6|0),0)|0); $211 = tempRet0; - $212 = (_i64Add(($208|0),($209|0),($210|0),($211|0))|0); + $212 = (___muldi3(($78|0),0,($12|0),0)|0); $213 = tempRet0; - $214 = (_i64Add(($212|0),($213|0),($206|0),($207|0))|0); + $214 = (___muldi3(($72|0),0,($18|0),0)|0); $215 = tempRet0; - $216 = (_i64Add(($214|0),($215|0),($146|0),0)|0); + $216 = (_i64Add(($212|0),($213|0),($214|0),($215|0))|0); $217 = tempRet0; - $218 = (___muldi3(($86|0),0,($2|0),0)|0); + $218 = (_i64Add(($216|0),($217|0),($210|0),($211|0))|0); $219 = tempRet0; - $220 = (___muldi3(($80|0),0,($8|0),0)|0); + $220 = (_i64Add(($218|0),($219|0),($150|0),0)|0); $221 = tempRet0; - $222 = (___muldi3(($74|0),0,($14|0),0)|0); + $222 = (___muldi3(($90|0),0,($6|0),0)|0); $223 = tempRet0; - $224 = (___muldi3(($68|0),0,($20|0),0)|0); + $224 = (___muldi3(($84|0),0,($12|0),0)|0); $225 = tempRet0; - $226 = (___muldi3(($92|0),0,($2|0),0)|0); + $226 = (___muldi3(($78|0),0,($18|0),0)|0); $227 = tempRet0; - $228 = (___muldi3(($86|0),0,($8|0),0)|0); + $228 = (___muldi3(($72|0),0,($24|0),0)|0); $229 = tempRet0; - $230 = (___muldi3(($80|0),0,($14|0),0)|0); + $230 = (___muldi3(($96|0),0,($6|0),0)|0); $231 = tempRet0; - $232 = (___muldi3(($74|0),0,($20|0),0)|0); + $232 = (___muldi3(($90|0),0,($12|0),0)|0); $233 = tempRet0; - $234 = (___muldi3(($68|0),0,($26|0),0)|0); + $234 = (___muldi3(($84|0),0,($18|0),0)|0); $235 = tempRet0; - $236 = (_i64Add(($232|0),($233|0),($234|0),($235|0))|0); + $236 = (___muldi3(($78|0),0,($24|0),0)|0); $237 = tempRet0; - $238 = (_i64Add(($236|0),($237|0),($230|0),($231|0))|0); + $238 = (___muldi3(($72|0),0,($30|0),0)|0); $239 = tempRet0; - $240 = (_i64Add(($238|0),($239|0),($228|0),($229|0))|0); + $240 = (_i64Add(($236|0),($237|0),($238|0),($239|0))|0); $241 = tempRet0; - $242 = (_i64Add(($240|0),($241|0),($226|0),($227|0))|0); + $242 = (_i64Add(($240|0),($241|0),($234|0),($235|0))|0); $243 = tempRet0; - $244 = (_i64Add(($242|0),($243|0),($158|0),0)|0); + $244 = (_i64Add(($242|0),($243|0),($232|0),($233|0))|0); $245 = tempRet0; - $246 = (___muldi3(($98|0),0,($2|0),0)|0); + $246 = (_i64Add(($244|0),($245|0),($230|0),($231|0))|0); $247 = tempRet0; - $248 = (___muldi3(($92|0),0,($8|0),0)|0); + $248 = (_i64Add(($246|0),($247|0),($162|0),0)|0); $249 = tempRet0; - $250 = (___muldi3(($86|0),0,($14|0),0)|0); + $250 = (___muldi3(($102|0),0,($6|0),0)|0); $251 = tempRet0; - $252 = (___muldi3(($80|0),0,($20|0),0)|0); + $252 = (___muldi3(($96|0),0,($12|0),0)|0); $253 = tempRet0; - $254 = (___muldi3(($74|0),0,($26|0),0)|0); + $254 = (___muldi3(($90|0),0,($18|0),0)|0); $255 = tempRet0; - $256 = (___muldi3(($68|0),0,($32|0),0)|0); + $256 = (___muldi3(($84|0),0,($24|0),0)|0); $257 = tempRet0; - $258 = (___muldi3(($104|0),0,($2|0),0)|0); + $258 = (___muldi3(($78|0),0,($30|0),0)|0); $259 = tempRet0; - $260 = (___muldi3(($98|0),0,($8|0),0)|0); + $260 = (___muldi3(($72|0),0,($36|0),0)|0); $261 = tempRet0; - $262 = (___muldi3(($92|0),0,($14|0),0)|0); + $262 = (___muldi3(($108|0),0,($6|0),0)|0); $263 = tempRet0; - $264 = (___muldi3(($86|0),0,($20|0),0)|0); + $264 = (___muldi3(($102|0),0,($12|0),0)|0); $265 = tempRet0; - $266 = (___muldi3(($80|0),0,($26|0),0)|0); + $266 = (___muldi3(($96|0),0,($18|0),0)|0); $267 = tempRet0; - $268 = (___muldi3(($74|0),0,($32|0),0)|0); + $268 = (___muldi3(($90|0),0,($24|0),0)|0); $269 = tempRet0; - $270 = (___muldi3(($68|0),0,($38|0),0)|0); + $270 = (___muldi3(($84|0),0,($30|0),0)|0); $271 = tempRet0; - $272 = (_i64Add(($268|0),($269|0),($270|0),($271|0))|0); + $272 = (___muldi3(($78|0),0,($36|0),0)|0); $273 = tempRet0; - $274 = (_i64Add(($272|0),($273|0),($266|0),($267|0))|0); + $274 = (___muldi3(($72|0),0,($42|0),0)|0); $275 = tempRet0; - $276 = (_i64Add(($274|0),($275|0),($264|0),($265|0))|0); + $276 = (_i64Add(($272|0),($273|0),($274|0),($275|0))|0); $277 = tempRet0; - $278 = (_i64Add(($276|0),($277|0),($262|0),($263|0))|0); + $278 = (_i64Add(($276|0),($277|0),($270|0),($271|0))|0); $279 = tempRet0; - $280 = (_i64Add(($278|0),($279|0),($260|0),($261|0))|0); + $280 = (_i64Add(($278|0),($279|0),($268|0),($269|0))|0); $281 = tempRet0; - $282 = (_i64Add(($280|0),($281|0),($258|0),($259|0))|0); + $282 = (_i64Add(($280|0),($281|0),($266|0),($267|0))|0); $283 = tempRet0; - $284 = (_i64Add(($282|0),($283|0),($170|0),0)|0); + $284 = (_i64Add(($282|0),($283|0),($264|0),($265|0))|0); $285 = tempRet0; - $286 = (___muldi3(($110|0),0,($2|0),0)|0); + $286 = (_i64Add(($284|0),($285|0),($262|0),($263|0))|0); $287 = tempRet0; - $288 = (___muldi3(($104|0),0,($8|0),0)|0); + $288 = (_i64Add(($286|0),($287|0),($174|0),0)|0); $289 = tempRet0; - $290 = (___muldi3(($98|0),0,($14|0),0)|0); + $290 = (___muldi3(($114|0),0,($6|0),0)|0); $291 = tempRet0; - $292 = (___muldi3(($92|0),0,($20|0),0)|0); + $292 = (___muldi3(($108|0),0,($12|0),0)|0); $293 = tempRet0; - $294 = (___muldi3(($86|0),0,($26|0),0)|0); + $294 = (___muldi3(($102|0),0,($18|0),0)|0); $295 = tempRet0; - $296 = (___muldi3(($80|0),0,($32|0),0)|0); + $296 = (___muldi3(($96|0),0,($24|0),0)|0); $297 = tempRet0; - $298 = (___muldi3(($74|0),0,($38|0),0)|0); + $298 = (___muldi3(($90|0),0,($30|0),0)|0); $299 = tempRet0; - $300 = (___muldi3(($68|0),0,($44|0),0)|0); + $300 = (___muldi3(($84|0),0,($36|0),0)|0); $301 = tempRet0; - $302 = (___muldi3(($114|0),0,($2|0),0)|0); + $302 = (___muldi3(($78|0),0,($42|0),0)|0); $303 = tempRet0; - $304 = (___muldi3(($110|0),0,($8|0),0)|0); + $304 = (___muldi3(($72|0),0,($48|0),0)|0); $305 = tempRet0; - $306 = (___muldi3(($104|0),0,($14|0),0)|0); + $306 = (___muldi3(($118|0),0,($6|0),0)|0); $307 = tempRet0; - $308 = (___muldi3(($98|0),0,($20|0),0)|0); + $308 = (___muldi3(($114|0),0,($12|0),0)|0); $309 = tempRet0; - $310 = (___muldi3(($92|0),0,($26|0),0)|0); + $310 = (___muldi3(($108|0),0,($18|0),0)|0); $311 = tempRet0; - $312 = (___muldi3(($86|0),0,($32|0),0)|0); + $312 = (___muldi3(($102|0),0,($24|0),0)|0); $313 = tempRet0; - $314 = (___muldi3(($80|0),0,($38|0),0)|0); + $314 = (___muldi3(($96|0),0,($30|0),0)|0); $315 = tempRet0; - $316 = (___muldi3(($74|0),0,($44|0),0)|0); + $316 = (___muldi3(($90|0),0,($36|0),0)|0); $317 = tempRet0; - $318 = (___muldi3(($68|0),0,($48|0),0)|0); + $318 = (___muldi3(($84|0),0,($42|0),0)|0); $319 = tempRet0; - $320 = (_i64Add(($316|0),($317|0),($318|0),($319|0))|0); + $320 = (___muldi3(($78|0),0,($48|0),0)|0); $321 = tempRet0; - $322 = (_i64Add(($320|0),($321|0),($314|0),($315|0))|0); + $322 = (___muldi3(($72|0),0,($52|0),0)|0); $323 = tempRet0; - $324 = (_i64Add(($322|0),($323|0),($312|0),($313|0))|0); + $324 = (_i64Add(($320|0),($321|0),($322|0),($323|0))|0); $325 = tempRet0; - $326 = (_i64Add(($324|0),($325|0),($310|0),($311|0))|0); + $326 = (_i64Add(($324|0),($325|0),($318|0),($319|0))|0); $327 = tempRet0; - $328 = (_i64Add(($326|0),($327|0),($308|0),($309|0))|0); + $328 = (_i64Add(($326|0),($327|0),($316|0),($317|0))|0); $329 = tempRet0; - $330 = (_i64Add(($328|0),($329|0),($306|0),($307|0))|0); + $330 = (_i64Add(($328|0),($329|0),($314|0),($315|0))|0); $331 = tempRet0; - $332 = (_i64Add(($330|0),($331|0),($302|0),($303|0))|0); + $332 = (_i64Add(($330|0),($331|0),($312|0),($313|0))|0); $333 = tempRet0; - $334 = (_i64Add(($332|0),($333|0),($304|0),($305|0))|0); + $334 = (_i64Add(($332|0),($333|0),($310|0),($311|0))|0); $335 = tempRet0; - $336 = (_i64Add(($334|0),($335|0),($180|0),0)|0); + $336 = (_i64Add(($334|0),($335|0),($306|0),($307|0))|0); $337 = tempRet0; - $338 = (___muldi3(($120|0),0,($2|0),0)|0); + $338 = (_i64Add(($336|0),($337|0),($308|0),($309|0))|0); $339 = tempRet0; - $340 = (___muldi3(($114|0),0,($8|0),0)|0); + $340 = (_i64Add(($338|0),($339|0),($184|0),0)|0); $341 = tempRet0; - $342 = (___muldi3(($110|0),0,($14|0),0)|0); + $342 = (___muldi3(($124|0),0,($6|0),0)|0); $343 = tempRet0; - $344 = (___muldi3(($104|0),0,($20|0),0)|0); + $344 = (___muldi3(($118|0),0,($12|0),0)|0); $345 = tempRet0; - $346 = (___muldi3(($98|0),0,($26|0),0)|0); + $346 = (___muldi3(($114|0),0,($18|0),0)|0); $347 = tempRet0; - $348 = (___muldi3(($92|0),0,($32|0),0)|0); + $348 = (___muldi3(($108|0),0,($24|0),0)|0); $349 = tempRet0; - $350 = (___muldi3(($86|0),0,($38|0),0)|0); + $350 = (___muldi3(($102|0),0,($30|0),0)|0); $351 = tempRet0; - $352 = (___muldi3(($80|0),0,($44|0),0)|0); + $352 = (___muldi3(($96|0),0,($36|0),0)|0); $353 = tempRet0; - $354 = (___muldi3(($74|0),0,($48|0),0)|0); + $354 = (___muldi3(($90|0),0,($42|0),0)|0); $355 = tempRet0; - $356 = (___muldi3(($68|0),0,($54|0),0)|0); + $356 = (___muldi3(($84|0),0,($48|0),0)|0); $357 = tempRet0; - $358 = (___muldi3(($126|0),0,($2|0),0)|0); + $358 = (___muldi3(($78|0),0,($52|0),0)|0); $359 = tempRet0; - $360 = (___muldi3(($120|0),0,($8|0),0)|0); + $360 = (___muldi3(($72|0),0,($58|0),0)|0); $361 = tempRet0; - $362 = (___muldi3(($114|0),0,($14|0),0)|0); + $362 = (___muldi3(($130|0),0,($6|0),0)|0); $363 = tempRet0; - $364 = (___muldi3(($110|0),0,($20|0),0)|0); + $364 = (___muldi3(($124|0),0,($12|0),0)|0); $365 = tempRet0; - $366 = (___muldi3(($104|0),0,($26|0),0)|0); + $366 = (___muldi3(($118|0),0,($18|0),0)|0); $367 = tempRet0; - $368 = (___muldi3(($98|0),0,($32|0),0)|0); + $368 = (___muldi3(($114|0),0,($24|0),0)|0); $369 = tempRet0; - $370 = (___muldi3(($92|0),0,($38|0),0)|0); + $370 = (___muldi3(($108|0),0,($30|0),0)|0); $371 = tempRet0; - $372 = (___muldi3(($86|0),0,($44|0),0)|0); + $372 = (___muldi3(($102|0),0,($36|0),0)|0); $373 = tempRet0; - $374 = (___muldi3(($80|0),0,($48|0),0)|0); + $374 = (___muldi3(($96|0),0,($42|0),0)|0); $375 = tempRet0; - $376 = (___muldi3(($74|0),0,($54|0),0)|0); + $376 = (___muldi3(($90|0),0,($48|0),0)|0); $377 = tempRet0; - $378 = (___muldi3(($68|0),0,($60|0),0)|0); + $378 = (___muldi3(($84|0),0,($52|0),0)|0); $379 = tempRet0; - $380 = (_i64Add(($376|0),($377|0),($378|0),($379|0))|0); + $380 = (___muldi3(($78|0),0,($58|0),0)|0); $381 = tempRet0; - $382 = (_i64Add(($380|0),($381|0),($374|0),($375|0))|0); + $382 = (___muldi3(($72|0),0,($64|0),0)|0); $383 = tempRet0; - $384 = (_i64Add(($382|0),($383|0),($372|0),($373|0))|0); + $384 = (_i64Add(($380|0),($381|0),($382|0),($383|0))|0); $385 = tempRet0; - $386 = (_i64Add(($384|0),($385|0),($370|0),($371|0))|0); + $386 = (_i64Add(($384|0),($385|0),($378|0),($379|0))|0); $387 = tempRet0; - $388 = (_i64Add(($386|0),($387|0),($368|0),($369|0))|0); + $388 = (_i64Add(($386|0),($387|0),($376|0),($377|0))|0); $389 = tempRet0; - $390 = (_i64Add(($388|0),($389|0),($366|0),($367|0))|0); + $390 = (_i64Add(($388|0),($389|0),($374|0),($375|0))|0); $391 = tempRet0; - $392 = (_i64Add(($390|0),($391|0),($362|0),($363|0))|0); + $392 = (_i64Add(($390|0),($391|0),($372|0),($373|0))|0); $393 = tempRet0; - $394 = (_i64Add(($392|0),($393|0),($364|0),($365|0))|0); + $394 = (_i64Add(($392|0),($393|0),($370|0),($371|0))|0); $395 = tempRet0; - $396 = (_i64Add(($394|0),($395|0),($360|0),($361|0))|0); + $396 = (_i64Add(($394|0),($395|0),($366|0),($367|0))|0); $397 = tempRet0; - $398 = (_i64Add(($396|0),($397|0),($358|0),($359|0))|0); + $398 = (_i64Add(($396|0),($397|0),($368|0),($369|0))|0); $399 = tempRet0; - $400 = (_i64Add(($398|0),($399|0),($192|0),0)|0); + $400 = (_i64Add(($398|0),($399|0),($364|0),($365|0))|0); $401 = tempRet0; - $402 = (___muldi3(($130|0),($131|0),($2|0),0)|0); + $402 = (_i64Add(($400|0),($401|0),($362|0),($363|0))|0); $403 = tempRet0; - $404 = (___muldi3(($126|0),0,($8|0),0)|0); + $404 = (_i64Add(($402|0),($403|0),($196|0),0)|0); $405 = tempRet0; - $406 = (___muldi3(($120|0),0,($14|0),0)|0); + $406 = (___muldi3(($134|0),($135|0),($6|0),0)|0); $407 = tempRet0; - $408 = (___muldi3(($114|0),0,($20|0),0)|0); + $408 = (___muldi3(($130|0),0,($12|0),0)|0); $409 = tempRet0; - $410 = (___muldi3(($110|0),0,($26|0),0)|0); + $410 = (___muldi3(($124|0),0,($18|0),0)|0); $411 = tempRet0; - $412 = (___muldi3(($104|0),0,($32|0),0)|0); + $412 = (___muldi3(($118|0),0,($24|0),0)|0); $413 = tempRet0; - $414 = (___muldi3(($98|0),0,($38|0),0)|0); + $414 = (___muldi3(($114|0),0,($30|0),0)|0); $415 = tempRet0; - $416 = (___muldi3(($92|0),0,($44|0),0)|0); + $416 = (___muldi3(($108|0),0,($36|0),0)|0); $417 = tempRet0; - $418 = (___muldi3(($86|0),0,($48|0),0)|0); + $418 = (___muldi3(($102|0),0,($42|0),0)|0); $419 = tempRet0; - $420 = (___muldi3(($80|0),0,($54|0),0)|0); + $420 = (___muldi3(($96|0),0,($48|0),0)|0); $421 = tempRet0; - $422 = (___muldi3(($74|0),0,($60|0),0)|0); + $422 = (___muldi3(($90|0),0,($52|0),0)|0); $423 = tempRet0; - $424 = (___muldi3(($68|0),0,($64|0),($65|0))|0); + $424 = (___muldi3(($84|0),0,($58|0),0)|0); $425 = tempRet0; - $426 = (___muldi3(($130|0),($131|0),($8|0),0)|0); + $426 = (___muldi3(($78|0),0,($64|0),0)|0); $427 = tempRet0; - $428 = (___muldi3(($126|0),0,($14|0),0)|0); + $428 = (___muldi3(($72|0),0,($68|0),($69|0))|0); $429 = tempRet0; - $430 = (___muldi3(($120|0),0,($20|0),0)|0); + $430 = (___muldi3(($134|0),($135|0),($12|0),0)|0); $431 = tempRet0; - $432 = (___muldi3(($114|0),0,($26|0),0)|0); + $432 = (___muldi3(($130|0),0,($18|0),0)|0); $433 = tempRet0; - $434 = (___muldi3(($110|0),0,($32|0),0)|0); + $434 = (___muldi3(($124|0),0,($24|0),0)|0); $435 = tempRet0; - $436 = (___muldi3(($104|0),0,($38|0),0)|0); + $436 = (___muldi3(($118|0),0,($30|0),0)|0); $437 = tempRet0; - $438 = (___muldi3(($98|0),0,($44|0),0)|0); + $438 = (___muldi3(($114|0),0,($36|0),0)|0); $439 = tempRet0; - $440 = (___muldi3(($92|0),0,($48|0),0)|0); + $440 = (___muldi3(($108|0),0,($42|0),0)|0); $441 = tempRet0; - $442 = (___muldi3(($86|0),0,($54|0),0)|0); + $442 = (___muldi3(($102|0),0,($48|0),0)|0); $443 = tempRet0; - $444 = (___muldi3(($80|0),0,($60|0),0)|0); + $444 = (___muldi3(($96|0),0,($52|0),0)|0); $445 = tempRet0; - $446 = (___muldi3(($74|0),0,($64|0),($65|0))|0); + $446 = (___muldi3(($90|0),0,($58|0),0)|0); $447 = tempRet0; - $448 = (_i64Add(($444|0),($445|0),($446|0),($447|0))|0); + $448 = (___muldi3(($84|0),0,($64|0),0)|0); $449 = tempRet0; - $450 = (_i64Add(($448|0),($449|0),($442|0),($443|0))|0); + $450 = (___muldi3(($78|0),0,($68|0),($69|0))|0); $451 = tempRet0; - $452 = (_i64Add(($450|0),($451|0),($440|0),($441|0))|0); + $452 = (_i64Add(($448|0),($449|0),($450|0),($451|0))|0); $453 = tempRet0; - $454 = (_i64Add(($452|0),($453|0),($438|0),($439|0))|0); + $454 = (_i64Add(($452|0),($453|0),($446|0),($447|0))|0); $455 = tempRet0; - $456 = (_i64Add(($454|0),($455|0),($436|0),($437|0))|0); + $456 = (_i64Add(($454|0),($455|0),($444|0),($445|0))|0); $457 = tempRet0; - $458 = (_i64Add(($456|0),($457|0),($432|0),($433|0))|0); + $458 = (_i64Add(($456|0),($457|0),($442|0),($443|0))|0); $459 = tempRet0; - $460 = (_i64Add(($458|0),($459|0),($434|0),($435|0))|0); + $460 = (_i64Add(($458|0),($459|0),($440|0),($441|0))|0); $461 = tempRet0; - $462 = (_i64Add(($460|0),($461|0),($430|0),($431|0))|0); + $462 = (_i64Add(($460|0),($461|0),($436|0),($437|0))|0); $463 = tempRet0; - $464 = (_i64Add(($462|0),($463|0),($428|0),($429|0))|0); + $464 = (_i64Add(($462|0),($463|0),($438|0),($439|0))|0); $465 = tempRet0; - $466 = (_i64Add(($464|0),($465|0),($426|0),($427|0))|0); + $466 = (_i64Add(($464|0),($465|0),($434|0),($435|0))|0); $467 = tempRet0; - $468 = (___muldi3(($130|0),($131|0),($14|0),0)|0); + $468 = (_i64Add(($466|0),($467|0),($432|0),($433|0))|0); $469 = tempRet0; - $470 = (___muldi3(($126|0),0,($20|0),0)|0); + $470 = (_i64Add(($468|0),($469|0),($430|0),($431|0))|0); $471 = tempRet0; - $472 = (___muldi3(($120|0),0,($26|0),0)|0); + $472 = (___muldi3(($134|0),($135|0),($18|0),0)|0); $473 = tempRet0; - $474 = (___muldi3(($114|0),0,($32|0),0)|0); + $474 = (___muldi3(($130|0),0,($24|0),0)|0); $475 = tempRet0; - $476 = (___muldi3(($110|0),0,($38|0),0)|0); + $476 = (___muldi3(($124|0),0,($30|0),0)|0); $477 = tempRet0; - $478 = (___muldi3(($104|0),0,($44|0),0)|0); + $478 = (___muldi3(($118|0),0,($36|0),0)|0); $479 = tempRet0; - $480 = (___muldi3(($98|0),0,($48|0),0)|0); + $480 = (___muldi3(($114|0),0,($42|0),0)|0); $481 = tempRet0; - $482 = (___muldi3(($92|0),0,($54|0),0)|0); + $482 = (___muldi3(($108|0),0,($48|0),0)|0); $483 = tempRet0; - $484 = (___muldi3(($86|0),0,($60|0),0)|0); + $484 = (___muldi3(($102|0),0,($52|0),0)|0); $485 = tempRet0; - $486 = (___muldi3(($80|0),0,($64|0),($65|0))|0); + $486 = (___muldi3(($96|0),0,($58|0),0)|0); $487 = tempRet0; - $488 = (___muldi3(($130|0),($131|0),($20|0),0)|0); + $488 = (___muldi3(($90|0),0,($64|0),0)|0); $489 = tempRet0; - $490 = (___muldi3(($126|0),0,($26|0),0)|0); + $490 = (___muldi3(($84|0),0,($68|0),($69|0))|0); $491 = tempRet0; - $492 = (___muldi3(($120|0),0,($32|0),0)|0); + $492 = (___muldi3(($134|0),($135|0),($24|0),0)|0); $493 = tempRet0; - $494 = (___muldi3(($114|0),0,($38|0),0)|0); + $494 = (___muldi3(($130|0),0,($30|0),0)|0); $495 = tempRet0; - $496 = (___muldi3(($110|0),0,($44|0),0)|0); + $496 = (___muldi3(($124|0),0,($36|0),0)|0); $497 = tempRet0; - $498 = (___muldi3(($104|0),0,($48|0),0)|0); + $498 = (___muldi3(($118|0),0,($42|0),0)|0); $499 = tempRet0; - $500 = (___muldi3(($98|0),0,($54|0),0)|0); + $500 = (___muldi3(($114|0),0,($48|0),0)|0); $501 = tempRet0; - $502 = (___muldi3(($92|0),0,($60|0),0)|0); + $502 = (___muldi3(($108|0),0,($52|0),0)|0); $503 = tempRet0; - $504 = (___muldi3(($86|0),0,($64|0),($65|0))|0); + $504 = (___muldi3(($102|0),0,($58|0),0)|0); $505 = tempRet0; - $506 = (_i64Add(($502|0),($503|0),($504|0),($505|0))|0); + $506 = (___muldi3(($96|0),0,($64|0),0)|0); $507 = tempRet0; - $508 = (_i64Add(($506|0),($507|0),($500|0),($501|0))|0); + $508 = (___muldi3(($90|0),0,($68|0),($69|0))|0); $509 = tempRet0; - $510 = (_i64Add(($508|0),($509|0),($498|0),($499|0))|0); + $510 = (_i64Add(($506|0),($507|0),($508|0),($509|0))|0); $511 = tempRet0; - $512 = (_i64Add(($510|0),($511|0),($494|0),($495|0))|0); + $512 = (_i64Add(($510|0),($511|0),($504|0),($505|0))|0); $513 = tempRet0; - $514 = (_i64Add(($512|0),($513|0),($496|0),($497|0))|0); + $514 = (_i64Add(($512|0),($513|0),($502|0),($503|0))|0); $515 = tempRet0; - $516 = (_i64Add(($514|0),($515|0),($492|0),($493|0))|0); + $516 = (_i64Add(($514|0),($515|0),($498|0),($499|0))|0); $517 = tempRet0; - $518 = (_i64Add(($516|0),($517|0),($490|0),($491|0))|0); + $518 = (_i64Add(($516|0),($517|0),($500|0),($501|0))|0); $519 = tempRet0; - $520 = (_i64Add(($518|0),($519|0),($488|0),($489|0))|0); + $520 = (_i64Add(($518|0),($519|0),($496|0),($497|0))|0); $521 = tempRet0; - $522 = (___muldi3(($130|0),($131|0),($26|0),0)|0); + $522 = (_i64Add(($520|0),($521|0),($494|0),($495|0))|0); $523 = tempRet0; - $524 = (___muldi3(($126|0),0,($32|0),0)|0); + $524 = (_i64Add(($522|0),($523|0),($492|0),($493|0))|0); $525 = tempRet0; - $526 = (___muldi3(($120|0),0,($38|0),0)|0); + $526 = (___muldi3(($134|0),($135|0),($30|0),0)|0); $527 = tempRet0; - $528 = (___muldi3(($114|0),0,($44|0),0)|0); + $528 = (___muldi3(($130|0),0,($36|0),0)|0); $529 = tempRet0; - $530 = (___muldi3(($110|0),0,($48|0),0)|0); + $530 = (___muldi3(($124|0),0,($42|0),0)|0); $531 = tempRet0; - $532 = (___muldi3(($104|0),0,($54|0),0)|0); + $532 = (___muldi3(($118|0),0,($48|0),0)|0); $533 = tempRet0; - $534 = (___muldi3(($98|0),0,($60|0),0)|0); + $534 = (___muldi3(($114|0),0,($52|0),0)|0); $535 = tempRet0; - $536 = (___muldi3(($92|0),0,($64|0),($65|0))|0); + $536 = (___muldi3(($108|0),0,($58|0),0)|0); $537 = tempRet0; - $538 = (___muldi3(($130|0),($131|0),($32|0),0)|0); + $538 = (___muldi3(($102|0),0,($64|0),0)|0); $539 = tempRet0; - $540 = (___muldi3(($126|0),0,($38|0),0)|0); + $540 = (___muldi3(($96|0),0,($68|0),($69|0))|0); $541 = tempRet0; - $542 = (___muldi3(($120|0),0,($44|0),0)|0); + $542 = (___muldi3(($134|0),($135|0),($36|0),0)|0); $543 = tempRet0; - $544 = (___muldi3(($114|0),0,($48|0),0)|0); + $544 = (___muldi3(($130|0),0,($42|0),0)|0); $545 = tempRet0; - $546 = (___muldi3(($110|0),0,($54|0),0)|0); + $546 = (___muldi3(($124|0),0,($48|0),0)|0); $547 = tempRet0; - $548 = (___muldi3(($104|0),0,($60|0),0)|0); + $548 = (___muldi3(($118|0),0,($52|0),0)|0); $549 = tempRet0; - $550 = (___muldi3(($98|0),0,($64|0),($65|0))|0); + $550 = (___muldi3(($114|0),0,($58|0),0)|0); $551 = tempRet0; - $552 = (_i64Add(($548|0),($549|0),($550|0),($551|0))|0); + $552 = (___muldi3(($108|0),0,($64|0),0)|0); $553 = tempRet0; - $554 = (_i64Add(($552|0),($553|0),($544|0),($545|0))|0); + $554 = (___muldi3(($102|0),0,($68|0),($69|0))|0); $555 = tempRet0; - $556 = (_i64Add(($554|0),($555|0),($546|0),($547|0))|0); + $556 = (_i64Add(($552|0),($553|0),($554|0),($555|0))|0); $557 = tempRet0; - $558 = (_i64Add(($556|0),($557|0),($542|0),($543|0))|0); + $558 = (_i64Add(($556|0),($557|0),($548|0),($549|0))|0); $559 = tempRet0; - $560 = (_i64Add(($558|0),($559|0),($540|0),($541|0))|0); + $560 = (_i64Add(($558|0),($559|0),($550|0),($551|0))|0); $561 = tempRet0; - $562 = (_i64Add(($560|0),($561|0),($538|0),($539|0))|0); + $562 = (_i64Add(($560|0),($561|0),($546|0),($547|0))|0); $563 = tempRet0; - $564 = (___muldi3(($130|0),($131|0),($38|0),0)|0); + $564 = (_i64Add(($562|0),($563|0),($544|0),($545|0))|0); $565 = tempRet0; - $566 = (___muldi3(($126|0),0,($44|0),0)|0); + $566 = (_i64Add(($564|0),($565|0),($542|0),($543|0))|0); $567 = tempRet0; - $568 = (___muldi3(($120|0),0,($48|0),0)|0); + $568 = (___muldi3(($134|0),($135|0),($42|0),0)|0); $569 = tempRet0; - $570 = (___muldi3(($114|0),0,($54|0),0)|0); + $570 = (___muldi3(($130|0),0,($48|0),0)|0); $571 = tempRet0; - $572 = (___muldi3(($110|0),0,($60|0),0)|0); + $572 = (___muldi3(($124|0),0,($52|0),0)|0); $573 = tempRet0; - $574 = (___muldi3(($104|0),0,($64|0),($65|0))|0); + $574 = (___muldi3(($118|0),0,($58|0),0)|0); $575 = tempRet0; - $576 = (___muldi3(($130|0),($131|0),($44|0),0)|0); + $576 = (___muldi3(($114|0),0,($64|0),0)|0); $577 = tempRet0; - $578 = (___muldi3(($126|0),0,($48|0),0)|0); + $578 = (___muldi3(($108|0),0,($68|0),($69|0))|0); $579 = tempRet0; - $580 = (___muldi3(($120|0),0,($54|0),0)|0); + $580 = (___muldi3(($134|0),($135|0),($48|0),0)|0); $581 = tempRet0; - $582 = (___muldi3(($114|0),0,($60|0),0)|0); + $582 = (___muldi3(($130|0),0,($52|0),0)|0); $583 = tempRet0; - $584 = (___muldi3(($110|0),0,($64|0),($65|0))|0); + $584 = (___muldi3(($124|0),0,($58|0),0)|0); $585 = tempRet0; - $586 = (_i64Add(($584|0),($585|0),($582|0),($583|0))|0); + $586 = (___muldi3(($118|0),0,($64|0),0)|0); $587 = tempRet0; - $588 = (_i64Add(($586|0),($587|0),($580|0),($581|0))|0); + $588 = (___muldi3(($114|0),0,($68|0),($69|0))|0); $589 = tempRet0; - $590 = (_i64Add(($588|0),($589|0),($578|0),($579|0))|0); + $590 = (_i64Add(($588|0),($589|0),($586|0),($587|0))|0); $591 = tempRet0; - $592 = (_i64Add(($590|0),($591|0),($576|0),($577|0))|0); + $592 = (_i64Add(($590|0),($591|0),($584|0),($585|0))|0); $593 = tempRet0; - $594 = (___muldi3(($130|0),($131|0),($48|0),0)|0); + $594 = (_i64Add(($592|0),($593|0),($582|0),($583|0))|0); $595 = tempRet0; - $596 = (___muldi3(($126|0),0,($54|0),0)|0); + $596 = (_i64Add(($594|0),($595|0),($580|0),($581|0))|0); $597 = tempRet0; - $598 = (___muldi3(($120|0),0,($60|0),0)|0); + $598 = (___muldi3(($134|0),($135|0),($52|0),0)|0); $599 = tempRet0; - $600 = (___muldi3(($114|0),0,($64|0),($65|0))|0); + $600 = (___muldi3(($130|0),0,($58|0),0)|0); $601 = tempRet0; - $602 = (___muldi3(($130|0),($131|0),($54|0),0)|0); + $602 = (___muldi3(($124|0),0,($64|0),0)|0); $603 = tempRet0; - $604 = (___muldi3(($126|0),0,($60|0),0)|0); + $604 = (___muldi3(($118|0),0,($68|0),($69|0))|0); $605 = tempRet0; - $606 = (___muldi3(($120|0),0,($64|0),($65|0))|0); + $606 = (___muldi3(($134|0),($135|0),($58|0),0)|0); $607 = tempRet0; - $608 = (_i64Add(($604|0),($605|0),($606|0),($607|0))|0); + $608 = (___muldi3(($130|0),0,($64|0),0)|0); $609 = tempRet0; - $610 = (_i64Add(($608|0),($609|0),($602|0),($603|0))|0); + $610 = (___muldi3(($124|0),0,($68|0),($69|0))|0); $611 = tempRet0; - $612 = (___muldi3(($130|0),($131|0),($60|0),0)|0); + $612 = (_i64Add(($608|0),($609|0),($610|0),($611|0))|0); $613 = tempRet0; - $614 = (___muldi3(($126|0),0,($64|0),($65|0))|0); + $614 = (_i64Add(($612|0),($613|0),($606|0),($607|0))|0); $615 = tempRet0; - $616 = (_i64Add(($612|0),($613|0),($614|0),($615|0))|0); + $616 = (___muldi3(($134|0),($135|0),($64|0),0)|0); $617 = tempRet0; - $618 = (___muldi3(($130|0),($131|0),($64|0),($65|0))|0); + $618 = (___muldi3(($130|0),0,($68|0),($69|0))|0); $619 = tempRet0; - $620 = (_i64Add(($200|0),($201|0),1048576,0)|0); + $620 = (_i64Add(($616|0),($617|0),($618|0),($619|0))|0); $621 = tempRet0; - $622 = (_bitshift64Lshr(($620|0),($621|0),21)|0); + $622 = (___muldi3(($134|0),($135|0),($68|0),($69|0))|0); $623 = tempRet0; - $624 = (_i64Add(($202|0),($203|0),($204|0),($205|0))|0); + $624 = (_i64Add(($204|0),($205|0),1048576,0)|0); $625 = tempRet0; - $626 = (_i64Add(($624|0),($625|0),($140|0),0)|0); + $626 = (_bitshift64Lshr(($624|0),($625|0),21)|0); $627 = tempRet0; - $628 = (_i64Add(($626|0),($627|0),($622|0),($623|0))|0); + $628 = (_i64Add(($206|0),($207|0),($208|0),($209|0))|0); $629 = tempRet0; - $630 = (_bitshift64Shl(($622|0),($623|0),21)|0); + $630 = (_i64Add(($628|0),($629|0),($144|0),0)|0); $631 = tempRet0; - $632 = (_i64Subtract(($200|0),($201|0),($630|0),($631|0))|0); + $632 = (_i64Add(($630|0),($631|0),($626|0),($627|0))|0); $633 = tempRet0; - $634 = (_i64Add(($216|0),($217|0),1048576,0)|0); + $634 = (_bitshift64Shl(($626|0),($627|0),21)|0); $635 = tempRet0; - $636 = (_bitshift64Lshr(($634|0),($635|0),21)|0); + $636 = (_i64Subtract(($204|0),($205|0),($634|0),($635|0))|0); $637 = tempRet0; - $638 = (_i64Add(($222|0),($223|0),($224|0),($225|0))|0); + $638 = (_i64Add(($220|0),($221|0),1048576,0)|0); $639 = tempRet0; - $640 = (_i64Add(($638|0),($639|0),($220|0),($221|0))|0); + $640 = (_bitshift64Lshr(($638|0),($639|0),21)|0); $641 = tempRet0; - $642 = (_i64Add(($640|0),($641|0),($218|0),($219|0))|0); + $642 = (_i64Add(($226|0),($227|0),($228|0),($229|0))|0); $643 = tempRet0; - $644 = (_i64Add(($642|0),($643|0),($152|0),0)|0); + $644 = (_i64Add(($642|0),($643|0),($224|0),($225|0))|0); $645 = tempRet0; - $646 = (_i64Add(($644|0),($645|0),($636|0),($637|0))|0); + $646 = (_i64Add(($644|0),($645|0),($222|0),($223|0))|0); $647 = tempRet0; - $648 = (_bitshift64Shl(($636|0),($637|0),21)|0); + $648 = (_i64Add(($646|0),($647|0),($156|0),0)|0); $649 = tempRet0; - $650 = (_i64Add(($244|0),($245|0),1048576,0)|0); + $650 = (_i64Add(($648|0),($649|0),($640|0),($641|0))|0); $651 = tempRet0; - $652 = (_bitshift64Ashr(($650|0),($651|0),21)|0); + $652 = (_bitshift64Shl(($640|0),($641|0),21)|0); $653 = tempRet0; - $654 = (_i64Add(($254|0),($255|0),($256|0),($257|0))|0); + $654 = (_i64Add(($248|0),($249|0),1048576,0)|0); $655 = tempRet0; - $656 = (_i64Add(($654|0),($655|0),($252|0),($253|0))|0); + $656 = (_bitshift64Ashr(($654|0),($655|0),21)|0); $657 = tempRet0; - $658 = (_i64Add(($656|0),($657|0),($250|0),($251|0))|0); + $658 = (_i64Add(($258|0),($259|0),($260|0),($261|0))|0); $659 = tempRet0; - $660 = (_i64Add(($658|0),($659|0),($248|0),($249|0))|0); + $660 = (_i64Add(($658|0),($659|0),($256|0),($257|0))|0); $661 = tempRet0; - $662 = (_i64Add(($660|0),($661|0),($246|0),($247|0))|0); + $662 = (_i64Add(($660|0),($661|0),($254|0),($255|0))|0); $663 = tempRet0; - $664 = (_i64Add(($662|0),($663|0),($164|0),0)|0); + $664 = (_i64Add(($662|0),($663|0),($252|0),($253|0))|0); $665 = tempRet0; - $666 = (_i64Add(($664|0),($665|0),($652|0),($653|0))|0); + $666 = (_i64Add(($664|0),($665|0),($250|0),($251|0))|0); $667 = tempRet0; - $668 = (_bitshift64Shl(($652|0),($653|0),21)|0); + $668 = (_i64Add(($666|0),($667|0),($168|0),0)|0); $669 = tempRet0; - $670 = (_i64Subtract(($244|0),($245|0),($668|0),($669|0))|0); + $670 = (_i64Add(($668|0),($669|0),($656|0),($657|0))|0); $671 = tempRet0; - $672 = (_i64Add(($284|0),($285|0),1048576,0)|0); + $672 = (_bitshift64Shl(($656|0),($657|0),21)|0); $673 = tempRet0; - $674 = (_bitshift64Ashr(($672|0),($673|0),21)|0); + $674 = (_i64Add(($288|0),($289|0),1048576,0)|0); $675 = tempRet0; - $676 = (_i64Add(($298|0),($299|0),($300|0),($301|0))|0); + $676 = (_bitshift64Ashr(($674|0),($675|0),21)|0); $677 = tempRet0; - $678 = (_i64Add(($676|0),($677|0),($296|0),($297|0))|0); + $678 = (_i64Add(($302|0),($303|0),($304|0),($305|0))|0); $679 = tempRet0; - $680 = (_i64Add(($678|0),($679|0),($294|0),($295|0))|0); + $680 = (_i64Add(($678|0),($679|0),($300|0),($301|0))|0); $681 = tempRet0; - $682 = (_i64Add(($680|0),($681|0),($292|0),($293|0))|0); + $682 = (_i64Add(($680|0),($681|0),($298|0),($299|0))|0); $683 = tempRet0; - $684 = (_i64Add(($682|0),($683|0),($290|0),($291|0))|0); + $684 = (_i64Add(($682|0),($683|0),($296|0),($297|0))|0); $685 = tempRet0; - $686 = (_i64Add(($684|0),($685|0),($288|0),($289|0))|0); + $686 = (_i64Add(($684|0),($685|0),($294|0),($295|0))|0); $687 = tempRet0; - $688 = (_i64Add(($686|0),($687|0),($286|0),($287|0))|0); + $688 = (_i64Add(($686|0),($687|0),($292|0),($293|0))|0); $689 = tempRet0; - $690 = (_i64Add(($688|0),($689|0),($176|0),0)|0); + $690 = (_i64Add(($688|0),($689|0),($290|0),($291|0))|0); $691 = tempRet0; - $692 = (_i64Add(($690|0),($691|0),($674|0),($675|0))|0); + $692 = (_i64Add(($690|0),($691|0),($180|0),0)|0); $693 = tempRet0; - $694 = (_bitshift64Shl(($674|0),($675|0),21)|0); + $694 = (_i64Add(($692|0),($693|0),($676|0),($677|0))|0); $695 = tempRet0; - $696 = (_i64Add(($336|0),($337|0),1048576,0)|0); + $696 = (_bitshift64Shl(($676|0),($677|0),21)|0); $697 = tempRet0; - $698 = (_bitshift64Ashr(($696|0),($697|0),21)|0); + $698 = (_i64Add(($340|0),($341|0),1048576,0)|0); $699 = tempRet0; - $700 = (_i64Add(($354|0),($355|0),($356|0),($357|0))|0); + $700 = (_bitshift64Ashr(($698|0),($699|0),21)|0); $701 = tempRet0; - $702 = (_i64Add(($700|0),($701|0),($352|0),($353|0))|0); + $702 = (_i64Add(($358|0),($359|0),($360|0),($361|0))|0); $703 = tempRet0; - $704 = (_i64Add(($702|0),($703|0),($350|0),($351|0))|0); + $704 = (_i64Add(($702|0),($703|0),($356|0),($357|0))|0); $705 = tempRet0; - $706 = (_i64Add(($704|0),($705|0),($348|0),($349|0))|0); + $706 = (_i64Add(($704|0),($705|0),($354|0),($355|0))|0); $707 = tempRet0; - $708 = (_i64Add(($706|0),($707|0),($346|0),($347|0))|0); + $708 = (_i64Add(($706|0),($707|0),($352|0),($353|0))|0); $709 = tempRet0; - $710 = (_i64Add(($708|0),($709|0),($344|0),($345|0))|0); + $710 = (_i64Add(($708|0),($709|0),($350|0),($351|0))|0); $711 = tempRet0; - $712 = (_i64Add(($710|0),($711|0),($340|0),($341|0))|0); + $712 = (_i64Add(($710|0),($711|0),($348|0),($349|0))|0); $713 = tempRet0; - $714 = (_i64Add(($712|0),($713|0),($342|0),($343|0))|0); + $714 = (_i64Add(($712|0),($713|0),($344|0),($345|0))|0); $715 = tempRet0; - $716 = (_i64Add(($714|0),($715|0),($338|0),($339|0))|0); + $716 = (_i64Add(($714|0),($715|0),($346|0),($347|0))|0); $717 = tempRet0; - $718 = (_i64Add(($716|0),($717|0),($186|0),0)|0); + $718 = (_i64Add(($716|0),($717|0),($342|0),($343|0))|0); $719 = tempRet0; - $720 = (_i64Add(($718|0),($719|0),($698|0),($699|0))|0); + $720 = (_i64Add(($718|0),($719|0),($190|0),0)|0); $721 = tempRet0; - $722 = (_bitshift64Shl(($698|0),($699|0),21)|0); + $722 = (_i64Add(($720|0),($721|0),($700|0),($701|0))|0); $723 = tempRet0; - $724 = (_i64Add(($400|0),($401|0),1048576,0)|0); + $724 = (_bitshift64Shl(($700|0),($701|0),21)|0); $725 = tempRet0; - $726 = (_bitshift64Ashr(($724|0),($725|0),21)|0); + $726 = (_i64Add(($404|0),($405|0),1048576,0)|0); $727 = tempRet0; - $728 = (_i64Add(($422|0),($423|0),($424|0),($425|0))|0); + $728 = (_bitshift64Ashr(($726|0),($727|0),21)|0); $729 = tempRet0; - $730 = (_i64Add(($728|0),($729|0),($420|0),($421|0))|0); + $730 = (_i64Add(($426|0),($427|0),($428|0),($429|0))|0); $731 = tempRet0; - $732 = (_i64Add(($730|0),($731|0),($418|0),($419|0))|0); + $732 = (_i64Add(($730|0),($731|0),($424|0),($425|0))|0); $733 = tempRet0; - $734 = (_i64Add(($732|0),($733|0),($416|0),($417|0))|0); + $734 = (_i64Add(($732|0),($733|0),($422|0),($423|0))|0); $735 = tempRet0; - $736 = (_i64Add(($734|0),($735|0),($414|0),($415|0))|0); + $736 = (_i64Add(($734|0),($735|0),($420|0),($421|0))|0); $737 = tempRet0; - $738 = (_i64Add(($736|0),($737|0),($412|0),($413|0))|0); + $738 = (_i64Add(($736|0),($737|0),($418|0),($419|0))|0); $739 = tempRet0; - $740 = (_i64Add(($738|0),($739|0),($408|0),($409|0))|0); + $740 = (_i64Add(($738|0),($739|0),($416|0),($417|0))|0); $741 = tempRet0; - $742 = (_i64Add(($740|0),($741|0),($410|0),($411|0))|0); + $742 = (_i64Add(($740|0),($741|0),($412|0),($413|0))|0); $743 = tempRet0; - $744 = (_i64Add(($742|0),($743|0),($406|0),($407|0))|0); + $744 = (_i64Add(($742|0),($743|0),($414|0),($415|0))|0); $745 = tempRet0; - $746 = (_i64Add(($744|0),($745|0),($402|0),($403|0))|0); + $746 = (_i64Add(($744|0),($745|0),($410|0),($411|0))|0); $747 = tempRet0; - $748 = (_i64Add(($746|0),($747|0),($404|0),($405|0))|0); + $748 = (_i64Add(($746|0),($747|0),($406|0),($407|0))|0); $749 = tempRet0; - $750 = (_i64Add(($748|0),($749|0),($196|0),($197|0))|0); + $750 = (_i64Add(($748|0),($749|0),($408|0),($409|0))|0); $751 = tempRet0; - $752 = (_i64Add(($750|0),($751|0),($726|0),($727|0))|0); + $752 = (_i64Add(($750|0),($751|0),($200|0),($201|0))|0); $753 = tempRet0; - $754 = (_bitshift64Shl(($726|0),($727|0),21)|0); + $754 = (_i64Add(($752|0),($753|0),($728|0),($729|0))|0); $755 = tempRet0; - $756 = (_i64Subtract(($400|0),($401|0),($754|0),($755|0))|0); + $756 = (_bitshift64Shl(($728|0),($729|0),21)|0); $757 = tempRet0; - $758 = (_i64Add(($466|0),($467|0),1048576,0)|0); + $758 = (_i64Add(($470|0),($471|0),1048576,0)|0); $759 = tempRet0; $760 = (_bitshift64Ashr(($758|0),($759|0),21)|0); $761 = tempRet0; - $762 = (_i64Add(($484|0),($485|0),($486|0),($487|0))|0); + $762 = (_i64Add(($488|0),($489|0),($490|0),($491|0))|0); $763 = tempRet0; - $764 = (_i64Add(($762|0),($763|0),($482|0),($483|0))|0); + $764 = (_i64Add(($762|0),($763|0),($486|0),($487|0))|0); $765 = tempRet0; - $766 = (_i64Add(($764|0),($765|0),($480|0),($481|0))|0); + $766 = (_i64Add(($764|0),($765|0),($484|0),($485|0))|0); $767 = tempRet0; - $768 = (_i64Add(($766|0),($767|0),($478|0),($479|0))|0); + $768 = (_i64Add(($766|0),($767|0),($482|0),($483|0))|0); $769 = tempRet0; - $770 = (_i64Add(($768|0),($769|0),($474|0),($475|0))|0); + $770 = (_i64Add(($768|0),($769|0),($478|0),($479|0))|0); $771 = tempRet0; - $772 = (_i64Add(($770|0),($771|0),($476|0),($477|0))|0); + $772 = (_i64Add(($770|0),($771|0),($480|0),($481|0))|0); $773 = tempRet0; - $774 = (_i64Add(($772|0),($773|0),($472|0),($473|0))|0); + $774 = (_i64Add(($772|0),($773|0),($476|0),($477|0))|0); $775 = tempRet0; - $776 = (_i64Add(($774|0),($775|0),($470|0),($471|0))|0); + $776 = (_i64Add(($774|0),($775|0),($474|0),($475|0))|0); $777 = tempRet0; - $778 = (_i64Add(($776|0),($777|0),($468|0),($469|0))|0); + $778 = (_i64Add(($776|0),($777|0),($472|0),($473|0))|0); $779 = tempRet0; $780 = (_i64Add(($778|0),($779|0),($760|0),($761|0))|0); $781 = tempRet0; $782 = (_bitshift64Shl(($760|0),($761|0),21)|0); $783 = tempRet0; - $784 = (_i64Subtract(($466|0),($467|0),($782|0),($783|0))|0); + $784 = (_i64Add(($524|0),($525|0),1048576,0)|0); $785 = tempRet0; - $786 = (_i64Add(($520|0),($521|0),1048576,0)|0); + $786 = (_bitshift64Ashr(($784|0),($785|0),21)|0); $787 = tempRet0; - $788 = (_bitshift64Ashr(($786|0),($787|0),21)|0); + $788 = (_i64Add(($538|0),($539|0),($540|0),($541|0))|0); $789 = tempRet0; - $790 = (_i64Add(($534|0),($535|0),($536|0),($537|0))|0); + $790 = (_i64Add(($788|0),($789|0),($536|0),($537|0))|0); $791 = tempRet0; $792 = (_i64Add(($790|0),($791|0),($532|0),($533|0))|0); $793 = tempRet0; - $794 = (_i64Add(($792|0),($793|0),($528|0),($529|0))|0); + $794 = (_i64Add(($792|0),($793|0),($534|0),($535|0))|0); $795 = tempRet0; $796 = (_i64Add(($794|0),($795|0),($530|0),($531|0))|0); $797 = tempRet0; - $798 = (_i64Add(($796|0),($797|0),($526|0),($527|0))|0); + $798 = (_i64Add(($796|0),($797|0),($528|0),($529|0))|0); $799 = tempRet0; - $800 = (_i64Add(($798|0),($799|0),($524|0),($525|0))|0); + $800 = (_i64Add(($798|0),($799|0),($526|0),($527|0))|0); $801 = tempRet0; - $802 = (_i64Add(($800|0),($801|0),($522|0),($523|0))|0); + $802 = (_i64Add(($800|0),($801|0),($786|0),($787|0))|0); $803 = tempRet0; - $804 = (_i64Add(($802|0),($803|0),($788|0),($789|0))|0); + $804 = (_bitshift64Shl(($786|0),($787|0),21)|0); $805 = tempRet0; - $806 = (_bitshift64Shl(($788|0),($789|0),21)|0); + $806 = (_i64Add(($566|0),($567|0),1048576,0)|0); $807 = tempRet0; - $808 = (_i64Subtract(($520|0),($521|0),($806|0),($807|0))|0); + $808 = (_bitshift64Ashr(($806|0),($807|0),21)|0); $809 = tempRet0; - $810 = (_i64Add(($562|0),($563|0),1048576,0)|0); + $810 = (_i64Add(($574|0),($575|0),($578|0),($579|0))|0); $811 = tempRet0; - $812 = (_bitshift64Ashr(($810|0),($811|0),21)|0); + $812 = (_i64Add(($810|0),($811|0),($576|0),($577|0))|0); $813 = tempRet0; - $814 = (_i64Add(($570|0),($571|0),($574|0),($575|0))|0); + $814 = (_i64Add(($812|0),($813|0),($572|0),($573|0))|0); $815 = tempRet0; - $816 = (_i64Add(($814|0),($815|0),($572|0),($573|0))|0); + $816 = (_i64Add(($814|0),($815|0),($570|0),($571|0))|0); $817 = tempRet0; $818 = (_i64Add(($816|0),($817|0),($568|0),($569|0))|0); $819 = tempRet0; - $820 = (_i64Add(($818|0),($819|0),($566|0),($567|0))|0); + $820 = (_i64Add(($818|0),($819|0),($808|0),($809|0))|0); $821 = tempRet0; - $822 = (_i64Add(($820|0),($821|0),($564|0),($565|0))|0); + $822 = (_bitshift64Shl(($808|0),($809|0),21)|0); $823 = tempRet0; - $824 = (_i64Add(($822|0),($823|0),($812|0),($813|0))|0); + $824 = (_i64Add(($596|0),($597|0),1048576,0)|0); $825 = tempRet0; - $826 = (_bitshift64Shl(($812|0),($813|0),21)|0); + $826 = (_bitshift64Ashr(($824|0),($825|0),21)|0); $827 = tempRet0; - $828 = (_i64Subtract(($562|0),($563|0),($826|0),($827|0))|0); + $828 = (_i64Add(($602|0),($603|0),($604|0),($605|0))|0); $829 = tempRet0; - $830 = (_i64Add(($592|0),($593|0),1048576,0)|0); + $830 = (_i64Add(($828|0),($829|0),($600|0),($601|0))|0); $831 = tempRet0; - $832 = (_bitshift64Ashr(($830|0),($831|0),21)|0); + $832 = (_i64Add(($830|0),($831|0),($598|0),($599|0))|0); $833 = tempRet0; - $834 = (_i64Add(($598|0),($599|0),($600|0),($601|0))|0); + $834 = (_i64Add(($832|0),($833|0),($826|0),($827|0))|0); $835 = tempRet0; - $836 = (_i64Add(($834|0),($835|0),($596|0),($597|0))|0); + $836 = (_bitshift64Shl(($826|0),($827|0),21)|0); $837 = tempRet0; - $838 = (_i64Add(($836|0),($837|0),($594|0),($595|0))|0); + $838 = (_i64Subtract(($596|0),($597|0),($836|0),($837|0))|0); $839 = tempRet0; - $840 = (_i64Add(($838|0),($839|0),($832|0),($833|0))|0); + $840 = (_i64Add(($614|0),($615|0),1048576,0)|0); $841 = tempRet0; - $842 = (_bitshift64Shl(($832|0),($833|0),21)|0); + $842 = (_bitshift64Lshr(($840|0),($841|0),21)|0); $843 = tempRet0; - $844 = (_i64Subtract(($592|0),($593|0),($842|0),($843|0))|0); + $844 = (_i64Add(($620|0),($621|0),($842|0),($843|0))|0); $845 = tempRet0; - $846 = (_i64Add(($610|0),($611|0),1048576,0)|0); + $846 = (_bitshift64Shl(($842|0),($843|0),21)|0); $847 = tempRet0; - $848 = (_bitshift64Lshr(($846|0),($847|0),21)|0); + $848 = (_i64Subtract(($614|0),($615|0),($846|0),($847|0))|0); $849 = tempRet0; - $850 = (_i64Add(($616|0),($617|0),($848|0),($849|0))|0); + $850 = (_i64Add(($622|0),($623|0),1048576,0)|0); $851 = tempRet0; - $852 = (_bitshift64Shl(($848|0),($849|0),21)|0); + $852 = (_bitshift64Lshr(($850|0),($851|0),21)|0); $853 = tempRet0; - $854 = (_i64Subtract(($610|0),($611|0),($852|0),($853|0))|0); + $854 = (_bitshift64Shl(($852|0),($853|0),21)|0); $855 = tempRet0; - $856 = (_i64Add(($618|0),($619|0),1048576,0)|0); + $856 = (_i64Subtract(($622|0),($623|0),($854|0),($855|0))|0); $857 = tempRet0; - $858 = (_bitshift64Lshr(($856|0),($857|0),21)|0); + $858 = (_i64Add(($632|0),($633|0),1048576,0)|0); $859 = tempRet0; - $860 = (_bitshift64Shl(($858|0),($859|0),21)|0); + $860 = (_bitshift64Lshr(($858|0),($859|0),21)|0); $861 = tempRet0; - $862 = (_i64Subtract(($618|0),($619|0),($860|0),($861|0))|0); + $862 = (_bitshift64Shl(($860|0),($861|0),21)|0); $863 = tempRet0; - $864 = (_i64Add(($628|0),($629|0),1048576,0)|0); + $864 = (_i64Subtract(($632|0),($633|0),($862|0),($863|0))|0); $865 = tempRet0; - $866 = (_bitshift64Lshr(($864|0),($865|0),21)|0); + $866 = (_i64Add(($650|0),($651|0),1048576,0)|0); $867 = tempRet0; - $868 = (_bitshift64Shl(($866|0),($867|0),21)|0); + $868 = (_bitshift64Ashr(($866|0),($867|0),21)|0); $869 = tempRet0; - $870 = (_i64Subtract(($628|0),($629|0),($868|0),($869|0))|0); + $870 = (_bitshift64Shl(($868|0),($869|0),21)|0); $871 = tempRet0; - $872 = (_i64Add(($646|0),($647|0),1048576,0)|0); + $872 = (_i64Subtract(($650|0),($651|0),($870|0),($871|0))|0); $873 = tempRet0; - $874 = (_bitshift64Ashr(($872|0),($873|0),21)|0); + $874 = (_i64Add(($670|0),($671|0),1048576,0)|0); $875 = tempRet0; - $876 = (_i64Add(($874|0),($875|0),($670|0),($671|0))|0); + $876 = (_bitshift64Ashr(($874|0),($875|0),21)|0); $877 = tempRet0; - $878 = (_bitshift64Shl(($874|0),($875|0),21)|0); + $878 = (_bitshift64Shl(($876|0),($877|0),21)|0); $879 = tempRet0; - $880 = (_i64Subtract(($646|0),($647|0),($878|0),($879|0))|0); + $880 = (_i64Subtract(($670|0),($671|0),($878|0),($879|0))|0); $881 = tempRet0; - $882 = (_i64Add(($666|0),($667|0),1048576,0)|0); + $882 = (_i64Add(($694|0),($695|0),1048576,0)|0); $883 = tempRet0; $884 = (_bitshift64Ashr(($882|0),($883|0),21)|0); $885 = tempRet0; $886 = (_bitshift64Shl(($884|0),($885|0),21)|0); $887 = tempRet0; - $888 = (_i64Subtract(($666|0),($667|0),($886|0),($887|0))|0); + $888 = (_i64Add(($722|0),($723|0),1048576,0)|0); $889 = tempRet0; - $890 = (_i64Add(($692|0),($693|0),1048576,0)|0); + $890 = (_bitshift64Ashr(($888|0),($889|0),21)|0); $891 = tempRet0; - $892 = (_bitshift64Ashr(($890|0),($891|0),21)|0); + $892 = (_bitshift64Shl(($890|0),($891|0),21)|0); $893 = tempRet0; - $894 = (_bitshift64Shl(($892|0),($893|0),21)|0); + $894 = (_i64Add(($754|0),($755|0),1048576,0)|0); $895 = tempRet0; - $896 = (_i64Add(($720|0),($721|0),1048576,0)|0); + $896 = (_bitshift64Ashr(($894|0),($895|0),21)|0); $897 = tempRet0; - $898 = (_bitshift64Ashr(($896|0),($897|0),21)|0); + $898 = (_bitshift64Shl(($896|0),($897|0),21)|0); $899 = tempRet0; - $900 = (_i64Add(($898|0),($899|0),($756|0),($757|0))|0); + $900 = (_i64Add(($780|0),($781|0),1048576,0)|0); $901 = tempRet0; - $902 = (_bitshift64Shl(($898|0),($899|0),21)|0); + $902 = (_bitshift64Ashr(($900|0),($901|0),21)|0); $903 = tempRet0; - $904 = (_i64Subtract(($720|0),($721|0),($902|0),($903|0))|0); + $904 = (_bitshift64Shl(($902|0),($903|0),21)|0); $905 = tempRet0; - $906 = (_i64Add(($752|0),($753|0),1048576,0)|0); + $906 = (_i64Add(($802|0),($803|0),1048576,0)|0); $907 = tempRet0; $908 = (_bitshift64Ashr(($906|0),($907|0),21)|0); $909 = tempRet0; - $910 = (_i64Add(($784|0),($785|0),($908|0),($909|0))|0); + $910 = (_bitshift64Shl(($908|0),($909|0),21)|0); $911 = tempRet0; - $912 = (_bitshift64Shl(($908|0),($909|0),21)|0); + $912 = (_i64Add(($820|0),($821|0),1048576,0)|0); $913 = tempRet0; - $914 = (_i64Subtract(($752|0),($753|0),($912|0),($913|0))|0); + $914 = (_bitshift64Ashr(($912|0),($913|0),21)|0); $915 = tempRet0; - $916 = (_i64Add(($780|0),($781|0),1048576,0)|0); + $916 = (_i64Add(($914|0),($915|0),($838|0),($839|0))|0); $917 = tempRet0; - $918 = (_bitshift64Ashr(($916|0),($917|0),21)|0); + $918 = (_bitshift64Shl(($914|0),($915|0),21)|0); $919 = tempRet0; - $920 = (_i64Add(($808|0),($809|0),($918|0),($919|0))|0); + $920 = (_i64Subtract(($820|0),($821|0),($918|0),($919|0))|0); $921 = tempRet0; - $922 = (_bitshift64Shl(($918|0),($919|0),21)|0); + $922 = (_i64Add(($834|0),($835|0),1048576,0)|0); $923 = tempRet0; - $924 = (_i64Subtract(($780|0),($781|0),($922|0),($923|0))|0); + $924 = (_bitshift64Ashr(($922|0),($923|0),21)|0); $925 = tempRet0; - $926 = (_i64Add(($804|0),($805|0),1048576,0)|0); + $926 = (_i64Add(($924|0),($925|0),($848|0),($849|0))|0); $927 = tempRet0; - $928 = (_bitshift64Ashr(($926|0),($927|0),21)|0); + $928 = (_bitshift64Shl(($924|0),($925|0),21)|0); $929 = tempRet0; - $930 = (_i64Add(($828|0),($829|0),($928|0),($929|0))|0); + $930 = (_i64Subtract(($834|0),($835|0),($928|0),($929|0))|0); $931 = tempRet0; - $932 = (_bitshift64Shl(($928|0),($929|0),21)|0); + $932 = (_i64Add(($844|0),($845|0),1048576,0)|0); $933 = tempRet0; - $934 = (_i64Subtract(($804|0),($805|0),($932|0),($933|0))|0); + $934 = (_bitshift64Lshr(($932|0),($933|0),21)|0); $935 = tempRet0; - $936 = (_i64Add(($824|0),($825|0),1048576,0)|0); + $936 = (_i64Add(($934|0),($935|0),($856|0),($857|0))|0); $937 = tempRet0; - $938 = (_bitshift64Ashr(($936|0),($937|0),21)|0); + $938 = (_bitshift64Shl(($934|0),($935|0),21)|0); $939 = tempRet0; - $940 = (_i64Add(($938|0),($939|0),($844|0),($845|0))|0); + $940 = (_i64Subtract(($844|0),($845|0),($938|0),($939|0))|0); $941 = tempRet0; - $942 = (_bitshift64Shl(($938|0),($939|0),21)|0); + $942 = (___muldi3(($852|0),($853|0),666643,0)|0); $943 = tempRet0; - $944 = (_i64Subtract(($824|0),($825|0),($942|0),($943|0))|0); + $944 = (___muldi3(($852|0),($853|0),470296,0)|0); $945 = tempRet0; - $946 = (_i64Add(($840|0),($841|0),1048576,0)|0); + $946 = (___muldi3(($852|0),($853|0),654183,0)|0); $947 = tempRet0; - $948 = (_bitshift64Ashr(($946|0),($947|0),21)|0); + $948 = (___muldi3(($852|0),($853|0),-997805,-1)|0); $949 = tempRet0; - $950 = (_i64Add(($948|0),($949|0),($854|0),($855|0))|0); + $950 = (___muldi3(($852|0),($853|0),136657,0)|0); $951 = tempRet0; - $952 = (_bitshift64Shl(($948|0),($949|0),21)|0); + $952 = (___muldi3(($852|0),($853|0),-683901,-1)|0); $953 = tempRet0; - $954 = (_i64Subtract(($840|0),($841|0),($952|0),($953|0))|0); + $954 = (_i64Add(($566|0),($567|0),($952|0),($953|0))|0); $955 = tempRet0; - $956 = (_i64Add(($850|0),($851|0),1048576,0)|0); + $956 = (_i64Subtract(($954|0),($955|0),($822|0),($823|0))|0); $957 = tempRet0; - $958 = (_bitshift64Lshr(($956|0),($957|0),21)|0); + $958 = (_i64Add(($956|0),($957|0),($908|0),($909|0))|0); $959 = tempRet0; - $960 = (_i64Add(($958|0),($959|0),($862|0),($863|0))|0); + $960 = (___muldi3(($936|0),($937|0),666643,0)|0); $961 = tempRet0; - $962 = (_bitshift64Shl(($958|0),($959|0),21)|0); + $962 = (___muldi3(($936|0),($937|0),470296,0)|0); $963 = tempRet0; - $964 = (_i64Subtract(($850|0),($851|0),($962|0),($963|0))|0); + $964 = (___muldi3(($936|0),($937|0),654183,0)|0); $965 = tempRet0; - $966 = (___muldi3(($858|0),($859|0),666643,0)|0); + $966 = (___muldi3(($936|0),($937|0),-997805,-1)|0); $967 = tempRet0; - $968 = (_i64Add(($966|0),($967|0),($914|0),($915|0))|0); + $968 = (___muldi3(($936|0),($937|0),136657,0)|0); $969 = tempRet0; - $970 = (___muldi3(($858|0),($859|0),470296,0)|0); + $970 = (___muldi3(($936|0),($937|0),-683901,-1)|0); $971 = tempRet0; - $972 = (_i64Add(($970|0),($971|0),($910|0),($911|0))|0); + $972 = (___muldi3(($940|0),($941|0),666643,0)|0); $973 = tempRet0; - $974 = (___muldi3(($858|0),($859|0),654183,0)|0); + $974 = (___muldi3(($940|0),($941|0),470296,0)|0); $975 = tempRet0; - $976 = (_i64Add(($974|0),($975|0),($924|0),($925|0))|0); + $976 = (___muldi3(($940|0),($941|0),654183,0)|0); $977 = tempRet0; - $978 = (___muldi3(($858|0),($859|0),-997805,-1)|0); + $978 = (___muldi3(($940|0),($941|0),-997805,-1)|0); $979 = tempRet0; - $980 = (_i64Add(($978|0),($979|0),($920|0),($921|0))|0); + $980 = (___muldi3(($940|0),($941|0),136657,0)|0); $981 = tempRet0; - $982 = (___muldi3(($858|0),($859|0),136657,0)|0); + $982 = (___muldi3(($940|0),($941|0),-683901,-1)|0); $983 = tempRet0; - $984 = (_i64Add(($982|0),($983|0),($934|0),($935|0))|0); + $984 = (_i64Add(($524|0),($525|0),($948|0),($949|0))|0); $985 = tempRet0; - $986 = (___muldi3(($858|0),($859|0),-683901,-1)|0); + $986 = (_i64Add(($984|0),($985|0),($968|0),($969|0))|0); $987 = tempRet0; - $988 = (_i64Add(($930|0),($931|0),($986|0),($987|0))|0); + $988 = (_i64Add(($986|0),($987|0),($982|0),($983|0))|0); $989 = tempRet0; - $990 = (___muldi3(($960|0),($961|0),666643,0)|0); + $990 = (_i64Subtract(($988|0),($989|0),($804|0),($805|0))|0); $991 = tempRet0; - $992 = (_i64Add(($990|0),($991|0),($900|0),($901|0))|0); + $992 = (_i64Add(($990|0),($991|0),($902|0),($903|0))|0); $993 = tempRet0; - $994 = (___muldi3(($960|0),($961|0),470296,0)|0); + $994 = (___muldi3(($926|0),($927|0),666643,0)|0); $995 = tempRet0; - $996 = (_i64Add(($994|0),($995|0),($968|0),($969|0))|0); + $996 = (___muldi3(($926|0),($927|0),470296,0)|0); $997 = tempRet0; - $998 = (___muldi3(($960|0),($961|0),654183,0)|0); + $998 = (___muldi3(($926|0),($927|0),654183,0)|0); $999 = tempRet0; - $1000 = (_i64Add(($998|0),($999|0),($972|0),($973|0))|0); + $1000 = (___muldi3(($926|0),($927|0),-997805,-1)|0); $1001 = tempRet0; - $1002 = (___muldi3(($960|0),($961|0),-997805,-1)|0); + $1002 = (___muldi3(($926|0),($927|0),136657,0)|0); $1003 = tempRet0; - $1004 = (_i64Add(($1002|0),($1003|0),($976|0),($977|0))|0); + $1004 = (___muldi3(($926|0),($927|0),-683901,-1)|0); $1005 = tempRet0; - $1006 = (___muldi3(($960|0),($961|0),136657,0)|0); + $1006 = (___muldi3(($930|0),($931|0),666643,0)|0); $1007 = tempRet0; - $1008 = (_i64Add(($1006|0),($1007|0),($980|0),($981|0))|0); + $1008 = (___muldi3(($930|0),($931|0),470296,0)|0); $1009 = tempRet0; - $1010 = (___muldi3(($960|0),($961|0),-683901,-1)|0); + $1010 = (___muldi3(($930|0),($931|0),654183,0)|0); $1011 = tempRet0; - $1012 = (_i64Add(($984|0),($985|0),($1010|0),($1011|0))|0); + $1012 = (___muldi3(($930|0),($931|0),-997805,-1)|0); $1013 = tempRet0; - $1014 = (___muldi3(($964|0),($965|0),666643,0)|0); + $1014 = (___muldi3(($930|0),($931|0),136657,0)|0); $1015 = tempRet0; - $1016 = (_i64Add(($1014|0),($1015|0),($904|0),($905|0))|0); + $1016 = (___muldi3(($930|0),($931|0),-683901,-1)|0); $1017 = tempRet0; - $1018 = (___muldi3(($964|0),($965|0),470296,0)|0); + $1018 = (_i64Add(($964|0),($965|0),($944|0),($945|0))|0); $1019 = tempRet0; - $1020 = (_i64Add(($1018|0),($1019|0),($992|0),($993|0))|0); + $1020 = (_i64Add(($1018|0),($1019|0),($470|0),($471|0))|0); $1021 = tempRet0; - $1022 = (___muldi3(($964|0),($965|0),654183,0)|0); + $1022 = (_i64Add(($1020|0),($1021|0),($978|0),($979|0))|0); $1023 = tempRet0; - $1024 = (_i64Add(($1022|0),($1023|0),($996|0),($997|0))|0); + $1024 = (_i64Add(($1022|0),($1023|0),($1002|0),($1003|0))|0); $1025 = tempRet0; - $1026 = (___muldi3(($964|0),($965|0),-997805,-1)|0); + $1026 = (_i64Add(($1024|0),($1025|0),($1016|0),($1017|0))|0); $1027 = tempRet0; - $1028 = (_i64Add(($1026|0),($1027|0),($1000|0),($1001|0))|0); + $1028 = (_i64Subtract(($1026|0),($1027|0),($782|0),($783|0))|0); $1029 = tempRet0; - $1030 = (___muldi3(($964|0),($965|0),136657,0)|0); + $1030 = (_i64Add(($1028|0),($1029|0),($896|0),($897|0))|0); $1031 = tempRet0; - $1032 = (_i64Add(($1030|0),($1031|0),($1004|0),($1005|0))|0); + $1032 = (___muldi3(($916|0),($917|0),666643,0)|0); $1033 = tempRet0; - $1034 = (___muldi3(($964|0),($965|0),-683901,-1)|0); + $1034 = (_i64Add(($288|0),($289|0),($1032|0),($1033|0))|0); $1035 = tempRet0; - $1036 = (_i64Add(($1008|0),($1009|0),($1034|0),($1035|0))|0); + $1036 = (_i64Add(($1034|0),($1035|0),($876|0),($877|0))|0); $1037 = tempRet0; - $1038 = (___muldi3(($950|0),($951|0),666643,0)|0); + $1038 = (_i64Subtract(($1036|0),($1037|0),($696|0),($697|0))|0); $1039 = tempRet0; - $1040 = (___muldi3(($950|0),($951|0),470296,0)|0); + $1040 = (___muldi3(($916|0),($917|0),470296,0)|0); $1041 = tempRet0; - $1042 = (_i64Add(($1040|0),($1041|0),($1016|0),($1017|0))|0); + $1042 = (___muldi3(($916|0),($917|0),654183,0)|0); $1043 = tempRet0; - $1044 = (___muldi3(($950|0),($951|0),654183,0)|0); + $1044 = (_i64Add(($1008|0),($1009|0),($994|0),($995|0))|0); $1045 = tempRet0; - $1046 = (_i64Add(($1044|0),($1045|0),($1020|0),($1021|0))|0); + $1046 = (_i64Add(($1044|0),($1045|0),($1042|0),($1043|0))|0); $1047 = tempRet0; - $1048 = (___muldi3(($950|0),($951|0),-997805,-1)|0); + $1048 = (_i64Add(($1046|0),($1047|0),($340|0),($341|0))|0); $1049 = tempRet0; - $1050 = (_i64Add(($1048|0),($1049|0),($1024|0),($1025|0))|0); + $1050 = (_i64Add(($1048|0),($1049|0),($884|0),($885|0))|0); $1051 = tempRet0; - $1052 = (___muldi3(($950|0),($951|0),136657,0)|0); + $1052 = (_i64Subtract(($1050|0),($1051|0),($724|0),($725|0))|0); $1053 = tempRet0; - $1054 = (_i64Add(($1052|0),($1053|0),($1028|0),($1029|0))|0); + $1054 = (___muldi3(($916|0),($917|0),-997805,-1)|0); $1055 = tempRet0; - $1056 = (___muldi3(($950|0),($951|0),-683901,-1)|0); + $1056 = (___muldi3(($916|0),($917|0),136657,0)|0); $1057 = tempRet0; - $1058 = (_i64Add(($1032|0),($1033|0),($1056|0),($1057|0))|0); + $1058 = (_i64Add(($974|0),($975|0),($960|0),($961|0))|0); $1059 = tempRet0; - $1060 = (___muldi3(($954|0),($955|0),666643,0)|0); + $1060 = (_i64Add(($1058|0),($1059|0),($998|0),($999|0))|0); $1061 = tempRet0; - $1062 = (___muldi3(($954|0),($955|0),470296,0)|0); + $1062 = (_i64Add(($1060|0),($1061|0),($1012|0),($1013|0))|0); $1063 = tempRet0; - $1064 = (___muldi3(($954|0),($955|0),654183,0)|0); + $1064 = (_i64Add(($1062|0),($1063|0),($1056|0),($1057|0))|0); $1065 = tempRet0; - $1066 = (_i64Add(($1064|0),($1065|0),($1042|0),($1043|0))|0); + $1066 = (_i64Add(($1064|0),($1065|0),($404|0),($405|0))|0); $1067 = tempRet0; - $1068 = (___muldi3(($954|0),($955|0),-997805,-1)|0); + $1068 = (_i64Add(($1066|0),($1067|0),($890|0),($891|0))|0); $1069 = tempRet0; - $1070 = (_i64Add(($1046|0),($1047|0),($1068|0),($1069|0))|0); + $1070 = (_i64Subtract(($1068|0),($1069|0),($756|0),($757|0))|0); $1071 = tempRet0; - $1072 = (___muldi3(($954|0),($955|0),136657,0)|0); + $1072 = (___muldi3(($916|0),($917|0),-683901,-1)|0); $1073 = tempRet0; - $1074 = (_i64Add(($1072|0),($1073|0),($1050|0),($1051|0))|0); + $1074 = (_i64Add(($1038|0),($1039|0),1048576,0)|0); $1075 = tempRet0; - $1076 = (___muldi3(($954|0),($955|0),-683901,-1)|0); + $1076 = (_bitshift64Ashr(($1074|0),($1075|0),21)|0); $1077 = tempRet0; - $1078 = (_i64Add(($1054|0),($1055|0),($1076|0),($1077|0))|0); + $1078 = (_i64Add(($1040|0),($1041|0),($1006|0),($1007|0))|0); $1079 = tempRet0; - $1080 = (___muldi3(($940|0),($941|0),666643,0)|0); + $1080 = (_i64Add(($1078|0),($1079|0),($694|0),($695|0))|0); $1081 = tempRet0; - $1082 = (_i64Add(($284|0),($285|0),($1080|0),($1081|0))|0); + $1082 = (_i64Subtract(($1080|0),($1081|0),($886|0),($887|0))|0); $1083 = tempRet0; - $1084 = (_i64Add(($1082|0),($1083|0),($884|0),($885|0))|0); + $1084 = (_i64Add(($1082|0),($1083|0),($1076|0),($1077|0))|0); $1085 = tempRet0; - $1086 = (_i64Subtract(($1084|0),($1085|0),($694|0),($695|0))|0); + $1086 = (_bitshift64Shl(($1076|0),($1077|0),21)|0); $1087 = tempRet0; - $1088 = (___muldi3(($940|0),($941|0),470296,0)|0); + $1088 = (_i64Add(($1052|0),($1053|0),1048576,0)|0); $1089 = tempRet0; - $1090 = (___muldi3(($940|0),($941|0),654183,0)|0); + $1090 = (_bitshift64Ashr(($1088|0),($1089|0),21)|0); $1091 = tempRet0; - $1092 = (_i64Add(($1062|0),($1063|0),($1038|0),($1039|0))|0); + $1092 = (_i64Add(($996|0),($997|0),($972|0),($973|0))|0); $1093 = tempRet0; - $1094 = (_i64Add(($1092|0),($1093|0),($1090|0),($1091|0))|0); + $1094 = (_i64Add(($1092|0),($1093|0),($1010|0),($1011|0))|0); $1095 = tempRet0; - $1096 = (_i64Add(($1094|0),($1095|0),($336|0),($337|0))|0); + $1096 = (_i64Add(($1094|0),($1095|0),($1054|0),($1055|0))|0); $1097 = tempRet0; - $1098 = (_i64Add(($1096|0),($1097|0),($892|0),($893|0))|0); + $1098 = (_i64Add(($1096|0),($1097|0),($722|0),($723|0))|0); $1099 = tempRet0; - $1100 = (_i64Subtract(($1098|0),($1099|0),($722|0),($723|0))|0); + $1100 = (_i64Subtract(($1098|0),($1099|0),($892|0),($893|0))|0); $1101 = tempRet0; - $1102 = (___muldi3(($940|0),($941|0),-997805,-1)|0); + $1102 = (_i64Add(($1100|0),($1101|0),($1090|0),($1091|0))|0); $1103 = tempRet0; - $1104 = (_i64Add(($1066|0),($1067|0),($1102|0),($1103|0))|0); + $1104 = (_bitshift64Shl(($1090|0),($1091|0),21)|0); $1105 = tempRet0; - $1106 = (___muldi3(($940|0),($941|0),136657,0)|0); + $1106 = (_i64Add(($1070|0),($1071|0),1048576,0)|0); $1107 = tempRet0; - $1108 = (_i64Add(($1070|0),($1071|0),($1106|0),($1107|0))|0); + $1108 = (_bitshift64Ashr(($1106|0),($1107|0),21)|0); $1109 = tempRet0; - $1110 = (___muldi3(($940|0),($941|0),-683901,-1)|0); + $1110 = (_i64Add(($962|0),($963|0),($942|0),($943|0))|0); $1111 = tempRet0; - $1112 = (_i64Add(($1074|0),($1075|0),($1110|0),($1111|0))|0); + $1112 = (_i64Add(($1110|0),($1111|0),($976|0),($977|0))|0); $1113 = tempRet0; - $1114 = (_i64Add(($1086|0),($1087|0),1048576,0)|0); + $1114 = (_i64Add(($1112|0),($1113|0),($1000|0),($1001|0))|0); $1115 = tempRet0; - $1116 = (_bitshift64Ashr(($1114|0),($1115|0),21)|0); + $1116 = (_i64Add(($1114|0),($1115|0),($1014|0),($1015|0))|0); $1117 = tempRet0; - $1118 = (_i64Add(($1088|0),($1089|0),($1060|0),($1061|0))|0); + $1118 = (_i64Add(($1116|0),($1117|0),($1072|0),($1073|0))|0); $1119 = tempRet0; - $1120 = (_i64Add(($1118|0),($1119|0),($692|0),($693|0))|0); + $1120 = (_i64Add(($1118|0),($1119|0),($754|0),($755|0))|0); $1121 = tempRet0; - $1122 = (_i64Subtract(($1120|0),($1121|0),($894|0),($895|0))|0); + $1122 = (_i64Subtract(($1120|0),($1121|0),($898|0),($899|0))|0); $1123 = tempRet0; - $1124 = (_i64Add(($1122|0),($1123|0),($1116|0),($1117|0))|0); + $1124 = (_i64Add(($1122|0),($1123|0),($1108|0),($1109|0))|0); $1125 = tempRet0; - $1126 = (_bitshift64Shl(($1116|0),($1117|0),21)|0); + $1126 = (_bitshift64Shl(($1108|0),($1109|0),21)|0); $1127 = tempRet0; - $1128 = (_i64Subtract(($1086|0),($1087|0),($1126|0),($1127|0))|0); + $1128 = (_i64Add(($1030|0),($1031|0),1048576,0)|0); $1129 = tempRet0; - $1130 = (_i64Add(($1100|0),($1101|0),1048576,0)|0); + $1130 = (_bitshift64Ashr(($1128|0),($1129|0),21)|0); $1131 = tempRet0; - $1132 = (_bitshift64Ashr(($1130|0),($1131|0),21)|0); + $1132 = (_i64Add(($966|0),($967|0),($946|0),($947|0))|0); $1133 = tempRet0; - $1134 = (_i64Add(($1104|0),($1105|0),($1132|0),($1133|0))|0); + $1134 = (_i64Add(($1132|0),($1133|0),($980|0),($981|0))|0); $1135 = tempRet0; - $1136 = (_bitshift64Shl(($1132|0),($1133|0),21)|0); + $1136 = (_i64Add(($1134|0),($1135|0),($1004|0),($1005|0))|0); $1137 = tempRet0; - $1138 = (_i64Subtract(($1100|0),($1101|0),($1136|0),($1137|0))|0); + $1138 = (_i64Add(($1136|0),($1137|0),($780|0),($781|0))|0); $1139 = tempRet0; - $1140 = (_i64Add(($1108|0),($1109|0),1048576,0)|0); + $1140 = (_i64Subtract(($1138|0),($1139|0),($904|0),($905|0))|0); $1141 = tempRet0; - $1142 = (_bitshift64Ashr(($1140|0),($1141|0),21)|0); + $1142 = (_i64Add(($1140|0),($1141|0),($1130|0),($1131|0))|0); $1143 = tempRet0; - $1144 = (_i64Add(($1112|0),($1113|0),($1142|0),($1143|0))|0); + $1144 = (_bitshift64Shl(($1130|0),($1131|0),21)|0); $1145 = tempRet0; - $1146 = (_bitshift64Shl(($1142|0),($1143|0),21)|0); + $1146 = (_i64Subtract(($1030|0),($1031|0),($1144|0),($1145|0))|0); $1147 = tempRet0; - $1148 = (_i64Subtract(($1108|0),($1109|0),($1146|0),($1147|0))|0); + $1148 = (_i64Add(($992|0),($993|0),1048576,0)|0); $1149 = tempRet0; - $1150 = (_i64Add(($1078|0),($1079|0),1048576,0)|0); + $1150 = (_bitshift64Ashr(($1148|0),($1149|0),21)|0); $1151 = tempRet0; - $1152 = (_bitshift64Ashr(($1150|0),($1151|0),21)|0); + $1152 = (_i64Add(($970|0),($971|0),($950|0),($951|0))|0); $1153 = tempRet0; - $1154 = (_i64Add(($1152|0),($1153|0),($1058|0),($1059|0))|0); + $1154 = (_i64Add(($1152|0),($1153|0),($802|0),($803|0))|0); $1155 = tempRet0; - $1156 = (_bitshift64Shl(($1152|0),($1153|0),21)|0); + $1156 = (_i64Subtract(($1154|0),($1155|0),($910|0),($911|0))|0); $1157 = tempRet0; - $1158 = (_i64Subtract(($1078|0),($1079|0),($1156|0),($1157|0))|0); + $1158 = (_i64Add(($1156|0),($1157|0),($1150|0),($1151|0))|0); $1159 = tempRet0; - $1160 = (_i64Add(($1036|0),($1037|0),1048576,0)|0); + $1160 = (_bitshift64Shl(($1150|0),($1151|0),21)|0); $1161 = tempRet0; - $1162 = (_bitshift64Ashr(($1160|0),($1161|0),21)|0); + $1162 = (_i64Subtract(($992|0),($993|0),($1160|0),($1161|0))|0); $1163 = tempRet0; - $1164 = (_i64Add(($1162|0),($1163|0),($1012|0),($1013|0))|0); + $1164 = (_i64Add(($958|0),($959|0),1048576,0)|0); $1165 = tempRet0; - $1166 = (_bitshift64Shl(($1162|0),($1163|0),21)|0); + $1166 = (_bitshift64Ashr(($1164|0),($1165|0),21)|0); $1167 = tempRet0; - $1168 = (_i64Subtract(($1036|0),($1037|0),($1166|0),($1167|0))|0); + $1168 = (_i64Add(($1166|0),($1167|0),($920|0),($921|0))|0); $1169 = tempRet0; - $1170 = (_i64Add(($988|0),($989|0),1048576,0)|0); + $1170 = (_bitshift64Shl(($1166|0),($1167|0),21)|0); $1171 = tempRet0; - $1172 = (_bitshift64Ashr(($1170|0),($1171|0),21)|0); + $1172 = (_i64Subtract(($958|0),($959|0),($1170|0),($1171|0))|0); $1173 = tempRet0; - $1174 = (_i64Add(($1172|0),($1173|0),($944|0),($945|0))|0); + $1174 = (_i64Add(($1084|0),($1085|0),1048576,0)|0); $1175 = tempRet0; - $1176 = (_bitshift64Shl(($1172|0),($1173|0),21)|0); + $1176 = (_bitshift64Ashr(($1174|0),($1175|0),21)|0); $1177 = tempRet0; - $1178 = (_i64Subtract(($988|0),($989|0),($1176|0),($1177|0))|0); + $1178 = (_bitshift64Shl(($1176|0),($1177|0),21)|0); $1179 = tempRet0; - $1180 = (_i64Add(($1124|0),($1125|0),1048576,0)|0); + $1180 = (_i64Add(($1102|0),($1103|0),1048576,0)|0); $1181 = tempRet0; $1182 = (_bitshift64Ashr(($1180|0),($1181|0),21)|0); $1183 = tempRet0; - $1184 = (_i64Add(($1182|0),($1183|0),($1138|0),($1139|0))|0); + $1184 = (_bitshift64Shl(($1182|0),($1183|0),21)|0); $1185 = tempRet0; - $1186 = (_bitshift64Shl(($1182|0),($1183|0),21)|0); + $1186 = (_i64Add(($1124|0),($1125|0),1048576,0)|0); $1187 = tempRet0; - $1188 = (_i64Subtract(($1124|0),($1125|0),($1186|0),($1187|0))|0); + $1188 = (_bitshift64Ashr(($1186|0),($1187|0),21)|0); $1189 = tempRet0; - $1190 = (_i64Add(($1134|0),($1135|0),1048576,0)|0); + $1190 = (_i64Add(($1188|0),($1189|0),($1146|0),($1147|0))|0); $1191 = tempRet0; - $1192 = (_bitshift64Ashr(($1190|0),($1191|0),21)|0); + $1192 = (_bitshift64Shl(($1188|0),($1189|0),21)|0); $1193 = tempRet0; - $1194 = (_i64Add(($1192|0),($1193|0),($1148|0),($1149|0))|0); + $1194 = (_i64Subtract(($1124|0),($1125|0),($1192|0),($1193|0))|0); $1195 = tempRet0; - $1196 = (_bitshift64Shl(($1192|0),($1193|0),21)|0); + $1196 = (_i64Add(($1142|0),($1143|0),1048576,0)|0); $1197 = tempRet0; - $1198 = (_i64Subtract(($1134|0),($1135|0),($1196|0),($1197|0))|0); + $1198 = (_bitshift64Ashr(($1196|0),($1197|0),21)|0); $1199 = tempRet0; - $1200 = (_i64Add(($1144|0),($1145|0),1048576,0)|0); + $1200 = (_i64Add(($1198|0),($1199|0),($1162|0),($1163|0))|0); $1201 = tempRet0; - $1202 = (_bitshift64Ashr(($1200|0),($1201|0),21)|0); + $1202 = (_bitshift64Shl(($1198|0),($1199|0),21)|0); $1203 = tempRet0; - $1204 = (_i64Add(($1202|0),($1203|0),($1158|0),($1159|0))|0); + $1204 = (_i64Subtract(($1142|0),($1143|0),($1202|0),($1203|0))|0); $1205 = tempRet0; - $1206 = (_bitshift64Shl(($1202|0),($1203|0),21)|0); + $1206 = (_i64Add(($1158|0),($1159|0),1048576,0)|0); $1207 = tempRet0; - $1208 = (_i64Subtract(($1144|0),($1145|0),($1206|0),($1207|0))|0); + $1208 = (_bitshift64Ashr(($1206|0),($1207|0),21)|0); $1209 = tempRet0; - $1210 = (_i64Add(($1154|0),($1155|0),1048576,0)|0); + $1210 = (_i64Add(($1208|0),($1209|0),($1172|0),($1173|0))|0); $1211 = tempRet0; - $1212 = (_bitshift64Ashr(($1210|0),($1211|0),21)|0); + $1212 = (_bitshift64Shl(($1208|0),($1209|0),21)|0); $1213 = tempRet0; - $1214 = (_i64Add(($1212|0),($1213|0),($1168|0),($1169|0))|0); + $1214 = (_i64Subtract(($1158|0),($1159|0),($1212|0),($1213|0))|0); $1215 = tempRet0; - $1216 = (_bitshift64Shl(($1212|0),($1213|0),21)|0); + $1216 = (___muldi3(($1168|0),($1169|0),666643,0)|0); $1217 = tempRet0; - $1218 = (_i64Subtract(($1154|0),($1155|0),($1216|0),($1217|0))|0); + $1218 = (_i64Add(($880|0),($881|0),($1216|0),($1217|0))|0); $1219 = tempRet0; - $1220 = (_i64Add(($1164|0),($1165|0),1048576,0)|0); + $1220 = (___muldi3(($1168|0),($1169|0),470296,0)|0); $1221 = tempRet0; - $1222 = (_bitshift64Ashr(($1220|0),($1221|0),21)|0); + $1222 = (___muldi3(($1168|0),($1169|0),654183,0)|0); $1223 = tempRet0; - $1224 = (_i64Add(($1222|0),($1223|0),($1178|0),($1179|0))|0); + $1224 = (___muldi3(($1168|0),($1169|0),-997805,-1)|0); $1225 = tempRet0; - $1226 = (_bitshift64Shl(($1222|0),($1223|0),21)|0); + $1226 = (___muldi3(($1168|0),($1169|0),136657,0)|0); $1227 = tempRet0; - $1228 = (_i64Subtract(($1164|0),($1165|0),($1226|0),($1227|0))|0); + $1228 = (___muldi3(($1168|0),($1169|0),-683901,-1)|0); $1229 = tempRet0; - $1230 = (___muldi3(($1174|0),($1175|0),666643,0)|0); + $1230 = (_i64Add(($1070|0),($1071|0),($1228|0),($1229|0))|0); $1231 = tempRet0; - $1232 = (_i64Add(($888|0),($889|0),($1230|0),($1231|0))|0); + $1232 = (_i64Add(($1230|0),($1231|0),($1182|0),($1183|0))|0); $1233 = tempRet0; - $1234 = (___muldi3(($1174|0),($1175|0),470296,0)|0); + $1234 = (_i64Subtract(($1232|0),($1233|0),($1126|0),($1127|0))|0); $1235 = tempRet0; - $1236 = (_i64Add(($1234|0),($1235|0),($1128|0),($1129|0))|0); + $1236 = (___muldi3(($1210|0),($1211|0),666643,0)|0); $1237 = tempRet0; - $1238 = (___muldi3(($1174|0),($1175|0),654183,0)|0); + $1238 = (___muldi3(($1210|0),($1211|0),470296,0)|0); $1239 = tempRet0; - $1240 = (_i64Add(($1238|0),($1239|0),($1188|0),($1189|0))|0); + $1240 = (_i64Add(($1218|0),($1219|0),($1238|0),($1239|0))|0); $1241 = tempRet0; - $1242 = (___muldi3(($1174|0),($1175|0),-997805,-1)|0); + $1242 = (___muldi3(($1210|0),($1211|0),654183,0)|0); $1243 = tempRet0; - $1244 = (_i64Add(($1242|0),($1243|0),($1184|0),($1185|0))|0); + $1244 = (___muldi3(($1210|0),($1211|0),-997805,-1)|0); $1245 = tempRet0; - $1246 = (___muldi3(($1174|0),($1175|0),136657,0)|0); + $1246 = (___muldi3(($1210|0),($1211|0),136657,0)|0); $1247 = tempRet0; - $1248 = (_i64Add(($1246|0),($1247|0),($1198|0),($1199|0))|0); + $1248 = (___muldi3(($1210|0),($1211|0),-683901,-1)|0); $1249 = tempRet0; - $1250 = (___muldi3(($1174|0),($1175|0),-683901,-1)|0); + $1250 = (___muldi3(($1214|0),($1215|0),666643,0)|0); $1251 = tempRet0; - $1252 = (_i64Add(($1194|0),($1195|0),($1250|0),($1251|0))|0); + $1252 = (_i64Add(($872|0),($873|0),($1250|0),($1251|0))|0); $1253 = tempRet0; - $1254 = (___muldi3(($1224|0),($1225|0),666643,0)|0); + $1254 = (___muldi3(($1214|0),($1215|0),470296,0)|0); $1255 = tempRet0; - $1256 = (_i64Add(($876|0),($877|0),($1254|0),($1255|0))|0); + $1256 = (___muldi3(($1214|0),($1215|0),654183,0)|0); $1257 = tempRet0; - $1258 = (___muldi3(($1224|0),($1225|0),470296,0)|0); + $1258 = (_i64Add(($1240|0),($1241|0),($1256|0),($1257|0))|0); $1259 = tempRet0; - $1260 = (_i64Add(($1232|0),($1233|0),($1258|0),($1259|0))|0); + $1260 = (___muldi3(($1214|0),($1215|0),-997805,-1)|0); $1261 = tempRet0; - $1262 = (___muldi3(($1224|0),($1225|0),654183,0)|0); + $1262 = (___muldi3(($1214|0),($1215|0),136657,0)|0); $1263 = tempRet0; - $1264 = (_i64Add(($1236|0),($1237|0),($1262|0),($1263|0))|0); + $1264 = (___muldi3(($1214|0),($1215|0),-683901,-1)|0); $1265 = tempRet0; - $1266 = (___muldi3(($1224|0),($1225|0),-997805,-1)|0); + $1266 = (_i64Add(($1052|0),($1053|0),($1224|0),($1225|0))|0); $1267 = tempRet0; - $1268 = (_i64Add(($1266|0),($1267|0),($1240|0),($1241|0))|0); + $1268 = (_i64Add(($1266|0),($1267|0),($1176|0),($1177|0))|0); $1269 = tempRet0; - $1270 = (___muldi3(($1224|0),($1225|0),136657,0)|0); + $1270 = (_i64Add(($1268|0),($1269|0),($1246|0),($1247|0))|0); $1271 = tempRet0; - $1272 = (_i64Add(($1270|0),($1271|0),($1244|0),($1245|0))|0); + $1272 = (_i64Add(($1270|0),($1271|0),($1264|0),($1265|0))|0); $1273 = tempRet0; - $1274 = (___muldi3(($1224|0),($1225|0),-683901,-1)|0); + $1274 = (_i64Subtract(($1272|0),($1273|0),($1104|0),($1105|0))|0); $1275 = tempRet0; - $1276 = (_i64Add(($1248|0),($1249|0),($1274|0),($1275|0))|0); + $1276 = (___muldi3(($1200|0),($1201|0),666643,0)|0); $1277 = tempRet0; - $1278 = (___muldi3(($1228|0),($1229|0),666643,0)|0); + $1278 = (___muldi3(($1200|0),($1201|0),470296,0)|0); $1279 = tempRet0; - $1280 = (_i64Add(($880|0),($881|0),($1278|0),($1279|0))|0); + $1280 = (_i64Add(($1252|0),($1253|0),($1278|0),($1279|0))|0); $1281 = tempRet0; - $1282 = (___muldi3(($1228|0),($1229|0),470296,0)|0); + $1282 = (___muldi3(($1200|0),($1201|0),654183,0)|0); $1283 = tempRet0; - $1284 = (_i64Add(($1256|0),($1257|0),($1282|0),($1283|0))|0); + $1284 = (___muldi3(($1200|0),($1201|0),-997805,-1)|0); $1285 = tempRet0; - $1286 = (___muldi3(($1228|0),($1229|0),654183,0)|0); + $1286 = (_i64Add(($1258|0),($1259|0),($1284|0),($1285|0))|0); $1287 = tempRet0; - $1288 = (_i64Add(($1260|0),($1261|0),($1286|0),($1287|0))|0); + $1288 = (___muldi3(($1200|0),($1201|0),136657,0)|0); $1289 = tempRet0; - $1290 = (___muldi3(($1228|0),($1229|0),-997805,-1)|0); + $1290 = (___muldi3(($1200|0),($1201|0),-683901,-1)|0); $1291 = tempRet0; - $1292 = (_i64Add(($1264|0),($1265|0),($1290|0),($1291|0))|0); + $1292 = (___muldi3(($1204|0),($1205|0),666643,0)|0); $1293 = tempRet0; - $1294 = (___muldi3(($1228|0),($1229|0),136657,0)|0); + $1294 = (___muldi3(($1204|0),($1205|0),470296,0)|0); $1295 = tempRet0; - $1296 = (_i64Add(($1294|0),($1295|0),($1268|0),($1269|0))|0); + $1296 = (___muldi3(($1204|0),($1205|0),654183,0)|0); $1297 = tempRet0; - $1298 = (___muldi3(($1228|0),($1229|0),-683901,-1)|0); + $1298 = (___muldi3(($1204|0),($1205|0),-997805,-1)|0); $1299 = tempRet0; - $1300 = (_i64Add(($1272|0),($1273|0),($1298|0),($1299|0))|0); + $1300 = (___muldi3(($1204|0),($1205|0),136657,0)|0); $1301 = tempRet0; - $1302 = (___muldi3(($1214|0),($1215|0),666643,0)|0); + $1302 = (___muldi3(($1204|0),($1205|0),-683901,-1)|0); $1303 = tempRet0; - $1304 = (___muldi3(($1214|0),($1215|0),470296,0)|0); + $1304 = (_i64Add(($1038|0),($1039|0),($1220|0),($1221|0))|0); $1305 = tempRet0; - $1306 = (_i64Add(($1280|0),($1281|0),($1304|0),($1305|0))|0); + $1306 = (_i64Subtract(($1304|0),($1305|0),($1086|0),($1087|0))|0); $1307 = tempRet0; - $1308 = (___muldi3(($1214|0),($1215|0),654183,0)|0); + $1308 = (_i64Add(($1306|0),($1307|0),($1242|0),($1243|0))|0); $1309 = tempRet0; - $1310 = (_i64Add(($1284|0),($1285|0),($1308|0),($1309|0))|0); + $1310 = (_i64Add(($1308|0),($1309|0),($1260|0),($1261|0))|0); $1311 = tempRet0; - $1312 = (___muldi3(($1214|0),($1215|0),-997805,-1)|0); + $1312 = (_i64Add(($1310|0),($1311|0),($1288|0),($1289|0))|0); $1313 = tempRet0; - $1314 = (_i64Add(($1288|0),($1289|0),($1312|0),($1313|0))|0); + $1314 = (_i64Add(($1312|0),($1313|0),($1302|0),($1303|0))|0); $1315 = tempRet0; - $1316 = (___muldi3(($1214|0),($1215|0),136657,0)|0); + $1316 = (___muldi3(($1190|0),($1191|0),666643,0)|0); $1317 = tempRet0; - $1318 = (_i64Add(($1292|0),($1293|0),($1316|0),($1317|0))|0); + $1318 = (_i64Add(($1316|0),($1317|0),($636|0),($637|0))|0); $1319 = tempRet0; - $1320 = (___muldi3(($1214|0),($1215|0),-683901,-1)|0); + $1320 = (___muldi3(($1190|0),($1191|0),470296,0)|0); $1321 = tempRet0; - $1322 = (_i64Add(($1296|0),($1297|0),($1320|0),($1321|0))|0); + $1322 = (___muldi3(($1190|0),($1191|0),654183,0)|0); $1323 = tempRet0; - $1324 = (___muldi3(($1218|0),($1219|0),666643,0)|0); + $1324 = (_i64Add(($860|0),($861|0),($220|0),($221|0))|0); $1325 = tempRet0; - $1326 = (___muldi3(($1218|0),($1219|0),470296,0)|0); + $1326 = (_i64Subtract(($1324|0),($1325|0),($652|0),($653|0))|0); $1327 = tempRet0; - $1328 = (___muldi3(($1218|0),($1219|0),654183,0)|0); + $1328 = (_i64Add(($1326|0),($1327|0),($1276|0),($1277|0))|0); $1329 = tempRet0; - $1330 = (_i64Add(($1306|0),($1307|0),($1328|0),($1329|0))|0); + $1330 = (_i64Add(($1328|0),($1329|0),($1322|0),($1323|0))|0); $1331 = tempRet0; - $1332 = (___muldi3(($1218|0),($1219|0),-997805,-1)|0); + $1332 = (_i64Add(($1330|0),($1331|0),($1294|0),($1295|0))|0); $1333 = tempRet0; - $1334 = (_i64Add(($1310|0),($1311|0),($1332|0),($1333|0))|0); + $1334 = (___muldi3(($1190|0),($1191|0),-997805,-1)|0); $1335 = tempRet0; - $1336 = (___muldi3(($1218|0),($1219|0),136657,0)|0); + $1336 = (___muldi3(($1190|0),($1191|0),136657,0)|0); $1337 = tempRet0; - $1338 = (_i64Add(($1314|0),($1315|0),($1336|0),($1337|0))|0); + $1338 = (_i64Add(($868|0),($869|0),($248|0),($249|0))|0); $1339 = tempRet0; - $1340 = (___muldi3(($1218|0),($1219|0),-683901,-1)|0); + $1340 = (_i64Subtract(($1338|0),($1339|0),($672|0),($673|0))|0); $1341 = tempRet0; - $1342 = (_i64Add(($1318|0),($1319|0),($1340|0),($1341|0))|0); + $1342 = (_i64Add(($1340|0),($1341|0),($1236|0),($1237|0))|0); $1343 = tempRet0; - $1344 = (___muldi3(($1204|0),($1205|0),666643,0)|0); + $1344 = (_i64Add(($1342|0),($1343|0),($1254|0),($1255|0))|0); $1345 = tempRet0; - $1346 = (_i64Add(($1344|0),($1345|0),($632|0),($633|0))|0); + $1346 = (_i64Add(($1344|0),($1345|0),($1282|0),($1283|0))|0); $1347 = tempRet0; - $1348 = (___muldi3(($1204|0),($1205|0),470296,0)|0); + $1348 = (_i64Add(($1346|0),($1347|0),($1336|0),($1337|0))|0); $1349 = tempRet0; - $1350 = (___muldi3(($1204|0),($1205|0),654183,0)|0); + $1350 = (_i64Add(($1348|0),($1349|0),($1298|0),($1299|0))|0); $1351 = tempRet0; - $1352 = (_i64Add(($866|0),($867|0),($216|0),($217|0))|0); + $1352 = (___muldi3(($1190|0),($1191|0),-683901,-1)|0); $1353 = tempRet0; - $1354 = (_i64Subtract(($1352|0),($1353|0),($648|0),($649|0))|0); + $1354 = (_i64Add(($1318|0),($1319|0),1048576,0)|0); $1355 = tempRet0; - $1356 = (_i64Add(($1354|0),($1355|0),($1302|0),($1303|0))|0); + $1356 = (_bitshift64Ashr(($1354|0),($1355|0),21)|0); $1357 = tempRet0; - $1358 = (_i64Add(($1356|0),($1357|0),($1350|0),($1351|0))|0); + $1358 = (_i64Add(($864|0),($865|0),($1320|0),($1321|0))|0); $1359 = tempRet0; - $1360 = (_i64Add(($1358|0),($1359|0),($1326|0),($1327|0))|0); + $1360 = (_i64Add(($1358|0),($1359|0),($1292|0),($1293|0))|0); $1361 = tempRet0; - $1362 = (___muldi3(($1204|0),($1205|0),-997805,-1)|0); + $1362 = (_i64Add(($1360|0),($1361|0),($1356|0),($1357|0))|0); $1363 = tempRet0; - $1364 = (_i64Add(($1330|0),($1331|0),($1362|0),($1363|0))|0); + $1364 = (_bitshift64Shl(($1356|0),($1357|0),21)|0); $1365 = tempRet0; - $1366 = (___muldi3(($1204|0),($1205|0),136657,0)|0); + $1366 = (_i64Subtract(($1318|0),($1319|0),($1364|0),($1365|0))|0); $1367 = tempRet0; - $1368 = (_i64Add(($1334|0),($1335|0),($1366|0),($1367|0))|0); + $1368 = (_i64Add(($1332|0),($1333|0),1048576,0)|0); $1369 = tempRet0; - $1370 = (___muldi3(($1204|0),($1205|0),-683901,-1)|0); + $1370 = (_bitshift64Ashr(($1368|0),($1369|0),21)|0); $1371 = tempRet0; - $1372 = (_i64Add(($1338|0),($1339|0),($1370|0),($1371|0))|0); + $1372 = (_i64Add(($1280|0),($1281|0),($1334|0),($1335|0))|0); $1373 = tempRet0; - $1374 = (_i64Add(($1346|0),($1347|0),1048576,0)|0); + $1374 = (_i64Add(($1372|0),($1373|0),($1296|0),($1297|0))|0); $1375 = tempRet0; - $1376 = (_bitshift64Ashr(($1374|0),($1375|0),21)|0); + $1376 = (_i64Add(($1374|0),($1375|0),($1370|0),($1371|0))|0); $1377 = tempRet0; - $1378 = (_i64Add(($870|0),($871|0),($1348|0),($1349|0))|0); + $1378 = (_bitshift64Shl(($1370|0),($1371|0),21)|0); $1379 = tempRet0; - $1380 = (_i64Add(($1378|0),($1379|0),($1324|0),($1325|0))|0); + $1380 = (_i64Add(($1350|0),($1351|0),1048576,0)|0); $1381 = tempRet0; - $1382 = (_i64Add(($1380|0),($1381|0),($1376|0),($1377|0))|0); + $1382 = (_bitshift64Ashr(($1380|0),($1381|0),21)|0); $1383 = tempRet0; - $1384 = (_bitshift64Shl(($1376|0),($1377|0),21)|0); + $1384 = (_i64Add(($1286|0),($1287|0),($1352|0),($1353|0))|0); $1385 = tempRet0; - $1386 = (_i64Subtract(($1346|0),($1347|0),($1384|0),($1385|0))|0); + $1386 = (_i64Add(($1384|0),($1385|0),($1300|0),($1301|0))|0); $1387 = tempRet0; - $1388 = (_i64Add(($1360|0),($1361|0),1048576,0)|0); + $1388 = (_i64Add(($1386|0),($1387|0),($1382|0),($1383|0))|0); $1389 = tempRet0; - $1390 = (_bitshift64Ashr(($1388|0),($1389|0),21)|0); + $1390 = (_bitshift64Shl(($1382|0),($1383|0),21)|0); $1391 = tempRet0; - $1392 = (_i64Add(($1390|0),($1391|0),($1364|0),($1365|0))|0); + $1392 = (_i64Add(($1314|0),($1315|0),1048576,0)|0); $1393 = tempRet0; - $1394 = (_bitshift64Shl(($1390|0),($1391|0),21)|0); + $1394 = (_bitshift64Ashr(($1392|0),($1393|0),21)|0); $1395 = tempRet0; - $1396 = (_i64Add(($1368|0),($1369|0),1048576,0)|0); + $1396 = (_i64Add(($1084|0),($1085|0),($1222|0),($1223|0))|0); $1397 = tempRet0; - $1398 = (_bitshift64Ashr(($1396|0),($1397|0),21)|0); + $1398 = (_i64Add(($1396|0),($1397|0),($1244|0),($1245|0))|0); $1399 = tempRet0; - $1400 = (_i64Add(($1398|0),($1399|0),($1372|0),($1373|0))|0); + $1400 = (_i64Subtract(($1398|0),($1399|0),($1178|0),($1179|0))|0); $1401 = tempRet0; - $1402 = (_bitshift64Shl(($1398|0),($1399|0),21)|0); + $1402 = (_i64Add(($1400|0),($1401|0),($1262|0),($1263|0))|0); $1403 = tempRet0; - $1404 = (_i64Add(($1342|0),($1343|0),1048576,0)|0); + $1404 = (_i64Add(($1402|0),($1403|0),($1290|0),($1291|0))|0); $1405 = tempRet0; - $1406 = (_bitshift64Ashr(($1404|0),($1405|0),21)|0); + $1406 = (_i64Add(($1404|0),($1405|0),($1394|0),($1395|0))|0); $1407 = tempRet0; - $1408 = (_i64Add(($1406|0),($1407|0),($1322|0),($1323|0))|0); + $1408 = (_bitshift64Shl(($1394|0),($1395|0),21)|0); $1409 = tempRet0; - $1410 = (_bitshift64Shl(($1406|0),($1407|0),21)|0); + $1410 = (_i64Subtract(($1314|0),($1315|0),($1408|0),($1409|0))|0); $1411 = tempRet0; - $1412 = (_i64Subtract(($1342|0),($1343|0),($1410|0),($1411|0))|0); + $1412 = (_i64Add(($1274|0),($1275|0),1048576,0)|0); $1413 = tempRet0; - $1414 = (_i64Add(($1300|0),($1301|0),1048576,0)|0); + $1414 = (_bitshift64Ashr(($1412|0),($1413|0),21)|0); $1415 = tempRet0; - $1416 = (_bitshift64Ashr(($1414|0),($1415|0),21)|0); + $1416 = (_i64Add(($1248|0),($1249|0),($1226|0),($1227|0))|0); $1417 = tempRet0; - $1418 = (_i64Add(($1276|0),($1277|0),($1416|0),($1417|0))|0); + $1418 = (_i64Add(($1416|0),($1417|0),($1102|0),($1103|0))|0); $1419 = tempRet0; - $1420 = (_bitshift64Shl(($1416|0),($1417|0),21)|0); + $1420 = (_i64Subtract(($1418|0),($1419|0),($1184|0),($1185|0))|0); $1421 = tempRet0; - $1422 = (_i64Subtract(($1300|0),($1301|0),($1420|0),($1421|0))|0); + $1422 = (_i64Add(($1420|0),($1421|0),($1414|0),($1415|0))|0); $1423 = tempRet0; - $1424 = (_i64Add(($1252|0),($1253|0),1048576,0)|0); + $1424 = (_bitshift64Shl(($1414|0),($1415|0),21)|0); $1425 = tempRet0; - $1426 = (_bitshift64Ashr(($1424|0),($1425|0),21)|0); + $1426 = (_i64Subtract(($1274|0),($1275|0),($1424|0),($1425|0))|0); $1427 = tempRet0; - $1428 = (_i64Add(($1208|0),($1209|0),($1426|0),($1427|0))|0); + $1428 = (_i64Add(($1234|0),($1235|0),1048576,0)|0); $1429 = tempRet0; - $1430 = (_bitshift64Shl(($1426|0),($1427|0),21)|0); + $1430 = (_bitshift64Ashr(($1428|0),($1429|0),21)|0); $1431 = tempRet0; - $1432 = (_i64Add(($1382|0),($1383|0),1048576,0)|0); + $1432 = (_i64Add(($1194|0),($1195|0),($1430|0),($1431|0))|0); $1433 = tempRet0; - $1434 = (_bitshift64Ashr(($1432|0),($1433|0),21)|0); + $1434 = (_bitshift64Shl(($1430|0),($1431|0),21)|0); $1435 = tempRet0; - $1436 = (_bitshift64Shl(($1434|0),($1435|0),21)|0); + $1436 = (_i64Add(($1362|0),($1363|0),1048576,0)|0); $1437 = tempRet0; - $1438 = (_i64Add(($1392|0),($1393|0),1048576,0)|0); + $1438 = (_bitshift64Ashr(($1436|0),($1437|0),21)|0); $1439 = tempRet0; - $1440 = (_bitshift64Ashr(($1438|0),($1439|0),21)|0); + $1440 = (_bitshift64Shl(($1438|0),($1439|0),21)|0); $1441 = tempRet0; - $1442 = (_bitshift64Shl(($1440|0),($1441|0),21)|0); + $1442 = (_i64Add(($1376|0),($1377|0),1048576,0)|0); $1443 = tempRet0; - $1444 = (_i64Subtract(($1392|0),($1393|0),($1442|0),($1443|0))|0); + $1444 = (_bitshift64Ashr(($1442|0),($1443|0),21)|0); $1445 = tempRet0; - $1446 = (_i64Add(($1400|0),($1401|0),1048576,0)|0); + $1446 = (_bitshift64Shl(($1444|0),($1445|0),21)|0); $1447 = tempRet0; - $1448 = (_bitshift64Ashr(($1446|0),($1447|0),21)|0); + $1448 = (_i64Add(($1388|0),($1389|0),1048576,0)|0); $1449 = tempRet0; - $1450 = (_i64Add(($1412|0),($1413|0),($1448|0),($1449|0))|0); + $1450 = (_bitshift64Ashr(($1448|0),($1449|0),21)|0); $1451 = tempRet0; - $1452 = (_bitshift64Shl(($1448|0),($1449|0),21)|0); + $1452 = (_i64Add(($1410|0),($1411|0),($1450|0),($1451|0))|0); $1453 = tempRet0; - $1454 = (_i64Subtract(($1400|0),($1401|0),($1452|0),($1453|0))|0); + $1454 = (_bitshift64Shl(($1450|0),($1451|0),21)|0); $1455 = tempRet0; - $1456 = (_i64Add(($1408|0),($1409|0),1048576,0)|0); + $1456 = (_i64Add(($1406|0),($1407|0),1048576,0)|0); $1457 = tempRet0; $1458 = (_bitshift64Ashr(($1456|0),($1457|0),21)|0); $1459 = tempRet0; - $1460 = (_i64Add(($1422|0),($1423|0),($1458|0),($1459|0))|0); + $1460 = (_i64Add(($1426|0),($1427|0),($1458|0),($1459|0))|0); $1461 = tempRet0; $1462 = (_bitshift64Shl(($1458|0),($1459|0),21)|0); $1463 = tempRet0; - $1464 = (_i64Subtract(($1408|0),($1409|0),($1462|0),($1463|0))|0); + $1464 = (_i64Subtract(($1406|0),($1407|0),($1462|0),($1463|0))|0); $1465 = tempRet0; - $1466 = (_i64Add(($1418|0),($1419|0),1048576,0)|0); + $1466 = (_i64Add(($1422|0),($1423|0),1048576,0)|0); $1467 = tempRet0; $1468 = (_bitshift64Ashr(($1466|0),($1467|0),21)|0); $1469 = tempRet0; $1470 = (_bitshift64Shl(($1468|0),($1469|0),21)|0); $1471 = tempRet0; - $1472 = (_i64Subtract(($1418|0),($1419|0),($1470|0),($1471|0))|0); + $1472 = (_i64Subtract(($1422|0),($1423|0),($1470|0),($1471|0))|0); $1473 = tempRet0; - $1474 = (_i64Add(($1428|0),($1429|0),1048576,0)|0); + $1474 = (_i64Add(($1432|0),($1433|0),1048576,0)|0); $1475 = tempRet0; $1476 = (_bitshift64Ashr(($1474|0),($1475|0),21)|0); $1477 = tempRet0; $1478 = (_bitshift64Shl(($1476|0),($1477|0),21)|0); $1479 = tempRet0; - $1480 = (_i64Subtract(($1428|0),($1429|0),($1478|0),($1479|0))|0); + $1480 = (_i64Subtract(($1432|0),($1433|0),($1478|0),($1479|0))|0); $1481 = tempRet0; $1482 = (___muldi3(($1476|0),($1477|0),666643,0)|0); $1483 = tempRet0; - $1484 = (_i64Add(($1386|0),($1387|0),($1482|0),($1483|0))|0); + $1484 = (_i64Add(($1366|0),($1367|0),($1482|0),($1483|0))|0); $1485 = tempRet0; $1486 = (___muldi3(($1476|0),($1477|0),470296,0)|0); $1487 = tempRet0; @@ -17245,55 +13707,55 @@ function _crypto_sign_ed25519_ref10_sc_muladd($s,$a,$b,$c) { $1489 = tempRet0; $1490 = (___muldi3(($1476|0),($1477|0),-997805,-1)|0); $1491 = tempRet0; - $1492 = (_i64Add(($1444|0),($1445|0),($1490|0),($1491|0))|0); + $1492 = (___muldi3(($1476|0),($1477|0),136657,0)|0); $1493 = tempRet0; - $1494 = (___muldi3(($1476|0),($1477|0),136657,0)|0); + $1494 = (___muldi3(($1476|0),($1477|0),-683901,-1)|0); $1495 = tempRet0; - $1496 = (___muldi3(($1476|0),($1477|0),-683901,-1)|0); + $1496 = (_bitshift64Ashr(($1484|0),($1485|0),21)|0); $1497 = tempRet0; - $1498 = (_i64Add(($1454|0),($1455|0),($1496|0),($1497|0))|0); + $1498 = (_i64Add(($1486|0),($1487|0),($1362|0),($1363|0))|0); $1499 = tempRet0; - $1500 = (_bitshift64Ashr(($1484|0),($1485|0),21)|0); + $1500 = (_i64Subtract(($1498|0),($1499|0),($1440|0),($1441|0))|0); $1501 = tempRet0; - $1502 = (_i64Add(($1486|0),($1487|0),($1382|0),($1383|0))|0); + $1502 = (_i64Add(($1500|0),($1501|0),($1496|0),($1497|0))|0); $1503 = tempRet0; - $1504 = (_i64Subtract(($1502|0),($1503|0),($1436|0),($1437|0))|0); + $1504 = (_bitshift64Shl(($1496|0),($1497|0),21)|0); $1505 = tempRet0; - $1506 = (_i64Add(($1504|0),($1505|0),($1500|0),($1501|0))|0); + $1506 = (_i64Subtract(($1484|0),($1485|0),($1504|0),($1505|0))|0); $1507 = tempRet0; - $1508 = (_bitshift64Shl(($1500|0),($1501|0),21)|0); + $1508 = (_bitshift64Ashr(($1502|0),($1503|0),21)|0); $1509 = tempRet0; - $1510 = (_i64Subtract(($1484|0),($1485|0),($1508|0),($1509|0))|0); + $1510 = (_i64Add(($1488|0),($1489|0),($1332|0),($1333|0))|0); $1511 = tempRet0; - $1512 = (_bitshift64Ashr(($1506|0),($1507|0),21)|0); + $1512 = (_i64Subtract(($1510|0),($1511|0),($1378|0),($1379|0))|0); $1513 = tempRet0; - $1514 = (_i64Add(($1488|0),($1489|0),($1360|0),($1361|0))|0); + $1514 = (_i64Add(($1512|0),($1513|0),($1438|0),($1439|0))|0); $1515 = tempRet0; - $1516 = (_i64Subtract(($1514|0),($1515|0),($1394|0),($1395|0))|0); + $1516 = (_i64Add(($1514|0),($1515|0),($1508|0),($1509|0))|0); $1517 = tempRet0; - $1518 = (_i64Add(($1516|0),($1517|0),($1434|0),($1435|0))|0); + $1518 = (_bitshift64Shl(($1508|0),($1509|0),21)|0); $1519 = tempRet0; - $1520 = (_i64Add(($1518|0),($1519|0),($1512|0),($1513|0))|0); + $1520 = (_i64Subtract(($1502|0),($1503|0),($1518|0),($1519|0))|0); $1521 = tempRet0; - $1522 = (_bitshift64Shl(($1512|0),($1513|0),21)|0); + $1522 = (_bitshift64Ashr(($1516|0),($1517|0),21)|0); $1523 = tempRet0; - $1524 = (_i64Subtract(($1506|0),($1507|0),($1522|0),($1523|0))|0); + $1524 = (_i64Add(($1376|0),($1377|0),($1490|0),($1491|0))|0); $1525 = tempRet0; - $1526 = (_bitshift64Ashr(($1520|0),($1521|0),21)|0); + $1526 = (_i64Subtract(($1524|0),($1525|0),($1446|0),($1447|0))|0); $1527 = tempRet0; - $1528 = (_i64Add(($1526|0),($1527|0),($1492|0),($1493|0))|0); + $1528 = (_i64Add(($1526|0),($1527|0),($1522|0),($1523|0))|0); $1529 = tempRet0; - $1530 = (_bitshift64Shl(($1526|0),($1527|0),21)|0); + $1530 = (_bitshift64Shl(($1522|0),($1523|0),21)|0); $1531 = tempRet0; - $1532 = (_i64Subtract(($1520|0),($1521|0),($1530|0),($1531|0))|0); + $1532 = (_i64Subtract(($1516|0),($1517|0),($1530|0),($1531|0))|0); $1533 = tempRet0; $1534 = (_bitshift64Ashr(($1528|0),($1529|0),21)|0); $1535 = tempRet0; - $1536 = (_i64Add(($1494|0),($1495|0),($1368|0),($1369|0))|0); + $1536 = (_i64Add(($1492|0),($1493|0),($1350|0),($1351|0))|0); $1537 = tempRet0; - $1538 = (_i64Subtract(($1536|0),($1537|0),($1402|0),($1403|0))|0); + $1538 = (_i64Subtract(($1536|0),($1537|0),($1390|0),($1391|0))|0); $1539 = tempRet0; - $1540 = (_i64Add(($1538|0),($1539|0),($1440|0),($1441|0))|0); + $1540 = (_i64Add(($1538|0),($1539|0),($1444|0),($1445|0))|0); $1541 = tempRet0; $1542 = (_i64Add(($1540|0),($1541|0),($1534|0),($1535|0))|0); $1543 = tempRet0; @@ -17303,435 +13765,439 @@ function _crypto_sign_ed25519_ref10_sc_muladd($s,$a,$b,$c) { $1547 = tempRet0; $1548 = (_bitshift64Ashr(($1542|0),($1543|0),21)|0); $1549 = tempRet0; - $1550 = (_i64Add(($1548|0),($1549|0),($1498|0),($1499|0))|0); + $1550 = (_i64Add(($1388|0),($1389|0),($1494|0),($1495|0))|0); $1551 = tempRet0; - $1552 = (_bitshift64Shl(($1548|0),($1549|0),21)|0); + $1552 = (_i64Subtract(($1550|0),($1551|0),($1454|0),($1455|0))|0); $1553 = tempRet0; - $1554 = (_i64Subtract(($1542|0),($1543|0),($1552|0),($1553|0))|0); + $1554 = (_i64Add(($1552|0),($1553|0),($1548|0),($1549|0))|0); $1555 = tempRet0; - $1556 = (_bitshift64Ashr(($1550|0),($1551|0),21)|0); + $1556 = (_bitshift64Shl(($1548|0),($1549|0),21)|0); $1557 = tempRet0; - $1558 = (_i64Add(($1450|0),($1451|0),($1556|0),($1557|0))|0); + $1558 = (_i64Subtract(($1542|0),($1543|0),($1556|0),($1557|0))|0); $1559 = tempRet0; - $1560 = (_bitshift64Shl(($1556|0),($1557|0),21)|0); + $1560 = (_bitshift64Ashr(($1554|0),($1555|0),21)|0); $1561 = tempRet0; - $1562 = (_i64Subtract(($1550|0),($1551|0),($1560|0),($1561|0))|0); + $1562 = (_i64Add(($1452|0),($1453|0),($1560|0),($1561|0))|0); $1563 = tempRet0; - $1564 = (_bitshift64Ashr(($1558|0),($1559|0),21)|0); + $1564 = (_bitshift64Shl(($1560|0),($1561|0),21)|0); $1565 = tempRet0; - $1566 = (_i64Add(($1564|0),($1565|0),($1464|0),($1465|0))|0); + $1566 = (_i64Subtract(($1554|0),($1555|0),($1564|0),($1565|0))|0); $1567 = tempRet0; - $1568 = (_bitshift64Shl(($1564|0),($1565|0),21)|0); + $1568 = (_bitshift64Ashr(($1562|0),($1563|0),21)|0); $1569 = tempRet0; - $1570 = (_i64Subtract(($1558|0),($1559|0),($1568|0),($1569|0))|0); + $1570 = (_i64Add(($1568|0),($1569|0),($1464|0),($1465|0))|0); $1571 = tempRet0; - $1572 = (_bitshift64Ashr(($1566|0),($1567|0),21)|0); + $1572 = (_bitshift64Shl(($1568|0),($1569|0),21)|0); $1573 = tempRet0; - $1574 = (_i64Add(($1460|0),($1461|0),($1572|0),($1573|0))|0); + $1574 = (_i64Subtract(($1562|0),($1563|0),($1572|0),($1573|0))|0); $1575 = tempRet0; - $1576 = (_bitshift64Shl(($1572|0),($1573|0),21)|0); + $1576 = (_bitshift64Ashr(($1570|0),($1571|0),21)|0); $1577 = tempRet0; - $1578 = (_i64Subtract(($1566|0),($1567|0),($1576|0),($1577|0))|0); + $1578 = (_i64Add(($1460|0),($1461|0),($1576|0),($1577|0))|0); $1579 = tempRet0; - $1580 = (_bitshift64Ashr(($1574|0),($1575|0),21)|0); + $1580 = (_bitshift64Shl(($1576|0),($1577|0),21)|0); $1581 = tempRet0; - $1582 = (_i64Add(($1580|0),($1581|0),($1472|0),($1473|0))|0); + $1582 = (_i64Subtract(($1570|0),($1571|0),($1580|0),($1581|0))|0); $1583 = tempRet0; - $1584 = (_bitshift64Shl(($1580|0),($1581|0),21)|0); + $1584 = (_bitshift64Ashr(($1578|0),($1579|0),21)|0); $1585 = tempRet0; - $1586 = (_i64Subtract(($1574|0),($1575|0),($1584|0),($1585|0))|0); + $1586 = (_i64Add(($1584|0),($1585|0),($1472|0),($1473|0))|0); $1587 = tempRet0; - $1588 = (_bitshift64Ashr(($1582|0),($1583|0),21)|0); + $1588 = (_bitshift64Shl(($1584|0),($1585|0),21)|0); $1589 = tempRet0; - $1590 = (_i64Add(($1468|0),($1469|0),($1252|0),($1253|0))|0); + $1590 = (_i64Subtract(($1578|0),($1579|0),($1588|0),($1589|0))|0); $1591 = tempRet0; - $1592 = (_i64Subtract(($1590|0),($1591|0),($1430|0),($1431|0))|0); + $1592 = (_bitshift64Ashr(($1586|0),($1587|0),21)|0); $1593 = tempRet0; - $1594 = (_i64Add(($1592|0),($1593|0),($1588|0),($1589|0))|0); + $1594 = (_i64Add(($1468|0),($1469|0),($1234|0),($1235|0))|0); $1595 = tempRet0; - $1596 = (_bitshift64Shl(($1588|0),($1589|0),21)|0); + $1596 = (_i64Subtract(($1594|0),($1595|0),($1434|0),($1435|0))|0); $1597 = tempRet0; - $1598 = (_i64Subtract(($1582|0),($1583|0),($1596|0),($1597|0))|0); + $1598 = (_i64Add(($1596|0),($1597|0),($1592|0),($1593|0))|0); $1599 = tempRet0; - $1600 = (_bitshift64Ashr(($1594|0),($1595|0),21)|0); + $1600 = (_bitshift64Shl(($1592|0),($1593|0),21)|0); $1601 = tempRet0; - $1602 = (_i64Add(($1600|0),($1601|0),($1480|0),($1481|0))|0); + $1602 = (_i64Subtract(($1586|0),($1587|0),($1600|0),($1601|0))|0); $1603 = tempRet0; - $1604 = (_bitshift64Shl(($1600|0),($1601|0),21)|0); + $1604 = (_bitshift64Ashr(($1598|0),($1599|0),21)|0); $1605 = tempRet0; - $1606 = (_i64Subtract(($1594|0),($1595|0),($1604|0),($1605|0))|0); + $1606 = (_i64Add(($1604|0),($1605|0),($1480|0),($1481|0))|0); $1607 = tempRet0; - $1608 = (_bitshift64Ashr(($1602|0),($1603|0),21)|0); + $1608 = (_bitshift64Shl(($1604|0),($1605|0),21)|0); $1609 = tempRet0; - $1610 = (_bitshift64Shl(($1608|0),($1609|0),21)|0); + $1610 = (_i64Subtract(($1598|0),($1599|0),($1608|0),($1609|0))|0); $1611 = tempRet0; - $1612 = (_i64Subtract(($1602|0),($1603|0),($1610|0),($1611|0))|0); + $1612 = (_bitshift64Ashr(($1606|0),($1607|0),21)|0); $1613 = tempRet0; - $1614 = (___muldi3(($1608|0),($1609|0),666643,0)|0); + $1614 = (_bitshift64Shl(($1612|0),($1613|0),21)|0); $1615 = tempRet0; - $1616 = (_i64Add(($1614|0),($1615|0),($1510|0),($1511|0))|0); + $1616 = (_i64Subtract(($1606|0),($1607|0),($1614|0),($1615|0))|0); $1617 = tempRet0; - $1618 = (___muldi3(($1608|0),($1609|0),470296,0)|0); + $1618 = (___muldi3(($1612|0),($1613|0),666643,0)|0); $1619 = tempRet0; - $1620 = (_i64Add(($1524|0),($1525|0),($1618|0),($1619|0))|0); + $1620 = (_i64Add(($1618|0),($1619|0),($1506|0),($1507|0))|0); $1621 = tempRet0; - $1622 = (___muldi3(($1608|0),($1609|0),654183,0)|0); + $1622 = (___muldi3(($1612|0),($1613|0),470296,0)|0); $1623 = tempRet0; - $1624 = (_i64Add(($1532|0),($1533|0),($1622|0),($1623|0))|0); + $1624 = (_i64Add(($1520|0),($1521|0),($1622|0),($1623|0))|0); $1625 = tempRet0; - $1626 = (___muldi3(($1608|0),($1609|0),-997805,-1)|0); + $1626 = (___muldi3(($1612|0),($1613|0),654183,0)|0); $1627 = tempRet0; - $1628 = (_i64Add(($1546|0),($1547|0),($1626|0),($1627|0))|0); + $1628 = (_i64Add(($1532|0),($1533|0),($1626|0),($1627|0))|0); $1629 = tempRet0; - $1630 = (___muldi3(($1608|0),($1609|0),136657,0)|0); + $1630 = (___muldi3(($1612|0),($1613|0),-997805,-1)|0); $1631 = tempRet0; - $1632 = (_i64Add(($1554|0),($1555|0),($1630|0),($1631|0))|0); + $1632 = (_i64Add(($1546|0),($1547|0),($1630|0),($1631|0))|0); $1633 = tempRet0; - $1634 = (___muldi3(($1608|0),($1609|0),-683901,-1)|0); + $1634 = (___muldi3(($1612|0),($1613|0),136657,0)|0); $1635 = tempRet0; - $1636 = (_i64Add(($1562|0),($1563|0),($1634|0),($1635|0))|0); + $1636 = (_i64Add(($1558|0),($1559|0),($1634|0),($1635|0))|0); $1637 = tempRet0; - $1638 = (_bitshift64Ashr(($1616|0),($1617|0),21)|0); + $1638 = (___muldi3(($1612|0),($1613|0),-683901,-1)|0); $1639 = tempRet0; - $1640 = (_i64Add(($1620|0),($1621|0),($1638|0),($1639|0))|0); + $1640 = (_i64Add(($1566|0),($1567|0),($1638|0),($1639|0))|0); $1641 = tempRet0; - $1642 = (_bitshift64Shl(($1638|0),($1639|0),21)|0); + $1642 = (_bitshift64Ashr(($1620|0),($1621|0),21)|0); $1643 = tempRet0; - $1644 = (_i64Subtract(($1616|0),($1617|0),($1642|0),($1643|0))|0); + $1644 = (_i64Add(($1624|0),($1625|0),($1642|0),($1643|0))|0); $1645 = tempRet0; - $1646 = (_bitshift64Ashr(($1640|0),($1641|0),21)|0); + $1646 = (_bitshift64Shl(($1642|0),($1643|0),21)|0); $1647 = tempRet0; - $1648 = (_i64Add(($1624|0),($1625|0),($1646|0),($1647|0))|0); + $1648 = (_i64Subtract(($1620|0),($1621|0),($1646|0),($1647|0))|0); $1649 = tempRet0; - $1650 = (_bitshift64Shl(($1646|0),($1647|0),21)|0); + $1650 = (_bitshift64Ashr(($1644|0),($1645|0),21)|0); $1651 = tempRet0; - $1652 = (_i64Subtract(($1640|0),($1641|0),($1650|0),($1651|0))|0); + $1652 = (_i64Add(($1628|0),($1629|0),($1650|0),($1651|0))|0); $1653 = tempRet0; - $1654 = (_bitshift64Ashr(($1648|0),($1649|0),21)|0); + $1654 = (_bitshift64Shl(($1650|0),($1651|0),21)|0); $1655 = tempRet0; - $1656 = (_i64Add(($1654|0),($1655|0),($1628|0),($1629|0))|0); + $1656 = (_i64Subtract(($1644|0),($1645|0),($1654|0),($1655|0))|0); $1657 = tempRet0; - $1658 = (_bitshift64Shl(($1654|0),($1655|0),21)|0); + $1658 = (_bitshift64Ashr(($1652|0),($1653|0),21)|0); $1659 = tempRet0; - $1660 = (_i64Subtract(($1648|0),($1649|0),($1658|0),($1659|0))|0); + $1660 = (_i64Add(($1632|0),($1633|0),($1658|0),($1659|0))|0); $1661 = tempRet0; - $1662 = (_bitshift64Ashr(($1656|0),($1657|0),21)|0); + $1662 = (_bitshift64Shl(($1658|0),($1659|0),21)|0); $1663 = tempRet0; - $1664 = (_i64Add(($1632|0),($1633|0),($1662|0),($1663|0))|0); + $1664 = (_i64Subtract(($1652|0),($1653|0),($1662|0),($1663|0))|0); $1665 = tempRet0; - $1666 = (_bitshift64Shl(($1662|0),($1663|0),21)|0); + $1666 = (_bitshift64Ashr(($1660|0),($1661|0),21)|0); $1667 = tempRet0; - $1668 = (_i64Subtract(($1656|0),($1657|0),($1666|0),($1667|0))|0); + $1668 = (_i64Add(($1636|0),($1637|0),($1666|0),($1667|0))|0); $1669 = tempRet0; - $1670 = (_bitshift64Ashr(($1664|0),($1665|0),21)|0); + $1670 = (_bitshift64Shl(($1666|0),($1667|0),21)|0); $1671 = tempRet0; - $1672 = (_i64Add(($1670|0),($1671|0),($1636|0),($1637|0))|0); + $1672 = (_i64Subtract(($1660|0),($1661|0),($1670|0),($1671|0))|0); $1673 = tempRet0; - $1674 = (_bitshift64Shl(($1670|0),($1671|0),21)|0); + $1674 = (_bitshift64Ashr(($1668|0),($1669|0),21)|0); $1675 = tempRet0; - $1676 = (_i64Subtract(($1664|0),($1665|0),($1674|0),($1675|0))|0); + $1676 = (_i64Add(($1640|0),($1641|0),($1674|0),($1675|0))|0); $1677 = tempRet0; - $1678 = (_bitshift64Ashr(($1672|0),($1673|0),21)|0); + $1678 = (_bitshift64Shl(($1674|0),($1675|0),21)|0); $1679 = tempRet0; - $1680 = (_i64Add(($1678|0),($1679|0),($1570|0),($1571|0))|0); + $1680 = (_i64Subtract(($1668|0),($1669|0),($1678|0),($1679|0))|0); $1681 = tempRet0; - $1682 = (_bitshift64Shl(($1678|0),($1679|0),21)|0); + $1682 = (_bitshift64Ashr(($1676|0),($1677|0),21)|0); $1683 = tempRet0; - $1684 = (_i64Subtract(($1672|0),($1673|0),($1682|0),($1683|0))|0); + $1684 = (_i64Add(($1682|0),($1683|0),($1574|0),($1575|0))|0); $1685 = tempRet0; - $1686 = (_bitshift64Ashr(($1680|0),($1681|0),21)|0); + $1686 = (_bitshift64Shl(($1682|0),($1683|0),21)|0); $1687 = tempRet0; - $1688 = (_i64Add(($1686|0),($1687|0),($1578|0),($1579|0))|0); + $1688 = (_i64Subtract(($1676|0),($1677|0),($1686|0),($1687|0))|0); $1689 = tempRet0; - $1690 = (_bitshift64Shl(($1686|0),($1687|0),21)|0); + $1690 = (_bitshift64Ashr(($1684|0),($1685|0),21)|0); $1691 = tempRet0; - $1692 = (_i64Subtract(($1680|0),($1681|0),($1690|0),($1691|0))|0); + $1692 = (_i64Add(($1690|0),($1691|0),($1582|0),($1583|0))|0); $1693 = tempRet0; - $1694 = (_bitshift64Ashr(($1688|0),($1689|0),21)|0); + $1694 = (_bitshift64Shl(($1690|0),($1691|0),21)|0); $1695 = tempRet0; - $1696 = (_i64Add(($1694|0),($1695|0),($1586|0),($1587|0))|0); + $1696 = (_i64Subtract(($1684|0),($1685|0),($1694|0),($1695|0))|0); $1697 = tempRet0; - $1698 = (_bitshift64Shl(($1694|0),($1695|0),21)|0); + $1698 = (_bitshift64Ashr(($1692|0),($1693|0),21)|0); $1699 = tempRet0; - $1700 = (_i64Subtract(($1688|0),($1689|0),($1698|0),($1699|0))|0); + $1700 = (_i64Add(($1698|0),($1699|0),($1590|0),($1591|0))|0); $1701 = tempRet0; - $1702 = (_bitshift64Ashr(($1696|0),($1697|0),21)|0); + $1702 = (_bitshift64Shl(($1698|0),($1699|0),21)|0); $1703 = tempRet0; - $1704 = (_i64Add(($1702|0),($1703|0),($1598|0),($1599|0))|0); + $1704 = (_i64Subtract(($1692|0),($1693|0),($1702|0),($1703|0))|0); $1705 = tempRet0; - $1706 = (_bitshift64Shl(($1702|0),($1703|0),21)|0); + $1706 = (_bitshift64Ashr(($1700|0),($1701|0),21)|0); $1707 = tempRet0; - $1708 = (_i64Subtract(($1696|0),($1697|0),($1706|0),($1707|0))|0); + $1708 = (_i64Add(($1706|0),($1707|0),($1602|0),($1603|0))|0); $1709 = tempRet0; - $1710 = (_bitshift64Ashr(($1704|0),($1705|0),21)|0); + $1710 = (_bitshift64Shl(($1706|0),($1707|0),21)|0); $1711 = tempRet0; - $1712 = (_i64Add(($1710|0),($1711|0),($1606|0),($1607|0))|0); + $1712 = (_i64Subtract(($1700|0),($1701|0),($1710|0),($1711|0))|0); $1713 = tempRet0; - $1714 = (_bitshift64Shl(($1710|0),($1711|0),21)|0); + $1714 = (_bitshift64Ashr(($1708|0),($1709|0),21)|0); $1715 = tempRet0; - $1716 = (_i64Subtract(($1704|0),($1705|0),($1714|0),($1715|0))|0); + $1716 = (_i64Add(($1714|0),($1715|0),($1610|0),($1611|0))|0); $1717 = tempRet0; - $1718 = (_bitshift64Ashr(($1712|0),($1713|0),21)|0); + $1718 = (_bitshift64Shl(($1714|0),($1715|0),21)|0); $1719 = tempRet0; - $1720 = (_i64Add(($1718|0),($1719|0),($1612|0),($1613|0))|0); + $1720 = (_i64Subtract(($1708|0),($1709|0),($1718|0),($1719|0))|0); $1721 = tempRet0; - $1722 = (_bitshift64Shl(($1718|0),($1719|0),21)|0); + $1722 = (_bitshift64Ashr(($1716|0),($1717|0),21)|0); $1723 = tempRet0; - $1724 = (_i64Subtract(($1712|0),($1713|0),($1722|0),($1723|0))|0); + $1724 = (_i64Add(($1722|0),($1723|0),($1616|0),($1617|0))|0); $1725 = tempRet0; - $1726 = $1644&255; - HEAP8[$s>>0] = $1726; - $1727 = (_bitshift64Lshr(($1644|0),($1645|0),8)|0); - $1728 = tempRet0; - $1729 = $1727&255; - $1730 = ((($s)) + 1|0); - HEAP8[$1730>>0] = $1729; - $1731 = (_bitshift64Lshr(($1644|0),($1645|0),16)|0); + $1726 = (_bitshift64Shl(($1722|0),($1723|0),21)|0); + $1727 = tempRet0; + $1728 = (_i64Subtract(($1716|0),($1717|0),($1726|0),($1727|0))|0); + $1729 = tempRet0; + $1730 = $1648&255; + HEAP8[$0>>0] = $1730; + $1731 = (_bitshift64Lshr(($1648|0),($1649|0),8)|0); $1732 = tempRet0; - $1733 = (_bitshift64Shl(($1652|0),($1653|0),5)|0); - $1734 = tempRet0; - $1735 = $1733 | $1731; - $1734 | $1732; - $1736 = $1735&255; - $1737 = ((($s)) + 2|0); - HEAP8[$1737>>0] = $1736; - $1738 = (_bitshift64Lshr(($1652|0),($1653|0),3)|0); - $1739 = tempRet0; - $1740 = $1738&255; - $1741 = ((($s)) + 3|0); + $1733 = $1731&255; + $1734 = ((($0)) + 1|0); + HEAP8[$1734>>0] = $1733; + $1735 = (_bitshift64Lshr(($1648|0),($1649|0),16)|0); + $1736 = tempRet0; + $1737 = (_bitshift64Shl(($1656|0),($1657|0),5)|0); + $1738 = tempRet0; + $1739 = $1737 | $1735; + $1738 | $1736; + $1740 = $1739&255; + $1741 = ((($0)) + 2|0); HEAP8[$1741>>0] = $1740; - $1742 = (_bitshift64Lshr(($1652|0),($1653|0),11)|0); + $1742 = (_bitshift64Lshr(($1656|0),($1657|0),3)|0); $1743 = tempRet0; $1744 = $1742&255; - $1745 = ((($s)) + 4|0); + $1745 = ((($0)) + 3|0); HEAP8[$1745>>0] = $1744; - $1746 = (_bitshift64Lshr(($1652|0),($1653|0),19)|0); + $1746 = (_bitshift64Lshr(($1656|0),($1657|0),11)|0); $1747 = tempRet0; - $1748 = (_bitshift64Shl(($1660|0),($1661|0),2)|0); - $1749 = tempRet0; - $1750 = $1748 | $1746; - $1749 | $1747; - $1751 = $1750&255; - $1752 = ((($s)) + 5|0); - HEAP8[$1752>>0] = $1751; - $1753 = (_bitshift64Lshr(($1660|0),($1661|0),6)|0); - $1754 = tempRet0; - $1755 = $1753&255; - $1756 = ((($s)) + 6|0); + $1748 = $1746&255; + $1749 = ((($0)) + 4|0); + HEAP8[$1749>>0] = $1748; + $1750 = (_bitshift64Lshr(($1656|0),($1657|0),19)|0); + $1751 = tempRet0; + $1752 = (_bitshift64Shl(($1664|0),($1665|0),2)|0); + $1753 = tempRet0; + $1754 = $1752 | $1750; + $1753 | $1751; + $1755 = $1754&255; + $1756 = ((($0)) + 5|0); HEAP8[$1756>>0] = $1755; - $1757 = (_bitshift64Lshr(($1660|0),($1661|0),14)|0); + $1757 = (_bitshift64Lshr(($1664|0),($1665|0),6)|0); $1758 = tempRet0; - $1759 = (_bitshift64Shl(($1668|0),($1669|0),7)|0); - $1760 = tempRet0; - $1761 = $1759 | $1757; - $1760 | $1758; - $1762 = $1761&255; - $1763 = ((($s)) + 7|0); - HEAP8[$1763>>0] = $1762; - $1764 = (_bitshift64Lshr(($1668|0),($1669|0),1)|0); - $1765 = tempRet0; - $1766 = $1764&255; - $1767 = ((($s)) + 8|0); + $1759 = $1757&255; + $1760 = ((($0)) + 6|0); + HEAP8[$1760>>0] = $1759; + $1761 = (_bitshift64Lshr(($1664|0),($1665|0),14)|0); + $1762 = tempRet0; + $1763 = (_bitshift64Shl(($1672|0),($1673|0),7)|0); + $1764 = tempRet0; + $1765 = $1763 | $1761; + $1764 | $1762; + $1766 = $1765&255; + $1767 = ((($0)) + 7|0); HEAP8[$1767>>0] = $1766; - $1768 = (_bitshift64Lshr(($1668|0),($1669|0),9)|0); + $1768 = (_bitshift64Lshr(($1672|0),($1673|0),1)|0); $1769 = tempRet0; $1770 = $1768&255; - $1771 = ((($s)) + 9|0); + $1771 = ((($0)) + 8|0); HEAP8[$1771>>0] = $1770; - $1772 = (_bitshift64Lshr(($1668|0),($1669|0),17)|0); + $1772 = (_bitshift64Lshr(($1672|0),($1673|0),9)|0); $1773 = tempRet0; - $1774 = (_bitshift64Shl(($1676|0),($1677|0),4)|0); - $1775 = tempRet0; - $1776 = $1774 | $1772; - $1775 | $1773; - $1777 = $1776&255; - $1778 = ((($s)) + 10|0); - HEAP8[$1778>>0] = $1777; - $1779 = (_bitshift64Lshr(($1676|0),($1677|0),4)|0); - $1780 = tempRet0; - $1781 = $1779&255; - $1782 = ((($s)) + 11|0); + $1774 = $1772&255; + $1775 = ((($0)) + 9|0); + HEAP8[$1775>>0] = $1774; + $1776 = (_bitshift64Lshr(($1672|0),($1673|0),17)|0); + $1777 = tempRet0; + $1778 = (_bitshift64Shl(($1680|0),($1681|0),4)|0); + $1779 = tempRet0; + $1780 = $1778 | $1776; + $1779 | $1777; + $1781 = $1780&255; + $1782 = ((($0)) + 10|0); HEAP8[$1782>>0] = $1781; - $1783 = (_bitshift64Lshr(($1676|0),($1677|0),12)|0); + $1783 = (_bitshift64Lshr(($1680|0),($1681|0),4)|0); $1784 = tempRet0; $1785 = $1783&255; - $1786 = ((($s)) + 12|0); + $1786 = ((($0)) + 11|0); HEAP8[$1786>>0] = $1785; - $1787 = (_bitshift64Lshr(($1676|0),($1677|0),20)|0); + $1787 = (_bitshift64Lshr(($1680|0),($1681|0),12)|0); $1788 = tempRet0; - $1789 = (_bitshift64Shl(($1684|0),($1685|0),1)|0); - $1790 = tempRet0; - $1791 = $1789 | $1787; - $1790 | $1788; - $1792 = $1791&255; - $1793 = ((($s)) + 13|0); - HEAP8[$1793>>0] = $1792; - $1794 = (_bitshift64Lshr(($1684|0),($1685|0),7)|0); - $1795 = tempRet0; - $1796 = $1794&255; - $1797 = ((($s)) + 14|0); + $1789 = $1787&255; + $1790 = ((($0)) + 12|0); + HEAP8[$1790>>0] = $1789; + $1791 = (_bitshift64Lshr(($1680|0),($1681|0),20)|0); + $1792 = tempRet0; + $1793 = (_bitshift64Shl(($1688|0),($1689|0),1)|0); + $1794 = tempRet0; + $1795 = $1793 | $1791; + $1794 | $1792; + $1796 = $1795&255; + $1797 = ((($0)) + 13|0); HEAP8[$1797>>0] = $1796; - $1798 = (_bitshift64Lshr(($1684|0),($1685|0),15)|0); + $1798 = (_bitshift64Lshr(($1688|0),($1689|0),7)|0); $1799 = tempRet0; - $1800 = (_bitshift64Shl(($1692|0),($1693|0),6)|0); - $1801 = tempRet0; - $1802 = $1800 | $1798; - $1801 | $1799; - $1803 = $1802&255; - $1804 = ((($s)) + 15|0); - HEAP8[$1804>>0] = $1803; - $1805 = (_bitshift64Lshr(($1692|0),($1693|0),2)|0); - $1806 = tempRet0; - $1807 = $1805&255; - $1808 = ((($s)) + 16|0); + $1800 = $1798&255; + $1801 = ((($0)) + 14|0); + HEAP8[$1801>>0] = $1800; + $1802 = (_bitshift64Lshr(($1688|0),($1689|0),15)|0); + $1803 = tempRet0; + $1804 = (_bitshift64Shl(($1696|0),($1697|0),6)|0); + $1805 = tempRet0; + $1806 = $1804 | $1802; + $1805 | $1803; + $1807 = $1806&255; + $1808 = ((($0)) + 15|0); HEAP8[$1808>>0] = $1807; - $1809 = (_bitshift64Lshr(($1692|0),($1693|0),10)|0); + $1809 = (_bitshift64Lshr(($1696|0),($1697|0),2)|0); $1810 = tempRet0; $1811 = $1809&255; - $1812 = ((($s)) + 17|0); + $1812 = ((($0)) + 16|0); HEAP8[$1812>>0] = $1811; - $1813 = (_bitshift64Lshr(($1692|0),($1693|0),18)|0); + $1813 = (_bitshift64Lshr(($1696|0),($1697|0),10)|0); $1814 = tempRet0; - $1815 = (_bitshift64Shl(($1700|0),($1701|0),3)|0); - $1816 = tempRet0; - $1817 = $1815 | $1813; - $1816 | $1814; - $1818 = $1817&255; - $1819 = ((($s)) + 18|0); - HEAP8[$1819>>0] = $1818; - $1820 = (_bitshift64Lshr(($1700|0),($1701|0),5)|0); - $1821 = tempRet0; - $1822 = $1820&255; - $1823 = ((($s)) + 19|0); + $1815 = $1813&255; + $1816 = ((($0)) + 17|0); + HEAP8[$1816>>0] = $1815; + $1817 = (_bitshift64Lshr(($1696|0),($1697|0),18)|0); + $1818 = tempRet0; + $1819 = (_bitshift64Shl(($1704|0),($1705|0),3)|0); + $1820 = tempRet0; + $1821 = $1819 | $1817; + $1820 | $1818; + $1822 = $1821&255; + $1823 = ((($0)) + 18|0); HEAP8[$1823>>0] = $1822; - $1824 = (_bitshift64Lshr(($1700|0),($1701|0),13)|0); + $1824 = (_bitshift64Lshr(($1704|0),($1705|0),5)|0); $1825 = tempRet0; $1826 = $1824&255; - $1827 = ((($s)) + 20|0); + $1827 = ((($0)) + 19|0); HEAP8[$1827>>0] = $1826; - $1828 = $1708&255; - $1829 = ((($s)) + 21|0); - HEAP8[$1829>>0] = $1828; - $1830 = (_bitshift64Lshr(($1708|0),($1709|0),8)|0); - $1831 = tempRet0; - $1832 = $1830&255; - $1833 = ((($s)) + 22|0); + $1828 = (_bitshift64Lshr(($1704|0),($1705|0),13)|0); + $1829 = tempRet0; + $1830 = $1828&255; + $1831 = ((($0)) + 20|0); + HEAP8[$1831>>0] = $1830; + $1832 = $1712&255; + $1833 = ((($0)) + 21|0); HEAP8[$1833>>0] = $1832; - $1834 = (_bitshift64Lshr(($1708|0),($1709|0),16)|0); + $1834 = (_bitshift64Lshr(($1712|0),($1713|0),8)|0); $1835 = tempRet0; - $1836 = (_bitshift64Shl(($1716|0),($1717|0),5)|0); - $1837 = tempRet0; - $1838 = $1836 | $1834; - $1837 | $1835; - $1839 = $1838&255; - $1840 = ((($s)) + 23|0); - HEAP8[$1840>>0] = $1839; - $1841 = (_bitshift64Lshr(($1716|0),($1717|0),3)|0); - $1842 = tempRet0; - $1843 = $1841&255; - $1844 = ((($s)) + 24|0); + $1836 = $1834&255; + $1837 = ((($0)) + 22|0); + HEAP8[$1837>>0] = $1836; + $1838 = (_bitshift64Lshr(($1712|0),($1713|0),16)|0); + $1839 = tempRet0; + $1840 = (_bitshift64Shl(($1720|0),($1721|0),5)|0); + $1841 = tempRet0; + $1842 = $1840 | $1838; + $1841 | $1839; + $1843 = $1842&255; + $1844 = ((($0)) + 23|0); HEAP8[$1844>>0] = $1843; - $1845 = (_bitshift64Lshr(($1716|0),($1717|0),11)|0); + $1845 = (_bitshift64Lshr(($1720|0),($1721|0),3)|0); $1846 = tempRet0; $1847 = $1845&255; - $1848 = ((($s)) + 25|0); + $1848 = ((($0)) + 24|0); HEAP8[$1848>>0] = $1847; - $1849 = (_bitshift64Lshr(($1716|0),($1717|0),19)|0); + $1849 = (_bitshift64Lshr(($1720|0),($1721|0),11)|0); $1850 = tempRet0; - $1851 = (_bitshift64Shl(($1724|0),($1725|0),2)|0); - $1852 = tempRet0; - $1853 = $1851 | $1849; - $1852 | $1850; - $1854 = $1853&255; - $1855 = ((($s)) + 26|0); - HEAP8[$1855>>0] = $1854; - $1856 = (_bitshift64Lshr(($1724|0),($1725|0),6)|0); - $1857 = tempRet0; - $1858 = $1856&255; - $1859 = ((($s)) + 27|0); + $1851 = $1849&255; + $1852 = ((($0)) + 25|0); + HEAP8[$1852>>0] = $1851; + $1853 = (_bitshift64Lshr(($1720|0),($1721|0),19)|0); + $1854 = tempRet0; + $1855 = (_bitshift64Shl(($1728|0),($1729|0),2)|0); + $1856 = tempRet0; + $1857 = $1855 | $1853; + $1856 | $1854; + $1858 = $1857&255; + $1859 = ((($0)) + 26|0); HEAP8[$1859>>0] = $1858; - $1860 = (_bitshift64Lshr(($1724|0),($1725|0),14)|0); + $1860 = (_bitshift64Lshr(($1728|0),($1729|0),6)|0); $1861 = tempRet0; - $1862 = (_bitshift64Shl(($1720|0),($1721|0),7)|0); - $1863 = tempRet0; - $1864 = $1860 | $1862; - $1861 | $1863; - $1865 = $1864&255; - $1866 = ((($s)) + 28|0); - HEAP8[$1866>>0] = $1865; - $1867 = (_bitshift64Lshr(($1720|0),($1721|0),1)|0); - $1868 = tempRet0; - $1869 = $1867&255; - $1870 = ((($s)) + 29|0); + $1862 = $1860&255; + $1863 = ((($0)) + 27|0); + HEAP8[$1863>>0] = $1862; + $1864 = (_bitshift64Lshr(($1728|0),($1729|0),14)|0); + $1865 = tempRet0; + $1866 = (_bitshift64Shl(($1724|0),($1725|0),7)|0); + $1867 = tempRet0; + $1868 = $1864 | $1866; + $1865 | $1867; + $1869 = $1868&255; + $1870 = ((($0)) + 28|0); HEAP8[$1870>>0] = $1869; - $1871 = (_bitshift64Lshr(($1720|0),($1721|0),9)|0); + $1871 = (_bitshift64Lshr(($1724|0),($1725|0),1)|0); $1872 = tempRet0; $1873 = $1871&255; - $1874 = ((($s)) + 30|0); + $1874 = ((($0)) + 29|0); HEAP8[$1874>>0] = $1873; - $1875 = (_bitshift64Lshr(($1720|0),($1721|0),17)|0); + $1875 = (_bitshift64Lshr(($1724|0),($1725|0),9)|0); $1876 = tempRet0; $1877 = $1875&255; - $1878 = ((($s)) + 31|0); + $1878 = ((($0)) + 30|0); HEAP8[$1878>>0] = $1877; + $1879 = (_bitshift64Lshr(($1724|0),($1725|0),17)|0); + $1880 = tempRet0; + $1881 = $1879&255; + $1882 = ((($0)) + 31|0); + HEAP8[$1882>>0] = $1881; return; } -function _load_347($in) { - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; +function _load_3_47($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP8[$in>>0]|0; - $1 = $0&255; - $2 = ((($in)) + 1|0); - $3 = HEAP8[$2>>0]|0; - $4 = $3&255; - $5 = (_bitshift64Shl(($4|0),0,8)|0); - $6 = tempRet0; - $7 = $5 | $1; - $8 = ((($in)) + 2|0); - $9 = HEAP8[$8>>0]|0; - $10 = $9&255; - $11 = (_bitshift64Shl(($10|0),0,16)|0); - $12 = tempRet0; - $13 = $7 | $11; - $14 = $6 | $12; - tempRet0 = ($14); - return ($13|0); -} -function _load_448($in) { - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = ((($0)) + 1|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = (_bitshift64Shl(($5|0),0,8)|0); + $7 = tempRet0; + $8 = $6 | $2; + $9 = ((($0)) + 2|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = (_bitshift64Shl(($11|0),0,16)|0); + $13 = tempRet0; + $14 = $8 | $12; + $15 = $7 | $13; + tempRet0 = ($15); + return ($14|0); +} +function _load_4_48($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; var $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP8[$in>>0]|0; - $1 = $0&255; - $2 = ((($in)) + 1|0); - $3 = HEAP8[$2>>0]|0; - $4 = $3&255; - $5 = (_bitshift64Shl(($4|0),0,8)|0); - $6 = tempRet0; - $7 = $5 | $1; - $8 = ((($in)) + 2|0); - $9 = HEAP8[$8>>0]|0; - $10 = $9&255; - $11 = (_bitshift64Shl(($10|0),0,16)|0); - $12 = tempRet0; - $13 = $7 | $11; - $14 = $6 | $12; - $15 = ((($in)) + 3|0); - $16 = HEAP8[$15>>0]|0; - $17 = $16&255; - $18 = (_bitshift64Shl(($17|0),0,24)|0); - $19 = tempRet0; - $20 = $13 | $18; + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = ((($0)) + 1|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = (_bitshift64Shl(($5|0),0,8)|0); + $7 = tempRet0; + $8 = $6 | $2; + $9 = ((($0)) + 2|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = (_bitshift64Shl(($11|0),0,16)|0); + $13 = tempRet0; + $14 = $8 | $12; + $15 = $7 | $13; + $16 = ((($0)) + 3|0); + $17 = HEAP8[$16>>0]|0; + $18 = $17&255; + $19 = (_bitshift64Shl(($18|0),0,24)|0); + $20 = tempRet0; $21 = $14 | $19; - tempRet0 = ($21); - return ($20|0); + $22 = $15 | $20; + tempRet0 = ($22); + return ($21|0); } -function _crypto_sign_ed25519_ref10_sc_reduce($s) { - $s = $s|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0; - var $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0; +function _crypto_sign_ed25519_ref10_sc_reduce($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0, $1015 = 0; + var $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0; var $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0; var $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0; var $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0; @@ -17783,2858 +14249,2804 @@ function _crypto_sign_ed25519_ref10_sc_reduce($s) { var $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0; var $997 = 0, $998 = 0, $999 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = (_load_351($s)|0); - $1 = tempRet0; - $2 = $0 & 2097151; - $3 = ((($s)) + 2|0); - $4 = (_load_452($3)|0); - $5 = tempRet0; - $6 = (_bitshift64Lshr(($4|0),($5|0),5)|0); - $7 = tempRet0; - $8 = $6 & 2097151; - $9 = ((($s)) + 5|0); - $10 = (_load_351($9)|0); - $11 = tempRet0; - $12 = (_bitshift64Lshr(($10|0),($11|0),2)|0); - $13 = tempRet0; - $14 = $12 & 2097151; - $15 = ((($s)) + 7|0); - $16 = (_load_452($15)|0); - $17 = tempRet0; - $18 = (_bitshift64Lshr(($16|0),($17|0),7)|0); - $19 = tempRet0; - $20 = $18 & 2097151; - $21 = ((($s)) + 10|0); - $22 = (_load_452($21)|0); - $23 = tempRet0; - $24 = (_bitshift64Lshr(($22|0),($23|0),4)|0); - $25 = tempRet0; - $26 = $24 & 2097151; - $27 = ((($s)) + 13|0); - $28 = (_load_351($27)|0); - $29 = tempRet0; - $30 = (_bitshift64Lshr(($28|0),($29|0),1)|0); - $31 = tempRet0; - $32 = $30 & 2097151; - $33 = ((($s)) + 15|0); - $34 = (_load_452($33)|0); - $35 = tempRet0; - $36 = (_bitshift64Lshr(($34|0),($35|0),6)|0); - $37 = tempRet0; - $38 = $36 & 2097151; - $39 = ((($s)) + 18|0); - $40 = (_load_351($39)|0); - $41 = tempRet0; - $42 = (_bitshift64Lshr(($40|0),($41|0),3)|0); - $43 = tempRet0; - $44 = $42 & 2097151; - $45 = ((($s)) + 21|0); - $46 = (_load_351($45)|0); - $47 = tempRet0; - $48 = $46 & 2097151; - $49 = ((($s)) + 23|0); - $50 = (_load_452($49)|0); - $51 = tempRet0; - $52 = (_bitshift64Lshr(($50|0),($51|0),5)|0); - $53 = tempRet0; - $54 = $52 & 2097151; - $55 = ((($s)) + 26|0); - $56 = (_load_351($55)|0); - $57 = tempRet0; - $58 = (_bitshift64Lshr(($56|0),($57|0),2)|0); - $59 = tempRet0; - $60 = $58 & 2097151; - $61 = ((($s)) + 28|0); - $62 = (_load_452($61)|0); - $63 = tempRet0; - $64 = (_bitshift64Lshr(($62|0),($63|0),7)|0); - $65 = tempRet0; - $66 = $64 & 2097151; - $67 = ((($s)) + 31|0); - $68 = (_load_452($67)|0); - $69 = tempRet0; - $70 = (_bitshift64Lshr(($68|0),($69|0),4)|0); - $71 = tempRet0; - $72 = $70 & 2097151; - $73 = ((($s)) + 34|0); - $74 = (_load_351($73)|0); - $75 = tempRet0; - $76 = (_bitshift64Lshr(($74|0),($75|0),1)|0); - $77 = tempRet0; - $78 = $76 & 2097151; - $79 = ((($s)) + 36|0); - $80 = (_load_452($79)|0); - $81 = tempRet0; - $82 = (_bitshift64Lshr(($80|0),($81|0),6)|0); - $83 = tempRet0; - $84 = $82 & 2097151; - $85 = ((($s)) + 39|0); - $86 = (_load_351($85)|0); - $87 = tempRet0; - $88 = (_bitshift64Lshr(($86|0),($87|0),3)|0); - $89 = tempRet0; - $90 = $88 & 2097151; - $91 = ((($s)) + 42|0); - $92 = (_load_351($91)|0); - $93 = tempRet0; - $94 = $92 & 2097151; - $95 = ((($s)) + 44|0); - $96 = (_load_452($95)|0); - $97 = tempRet0; - $98 = (_bitshift64Lshr(($96|0),($97|0),5)|0); - $99 = tempRet0; - $100 = $98 & 2097151; - $101 = ((($s)) + 47|0); - $102 = (_load_351($101)|0); - $103 = tempRet0; - $104 = (_bitshift64Lshr(($102|0),($103|0),2)|0); - $105 = tempRet0; - $106 = $104 & 2097151; - $107 = ((($s)) + 49|0); - $108 = (_load_452($107)|0); - $109 = tempRet0; - $110 = (_bitshift64Lshr(($108|0),($109|0),7)|0); - $111 = tempRet0; - $112 = $110 & 2097151; - $113 = ((($s)) + 52|0); - $114 = (_load_452($113)|0); - $115 = tempRet0; - $116 = (_bitshift64Lshr(($114|0),($115|0),4)|0); - $117 = tempRet0; - $118 = $116 & 2097151; - $119 = ((($s)) + 55|0); - $120 = (_load_351($119)|0); - $121 = tempRet0; - $122 = (_bitshift64Lshr(($120|0),($121|0),1)|0); - $123 = tempRet0; - $124 = $122 & 2097151; - $125 = ((($s)) + 57|0); - $126 = (_load_452($125)|0); - $127 = tempRet0; - $128 = (_bitshift64Lshr(($126|0),($127|0),6)|0); - $129 = tempRet0; - $130 = $128 & 2097151; - $131 = ((($s)) + 60|0); - $132 = (_load_452($131)|0); - $133 = tempRet0; - $134 = (_bitshift64Lshr(($132|0),($133|0),3)|0); - $135 = tempRet0; - $136 = (___muldi3(($134|0),($135|0),666643,0)|0); - $137 = tempRet0; - $138 = (_i64Add(($66|0),0,($136|0),($137|0))|0); - $139 = tempRet0; - $140 = (___muldi3(($134|0),($135|0),470296,0)|0); - $141 = tempRet0; - $142 = (_i64Add(($72|0),0,($140|0),($141|0))|0); - $143 = tempRet0; - $144 = (___muldi3(($134|0),($135|0),654183,0)|0); - $145 = tempRet0; - $146 = (_i64Add(($78|0),0,($144|0),($145|0))|0); - $147 = tempRet0; - $148 = (___muldi3(($134|0),($135|0),-997805,-1)|0); - $149 = tempRet0; - $150 = (_i64Add(($84|0),0,($148|0),($149|0))|0); - $151 = tempRet0; - $152 = (___muldi3(($134|0),($135|0),136657,0)|0); - $153 = tempRet0; - $154 = (_i64Add(($90|0),0,($152|0),($153|0))|0); - $155 = tempRet0; - $156 = (___muldi3(($134|0),($135|0),-683901,-1)|0); - $157 = tempRet0; - $158 = (_i64Add(($94|0),0,($156|0),($157|0))|0); - $159 = tempRet0; - $160 = (___muldi3(($130|0),0,666643,0)|0); - $161 = tempRet0; - $162 = (_i64Add(($60|0),0,($160|0),($161|0))|0); - $163 = tempRet0; - $164 = (___muldi3(($130|0),0,470296,0)|0); - $165 = tempRet0; - $166 = (_i64Add(($164|0),($165|0),($138|0),($139|0))|0); - $167 = tempRet0; - $168 = (___muldi3(($130|0),0,654183,0)|0); - $169 = tempRet0; - $170 = (_i64Add(($168|0),($169|0),($142|0),($143|0))|0); - $171 = tempRet0; - $172 = (___muldi3(($130|0),0,-997805,-1)|0); - $173 = tempRet0; - $174 = (_i64Add(($172|0),($173|0),($146|0),($147|0))|0); - $175 = tempRet0; - $176 = (___muldi3(($130|0),0,136657,0)|0); - $177 = tempRet0; - $178 = (_i64Add(($176|0),($177|0),($150|0),($151|0))|0); - $179 = tempRet0; - $180 = (___muldi3(($130|0),0,-683901,-1)|0); - $181 = tempRet0; - $182 = (_i64Add(($154|0),($155|0),($180|0),($181|0))|0); - $183 = tempRet0; - $184 = (___muldi3(($124|0),0,666643,0)|0); - $185 = tempRet0; - $186 = (_i64Add(($54|0),0,($184|0),($185|0))|0); - $187 = tempRet0; - $188 = (___muldi3(($124|0),0,470296,0)|0); - $189 = tempRet0; - $190 = (_i64Add(($188|0),($189|0),($162|0),($163|0))|0); - $191 = tempRet0; - $192 = (___muldi3(($124|0),0,654183,0)|0); - $193 = tempRet0; - $194 = (_i64Add(($192|0),($193|0),($166|0),($167|0))|0); - $195 = tempRet0; - $196 = (___muldi3(($124|0),0,-997805,-1)|0); - $197 = tempRet0; - $198 = (_i64Add(($196|0),($197|0),($170|0),($171|0))|0); - $199 = tempRet0; - $200 = (___muldi3(($124|0),0,136657,0)|0); - $201 = tempRet0; - $202 = (_i64Add(($200|0),($201|0),($174|0),($175|0))|0); - $203 = tempRet0; - $204 = (___muldi3(($124|0),0,-683901,-1)|0); - $205 = tempRet0; - $206 = (_i64Add(($178|0),($179|0),($204|0),($205|0))|0); - $207 = tempRet0; - $208 = (___muldi3(($118|0),0,666643,0)|0); - $209 = tempRet0; - $210 = (___muldi3(($118|0),0,470296,0)|0); - $211 = tempRet0; - $212 = (_i64Add(($210|0),($211|0),($186|0),($187|0))|0); - $213 = tempRet0; - $214 = (___muldi3(($118|0),0,654183,0)|0); - $215 = tempRet0; - $216 = (_i64Add(($214|0),($215|0),($190|0),($191|0))|0); - $217 = tempRet0; - $218 = (___muldi3(($118|0),0,-997805,-1)|0); - $219 = tempRet0; - $220 = (_i64Add(($218|0),($219|0),($194|0),($195|0))|0); - $221 = tempRet0; - $222 = (___muldi3(($118|0),0,136657,0)|0); - $223 = tempRet0; - $224 = (_i64Add(($222|0),($223|0),($198|0),($199|0))|0); - $225 = tempRet0; - $226 = (___muldi3(($118|0),0,-683901,-1)|0); - $227 = tempRet0; - $228 = (_i64Add(($202|0),($203|0),($226|0),($227|0))|0); - $229 = tempRet0; - $230 = (___muldi3(($112|0),0,666643,0)|0); - $231 = tempRet0; - $232 = (___muldi3(($112|0),0,470296,0)|0); - $233 = tempRet0; - $234 = (___muldi3(($112|0),0,654183,0)|0); - $235 = tempRet0; - $236 = (_i64Add(($234|0),($235|0),($212|0),($213|0))|0); - $237 = tempRet0; - $238 = (___muldi3(($112|0),0,-997805,-1)|0); - $239 = tempRet0; - $240 = (_i64Add(($216|0),($217|0),($238|0),($239|0))|0); - $241 = tempRet0; - $242 = (___muldi3(($112|0),0,136657,0)|0); - $243 = tempRet0; - $244 = (_i64Add(($242|0),($243|0),($220|0),($221|0))|0); - $245 = tempRet0; - $246 = (___muldi3(($112|0),0,-683901,-1)|0); - $247 = tempRet0; - $248 = (_i64Add(($224|0),($225|0),($246|0),($247|0))|0); - $249 = tempRet0; - $250 = (___muldi3(($106|0),0,666643,0)|0); - $251 = tempRet0; - $252 = (_i64Add(($250|0),($251|0),($38|0),0)|0); - $253 = tempRet0; - $254 = (___muldi3(($106|0),0,470296,0)|0); - $255 = tempRet0; - $256 = (___muldi3(($106|0),0,654183,0)|0); - $257 = tempRet0; - $258 = (_i64Add(($256|0),($257|0),($48|0),0)|0); - $259 = tempRet0; - $260 = (_i64Add(($258|0),($259|0),($232|0),($233|0))|0); - $261 = tempRet0; - $262 = (_i64Add(($260|0),($261|0),($208|0),($209|0))|0); - $263 = tempRet0; - $264 = (___muldi3(($106|0),0,-997805,-1)|0); - $265 = tempRet0; - $266 = (_i64Add(($236|0),($237|0),($264|0),($265|0))|0); - $267 = tempRet0; - $268 = (___muldi3(($106|0),0,136657,0)|0); - $269 = tempRet0; - $270 = (_i64Add(($240|0),($241|0),($268|0),($269|0))|0); - $271 = tempRet0; - $272 = (___muldi3(($106|0),0,-683901,-1)|0); - $273 = tempRet0; - $274 = (_i64Add(($244|0),($245|0),($272|0),($273|0))|0); - $275 = tempRet0; - $276 = (_i64Add(($252|0),($253|0),1048576,0)|0); - $277 = tempRet0; - $278 = (_bitshift64Lshr(($276|0),($277|0),21)|0); - $279 = tempRet0; - $280 = (_i64Add(($254|0),($255|0),($44|0),0)|0); - $281 = tempRet0; - $282 = (_i64Add(($280|0),($281|0),($230|0),($231|0))|0); - $283 = tempRet0; - $284 = (_i64Add(($282|0),($283|0),($278|0),($279|0))|0); - $285 = tempRet0; - $286 = (_bitshift64Shl(($278|0),($279|0),21)|0); - $287 = tempRet0; - $288 = (_i64Subtract(($252|0),($253|0),($286|0),($287|0))|0); - $289 = tempRet0; - $290 = (_i64Add(($262|0),($263|0),1048576,0)|0); - $291 = tempRet0; - $292 = (_bitshift64Lshr(($290|0),($291|0),21)|0); - $293 = tempRet0; - $294 = (_i64Add(($266|0),($267|0),($292|0),($293|0))|0); - $295 = tempRet0; - $296 = (_bitshift64Shl(($292|0),($293|0),21)|0); - $297 = tempRet0; - $298 = (_i64Subtract(($262|0),($263|0),($296|0),($297|0))|0); - $299 = tempRet0; - $300 = (_i64Add(($270|0),($271|0),1048576,0)|0); - $301 = tempRet0; - $302 = (_bitshift64Ashr(($300|0),($301|0),21)|0); - $303 = tempRet0; - $304 = (_i64Add(($302|0),($303|0),($274|0),($275|0))|0); - $305 = tempRet0; - $306 = (_bitshift64Shl(($302|0),($303|0),21)|0); - $307 = tempRet0; - $308 = (_i64Subtract(($270|0),($271|0),($306|0),($307|0))|0); - $309 = tempRet0; - $310 = (_i64Add(($248|0),($249|0),1048576,0)|0); - $311 = tempRet0; - $312 = (_bitshift64Ashr(($310|0),($311|0),21)|0); - $313 = tempRet0; - $314 = (_i64Add(($312|0),($313|0),($228|0),($229|0))|0); - $315 = tempRet0; - $316 = (_bitshift64Shl(($312|0),($313|0),21)|0); - $317 = tempRet0; - $318 = (_i64Subtract(($248|0),($249|0),($316|0),($317|0))|0); - $319 = tempRet0; - $320 = (_i64Add(($206|0),($207|0),1048576,0)|0); - $321 = tempRet0; - $322 = (_bitshift64Ashr(($320|0),($321|0),21)|0); - $323 = tempRet0; - $324 = (_i64Add(($322|0),($323|0),($182|0),($183|0))|0); - $325 = tempRet0; - $326 = (_bitshift64Shl(($322|0),($323|0),21)|0); - $327 = tempRet0; - $328 = (_i64Subtract(($206|0),($207|0),($326|0),($327|0))|0); - $329 = tempRet0; - $330 = (_i64Add(($158|0),($159|0),1048576,0)|0); - $331 = tempRet0; - $332 = (_bitshift64Ashr(($330|0),($331|0),21)|0); - $333 = tempRet0; - $334 = (_i64Add(($332|0),($333|0),($100|0),0)|0); - $335 = tempRet0; - $336 = (_bitshift64Shl(($332|0),($333|0),21)|0); - $337 = tempRet0; - $338 = (_i64Subtract(($158|0),($159|0),($336|0),($337|0))|0); - $339 = tempRet0; - $340 = (_i64Add(($284|0),($285|0),1048576,0)|0); - $341 = tempRet0; - $342 = (_bitshift64Lshr(($340|0),($341|0),21)|0); - $343 = tempRet0; - $344 = (_i64Add(($342|0),($343|0),($298|0),($299|0))|0); - $345 = tempRet0; - $346 = (_bitshift64Shl(($342|0),($343|0),21)|0); - $347 = tempRet0; - $348 = (_i64Subtract(($284|0),($285|0),($346|0),($347|0))|0); - $349 = tempRet0; - $350 = (_i64Add(($294|0),($295|0),1048576,0)|0); - $351 = tempRet0; - $352 = (_bitshift64Ashr(($350|0),($351|0),21)|0); - $353 = tempRet0; - $354 = (_i64Add(($352|0),($353|0),($308|0),($309|0))|0); - $355 = tempRet0; - $356 = (_bitshift64Shl(($352|0),($353|0),21)|0); - $357 = tempRet0; - $358 = (_i64Subtract(($294|0),($295|0),($356|0),($357|0))|0); - $359 = tempRet0; - $360 = (_i64Add(($304|0),($305|0),1048576,0)|0); - $361 = tempRet0; - $362 = (_bitshift64Ashr(($360|0),($361|0),21)|0); - $363 = tempRet0; - $364 = (_i64Add(($362|0),($363|0),($318|0),($319|0))|0); - $365 = tempRet0; - $366 = (_bitshift64Shl(($362|0),($363|0),21)|0); - $367 = tempRet0; - $368 = (_i64Subtract(($304|0),($305|0),($366|0),($367|0))|0); - $369 = tempRet0; - $370 = (_i64Add(($314|0),($315|0),1048576,0)|0); - $371 = tempRet0; - $372 = (_bitshift64Ashr(($370|0),($371|0),21)|0); - $373 = tempRet0; - $374 = (_i64Add(($372|0),($373|0),($328|0),($329|0))|0); - $375 = tempRet0; - $376 = (_bitshift64Shl(($372|0),($373|0),21)|0); - $377 = tempRet0; - $378 = (_i64Subtract(($314|0),($315|0),($376|0),($377|0))|0); - $379 = tempRet0; - $380 = (_i64Add(($324|0),($325|0),1048576,0)|0); - $381 = tempRet0; - $382 = (_bitshift64Ashr(($380|0),($381|0),21)|0); - $383 = tempRet0; - $384 = (_i64Add(($382|0),($383|0),($338|0),($339|0))|0); - $385 = tempRet0; - $386 = (_bitshift64Shl(($382|0),($383|0),21)|0); - $387 = tempRet0; - $388 = (_i64Subtract(($324|0),($325|0),($386|0),($387|0))|0); - $389 = tempRet0; - $390 = (___muldi3(($334|0),($335|0),666643,0)|0); - $391 = tempRet0; - $392 = (_i64Add(($32|0),0,($390|0),($391|0))|0); - $393 = tempRet0; - $394 = (___muldi3(($334|0),($335|0),470296,0)|0); - $395 = tempRet0; - $396 = (_i64Add(($288|0),($289|0),($394|0),($395|0))|0); - $397 = tempRet0; - $398 = (___muldi3(($334|0),($335|0),654183,0)|0); - $399 = tempRet0; - $400 = (_i64Add(($348|0),($349|0),($398|0),($399|0))|0); - $401 = tempRet0; - $402 = (___muldi3(($334|0),($335|0),-997805,-1)|0); - $403 = tempRet0; - $404 = (_i64Add(($402|0),($403|0),($344|0),($345|0))|0); - $405 = tempRet0; - $406 = (___muldi3(($334|0),($335|0),136657,0)|0); - $407 = tempRet0; - $408 = (_i64Add(($406|0),($407|0),($358|0),($359|0))|0); - $409 = tempRet0; - $410 = (___muldi3(($334|0),($335|0),-683901,-1)|0); - $411 = tempRet0; - $412 = (_i64Add(($354|0),($355|0),($410|0),($411|0))|0); - $413 = tempRet0; - $414 = (___muldi3(($384|0),($385|0),666643,0)|0); - $415 = tempRet0; - $416 = (_i64Add(($26|0),0,($414|0),($415|0))|0); - $417 = tempRet0; - $418 = (___muldi3(($384|0),($385|0),470296,0)|0); - $419 = tempRet0; - $420 = (_i64Add(($392|0),($393|0),($418|0),($419|0))|0); - $421 = tempRet0; - $422 = (___muldi3(($384|0),($385|0),654183,0)|0); - $423 = tempRet0; - $424 = (_i64Add(($396|0),($397|0),($422|0),($423|0))|0); - $425 = tempRet0; - $426 = (___muldi3(($384|0),($385|0),-997805,-1)|0); - $427 = tempRet0; - $428 = (_i64Add(($400|0),($401|0),($426|0),($427|0))|0); - $429 = tempRet0; - $430 = (___muldi3(($384|0),($385|0),136657,0)|0); - $431 = tempRet0; - $432 = (_i64Add(($404|0),($405|0),($430|0),($431|0))|0); - $433 = tempRet0; - $434 = (___muldi3(($384|0),($385|0),-683901,-1)|0); - $435 = tempRet0; - $436 = (_i64Add(($408|0),($409|0),($434|0),($435|0))|0); - $437 = tempRet0; - $438 = (___muldi3(($388|0),($389|0),666643,0)|0); - $439 = tempRet0; - $440 = (_i64Add(($20|0),0,($438|0),($439|0))|0); - $441 = tempRet0; - $442 = (___muldi3(($388|0),($389|0),470296,0)|0); - $443 = tempRet0; - $444 = (_i64Add(($416|0),($417|0),($442|0),($443|0))|0); - $445 = tempRet0; - $446 = (___muldi3(($388|0),($389|0),654183,0)|0); - $447 = tempRet0; - $448 = (_i64Add(($420|0),($421|0),($446|0),($447|0))|0); - $449 = tempRet0; - $450 = (___muldi3(($388|0),($389|0),-997805,-1)|0); - $451 = tempRet0; - $452 = (_i64Add(($424|0),($425|0),($450|0),($451|0))|0); - $453 = tempRet0; - $454 = (___muldi3(($388|0),($389|0),136657,0)|0); - $455 = tempRet0; - $456 = (_i64Add(($428|0),($429|0),($454|0),($455|0))|0); - $457 = tempRet0; - $458 = (___muldi3(($388|0),($389|0),-683901,-1)|0); - $459 = tempRet0; - $460 = (_i64Add(($432|0),($433|0),($458|0),($459|0))|0); - $461 = tempRet0; - $462 = (___muldi3(($374|0),($375|0),666643,0)|0); - $463 = tempRet0; - $464 = (_i64Add(($462|0),($463|0),($14|0),0)|0); - $465 = tempRet0; - $466 = (___muldi3(($374|0),($375|0),470296,0)|0); - $467 = tempRet0; - $468 = (_i64Add(($440|0),($441|0),($466|0),($467|0))|0); - $469 = tempRet0; - $470 = (___muldi3(($374|0),($375|0),654183,0)|0); - $471 = tempRet0; - $472 = (_i64Add(($444|0),($445|0),($470|0),($471|0))|0); - $473 = tempRet0; - $474 = (___muldi3(($374|0),($375|0),-997805,-1)|0); - $475 = tempRet0; - $476 = (_i64Add(($448|0),($449|0),($474|0),($475|0))|0); - $477 = tempRet0; - $478 = (___muldi3(($374|0),($375|0),136657,0)|0); - $479 = tempRet0; - $480 = (_i64Add(($452|0),($453|0),($478|0),($479|0))|0); - $481 = tempRet0; - $482 = (___muldi3(($374|0),($375|0),-683901,-1)|0); - $483 = tempRet0; - $484 = (_i64Add(($456|0),($457|0),($482|0),($483|0))|0); - $485 = tempRet0; - $486 = (___muldi3(($378|0),($379|0),666643,0)|0); - $487 = tempRet0; - $488 = (___muldi3(($378|0),($379|0),470296,0)|0); - $489 = tempRet0; - $490 = (___muldi3(($378|0),($379|0),654183,0)|0); - $491 = tempRet0; - $492 = (_i64Add(($468|0),($469|0),($490|0),($491|0))|0); - $493 = tempRet0; - $494 = (___muldi3(($378|0),($379|0),-997805,-1)|0); - $495 = tempRet0; - $496 = (_i64Add(($472|0),($473|0),($494|0),($495|0))|0); - $497 = tempRet0; - $498 = (___muldi3(($378|0),($379|0),136657,0)|0); - $499 = tempRet0; - $500 = (_i64Add(($476|0),($477|0),($498|0),($499|0))|0); - $501 = tempRet0; - $502 = (___muldi3(($378|0),($379|0),-683901,-1)|0); - $503 = tempRet0; - $504 = (_i64Add(($480|0),($481|0),($502|0),($503|0))|0); - $505 = tempRet0; - $506 = (___muldi3(($364|0),($365|0),666643,0)|0); - $507 = tempRet0; - $508 = (_i64Add(($506|0),($507|0),($2|0),0)|0); - $509 = tempRet0; - $510 = (___muldi3(($364|0),($365|0),470296,0)|0); - $511 = tempRet0; - $512 = (___muldi3(($364|0),($365|0),654183,0)|0); - $513 = tempRet0; - $514 = (_i64Add(($464|0),($465|0),($512|0),($513|0))|0); - $515 = tempRet0; - $516 = (_i64Add(($514|0),($515|0),($488|0),($489|0))|0); - $517 = tempRet0; - $518 = (___muldi3(($364|0),($365|0),-997805,-1)|0); - $519 = tempRet0; - $520 = (_i64Add(($492|0),($493|0),($518|0),($519|0))|0); - $521 = tempRet0; - $522 = (___muldi3(($364|0),($365|0),136657,0)|0); - $523 = tempRet0; - $524 = (_i64Add(($496|0),($497|0),($522|0),($523|0))|0); - $525 = tempRet0; - $526 = (___muldi3(($364|0),($365|0),-683901,-1)|0); - $527 = tempRet0; - $528 = (_i64Add(($500|0),($501|0),($526|0),($527|0))|0); - $529 = tempRet0; - $530 = (_i64Add(($508|0),($509|0),1048576,0)|0); - $531 = tempRet0; - $532 = (_bitshift64Ashr(($530|0),($531|0),21)|0); - $533 = tempRet0; - $534 = (_i64Add(($510|0),($511|0),($8|0),0)|0); - $535 = tempRet0; - $536 = (_i64Add(($534|0),($535|0),($486|0),($487|0))|0); - $537 = tempRet0; - $538 = (_i64Add(($536|0),($537|0),($532|0),($533|0))|0); - $539 = tempRet0; - $540 = (_bitshift64Shl(($532|0),($533|0),21)|0); - $541 = tempRet0; - $542 = (_i64Subtract(($508|0),($509|0),($540|0),($541|0))|0); - $543 = tempRet0; - $544 = (_i64Add(($516|0),($517|0),1048576,0)|0); - $545 = tempRet0; - $546 = (_bitshift64Ashr(($544|0),($545|0),21)|0); - $547 = tempRet0; - $548 = (_i64Add(($546|0),($547|0),($520|0),($521|0))|0); - $549 = tempRet0; - $550 = (_bitshift64Shl(($546|0),($547|0),21)|0); - $551 = tempRet0; - $552 = (_i64Add(($524|0),($525|0),1048576,0)|0); - $553 = tempRet0; - $554 = (_bitshift64Ashr(($552|0),($553|0),21)|0); - $555 = tempRet0; - $556 = (_i64Add(($554|0),($555|0),($528|0),($529|0))|0); - $557 = tempRet0; - $558 = (_bitshift64Shl(($554|0),($555|0),21)|0); - $559 = tempRet0; - $560 = (_i64Add(($504|0),($505|0),1048576,0)|0); - $561 = tempRet0; - $562 = (_bitshift64Ashr(($560|0),($561|0),21)|0); - $563 = tempRet0; - $564 = (_i64Add(($562|0),($563|0),($484|0),($485|0))|0); - $565 = tempRet0; - $566 = (_bitshift64Shl(($562|0),($563|0),21)|0); - $567 = tempRet0; - $568 = (_i64Subtract(($504|0),($505|0),($566|0),($567|0))|0); - $569 = tempRet0; - $570 = (_i64Add(($460|0),($461|0),1048576,0)|0); - $571 = tempRet0; - $572 = (_bitshift64Ashr(($570|0),($571|0),21)|0); - $573 = tempRet0; - $574 = (_i64Add(($572|0),($573|0),($436|0),($437|0))|0); - $575 = tempRet0; - $576 = (_bitshift64Shl(($572|0),($573|0),21)|0); - $577 = tempRet0; - $578 = (_i64Subtract(($460|0),($461|0),($576|0),($577|0))|0); - $579 = tempRet0; - $580 = (_i64Add(($412|0),($413|0),1048576,0)|0); - $581 = tempRet0; - $582 = (_bitshift64Ashr(($580|0),($581|0),21)|0); - $583 = tempRet0; - $584 = (_i64Add(($582|0),($583|0),($368|0),($369|0))|0); - $585 = tempRet0; - $586 = (_bitshift64Shl(($582|0),($583|0),21)|0); - $587 = tempRet0; - $588 = (_i64Subtract(($412|0),($413|0),($586|0),($587|0))|0); - $589 = tempRet0; - $590 = (_i64Add(($538|0),($539|0),1048576,0)|0); - $591 = tempRet0; - $592 = (_bitshift64Ashr(($590|0),($591|0),21)|0); - $593 = tempRet0; - $594 = (_bitshift64Shl(($592|0),($593|0),21)|0); - $595 = tempRet0; - $596 = (_i64Add(($548|0),($549|0),1048576,0)|0); - $597 = tempRet0; - $598 = (_bitshift64Ashr(($596|0),($597|0),21)|0); - $599 = tempRet0; - $600 = (_bitshift64Shl(($598|0),($599|0),21)|0); - $601 = tempRet0; - $602 = (_i64Subtract(($548|0),($549|0),($600|0),($601|0))|0); - $603 = tempRet0; - $604 = (_i64Add(($556|0),($557|0),1048576,0)|0); - $605 = tempRet0; - $606 = (_bitshift64Ashr(($604|0),($605|0),21)|0); - $607 = tempRet0; - $608 = (_i64Add(($568|0),($569|0),($606|0),($607|0))|0); - $609 = tempRet0; - $610 = (_bitshift64Shl(($606|0),($607|0),21)|0); - $611 = tempRet0; - $612 = (_i64Subtract(($556|0),($557|0),($610|0),($611|0))|0); - $613 = tempRet0; - $614 = (_i64Add(($564|0),($565|0),1048576,0)|0); - $615 = tempRet0; - $616 = (_bitshift64Ashr(($614|0),($615|0),21)|0); - $617 = tempRet0; - $618 = (_i64Add(($578|0),($579|0),($616|0),($617|0))|0); - $619 = tempRet0; - $620 = (_bitshift64Shl(($616|0),($617|0),21)|0); - $621 = tempRet0; - $622 = (_i64Subtract(($564|0),($565|0),($620|0),($621|0))|0); - $623 = tempRet0; - $624 = (_i64Add(($574|0),($575|0),1048576,0)|0); - $625 = tempRet0; - $626 = (_bitshift64Ashr(($624|0),($625|0),21)|0); - $627 = tempRet0; - $628 = (_i64Add(($588|0),($589|0),($626|0),($627|0))|0); - $629 = tempRet0; - $630 = (_bitshift64Shl(($626|0),($627|0),21)|0); - $631 = tempRet0; - $632 = (_i64Subtract(($574|0),($575|0),($630|0),($631|0))|0); - $633 = tempRet0; - $634 = (_i64Add(($584|0),($585|0),1048576,0)|0); - $635 = tempRet0; - $636 = (_bitshift64Ashr(($634|0),($635|0),21)|0); - $637 = tempRet0; - $638 = (_bitshift64Shl(($636|0),($637|0),21)|0); - $639 = tempRet0; - $640 = (_i64Subtract(($584|0),($585|0),($638|0),($639|0))|0); - $641 = tempRet0; - $642 = (___muldi3(($636|0),($637|0),666643,0)|0); - $643 = tempRet0; - $644 = (_i64Add(($542|0),($543|0),($642|0),($643|0))|0); - $645 = tempRet0; - $646 = (___muldi3(($636|0),($637|0),470296,0)|0); - $647 = tempRet0; - $648 = (___muldi3(($636|0),($637|0),654183,0)|0); - $649 = tempRet0; - $650 = (___muldi3(($636|0),($637|0),-997805,-1)|0); - $651 = tempRet0; - $652 = (_i64Add(($602|0),($603|0),($650|0),($651|0))|0); - $653 = tempRet0; - $654 = (___muldi3(($636|0),($637|0),136657,0)|0); - $655 = tempRet0; - $656 = (___muldi3(($636|0),($637|0),-683901,-1)|0); - $657 = tempRet0; - $658 = (_i64Add(($612|0),($613|0),($656|0),($657|0))|0); - $659 = tempRet0; - $660 = (_bitshift64Ashr(($644|0),($645|0),21)|0); - $661 = tempRet0; - $662 = (_i64Add(($646|0),($647|0),($538|0),($539|0))|0); - $663 = tempRet0; - $664 = (_i64Subtract(($662|0),($663|0),($594|0),($595|0))|0); - $665 = tempRet0; - $666 = (_i64Add(($664|0),($665|0),($660|0),($661|0))|0); - $667 = tempRet0; - $668 = (_bitshift64Shl(($660|0),($661|0),21)|0); - $669 = tempRet0; - $670 = (_i64Subtract(($644|0),($645|0),($668|0),($669|0))|0); - $671 = tempRet0; - $672 = (_bitshift64Ashr(($666|0),($667|0),21)|0); - $673 = tempRet0; - $674 = (_i64Add(($648|0),($649|0),($516|0),($517|0))|0); - $675 = tempRet0; - $676 = (_i64Subtract(($674|0),($675|0),($550|0),($551|0))|0); - $677 = tempRet0; - $678 = (_i64Add(($676|0),($677|0),($592|0),($593|0))|0); - $679 = tempRet0; - $680 = (_i64Add(($678|0),($679|0),($672|0),($673|0))|0); - $681 = tempRet0; - $682 = (_bitshift64Shl(($672|0),($673|0),21)|0); - $683 = tempRet0; - $684 = (_i64Subtract(($666|0),($667|0),($682|0),($683|0))|0); - $685 = tempRet0; - $686 = (_bitshift64Ashr(($680|0),($681|0),21)|0); - $687 = tempRet0; - $688 = (_i64Add(($686|0),($687|0),($652|0),($653|0))|0); - $689 = tempRet0; - $690 = (_bitshift64Shl(($686|0),($687|0),21)|0); - $691 = tempRet0; - $692 = (_i64Subtract(($680|0),($681|0),($690|0),($691|0))|0); - $693 = tempRet0; - $694 = (_bitshift64Ashr(($688|0),($689|0),21)|0); - $695 = tempRet0; - $696 = (_i64Add(($654|0),($655|0),($524|0),($525|0))|0); - $697 = tempRet0; - $698 = (_i64Subtract(($696|0),($697|0),($558|0),($559|0))|0); - $699 = tempRet0; - $700 = (_i64Add(($698|0),($699|0),($598|0),($599|0))|0); - $701 = tempRet0; - $702 = (_i64Add(($700|0),($701|0),($694|0),($695|0))|0); - $703 = tempRet0; - $704 = (_bitshift64Shl(($694|0),($695|0),21)|0); - $705 = tempRet0; - $706 = (_i64Subtract(($688|0),($689|0),($704|0),($705|0))|0); - $707 = tempRet0; - $708 = (_bitshift64Ashr(($702|0),($703|0),21)|0); - $709 = tempRet0; - $710 = (_i64Add(($708|0),($709|0),($658|0),($659|0))|0); - $711 = tempRet0; - $712 = (_bitshift64Shl(($708|0),($709|0),21)|0); - $713 = tempRet0; - $714 = (_i64Subtract(($702|0),($703|0),($712|0),($713|0))|0); - $715 = tempRet0; - $716 = (_bitshift64Ashr(($710|0),($711|0),21)|0); - $717 = tempRet0; - $718 = (_i64Add(($608|0),($609|0),($716|0),($717|0))|0); - $719 = tempRet0; - $720 = (_bitshift64Shl(($716|0),($717|0),21)|0); - $721 = tempRet0; - $722 = (_i64Subtract(($710|0),($711|0),($720|0),($721|0))|0); - $723 = tempRet0; - $724 = (_bitshift64Ashr(($718|0),($719|0),21)|0); - $725 = tempRet0; - $726 = (_i64Add(($724|0),($725|0),($622|0),($623|0))|0); - $727 = tempRet0; - $728 = (_bitshift64Shl(($724|0),($725|0),21)|0); - $729 = tempRet0; - $730 = (_i64Subtract(($718|0),($719|0),($728|0),($729|0))|0); - $731 = tempRet0; - $732 = (_bitshift64Ashr(($726|0),($727|0),21)|0); - $733 = tempRet0; - $734 = (_i64Add(($618|0),($619|0),($732|0),($733|0))|0); - $735 = tempRet0; - $736 = (_bitshift64Shl(($732|0),($733|0),21)|0); - $737 = tempRet0; - $738 = (_i64Subtract(($726|0),($727|0),($736|0),($737|0))|0); - $739 = tempRet0; - $740 = (_bitshift64Ashr(($734|0),($735|0),21)|0); - $741 = tempRet0; - $742 = (_i64Add(($740|0),($741|0),($632|0),($633|0))|0); - $743 = tempRet0; - $744 = (_bitshift64Shl(($740|0),($741|0),21)|0); - $745 = tempRet0; - $746 = (_i64Subtract(($734|0),($735|0),($744|0),($745|0))|0); - $747 = tempRet0; - $748 = (_bitshift64Ashr(($742|0),($743|0),21)|0); - $749 = tempRet0; - $750 = (_i64Add(($628|0),($629|0),($748|0),($749|0))|0); - $751 = tempRet0; - $752 = (_bitshift64Shl(($748|0),($749|0),21)|0); - $753 = tempRet0; - $754 = (_i64Subtract(($742|0),($743|0),($752|0),($753|0))|0); - $755 = tempRet0; - $756 = (_bitshift64Ashr(($750|0),($751|0),21)|0); - $757 = tempRet0; - $758 = (_i64Add(($756|0),($757|0),($640|0),($641|0))|0); - $759 = tempRet0; - $760 = (_bitshift64Shl(($756|0),($757|0),21)|0); - $761 = tempRet0; - $762 = (_i64Subtract(($750|0),($751|0),($760|0),($761|0))|0); - $763 = tempRet0; - $764 = (_bitshift64Ashr(($758|0),($759|0),21)|0); - $765 = tempRet0; - $766 = (_bitshift64Shl(($764|0),($765|0),21)|0); - $767 = tempRet0; - $768 = (_i64Subtract(($758|0),($759|0),($766|0),($767|0))|0); - $769 = tempRet0; - $770 = (___muldi3(($764|0),($765|0),666643,0)|0); - $771 = tempRet0; - $772 = (_i64Add(($770|0),($771|0),($670|0),($671|0))|0); - $773 = tempRet0; - $774 = (___muldi3(($764|0),($765|0),470296,0)|0); - $775 = tempRet0; - $776 = (_i64Add(($684|0),($685|0),($774|0),($775|0))|0); - $777 = tempRet0; - $778 = (___muldi3(($764|0),($765|0),654183,0)|0); - $779 = tempRet0; - $780 = (_i64Add(($692|0),($693|0),($778|0),($779|0))|0); - $781 = tempRet0; - $782 = (___muldi3(($764|0),($765|0),-997805,-1)|0); - $783 = tempRet0; - $784 = (_i64Add(($706|0),($707|0),($782|0),($783|0))|0); - $785 = tempRet0; - $786 = (___muldi3(($764|0),($765|0),136657,0)|0); - $787 = tempRet0; - $788 = (_i64Add(($714|0),($715|0),($786|0),($787|0))|0); - $789 = tempRet0; - $790 = (___muldi3(($764|0),($765|0),-683901,-1)|0); - $791 = tempRet0; - $792 = (_i64Add(($722|0),($723|0),($790|0),($791|0))|0); - $793 = tempRet0; - $794 = (_bitshift64Ashr(($772|0),($773|0),21)|0); - $795 = tempRet0; - $796 = (_i64Add(($776|0),($777|0),($794|0),($795|0))|0); - $797 = tempRet0; - $798 = (_bitshift64Shl(($794|0),($795|0),21)|0); - $799 = tempRet0; - $800 = (_i64Subtract(($772|0),($773|0),($798|0),($799|0))|0); - $801 = tempRet0; - $802 = (_bitshift64Ashr(($796|0),($797|0),21)|0); - $803 = tempRet0; - $804 = (_i64Add(($780|0),($781|0),($802|0),($803|0))|0); - $805 = tempRet0; - $806 = (_bitshift64Shl(($802|0),($803|0),21)|0); - $807 = tempRet0; - $808 = (_i64Subtract(($796|0),($797|0),($806|0),($807|0))|0); - $809 = tempRet0; - $810 = (_bitshift64Ashr(($804|0),($805|0),21)|0); - $811 = tempRet0; - $812 = (_i64Add(($810|0),($811|0),($784|0),($785|0))|0); - $813 = tempRet0; - $814 = (_bitshift64Shl(($810|0),($811|0),21)|0); - $815 = tempRet0; - $816 = (_i64Subtract(($804|0),($805|0),($814|0),($815|0))|0); - $817 = tempRet0; - $818 = (_bitshift64Ashr(($812|0),($813|0),21)|0); - $819 = tempRet0; - $820 = (_i64Add(($788|0),($789|0),($818|0),($819|0))|0); - $821 = tempRet0; - $822 = (_bitshift64Shl(($818|0),($819|0),21)|0); - $823 = tempRet0; - $824 = (_i64Subtract(($812|0),($813|0),($822|0),($823|0))|0); - $825 = tempRet0; - $826 = (_bitshift64Ashr(($820|0),($821|0),21)|0); - $827 = tempRet0; - $828 = (_i64Add(($826|0),($827|0),($792|0),($793|0))|0); - $829 = tempRet0; - $830 = (_bitshift64Shl(($826|0),($827|0),21)|0); - $831 = tempRet0; - $832 = (_i64Subtract(($820|0),($821|0),($830|0),($831|0))|0); - $833 = tempRet0; - $834 = (_bitshift64Ashr(($828|0),($829|0),21)|0); - $835 = tempRet0; - $836 = (_i64Add(($834|0),($835|0),($730|0),($731|0))|0); - $837 = tempRet0; - $838 = (_bitshift64Shl(($834|0),($835|0),21)|0); - $839 = tempRet0; - $840 = (_i64Subtract(($828|0),($829|0),($838|0),($839|0))|0); - $841 = tempRet0; - $842 = (_bitshift64Ashr(($836|0),($837|0),21)|0); - $843 = tempRet0; - $844 = (_i64Add(($842|0),($843|0),($738|0),($739|0))|0); - $845 = tempRet0; - $846 = (_bitshift64Shl(($842|0),($843|0),21)|0); - $847 = tempRet0; - $848 = (_i64Subtract(($836|0),($837|0),($846|0),($847|0))|0); - $849 = tempRet0; - $850 = (_bitshift64Ashr(($844|0),($845|0),21)|0); - $851 = tempRet0; - $852 = (_i64Add(($850|0),($851|0),($746|0),($747|0))|0); - $853 = tempRet0; - $854 = (_bitshift64Shl(($850|0),($851|0),21)|0); - $855 = tempRet0; - $856 = (_i64Subtract(($844|0),($845|0),($854|0),($855|0))|0); - $857 = tempRet0; - $858 = (_bitshift64Ashr(($852|0),($853|0),21)|0); - $859 = tempRet0; - $860 = (_i64Add(($858|0),($859|0),($754|0),($755|0))|0); - $861 = tempRet0; - $862 = (_bitshift64Shl(($858|0),($859|0),21)|0); - $863 = tempRet0; - $864 = (_i64Subtract(($852|0),($853|0),($862|0),($863|0))|0); - $865 = tempRet0; - $866 = (_bitshift64Ashr(($860|0),($861|0),21)|0); - $867 = tempRet0; - $868 = (_i64Add(($866|0),($867|0),($762|0),($763|0))|0); - $869 = tempRet0; - $870 = (_bitshift64Shl(($866|0),($867|0),21)|0); - $871 = tempRet0; - $872 = (_i64Subtract(($860|0),($861|0),($870|0),($871|0))|0); - $873 = tempRet0; - $874 = (_bitshift64Ashr(($868|0),($869|0),21)|0); - $875 = tempRet0; - $876 = (_i64Add(($874|0),($875|0),($768|0),($769|0))|0); - $877 = tempRet0; - $878 = (_bitshift64Shl(($874|0),($875|0),21)|0); - $879 = tempRet0; - $880 = (_i64Subtract(($868|0),($869|0),($878|0),($879|0))|0); - $881 = tempRet0; - $882 = $800&255; - HEAP8[$s>>0] = $882; - $883 = (_bitshift64Lshr(($800|0),($801|0),8)|0); - $884 = tempRet0; - $885 = $883&255; - $886 = ((($s)) + 1|0); - HEAP8[$886>>0] = $885; - $887 = (_bitshift64Lshr(($800|0),($801|0),16)|0); - $888 = tempRet0; - $889 = (_bitshift64Shl(($808|0),($809|0),5)|0); - $890 = tempRet0; - $891 = $889 | $887; - $890 | $888; - $892 = $891&255; - HEAP8[$3>>0] = $892; - $893 = (_bitshift64Lshr(($808|0),($809|0),3)|0); - $894 = tempRet0; - $895 = $893&255; - $896 = ((($s)) + 3|0); - HEAP8[$896>>0] = $895; - $897 = (_bitshift64Lshr(($808|0),($809|0),11)|0); - $898 = tempRet0; - $899 = $897&255; - $900 = ((($s)) + 4|0); - HEAP8[$900>>0] = $899; - $901 = (_bitshift64Lshr(($808|0),($809|0),19)|0); - $902 = tempRet0; - $903 = (_bitshift64Shl(($816|0),($817|0),2)|0); - $904 = tempRet0; - $905 = $903 | $901; - $904 | $902; - $906 = $905&255; - HEAP8[$9>>0] = $906; - $907 = (_bitshift64Lshr(($816|0),($817|0),6)|0); - $908 = tempRet0; - $909 = $907&255; - $910 = ((($s)) + 6|0); - HEAP8[$910>>0] = $909; - $911 = (_bitshift64Lshr(($816|0),($817|0),14)|0); - $912 = tempRet0; - $913 = (_bitshift64Shl(($824|0),($825|0),7)|0); - $914 = tempRet0; - $915 = $913 | $911; - $914 | $912; - $916 = $915&255; - HEAP8[$15>>0] = $916; - $917 = (_bitshift64Lshr(($824|0),($825|0),1)|0); - $918 = tempRet0; - $919 = $917&255; - $920 = ((($s)) + 8|0); - HEAP8[$920>>0] = $919; - $921 = (_bitshift64Lshr(($824|0),($825|0),9)|0); - $922 = tempRet0; - $923 = $921&255; - $924 = ((($s)) + 9|0); - HEAP8[$924>>0] = $923; - $925 = (_bitshift64Lshr(($824|0),($825|0),17)|0); - $926 = tempRet0; - $927 = (_bitshift64Shl(($832|0),($833|0),4)|0); - $928 = tempRet0; - $929 = $927 | $925; - $928 | $926; - $930 = $929&255; - HEAP8[$21>>0] = $930; - $931 = (_bitshift64Lshr(($832|0),($833|0),4)|0); - $932 = tempRet0; - $933 = $931&255; - $934 = ((($s)) + 11|0); - HEAP8[$934>>0] = $933; - $935 = (_bitshift64Lshr(($832|0),($833|0),12)|0); - $936 = tempRet0; - $937 = $935&255; - $938 = ((($s)) + 12|0); - HEAP8[$938>>0] = $937; - $939 = (_bitshift64Lshr(($832|0),($833|0),20)|0); - $940 = tempRet0; - $941 = (_bitshift64Shl(($840|0),($841|0),1)|0); - $942 = tempRet0; - $943 = $941 | $939; - $942 | $940; - $944 = $943&255; - HEAP8[$27>>0] = $944; - $945 = (_bitshift64Lshr(($840|0),($841|0),7)|0); - $946 = tempRet0; - $947 = $945&255; - $948 = ((($s)) + 14|0); - HEAP8[$948>>0] = $947; - $949 = (_bitshift64Lshr(($840|0),($841|0),15)|0); - $950 = tempRet0; - $951 = (_bitshift64Shl(($848|0),($849|0),6)|0); - $952 = tempRet0; - $953 = $951 | $949; - $952 | $950; - $954 = $953&255; - HEAP8[$33>>0] = $954; - $955 = (_bitshift64Lshr(($848|0),($849|0),2)|0); - $956 = tempRet0; - $957 = $955&255; - $958 = ((($s)) + 16|0); - HEAP8[$958>>0] = $957; - $959 = (_bitshift64Lshr(($848|0),($849|0),10)|0); - $960 = tempRet0; - $961 = $959&255; - $962 = ((($s)) + 17|0); - HEAP8[$962>>0] = $961; - $963 = (_bitshift64Lshr(($848|0),($849|0),18)|0); - $964 = tempRet0; - $965 = (_bitshift64Shl(($856|0),($857|0),3)|0); - $966 = tempRet0; - $967 = $965 | $963; - $966 | $964; - $968 = $967&255; - HEAP8[$39>>0] = $968; - $969 = (_bitshift64Lshr(($856|0),($857|0),5)|0); - $970 = tempRet0; - $971 = $969&255; - $972 = ((($s)) + 19|0); - HEAP8[$972>>0] = $971; - $973 = (_bitshift64Lshr(($856|0),($857|0),13)|0); - $974 = tempRet0; - $975 = $973&255; - $976 = ((($s)) + 20|0); - HEAP8[$976>>0] = $975; - $977 = $864&255; - HEAP8[$45>>0] = $977; - $978 = (_bitshift64Lshr(($864|0),($865|0),8)|0); - $979 = tempRet0; - $980 = $978&255; - $981 = ((($s)) + 22|0); - HEAP8[$981>>0] = $980; - $982 = (_bitshift64Lshr(($864|0),($865|0),16)|0); - $983 = tempRet0; - $984 = (_bitshift64Shl(($872|0),($873|0),5)|0); - $985 = tempRet0; - $986 = $984 | $982; - $985 | $983; - $987 = $986&255; - HEAP8[$49>>0] = $987; - $988 = (_bitshift64Lshr(($872|0),($873|0),3)|0); - $989 = tempRet0; - $990 = $988&255; - $991 = ((($s)) + 24|0); - HEAP8[$991>>0] = $990; - $992 = (_bitshift64Lshr(($872|0),($873|0),11)|0); - $993 = tempRet0; - $994 = $992&255; - $995 = ((($s)) + 25|0); - HEAP8[$995>>0] = $994; - $996 = (_bitshift64Lshr(($872|0),($873|0),19)|0); - $997 = tempRet0; - $998 = (_bitshift64Shl(($880|0),($881|0),2)|0); - $999 = tempRet0; - $1000 = $998 | $996; - $999 | $997; - $1001 = $1000&255; - HEAP8[$55>>0] = $1001; - $1002 = (_bitshift64Lshr(($880|0),($881|0),6)|0); - $1003 = tempRet0; - $1004 = $1002&255; - $1005 = ((($s)) + 27|0); - HEAP8[$1005>>0] = $1004; - $1006 = (_bitshift64Lshr(($880|0),($881|0),14)|0); - $1007 = tempRet0; - $1008 = (_bitshift64Shl(($876|0),($877|0),7)|0); - $1009 = tempRet0; - $1010 = $1006 | $1008; - $1007 | $1009; - $1011 = $1010&255; - HEAP8[$61>>0] = $1011; - $1012 = (_bitshift64Lshr(($876|0),($877|0),1)|0); - $1013 = tempRet0; - $1014 = $1012&255; - $1015 = ((($s)) + 29|0); - HEAP8[$1015>>0] = $1014; - $1016 = (_bitshift64Lshr(($876|0),($877|0),9)|0); - $1017 = tempRet0; - $1018 = $1016&255; - $1019 = ((($s)) + 30|0); - HEAP8[$1019>>0] = $1018; - $1020 = (_bitshift64Lshr(($876|0),($877|0),17)|0); - $1021 = tempRet0; - $1022 = $1020&255; - HEAP8[$67>>0] = $1022; + $1 = (_load_3_51($0)|0); + $2 = tempRet0; + $3 = $1 & 2097151; + $4 = ((($0)) + 2|0); + $5 = (_load_4_52($4)|0); + $6 = tempRet0; + $7 = (_bitshift64Lshr(($5|0),($6|0),5)|0); + $8 = tempRet0; + $9 = $7 & 2097151; + $10 = ((($0)) + 5|0); + $11 = (_load_3_51($10)|0); + $12 = tempRet0; + $13 = (_bitshift64Lshr(($11|0),($12|0),2)|0); + $14 = tempRet0; + $15 = $13 & 2097151; + $16 = ((($0)) + 7|0); + $17 = (_load_4_52($16)|0); + $18 = tempRet0; + $19 = (_bitshift64Lshr(($17|0),($18|0),7)|0); + $20 = tempRet0; + $21 = $19 & 2097151; + $22 = ((($0)) + 10|0); + $23 = (_load_4_52($22)|0); + $24 = tempRet0; + $25 = (_bitshift64Lshr(($23|0),($24|0),4)|0); + $26 = tempRet0; + $27 = $25 & 2097151; + $28 = ((($0)) + 13|0); + $29 = (_load_3_51($28)|0); + $30 = tempRet0; + $31 = (_bitshift64Lshr(($29|0),($30|0),1)|0); + $32 = tempRet0; + $33 = $31 & 2097151; + $34 = ((($0)) + 15|0); + $35 = (_load_4_52($34)|0); + $36 = tempRet0; + $37 = (_bitshift64Lshr(($35|0),($36|0),6)|0); + $38 = tempRet0; + $39 = $37 & 2097151; + $40 = ((($0)) + 18|0); + $41 = (_load_3_51($40)|0); + $42 = tempRet0; + $43 = (_bitshift64Lshr(($41|0),($42|0),3)|0); + $44 = tempRet0; + $45 = $43 & 2097151; + $46 = ((($0)) + 21|0); + $47 = (_load_3_51($46)|0); + $48 = tempRet0; + $49 = $47 & 2097151; + $50 = ((($0)) + 23|0); + $51 = (_load_4_52($50)|0); + $52 = tempRet0; + $53 = (_bitshift64Lshr(($51|0),($52|0),5)|0); + $54 = tempRet0; + $55 = $53 & 2097151; + $56 = ((($0)) + 26|0); + $57 = (_load_3_51($56)|0); + $58 = tempRet0; + $59 = (_bitshift64Lshr(($57|0),($58|0),2)|0); + $60 = tempRet0; + $61 = $59 & 2097151; + $62 = ((($0)) + 28|0); + $63 = (_load_4_52($62)|0); + $64 = tempRet0; + $65 = (_bitshift64Lshr(($63|0),($64|0),7)|0); + $66 = tempRet0; + $67 = $65 & 2097151; + $68 = ((($0)) + 31|0); + $69 = (_load_4_52($68)|0); + $70 = tempRet0; + $71 = (_bitshift64Lshr(($69|0),($70|0),4)|0); + $72 = tempRet0; + $73 = $71 & 2097151; + $74 = ((($0)) + 34|0); + $75 = (_load_3_51($74)|0); + $76 = tempRet0; + $77 = (_bitshift64Lshr(($75|0),($76|0),1)|0); + $78 = tempRet0; + $79 = $77 & 2097151; + $80 = ((($0)) + 36|0); + $81 = (_load_4_52($80)|0); + $82 = tempRet0; + $83 = (_bitshift64Lshr(($81|0),($82|0),6)|0); + $84 = tempRet0; + $85 = $83 & 2097151; + $86 = ((($0)) + 39|0); + $87 = (_load_3_51($86)|0); + $88 = tempRet0; + $89 = (_bitshift64Lshr(($87|0),($88|0),3)|0); + $90 = tempRet0; + $91 = $89 & 2097151; + $92 = ((($0)) + 42|0); + $93 = (_load_3_51($92)|0); + $94 = tempRet0; + $95 = $93 & 2097151; + $96 = ((($0)) + 44|0); + $97 = (_load_4_52($96)|0); + $98 = tempRet0; + $99 = (_bitshift64Lshr(($97|0),($98|0),5)|0); + $100 = tempRet0; + $101 = $99 & 2097151; + $102 = ((($0)) + 47|0); + $103 = (_load_3_51($102)|0); + $104 = tempRet0; + $105 = (_bitshift64Lshr(($103|0),($104|0),2)|0); + $106 = tempRet0; + $107 = $105 & 2097151; + $108 = ((($0)) + 49|0); + $109 = (_load_4_52($108)|0); + $110 = tempRet0; + $111 = (_bitshift64Lshr(($109|0),($110|0),7)|0); + $112 = tempRet0; + $113 = $111 & 2097151; + $114 = ((($0)) + 52|0); + $115 = (_load_4_52($114)|0); + $116 = tempRet0; + $117 = (_bitshift64Lshr(($115|0),($116|0),4)|0); + $118 = tempRet0; + $119 = $117 & 2097151; + $120 = ((($0)) + 55|0); + $121 = (_load_3_51($120)|0); + $122 = tempRet0; + $123 = (_bitshift64Lshr(($121|0),($122|0),1)|0); + $124 = tempRet0; + $125 = $123 & 2097151; + $126 = ((($0)) + 57|0); + $127 = (_load_4_52($126)|0); + $128 = tempRet0; + $129 = (_bitshift64Lshr(($127|0),($128|0),6)|0); + $130 = tempRet0; + $131 = $129 & 2097151; + $132 = ((($0)) + 60|0); + $133 = (_load_4_52($132)|0); + $134 = tempRet0; + $135 = (_bitshift64Lshr(($133|0),($134|0),3)|0); + $136 = tempRet0; + $137 = (___muldi3(($135|0),($136|0),666643,0)|0); + $138 = tempRet0; + $139 = (___muldi3(($135|0),($136|0),470296,0)|0); + $140 = tempRet0; + $141 = (___muldi3(($135|0),($136|0),654183,0)|0); + $142 = tempRet0; + $143 = (___muldi3(($135|0),($136|0),-997805,-1)|0); + $144 = tempRet0; + $145 = (___muldi3(($135|0),($136|0),136657,0)|0); + $146 = tempRet0; + $147 = (_i64Add(($145|0),($146|0),($91|0),0)|0); + $148 = tempRet0; + $149 = (___muldi3(($135|0),($136|0),-683901,-1)|0); + $150 = tempRet0; + $151 = (_i64Add(($149|0),($150|0),($95|0),0)|0); + $152 = tempRet0; + $153 = (___muldi3(($131|0),0,666643,0)|0); + $154 = tempRet0; + $155 = (___muldi3(($131|0),0,470296,0)|0); + $156 = tempRet0; + $157 = (___muldi3(($131|0),0,654183,0)|0); + $158 = tempRet0; + $159 = (___muldi3(($131|0),0,-997805,-1)|0); + $160 = tempRet0; + $161 = (___muldi3(($131|0),0,136657,0)|0); + $162 = tempRet0; + $163 = (___muldi3(($131|0),0,-683901,-1)|0); + $164 = tempRet0; + $165 = (_i64Add(($147|0),($148|0),($163|0),($164|0))|0); + $166 = tempRet0; + $167 = (___muldi3(($125|0),0,666643,0)|0); + $168 = tempRet0; + $169 = (___muldi3(($125|0),0,470296,0)|0); + $170 = tempRet0; + $171 = (___muldi3(($125|0),0,654183,0)|0); + $172 = tempRet0; + $173 = (___muldi3(($125|0),0,-997805,-1)|0); + $174 = tempRet0; + $175 = (___muldi3(($125|0),0,136657,0)|0); + $176 = tempRet0; + $177 = (___muldi3(($125|0),0,-683901,-1)|0); + $178 = tempRet0; + $179 = (_i64Add(($177|0),($178|0),($85|0),0)|0); + $180 = tempRet0; + $181 = (_i64Add(($179|0),($180|0),($143|0),($144|0))|0); + $182 = tempRet0; + $183 = (_i64Add(($181|0),($182|0),($161|0),($162|0))|0); + $184 = tempRet0; + $185 = (___muldi3(($119|0),0,666643,0)|0); + $186 = tempRet0; + $187 = (___muldi3(($119|0),0,470296,0)|0); + $188 = tempRet0; + $189 = (___muldi3(($119|0),0,654183,0)|0); + $190 = tempRet0; + $191 = (___muldi3(($119|0),0,-997805,-1)|0); + $192 = tempRet0; + $193 = (___muldi3(($119|0),0,136657,0)|0); + $194 = tempRet0; + $195 = (___muldi3(($119|0),0,-683901,-1)|0); + $196 = tempRet0; + $197 = (___muldi3(($113|0),0,666643,0)|0); + $198 = tempRet0; + $199 = (___muldi3(($113|0),0,470296,0)|0); + $200 = tempRet0; + $201 = (___muldi3(($113|0),0,654183,0)|0); + $202 = tempRet0; + $203 = (___muldi3(($113|0),0,-997805,-1)|0); + $204 = tempRet0; + $205 = (___muldi3(($113|0),0,136657,0)|0); + $206 = tempRet0; + $207 = (___muldi3(($113|0),0,-683901,-1)|0); + $208 = tempRet0; + $209 = (_i64Add(($207|0),($208|0),($73|0),0)|0); + $210 = tempRet0; + $211 = (_i64Add(($209|0),($210|0),($193|0),($194|0))|0); + $212 = tempRet0; + $213 = (_i64Add(($211|0),($212|0),($173|0),($174|0))|0); + $214 = tempRet0; + $215 = (_i64Add(($213|0),($214|0),($139|0),($140|0))|0); + $216 = tempRet0; + $217 = (_i64Add(($215|0),($216|0),($157|0),($158|0))|0); + $218 = tempRet0; + $219 = (___muldi3(($107|0),0,666643,0)|0); + $220 = tempRet0; + $221 = (_i64Add(($219|0),($220|0),($39|0),0)|0); + $222 = tempRet0; + $223 = (___muldi3(($107|0),0,470296,0)|0); + $224 = tempRet0; + $225 = (___muldi3(($107|0),0,654183,0)|0); + $226 = tempRet0; + $227 = (_i64Add(($225|0),($226|0),($49|0),0)|0); + $228 = tempRet0; + $229 = (_i64Add(($227|0),($228|0),($199|0),($200|0))|0); + $230 = tempRet0; + $231 = (_i64Add(($229|0),($230|0),($185|0),($186|0))|0); + $232 = tempRet0; + $233 = (___muldi3(($107|0),0,-997805,-1)|0); + $234 = tempRet0; + $235 = (___muldi3(($107|0),0,136657,0)|0); + $236 = tempRet0; + $237 = (_i64Add(($235|0),($236|0),($61|0),0)|0); + $238 = tempRet0; + $239 = (_i64Add(($237|0),($238|0),($203|0),($204|0))|0); + $240 = tempRet0; + $241 = (_i64Add(($239|0),($240|0),($189|0),($190|0))|0); + $242 = tempRet0; + $243 = (_i64Add(($241|0),($242|0),($169|0),($170|0))|0); + $244 = tempRet0; + $245 = (_i64Add(($243|0),($244|0),($153|0),($154|0))|0); + $246 = tempRet0; + $247 = (___muldi3(($107|0),0,-683901,-1)|0); + $248 = tempRet0; + $249 = (_i64Add(($221|0),($222|0),1048576,0)|0); + $250 = tempRet0; + $251 = (_bitshift64Lshr(($249|0),($250|0),21)|0); + $252 = tempRet0; + $253 = (_i64Add(($223|0),($224|0),($45|0),0)|0); + $254 = tempRet0; + $255 = (_i64Add(($253|0),($254|0),($197|0),($198|0))|0); + $256 = tempRet0; + $257 = (_i64Add(($255|0),($256|0),($251|0),($252|0))|0); + $258 = tempRet0; + $259 = (_bitshift64Shl(($251|0),($252|0),21)|0); + $260 = tempRet0; + $261 = (_i64Subtract(($221|0),($222|0),($259|0),($260|0))|0); + $262 = tempRet0; + $263 = (_i64Add(($231|0),($232|0),1048576,0)|0); + $264 = tempRet0; + $265 = (_bitshift64Lshr(($263|0),($264|0),21)|0); + $266 = tempRet0; + $267 = (_i64Add(($233|0),($234|0),($55|0),0)|0); + $268 = tempRet0; + $269 = (_i64Add(($267|0),($268|0),($201|0),($202|0))|0); + $270 = tempRet0; + $271 = (_i64Add(($269|0),($270|0),($187|0),($188|0))|0); + $272 = tempRet0; + $273 = (_i64Add(($271|0),($272|0),($167|0),($168|0))|0); + $274 = tempRet0; + $275 = (_i64Add(($273|0),($274|0),($265|0),($266|0))|0); + $276 = tempRet0; + $277 = (_bitshift64Shl(($265|0),($266|0),21)|0); + $278 = tempRet0; + $279 = (_i64Add(($245|0),($246|0),1048576,0)|0); + $280 = tempRet0; + $281 = (_bitshift64Ashr(($279|0),($280|0),21)|0); + $282 = tempRet0; + $283 = (_i64Add(($247|0),($248|0),($67|0),0)|0); + $284 = tempRet0; + $285 = (_i64Add(($283|0),($284|0),($205|0),($206|0))|0); + $286 = tempRet0; + $287 = (_i64Add(($285|0),($286|0),($191|0),($192|0))|0); + $288 = tempRet0; + $289 = (_i64Add(($287|0),($288|0),($171|0),($172|0))|0); + $290 = tempRet0; + $291 = (_i64Add(($289|0),($290|0),($137|0),($138|0))|0); + $292 = tempRet0; + $293 = (_i64Add(($291|0),($292|0),($155|0),($156|0))|0); + $294 = tempRet0; + $295 = (_i64Add(($293|0),($294|0),($281|0),($282|0))|0); + $296 = tempRet0; + $297 = (_bitshift64Shl(($281|0),($282|0),21)|0); + $298 = tempRet0; + $299 = (_i64Add(($217|0),($218|0),1048576,0)|0); + $300 = tempRet0; + $301 = (_bitshift64Ashr(($299|0),($300|0),21)|0); + $302 = tempRet0; + $303 = (_i64Add(($195|0),($196|0),($79|0),0)|0); + $304 = tempRet0; + $305 = (_i64Add(($303|0),($304|0),($175|0),($176|0))|0); + $306 = tempRet0; + $307 = (_i64Add(($305|0),($306|0),($141|0),($142|0))|0); + $308 = tempRet0; + $309 = (_i64Add(($307|0),($308|0),($159|0),($160|0))|0); + $310 = tempRet0; + $311 = (_i64Add(($309|0),($310|0),($301|0),($302|0))|0); + $312 = tempRet0; + $313 = (_bitshift64Shl(($301|0),($302|0),21)|0); + $314 = tempRet0; + $315 = (_i64Subtract(($217|0),($218|0),($313|0),($314|0))|0); + $316 = tempRet0; + $317 = (_i64Add(($183|0),($184|0),1048576,0)|0); + $318 = tempRet0; + $319 = (_bitshift64Ashr(($317|0),($318|0),21)|0); + $320 = tempRet0; + $321 = (_i64Add(($165|0),($166|0),($319|0),($320|0))|0); + $322 = tempRet0; + $323 = (_bitshift64Shl(($319|0),($320|0),21)|0); + $324 = tempRet0; + $325 = (_i64Subtract(($183|0),($184|0),($323|0),($324|0))|0); + $326 = tempRet0; + $327 = (_i64Add(($151|0),($152|0),1048576,0)|0); + $328 = tempRet0; + $329 = (_bitshift64Ashr(($327|0),($328|0),21)|0); + $330 = tempRet0; + $331 = (_i64Add(($329|0),($330|0),($101|0),0)|0); + $332 = tempRet0; + $333 = (_bitshift64Shl(($329|0),($330|0),21)|0); + $334 = tempRet0; + $335 = (_i64Subtract(($151|0),($152|0),($333|0),($334|0))|0); + $336 = tempRet0; + $337 = (_i64Add(($257|0),($258|0),1048576,0)|0); + $338 = tempRet0; + $339 = (_bitshift64Lshr(($337|0),($338|0),21)|0); + $340 = tempRet0; + $341 = (_bitshift64Shl(($339|0),($340|0),21)|0); + $342 = tempRet0; + $343 = (_i64Subtract(($257|0),($258|0),($341|0),($342|0))|0); + $344 = tempRet0; + $345 = (_i64Add(($275|0),($276|0),1048576,0)|0); + $346 = tempRet0; + $347 = (_bitshift64Ashr(($345|0),($346|0),21)|0); + $348 = tempRet0; + $349 = (_bitshift64Shl(($347|0),($348|0),21)|0); + $350 = tempRet0; + $351 = (_i64Add(($295|0),($296|0),1048576,0)|0); + $352 = tempRet0; + $353 = (_bitshift64Ashr(($351|0),($352|0),21)|0); + $354 = tempRet0; + $355 = (_i64Add(($353|0),($354|0),($315|0),($316|0))|0); + $356 = tempRet0; + $357 = (_bitshift64Shl(($353|0),($354|0),21)|0); + $358 = tempRet0; + $359 = (_i64Subtract(($295|0),($296|0),($357|0),($358|0))|0); + $360 = tempRet0; + $361 = (_i64Add(($311|0),($312|0),1048576,0)|0); + $362 = tempRet0; + $363 = (_bitshift64Ashr(($361|0),($362|0),21)|0); + $364 = tempRet0; + $365 = (_i64Add(($363|0),($364|0),($325|0),($326|0))|0); + $366 = tempRet0; + $367 = (_bitshift64Shl(($363|0),($364|0),21)|0); + $368 = tempRet0; + $369 = (_i64Subtract(($311|0),($312|0),($367|0),($368|0))|0); + $370 = tempRet0; + $371 = (_i64Add(($321|0),($322|0),1048576,0)|0); + $372 = tempRet0; + $373 = (_bitshift64Ashr(($371|0),($372|0),21)|0); + $374 = tempRet0; + $375 = (_i64Add(($373|0),($374|0),($335|0),($336|0))|0); + $376 = tempRet0; + $377 = (_bitshift64Shl(($373|0),($374|0),21)|0); + $378 = tempRet0; + $379 = (_i64Subtract(($321|0),($322|0),($377|0),($378|0))|0); + $380 = tempRet0; + $381 = (___muldi3(($331|0),($332|0),666643,0)|0); + $382 = tempRet0; + $383 = (_i64Add(($381|0),($382|0),($33|0),0)|0); + $384 = tempRet0; + $385 = (___muldi3(($331|0),($332|0),470296,0)|0); + $386 = tempRet0; + $387 = (_i64Add(($261|0),($262|0),($385|0),($386|0))|0); + $388 = tempRet0; + $389 = (___muldi3(($331|0),($332|0),654183,0)|0); + $390 = tempRet0; + $391 = (_i64Add(($343|0),($344|0),($389|0),($390|0))|0); + $392 = tempRet0; + $393 = (___muldi3(($331|0),($332|0),-997805,-1)|0); + $394 = tempRet0; + $395 = (___muldi3(($331|0),($332|0),136657,0)|0); + $396 = tempRet0; + $397 = (___muldi3(($331|0),($332|0),-683901,-1)|0); + $398 = tempRet0; + $399 = (_i64Add(($397|0),($398|0),($245|0),($246|0))|0); + $400 = tempRet0; + $401 = (_i64Add(($399|0),($400|0),($347|0),($348|0))|0); + $402 = tempRet0; + $403 = (_i64Subtract(($401|0),($402|0),($297|0),($298|0))|0); + $404 = tempRet0; + $405 = (___muldi3(($375|0),($376|0),666643,0)|0); + $406 = tempRet0; + $407 = (_i64Add(($405|0),($406|0),($27|0),0)|0); + $408 = tempRet0; + $409 = (___muldi3(($375|0),($376|0),470296,0)|0); + $410 = tempRet0; + $411 = (_i64Add(($383|0),($384|0),($409|0),($410|0))|0); + $412 = tempRet0; + $413 = (___muldi3(($375|0),($376|0),654183,0)|0); + $414 = tempRet0; + $415 = (_i64Add(($387|0),($388|0),($413|0),($414|0))|0); + $416 = tempRet0; + $417 = (___muldi3(($375|0),($376|0),-997805,-1)|0); + $418 = tempRet0; + $419 = (_i64Add(($391|0),($392|0),($417|0),($418|0))|0); + $420 = tempRet0; + $421 = (___muldi3(($375|0),($376|0),136657,0)|0); + $422 = tempRet0; + $423 = (___muldi3(($375|0),($376|0),-683901,-1)|0); + $424 = tempRet0; + $425 = (___muldi3(($379|0),($380|0),666643,0)|0); + $426 = tempRet0; + $427 = (_i64Add(($425|0),($426|0),($21|0),0)|0); + $428 = tempRet0; + $429 = (___muldi3(($379|0),($380|0),470296,0)|0); + $430 = tempRet0; + $431 = (_i64Add(($407|0),($408|0),($429|0),($430|0))|0); + $432 = tempRet0; + $433 = (___muldi3(($379|0),($380|0),654183,0)|0); + $434 = tempRet0; + $435 = (_i64Add(($411|0),($412|0),($433|0),($434|0))|0); + $436 = tempRet0; + $437 = (___muldi3(($379|0),($380|0),-997805,-1)|0); + $438 = tempRet0; + $439 = (_i64Add(($415|0),($416|0),($437|0),($438|0))|0); + $440 = tempRet0; + $441 = (___muldi3(($379|0),($380|0),136657,0)|0); + $442 = tempRet0; + $443 = (_i64Add(($419|0),($420|0),($441|0),($442|0))|0); + $444 = tempRet0; + $445 = (___muldi3(($379|0),($380|0),-683901,-1)|0); + $446 = tempRet0; + $447 = (_i64Add(($339|0),($340|0),($231|0),($232|0))|0); + $448 = tempRet0; + $449 = (_i64Subtract(($447|0),($448|0),($277|0),($278|0))|0); + $450 = tempRet0; + $451 = (_i64Add(($449|0),($450|0),($393|0),($394|0))|0); + $452 = tempRet0; + $453 = (_i64Add(($451|0),($452|0),($421|0),($422|0))|0); + $454 = tempRet0; + $455 = (_i64Add(($453|0),($454|0),($445|0),($446|0))|0); + $456 = tempRet0; + $457 = (___muldi3(($365|0),($366|0),666643,0)|0); + $458 = tempRet0; + $459 = (_i64Add(($457|0),($458|0),($15|0),0)|0); + $460 = tempRet0; + $461 = (___muldi3(($365|0),($366|0),470296,0)|0); + $462 = tempRet0; + $463 = (_i64Add(($427|0),($428|0),($461|0),($462|0))|0); + $464 = tempRet0; + $465 = (___muldi3(($365|0),($366|0),654183,0)|0); + $466 = tempRet0; + $467 = (_i64Add(($431|0),($432|0),($465|0),($466|0))|0); + $468 = tempRet0; + $469 = (___muldi3(($365|0),($366|0),-997805,-1)|0); + $470 = tempRet0; + $471 = (_i64Add(($435|0),($436|0),($469|0),($470|0))|0); + $472 = tempRet0; + $473 = (___muldi3(($365|0),($366|0),136657,0)|0); + $474 = tempRet0; + $475 = (_i64Add(($439|0),($440|0),($473|0),($474|0))|0); + $476 = tempRet0; + $477 = (___muldi3(($365|0),($366|0),-683901,-1)|0); + $478 = tempRet0; + $479 = (_i64Add(($443|0),($444|0),($477|0),($478|0))|0); + $480 = tempRet0; + $481 = (___muldi3(($369|0),($370|0),666643,0)|0); + $482 = tempRet0; + $483 = (___muldi3(($369|0),($370|0),470296,0)|0); + $484 = tempRet0; + $485 = (___muldi3(($369|0),($370|0),654183,0)|0); + $486 = tempRet0; + $487 = (___muldi3(($369|0),($370|0),-997805,-1)|0); + $488 = tempRet0; + $489 = (___muldi3(($369|0),($370|0),136657,0)|0); + $490 = tempRet0; + $491 = (___muldi3(($369|0),($370|0),-683901,-1)|0); + $492 = tempRet0; + $493 = (_i64Add(($475|0),($476|0),($491|0),($492|0))|0); + $494 = tempRet0; + $495 = (___muldi3(($355|0),($356|0),666643,0)|0); + $496 = tempRet0; + $497 = (_i64Add(($495|0),($496|0),($3|0),0)|0); + $498 = tempRet0; + $499 = (___muldi3(($355|0),($356|0),470296,0)|0); + $500 = tempRet0; + $501 = (___muldi3(($355|0),($356|0),654183,0)|0); + $502 = tempRet0; + $503 = (_i64Add(($459|0),($460|0),($501|0),($502|0))|0); + $504 = tempRet0; + $505 = (_i64Add(($503|0),($504|0),($483|0),($484|0))|0); + $506 = tempRet0; + $507 = (___muldi3(($355|0),($356|0),-997805,-1)|0); + $508 = tempRet0; + $509 = (___muldi3(($355|0),($356|0),136657,0)|0); + $510 = tempRet0; + $511 = (_i64Add(($467|0),($468|0),($509|0),($510|0))|0); + $512 = tempRet0; + $513 = (_i64Add(($511|0),($512|0),($487|0),($488|0))|0); + $514 = tempRet0; + $515 = (___muldi3(($355|0),($356|0),-683901,-1)|0); + $516 = tempRet0; + $517 = (_i64Add(($497|0),($498|0),1048576,0)|0); + $518 = tempRet0; + $519 = (_bitshift64Ashr(($517|0),($518|0),21)|0); + $520 = tempRet0; + $521 = (_i64Add(($499|0),($500|0),($9|0),0)|0); + $522 = tempRet0; + $523 = (_i64Add(($521|0),($522|0),($481|0),($482|0))|0); + $524 = tempRet0; + $525 = (_i64Add(($523|0),($524|0),($519|0),($520|0))|0); + $526 = tempRet0; + $527 = (_bitshift64Shl(($519|0),($520|0),21)|0); + $528 = tempRet0; + $529 = (_i64Subtract(($497|0),($498|0),($527|0),($528|0))|0); + $530 = tempRet0; + $531 = (_i64Add(($505|0),($506|0),1048576,0)|0); + $532 = tempRet0; + $533 = (_bitshift64Ashr(($531|0),($532|0),21)|0); + $534 = tempRet0; + $535 = (_i64Add(($463|0),($464|0),($507|0),($508|0))|0); + $536 = tempRet0; + $537 = (_i64Add(($535|0),($536|0),($485|0),($486|0))|0); + $538 = tempRet0; + $539 = (_i64Add(($537|0),($538|0),($533|0),($534|0))|0); + $540 = tempRet0; + $541 = (_bitshift64Shl(($533|0),($534|0),21)|0); + $542 = tempRet0; + $543 = (_i64Add(($513|0),($514|0),1048576,0)|0); + $544 = tempRet0; + $545 = (_bitshift64Ashr(($543|0),($544|0),21)|0); + $546 = tempRet0; + $547 = (_i64Add(($471|0),($472|0),($515|0),($516|0))|0); + $548 = tempRet0; + $549 = (_i64Add(($547|0),($548|0),($489|0),($490|0))|0); + $550 = tempRet0; + $551 = (_i64Add(($549|0),($550|0),($545|0),($546|0))|0); + $552 = tempRet0; + $553 = (_bitshift64Shl(($545|0),($546|0),21)|0); + $554 = tempRet0; + $555 = (_i64Add(($493|0),($494|0),1048576,0)|0); + $556 = tempRet0; + $557 = (_bitshift64Ashr(($555|0),($556|0),21)|0); + $558 = tempRet0; + $559 = (_i64Add(($479|0),($480|0),($557|0),($558|0))|0); + $560 = tempRet0; + $561 = (_bitshift64Shl(($557|0),($558|0),21)|0); + $562 = tempRet0; + $563 = (_i64Subtract(($493|0),($494|0),($561|0),($562|0))|0); + $564 = tempRet0; + $565 = (_i64Add(($455|0),($456|0),1048576,0)|0); + $566 = tempRet0; + $567 = (_bitshift64Ashr(($565|0),($566|0),21)|0); + $568 = tempRet0; + $569 = (_i64Add(($395|0),($396|0),($275|0),($276|0))|0); + $570 = tempRet0; + $571 = (_i64Subtract(($569|0),($570|0),($349|0),($350|0))|0); + $572 = tempRet0; + $573 = (_i64Add(($571|0),($572|0),($423|0),($424|0))|0); + $574 = tempRet0; + $575 = (_i64Add(($573|0),($574|0),($567|0),($568|0))|0); + $576 = tempRet0; + $577 = (_bitshift64Shl(($567|0),($568|0),21)|0); + $578 = tempRet0; + $579 = (_i64Subtract(($455|0),($456|0),($577|0),($578|0))|0); + $580 = tempRet0; + $581 = (_i64Add(($403|0),($404|0),1048576,0)|0); + $582 = tempRet0; + $583 = (_bitshift64Ashr(($581|0),($582|0),21)|0); + $584 = tempRet0; + $585 = (_i64Add(($583|0),($584|0),($359|0),($360|0))|0); + $586 = tempRet0; + $587 = (_bitshift64Shl(($583|0),($584|0),21)|0); + $588 = tempRet0; + $589 = (_i64Subtract(($403|0),($404|0),($587|0),($588|0))|0); + $590 = tempRet0; + $591 = (_i64Add(($525|0),($526|0),1048576,0)|0); + $592 = tempRet0; + $593 = (_bitshift64Ashr(($591|0),($592|0),21)|0); + $594 = tempRet0; + $595 = (_bitshift64Shl(($593|0),($594|0),21)|0); + $596 = tempRet0; + $597 = (_i64Add(($539|0),($540|0),1048576,0)|0); + $598 = tempRet0; + $599 = (_bitshift64Ashr(($597|0),($598|0),21)|0); + $600 = tempRet0; + $601 = (_bitshift64Shl(($599|0),($600|0),21)|0); + $602 = tempRet0; + $603 = (_i64Add(($551|0),($552|0),1048576,0)|0); + $604 = tempRet0; + $605 = (_bitshift64Ashr(($603|0),($604|0),21)|0); + $606 = tempRet0; + $607 = (_i64Add(($563|0),($564|0),($605|0),($606|0))|0); + $608 = tempRet0; + $609 = (_bitshift64Shl(($605|0),($606|0),21)|0); + $610 = tempRet0; + $611 = (_i64Add(($559|0),($560|0),1048576,0)|0); + $612 = tempRet0; + $613 = (_bitshift64Ashr(($611|0),($612|0),21)|0); + $614 = tempRet0; + $615 = (_i64Add(($579|0),($580|0),($613|0),($614|0))|0); + $616 = tempRet0; + $617 = (_bitshift64Shl(($613|0),($614|0),21)|0); + $618 = tempRet0; + $619 = (_i64Subtract(($559|0),($560|0),($617|0),($618|0))|0); + $620 = tempRet0; + $621 = (_i64Add(($575|0),($576|0),1048576,0)|0); + $622 = tempRet0; + $623 = (_bitshift64Ashr(($621|0),($622|0),21)|0); + $624 = tempRet0; + $625 = (_i64Add(($589|0),($590|0),($623|0),($624|0))|0); + $626 = tempRet0; + $627 = (_bitshift64Shl(($623|0),($624|0),21)|0); + $628 = tempRet0; + $629 = (_i64Subtract(($575|0),($576|0),($627|0),($628|0))|0); + $630 = tempRet0; + $631 = (_i64Add(($585|0),($586|0),1048576,0)|0); + $632 = tempRet0; + $633 = (_bitshift64Ashr(($631|0),($632|0),21)|0); + $634 = tempRet0; + $635 = (_bitshift64Shl(($633|0),($634|0),21)|0); + $636 = tempRet0; + $637 = (_i64Subtract(($585|0),($586|0),($635|0),($636|0))|0); + $638 = tempRet0; + $639 = (___muldi3(($633|0),($634|0),666643,0)|0); + $640 = tempRet0; + $641 = (_i64Add(($529|0),($530|0),($639|0),($640|0))|0); + $642 = tempRet0; + $643 = (___muldi3(($633|0),($634|0),470296,0)|0); + $644 = tempRet0; + $645 = (___muldi3(($633|0),($634|0),654183,0)|0); + $646 = tempRet0; + $647 = (___muldi3(($633|0),($634|0),-997805,-1)|0); + $648 = tempRet0; + $649 = (___muldi3(($633|0),($634|0),136657,0)|0); + $650 = tempRet0; + $651 = (___muldi3(($633|0),($634|0),-683901,-1)|0); + $652 = tempRet0; + $653 = (_bitshift64Ashr(($641|0),($642|0),21)|0); + $654 = tempRet0; + $655 = (_i64Add(($643|0),($644|0),($525|0),($526|0))|0); + $656 = tempRet0; + $657 = (_i64Subtract(($655|0),($656|0),($595|0),($596|0))|0); + $658 = tempRet0; + $659 = (_i64Add(($657|0),($658|0),($653|0),($654|0))|0); + $660 = tempRet0; + $661 = (_bitshift64Shl(($653|0),($654|0),21)|0); + $662 = tempRet0; + $663 = (_i64Subtract(($641|0),($642|0),($661|0),($662|0))|0); + $664 = tempRet0; + $665 = (_bitshift64Ashr(($659|0),($660|0),21)|0); + $666 = tempRet0; + $667 = (_i64Add(($645|0),($646|0),($505|0),($506|0))|0); + $668 = tempRet0; + $669 = (_i64Subtract(($667|0),($668|0),($541|0),($542|0))|0); + $670 = tempRet0; + $671 = (_i64Add(($669|0),($670|0),($593|0),($594|0))|0); + $672 = tempRet0; + $673 = (_i64Add(($671|0),($672|0),($665|0),($666|0))|0); + $674 = tempRet0; + $675 = (_bitshift64Shl(($665|0),($666|0),21)|0); + $676 = tempRet0; + $677 = (_i64Subtract(($659|0),($660|0),($675|0),($676|0))|0); + $678 = tempRet0; + $679 = (_bitshift64Ashr(($673|0),($674|0),21)|0); + $680 = tempRet0; + $681 = (_i64Add(($539|0),($540|0),($647|0),($648|0))|0); + $682 = tempRet0; + $683 = (_i64Subtract(($681|0),($682|0),($601|0),($602|0))|0); + $684 = tempRet0; + $685 = (_i64Add(($683|0),($684|0),($679|0),($680|0))|0); + $686 = tempRet0; + $687 = (_bitshift64Shl(($679|0),($680|0),21)|0); + $688 = tempRet0; + $689 = (_i64Subtract(($673|0),($674|0),($687|0),($688|0))|0); + $690 = tempRet0; + $691 = (_bitshift64Ashr(($685|0),($686|0),21)|0); + $692 = tempRet0; + $693 = (_i64Add(($649|0),($650|0),($513|0),($514|0))|0); + $694 = tempRet0; + $695 = (_i64Subtract(($693|0),($694|0),($553|0),($554|0))|0); + $696 = tempRet0; + $697 = (_i64Add(($695|0),($696|0),($599|0),($600|0))|0); + $698 = tempRet0; + $699 = (_i64Add(($697|0),($698|0),($691|0),($692|0))|0); + $700 = tempRet0; + $701 = (_bitshift64Shl(($691|0),($692|0),21)|0); + $702 = tempRet0; + $703 = (_i64Subtract(($685|0),($686|0),($701|0),($702|0))|0); + $704 = tempRet0; + $705 = (_bitshift64Ashr(($699|0),($700|0),21)|0); + $706 = tempRet0; + $707 = (_i64Add(($551|0),($552|0),($651|0),($652|0))|0); + $708 = tempRet0; + $709 = (_i64Subtract(($707|0),($708|0),($609|0),($610|0))|0); + $710 = tempRet0; + $711 = (_i64Add(($709|0),($710|0),($705|0),($706|0))|0); + $712 = tempRet0; + $713 = (_bitshift64Shl(($705|0),($706|0),21)|0); + $714 = tempRet0; + $715 = (_i64Subtract(($699|0),($700|0),($713|0),($714|0))|0); + $716 = tempRet0; + $717 = (_bitshift64Ashr(($711|0),($712|0),21)|0); + $718 = tempRet0; + $719 = (_i64Add(($607|0),($608|0),($717|0),($718|0))|0); + $720 = tempRet0; + $721 = (_bitshift64Shl(($717|0),($718|0),21)|0); + $722 = tempRet0; + $723 = (_i64Subtract(($711|0),($712|0),($721|0),($722|0))|0); + $724 = tempRet0; + $725 = (_bitshift64Ashr(($719|0),($720|0),21)|0); + $726 = tempRet0; + $727 = (_i64Add(($725|0),($726|0),($619|0),($620|0))|0); + $728 = tempRet0; + $729 = (_bitshift64Shl(($725|0),($726|0),21)|0); + $730 = tempRet0; + $731 = (_i64Subtract(($719|0),($720|0),($729|0),($730|0))|0); + $732 = tempRet0; + $733 = (_bitshift64Ashr(($727|0),($728|0),21)|0); + $734 = tempRet0; + $735 = (_i64Add(($615|0),($616|0),($733|0),($734|0))|0); + $736 = tempRet0; + $737 = (_bitshift64Shl(($733|0),($734|0),21)|0); + $738 = tempRet0; + $739 = (_i64Subtract(($727|0),($728|0),($737|0),($738|0))|0); + $740 = tempRet0; + $741 = (_bitshift64Ashr(($735|0),($736|0),21)|0); + $742 = tempRet0; + $743 = (_i64Add(($741|0),($742|0),($629|0),($630|0))|0); + $744 = tempRet0; + $745 = (_bitshift64Shl(($741|0),($742|0),21)|0); + $746 = tempRet0; + $747 = (_i64Subtract(($735|0),($736|0),($745|0),($746|0))|0); + $748 = tempRet0; + $749 = (_bitshift64Ashr(($743|0),($744|0),21)|0); + $750 = tempRet0; + $751 = (_i64Add(($625|0),($626|0),($749|0),($750|0))|0); + $752 = tempRet0; + $753 = (_bitshift64Shl(($749|0),($750|0),21)|0); + $754 = tempRet0; + $755 = (_i64Subtract(($743|0),($744|0),($753|0),($754|0))|0); + $756 = tempRet0; + $757 = (_bitshift64Ashr(($751|0),($752|0),21)|0); + $758 = tempRet0; + $759 = (_i64Add(($757|0),($758|0),($637|0),($638|0))|0); + $760 = tempRet0; + $761 = (_bitshift64Shl(($757|0),($758|0),21)|0); + $762 = tempRet0; + $763 = (_i64Subtract(($751|0),($752|0),($761|0),($762|0))|0); + $764 = tempRet0; + $765 = (_bitshift64Ashr(($759|0),($760|0),21)|0); + $766 = tempRet0; + $767 = (_bitshift64Shl(($765|0),($766|0),21)|0); + $768 = tempRet0; + $769 = (_i64Subtract(($759|0),($760|0),($767|0),($768|0))|0); + $770 = tempRet0; + $771 = (___muldi3(($765|0),($766|0),666643,0)|0); + $772 = tempRet0; + $773 = (_i64Add(($771|0),($772|0),($663|0),($664|0))|0); + $774 = tempRet0; + $775 = (___muldi3(($765|0),($766|0),470296,0)|0); + $776 = tempRet0; + $777 = (_i64Add(($677|0),($678|0),($775|0),($776|0))|0); + $778 = tempRet0; + $779 = (___muldi3(($765|0),($766|0),654183,0)|0); + $780 = tempRet0; + $781 = (_i64Add(($689|0),($690|0),($779|0),($780|0))|0); + $782 = tempRet0; + $783 = (___muldi3(($765|0),($766|0),-997805,-1)|0); + $784 = tempRet0; + $785 = (_i64Add(($703|0),($704|0),($783|0),($784|0))|0); + $786 = tempRet0; + $787 = (___muldi3(($765|0),($766|0),136657,0)|0); + $788 = tempRet0; + $789 = (_i64Add(($715|0),($716|0),($787|0),($788|0))|0); + $790 = tempRet0; + $791 = (___muldi3(($765|0),($766|0),-683901,-1)|0); + $792 = tempRet0; + $793 = (_i64Add(($723|0),($724|0),($791|0),($792|0))|0); + $794 = tempRet0; + $795 = (_bitshift64Ashr(($773|0),($774|0),21)|0); + $796 = tempRet0; + $797 = (_i64Add(($777|0),($778|0),($795|0),($796|0))|0); + $798 = tempRet0; + $799 = (_bitshift64Shl(($795|0),($796|0),21)|0); + $800 = tempRet0; + $801 = (_i64Subtract(($773|0),($774|0),($799|0),($800|0))|0); + $802 = tempRet0; + $803 = (_bitshift64Ashr(($797|0),($798|0),21)|0); + $804 = tempRet0; + $805 = (_i64Add(($781|0),($782|0),($803|0),($804|0))|0); + $806 = tempRet0; + $807 = (_bitshift64Shl(($803|0),($804|0),21)|0); + $808 = tempRet0; + $809 = (_i64Subtract(($797|0),($798|0),($807|0),($808|0))|0); + $810 = tempRet0; + $811 = (_bitshift64Ashr(($805|0),($806|0),21)|0); + $812 = tempRet0; + $813 = (_i64Add(($785|0),($786|0),($811|0),($812|0))|0); + $814 = tempRet0; + $815 = (_bitshift64Shl(($811|0),($812|0),21)|0); + $816 = tempRet0; + $817 = (_i64Subtract(($805|0),($806|0),($815|0),($816|0))|0); + $818 = tempRet0; + $819 = (_bitshift64Ashr(($813|0),($814|0),21)|0); + $820 = tempRet0; + $821 = (_i64Add(($789|0),($790|0),($819|0),($820|0))|0); + $822 = tempRet0; + $823 = (_bitshift64Shl(($819|0),($820|0),21)|0); + $824 = tempRet0; + $825 = (_i64Subtract(($813|0),($814|0),($823|0),($824|0))|0); + $826 = tempRet0; + $827 = (_bitshift64Ashr(($821|0),($822|0),21)|0); + $828 = tempRet0; + $829 = (_i64Add(($793|0),($794|0),($827|0),($828|0))|0); + $830 = tempRet0; + $831 = (_bitshift64Shl(($827|0),($828|0),21)|0); + $832 = tempRet0; + $833 = (_i64Subtract(($821|0),($822|0),($831|0),($832|0))|0); + $834 = tempRet0; + $835 = (_bitshift64Ashr(($829|0),($830|0),21)|0); + $836 = tempRet0; + $837 = (_i64Add(($835|0),($836|0),($731|0),($732|0))|0); + $838 = tempRet0; + $839 = (_bitshift64Shl(($835|0),($836|0),21)|0); + $840 = tempRet0; + $841 = (_i64Subtract(($829|0),($830|0),($839|0),($840|0))|0); + $842 = tempRet0; + $843 = (_bitshift64Ashr(($837|0),($838|0),21)|0); + $844 = tempRet0; + $845 = (_i64Add(($843|0),($844|0),($739|0),($740|0))|0); + $846 = tempRet0; + $847 = (_bitshift64Shl(($843|0),($844|0),21)|0); + $848 = tempRet0; + $849 = (_i64Subtract(($837|0),($838|0),($847|0),($848|0))|0); + $850 = tempRet0; + $851 = (_bitshift64Ashr(($845|0),($846|0),21)|0); + $852 = tempRet0; + $853 = (_i64Add(($851|0),($852|0),($747|0),($748|0))|0); + $854 = tempRet0; + $855 = (_bitshift64Shl(($851|0),($852|0),21)|0); + $856 = tempRet0; + $857 = (_i64Subtract(($845|0),($846|0),($855|0),($856|0))|0); + $858 = tempRet0; + $859 = (_bitshift64Ashr(($853|0),($854|0),21)|0); + $860 = tempRet0; + $861 = (_i64Add(($859|0),($860|0),($755|0),($756|0))|0); + $862 = tempRet0; + $863 = (_bitshift64Shl(($859|0),($860|0),21)|0); + $864 = tempRet0; + $865 = (_i64Subtract(($853|0),($854|0),($863|0),($864|0))|0); + $866 = tempRet0; + $867 = (_bitshift64Ashr(($861|0),($862|0),21)|0); + $868 = tempRet0; + $869 = (_i64Add(($867|0),($868|0),($763|0),($764|0))|0); + $870 = tempRet0; + $871 = (_bitshift64Shl(($867|0),($868|0),21)|0); + $872 = tempRet0; + $873 = (_i64Subtract(($861|0),($862|0),($871|0),($872|0))|0); + $874 = tempRet0; + $875 = (_bitshift64Ashr(($869|0),($870|0),21)|0); + $876 = tempRet0; + $877 = (_i64Add(($875|0),($876|0),($769|0),($770|0))|0); + $878 = tempRet0; + $879 = (_bitshift64Shl(($875|0),($876|0),21)|0); + $880 = tempRet0; + $881 = (_i64Subtract(($869|0),($870|0),($879|0),($880|0))|0); + $882 = tempRet0; + $883 = $801&255; + HEAP8[$0>>0] = $883; + $884 = (_bitshift64Lshr(($801|0),($802|0),8)|0); + $885 = tempRet0; + $886 = $884&255; + $887 = ((($0)) + 1|0); + HEAP8[$887>>0] = $886; + $888 = (_bitshift64Lshr(($801|0),($802|0),16)|0); + $889 = tempRet0; + $890 = (_bitshift64Shl(($809|0),($810|0),5)|0); + $891 = tempRet0; + $892 = $890 | $888; + $891 | $889; + $893 = $892&255; + HEAP8[$4>>0] = $893; + $894 = (_bitshift64Lshr(($809|0),($810|0),3)|0); + $895 = tempRet0; + $896 = $894&255; + $897 = ((($0)) + 3|0); + HEAP8[$897>>0] = $896; + $898 = (_bitshift64Lshr(($809|0),($810|0),11)|0); + $899 = tempRet0; + $900 = $898&255; + $901 = ((($0)) + 4|0); + HEAP8[$901>>0] = $900; + $902 = (_bitshift64Lshr(($809|0),($810|0),19)|0); + $903 = tempRet0; + $904 = (_bitshift64Shl(($817|0),($818|0),2)|0); + $905 = tempRet0; + $906 = $904 | $902; + $905 | $903; + $907 = $906&255; + HEAP8[$10>>0] = $907; + $908 = (_bitshift64Lshr(($817|0),($818|0),6)|0); + $909 = tempRet0; + $910 = $908&255; + $911 = ((($0)) + 6|0); + HEAP8[$911>>0] = $910; + $912 = (_bitshift64Lshr(($817|0),($818|0),14)|0); + $913 = tempRet0; + $914 = (_bitshift64Shl(($825|0),($826|0),7)|0); + $915 = tempRet0; + $916 = $914 | $912; + $915 | $913; + $917 = $916&255; + HEAP8[$16>>0] = $917; + $918 = (_bitshift64Lshr(($825|0),($826|0),1)|0); + $919 = tempRet0; + $920 = $918&255; + $921 = ((($0)) + 8|0); + HEAP8[$921>>0] = $920; + $922 = (_bitshift64Lshr(($825|0),($826|0),9)|0); + $923 = tempRet0; + $924 = $922&255; + $925 = ((($0)) + 9|0); + HEAP8[$925>>0] = $924; + $926 = (_bitshift64Lshr(($825|0),($826|0),17)|0); + $927 = tempRet0; + $928 = (_bitshift64Shl(($833|0),($834|0),4)|0); + $929 = tempRet0; + $930 = $928 | $926; + $929 | $927; + $931 = $930&255; + HEAP8[$22>>0] = $931; + $932 = (_bitshift64Lshr(($833|0),($834|0),4)|0); + $933 = tempRet0; + $934 = $932&255; + $935 = ((($0)) + 11|0); + HEAP8[$935>>0] = $934; + $936 = (_bitshift64Lshr(($833|0),($834|0),12)|0); + $937 = tempRet0; + $938 = $936&255; + $939 = ((($0)) + 12|0); + HEAP8[$939>>0] = $938; + $940 = (_bitshift64Lshr(($833|0),($834|0),20)|0); + $941 = tempRet0; + $942 = (_bitshift64Shl(($841|0),($842|0),1)|0); + $943 = tempRet0; + $944 = $942 | $940; + $943 | $941; + $945 = $944&255; + HEAP8[$28>>0] = $945; + $946 = (_bitshift64Lshr(($841|0),($842|0),7)|0); + $947 = tempRet0; + $948 = $946&255; + $949 = ((($0)) + 14|0); + HEAP8[$949>>0] = $948; + $950 = (_bitshift64Lshr(($841|0),($842|0),15)|0); + $951 = tempRet0; + $952 = (_bitshift64Shl(($849|0),($850|0),6)|0); + $953 = tempRet0; + $954 = $952 | $950; + $953 | $951; + $955 = $954&255; + HEAP8[$34>>0] = $955; + $956 = (_bitshift64Lshr(($849|0),($850|0),2)|0); + $957 = tempRet0; + $958 = $956&255; + $959 = ((($0)) + 16|0); + HEAP8[$959>>0] = $958; + $960 = (_bitshift64Lshr(($849|0),($850|0),10)|0); + $961 = tempRet0; + $962 = $960&255; + $963 = ((($0)) + 17|0); + HEAP8[$963>>0] = $962; + $964 = (_bitshift64Lshr(($849|0),($850|0),18)|0); + $965 = tempRet0; + $966 = (_bitshift64Shl(($857|0),($858|0),3)|0); + $967 = tempRet0; + $968 = $966 | $964; + $967 | $965; + $969 = $968&255; + HEAP8[$40>>0] = $969; + $970 = (_bitshift64Lshr(($857|0),($858|0),5)|0); + $971 = tempRet0; + $972 = $970&255; + $973 = ((($0)) + 19|0); + HEAP8[$973>>0] = $972; + $974 = (_bitshift64Lshr(($857|0),($858|0),13)|0); + $975 = tempRet0; + $976 = $974&255; + $977 = ((($0)) + 20|0); + HEAP8[$977>>0] = $976; + $978 = $865&255; + HEAP8[$46>>0] = $978; + $979 = (_bitshift64Lshr(($865|0),($866|0),8)|0); + $980 = tempRet0; + $981 = $979&255; + $982 = ((($0)) + 22|0); + HEAP8[$982>>0] = $981; + $983 = (_bitshift64Lshr(($865|0),($866|0),16)|0); + $984 = tempRet0; + $985 = (_bitshift64Shl(($873|0),($874|0),5)|0); + $986 = tempRet0; + $987 = $985 | $983; + $986 | $984; + $988 = $987&255; + HEAP8[$50>>0] = $988; + $989 = (_bitshift64Lshr(($873|0),($874|0),3)|0); + $990 = tempRet0; + $991 = $989&255; + $992 = ((($0)) + 24|0); + HEAP8[$992>>0] = $991; + $993 = (_bitshift64Lshr(($873|0),($874|0),11)|0); + $994 = tempRet0; + $995 = $993&255; + $996 = ((($0)) + 25|0); + HEAP8[$996>>0] = $995; + $997 = (_bitshift64Lshr(($873|0),($874|0),19)|0); + $998 = tempRet0; + $999 = (_bitshift64Shl(($881|0),($882|0),2)|0); + $1000 = tempRet0; + $1001 = $999 | $997; + $1000 | $998; + $1002 = $1001&255; + HEAP8[$56>>0] = $1002; + $1003 = (_bitshift64Lshr(($881|0),($882|0),6)|0); + $1004 = tempRet0; + $1005 = $1003&255; + $1006 = ((($0)) + 27|0); + HEAP8[$1006>>0] = $1005; + $1007 = (_bitshift64Lshr(($881|0),($882|0),14)|0); + $1008 = tempRet0; + $1009 = (_bitshift64Shl(($877|0),($878|0),7)|0); + $1010 = tempRet0; + $1011 = $1007 | $1009; + $1008 | $1010; + $1012 = $1011&255; + HEAP8[$62>>0] = $1012; + $1013 = (_bitshift64Lshr(($877|0),($878|0),1)|0); + $1014 = tempRet0; + $1015 = $1013&255; + $1016 = ((($0)) + 29|0); + HEAP8[$1016>>0] = $1015; + $1017 = (_bitshift64Lshr(($877|0),($878|0),9)|0); + $1018 = tempRet0; + $1019 = $1017&255; + $1020 = ((($0)) + 30|0); + HEAP8[$1020>>0] = $1019; + $1021 = (_bitshift64Lshr(($877|0),($878|0),17)|0); + $1022 = tempRet0; + $1023 = $1021&255; + HEAP8[$68>>0] = $1023; return; } -function _load_351($in) { - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; +function _load_3_51($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP8[$in>>0]|0; - $1 = $0&255; - $2 = ((($in)) + 1|0); - $3 = HEAP8[$2>>0]|0; - $4 = $3&255; - $5 = (_bitshift64Shl(($4|0),0,8)|0); - $6 = tempRet0; - $7 = $5 | $1; - $8 = ((($in)) + 2|0); - $9 = HEAP8[$8>>0]|0; - $10 = $9&255; - $11 = (_bitshift64Shl(($10|0),0,16)|0); - $12 = tempRet0; - $13 = $7 | $11; - $14 = $6 | $12; - tempRet0 = ($14); - return ($13|0); -} -function _load_452($in) { - $in = $in|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = ((($0)) + 1|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = (_bitshift64Shl(($5|0),0,8)|0); + $7 = tempRet0; + $8 = $6 | $2; + $9 = ((($0)) + 2|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = (_bitshift64Shl(($11|0),0,16)|0); + $13 = tempRet0; + $14 = $8 | $12; + $15 = $7 | $13; + tempRet0 = ($15); + return ($14|0); +} +function _load_4_52($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0; var $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = HEAP8[$in>>0]|0; - $1 = $0&255; - $2 = ((($in)) + 1|0); - $3 = HEAP8[$2>>0]|0; - $4 = $3&255; - $5 = (_bitshift64Shl(($4|0),0,8)|0); - $6 = tempRet0; - $7 = $5 | $1; - $8 = ((($in)) + 2|0); - $9 = HEAP8[$8>>0]|0; - $10 = $9&255; - $11 = (_bitshift64Shl(($10|0),0,16)|0); - $12 = tempRet0; - $13 = $7 | $11; - $14 = $6 | $12; - $15 = ((($in)) + 3|0); - $16 = HEAP8[$15>>0]|0; - $17 = $16&255; - $18 = (_bitshift64Shl(($17|0),0,24)|0); - $19 = tempRet0; - $20 = $13 | $18; + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = ((($0)) + 1|0); + $4 = HEAP8[$3>>0]|0; + $5 = $4&255; + $6 = (_bitshift64Shl(($5|0),0,8)|0); + $7 = tempRet0; + $8 = $6 | $2; + $9 = ((($0)) + 2|0); + $10 = HEAP8[$9>>0]|0; + $11 = $10&255; + $12 = (_bitshift64Shl(($11|0),0,16)|0); + $13 = tempRet0; + $14 = $8 | $12; + $15 = $7 | $13; + $16 = ((($0)) + 3|0); + $17 = HEAP8[$16>>0]|0; + $18 = $17&255; + $19 = (_bitshift64Shl(($18|0),0,24)|0); + $20 = tempRet0; $21 = $14 | $19; - tempRet0 = ($21); - return ($20|0); + $22 = $15 | $20; + tempRet0 = ($22); + return ($21|0); } -function _sph_sha512_init($cc) { - $cc = $cc|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; +function _sph_sha512_init($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, dest = 0, label = 0, sp = 0, src = 0, stop = 0; sp = STACKTOP; - $0 = ((($cc)) + 128|0); - dest=$0; src=8; stop=dest+64|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); - $1 = ((($cc)) + 192|0); - $2 = $1; + $1 = ((($0)) + 128|0); + dest=$1; src=8; stop=dest+64|0; do { HEAP32[dest>>2]=HEAP32[src>>2]|0; dest=dest+4|0; src=src+4|0; } while ((dest|0) < (stop|0)); + $2 = ((($0)) + 192|0); $3 = $2; - HEAP32[$3>>2] = 0; - $4 = (($2) + 4)|0; - $5 = $4; - HEAP32[$5>>2] = 0; + $4 = $3; + HEAP32[$4>>2] = 0; + $5 = (($3) + 4)|0; + $6 = $5; + HEAP32[$6>>2] = 0; return; } -function _sph_sha384($cc,$data,$len) { - $cc = $cc|0; - $data = $data|0; - $len = $len|0; - var $$01$ = 0, $$012 = 0, $$03 = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0; - var $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $current$04 = 0, $current$1 = 0, label = 0, sp = 0; +function _sph_sha384($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $$02631 = 0, $$02730 = 0, $$028$ = 0, $$02829 = 0, $$1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0; + var $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = ((($cc)) + 192|0); - $1 = ($len|0)==(0); - if ($1) { + $3 = ((($0)) + 192|0); + $4 = ($2|0)==(0); + if ($4) { return; } - $2 = $0; - $3 = $2; - $4 = HEAP32[$3>>2]|0; - $5 = (($2) + 4)|0; + $5 = $3; $6 = $5; $7 = HEAP32[$6>>2]|0; - $8 = $4 & 127; - $9 = ((($cc)) + 128|0); - $$012 = $len;$$03 = $data;$current$04 = $8; + $8 = (($5) + 4)|0; + $9 = $8; + $10 = HEAP32[$9>>2]|0; + $11 = $7 & 127; + $12 = ((($0)) + 128|0); + $$02631 = $11;$$02730 = $1;$$02829 = $2; while(1) { - $10 = (128 - ($current$04))|0; - $11 = ($10>>>0)>($$012>>>0); - $$01$ = $11 ? $$012 : $10; - $12 = (($cc) + ($current$04)|0); - _memcpy(($12|0),($$03|0),($$01$|0))|0; - $13 = (($$03) + ($$01$)|0); - $14 = (($$01$) + ($current$04))|0; - $15 = (($$012) - ($$01$))|0; - $16 = ($14|0)==(128); - if ($16) { - _sha3_round($cc,$9); - $current$1 = 0; + $13 = (128 - ($$02631))|0; + $14 = ($13>>>0)>($$02829>>>0); + $$028$ = $14 ? $$02829 : $13; + $15 = (($0) + ($$02631)|0); + _memcpy(($15|0),($$02730|0),($$028$|0))|0; + $16 = (($$02730) + ($$028$)|0); + $17 = (($$028$) + ($$02631))|0; + $18 = (($$02829) - ($$028$))|0; + $19 = ($17|0)==(128); + if ($19) { + _sha3_round($0,$12); + $$1 = 0; } else { - $current$1 = $14; + $$1 = $17; } - $17 = $0; - $18 = $17; - $19 = HEAP32[$18>>2]|0; - $20 = (($17) + 4)|0; + $20 = $3; $21 = $20; $22 = HEAP32[$21>>2]|0; - $23 = (_i64Add(($19|0),($22|0),($$01$|0),0)|0); - $24 = tempRet0; - $25 = $0; - $26 = $25; - HEAP32[$26>>2] = $23; - $27 = (($25) + 4)|0; - $28 = $27; - HEAP32[$28>>2] = $24; - $29 = ($$012|0)==($$01$|0); - if ($29) { + $23 = (($20) + 4)|0; + $24 = $23; + $25 = HEAP32[$24>>2]|0; + $26 = (_i64Add(($22|0),($25|0),($$028$|0),0)|0); + $27 = tempRet0; + $28 = $3; + $29 = $28; + HEAP32[$29>>2] = $26; + $30 = (($28) + 4)|0; + $31 = $30; + HEAP32[$31>>2] = $27; + $32 = ($18|0)==(0); + if ($32) { break; } else { - $$012 = $15;$$03 = $13;$current$04 = $current$1; + $$02631 = $$1;$$02730 = $16;$$02829 = $18; } } return; } -function _sph_sha512_close($cc,$dst) { - $cc = $cc|0; - $dst = $dst|0; - var label = 0, sp = 0; - sp = STACKTOP; - _sha384_close($cc,$dst,8); - _sph_sha512_init($cc); - return; -} -function _sha3_round($data,$r) { - $data = $data|0; - $r = $r|0; - var $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0; - var $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0; - var $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0; - var $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0; - var $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0; - var $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0; - var $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0; - var $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0; - var $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0; - var $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0; - var $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0; - var $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0; - var $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0; - var $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0; - var $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0; - var $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0; - var $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0; - var $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0; - var $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0; - var $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0; - var $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0; - var $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0; - var $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0; - var $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0; - var $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0; - var $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0; - var $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0; - var $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0; - var $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0; - var $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0; - var $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0; - var $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0; - var $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0; - var $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0; - var $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0; - var $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0; - var $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0; - var $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0; - var $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0; - var $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0; - var $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0; - var $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0; - var $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0; - var $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0; - var $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0; - var $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0; - var $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0; - var $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0; - var $963 = 0, $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $98 = 0, $99 = 0, $W = 0, $exitcond = 0, $exitcond19 = 0, $i$011 = 0, $i$110 = 0, $i$29 = 0, label = 0, sp = 0; +function _sha3_round($0,$1) { + $0 = $0|0; + $1 = $1|0; + var $$0344 = 0, $$1343 = 0, $$2342 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0; + var $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0; + var $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0; + var $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0; + var $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0; + var $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0; + var $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0; + var $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0; + var $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0; + var $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0; + var $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0; + var $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0; + var $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0; + var $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0; + var $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0; + var $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0; + var $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0; + var $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0; + var $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0; + var $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0; + var $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0; + var $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0; + var $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0; + var $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0; + var $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0; + var $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0; + var $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0; + var $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0; + var $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0; + var $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0; + var $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0; + var $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0; + var $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0; + var $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0; + var $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0; + var $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0; + var $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0; + var $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0; + var $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0; + var $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0; + var $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0; + var $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0; + var $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0; + var $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0; + var $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0; + var $908 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $exitcond = 0, $exitcond352 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 640|0; - $W = sp; - $i$011 = 0; + $2 = sp; + $$0344 = 0; while(1) { - $0 = $i$011 << 3; - $1 = (($data) + ($0)|0); - $2 = (_sph_dec64be_aligned($1)|0); - $3 = tempRet0; - $4 = (($W) + ($i$011<<3)|0); - $5 = $4; - $6 = $5; - HEAP32[$6>>2] = $2; - $7 = (($5) + 4)|0; + $3 = $$0344 << 3; + $4 = (($0) + ($3)|0); + $5 = (_sph_dec64be_aligned($4)|0); + $6 = tempRet0; + $7 = (($2) + ($$0344<<3)|0); $8 = $7; - HEAP32[$8>>2] = $3; - $9 = (($i$011) + 1)|0; - $exitcond19 = ($9|0)==(16); - if ($exitcond19) { - $i$110 = 16; + $9 = $8; + HEAP32[$9>>2] = $5; + $10 = (($8) + 4)|0; + $11 = $10; + HEAP32[$11>>2] = $6; + $12 = (($$0344) + 1)|0; + $exitcond352 = ($12|0)==(16); + if ($exitcond352) { + $$1343 = 16; break; } else { - $i$011 = $9; + $$0344 = $12; } } while(1) { - $10 = (($i$110) + -2)|0; - $11 = (($W) + ($10<<3)|0); - $12 = $11; - $13 = $12; - $14 = HEAP32[$13>>2]|0; - $15 = (($12) + 4)|0; + $13 = (($$1343) + -2)|0; + $14 = (($2) + ($13<<3)|0); + $15 = $14; $16 = $15; $17 = HEAP32[$16>>2]|0; - $18 = (_bitshift64Shl(($14|0),($17|0),45)|0); - $19 = tempRet0; - $20 = (_bitshift64Lshr(($14|0),($17|0),19)|0); - $21 = tempRet0; - $22 = $18 | $20; - $23 = $19 | $21; - $24 = (_bitshift64Shl(($14|0),($17|0),3)|0); - $25 = tempRet0; - $26 = (_bitshift64Lshr(($14|0),($17|0),61)|0); - $27 = tempRet0; - $28 = $24 | $26; - $29 = $25 | $27; - $30 = (_bitshift64Lshr(($14|0),($17|0),6)|0); - $31 = tempRet0; - $32 = $28 ^ $30; - $33 = $29 ^ $31; - $34 = $32 ^ $22; - $35 = $33 ^ $23; - $36 = (($i$110) + -7)|0; - $37 = (($W) + ($36<<3)|0); - $38 = $37; - $39 = $38; - $40 = HEAP32[$39>>2]|0; - $41 = (($38) + 4)|0; + $18 = (($15) + 4)|0; + $19 = $18; + $20 = HEAP32[$19>>2]|0; + $21 = (_bitshift64Shl(($17|0),($20|0),45)|0); + $22 = tempRet0; + $23 = (_bitshift64Lshr(($17|0),($20|0),19)|0); + $24 = tempRet0; + $25 = $21 | $23; + $26 = $22 | $24; + $27 = (_bitshift64Shl(($17|0),($20|0),3)|0); + $28 = tempRet0; + $29 = (_bitshift64Lshr(($17|0),($20|0),61)|0); + $30 = tempRet0; + $31 = $27 | $29; + $32 = $28 | $30; + $33 = (_bitshift64Lshr(($17|0),($20|0),6)|0); + $34 = tempRet0; + $35 = $31 ^ $33; + $36 = $32 ^ $34; + $37 = $35 ^ $25; + $38 = $36 ^ $26; + $39 = (($$1343) + -7)|0; + $40 = (($2) + ($39<<3)|0); + $41 = $40; $42 = $41; $43 = HEAP32[$42>>2]|0; - $44 = (($i$110) + -15)|0; - $45 = (($W) + ($44<<3)|0); - $46 = $45; - $47 = $46; - $48 = HEAP32[$47>>2]|0; - $49 = (($46) + 4)|0; + $44 = (($41) + 4)|0; + $45 = $44; + $46 = HEAP32[$45>>2]|0; + $47 = (($$1343) + -15)|0; + $48 = (($2) + ($47<<3)|0); + $49 = $48; $50 = $49; $51 = HEAP32[$50>>2]|0; - $52 = (_bitshift64Shl(($48|0),($51|0),63)|0); - $53 = tempRet0; - $54 = (_bitshift64Lshr(($48|0),($51|0),1)|0); - $55 = tempRet0; - $56 = $52 | $54; - $57 = $53 | $55; - $58 = (_bitshift64Shl(($48|0),($51|0),56)|0); - $59 = tempRet0; - $60 = (_bitshift64Lshr(($48|0),($51|0),8)|0); - $61 = tempRet0; - $62 = $58 | $60; - $63 = $59 | $61; - $64 = (_bitshift64Lshr(($48|0),($51|0),7)|0); - $65 = tempRet0; - $66 = $62 ^ $64; - $67 = $63 ^ $65; - $68 = $66 ^ $56; - $69 = $67 ^ $57; - $70 = (($i$110) + -16)|0; - $71 = (($W) + ($70<<3)|0); - $72 = $71; - $73 = $72; - $74 = HEAP32[$73>>2]|0; - $75 = (($72) + 4)|0; + $52 = (($49) + 4)|0; + $53 = $52; + $54 = HEAP32[$53>>2]|0; + $55 = (_bitshift64Shl(($51|0),($54|0),63)|0); + $56 = tempRet0; + $57 = (_bitshift64Lshr(($51|0),($54|0),1)|0); + $58 = tempRet0; + $59 = $55 | $57; + $60 = $56 | $58; + $61 = (_bitshift64Shl(($51|0),($54|0),56)|0); + $62 = tempRet0; + $63 = (_bitshift64Lshr(($51|0),($54|0),8)|0); + $64 = tempRet0; + $65 = $61 | $63; + $66 = $62 | $64; + $67 = (_bitshift64Lshr(($51|0),($54|0),7)|0); + $68 = tempRet0; + $69 = $65 ^ $67; + $70 = $66 ^ $68; + $71 = $69 ^ $59; + $72 = $70 ^ $60; + $73 = (($$1343) + -16)|0; + $74 = (($2) + ($73<<3)|0); + $75 = $74; $76 = $75; $77 = HEAP32[$76>>2]|0; - $78 = (_i64Add(($74|0),($77|0),($40|0),($43|0))|0); - $79 = tempRet0; - $80 = (_i64Add(($78|0),($79|0),($34|0),($35|0))|0); - $81 = tempRet0; - $82 = (_i64Add(($80|0),($81|0),($68|0),($69|0))|0); - $83 = tempRet0; - $84 = (($W) + ($i$110<<3)|0); - $85 = $84; - $86 = $85; - HEAP32[$86>>2] = $82; - $87 = (($85) + 4)|0; + $78 = (($75) + 4)|0; + $79 = $78; + $80 = HEAP32[$79>>2]|0; + $81 = (_i64Add(($77|0),($80|0),($43|0),($46|0))|0); + $82 = tempRet0; + $83 = (_i64Add(($81|0),($82|0),($37|0),($38|0))|0); + $84 = tempRet0; + $85 = (_i64Add(($83|0),($84|0),($71|0),($72|0))|0); + $86 = tempRet0; + $87 = (($2) + ($$1343<<3)|0); $88 = $87; - HEAP32[$88>>2] = $83; - $89 = (($i$110) + 1)|0; - $exitcond = ($89|0)==(80); + $89 = $88; + HEAP32[$89>>2] = $85; + $90 = (($88) + 4)|0; + $91 = $90; + HEAP32[$91>>2] = $86; + $92 = (($$1343) + 1)|0; + $exitcond = ($92|0)==(80); if ($exitcond) { break; } else { - $i$110 = $89; + $$1343 = $92; } } - $90 = $r; - $91 = $90; - $92 = HEAP32[$91>>2]|0; - $93 = (($90) + 4)|0; + $93 = $1; $94 = $93; $95 = HEAP32[$94>>2]|0; - $96 = ((($r)) + 8|0); + $96 = (($93) + 4)|0; $97 = $96; - $98 = $97; - $99 = HEAP32[$98>>2]|0; - $100 = (($97) + 4)|0; + $98 = HEAP32[$97>>2]|0; + $99 = ((($1)) + 8|0); + $100 = $99; $101 = $100; $102 = HEAP32[$101>>2]|0; - $103 = ((($r)) + 16|0); + $103 = (($100) + 4)|0; $104 = $103; - $105 = $104; - $106 = HEAP32[$105>>2]|0; - $107 = (($104) + 4)|0; + $105 = HEAP32[$104>>2]|0; + $106 = ((($1)) + 16|0); + $107 = $106; $108 = $107; $109 = HEAP32[$108>>2]|0; - $110 = ((($r)) + 24|0); + $110 = (($107) + 4)|0; $111 = $110; - $112 = $111; - $113 = HEAP32[$112>>2]|0; - $114 = (($111) + 4)|0; + $112 = HEAP32[$111>>2]|0; + $113 = ((($1)) + 24|0); + $114 = $113; $115 = $114; $116 = HEAP32[$115>>2]|0; - $117 = ((($r)) + 32|0); + $117 = (($114) + 4)|0; $118 = $117; - $119 = $118; - $120 = HEAP32[$119>>2]|0; - $121 = (($118) + 4)|0; + $119 = HEAP32[$118>>2]|0; + $120 = ((($1)) + 32|0); + $121 = $120; $122 = $121; $123 = HEAP32[$122>>2]|0; - $124 = ((($r)) + 40|0); + $124 = (($121) + 4)|0; $125 = $124; - $126 = $125; - $127 = HEAP32[$126>>2]|0; - $128 = (($125) + 4)|0; + $126 = HEAP32[$125>>2]|0; + $127 = ((($1)) + 40|0); + $128 = $127; $129 = $128; $130 = HEAP32[$129>>2]|0; - $131 = ((($r)) + 48|0); + $131 = (($128) + 4)|0; $132 = $131; - $133 = $132; - $134 = HEAP32[$133>>2]|0; - $135 = (($132) + 4)|0; + $133 = HEAP32[$132>>2]|0; + $134 = ((($1)) + 48|0); + $135 = $134; $136 = $135; $137 = HEAP32[$136>>2]|0; - $138 = ((($r)) + 56|0); + $138 = (($135) + 4)|0; $139 = $138; - $140 = $139; - $141 = HEAP32[$140>>2]|0; - $142 = (($139) + 4)|0; + $140 = HEAP32[$139>>2]|0; + $141 = ((($1)) + 56|0); + $142 = $141; $143 = $142; $144 = HEAP32[$143>>2]|0; - $145 = $120;$146 = $123;$170 = $127;$171 = $134;$173 = $130;$174 = $137;$193 = $141;$194 = $144;$203 = $92;$204 = $95;$228 = $99;$230 = $102;$234 = $106;$236 = $109;$241 = $113;$242 = $116;$i$29 = 0; + $145 = (($142) + 4)|0; + $146 = $145; + $147 = HEAP32[$146>>2]|0; + $$2342 = 0;$148 = $123;$149 = $126;$173 = $130;$174 = $137;$176 = $133;$177 = $140;$196 = $144;$197 = $147;$206 = $95;$207 = $98;$231 = $102;$233 = $105;$237 = $109;$239 = $112;$244 = $116;$245 = $119; while(1) { - $147 = (_bitshift64Shl(($145|0),($146|0),50)|0); - $148 = tempRet0; - $149 = (_bitshift64Lshr(($145|0),($146|0),14)|0); - $150 = tempRet0; - $151 = $147 | $149; - $152 = $148 | $150; - $153 = (_bitshift64Shl(($145|0),($146|0),46)|0); - $154 = tempRet0; - $155 = (_bitshift64Lshr(($145|0),($146|0),18)|0); - $156 = tempRet0; - $157 = $153 | $155; - $158 = $154 | $156; - $159 = $151 ^ $157; - $160 = $152 ^ $158; - $161 = (_bitshift64Shl(($145|0),($146|0),23)|0); - $162 = tempRet0; - $163 = (_bitshift64Lshr(($145|0),($146|0),41)|0); - $164 = tempRet0; - $165 = $161 | $163; - $166 = $162 | $164; - $167 = $159 ^ $165; - $168 = $160 ^ $166; - $169 = $170 ^ $171; + $150 = (_bitshift64Shl(($148|0),($149|0),50)|0); + $151 = tempRet0; + $152 = (_bitshift64Lshr(($148|0),($149|0),14)|0); + $153 = tempRet0; + $154 = $150 | $152; + $155 = $151 | $153; + $156 = (_bitshift64Shl(($148|0),($149|0),46)|0); + $157 = tempRet0; + $158 = (_bitshift64Lshr(($148|0),($149|0),18)|0); + $159 = tempRet0; + $160 = $156 | $158; + $161 = $157 | $159; + $162 = $154 ^ $160; + $163 = $155 ^ $161; + $164 = (_bitshift64Shl(($148|0),($149|0),23)|0); + $165 = tempRet0; + $166 = (_bitshift64Lshr(($148|0),($149|0),41)|0); + $167 = tempRet0; + $168 = $164 | $166; + $169 = $165 | $167; + $170 = $162 ^ $168; + $171 = $163 ^ $169; $172 = $173 ^ $174; - $175 = $169 & $145; - $176 = $172 & $146; - $177 = $175 ^ $171; - $178 = $176 ^ $174; - $179 = (72 + ($i$29<<3)|0); - $180 = $179; - $181 = $180; - $182 = HEAP32[$181>>2]|0; - $183 = (($180) + 4)|0; + $175 = $176 ^ $177; + $178 = $172 & $148; + $179 = $175 & $149; + $180 = $178 ^ $174; + $181 = $179 ^ $177; + $182 = (72 + ($$2342<<3)|0); + $183 = $182; $184 = $183; $185 = HEAP32[$184>>2]|0; - $186 = (($W) + ($i$29<<3)|0); + $186 = (($183) + 4)|0; $187 = $186; - $188 = $187; - $189 = HEAP32[$188>>2]|0; - $190 = (($187) + 4)|0; + $188 = HEAP32[$187>>2]|0; + $189 = (($2) + ($$2342<<3)|0); + $190 = $189; $191 = $190; $192 = HEAP32[$191>>2]|0; - $195 = (_i64Add(($177|0),($178|0),($193|0),($194|0))|0); - $196 = tempRet0; - $197 = (_i64Add(($195|0),($196|0),($167|0),($168|0))|0); - $198 = tempRet0; - $199 = (_i64Add(($197|0),($198|0),($182|0),($185|0))|0); - $200 = tempRet0; - $201 = (_i64Add(($199|0),($200|0),($189|0),($192|0))|0); - $202 = tempRet0; - $205 = (_bitshift64Shl(($203|0),($204|0),36)|0); - $206 = tempRet0; - $207 = (_bitshift64Lshr(($203|0),($204|0),28)|0); - $208 = tempRet0; - $209 = $205 | $207; - $210 = $206 | $208; - $211 = (_bitshift64Shl(($203|0),($204|0),30)|0); - $212 = tempRet0; - $213 = (_bitshift64Lshr(($203|0),($204|0),34)|0); - $214 = tempRet0; - $215 = $211 | $213; - $216 = $212 | $214; - $217 = $209 ^ $215; - $218 = $210 ^ $216; - $219 = (_bitshift64Shl(($203|0),($204|0),25)|0); - $220 = tempRet0; - $221 = (_bitshift64Lshr(($203|0),($204|0),39)|0); - $222 = tempRet0; - $223 = $219 | $221; - $224 = $220 | $222; - $225 = $217 ^ $223; - $226 = $218 ^ $224; - $227 = $203 & $228; - $229 = $204 & $230; - $231 = $203 | $228; - $232 = $204 | $230; - $233 = $231 & $234; - $235 = $232 & $236; - $237 = $233 | $227; - $238 = $235 | $229; - $239 = (_i64Add(($225|0),($226|0),($237|0),($238|0))|0); - $240 = tempRet0; - $243 = (_i64Add(($201|0),($202|0),($241|0),($242|0))|0); - $244 = tempRet0; - $245 = (_i64Add(($239|0),($240|0),($201|0),($202|0))|0); - $246 = tempRet0; - $247 = (_bitshift64Shl(($243|0),($244|0),50)|0); - $248 = tempRet0; - $249 = (_bitshift64Lshr(($243|0),($244|0),14)|0); - $250 = tempRet0; - $251 = $247 | $249; - $252 = $248 | $250; - $253 = (_bitshift64Shl(($243|0),($244|0),46)|0); - $254 = tempRet0; - $255 = (_bitshift64Lshr(($243|0),($244|0),18)|0); - $256 = tempRet0; - $257 = $253 | $255; - $258 = $254 | $256; - $259 = $251 ^ $257; - $260 = $252 ^ $258; - $261 = (_bitshift64Shl(($243|0),($244|0),23)|0); - $262 = tempRet0; - $263 = (_bitshift64Lshr(($243|0),($244|0),41)|0); - $264 = tempRet0; - $265 = $261 | $263; - $266 = $262 | $264; - $267 = $259 ^ $265; - $268 = $260 ^ $266; - $269 = $145 ^ $170; - $270 = $146 ^ $173; - $271 = $243 & $269; - $272 = $244 & $270; - $273 = $271 ^ $170; - $274 = $272 ^ $173; - $275 = $i$29 | 1; - $276 = (72 + ($275<<3)|0); - $277 = $276; - $278 = $277; - $279 = HEAP32[$278>>2]|0; - $280 = (($277) + 4)|0; + $193 = (($190) + 4)|0; + $194 = $193; + $195 = HEAP32[$194>>2]|0; + $198 = (_i64Add(($180|0),($181|0),($196|0),($197|0))|0); + $199 = tempRet0; + $200 = (_i64Add(($198|0),($199|0),($170|0),($171|0))|0); + $201 = tempRet0; + $202 = (_i64Add(($200|0),($201|0),($185|0),($188|0))|0); + $203 = tempRet0; + $204 = (_i64Add(($202|0),($203|0),($192|0),($195|0))|0); + $205 = tempRet0; + $208 = (_bitshift64Shl(($206|0),($207|0),36)|0); + $209 = tempRet0; + $210 = (_bitshift64Lshr(($206|0),($207|0),28)|0); + $211 = tempRet0; + $212 = $208 | $210; + $213 = $209 | $211; + $214 = (_bitshift64Shl(($206|0),($207|0),30)|0); + $215 = tempRet0; + $216 = (_bitshift64Lshr(($206|0),($207|0),34)|0); + $217 = tempRet0; + $218 = $214 | $216; + $219 = $215 | $217; + $220 = $212 ^ $218; + $221 = $213 ^ $219; + $222 = (_bitshift64Shl(($206|0),($207|0),25)|0); + $223 = tempRet0; + $224 = (_bitshift64Lshr(($206|0),($207|0),39)|0); + $225 = tempRet0; + $226 = $222 | $224; + $227 = $223 | $225; + $228 = $220 ^ $226; + $229 = $221 ^ $227; + $230 = $206 & $231; + $232 = $207 & $233; + $234 = $206 | $231; + $235 = $207 | $233; + $236 = $234 & $237; + $238 = $235 & $239; + $240 = $236 | $230; + $241 = $238 | $232; + $242 = (_i64Add(($228|0),($229|0),($240|0),($241|0))|0); + $243 = tempRet0; + $246 = (_i64Add(($204|0),($205|0),($244|0),($245|0))|0); + $247 = tempRet0; + $248 = (_i64Add(($242|0),($243|0),($204|0),($205|0))|0); + $249 = tempRet0; + $250 = (_bitshift64Shl(($246|0),($247|0),50)|0); + $251 = tempRet0; + $252 = (_bitshift64Lshr(($246|0),($247|0),14)|0); + $253 = tempRet0; + $254 = $250 | $252; + $255 = $251 | $253; + $256 = (_bitshift64Shl(($246|0),($247|0),46)|0); + $257 = tempRet0; + $258 = (_bitshift64Lshr(($246|0),($247|0),18)|0); + $259 = tempRet0; + $260 = $256 | $258; + $261 = $257 | $259; + $262 = $254 ^ $260; + $263 = $255 ^ $261; + $264 = (_bitshift64Shl(($246|0),($247|0),23)|0); + $265 = tempRet0; + $266 = (_bitshift64Lshr(($246|0),($247|0),41)|0); + $267 = tempRet0; + $268 = $264 | $266; + $269 = $265 | $267; + $270 = $262 ^ $268; + $271 = $263 ^ $269; + $272 = $148 ^ $173; + $273 = $149 ^ $176; + $274 = $246 & $272; + $275 = $247 & $273; + $276 = $274 ^ $173; + $277 = $275 ^ $176; + $278 = $$2342 | 1; + $279 = (72 + ($278<<3)|0); + $280 = $279; $281 = $280; $282 = HEAP32[$281>>2]|0; - $283 = (($W) + ($275<<3)|0); + $283 = (($280) + 4)|0; $284 = $283; - $285 = $284; - $286 = HEAP32[$285>>2]|0; - $287 = (($284) + 4)|0; + $285 = HEAP32[$284>>2]|0; + $286 = (($2) + ($278<<3)|0); + $287 = $286; $288 = $287; $289 = HEAP32[$288>>2]|0; - $290 = (_i64Add(($279|0),($282|0),($171|0),($174|0))|0); - $291 = tempRet0; - $292 = (_i64Add(($290|0),($291|0),($286|0),($289|0))|0); - $293 = tempRet0; - $294 = (_i64Add(($292|0),($293|0),($273|0),($274|0))|0); - $295 = tempRet0; - $296 = (_i64Add(($294|0),($295|0),($267|0),($268|0))|0); - $297 = tempRet0; - $298 = (_bitshift64Shl(($245|0),($246|0),36)|0); - $299 = tempRet0; - $300 = (_bitshift64Lshr(($245|0),($246|0),28)|0); - $301 = tempRet0; - $302 = $298 | $300; - $303 = $299 | $301; - $304 = (_bitshift64Shl(($245|0),($246|0),30)|0); - $305 = tempRet0; - $306 = (_bitshift64Lshr(($245|0),($246|0),34)|0); - $307 = tempRet0; - $308 = $304 | $306; - $309 = $305 | $307; - $310 = $302 ^ $308; - $311 = $303 ^ $309; - $312 = (_bitshift64Shl(($245|0),($246|0),25)|0); - $313 = tempRet0; - $314 = (_bitshift64Lshr(($245|0),($246|0),39)|0); - $315 = tempRet0; - $316 = $312 | $314; - $317 = $313 | $315; - $318 = $310 ^ $316; - $319 = $311 ^ $317; - $320 = $245 & $203; - $321 = $246 & $204; - $322 = $245 | $203; - $323 = $246 | $204; - $324 = $322 & $228; - $325 = $323 & $230; - $326 = $324 | $320; - $327 = $325 | $321; - $328 = (_i64Add(($318|0),($319|0),($326|0),($327|0))|0); - $329 = tempRet0; - $330 = (_i64Add(($296|0),($297|0),($234|0),($236|0))|0); - $331 = tempRet0; - $332 = (_i64Add(($328|0),($329|0),($296|0),($297|0))|0); - $333 = tempRet0; - $334 = (_bitshift64Shl(($330|0),($331|0),50)|0); - $335 = tempRet0; - $336 = (_bitshift64Lshr(($330|0),($331|0),14)|0); - $337 = tempRet0; - $338 = $334 | $336; - $339 = $335 | $337; - $340 = (_bitshift64Shl(($330|0),($331|0),46)|0); - $341 = tempRet0; - $342 = (_bitshift64Lshr(($330|0),($331|0),18)|0); - $343 = tempRet0; - $344 = $340 | $342; - $345 = $341 | $343; - $346 = $338 ^ $344; - $347 = $339 ^ $345; - $348 = (_bitshift64Shl(($330|0),($331|0),23)|0); - $349 = tempRet0; - $350 = (_bitshift64Lshr(($330|0),($331|0),41)|0); - $351 = tempRet0; - $352 = $348 | $350; - $353 = $349 | $351; - $354 = $346 ^ $352; - $355 = $347 ^ $353; - $356 = $243 ^ $145; - $357 = $244 ^ $146; - $358 = $330 & $356; - $359 = $331 & $357; - $360 = $358 ^ $145; - $361 = $359 ^ $146; - $362 = $i$29 | 2; - $363 = (72 + ($362<<3)|0); - $364 = $363; - $365 = $364; - $366 = HEAP32[$365>>2]|0; - $367 = (($364) + 4)|0; + $290 = (($287) + 4)|0; + $291 = $290; + $292 = HEAP32[$291>>2]|0; + $293 = (_i64Add(($282|0),($285|0),($174|0),($177|0))|0); + $294 = tempRet0; + $295 = (_i64Add(($293|0),($294|0),($289|0),($292|0))|0); + $296 = tempRet0; + $297 = (_i64Add(($295|0),($296|0),($276|0),($277|0))|0); + $298 = tempRet0; + $299 = (_i64Add(($297|0),($298|0),($270|0),($271|0))|0); + $300 = tempRet0; + $301 = (_bitshift64Shl(($248|0),($249|0),36)|0); + $302 = tempRet0; + $303 = (_bitshift64Lshr(($248|0),($249|0),28)|0); + $304 = tempRet0; + $305 = $301 | $303; + $306 = $302 | $304; + $307 = (_bitshift64Shl(($248|0),($249|0),30)|0); + $308 = tempRet0; + $309 = (_bitshift64Lshr(($248|0),($249|0),34)|0); + $310 = tempRet0; + $311 = $307 | $309; + $312 = $308 | $310; + $313 = $305 ^ $311; + $314 = $306 ^ $312; + $315 = (_bitshift64Shl(($248|0),($249|0),25)|0); + $316 = tempRet0; + $317 = (_bitshift64Lshr(($248|0),($249|0),39)|0); + $318 = tempRet0; + $319 = $315 | $317; + $320 = $316 | $318; + $321 = $313 ^ $319; + $322 = $314 ^ $320; + $323 = $248 & $206; + $324 = $249 & $207; + $325 = $248 | $206; + $326 = $249 | $207; + $327 = $325 & $231; + $328 = $326 & $233; + $329 = $327 | $323; + $330 = $328 | $324; + $331 = (_i64Add(($321|0),($322|0),($329|0),($330|0))|0); + $332 = tempRet0; + $333 = (_i64Add(($299|0),($300|0),($237|0),($239|0))|0); + $334 = tempRet0; + $335 = (_i64Add(($331|0),($332|0),($299|0),($300|0))|0); + $336 = tempRet0; + $337 = (_bitshift64Shl(($333|0),($334|0),50)|0); + $338 = tempRet0; + $339 = (_bitshift64Lshr(($333|0),($334|0),14)|0); + $340 = tempRet0; + $341 = $337 | $339; + $342 = $338 | $340; + $343 = (_bitshift64Shl(($333|0),($334|0),46)|0); + $344 = tempRet0; + $345 = (_bitshift64Lshr(($333|0),($334|0),18)|0); + $346 = tempRet0; + $347 = $343 | $345; + $348 = $344 | $346; + $349 = $341 ^ $347; + $350 = $342 ^ $348; + $351 = (_bitshift64Shl(($333|0),($334|0),23)|0); + $352 = tempRet0; + $353 = (_bitshift64Lshr(($333|0),($334|0),41)|0); + $354 = tempRet0; + $355 = $351 | $353; + $356 = $352 | $354; + $357 = $349 ^ $355; + $358 = $350 ^ $356; + $359 = $246 ^ $148; + $360 = $247 ^ $149; + $361 = $333 & $359; + $362 = $334 & $360; + $363 = $361 ^ $148; + $364 = $362 ^ $149; + $365 = $$2342 | 2; + $366 = (72 + ($365<<3)|0); + $367 = $366; $368 = $367; $369 = HEAP32[$368>>2]|0; - $370 = (($W) + ($362<<3)|0); + $370 = (($367) + 4)|0; $371 = $370; - $372 = $371; - $373 = HEAP32[$372>>2]|0; - $374 = (($371) + 4)|0; + $372 = HEAP32[$371>>2]|0; + $373 = (($2) + ($365<<3)|0); + $374 = $373; $375 = $374; $376 = HEAP32[$375>>2]|0; - $377 = (_i64Add(($366|0),($369|0),($170|0),($173|0))|0); - $378 = tempRet0; - $379 = (_i64Add(($377|0),($378|0),($373|0),($376|0))|0); - $380 = tempRet0; - $381 = (_i64Add(($379|0),($380|0),($360|0),($361|0))|0); - $382 = tempRet0; - $383 = (_i64Add(($381|0),($382|0),($354|0),($355|0))|0); - $384 = tempRet0; - $385 = (_bitshift64Shl(($332|0),($333|0),36)|0); - $386 = tempRet0; - $387 = (_bitshift64Lshr(($332|0),($333|0),28)|0); - $388 = tempRet0; - $389 = $385 | $387; - $390 = $386 | $388; - $391 = (_bitshift64Shl(($332|0),($333|0),30)|0); - $392 = tempRet0; - $393 = (_bitshift64Lshr(($332|0),($333|0),34)|0); - $394 = tempRet0; - $395 = $391 | $393; - $396 = $392 | $394; - $397 = $389 ^ $395; - $398 = $390 ^ $396; - $399 = (_bitshift64Shl(($332|0),($333|0),25)|0); - $400 = tempRet0; - $401 = (_bitshift64Lshr(($332|0),($333|0),39)|0); - $402 = tempRet0; - $403 = $399 | $401; - $404 = $400 | $402; - $405 = $397 ^ $403; - $406 = $398 ^ $404; - $407 = $332 & $245; - $408 = $333 & $246; - $409 = $332 | $245; - $410 = $333 | $246; - $411 = $409 & $203; - $412 = $410 & $204; - $413 = $411 | $407; - $414 = $412 | $408; - $415 = (_i64Add(($405|0),($406|0),($413|0),($414|0))|0); - $416 = tempRet0; - $417 = (_i64Add(($383|0),($384|0),($228|0),($230|0))|0); - $418 = tempRet0; - $419 = (_i64Add(($415|0),($416|0),($383|0),($384|0))|0); - $420 = tempRet0; - $421 = (_bitshift64Shl(($417|0),($418|0),50)|0); - $422 = tempRet0; - $423 = (_bitshift64Lshr(($417|0),($418|0),14)|0); - $424 = tempRet0; - $425 = $421 | $423; - $426 = $422 | $424; - $427 = (_bitshift64Shl(($417|0),($418|0),46)|0); - $428 = tempRet0; - $429 = (_bitshift64Lshr(($417|0),($418|0),18)|0); - $430 = tempRet0; - $431 = $427 | $429; - $432 = $428 | $430; - $433 = $425 ^ $431; - $434 = $426 ^ $432; - $435 = (_bitshift64Shl(($417|0),($418|0),23)|0); - $436 = tempRet0; - $437 = (_bitshift64Lshr(($417|0),($418|0),41)|0); - $438 = tempRet0; - $439 = $435 | $437; - $440 = $436 | $438; - $441 = $433 ^ $439; - $442 = $434 ^ $440; - $443 = $330 ^ $243; - $444 = $331 ^ $244; - $445 = $417 & $443; - $446 = $418 & $444; - $447 = $445 ^ $243; - $448 = $446 ^ $244; - $449 = $i$29 | 3; - $450 = (72 + ($449<<3)|0); - $451 = $450; - $452 = $451; - $453 = HEAP32[$452>>2]|0; - $454 = (($451) + 4)|0; + $377 = (($374) + 4)|0; + $378 = $377; + $379 = HEAP32[$378>>2]|0; + $380 = (_i64Add(($369|0),($372|0),($173|0),($176|0))|0); + $381 = tempRet0; + $382 = (_i64Add(($380|0),($381|0),($376|0),($379|0))|0); + $383 = tempRet0; + $384 = (_i64Add(($382|0),($383|0),($363|0),($364|0))|0); + $385 = tempRet0; + $386 = (_i64Add(($384|0),($385|0),($357|0),($358|0))|0); + $387 = tempRet0; + $388 = (_bitshift64Shl(($335|0),($336|0),36)|0); + $389 = tempRet0; + $390 = (_bitshift64Lshr(($335|0),($336|0),28)|0); + $391 = tempRet0; + $392 = $388 | $390; + $393 = $389 | $391; + $394 = (_bitshift64Shl(($335|0),($336|0),30)|0); + $395 = tempRet0; + $396 = (_bitshift64Lshr(($335|0),($336|0),34)|0); + $397 = tempRet0; + $398 = $394 | $396; + $399 = $395 | $397; + $400 = $392 ^ $398; + $401 = $393 ^ $399; + $402 = (_bitshift64Shl(($335|0),($336|0),25)|0); + $403 = tempRet0; + $404 = (_bitshift64Lshr(($335|0),($336|0),39)|0); + $405 = tempRet0; + $406 = $402 | $404; + $407 = $403 | $405; + $408 = $400 ^ $406; + $409 = $401 ^ $407; + $410 = $335 & $248; + $411 = $336 & $249; + $412 = $335 | $248; + $413 = $336 | $249; + $414 = $412 & $206; + $415 = $413 & $207; + $416 = $414 | $410; + $417 = $415 | $411; + $418 = (_i64Add(($408|0),($409|0),($416|0),($417|0))|0); + $419 = tempRet0; + $420 = (_i64Add(($386|0),($387|0),($231|0),($233|0))|0); + $421 = tempRet0; + $422 = (_i64Add(($418|0),($419|0),($386|0),($387|0))|0); + $423 = tempRet0; + $424 = (_bitshift64Shl(($420|0),($421|0),50)|0); + $425 = tempRet0; + $426 = (_bitshift64Lshr(($420|0),($421|0),14)|0); + $427 = tempRet0; + $428 = $424 | $426; + $429 = $425 | $427; + $430 = (_bitshift64Shl(($420|0),($421|0),46)|0); + $431 = tempRet0; + $432 = (_bitshift64Lshr(($420|0),($421|0),18)|0); + $433 = tempRet0; + $434 = $430 | $432; + $435 = $431 | $433; + $436 = $428 ^ $434; + $437 = $429 ^ $435; + $438 = (_bitshift64Shl(($420|0),($421|0),23)|0); + $439 = tempRet0; + $440 = (_bitshift64Lshr(($420|0),($421|0),41)|0); + $441 = tempRet0; + $442 = $438 | $440; + $443 = $439 | $441; + $444 = $436 ^ $442; + $445 = $437 ^ $443; + $446 = $333 ^ $246; + $447 = $334 ^ $247; + $448 = $420 & $446; + $449 = $421 & $447; + $450 = $448 ^ $246; + $451 = $449 ^ $247; + $452 = $$2342 | 3; + $453 = (72 + ($452<<3)|0); + $454 = $453; $455 = $454; $456 = HEAP32[$455>>2]|0; - $457 = (($W) + ($449<<3)|0); + $457 = (($454) + 4)|0; $458 = $457; - $459 = $458; - $460 = HEAP32[$459>>2]|0; - $461 = (($458) + 4)|0; + $459 = HEAP32[$458>>2]|0; + $460 = (($2) + ($452<<3)|0); + $461 = $460; $462 = $461; $463 = HEAP32[$462>>2]|0; - $464 = (_i64Add(($453|0),($456|0),($145|0),($146|0))|0); - $465 = tempRet0; - $466 = (_i64Add(($464|0),($465|0),($460|0),($463|0))|0); - $467 = tempRet0; - $468 = (_i64Add(($466|0),($467|0),($447|0),($448|0))|0); - $469 = tempRet0; - $470 = (_i64Add(($468|0),($469|0),($441|0),($442|0))|0); - $471 = tempRet0; - $472 = (_bitshift64Shl(($419|0),($420|0),36)|0); - $473 = tempRet0; - $474 = (_bitshift64Lshr(($419|0),($420|0),28)|0); - $475 = tempRet0; - $476 = $472 | $474; - $477 = $473 | $475; - $478 = (_bitshift64Shl(($419|0),($420|0),30)|0); - $479 = tempRet0; - $480 = (_bitshift64Lshr(($419|0),($420|0),34)|0); - $481 = tempRet0; - $482 = $478 | $480; - $483 = $479 | $481; - $484 = $476 ^ $482; - $485 = $477 ^ $483; - $486 = (_bitshift64Shl(($419|0),($420|0),25)|0); - $487 = tempRet0; - $488 = (_bitshift64Lshr(($419|0),($420|0),39)|0); - $489 = tempRet0; - $490 = $486 | $488; - $491 = $487 | $489; - $492 = $484 ^ $490; - $493 = $485 ^ $491; - $494 = $419 & $332; - $495 = $420 & $333; - $496 = $419 | $332; - $497 = $420 | $333; - $498 = $496 & $245; - $499 = $497 & $246; - $500 = $498 | $494; - $501 = $499 | $495; - $502 = (_i64Add(($492|0),($493|0),($500|0),($501|0))|0); - $503 = tempRet0; - $504 = (_i64Add(($470|0),($471|0),($203|0),($204|0))|0); - $505 = tempRet0; - $506 = (_i64Add(($502|0),($503|0),($470|0),($471|0))|0); - $507 = tempRet0; - $508 = (_bitshift64Shl(($504|0),($505|0),50)|0); - $509 = tempRet0; - $510 = (_bitshift64Lshr(($504|0),($505|0),14)|0); - $511 = tempRet0; - $512 = $508 | $510; - $513 = $509 | $511; - $514 = (_bitshift64Shl(($504|0),($505|0),46)|0); - $515 = tempRet0; - $516 = (_bitshift64Lshr(($504|0),($505|0),18)|0); - $517 = tempRet0; - $518 = $514 | $516; - $519 = $515 | $517; - $520 = $512 ^ $518; - $521 = $513 ^ $519; - $522 = (_bitshift64Shl(($504|0),($505|0),23)|0); - $523 = tempRet0; - $524 = (_bitshift64Lshr(($504|0),($505|0),41)|0); - $525 = tempRet0; - $526 = $522 | $524; - $527 = $523 | $525; - $528 = $520 ^ $526; - $529 = $521 ^ $527; - $530 = $417 ^ $330; - $531 = $418 ^ $331; - $532 = $504 & $530; - $533 = $505 & $531; - $534 = $532 ^ $330; - $535 = $533 ^ $331; - $536 = $i$29 | 4; - $537 = (72 + ($536<<3)|0); - $538 = $537; - $539 = $538; - $540 = HEAP32[$539>>2]|0; - $541 = (($538) + 4)|0; + $464 = (($461) + 4)|0; + $465 = $464; + $466 = HEAP32[$465>>2]|0; + $467 = (_i64Add(($456|0),($459|0),($148|0),($149|0))|0); + $468 = tempRet0; + $469 = (_i64Add(($467|0),($468|0),($463|0),($466|0))|0); + $470 = tempRet0; + $471 = (_i64Add(($469|0),($470|0),($450|0),($451|0))|0); + $472 = tempRet0; + $473 = (_i64Add(($471|0),($472|0),($444|0),($445|0))|0); + $474 = tempRet0; + $475 = (_bitshift64Shl(($422|0),($423|0),36)|0); + $476 = tempRet0; + $477 = (_bitshift64Lshr(($422|0),($423|0),28)|0); + $478 = tempRet0; + $479 = $475 | $477; + $480 = $476 | $478; + $481 = (_bitshift64Shl(($422|0),($423|0),30)|0); + $482 = tempRet0; + $483 = (_bitshift64Lshr(($422|0),($423|0),34)|0); + $484 = tempRet0; + $485 = $481 | $483; + $486 = $482 | $484; + $487 = $479 ^ $485; + $488 = $480 ^ $486; + $489 = (_bitshift64Shl(($422|0),($423|0),25)|0); + $490 = tempRet0; + $491 = (_bitshift64Lshr(($422|0),($423|0),39)|0); + $492 = tempRet0; + $493 = $489 | $491; + $494 = $490 | $492; + $495 = $487 ^ $493; + $496 = $488 ^ $494; + $497 = $422 & $335; + $498 = $423 & $336; + $499 = $422 | $335; + $500 = $423 | $336; + $501 = $499 & $248; + $502 = $500 & $249; + $503 = $501 | $497; + $504 = $502 | $498; + $505 = (_i64Add(($495|0),($496|0),($503|0),($504|0))|0); + $506 = tempRet0; + $507 = (_i64Add(($473|0),($474|0),($206|0),($207|0))|0); + $508 = tempRet0; + $509 = (_i64Add(($505|0),($506|0),($473|0),($474|0))|0); + $510 = tempRet0; + $511 = (_bitshift64Shl(($507|0),($508|0),50)|0); + $512 = tempRet0; + $513 = (_bitshift64Lshr(($507|0),($508|0),14)|0); + $514 = tempRet0; + $515 = $511 | $513; + $516 = $512 | $514; + $517 = (_bitshift64Shl(($507|0),($508|0),46)|0); + $518 = tempRet0; + $519 = (_bitshift64Lshr(($507|0),($508|0),18)|0); + $520 = tempRet0; + $521 = $517 | $519; + $522 = $518 | $520; + $523 = $515 ^ $521; + $524 = $516 ^ $522; + $525 = (_bitshift64Shl(($507|0),($508|0),23)|0); + $526 = tempRet0; + $527 = (_bitshift64Lshr(($507|0),($508|0),41)|0); + $528 = tempRet0; + $529 = $525 | $527; + $530 = $526 | $528; + $531 = $523 ^ $529; + $532 = $524 ^ $530; + $533 = $420 ^ $333; + $534 = $421 ^ $334; + $535 = $507 & $533; + $536 = $508 & $534; + $537 = $535 ^ $333; + $538 = $536 ^ $334; + $539 = $$2342 | 4; + $540 = (72 + ($539<<3)|0); + $541 = $540; $542 = $541; $543 = HEAP32[$542>>2]|0; - $544 = (($W) + ($536<<3)|0); + $544 = (($541) + 4)|0; $545 = $544; - $546 = $545; - $547 = HEAP32[$546>>2]|0; - $548 = (($545) + 4)|0; + $546 = HEAP32[$545>>2]|0; + $547 = (($2) + ($539<<3)|0); + $548 = $547; $549 = $548; $550 = HEAP32[$549>>2]|0; - $551 = (_i64Add(($540|0),($543|0),($243|0),($244|0))|0); - $552 = tempRet0; - $553 = (_i64Add(($551|0),($552|0),($547|0),($550|0))|0); - $554 = tempRet0; - $555 = (_i64Add(($553|0),($554|0),($534|0),($535|0))|0); - $556 = tempRet0; - $557 = (_i64Add(($555|0),($556|0),($528|0),($529|0))|0); - $558 = tempRet0; - $559 = (_bitshift64Shl(($506|0),($507|0),36)|0); - $560 = tempRet0; - $561 = (_bitshift64Lshr(($506|0),($507|0),28)|0); - $562 = tempRet0; - $563 = $559 | $561; - $564 = $560 | $562; - $565 = (_bitshift64Shl(($506|0),($507|0),30)|0); - $566 = tempRet0; - $567 = (_bitshift64Lshr(($506|0),($507|0),34)|0); - $568 = tempRet0; - $569 = $565 | $567; - $570 = $566 | $568; - $571 = $563 ^ $569; - $572 = $564 ^ $570; - $573 = (_bitshift64Shl(($506|0),($507|0),25)|0); - $574 = tempRet0; - $575 = (_bitshift64Lshr(($506|0),($507|0),39)|0); - $576 = tempRet0; - $577 = $573 | $575; - $578 = $574 | $576; - $579 = $571 ^ $577; - $580 = $572 ^ $578; - $581 = $506 & $419; - $582 = $507 & $420; - $583 = $506 | $419; - $584 = $507 | $420; - $585 = $583 & $332; - $586 = $584 & $333; - $587 = $585 | $581; - $588 = $586 | $582; - $589 = (_i64Add(($579|0),($580|0),($587|0),($588|0))|0); - $590 = tempRet0; - $591 = (_i64Add(($557|0),($558|0),($245|0),($246|0))|0); - $592 = tempRet0; - $593 = (_i64Add(($589|0),($590|0),($557|0),($558|0))|0); - $594 = tempRet0; - $595 = (_bitshift64Shl(($591|0),($592|0),50)|0); - $596 = tempRet0; - $597 = (_bitshift64Lshr(($591|0),($592|0),14)|0); - $598 = tempRet0; - $599 = $595 | $597; - $600 = $596 | $598; - $601 = (_bitshift64Shl(($591|0),($592|0),46)|0); - $602 = tempRet0; - $603 = (_bitshift64Lshr(($591|0),($592|0),18)|0); - $604 = tempRet0; - $605 = $601 | $603; - $606 = $602 | $604; - $607 = $599 ^ $605; - $608 = $600 ^ $606; - $609 = (_bitshift64Shl(($591|0),($592|0),23)|0); - $610 = tempRet0; - $611 = (_bitshift64Lshr(($591|0),($592|0),41)|0); - $612 = tempRet0; - $613 = $609 | $611; - $614 = $610 | $612; - $615 = $607 ^ $613; - $616 = $608 ^ $614; - $617 = $504 ^ $417; - $618 = $505 ^ $418; - $619 = $591 & $617; - $620 = $592 & $618; - $621 = $619 ^ $417; - $622 = $620 ^ $418; - $623 = $i$29 | 5; - $624 = (72 + ($623<<3)|0); - $625 = $624; - $626 = $625; - $627 = HEAP32[$626>>2]|0; - $628 = (($625) + 4)|0; + $551 = (($548) + 4)|0; + $552 = $551; + $553 = HEAP32[$552>>2]|0; + $554 = (_i64Add(($543|0),($546|0),($246|0),($247|0))|0); + $555 = tempRet0; + $556 = (_i64Add(($554|0),($555|0),($550|0),($553|0))|0); + $557 = tempRet0; + $558 = (_i64Add(($556|0),($557|0),($537|0),($538|0))|0); + $559 = tempRet0; + $560 = (_i64Add(($558|0),($559|0),($531|0),($532|0))|0); + $561 = tempRet0; + $562 = (_bitshift64Shl(($509|0),($510|0),36)|0); + $563 = tempRet0; + $564 = (_bitshift64Lshr(($509|0),($510|0),28)|0); + $565 = tempRet0; + $566 = $562 | $564; + $567 = $563 | $565; + $568 = (_bitshift64Shl(($509|0),($510|0),30)|0); + $569 = tempRet0; + $570 = (_bitshift64Lshr(($509|0),($510|0),34)|0); + $571 = tempRet0; + $572 = $568 | $570; + $573 = $569 | $571; + $574 = $566 ^ $572; + $575 = $567 ^ $573; + $576 = (_bitshift64Shl(($509|0),($510|0),25)|0); + $577 = tempRet0; + $578 = (_bitshift64Lshr(($509|0),($510|0),39)|0); + $579 = tempRet0; + $580 = $576 | $578; + $581 = $577 | $579; + $582 = $574 ^ $580; + $583 = $575 ^ $581; + $584 = $509 & $422; + $585 = $510 & $423; + $586 = $509 | $422; + $587 = $510 | $423; + $588 = $586 & $335; + $589 = $587 & $336; + $590 = $588 | $584; + $591 = $589 | $585; + $592 = (_i64Add(($582|0),($583|0),($590|0),($591|0))|0); + $593 = tempRet0; + $594 = (_i64Add(($560|0),($561|0),($248|0),($249|0))|0); + $595 = tempRet0; + $596 = (_i64Add(($592|0),($593|0),($560|0),($561|0))|0); + $597 = tempRet0; + $598 = (_bitshift64Shl(($594|0),($595|0),50)|0); + $599 = tempRet0; + $600 = (_bitshift64Lshr(($594|0),($595|0),14)|0); + $601 = tempRet0; + $602 = $598 | $600; + $603 = $599 | $601; + $604 = (_bitshift64Shl(($594|0),($595|0),46)|0); + $605 = tempRet0; + $606 = (_bitshift64Lshr(($594|0),($595|0),18)|0); + $607 = tempRet0; + $608 = $604 | $606; + $609 = $605 | $607; + $610 = $602 ^ $608; + $611 = $603 ^ $609; + $612 = (_bitshift64Shl(($594|0),($595|0),23)|0); + $613 = tempRet0; + $614 = (_bitshift64Lshr(($594|0),($595|0),41)|0); + $615 = tempRet0; + $616 = $612 | $614; + $617 = $613 | $615; + $618 = $610 ^ $616; + $619 = $611 ^ $617; + $620 = $507 ^ $420; + $621 = $508 ^ $421; + $622 = $594 & $620; + $623 = $595 & $621; + $624 = $622 ^ $420; + $625 = $623 ^ $421; + $626 = $$2342 | 5; + $627 = (72 + ($626<<3)|0); + $628 = $627; $629 = $628; $630 = HEAP32[$629>>2]|0; - $631 = (($W) + ($623<<3)|0); + $631 = (($628) + 4)|0; $632 = $631; - $633 = $632; - $634 = HEAP32[$633>>2]|0; - $635 = (($632) + 4)|0; + $633 = HEAP32[$632>>2]|0; + $634 = (($2) + ($626<<3)|0); + $635 = $634; $636 = $635; $637 = HEAP32[$636>>2]|0; - $638 = (_i64Add(($634|0),($637|0),($627|0),($630|0))|0); - $639 = tempRet0; - $640 = (_i64Add(($638|0),($639|0),($330|0),($331|0))|0); - $641 = tempRet0; - $642 = (_i64Add(($640|0),($641|0),($621|0),($622|0))|0); - $643 = tempRet0; - $644 = (_i64Add(($642|0),($643|0),($615|0),($616|0))|0); - $645 = tempRet0; - $646 = (_bitshift64Shl(($593|0),($594|0),36)|0); - $647 = tempRet0; - $648 = (_bitshift64Lshr(($593|0),($594|0),28)|0); - $649 = tempRet0; - $650 = $646 | $648; - $651 = $647 | $649; - $652 = (_bitshift64Shl(($593|0),($594|0),30)|0); - $653 = tempRet0; - $654 = (_bitshift64Lshr(($593|0),($594|0),34)|0); - $655 = tempRet0; - $656 = $652 | $654; - $657 = $653 | $655; - $658 = $650 ^ $656; - $659 = $651 ^ $657; - $660 = (_bitshift64Shl(($593|0),($594|0),25)|0); - $661 = tempRet0; - $662 = (_bitshift64Lshr(($593|0),($594|0),39)|0); - $663 = tempRet0; - $664 = $660 | $662; - $665 = $661 | $663; - $666 = $658 ^ $664; - $667 = $659 ^ $665; - $668 = $593 & $506; - $669 = $594 & $507; - $670 = $593 | $506; - $671 = $594 | $507; - $672 = $670 & $419; - $673 = $671 & $420; - $674 = $672 | $668; - $675 = $673 | $669; - $676 = (_i64Add(($666|0),($667|0),($674|0),($675|0))|0); - $677 = tempRet0; - $678 = (_i64Add(($644|0),($645|0),($332|0),($333|0))|0); - $679 = tempRet0; - $680 = (_i64Add(($676|0),($677|0),($644|0),($645|0))|0); - $681 = tempRet0; - $682 = (_bitshift64Shl(($678|0),($679|0),50)|0); - $683 = tempRet0; - $684 = (_bitshift64Lshr(($678|0),($679|0),14)|0); - $685 = tempRet0; - $686 = $682 | $684; - $687 = $683 | $685; - $688 = (_bitshift64Shl(($678|0),($679|0),46)|0); - $689 = tempRet0; - $690 = (_bitshift64Lshr(($678|0),($679|0),18)|0); - $691 = tempRet0; - $692 = $688 | $690; - $693 = $689 | $691; - $694 = $686 ^ $692; - $695 = $687 ^ $693; - $696 = (_bitshift64Shl(($678|0),($679|0),23)|0); - $697 = tempRet0; - $698 = (_bitshift64Lshr(($678|0),($679|0),41)|0); - $699 = tempRet0; - $700 = $696 | $698; - $701 = $697 | $699; - $702 = $694 ^ $700; - $703 = $695 ^ $701; - $704 = $591 ^ $504; - $705 = $592 ^ $505; - $706 = $678 & $704; - $707 = $679 & $705; - $708 = $706 ^ $504; - $709 = $707 ^ $505; - $710 = $i$29 | 6; - $711 = (72 + ($710<<3)|0); - $712 = $711; - $713 = $712; - $714 = HEAP32[$713>>2]|0; - $715 = (($712) + 4)|0; + $638 = (($635) + 4)|0; + $639 = $638; + $640 = HEAP32[$639>>2]|0; + $641 = (_i64Add(($637|0),($640|0),($630|0),($633|0))|0); + $642 = tempRet0; + $643 = (_i64Add(($641|0),($642|0),($333|0),($334|0))|0); + $644 = tempRet0; + $645 = (_i64Add(($643|0),($644|0),($624|0),($625|0))|0); + $646 = tempRet0; + $647 = (_i64Add(($645|0),($646|0),($618|0),($619|0))|0); + $648 = tempRet0; + $649 = (_bitshift64Shl(($596|0),($597|0),36)|0); + $650 = tempRet0; + $651 = (_bitshift64Lshr(($596|0),($597|0),28)|0); + $652 = tempRet0; + $653 = $649 | $651; + $654 = $650 | $652; + $655 = (_bitshift64Shl(($596|0),($597|0),30)|0); + $656 = tempRet0; + $657 = (_bitshift64Lshr(($596|0),($597|0),34)|0); + $658 = tempRet0; + $659 = $655 | $657; + $660 = $656 | $658; + $661 = $653 ^ $659; + $662 = $654 ^ $660; + $663 = (_bitshift64Shl(($596|0),($597|0),25)|0); + $664 = tempRet0; + $665 = (_bitshift64Lshr(($596|0),($597|0),39)|0); + $666 = tempRet0; + $667 = $663 | $665; + $668 = $664 | $666; + $669 = $661 ^ $667; + $670 = $662 ^ $668; + $671 = $596 & $509; + $672 = $597 & $510; + $673 = $596 | $509; + $674 = $597 | $510; + $675 = $673 & $422; + $676 = $674 & $423; + $677 = $675 | $671; + $678 = $676 | $672; + $679 = (_i64Add(($669|0),($670|0),($677|0),($678|0))|0); + $680 = tempRet0; + $681 = (_i64Add(($647|0),($648|0),($335|0),($336|0))|0); + $682 = tempRet0; + $683 = (_i64Add(($679|0),($680|0),($647|0),($648|0))|0); + $684 = tempRet0; + $685 = (_bitshift64Shl(($681|0),($682|0),50)|0); + $686 = tempRet0; + $687 = (_bitshift64Lshr(($681|0),($682|0),14)|0); + $688 = tempRet0; + $689 = $685 | $687; + $690 = $686 | $688; + $691 = (_bitshift64Shl(($681|0),($682|0),46)|0); + $692 = tempRet0; + $693 = (_bitshift64Lshr(($681|0),($682|0),18)|0); + $694 = tempRet0; + $695 = $691 | $693; + $696 = $692 | $694; + $697 = $689 ^ $695; + $698 = $690 ^ $696; + $699 = (_bitshift64Shl(($681|0),($682|0),23)|0); + $700 = tempRet0; + $701 = (_bitshift64Lshr(($681|0),($682|0),41)|0); + $702 = tempRet0; + $703 = $699 | $701; + $704 = $700 | $702; + $705 = $697 ^ $703; + $706 = $698 ^ $704; + $707 = $594 ^ $507; + $708 = $595 ^ $508; + $709 = $681 & $707; + $710 = $682 & $708; + $711 = $709 ^ $507; + $712 = $710 ^ $508; + $713 = $$2342 | 6; + $714 = (72 + ($713<<3)|0); + $715 = $714; $716 = $715; $717 = HEAP32[$716>>2]|0; - $718 = (($W) + ($710<<3)|0); + $718 = (($715) + 4)|0; $719 = $718; - $720 = $719; - $721 = HEAP32[$720>>2]|0; - $722 = (($719) + 4)|0; + $720 = HEAP32[$719>>2]|0; + $721 = (($2) + ($713<<3)|0); + $722 = $721; $723 = $722; $724 = HEAP32[$723>>2]|0; - $725 = (_i64Add(($721|0),($724|0),($714|0),($717|0))|0); - $726 = tempRet0; - $727 = (_i64Add(($725|0),($726|0),($417|0),($418|0))|0); - $728 = tempRet0; - $729 = (_i64Add(($727|0),($728|0),($708|0),($709|0))|0); - $730 = tempRet0; - $731 = (_i64Add(($729|0),($730|0),($702|0),($703|0))|0); - $732 = tempRet0; - $733 = (_bitshift64Shl(($680|0),($681|0),36)|0); - $734 = tempRet0; - $735 = (_bitshift64Lshr(($680|0),($681|0),28)|0); - $736 = tempRet0; - $737 = $733 | $735; - $738 = $734 | $736; - $739 = (_bitshift64Shl(($680|0),($681|0),30)|0); - $740 = tempRet0; - $741 = (_bitshift64Lshr(($680|0),($681|0),34)|0); - $742 = tempRet0; - $743 = $739 | $741; - $744 = $740 | $742; - $745 = $737 ^ $743; - $746 = $738 ^ $744; - $747 = (_bitshift64Shl(($680|0),($681|0),25)|0); - $748 = tempRet0; - $749 = (_bitshift64Lshr(($680|0),($681|0),39)|0); - $750 = tempRet0; - $751 = $747 | $749; - $752 = $748 | $750; - $753 = $745 ^ $751; - $754 = $746 ^ $752; - $755 = $680 & $593; - $756 = $681 & $594; - $757 = $680 | $593; - $758 = $681 | $594; - $759 = $757 & $506; - $760 = $758 & $507; - $761 = $759 | $755; - $762 = $760 | $756; - $763 = (_i64Add(($753|0),($754|0),($761|0),($762|0))|0); - $764 = tempRet0; - $765 = (_i64Add(($731|0),($732|0),($419|0),($420|0))|0); - $766 = tempRet0; - $767 = (_i64Add(($763|0),($764|0),($731|0),($732|0))|0); - $768 = tempRet0; - $769 = (_bitshift64Shl(($765|0),($766|0),50)|0); - $770 = tempRet0; - $771 = (_bitshift64Lshr(($765|0),($766|0),14)|0); - $772 = tempRet0; - $773 = $769 | $771; - $774 = $770 | $772; - $775 = (_bitshift64Shl(($765|0),($766|0),46)|0); - $776 = tempRet0; - $777 = (_bitshift64Lshr(($765|0),($766|0),18)|0); - $778 = tempRet0; - $779 = $775 | $777; - $780 = $776 | $778; - $781 = $773 ^ $779; - $782 = $774 ^ $780; - $783 = (_bitshift64Shl(($765|0),($766|0),23)|0); - $784 = tempRet0; - $785 = (_bitshift64Lshr(($765|0),($766|0),41)|0); - $786 = tempRet0; - $787 = $783 | $785; - $788 = $784 | $786; - $789 = $781 ^ $787; - $790 = $782 ^ $788; - $791 = $678 ^ $591; - $792 = $679 ^ $592; - $793 = $765 & $791; - $794 = $766 & $792; - $795 = $793 ^ $591; - $796 = $794 ^ $592; - $797 = $i$29 | 7; - $798 = (72 + ($797<<3)|0); - $799 = $798; - $800 = $799; - $801 = HEAP32[$800>>2]|0; - $802 = (($799) + 4)|0; + $725 = (($722) + 4)|0; + $726 = $725; + $727 = HEAP32[$726>>2]|0; + $728 = (_i64Add(($724|0),($727|0),($717|0),($720|0))|0); + $729 = tempRet0; + $730 = (_i64Add(($728|0),($729|0),($420|0),($421|0))|0); + $731 = tempRet0; + $732 = (_i64Add(($730|0),($731|0),($711|0),($712|0))|0); + $733 = tempRet0; + $734 = (_i64Add(($732|0),($733|0),($705|0),($706|0))|0); + $735 = tempRet0; + $736 = (_bitshift64Shl(($683|0),($684|0),36)|0); + $737 = tempRet0; + $738 = (_bitshift64Lshr(($683|0),($684|0),28)|0); + $739 = tempRet0; + $740 = $736 | $738; + $741 = $737 | $739; + $742 = (_bitshift64Shl(($683|0),($684|0),30)|0); + $743 = tempRet0; + $744 = (_bitshift64Lshr(($683|0),($684|0),34)|0); + $745 = tempRet0; + $746 = $742 | $744; + $747 = $743 | $745; + $748 = $740 ^ $746; + $749 = $741 ^ $747; + $750 = (_bitshift64Shl(($683|0),($684|0),25)|0); + $751 = tempRet0; + $752 = (_bitshift64Lshr(($683|0),($684|0),39)|0); + $753 = tempRet0; + $754 = $750 | $752; + $755 = $751 | $753; + $756 = $748 ^ $754; + $757 = $749 ^ $755; + $758 = $683 & $596; + $759 = $684 & $597; + $760 = $683 | $596; + $761 = $684 | $597; + $762 = $760 & $509; + $763 = $761 & $510; + $764 = $762 | $758; + $765 = $763 | $759; + $766 = (_i64Add(($756|0),($757|0),($764|0),($765|0))|0); + $767 = tempRet0; + $768 = (_i64Add(($734|0),($735|0),($422|0),($423|0))|0); + $769 = tempRet0; + $770 = (_i64Add(($766|0),($767|0),($734|0),($735|0))|0); + $771 = tempRet0; + $772 = (_bitshift64Shl(($768|0),($769|0),50)|0); + $773 = tempRet0; + $774 = (_bitshift64Lshr(($768|0),($769|0),14)|0); + $775 = tempRet0; + $776 = $772 | $774; + $777 = $773 | $775; + $778 = (_bitshift64Shl(($768|0),($769|0),46)|0); + $779 = tempRet0; + $780 = (_bitshift64Lshr(($768|0),($769|0),18)|0); + $781 = tempRet0; + $782 = $778 | $780; + $783 = $779 | $781; + $784 = $776 ^ $782; + $785 = $777 ^ $783; + $786 = (_bitshift64Shl(($768|0),($769|0),23)|0); + $787 = tempRet0; + $788 = (_bitshift64Lshr(($768|0),($769|0),41)|0); + $789 = tempRet0; + $790 = $786 | $788; + $791 = $787 | $789; + $792 = $784 ^ $790; + $793 = $785 ^ $791; + $794 = $681 ^ $594; + $795 = $682 ^ $595; + $796 = $768 & $794; + $797 = $769 & $795; + $798 = $796 ^ $594; + $799 = $797 ^ $595; + $800 = $$2342 | 7; + $801 = (72 + ($800<<3)|0); + $802 = $801; $803 = $802; $804 = HEAP32[$803>>2]|0; - $805 = (($W) + ($797<<3)|0); + $805 = (($802) + 4)|0; $806 = $805; - $807 = $806; - $808 = HEAP32[$807>>2]|0; - $809 = (($806) + 4)|0; + $807 = HEAP32[$806>>2]|0; + $808 = (($2) + ($800<<3)|0); + $809 = $808; $810 = $809; $811 = HEAP32[$810>>2]|0; - $812 = (_i64Add(($808|0),($811|0),($801|0),($804|0))|0); - $813 = tempRet0; - $814 = (_i64Add(($812|0),($813|0),($504|0),($505|0))|0); - $815 = tempRet0; - $816 = (_i64Add(($814|0),($815|0),($795|0),($796|0))|0); - $817 = tempRet0; - $818 = (_i64Add(($816|0),($817|0),($789|0),($790|0))|0); - $819 = tempRet0; - $820 = (_bitshift64Shl(($767|0),($768|0),36)|0); - $821 = tempRet0; - $822 = (_bitshift64Lshr(($767|0),($768|0),28)|0); - $823 = tempRet0; - $824 = $820 | $822; - $825 = $821 | $823; - $826 = (_bitshift64Shl(($767|0),($768|0),30)|0); - $827 = tempRet0; - $828 = (_bitshift64Lshr(($767|0),($768|0),34)|0); - $829 = tempRet0; - $830 = $826 | $828; - $831 = $827 | $829; - $832 = $824 ^ $830; - $833 = $825 ^ $831; - $834 = (_bitshift64Shl(($767|0),($768|0),25)|0); - $835 = tempRet0; - $836 = (_bitshift64Lshr(($767|0),($768|0),39)|0); - $837 = tempRet0; - $838 = $834 | $836; - $839 = $835 | $837; - $840 = $832 ^ $838; - $841 = $833 ^ $839; - $842 = $767 & $680; - $843 = $768 & $681; - $844 = $767 | $680; - $845 = $768 | $681; - $846 = $844 & $593; - $847 = $845 & $594; - $848 = $846 | $842; - $849 = $847 | $843; - $850 = (_i64Add(($840|0),($841|0),($848|0),($849|0))|0); - $851 = tempRet0; - $852 = (_i64Add(($818|0),($819|0),($506|0),($507|0))|0); - $853 = tempRet0; - $854 = (_i64Add(($850|0),($851|0),($818|0),($819|0))|0); - $855 = tempRet0; - $856 = (($i$29) + 8)|0; - $857 = ($856|0)<(80); - if ($857) { - $145 = $852;$146 = $853;$170 = $765;$171 = $678;$173 = $766;$174 = $679;$193 = $591;$194 = $592;$203 = $854;$204 = $855;$228 = $767;$230 = $768;$234 = $680;$236 = $681;$241 = $593;$242 = $594;$i$29 = $856; + $812 = (($809) + 4)|0; + $813 = $812; + $814 = HEAP32[$813>>2]|0; + $815 = (_i64Add(($811|0),($814|0),($804|0),($807|0))|0); + $816 = tempRet0; + $817 = (_i64Add(($815|0),($816|0),($507|0),($508|0))|0); + $818 = tempRet0; + $819 = (_i64Add(($817|0),($818|0),($798|0),($799|0))|0); + $820 = tempRet0; + $821 = (_i64Add(($819|0),($820|0),($792|0),($793|0))|0); + $822 = tempRet0; + $823 = (_bitshift64Shl(($770|0),($771|0),36)|0); + $824 = tempRet0; + $825 = (_bitshift64Lshr(($770|0),($771|0),28)|0); + $826 = tempRet0; + $827 = $823 | $825; + $828 = $824 | $826; + $829 = (_bitshift64Shl(($770|0),($771|0),30)|0); + $830 = tempRet0; + $831 = (_bitshift64Lshr(($770|0),($771|0),34)|0); + $832 = tempRet0; + $833 = $829 | $831; + $834 = $830 | $832; + $835 = $827 ^ $833; + $836 = $828 ^ $834; + $837 = (_bitshift64Shl(($770|0),($771|0),25)|0); + $838 = tempRet0; + $839 = (_bitshift64Lshr(($770|0),($771|0),39)|0); + $840 = tempRet0; + $841 = $837 | $839; + $842 = $838 | $840; + $843 = $835 ^ $841; + $844 = $836 ^ $842; + $845 = $770 & $683; + $846 = $771 & $684; + $847 = $770 | $683; + $848 = $771 | $684; + $849 = $847 & $596; + $850 = $848 & $597; + $851 = $849 | $845; + $852 = $850 | $846; + $853 = (_i64Add(($843|0),($844|0),($851|0),($852|0))|0); + $854 = tempRet0; + $855 = (_i64Add(($821|0),($822|0),($509|0),($510|0))|0); + $856 = tempRet0; + $857 = (_i64Add(($853|0),($854|0),($821|0),($822|0))|0); + $858 = tempRet0; + $859 = (($$2342) + 8)|0; + $860 = ($859|0)<(80); + if ($860) { + $$2342 = $859;$148 = $855;$149 = $856;$173 = $768;$174 = $681;$176 = $769;$177 = $682;$196 = $594;$197 = $595;$206 = $857;$207 = $858;$231 = $770;$233 = $771;$237 = $683;$239 = $684;$244 = $596;$245 = $597; } else { - $864 = $854;$865 = $855;$878 = $767;$879 = $768;$892 = $680;$893 = $681;$906 = $593;$907 = $594;$920 = $852;$921 = $853;$934 = $765;$935 = $766;$948 = $678;$949 = $679;$962 = $591;$963 = $592; break; } } - $858 = $r; - $859 = $858; - $860 = HEAP32[$859>>2]|0; - $861 = (($858) + 4)|0; - $862 = $861; - $863 = HEAP32[$862>>2]|0; - $866 = (_i64Add(($860|0),($863|0),($864|0),($865|0))|0); - $867 = tempRet0; - $868 = $r; - $869 = $868; - HEAP32[$869>>2] = $866; - $870 = (($868) + 4)|0; - $871 = $870; - HEAP32[$871>>2] = $867; - $872 = $96; - $873 = $872; - $874 = HEAP32[$873>>2]|0; - $875 = (($872) + 4)|0; + $861 = (_i64Add(($857|0),($858|0),($95|0),($98|0))|0); + $862 = tempRet0; + $863 = $1; + $864 = $863; + HEAP32[$864>>2] = $861; + $865 = (($863) + 4)|0; + $866 = $865; + HEAP32[$866>>2] = $862; + $867 = (_i64Add(($770|0),($771|0),($102|0),($105|0))|0); + $868 = tempRet0; + $869 = $99; + $870 = $869; + HEAP32[$870>>2] = $867; + $871 = (($869) + 4)|0; + $872 = $871; + HEAP32[$872>>2] = $868; + $873 = (_i64Add(($683|0),($684|0),($109|0),($112|0))|0); + $874 = tempRet0; + $875 = $106; $876 = $875; - $877 = HEAP32[$876>>2]|0; - $880 = (_i64Add(($874|0),($877|0),($878|0),($879|0))|0); - $881 = tempRet0; - $882 = $96; - $883 = $882; - HEAP32[$883>>2] = $880; - $884 = (($882) + 4)|0; - $885 = $884; - HEAP32[$885>>2] = $881; - $886 = $103; - $887 = $886; - $888 = HEAP32[$887>>2]|0; - $889 = (($886) + 4)|0; + HEAP32[$876>>2] = $873; + $877 = (($875) + 4)|0; + $878 = $877; + HEAP32[$878>>2] = $874; + $879 = (_i64Add(($596|0),($597|0),($116|0),($119|0))|0); + $880 = tempRet0; + $881 = $113; + $882 = $881; + HEAP32[$882>>2] = $879; + $883 = (($881) + 4)|0; + $884 = $883; + HEAP32[$884>>2] = $880; + $885 = (_i64Add(($855|0),($856|0),($123|0),($126|0))|0); + $886 = tempRet0; + $887 = $120; + $888 = $887; + HEAP32[$888>>2] = $885; + $889 = (($887) + 4)|0; $890 = $889; - $891 = HEAP32[$890>>2]|0; - $894 = (_i64Add(($888|0),($891|0),($892|0),($893|0))|0); - $895 = tempRet0; - $896 = $103; - $897 = $896; - HEAP32[$897>>2] = $894; - $898 = (($896) + 4)|0; - $899 = $898; - HEAP32[$899>>2] = $895; - $900 = $110; - $901 = $900; - $902 = HEAP32[$901>>2]|0; - $903 = (($900) + 4)|0; - $904 = $903; - $905 = HEAP32[$904>>2]|0; - $908 = (_i64Add(($902|0),($905|0),($906|0),($907|0))|0); - $909 = tempRet0; - $910 = $110; - $911 = $910; - HEAP32[$911>>2] = $908; - $912 = (($910) + 4)|0; - $913 = $912; - HEAP32[$913>>2] = $909; - $914 = $117; - $915 = $914; - $916 = HEAP32[$915>>2]|0; - $917 = (($914) + 4)|0; - $918 = $917; - $919 = HEAP32[$918>>2]|0; - $922 = (_i64Add(($916|0),($919|0),($920|0),($921|0))|0); - $923 = tempRet0; - $924 = $117; - $925 = $924; - HEAP32[$925>>2] = $922; - $926 = (($924) + 4)|0; - $927 = $926; - HEAP32[$927>>2] = $923; - $928 = $124; - $929 = $928; - $930 = HEAP32[$929>>2]|0; - $931 = (($928) + 4)|0; - $932 = $931; - $933 = HEAP32[$932>>2]|0; - $936 = (_i64Add(($930|0),($933|0),($934|0),($935|0))|0); - $937 = tempRet0; - $938 = $124; - $939 = $938; - HEAP32[$939>>2] = $936; - $940 = (($938) + 4)|0; - $941 = $940; - HEAP32[$941>>2] = $937; - $942 = $131; - $943 = $942; - $944 = HEAP32[$943>>2]|0; - $945 = (($942) + 4)|0; - $946 = $945; - $947 = HEAP32[$946>>2]|0; - $950 = (_i64Add(($944|0),($947|0),($948|0),($949|0))|0); - $951 = tempRet0; - $952 = $131; - $953 = $952; - HEAP32[$953>>2] = $950; - $954 = (($952) + 4)|0; - $955 = $954; - HEAP32[$955>>2] = $951; - $956 = $138; - $957 = $956; - $958 = HEAP32[$957>>2]|0; - $959 = (($956) + 4)|0; - $960 = $959; - $961 = HEAP32[$960>>2]|0; - $964 = (_i64Add(($958|0),($961|0),($962|0),($963|0))|0); - $965 = tempRet0; - $966 = $138; - $967 = $966; - HEAP32[$967>>2] = $964; - $968 = (($966) + 4)|0; - $969 = $968; - HEAP32[$969>>2] = $965; + HEAP32[$890>>2] = $886; + $891 = (_i64Add(($768|0),($769|0),($130|0),($133|0))|0); + $892 = tempRet0; + $893 = $127; + $894 = $893; + HEAP32[$894>>2] = $891; + $895 = (($893) + 4)|0; + $896 = $895; + HEAP32[$896>>2] = $892; + $897 = (_i64Add(($681|0),($682|0),($137|0),($140|0))|0); + $898 = tempRet0; + $899 = $134; + $900 = $899; + HEAP32[$900>>2] = $897; + $901 = (($899) + 4)|0; + $902 = $901; + HEAP32[$902>>2] = $898; + $903 = (_i64Add(($594|0),($595|0),($144|0),($147|0))|0); + $904 = tempRet0; + $905 = $141; + $906 = $905; + HEAP32[$906>>2] = $903; + $907 = (($905) + 4)|0; + $908 = $907; + HEAP32[$908>>2] = $904; STACKTOP = sp;return; } -function _sha384_close($cc,$dst,$rnum) { - $cc = $cc|0; - $dst = $dst|0; - $rnum = $rnum|0; +function _sph_dec64be_aligned($0) { + $0 = $0|0; + var $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0; + var $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0; + var $46 = 0, $47 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; + sp = STACKTOP; + $1 = HEAP8[$0>>0]|0; + $2 = $1&255; + $3 = (_bitshift64Shl(($2|0),0,56)|0); + $4 = tempRet0; + $5 = ((($0)) + 1|0); + $6 = HEAP8[$5>>0]|0; + $7 = $6&255; + $8 = (_bitshift64Shl(($7|0),0,48)|0); + $9 = tempRet0; + $10 = $8 | $3; + $11 = $9 | $4; + $12 = ((($0)) + 2|0); + $13 = HEAP8[$12>>0]|0; + $14 = $13&255; + $15 = (_bitshift64Shl(($14|0),0,40)|0); + $16 = tempRet0; + $17 = $10 | $15; + $18 = $11 | $16; + $19 = ((($0)) + 3|0); + $20 = HEAP8[$19>>0]|0; + $21 = $20&255; + $22 = $18 | $21; + $23 = ((($0)) + 4|0); + $24 = HEAP8[$23>>0]|0; + $25 = $24&255; + $26 = (_bitshift64Shl(($25|0),0,24)|0); + $27 = tempRet0; + $28 = $17 | $26; + $29 = $22 | $27; + $30 = ((($0)) + 5|0); + $31 = HEAP8[$30>>0]|0; + $32 = $31&255; + $33 = (_bitshift64Shl(($32|0),0,16)|0); + $34 = tempRet0; + $35 = $28 | $33; + $36 = $29 | $34; + $37 = ((($0)) + 6|0); + $38 = HEAP8[$37>>0]|0; + $39 = $38&255; + $40 = (_bitshift64Shl(($39|0),0,8)|0); + $41 = tempRet0; + $42 = $35 | $40; + $43 = $36 | $41; + $44 = ((($0)) + 7|0); + $45 = HEAP8[$44>>0]|0; + $46 = $45&255; + $47 = $42 | $46; + tempRet0 = ($43); + return ($47|0); +} +function _sha384_close($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; var label = 0, sp = 0; sp = STACKTOP; - _sha384_addbits_and_close($cc,0,0,$dst,$rnum); + _sha384_addbits_and_close($0,0,0,$1,$2); return; } -function _sha384_addbits_and_close($cc,$ub,$n,$dst,$rnum) { - $cc = $cc|0; - $ub = $ub|0; - $n = $n|0; - $dst = $dst|0; - $rnum = $rnum|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; - var $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $exitcond = 0, $u$01 = 0, dest = 0, label = 0, sp = 0, stop = 0; +function _sha384_addbits_and_close($0,$1,$2,$3,$4) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + $3 = $3|0; + $4 = $4|0; + var $$035 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + var $29 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0; + var $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $exitcond = 0, dest = 0, label = 0, sp = 0, stop = 0; sp = STACKTOP; - $0 = ((($cc)) + 192|0); - $1 = $0; - $2 = $1; - $3 = HEAP32[$2>>2]|0; - $4 = (($1) + 4)|0; - $5 = $4; - $6 = HEAP32[$5>>2]|0; - $7 = $3 & 127; - $8 = 128 >>> $n; - $9 = (0 - ($8))|0; - $10 = $9 & $ub; - $11 = $10 | $8; - $12 = $11&255; - $13 = (($7) + 1)|0; - $14 = (($cc) + ($7)|0); - HEAP8[$14>>0] = $12; - $15 = ($13>>>0)>(112); - $16 = (($cc) + ($13)|0); - if ($15) { - $17 = $7 ^ 127; - _memset(($16|0),0,($17|0))|0; - $18 = ((($cc)) + 128|0); - _sha3_round($cc,$18); - dest=$cc; stop=dest+112|0; do { HEAP8[dest>>0]=0|0; dest=dest+1|0; } while ((dest|0) < (stop|0)); + $5 = ((($0)) + 192|0); + $6 = $5; + $7 = $6; + $8 = HEAP32[$7>>2]|0; + $9 = (($6) + 4)|0; + $10 = $9; + $11 = HEAP32[$10>>2]|0; + $12 = $8 & 127; + $13 = 128 >>> $2; + $14 = (0 - ($13))|0; + $15 = $14 & $1; + $16 = $15 | $13; + $17 = $16&255; + $18 = (($12) + 1)|0; + $19 = (($0) + ($12)|0); + HEAP8[$19>>0] = $17; + $20 = ($18>>>0)>(112); + $21 = (($0) + ($18)|0); + if ($20) { + $22 = $12 ^ 127; + _memset(($21|0),0,($22|0))|0; + $23 = ((($0)) + 128|0); + _sha3_round($0,$23); + dest=$0; stop=dest+112|0; do { HEAP32[dest>>2]=0|0; dest=dest+4|0; } while ((dest|0) < (stop|0)); } else { - $19 = (111 - ($7))|0; - _memset(($16|0),0,($19|0))|0; + $24 = (111 - ($12))|0; + _memset(($21|0),0,($24|0))|0; } - $20 = ((($cc)) + 112|0); - $21 = $0; - $22 = $21; - $23 = HEAP32[$22>>2]|0; - $24 = (($21) + 4)|0; - $25 = $24; - $26 = HEAP32[$25>>2]|0; - $27 = (_bitshift64Lshr(($23|0),($26|0),61)|0); - $28 = tempRet0; - _sph_enc64be_aligned($20,$27,$28); - $29 = ((($cc)) + 120|0); - $30 = $0; - $31 = $30; - $32 = HEAP32[$31>>2]|0; - $33 = (($30) + 4)|0; - $34 = $33; - $35 = HEAP32[$34>>2]|0; - $36 = (_bitshift64Shl(($32|0),($35|0),3)|0); - $37 = tempRet0; - $38 = (_i64Add(($36|0),($37|0),($n|0),0)|0); - $39 = tempRet0; - _sph_enc64be_aligned($29,$38,$39); - $40 = ((($cc)) + 128|0); - _sha3_round($cc,$40); - $41 = ($rnum|0)==(0); - if ($41) { + $25 = ((($0)) + 112|0); + $26 = $5; + $27 = $26; + $28 = HEAP32[$27>>2]|0; + $29 = (($26) + 4)|0; + $30 = $29; + $31 = HEAP32[$30>>2]|0; + $32 = (_bitshift64Lshr(($28|0),($31|0),61)|0); + $33 = tempRet0; + _sph_enc64be_aligned($25,$32,$33); + $34 = ((($0)) + 120|0); + $35 = $5; + $36 = $35; + $37 = HEAP32[$36>>2]|0; + $38 = (($35) + 4)|0; + $39 = $38; + $40 = HEAP32[$39>>2]|0; + $41 = (_bitshift64Shl(($37|0),($40|0),3)|0); + $42 = tempRet0; + $43 = (_i64Add(($41|0),($42|0),($2|0),0)|0); + $44 = tempRet0; + _sph_enc64be_aligned($34,$43,$44); + $45 = ((($0)) + 128|0); + _sha3_round($0,$45); + $46 = ($4|0)==(0); + if ($46) { return; } else { - $u$01 = 0; + $$035 = 0; } while(1) { - $42 = $u$01 << 3; - $43 = (($dst) + ($42)|0); - $44 = (($40) + ($u$01<<3)|0); - $45 = $44; - $46 = $45; - $47 = HEAP32[$46>>2]|0; - $48 = (($45) + 4)|0; - $49 = $48; - $50 = HEAP32[$49>>2]|0; - _sph_enc64be($43,$47,$50); - $51 = (($u$01) + 1)|0; - $exitcond = ($51|0)==($rnum|0); + $47 = $$035 << 3; + $48 = (($3) + ($47)|0); + $49 = (($45) + ($$035<<3)|0); + $50 = $49; + $51 = $50; + $52 = HEAP32[$51>>2]|0; + $53 = (($50) + 4)|0; + $54 = $53; + $55 = HEAP32[$54>>2]|0; + _sph_enc64be($48,$52,$55); + $56 = (($$035) + 1)|0; + $exitcond = ($56|0)==($4|0); if ($exitcond) { break; } else { - $u$01 = $51; + $$035 = $56; } } return; } -function _sph_enc64be_aligned($dst,$0,$1) { - $dst = $dst|0; +function _sph_enc64be_aligned($0,$1,$2) { $0 = $0|0; $1 = $1|0; - var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0; var $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $2 = (_bitshift64Lshr(($0|0),($1|0),56)|0); - $3 = tempRet0; - $4 = $2&255; - HEAP8[$dst>>0] = $4; - $5 = (_bitshift64Lshr(($0|0),($1|0),48)|0); - $6 = tempRet0; - $7 = $5&255; - $8 = ((($dst)) + 1|0); - HEAP8[$8>>0] = $7; - $9 = (_bitshift64Lshr(($0|0),($1|0),40)|0); - $10 = tempRet0; - $11 = $9&255; - $12 = ((($dst)) + 2|0); - HEAP8[$12>>0] = $11; - $13 = $1&255; - $14 = ((($dst)) + 3|0); - HEAP8[$14>>0] = $13; - $15 = (_bitshift64Lshr(($0|0),($1|0),24)|0); - $16 = tempRet0; - $17 = $15&255; - $18 = ((($dst)) + 4|0); - HEAP8[$18>>0] = $17; - $19 = (_bitshift64Lshr(($0|0),($1|0),16)|0); - $20 = tempRet0; - $21 = $19&255; - $22 = ((($dst)) + 5|0); - HEAP8[$22>>0] = $21; - $23 = (_bitshift64Lshr(($0|0),($1|0),8)|0); - $24 = tempRet0; - $25 = $23&255; - $26 = ((($dst)) + 6|0); - HEAP8[$26>>0] = $25; - $27 = $0&255; - $28 = ((($dst)) + 7|0); - HEAP8[$28>>0] = $27; + $3 = (_bitshift64Lshr(($1|0),($2|0),56)|0); + $4 = tempRet0; + $5 = $3&255; + HEAP8[$0>>0] = $5; + $6 = (_bitshift64Lshr(($1|0),($2|0),48)|0); + $7 = tempRet0; + $8 = $6&255; + $9 = ((($0)) + 1|0); + HEAP8[$9>>0] = $8; + $10 = (_bitshift64Lshr(($1|0),($2|0),40)|0); + $11 = tempRet0; + $12 = $10&255; + $13 = ((($0)) + 2|0); + HEAP8[$13>>0] = $12; + $14 = $2&255; + $15 = ((($0)) + 3|0); + HEAP8[$15>>0] = $14; + $16 = (_bitshift64Lshr(($1|0),($2|0),24)|0); + $17 = tempRet0; + $18 = $16&255; + $19 = ((($0)) + 4|0); + HEAP8[$19>>0] = $18; + $20 = (_bitshift64Lshr(($1|0),($2|0),16)|0); + $21 = tempRet0; + $22 = $20&255; + $23 = ((($0)) + 5|0); + HEAP8[$23>>0] = $22; + $24 = (_bitshift64Lshr(($1|0),($2|0),8)|0); + $25 = tempRet0; + $26 = $24&255; + $27 = ((($0)) + 6|0); + HEAP8[$27>>0] = $26; + $28 = $1&255; + $29 = ((($0)) + 7|0); + HEAP8[$29>>0] = $28; return; } -function _sph_enc64be($dst,$0,$1) { - $dst = $dst|0; +function _sph_enc64be($0,$1,$2) { $0 = $0|0; $1 = $1|0; - var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0; var $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $2 = (_bitshift64Lshr(($0|0),($1|0),56)|0); - $3 = tempRet0; - $4 = $2&255; - HEAP8[$dst>>0] = $4; - $5 = (_bitshift64Lshr(($0|0),($1|0),48)|0); - $6 = tempRet0; - $7 = $5&255; - $8 = ((($dst)) + 1|0); - HEAP8[$8>>0] = $7; - $9 = (_bitshift64Lshr(($0|0),($1|0),40)|0); - $10 = tempRet0; - $11 = $9&255; - $12 = ((($dst)) + 2|0); - HEAP8[$12>>0] = $11; - $13 = $1&255; - $14 = ((($dst)) + 3|0); - HEAP8[$14>>0] = $13; - $15 = (_bitshift64Lshr(($0|0),($1|0),24)|0); - $16 = tempRet0; - $17 = $15&255; - $18 = ((($dst)) + 4|0); - HEAP8[$18>>0] = $17; - $19 = (_bitshift64Lshr(($0|0),($1|0),16)|0); - $20 = tempRet0; - $21 = $19&255; - $22 = ((($dst)) + 5|0); - HEAP8[$22>>0] = $21; - $23 = (_bitshift64Lshr(($0|0),($1|0),8)|0); - $24 = tempRet0; - $25 = $23&255; - $26 = ((($dst)) + 6|0); - HEAP8[$26>>0] = $25; - $27 = $0&255; - $28 = ((($dst)) + 7|0); - HEAP8[$28>>0] = $27; + $3 = (_bitshift64Lshr(($1|0),($2|0),56)|0); + $4 = tempRet0; + $5 = $3&255; + HEAP8[$0>>0] = $5; + $6 = (_bitshift64Lshr(($1|0),($2|0),48)|0); + $7 = tempRet0; + $8 = $6&255; + $9 = ((($0)) + 1|0); + HEAP8[$9>>0] = $8; + $10 = (_bitshift64Lshr(($1|0),($2|0),40)|0); + $11 = tempRet0; + $12 = $10&255; + $13 = ((($0)) + 2|0); + HEAP8[$13>>0] = $12; + $14 = $2&255; + $15 = ((($0)) + 3|0); + HEAP8[$15>>0] = $14; + $16 = (_bitshift64Lshr(($1|0),($2|0),24)|0); + $17 = tempRet0; + $18 = $16&255; + $19 = ((($0)) + 4|0); + HEAP8[$19>>0] = $18; + $20 = (_bitshift64Lshr(($1|0),($2|0),16)|0); + $21 = tempRet0; + $22 = $20&255; + $23 = ((($0)) + 5|0); + HEAP8[$23>>0] = $22; + $24 = (_bitshift64Lshr(($1|0),($2|0),8)|0); + $25 = tempRet0; + $26 = $24&255; + $27 = ((($0)) + 6|0); + HEAP8[$27>>0] = $26; + $28 = $1&255; + $29 = ((($0)) + 7|0); + HEAP8[$29>>0] = $28; return; } -function _sph_dec64be_aligned($src) { - $src = $src|0; - var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0; - var $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0; - var $45 = 0, $46 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP8[$src>>0]|0; - $1 = $0&255; - $2 = (_bitshift64Shl(($1|0),0,56)|0); - $3 = tempRet0; - $4 = ((($src)) + 1|0); - $5 = HEAP8[$4>>0]|0; - $6 = $5&255; - $7 = (_bitshift64Shl(($6|0),0,48)|0); - $8 = tempRet0; - $9 = $7 | $2; - $10 = $8 | $3; - $11 = ((($src)) + 2|0); - $12 = HEAP8[$11>>0]|0; - $13 = $12&255; - $14 = (_bitshift64Shl(($13|0),0,40)|0); - $15 = tempRet0; - $16 = $9 | $14; - $17 = $10 | $15; - $18 = ((($src)) + 3|0); - $19 = HEAP8[$18>>0]|0; - $20 = $19&255; - $21 = $17 | $20; - $22 = ((($src)) + 4|0); - $23 = HEAP8[$22>>0]|0; - $24 = $23&255; - $25 = (_bitshift64Shl(($24|0),0,24)|0); - $26 = tempRet0; - $27 = $16 | $25; - $28 = $21 | $26; - $29 = ((($src)) + 5|0); - $30 = HEAP8[$29>>0]|0; - $31 = $30&255; - $32 = (_bitshift64Shl(($31|0),0,16)|0); - $33 = tempRet0; - $34 = $27 | $32; - $35 = $28 | $33; - $36 = ((($src)) + 6|0); - $37 = HEAP8[$36>>0]|0; - $38 = $37&255; - $39 = (_bitshift64Shl(($38|0),0,8)|0); - $40 = tempRet0; - $41 = $34 | $39; - $42 = $35 | $40; - $43 = ((($src)) + 7|0); - $44 = HEAP8[$43>>0]|0; - $45 = $44&255; - $46 = $41 | $45; - tempRet0 = ($42); - return ($46|0); -} -function ___errno_location() { - var $$0 = 0, $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = HEAP32[32512>>2]|0; - $1 = ($0|0)==(0|0); - if ($1) { - $$0 = 32560; - } else { - $2 = (_pthread_self()|0); - $3 = ((($2)) + 60|0); - $4 = HEAP32[$3>>2]|0; - $$0 = $4; - } - return ($$0|0); -} -function ___syscall_ret($r) { - $r = $r|0; - var $$0 = 0, $0 = 0, $1 = 0, $2 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = ($r>>>0)>(4294963200); - if ($0) { - $1 = (0 - ($r))|0; - $2 = (___errno_location()|0); - HEAP32[$2>>2] = $1; - $$0 = -1; - } else { - $$0 = $r; - } - return ($$0|0); -} -function ___lockfile($f) { - $f = $f|0; +function _sph_sha512_close($0,$1) { + $0 = $0|0; + $1 = $1|0; var label = 0, sp = 0; sp = STACKTOP; - return 0; + _sha384_close($0,$1,8); + _sph_sha512_init($0); + return; } -function ___unlockfile($f) { - $f = $f|0; +function _emscripten_get_global_libc() { var label = 0, sp = 0; sp = STACKTOP; - return; + return (32888|0); } -function ___stdio_close($f) { - $f = $f|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $vararg_buffer = 0, label = 0, sp = 0; +function ___stdio_close($0) { + $0 = $0|0; + var $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $vararg_buffer = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 16|0; $vararg_buffer = sp; - $0 = ((($f)) + 60|0); - $1 = HEAP32[$0>>2]|0; - HEAP32[$vararg_buffer>>2] = $1; - $2 = (___syscall6(6,($vararg_buffer|0))|0); - $3 = (___syscall_ret($2)|0); - STACKTOP = sp;return ($3|0); -} -function ___stdio_seek($f,$off,$whence) { - $f = $f|0; - $off = $off|0; - $whence = $whence|0; - var $$pre = 0, $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $ret = 0, $vararg_buffer = 0, $vararg_ptr1 = 0, $vararg_ptr2 = 0, $vararg_ptr3 = 0, $vararg_ptr4 = 0, label = 0, sp = 0; - sp = STACKTOP; - STACKTOP = STACKTOP + 32|0; - $vararg_buffer = sp; - $ret = sp + 20|0; - $0 = ((($f)) + 60|0); - $1 = HEAP32[$0>>2]|0; - HEAP32[$vararg_buffer>>2] = $1; - $vararg_ptr1 = ((($vararg_buffer)) + 4|0); - HEAP32[$vararg_ptr1>>2] = 0; - $vararg_ptr2 = ((($vararg_buffer)) + 8|0); - HEAP32[$vararg_ptr2>>2] = $off; - $vararg_ptr3 = ((($vararg_buffer)) + 12|0); - HEAP32[$vararg_ptr3>>2] = $ret; - $vararg_ptr4 = ((($vararg_buffer)) + 16|0); - HEAP32[$vararg_ptr4>>2] = $whence; - $2 = (___syscall140(140,($vararg_buffer|0))|0); - $3 = (___syscall_ret($2)|0); - $4 = ($3|0)<(0); - if ($4) { - HEAP32[$ret>>2] = -1; - $5 = -1; - } else { - $$pre = HEAP32[$ret>>2]|0; - $5 = $$pre; - } + $1 = ((($0)) + 60|0); + $2 = HEAP32[$1>>2]|0; + $3 = (_dummy_570($2)|0); + HEAP32[$vararg_buffer>>2] = $3; + $4 = (___syscall6(6,($vararg_buffer|0))|0); + $5 = (___syscall_ret($4)|0); STACKTOP = sp;return ($5|0); } -function ___stdio_write($f,$buf,$len) { - $f = $f|0; - $buf = $buf|0; - $len = $len|0; - var $$0 = 0, $$phi$trans$insert = 0, $$pre = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0; - var $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0; - var $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $cnt$0 = 0, $cnt$1 = 0, $iov$0 = 0, $iov$0$lcssa11 = 0, $iov$1 = 0, $iovcnt$0 = 0; - var $iovcnt$0$lcssa12 = 0, $iovcnt$1 = 0, $iovs = 0, $rem$0 = 0, $vararg_buffer = 0, $vararg_buffer3 = 0, $vararg_ptr1 = 0, $vararg_ptr2 = 0, $vararg_ptr6 = 0, $vararg_ptr7 = 0, label = 0, sp = 0; +function ___stdio_write($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $$0 = 0, $$04756 = 0, $$04855 = 0, $$04954 = 0, $$051 = 0, $$1 = 0, $$150 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $20 = 0, $21 = 0, $22 = 0; + var $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0; + var $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $vararg_buffer = 0, $vararg_buffer3 = 0, $vararg_ptr1 = 0, $vararg_ptr2 = 0, $vararg_ptr6 = 0; + var $vararg_ptr7 = 0, label = 0, sp = 0; sp = STACKTOP; STACKTOP = STACKTOP + 48|0; $vararg_buffer3 = sp + 16|0; $vararg_buffer = sp; - $iovs = sp + 32|0; - $0 = ((($f)) + 28|0); - $1 = HEAP32[$0>>2]|0; - HEAP32[$iovs>>2] = $1; - $2 = ((($iovs)) + 4|0); - $3 = ((($f)) + 20|0); - $4 = HEAP32[$3>>2]|0; - $5 = $4; - $6 = (($5) - ($1))|0; - HEAP32[$2>>2] = $6; - $7 = ((($iovs)) + 8|0); - HEAP32[$7>>2] = $buf; - $8 = ((($iovs)) + 12|0); - HEAP32[$8>>2] = $len; - $9 = (($6) + ($len))|0; - $10 = ((($f)) + 60|0); - $11 = ((($f)) + 44|0); - $iov$0 = $iovs;$iovcnt$0 = 2;$rem$0 = $9; - while(1) { - $12 = HEAP32[32512>>2]|0; - $13 = ($12|0)==(0|0); - if ($13) { - $17 = HEAP32[$10>>2]|0; - HEAP32[$vararg_buffer3>>2] = $17; - $vararg_ptr6 = ((($vararg_buffer3)) + 4|0); - HEAP32[$vararg_ptr6>>2] = $iov$0; - $vararg_ptr7 = ((($vararg_buffer3)) + 8|0); - HEAP32[$vararg_ptr7>>2] = $iovcnt$0; - $18 = (___syscall146(146,($vararg_buffer3|0))|0); - $19 = (___syscall_ret($18)|0); - $cnt$0 = $19; - } else { - _pthread_cleanup_push((1|0),($f|0)); - $14 = HEAP32[$10>>2]|0; - HEAP32[$vararg_buffer>>2] = $14; - $vararg_ptr1 = ((($vararg_buffer)) + 4|0); - HEAP32[$vararg_ptr1>>2] = $iov$0; - $vararg_ptr2 = ((($vararg_buffer)) + 8|0); - HEAP32[$vararg_ptr2>>2] = $iovcnt$0; - $15 = (___syscall146(146,($vararg_buffer|0))|0); - $16 = (___syscall_ret($15)|0); - _pthread_cleanup_pop(0); - $cnt$0 = $16; - } - $20 = ($rem$0|0)==($cnt$0|0); - if ($20) { - label = 6; - break; - } - $27 = ($cnt$0|0)<(0); - if ($27) { - $iov$0$lcssa11 = $iov$0;$iovcnt$0$lcssa12 = $iovcnt$0; - label = 8; - break; - } - $35 = (($rem$0) - ($cnt$0))|0; - $36 = ((($iov$0)) + 4|0); - $37 = HEAP32[$36>>2]|0; - $38 = ($cnt$0>>>0)>($37>>>0); - if ($38) { - $39 = HEAP32[$11>>2]|0; - HEAP32[$0>>2] = $39; - HEAP32[$3>>2] = $39; - $40 = (($cnt$0) - ($37))|0; - $41 = ((($iov$0)) + 8|0); - $42 = (($iovcnt$0) + -1)|0; - $$phi$trans$insert = ((($iov$0)) + 12|0); - $$pre = HEAP32[$$phi$trans$insert>>2]|0; - $50 = $$pre;$cnt$1 = $40;$iov$1 = $41;$iovcnt$1 = $42; + $3 = sp + 32|0; + $4 = ((($0)) + 28|0); + $5 = HEAP32[$4>>2]|0; + HEAP32[$3>>2] = $5; + $6 = ((($3)) + 4|0); + $7 = ((($0)) + 20|0); + $8 = HEAP32[$7>>2]|0; + $9 = (($8) - ($5))|0; + HEAP32[$6>>2] = $9; + $10 = ((($3)) + 8|0); + HEAP32[$10>>2] = $1; + $11 = ((($3)) + 12|0); + HEAP32[$11>>2] = $2; + $12 = (($9) + ($2))|0; + $13 = ((($0)) + 60|0); + $14 = HEAP32[$13>>2]|0; + $15 = $3; + HEAP32[$vararg_buffer>>2] = $14; + $vararg_ptr1 = ((($vararg_buffer)) + 4|0); + HEAP32[$vararg_ptr1>>2] = $15; + $vararg_ptr2 = ((($vararg_buffer)) + 8|0); + HEAP32[$vararg_ptr2>>2] = 2; + $16 = (___syscall146(146,($vararg_buffer|0))|0); + $17 = (___syscall_ret($16)|0); + $18 = ($12|0)==($17|0); + L1: do { + if ($18) { + label = 3; } else { - $43 = ($iovcnt$0|0)==(2); - if ($43) { - $44 = HEAP32[$0>>2]|0; - $45 = (($44) + ($cnt$0)|0); - HEAP32[$0>>2] = $45; - $50 = $37;$cnt$1 = $cnt$0;$iov$1 = $iov$0;$iovcnt$1 = 2; + $$04756 = 2;$$04855 = $12;$$04954 = $3;$26 = $17; + while(1) { + $25 = ($26|0)<(0); + if ($25) { + break; + } + $34 = (($$04855) - ($26))|0; + $35 = ((($$04954)) + 4|0); + $36 = HEAP32[$35>>2]|0; + $37 = ($26>>>0)>($36>>>0); + $38 = ((($$04954)) + 8|0); + $$150 = $37 ? $38 : $$04954; + $39 = $37 << 31 >> 31; + $$1 = (($39) + ($$04756))|0; + $40 = $37 ? $36 : 0; + $$0 = (($26) - ($40))|0; + $41 = HEAP32[$$150>>2]|0; + $42 = (($41) + ($$0)|0); + HEAP32[$$150>>2] = $42; + $43 = ((($$150)) + 4|0); + $44 = HEAP32[$43>>2]|0; + $45 = (($44) - ($$0))|0; + HEAP32[$43>>2] = $45; + $46 = HEAP32[$13>>2]|0; + $47 = $$150; + HEAP32[$vararg_buffer3>>2] = $46; + $vararg_ptr6 = ((($vararg_buffer3)) + 4|0); + HEAP32[$vararg_ptr6>>2] = $47; + $vararg_ptr7 = ((($vararg_buffer3)) + 8|0); + HEAP32[$vararg_ptr7>>2] = $$1; + $48 = (___syscall146(146,($vararg_buffer3|0))|0); + $49 = (___syscall_ret($48)|0); + $50 = ($34|0)==($49|0); + if ($50) { + label = 3; + break L1; + } else { + $$04756 = $$1;$$04855 = $34;$$04954 = $$150;$26 = $49; + } + } + $27 = ((($0)) + 16|0); + HEAP32[$27>>2] = 0; + HEAP32[$4>>2] = 0; + HEAP32[$7>>2] = 0; + $28 = HEAP32[$0>>2]|0; + $29 = $28 | 32; + HEAP32[$0>>2] = $29; + $30 = ($$04756|0)==(2); + if ($30) { + $$051 = 0; } else { - $50 = $37;$cnt$1 = $cnt$0;$iov$1 = $iov$0;$iovcnt$1 = $iovcnt$0; + $31 = ((($$04954)) + 4|0); + $32 = HEAP32[$31>>2]|0; + $33 = (($2) - ($32))|0; + $$051 = $33; } } - $46 = HEAP32[$iov$1>>2]|0; - $47 = (($46) + ($cnt$1)|0); - HEAP32[$iov$1>>2] = $47; - $48 = ((($iov$1)) + 4|0); - $49 = (($50) - ($cnt$1))|0; - HEAP32[$48>>2] = $49; - $iov$0 = $iov$1;$iovcnt$0 = $iovcnt$1;$rem$0 = $35; + } while(0); + if ((label|0) == 3) { + $19 = ((($0)) + 44|0); + $20 = HEAP32[$19>>2]|0; + $21 = ((($0)) + 48|0); + $22 = HEAP32[$21>>2]|0; + $23 = (($20) + ($22)|0); + $24 = ((($0)) + 16|0); + HEAP32[$24>>2] = $23; + HEAP32[$4>>2] = $20; + HEAP32[$7>>2] = $20; + $$051 = $2; } - if ((label|0) == 6) { - $21 = HEAP32[$11>>2]|0; - $22 = ((($f)) + 48|0); - $23 = HEAP32[$22>>2]|0; - $24 = (($21) + ($23)|0); - $25 = ((($f)) + 16|0); - HEAP32[$25>>2] = $24; - $26 = $21; - HEAP32[$0>>2] = $26; - HEAP32[$3>>2] = $26; - $$0 = $len; + STACKTOP = sp;return ($$051|0); +} +function ___stdio_seek($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $$pre = 0, $10 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $vararg_buffer = 0, $vararg_ptr1 = 0, $vararg_ptr2 = 0, $vararg_ptr3 = 0, $vararg_ptr4 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 32|0; + $vararg_buffer = sp; + $3 = sp + 20|0; + $4 = ((($0)) + 60|0); + $5 = HEAP32[$4>>2]|0; + $6 = $3; + HEAP32[$vararg_buffer>>2] = $5; + $vararg_ptr1 = ((($vararg_buffer)) + 4|0); + HEAP32[$vararg_ptr1>>2] = 0; + $vararg_ptr2 = ((($vararg_buffer)) + 8|0); + HEAP32[$vararg_ptr2>>2] = $1; + $vararg_ptr3 = ((($vararg_buffer)) + 12|0); + HEAP32[$vararg_ptr3>>2] = $6; + $vararg_ptr4 = ((($vararg_buffer)) + 16|0); + HEAP32[$vararg_ptr4>>2] = $2; + $7 = (___syscall140(140,($vararg_buffer|0))|0); + $8 = (___syscall_ret($7)|0); + $9 = ($8|0)<(0); + if ($9) { + HEAP32[$3>>2] = -1; + $10 = -1; + } else { + $$pre = HEAP32[$3>>2]|0; + $10 = $$pre; } - else if ((label|0) == 8) { - $28 = ((($f)) + 16|0); - HEAP32[$28>>2] = 0; - HEAP32[$0>>2] = 0; - HEAP32[$3>>2] = 0; - $29 = HEAP32[$f>>2]|0; - $30 = $29 | 32; - HEAP32[$f>>2] = $30; - $31 = ($iovcnt$0$lcssa12|0)==(2); - if ($31) { - $$0 = 0; - } else { - $32 = ((($iov$0$lcssa11)) + 4|0); - $33 = HEAP32[$32>>2]|0; - $34 = (($len) - ($33))|0; - $$0 = $34; - } + STACKTOP = sp;return ($10|0); +} +function ___syscall_ret($0) { + $0 = $0|0; + var $$0 = 0, $1 = 0, $2 = 0, $3 = 0, label = 0, sp = 0; + sp = STACKTOP; + $1 = ($0>>>0)>(4294963200); + if ($1) { + $2 = (0 - ($0))|0; + $3 = (___errno_location()|0); + HEAP32[$3>>2] = $2; + $$0 = -1; + } else { + $$0 = $0; } - STACKTOP = sp;return ($$0|0); + return ($$0|0); +} +function ___errno_location() { + var $0 = 0, $1 = 0, label = 0, sp = 0; + sp = STACKTOP; + $0 = (___pthread_self_103()|0); + $1 = ((($0)) + 64|0); + return ($1|0); } -function ___stdout_write($f,$buf,$len) { - $f = $f|0; - $buf = $buf|0; - $len = $len|0; - var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $tio = 0, $vararg_buffer = 0, $vararg_ptr1 = 0, $vararg_ptr2 = 0, label = 0, sp = 0; +function ___pthread_self_103() { + var $0 = 0, label = 0, sp = 0; sp = STACKTOP; - STACKTOP = STACKTOP + 80|0; + $0 = (_pthread_self()|0); + return ($0|0); +} +function _pthread_self() { + var label = 0, sp = 0; + sp = STACKTOP; + return (32512|0); +} +function _dummy_570($0) { + $0 = $0|0; + var label = 0, sp = 0; + sp = STACKTOP; + return ($0|0); +} +function ___stdout_write($0,$1,$2) { + $0 = $0|0; + $1 = $1|0; + $2 = $2|0; + var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $vararg_buffer = 0, $vararg_ptr1 = 0, $vararg_ptr2 = 0, label = 0, sp = 0; + sp = STACKTOP; + STACKTOP = STACKTOP + 32|0; $vararg_buffer = sp; - $tio = sp + 12|0; - $0 = ((($f)) + 36|0); - HEAP32[$0>>2] = 3; - $1 = HEAP32[$f>>2]|0; - $2 = $1 & 64; - $3 = ($2|0)==(0); - if ($3) { - $4 = ((($f)) + 60|0); - $5 = HEAP32[$4>>2]|0; - HEAP32[$vararg_buffer>>2] = $5; + $3 = sp + 16|0; + $4 = ((($0)) + 36|0); + HEAP32[$4>>2] = 3; + $5 = HEAP32[$0>>2]|0; + $6 = $5 & 64; + $7 = ($6|0)==(0); + if ($7) { + $8 = ((($0)) + 60|0); + $9 = HEAP32[$8>>2]|0; + $10 = $3; + HEAP32[$vararg_buffer>>2] = $9; $vararg_ptr1 = ((($vararg_buffer)) + 4|0); - HEAP32[$vararg_ptr1>>2] = 21505; + HEAP32[$vararg_ptr1>>2] = 21523; $vararg_ptr2 = ((($vararg_buffer)) + 8|0); - HEAP32[$vararg_ptr2>>2] = $tio; - $6 = (___syscall54(54,($vararg_buffer|0))|0); - $7 = ($6|0)==(0); - if (!($7)) { - $8 = ((($f)) + 75|0); - HEAP8[$8>>0] = -1; + HEAP32[$vararg_ptr2>>2] = $10; + $11 = (___syscall54(54,($vararg_buffer|0))|0); + $12 = ($11|0)==(0); + if (!($12)) { + $13 = ((($0)) + 75|0); + HEAP8[$13>>0] = -1; } } - $9 = (___stdio_write($f,$buf,$len)|0); - STACKTOP = sp;return ($9|0); + $14 = (___stdio_write($0,$1,$2)|0); + STACKTOP = sp;return ($14|0); +} +function ___lockfile($0) { + $0 = $0|0; + var label = 0, sp = 0; + sp = STACKTOP; + return 0; +} +function ___unlockfile($0) { + $0 = $0|0; + var label = 0, sp = 0; + sp = STACKTOP; + return; } -function _fflush($f) { - $f = $f|0; - var $$0 = 0, $$01 = 0, $$012 = 0, $$014 = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0; - var $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $phitmp = 0, $r$0$lcssa = 0, $r$03 = 0, $r$1 = 0, label = 0, sp = 0; +function ___ofl_lock() { + var label = 0, sp = 0; + sp = STACKTOP; + ___lock((32952|0)); + return (32960|0); +} +function ___ofl_unlock() { + var label = 0, sp = 0; + sp = STACKTOP; + ___unlock((32952|0)); + return; +} +function _fflush($0) { + $0 = $0|0; + var $$0 = 0, $$023 = 0, $$02325 = 0, $$02327 = 0, $$024$lcssa = 0, $$02426 = 0, $$1 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0; + var $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $phitmp = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = ($f|0)==(0|0); + $1 = ($0|0)==(0|0); do { - if ($0) { - $7 = HEAP32[32556>>2]|0; - $8 = ($7|0)==(0|0); - if ($8) { - $27 = 0; + if ($1) { + $8 = HEAP32[8220]|0; + $9 = ($8|0)==(0|0); + if ($9) { + $29 = 0; } else { - $9 = HEAP32[32556>>2]|0; - $10 = (_fflush($9)|0); - $27 = $10; + $10 = HEAP32[8220]|0; + $11 = (_fflush($10)|0); + $29 = $11; } - ___lock(((32540)|0)); - $$012 = HEAP32[(32536)>>2]|0; - $11 = ($$012|0)==(0|0); - if ($11) { - $r$0$lcssa = $27; + $12 = (___ofl_lock()|0); + $$02325 = HEAP32[$12>>2]|0; + $13 = ($$02325|0)==(0|0); + if ($13) { + $$024$lcssa = $29; } else { - $$014 = $$012;$r$03 = $27; + $$02327 = $$02325;$$02426 = $29; while(1) { - $12 = ((($$014)) + 76|0); - $13 = HEAP32[$12>>2]|0; - $14 = ($13|0)>(-1); - if ($14) { - $15 = (___lockfile($$014)|0); - $24 = $15; + $14 = ((($$02327)) + 76|0); + $15 = HEAP32[$14>>2]|0; + $16 = ($15|0)>(-1); + if ($16) { + $17 = (___lockfile($$02327)|0); + $26 = $17; } else { - $24 = 0; + $26 = 0; } - $16 = ((($$014)) + 20|0); - $17 = HEAP32[$16>>2]|0; - $18 = ((($$014)) + 28|0); + $18 = ((($$02327)) + 20|0); $19 = HEAP32[$18>>2]|0; - $20 = ($17>>>0)>($19>>>0); - if ($20) { - $21 = (___fflush_unlocked($$014)|0); - $22 = $21 | $r$03; - $r$1 = $22; + $20 = ((($$02327)) + 28|0); + $21 = HEAP32[$20>>2]|0; + $22 = ($19>>>0)>($21>>>0); + if ($22) { + $23 = (___fflush_unlocked($$02327)|0); + $24 = $23 | $$02426; + $$1 = $24; } else { - $r$1 = $r$03; + $$1 = $$02426; } - $23 = ($24|0)==(0); - if (!($23)) { - ___unlockfile($$014); + $25 = ($26|0)==(0); + if (!($25)) { + ___unlockfile($$02327); } - $25 = ((($$014)) + 56|0); - $$01 = HEAP32[$25>>2]|0; - $26 = ($$01|0)==(0|0); - if ($26) { - $r$0$lcssa = $r$1; + $27 = ((($$02327)) + 56|0); + $$023 = HEAP32[$27>>2]|0; + $28 = ($$023|0)==(0|0); + if ($28) { + $$024$lcssa = $$1; break; } else { - $$014 = $$01;$r$03 = $r$1; + $$02327 = $$023;$$02426 = $$1; } } } - ___unlock(((32540)|0)); - $$0 = $r$0$lcssa; + ___ofl_unlock(); + $$0 = $$024$lcssa; } else { - $1 = ((($f)) + 76|0); - $2 = HEAP32[$1>>2]|0; - $3 = ($2|0)>(-1); - if (!($3)) { - $4 = (___fflush_unlocked($f)|0); - $$0 = $4; + $2 = ((($0)) + 76|0); + $3 = HEAP32[$2>>2]|0; + $4 = ($3|0)>(-1); + if (!($4)) { + $5 = (___fflush_unlocked($0)|0); + $$0 = $5; break; } - $5 = (___lockfile($f)|0); - $phitmp = ($5|0)==(0); - $6 = (___fflush_unlocked($f)|0); + $6 = (___lockfile($0)|0); + $phitmp = ($6|0)==(0); + $7 = (___fflush_unlocked($0)|0); if ($phitmp) { - $$0 = $6; + $$0 = $7; } else { - ___unlockfile($f); - $$0 = $6; + ___unlockfile($0); + $$0 = $7; } } } while(0); return ($$0|0); } -function _cleanup392($p) { - $p = $p|0; - var $0 = 0, $1 = 0, $2 = 0, label = 0, sp = 0; - sp = STACKTOP; - $0 = ((($p)) + 68|0); - $1 = HEAP32[$0>>2]|0; - $2 = ($1|0)==(0); - if ($2) { - ___unlockfile($p); - } - return; -} -function ___fflush_unlocked($f) { - $f = $f|0; - var $$0 = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0; +function ___fflush_unlocked($0) { + $0 = $0|0; + var $$0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0; var $9 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = ((($f)) + 20|0); - $1 = HEAP32[$0>>2]|0; - $2 = ((($f)) + 28|0); - $3 = HEAP32[$2>>2]|0; - $4 = ($1>>>0)>($3>>>0); - if ($4) { - $5 = ((($f)) + 36|0); - $6 = HEAP32[$5>>2]|0; - (FUNCTION_TABLE_iiii[$6 & 3]($f,0,0)|0); - $7 = HEAP32[$0>>2]|0; - $8 = ($7|0)==(0|0); - if ($8) { + $1 = ((($0)) + 20|0); + $2 = HEAP32[$1>>2]|0; + $3 = ((($0)) + 28|0); + $4 = HEAP32[$3>>2]|0; + $5 = ($2>>>0)>($4>>>0); + if ($5) { + $6 = ((($0)) + 36|0); + $7 = HEAP32[$6>>2]|0; + (FUNCTION_TABLE_iiii[$7 & 3]($0,0,0)|0); + $8 = HEAP32[$1>>2]|0; + $9 = ($8|0)==(0|0); + if ($9) { $$0 = -1; } else { label = 3; @@ -20643,140 +17055,135 @@ function ___fflush_unlocked($f) { label = 3; } if ((label|0) == 3) { - $9 = ((($f)) + 4|0); - $10 = HEAP32[$9>>2]|0; - $11 = ((($f)) + 8|0); - $12 = HEAP32[$11>>2]|0; - $13 = ($10>>>0)<($12>>>0); - if ($13) { - $14 = ((($f)) + 40|0); - $15 = HEAP32[$14>>2]|0; - $16 = $10; - $17 = $12; - $18 = (($16) - ($17))|0; - (FUNCTION_TABLE_iiii[$15 & 3]($f,$18,1)|0); - } - $19 = ((($f)) + 16|0); - HEAP32[$19>>2] = 0; - HEAP32[$2>>2] = 0; - HEAP32[$0>>2] = 0; - HEAP32[$11>>2] = 0; - HEAP32[$9>>2] = 0; + $10 = ((($0)) + 4|0); + $11 = HEAP32[$10>>2]|0; + $12 = ((($0)) + 8|0); + $13 = HEAP32[$12>>2]|0; + $14 = ($11>>>0)<($13>>>0); + if ($14) { + $15 = $11; + $16 = $13; + $17 = (($15) - ($16))|0; + $18 = ((($0)) + 40|0); + $19 = HEAP32[$18>>2]|0; + (FUNCTION_TABLE_iiii[$19 & 3]($0,$17,1)|0); + } + $20 = ((($0)) + 16|0); + HEAP32[$20>>2] = 0; + HEAP32[$3>>2] = 0; + HEAP32[$1>>2] = 0; + HEAP32[$12>>2] = 0; + HEAP32[$10>>2] = 0; $$0 = 0; } return ($$0|0); } -function _malloc($bytes) { - $bytes = $bytes|0; - var $$3$i = 0, $$lcssa = 0, $$lcssa211 = 0, $$lcssa215 = 0, $$lcssa216 = 0, $$lcssa217 = 0, $$lcssa219 = 0, $$lcssa222 = 0, $$lcssa224 = 0, $$lcssa226 = 0, $$lcssa228 = 0, $$lcssa230 = 0, $$lcssa232 = 0, $$pre = 0, $$pre$i = 0, $$pre$i$i = 0, $$pre$i22$i = 0, $$pre$i25 = 0, $$pre$phi$i$iZ2D = 0, $$pre$phi$i23$iZ2D = 0; - var $$pre$phi$i26Z2D = 0, $$pre$phi$iZ2D = 0, $$pre$phi58$i$iZ2D = 0, $$pre$phiZ2D = 0, $$pre105 = 0, $$pre106 = 0, $$pre14$i$i = 0, $$pre43$i = 0, $$pre56$i$i = 0, $$pre57$i$i = 0, $$pre8$i = 0, $$rsize$0$i = 0, $$rsize$3$i = 0, $$sum = 0, $$sum$i$i = 0, $$sum$i$i$i = 0, $$sum$i13$i = 0, $$sum$i14$i = 0, $$sum$i17$i = 0, $$sum$i19$i = 0; - var $$sum$i2334 = 0, $$sum$i32 = 0, $$sum$i35 = 0, $$sum1 = 0, $$sum1$i = 0, $$sum1$i$i = 0, $$sum1$i15$i = 0, $$sum1$i20$i = 0, $$sum1$i24 = 0, $$sum10 = 0, $$sum10$i = 0, $$sum10$i$i = 0, $$sum11$i = 0, $$sum11$i$i = 0, $$sum1112 = 0, $$sum112$i = 0, $$sum113$i = 0, $$sum114$i = 0, $$sum115$i = 0, $$sum116$i = 0; - var $$sum117$i = 0, $$sum118$i = 0, $$sum119$i = 0, $$sum12$i = 0, $$sum12$i$i = 0, $$sum120$i = 0, $$sum121$i = 0, $$sum122$i = 0, $$sum123$i = 0, $$sum124$i = 0, $$sum125$i = 0, $$sum13$i = 0, $$sum13$i$i = 0, $$sum14$i$i = 0, $$sum15$i = 0, $$sum15$i$i = 0, $$sum16$i = 0, $$sum16$i$i = 0, $$sum17$i = 0, $$sum17$i$i = 0; - var $$sum18$i = 0, $$sum1819$i$i = 0, $$sum2 = 0, $$sum2$i = 0, $$sum2$i$i = 0, $$sum2$i$i$i = 0, $$sum2$i16$i = 0, $$sum2$i18$i = 0, $$sum2$i21$i = 0, $$sum20$i$i = 0, $$sum21$i$i = 0, $$sum22$i$i = 0, $$sum23$i$i = 0, $$sum24$i$i = 0, $$sum25$i$i = 0, $$sum27$i$i = 0, $$sum28$i$i = 0, $$sum29$i$i = 0, $$sum3$i = 0, $$sum3$i27 = 0; - var $$sum30$i$i = 0, $$sum3132$i$i = 0, $$sum34$i$i = 0, $$sum3536$i$i = 0, $$sum3738$i$i = 0, $$sum39$i$i = 0, $$sum4 = 0, $$sum4$i = 0, $$sum4$i$i = 0, $$sum4$i28 = 0, $$sum40$i$i = 0, $$sum41$i$i = 0, $$sum42$i$i = 0, $$sum5$i = 0, $$sum5$i$i = 0, $$sum56 = 0, $$sum6$i = 0, $$sum67$i$i = 0, $$sum7$i = 0, $$sum8$i = 0; - var $$sum9 = 0, $$sum9$i = 0, $$sum9$i$i = 0, $$tsize$1$i = 0, $$v$0$i = 0, $0 = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0, $101 = 0; - var $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0, $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0, $1028 = 0; - var $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0, $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0, $1046 = 0; - var $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0, $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $1059 = 0, $106 = 0, $1060 = 0, $1061 = 0, $1062 = 0, $1063 = 0, $1064 = 0; - var $1065 = 0, $1066 = 0, $1067 = 0, $1068 = 0, $1069 = 0, $107 = 0, $1070 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0; - var $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0; - var $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0; - var $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0; - var $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0; - var $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0; - var $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0; - var $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0; - var $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0; - var $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0; - var $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0; - var $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0; - var $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0, $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0; - var $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0, $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0; - var $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0, $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0; - var $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0, $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0; - var $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0, $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0; - var $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0, $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0; - var $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0, $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0; - var $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0, $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0; - var $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0, $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0; - var $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0, $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0; - var $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0, $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0; - var $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0, $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0; - var $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0, $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0; - var $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0, $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0; - var $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0, $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0; - var $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0, $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0; - var $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0, $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0; - var $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0, $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0; - var $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0, $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0; - var $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0, $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0; - var $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0, $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0; - var $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0, $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0; - var $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0, $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0; - var $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0, $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0; - var $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0, $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0; - var $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0, $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0; - var $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0, $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0; - var $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0, $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0; - var $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0, $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0; - var $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0, $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0; - var $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0, $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0; - var $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0, $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0; - var $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0, $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0, $91 = 0, $910 = 0, $911 = 0; - var $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0, $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0, $928 = 0, $929 = 0, $93 = 0; - var $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0, $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0, $946 = 0, $947 = 0, $948 = 0; - var $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0, $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0, $964 = 0, $965 = 0, $966 = 0; - var $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0, $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0; - var $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0, $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, $F$0$i$i = 0, $F1$0$i = 0, $F4$0 = 0, $F4$0$i$i = 0; - var $F5$0$i = 0, $I1$0$i$i = 0, $I7$0$i = 0, $I7$0$i$i = 0, $K12$029$i = 0, $K2$07$i$i = 0, $K8$051$i$i = 0, $R$0$i = 0, $R$0$i$i = 0, $R$0$i$i$lcssa = 0, $R$0$i$lcssa = 0, $R$0$i18 = 0, $R$0$i18$lcssa = 0, $R$1$i = 0, $R$1$i$i = 0, $R$1$i20 = 0, $RP$0$i = 0, $RP$0$i$i = 0, $RP$0$i$i$lcssa = 0, $RP$0$i$lcssa = 0; - var $RP$0$i17 = 0, $RP$0$i17$lcssa = 0, $T$0$lcssa$i = 0, $T$0$lcssa$i$i = 0, $T$0$lcssa$i25$i = 0, $T$028$i = 0, $T$028$i$lcssa = 0, $T$050$i$i = 0, $T$050$i$i$lcssa = 0, $T$06$i$i = 0, $T$06$i$i$lcssa = 0, $br$0$ph$i = 0, $cond$i = 0, $cond$i$i = 0, $cond$i21 = 0, $exitcond$i$i = 0, $i$02$i$i = 0, $idx$0$i = 0, $mem$0 = 0, $nb$0 = 0; - var $not$$i = 0, $not$$i$i = 0, $not$$i26$i = 0, $oldfirst$0$i$i = 0, $or$cond$i = 0, $or$cond$i30 = 0, $or$cond1$i = 0, $or$cond19$i = 0, $or$cond2$i = 0, $or$cond3$i = 0, $or$cond5$i = 0, $or$cond57$i = 0, $or$cond6$i = 0, $or$cond8$i = 0, $or$cond9$i = 0, $qsize$0$i$i = 0, $rsize$0$i = 0, $rsize$0$i$lcssa = 0, $rsize$0$i15 = 0, $rsize$1$i = 0; - var $rsize$2$i = 0, $rsize$3$lcssa$i = 0, $rsize$331$i = 0, $rst$0$i = 0, $rst$1$i = 0, $sizebits$0$i = 0, $sp$0$i$i = 0, $sp$0$i$i$i = 0, $sp$084$i = 0, $sp$084$i$lcssa = 0, $sp$183$i = 0, $sp$183$i$lcssa = 0, $ssize$0$$i = 0, $ssize$0$i = 0, $ssize$1$ph$i = 0, $ssize$2$i = 0, $t$0$i = 0, $t$0$i14 = 0, $t$1$i = 0, $t$2$ph$i = 0; - var $t$2$v$3$i = 0, $t$230$i = 0, $tbase$255$i = 0, $tsize$0$ph$i = 0, $tsize$0323944$i = 0, $tsize$1$i = 0, $tsize$254$i = 0, $v$0$i = 0, $v$0$i$lcssa = 0, $v$0$i16 = 0, $v$1$i = 0, $v$2$i = 0, $v$3$lcssa$i = 0, $v$3$ph$i = 0, $v$332$i = 0, label = 0, sp = 0; +function _malloc($0) { + $0 = $0|0; + var $$$0192$i = 0, $$$0193$i = 0, $$$4236$i = 0, $$$4351$i = 0, $$$i = 0, $$0 = 0, $$0$i$i = 0, $$0$i$i$i = 0, $$0$i18$i = 0, $$01$i$i = 0, $$0189$i = 0, $$0192$lcssa$i = 0, $$01928$i = 0, $$0193$lcssa$i = 0, $$01937$i = 0, $$0197 = 0, $$0199 = 0, $$0206$i$i = 0, $$0207$i$i = 0, $$0211$i$i = 0; + var $$0212$i$i = 0, $$024371$i = 0, $$0287$i$i = 0, $$0288$i$i = 0, $$0289$i$i = 0, $$0295$i$i = 0, $$0296$i$i = 0, $$0342$i = 0, $$0344$i = 0, $$0345$i = 0, $$0347$i = 0, $$0353$i = 0, $$0358$i = 0, $$0359$$i = 0, $$0359$i = 0, $$0361$i = 0, $$0362$i = 0, $$0368$i = 0, $$1196$i = 0, $$1198$i = 0; + var $$124470$i = 0, $$1291$i$i = 0, $$1293$i$i = 0, $$1343$i = 0, $$1348$i = 0, $$1363$i = 0, $$1370$i = 0, $$1374$i = 0, $$2234253237$i = 0, $$2247$ph$i = 0, $$2253$ph$i = 0, $$2355$i = 0, $$3$i = 0, $$3$i$i = 0, $$3$i201 = 0, $$3350$i = 0, $$3372$i = 0, $$4$lcssa$i = 0, $$4$ph$i = 0, $$415$i = 0; + var $$4236$i = 0, $$4351$lcssa$i = 0, $$435114$i = 0, $$4357$$4$i = 0, $$4357$ph$i = 0, $$435713$i = 0, $$723948$i = 0, $$749$i = 0, $$pre = 0, $$pre$i = 0, $$pre$i$i = 0, $$pre$i19$i = 0, $$pre$i210 = 0, $$pre$i212 = 0, $$pre$phi$i$iZ2D = 0, $$pre$phi$i20$iZ2D = 0, $$pre$phi$i211Z2D = 0, $$pre$phi$iZ2D = 0, $$pre$phi11$i$iZ2D = 0, $$pre$phiZ2D = 0; + var $$pre10$i$i = 0, $$sink1$i = 0, $$sink1$i$i = 0, $$sink16$i = 0, $$sink2$i = 0, $$sink2$i204 = 0, $$sink3$i = 0, $1 = 0, $10 = 0, $100 = 0, $1000 = 0, $1001 = 0, $1002 = 0, $1003 = 0, $1004 = 0, $1005 = 0, $1006 = 0, $1007 = 0, $1008 = 0, $1009 = 0; + var $101 = 0, $1010 = 0, $1011 = 0, $1012 = 0, $1013 = 0, $1014 = 0, $1015 = 0, $1016 = 0, $1017 = 0, $1018 = 0, $1019 = 0, $102 = 0, $1020 = 0, $1021 = 0, $1022 = 0, $1023 = 0, $1024 = 0, $1025 = 0, $1026 = 0, $1027 = 0; + var $1028 = 0, $1029 = 0, $103 = 0, $1030 = 0, $1031 = 0, $1032 = 0, $1033 = 0, $1034 = 0, $1035 = 0, $1036 = 0, $1037 = 0, $1038 = 0, $1039 = 0, $104 = 0, $1040 = 0, $1041 = 0, $1042 = 0, $1043 = 0, $1044 = 0, $1045 = 0; + var $1046 = 0, $1047 = 0, $1048 = 0, $1049 = 0, $105 = 0, $1050 = 0, $1051 = 0, $1052 = 0, $1053 = 0, $1054 = 0, $1055 = 0, $1056 = 0, $1057 = 0, $1058 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0; + var $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0; + var $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0; + var $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0; + var $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0; + var $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0; + var $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0; + var $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0; + var $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0; + var $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0; + var $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0; + var $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0; + var $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0, $321 = 0, $322 = 0, $323 = 0, $324 = 0, $325 = 0, $326 = 0, $327 = 0; + var $328 = 0, $329 = 0, $33 = 0, $330 = 0, $331 = 0, $332 = 0, $333 = 0, $334 = 0, $335 = 0, $336 = 0, $337 = 0, $338 = 0, $339 = 0, $34 = 0, $340 = 0, $341 = 0, $342 = 0, $343 = 0, $344 = 0, $345 = 0; + var $346 = 0, $347 = 0, $348 = 0, $349 = 0, $35 = 0, $350 = 0, $351 = 0, $352 = 0, $353 = 0, $354 = 0, $355 = 0, $356 = 0, $357 = 0, $358 = 0, $359 = 0, $36 = 0, $360 = 0, $361 = 0, $362 = 0, $363 = 0; + var $364 = 0, $365 = 0, $366 = 0, $367 = 0, $368 = 0, $369 = 0, $37 = 0, $370 = 0, $371 = 0, $372 = 0, $373 = 0, $374 = 0, $375 = 0, $376 = 0, $377 = 0, $378 = 0, $379 = 0, $38 = 0, $380 = 0, $381 = 0; + var $382 = 0, $383 = 0, $384 = 0, $385 = 0, $386 = 0, $387 = 0, $388 = 0, $389 = 0, $39 = 0, $390 = 0, $391 = 0, $392 = 0, $393 = 0, $394 = 0, $395 = 0, $396 = 0, $397 = 0, $398 = 0, $399 = 0, $4 = 0; + var $40 = 0, $400 = 0, $401 = 0, $402 = 0, $403 = 0, $404 = 0, $405 = 0, $406 = 0, $407 = 0, $408 = 0, $409 = 0, $41 = 0, $410 = 0, $411 = 0, $412 = 0, $413 = 0, $414 = 0, $415 = 0, $416 = 0, $417 = 0; + var $418 = 0, $419 = 0, $42 = 0, $420 = 0, $421 = 0, $422 = 0, $423 = 0, $424 = 0, $425 = 0, $426 = 0, $427 = 0, $428 = 0, $429 = 0, $43 = 0, $430 = 0, $431 = 0, $432 = 0, $433 = 0, $434 = 0, $435 = 0; + var $436 = 0, $437 = 0, $438 = 0, $439 = 0, $44 = 0, $440 = 0, $441 = 0, $442 = 0, $443 = 0, $444 = 0, $445 = 0, $446 = 0, $447 = 0, $448 = 0, $449 = 0, $45 = 0, $450 = 0, $451 = 0, $452 = 0, $453 = 0; + var $454 = 0, $455 = 0, $456 = 0, $457 = 0, $458 = 0, $459 = 0, $46 = 0, $460 = 0, $461 = 0, $462 = 0, $463 = 0, $464 = 0, $465 = 0, $466 = 0, $467 = 0, $468 = 0, $469 = 0, $47 = 0, $470 = 0, $471 = 0; + var $472 = 0, $473 = 0, $474 = 0, $475 = 0, $476 = 0, $477 = 0, $478 = 0, $479 = 0, $48 = 0, $480 = 0, $481 = 0, $482 = 0, $483 = 0, $484 = 0, $485 = 0, $486 = 0, $487 = 0, $488 = 0, $489 = 0, $49 = 0; + var $490 = 0, $491 = 0, $492 = 0, $493 = 0, $494 = 0, $495 = 0, $496 = 0, $497 = 0, $498 = 0, $499 = 0, $5 = 0, $50 = 0, $500 = 0, $501 = 0, $502 = 0, $503 = 0, $504 = 0, $505 = 0, $506 = 0, $507 = 0; + var $508 = 0, $509 = 0, $51 = 0, $510 = 0, $511 = 0, $512 = 0, $513 = 0, $514 = 0, $515 = 0, $516 = 0, $517 = 0, $518 = 0, $519 = 0, $52 = 0, $520 = 0, $521 = 0, $522 = 0, $523 = 0, $524 = 0, $525 = 0; + var $526 = 0, $527 = 0, $528 = 0, $529 = 0, $53 = 0, $530 = 0, $531 = 0, $532 = 0, $533 = 0, $534 = 0, $535 = 0, $536 = 0, $537 = 0, $538 = 0, $539 = 0, $54 = 0, $540 = 0, $541 = 0, $542 = 0, $543 = 0; + var $544 = 0, $545 = 0, $546 = 0, $547 = 0, $548 = 0, $549 = 0, $55 = 0, $550 = 0, $551 = 0, $552 = 0, $553 = 0, $554 = 0, $555 = 0, $556 = 0, $557 = 0, $558 = 0, $559 = 0, $56 = 0, $560 = 0, $561 = 0; + var $562 = 0, $563 = 0, $564 = 0, $565 = 0, $566 = 0, $567 = 0, $568 = 0, $569 = 0, $57 = 0, $570 = 0, $571 = 0, $572 = 0, $573 = 0, $574 = 0, $575 = 0, $576 = 0, $577 = 0, $578 = 0, $579 = 0, $58 = 0; + var $580 = 0, $581 = 0, $582 = 0, $583 = 0, $584 = 0, $585 = 0, $586 = 0, $587 = 0, $588 = 0, $589 = 0, $59 = 0, $590 = 0, $591 = 0, $592 = 0, $593 = 0, $594 = 0, $595 = 0, $596 = 0, $597 = 0, $598 = 0; + var $599 = 0, $6 = 0, $60 = 0, $600 = 0, $601 = 0, $602 = 0, $603 = 0, $604 = 0, $605 = 0, $606 = 0, $607 = 0, $608 = 0, $609 = 0, $61 = 0, $610 = 0, $611 = 0, $612 = 0, $613 = 0, $614 = 0, $615 = 0; + var $616 = 0, $617 = 0, $618 = 0, $619 = 0, $62 = 0, $620 = 0, $621 = 0, $622 = 0, $623 = 0, $624 = 0, $625 = 0, $626 = 0, $627 = 0, $628 = 0, $629 = 0, $63 = 0, $630 = 0, $631 = 0, $632 = 0, $633 = 0; + var $634 = 0, $635 = 0, $636 = 0, $637 = 0, $638 = 0, $639 = 0, $64 = 0, $640 = 0, $641 = 0, $642 = 0, $643 = 0, $644 = 0, $645 = 0, $646 = 0, $647 = 0, $648 = 0, $649 = 0, $65 = 0, $650 = 0, $651 = 0; + var $652 = 0, $653 = 0, $654 = 0, $655 = 0, $656 = 0, $657 = 0, $658 = 0, $659 = 0, $66 = 0, $660 = 0, $661 = 0, $662 = 0, $663 = 0, $664 = 0, $665 = 0, $666 = 0, $667 = 0, $668 = 0, $669 = 0, $67 = 0; + var $670 = 0, $671 = 0, $672 = 0, $673 = 0, $674 = 0, $675 = 0, $676 = 0, $677 = 0, $678 = 0, $679 = 0, $68 = 0, $680 = 0, $681 = 0, $682 = 0, $683 = 0, $684 = 0, $685 = 0, $686 = 0, $687 = 0, $688 = 0; + var $689 = 0, $69 = 0, $690 = 0, $691 = 0, $692 = 0, $693 = 0, $694 = 0, $695 = 0, $696 = 0, $697 = 0, $698 = 0, $699 = 0, $7 = 0, $70 = 0, $700 = 0, $701 = 0, $702 = 0, $703 = 0, $704 = 0, $705 = 0; + var $706 = 0, $707 = 0, $708 = 0, $709 = 0, $71 = 0, $710 = 0, $711 = 0, $712 = 0, $713 = 0, $714 = 0, $715 = 0, $716 = 0, $717 = 0, $718 = 0, $719 = 0, $72 = 0, $720 = 0, $721 = 0, $722 = 0, $723 = 0; + var $724 = 0, $725 = 0, $726 = 0, $727 = 0, $728 = 0, $729 = 0, $73 = 0, $730 = 0, $731 = 0, $732 = 0, $733 = 0, $734 = 0, $735 = 0, $736 = 0, $737 = 0, $738 = 0, $739 = 0, $74 = 0, $740 = 0, $741 = 0; + var $742 = 0, $743 = 0, $744 = 0, $745 = 0, $746 = 0, $747 = 0, $748 = 0, $749 = 0, $75 = 0, $750 = 0, $751 = 0, $752 = 0, $753 = 0, $754 = 0, $755 = 0, $756 = 0, $757 = 0, $758 = 0, $759 = 0, $76 = 0; + var $760 = 0, $761 = 0, $762 = 0, $763 = 0, $764 = 0, $765 = 0, $766 = 0, $767 = 0, $768 = 0, $769 = 0, $77 = 0, $770 = 0, $771 = 0, $772 = 0, $773 = 0, $774 = 0, $775 = 0, $776 = 0, $777 = 0, $778 = 0; + var $779 = 0, $78 = 0, $780 = 0, $781 = 0, $782 = 0, $783 = 0, $784 = 0, $785 = 0, $786 = 0, $787 = 0, $788 = 0, $789 = 0, $79 = 0, $790 = 0, $791 = 0, $792 = 0, $793 = 0, $794 = 0, $795 = 0, $796 = 0; + var $797 = 0, $798 = 0, $799 = 0, $8 = 0, $80 = 0, $800 = 0, $801 = 0, $802 = 0, $803 = 0, $804 = 0, $805 = 0, $806 = 0, $807 = 0, $808 = 0, $809 = 0, $81 = 0, $810 = 0, $811 = 0, $812 = 0, $813 = 0; + var $814 = 0, $815 = 0, $816 = 0, $817 = 0, $818 = 0, $819 = 0, $82 = 0, $820 = 0, $821 = 0, $822 = 0, $823 = 0, $824 = 0, $825 = 0, $826 = 0, $827 = 0, $828 = 0, $829 = 0, $83 = 0, $830 = 0, $831 = 0; + var $832 = 0, $833 = 0, $834 = 0, $835 = 0, $836 = 0, $837 = 0, $838 = 0, $839 = 0, $84 = 0, $840 = 0, $841 = 0, $842 = 0, $843 = 0, $844 = 0, $845 = 0, $846 = 0, $847 = 0, $848 = 0, $849 = 0, $85 = 0; + var $850 = 0, $851 = 0, $852 = 0, $853 = 0, $854 = 0, $855 = 0, $856 = 0, $857 = 0, $858 = 0, $859 = 0, $86 = 0, $860 = 0, $861 = 0, $862 = 0, $863 = 0, $864 = 0, $865 = 0, $866 = 0, $867 = 0, $868 = 0; + var $869 = 0, $87 = 0, $870 = 0, $871 = 0, $872 = 0, $873 = 0, $874 = 0, $875 = 0, $876 = 0, $877 = 0, $878 = 0, $879 = 0, $88 = 0, $880 = 0, $881 = 0, $882 = 0, $883 = 0, $884 = 0, $885 = 0, $886 = 0; + var $887 = 0, $888 = 0, $889 = 0, $89 = 0, $890 = 0, $891 = 0, $892 = 0, $893 = 0, $894 = 0, $895 = 0, $896 = 0, $897 = 0, $898 = 0, $899 = 0, $9 = 0, $90 = 0, $900 = 0, $901 = 0, $902 = 0, $903 = 0; + var $904 = 0, $905 = 0, $906 = 0, $907 = 0, $908 = 0, $909 = 0, $91 = 0, $910 = 0, $911 = 0, $912 = 0, $913 = 0, $914 = 0, $915 = 0, $916 = 0, $917 = 0, $918 = 0, $919 = 0, $92 = 0, $920 = 0, $921 = 0; + var $922 = 0, $923 = 0, $924 = 0, $925 = 0, $926 = 0, $927 = 0, $928 = 0, $929 = 0, $93 = 0, $930 = 0, $931 = 0, $932 = 0, $933 = 0, $934 = 0, $935 = 0, $936 = 0, $937 = 0, $938 = 0, $939 = 0, $94 = 0; + var $940 = 0, $941 = 0, $942 = 0, $943 = 0, $944 = 0, $945 = 0, $946 = 0, $947 = 0, $948 = 0, $949 = 0, $95 = 0, $950 = 0, $951 = 0, $952 = 0, $953 = 0, $954 = 0, $955 = 0, $956 = 0, $957 = 0, $958 = 0; + var $959 = 0, $96 = 0, $960 = 0, $961 = 0, $962 = 0, $963 = 0, $964 = 0, $965 = 0, $966 = 0, $967 = 0, $968 = 0, $969 = 0, $97 = 0, $970 = 0, $971 = 0, $972 = 0, $973 = 0, $974 = 0, $975 = 0, $976 = 0; + var $977 = 0, $978 = 0, $979 = 0, $98 = 0, $980 = 0, $981 = 0, $982 = 0, $983 = 0, $984 = 0, $985 = 0, $986 = 0, $987 = 0, $988 = 0, $989 = 0, $99 = 0, $990 = 0, $991 = 0, $992 = 0, $993 = 0, $994 = 0; + var $995 = 0, $996 = 0, $997 = 0, $998 = 0, $999 = 0, $cond$i = 0, $cond$i$i = 0, $cond$i208 = 0, $exitcond$i$i = 0, $not$$i = 0, $not$$i$i = 0, $not$$i17$i = 0, $not$$i209 = 0, $not$$i216 = 0, $not$1$i = 0, $not$1$i203 = 0, $not$5$i = 0, $not$7$i$i = 0, $not$8$i = 0, $not$9$i = 0; + var $or$cond$i = 0, $or$cond$i214 = 0, $or$cond1$i = 0, $or$cond10$i = 0, $or$cond11$i = 0, $or$cond11$not$i = 0, $or$cond12$i = 0, $or$cond2$i = 0, $or$cond2$i215 = 0, $or$cond5$i = 0, $or$cond50$i = 0, $or$cond51$i = 0, $or$cond7$i = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = ($bytes>>>0)<(245); + STACKTOP = STACKTOP + 16|0; + $1 = sp; + $2 = ($0>>>0)<(245); do { - if ($0) { - $1 = ($bytes>>>0)<(11); - $2 = (($bytes) + 11)|0; - $3 = $2 & -8; - $4 = $1 ? 16 : $3; - $5 = $4 >>> 3; - $6 = HEAP32[32676>>2]|0; - $7 = $6 >>> $5; - $8 = $7 & 3; - $9 = ($8|0)==(0); - if (!($9)) { - $10 = $7 & 1; - $11 = $10 ^ 1; - $12 = (($11) + ($5))|0; - $13 = $12 << 1; - $14 = (32716 + ($13<<2)|0); - $$sum10 = (($13) + 2)|0; - $15 = (32716 + ($$sum10<<2)|0); - $16 = HEAP32[$15>>2]|0; + if ($2) { + $3 = ($0>>>0)<(11); + $4 = (($0) + 11)|0; + $5 = $4 & -8; + $6 = $3 ? 16 : $5; + $7 = $6 >>> 3; + $8 = HEAP32[8241]|0; + $9 = $8 >>> $7; + $10 = $9 & 3; + $11 = ($10|0)==(0); + if (!($11)) { + $12 = $9 & 1; + $13 = $12 ^ 1; + $14 = (($13) + ($7))|0; + $15 = $14 << 1; + $16 = (33004 + ($15<<2)|0); $17 = ((($16)) + 8|0); $18 = HEAP32[$17>>2]|0; - $19 = ($14|0)==($18|0); + $19 = ((($18)) + 8|0); + $20 = HEAP32[$19>>2]|0; + $21 = ($16|0)==($20|0); do { - if ($19) { - $20 = 1 << $12; - $21 = $20 ^ -1; - $22 = $6 & $21; - HEAP32[32676>>2] = $22; + if ($21) { + $22 = 1 << $14; + $23 = $22 ^ -1; + $24 = $8 & $23; + HEAP32[8241] = $24; } else { - $23 = HEAP32[(32692)>>2]|0; - $24 = ($18>>>0)<($23>>>0); - if ($24) { + $25 = HEAP32[(32980)>>2]|0; + $26 = ($20>>>0)<($25>>>0); + if ($26) { _abort(); // unreachable; } - $25 = ((($18)) + 12|0); - $26 = HEAP32[$25>>2]|0; - $27 = ($26|0)==($16|0); - if ($27) { - HEAP32[$25>>2] = $14; - HEAP32[$15>>2] = $18; + $27 = ((($20)) + 12|0); + $28 = HEAP32[$27>>2]|0; + $29 = ($28|0)==($18|0); + if ($29) { + HEAP32[$27>>2] = $16; + HEAP32[$17>>2] = $20; break; } else { _abort(); @@ -20784,81 +17191,79 @@ function _malloc($bytes) { } } } while(0); - $28 = $12 << 3; - $29 = $28 | 3; - $30 = ((($16)) + 4|0); - HEAP32[$30>>2] = $29; - $$sum1112 = $28 | 4; - $31 = (($16) + ($$sum1112)|0); - $32 = HEAP32[$31>>2]|0; - $33 = $32 | 1; - HEAP32[$31>>2] = $33; - $mem$0 = $17; - return ($mem$0|0); + $30 = $14 << 3; + $31 = $30 | 3; + $32 = ((($18)) + 4|0); + HEAP32[$32>>2] = $31; + $33 = (($18) + ($30)|0); + $34 = ((($33)) + 4|0); + $35 = HEAP32[$34>>2]|0; + $36 = $35 | 1; + HEAP32[$34>>2] = $36; + $$0 = $19; + STACKTOP = sp;return ($$0|0); } - $34 = HEAP32[(32684)>>2]|0; - $35 = ($4>>>0)>($34>>>0); - if ($35) { - $36 = ($7|0)==(0); - if (!($36)) { - $37 = $7 << $5; - $38 = 2 << $5; - $39 = (0 - ($38))|0; - $40 = $38 | $39; - $41 = $37 & $40; + $37 = HEAP32[(32972)>>2]|0; + $38 = ($6>>>0)>($37>>>0); + if ($38) { + $39 = ($9|0)==(0); + if (!($39)) { + $40 = $9 << $7; + $41 = 2 << $7; $42 = (0 - ($41))|0; - $43 = $41 & $42; - $44 = (($43) + -1)|0; - $45 = $44 >>> 12; - $46 = $45 & 16; - $47 = $44 >>> $46; - $48 = $47 >>> 5; - $49 = $48 & 8; - $50 = $49 | $46; - $51 = $47 >>> $49; - $52 = $51 >>> 2; - $53 = $52 & 4; - $54 = $50 | $53; - $55 = $51 >>> $53; - $56 = $55 >>> 1; - $57 = $56 & 2; - $58 = $54 | $57; - $59 = $55 >>> $57; - $60 = $59 >>> 1; - $61 = $60 & 1; - $62 = $58 | $61; - $63 = $59 >>> $61; - $64 = (($62) + ($63))|0; - $65 = $64 << 1; - $66 = (32716 + ($65<<2)|0); - $$sum4 = (($65) + 2)|0; - $67 = (32716 + ($$sum4<<2)|0); - $68 = HEAP32[$67>>2]|0; - $69 = ((($68)) + 8|0); - $70 = HEAP32[$69>>2]|0; - $71 = ($66|0)==($70|0); + $43 = $41 | $42; + $44 = $40 & $43; + $45 = (0 - ($44))|0; + $46 = $44 & $45; + $47 = (($46) + -1)|0; + $48 = $47 >>> 12; + $49 = $48 & 16; + $50 = $47 >>> $49; + $51 = $50 >>> 5; + $52 = $51 & 8; + $53 = $52 | $49; + $54 = $50 >>> $52; + $55 = $54 >>> 2; + $56 = $55 & 4; + $57 = $53 | $56; + $58 = $54 >>> $56; + $59 = $58 >>> 1; + $60 = $59 & 2; + $61 = $57 | $60; + $62 = $58 >>> $60; + $63 = $62 >>> 1; + $64 = $63 & 1; + $65 = $61 | $64; + $66 = $62 >>> $64; + $67 = (($65) + ($66))|0; + $68 = $67 << 1; + $69 = (33004 + ($68<<2)|0); + $70 = ((($69)) + 8|0); + $71 = HEAP32[$70>>2]|0; + $72 = ((($71)) + 8|0); + $73 = HEAP32[$72>>2]|0; + $74 = ($69|0)==($73|0); do { - if ($71) { - $72 = 1 << $64; - $73 = $72 ^ -1; - $74 = $6 & $73; - HEAP32[32676>>2] = $74; - $89 = $34; + if ($74) { + $75 = 1 << $67; + $76 = $75 ^ -1; + $77 = $8 & $76; + HEAP32[8241] = $77; + $98 = $77; } else { - $75 = HEAP32[(32692)>>2]|0; - $76 = ($70>>>0)<($75>>>0); - if ($76) { + $78 = HEAP32[(32980)>>2]|0; + $79 = ($73>>>0)<($78>>>0); + if ($79) { _abort(); // unreachable; } - $77 = ((($70)) + 12|0); - $78 = HEAP32[$77>>2]|0; - $79 = ($78|0)==($68|0); - if ($79) { - HEAP32[$77>>2] = $66; - HEAP32[$67>>2] = $70; - $$pre = HEAP32[(32684)>>2]|0; - $89 = $$pre; + $80 = ((($73)) + 12|0); + $81 = HEAP32[$80>>2]|0; + $82 = ($81|0)==($71|0); + if ($82) { + HEAP32[$80>>2] = $69; + HEAP32[$70>>2] = $73; + $98 = $8; break; } else { _abort(); @@ -20866,205 +17271,207 @@ function _malloc($bytes) { } } } while(0); - $80 = $64 << 3; - $81 = (($80) - ($4))|0; - $82 = $4 | 3; - $83 = ((($68)) + 4|0); - HEAP32[$83>>2] = $82; - $84 = (($68) + ($4)|0); - $85 = $81 | 1; - $$sum56 = $4 | 4; - $86 = (($68) + ($$sum56)|0); + $83 = $67 << 3; + $84 = (($83) - ($6))|0; + $85 = $6 | 3; + $86 = ((($71)) + 4|0); HEAP32[$86>>2] = $85; - $87 = (($68) + ($80)|0); - HEAP32[$87>>2] = $81; - $88 = ($89|0)==(0); - if (!($88)) { - $90 = HEAP32[(32696)>>2]|0; - $91 = $89 >>> 3; - $92 = $91 << 1; - $93 = (32716 + ($92<<2)|0); - $94 = HEAP32[32676>>2]|0; - $95 = 1 << $91; - $96 = $94 & $95; - $97 = ($96|0)==(0); - if ($97) { - $98 = $94 | $95; - HEAP32[32676>>2] = $98; - $$pre105 = (($92) + 2)|0; - $$pre106 = (32716 + ($$pre105<<2)|0); - $$pre$phiZ2D = $$pre106;$F4$0 = $93; + $87 = (($71) + ($6)|0); + $88 = $84 | 1; + $89 = ((($87)) + 4|0); + HEAP32[$89>>2] = $88; + $90 = (($87) + ($84)|0); + HEAP32[$90>>2] = $84; + $91 = ($37|0)==(0); + if (!($91)) { + $92 = HEAP32[(32984)>>2]|0; + $93 = $37 >>> 3; + $94 = $93 << 1; + $95 = (33004 + ($94<<2)|0); + $96 = 1 << $93; + $97 = $98 & $96; + $99 = ($97|0)==(0); + if ($99) { + $100 = $98 | $96; + HEAP32[8241] = $100; + $$pre = ((($95)) + 8|0); + $$0199 = $95;$$pre$phiZ2D = $$pre; } else { - $$sum9 = (($92) + 2)|0; - $99 = (32716 + ($$sum9<<2)|0); - $100 = HEAP32[$99>>2]|0; - $101 = HEAP32[(32692)>>2]|0; - $102 = ($100>>>0)<($101>>>0); - if ($102) { + $101 = ((($95)) + 8|0); + $102 = HEAP32[$101>>2]|0; + $103 = HEAP32[(32980)>>2]|0; + $104 = ($102>>>0)<($103>>>0); + if ($104) { _abort(); // unreachable; } else { - $$pre$phiZ2D = $99;$F4$0 = $100; + $$0199 = $102;$$pre$phiZ2D = $101; } } - HEAP32[$$pre$phiZ2D>>2] = $90; - $103 = ((($F4$0)) + 12|0); - HEAP32[$103>>2] = $90; - $104 = ((($90)) + 8|0); - HEAP32[$104>>2] = $F4$0; - $105 = ((($90)) + 12|0); - HEAP32[$105>>2] = $93; + HEAP32[$$pre$phiZ2D>>2] = $92; + $105 = ((($$0199)) + 12|0); + HEAP32[$105>>2] = $92; + $106 = ((($92)) + 8|0); + HEAP32[$106>>2] = $$0199; + $107 = ((($92)) + 12|0); + HEAP32[$107>>2] = $95; } - HEAP32[(32684)>>2] = $81; - HEAP32[(32696)>>2] = $84; - $mem$0 = $69; - return ($mem$0|0); - } - $106 = HEAP32[(32680)>>2]|0; - $107 = ($106|0)==(0); - if ($107) { - $nb$0 = $4; + HEAP32[(32972)>>2] = $84; + HEAP32[(32984)>>2] = $87; + $$0 = $72; + STACKTOP = sp;return ($$0|0); + } + $108 = HEAP32[(32968)>>2]|0; + $109 = ($108|0)==(0); + if ($109) { + $$0197 = $6; } else { - $108 = (0 - ($106))|0; - $109 = $106 & $108; - $110 = (($109) + -1)|0; - $111 = $110 >>> 12; - $112 = $111 & 16; - $113 = $110 >>> $112; - $114 = $113 >>> 5; - $115 = $114 & 8; - $116 = $115 | $112; - $117 = $113 >>> $115; - $118 = $117 >>> 2; - $119 = $118 & 4; - $120 = $116 | $119; - $121 = $117 >>> $119; - $122 = $121 >>> 1; - $123 = $122 & 2; - $124 = $120 | $123; - $125 = $121 >>> $123; - $126 = $125 >>> 1; - $127 = $126 & 1; - $128 = $124 | $127; - $129 = $125 >>> $127; - $130 = (($128) + ($129))|0; - $131 = (32980 + ($130<<2)|0); - $132 = HEAP32[$131>>2]|0; - $133 = ((($132)) + 4|0); + $110 = (0 - ($108))|0; + $111 = $108 & $110; + $112 = (($111) + -1)|0; + $113 = $112 >>> 12; + $114 = $113 & 16; + $115 = $112 >>> $114; + $116 = $115 >>> 5; + $117 = $116 & 8; + $118 = $117 | $114; + $119 = $115 >>> $117; + $120 = $119 >>> 2; + $121 = $120 & 4; + $122 = $118 | $121; + $123 = $119 >>> $121; + $124 = $123 >>> 1; + $125 = $124 & 2; + $126 = $122 | $125; + $127 = $123 >>> $125; + $128 = $127 >>> 1; + $129 = $128 & 1; + $130 = $126 | $129; + $131 = $127 >>> $129; + $132 = (($130) + ($131))|0; + $133 = (33268 + ($132<<2)|0); $134 = HEAP32[$133>>2]|0; - $135 = $134 & -8; - $136 = (($135) - ($4))|0; - $rsize$0$i = $136;$t$0$i = $132;$v$0$i = $132; - while(1) { - $137 = ((($t$0$i)) + 16|0); - $138 = HEAP32[$137>>2]|0; - $139 = ($138|0)==(0|0); - if ($139) { - $140 = ((($t$0$i)) + 20|0); - $141 = HEAP32[$140>>2]|0; - $142 = ($141|0)==(0|0); - if ($142) { - $rsize$0$i$lcssa = $rsize$0$i;$v$0$i$lcssa = $v$0$i; + $135 = ((($134)) + 4|0); + $136 = HEAP32[$135>>2]|0; + $137 = $136 & -8; + $138 = (($137) - ($6))|0; + $139 = ((($134)) + 16|0); + $140 = HEAP32[$139>>2]|0; + $not$5$i = ($140|0)==(0|0); + $$sink16$i = $not$5$i&1; + $141 = (((($134)) + 16|0) + ($$sink16$i<<2)|0); + $142 = HEAP32[$141>>2]|0; + $143 = ($142|0)==(0|0); + if ($143) { + $$0192$lcssa$i = $134;$$0193$lcssa$i = $138; + } else { + $$01928$i = $134;$$01937$i = $138;$145 = $142; + while(1) { + $144 = ((($145)) + 4|0); + $146 = HEAP32[$144>>2]|0; + $147 = $146 & -8; + $148 = (($147) - ($6))|0; + $149 = ($148>>>0)<($$01937$i>>>0); + $$$0193$i = $149 ? $148 : $$01937$i; + $$$0192$i = $149 ? $145 : $$01928$i; + $150 = ((($145)) + 16|0); + $151 = HEAP32[$150>>2]|0; + $not$$i = ($151|0)==(0|0); + $$sink1$i = $not$$i&1; + $152 = (((($145)) + 16|0) + ($$sink1$i<<2)|0); + $153 = HEAP32[$152>>2]|0; + $154 = ($153|0)==(0|0); + if ($154) { + $$0192$lcssa$i = $$$0192$i;$$0193$lcssa$i = $$$0193$i; break; } else { - $144 = $141; + $$01928$i = $$$0192$i;$$01937$i = $$$0193$i;$145 = $153; } - } else { - $144 = $138; } - $143 = ((($144)) + 4|0); - $145 = HEAP32[$143>>2]|0; - $146 = $145 & -8; - $147 = (($146) - ($4))|0; - $148 = ($147>>>0)<($rsize$0$i>>>0); - $$rsize$0$i = $148 ? $147 : $rsize$0$i; - $$v$0$i = $148 ? $144 : $v$0$i; - $rsize$0$i = $$rsize$0$i;$t$0$i = $144;$v$0$i = $$v$0$i; } - $149 = HEAP32[(32692)>>2]|0; - $150 = ($v$0$i$lcssa>>>0)<($149>>>0); - if ($150) { + $155 = HEAP32[(32980)>>2]|0; + $156 = ($$0192$lcssa$i>>>0)<($155>>>0); + if ($156) { _abort(); // unreachable; } - $151 = (($v$0$i$lcssa) + ($4)|0); - $152 = ($v$0$i$lcssa>>>0)<($151>>>0); - if (!($152)) { + $157 = (($$0192$lcssa$i) + ($6)|0); + $158 = ($$0192$lcssa$i>>>0)<($157>>>0); + if (!($158)) { _abort(); // unreachable; } - $153 = ((($v$0$i$lcssa)) + 24|0); - $154 = HEAP32[$153>>2]|0; - $155 = ((($v$0$i$lcssa)) + 12|0); - $156 = HEAP32[$155>>2]|0; - $157 = ($156|0)==($v$0$i$lcssa|0); + $159 = ((($$0192$lcssa$i)) + 24|0); + $160 = HEAP32[$159>>2]|0; + $161 = ((($$0192$lcssa$i)) + 12|0); + $162 = HEAP32[$161>>2]|0; + $163 = ($162|0)==($$0192$lcssa$i|0); do { - if ($157) { - $167 = ((($v$0$i$lcssa)) + 20|0); - $168 = HEAP32[$167>>2]|0; - $169 = ($168|0)==(0|0); - if ($169) { - $170 = ((($v$0$i$lcssa)) + 16|0); - $171 = HEAP32[$170>>2]|0; - $172 = ($171|0)==(0|0); - if ($172) { - $R$1$i = 0; + if ($163) { + $173 = ((($$0192$lcssa$i)) + 20|0); + $174 = HEAP32[$173>>2]|0; + $175 = ($174|0)==(0|0); + if ($175) { + $176 = ((($$0192$lcssa$i)) + 16|0); + $177 = HEAP32[$176>>2]|0; + $178 = ($177|0)==(0|0); + if ($178) { + $$3$i = 0; break; } else { - $R$0$i = $171;$RP$0$i = $170; + $$1196$i = $177;$$1198$i = $176; } } else { - $R$0$i = $168;$RP$0$i = $167; + $$1196$i = $174;$$1198$i = $173; } while(1) { - $173 = ((($R$0$i)) + 20|0); - $174 = HEAP32[$173>>2]|0; - $175 = ($174|0)==(0|0); - if (!($175)) { - $R$0$i = $174;$RP$0$i = $173; + $179 = ((($$1196$i)) + 20|0); + $180 = HEAP32[$179>>2]|0; + $181 = ($180|0)==(0|0); + if (!($181)) { + $$1196$i = $180;$$1198$i = $179; continue; } - $176 = ((($R$0$i)) + 16|0); - $177 = HEAP32[$176>>2]|0; - $178 = ($177|0)==(0|0); - if ($178) { - $R$0$i$lcssa = $R$0$i;$RP$0$i$lcssa = $RP$0$i; + $182 = ((($$1196$i)) + 16|0); + $183 = HEAP32[$182>>2]|0; + $184 = ($183|0)==(0|0); + if ($184) { break; } else { - $R$0$i = $177;$RP$0$i = $176; + $$1196$i = $183;$$1198$i = $182; } } - $179 = ($RP$0$i$lcssa>>>0)<($149>>>0); - if ($179) { + $185 = ($$1198$i>>>0)<($155>>>0); + if ($185) { _abort(); // unreachable; } else { - HEAP32[$RP$0$i$lcssa>>2] = 0; - $R$1$i = $R$0$i$lcssa; + HEAP32[$$1198$i>>2] = 0; + $$3$i = $$1196$i; break; } } else { - $158 = ((($v$0$i$lcssa)) + 8|0); - $159 = HEAP32[$158>>2]|0; - $160 = ($159>>>0)<($149>>>0); - if ($160) { + $164 = ((($$0192$lcssa$i)) + 8|0); + $165 = HEAP32[$164>>2]|0; + $166 = ($165>>>0)<($155>>>0); + if ($166) { _abort(); // unreachable; } - $161 = ((($159)) + 12|0); - $162 = HEAP32[$161>>2]|0; - $163 = ($162|0)==($v$0$i$lcssa|0); - if (!($163)) { + $167 = ((($165)) + 12|0); + $168 = HEAP32[$167>>2]|0; + $169 = ($168|0)==($$0192$lcssa$i|0); + if (!($169)) { _abort(); // unreachable; } - $164 = ((($156)) + 8|0); - $165 = HEAP32[$164>>2]|0; - $166 = ($165|0)==($v$0$i$lcssa|0); - if ($166) { - HEAP32[$161>>2] = $156; - HEAP32[$164>>2] = $159; - $R$1$i = $156; + $170 = ((($162)) + 8|0); + $171 = HEAP32[$170>>2]|0; + $172 = ($171|0)==($$0192$lcssa$i|0); + if ($172) { + HEAP32[$167>>2] = $162; + HEAP32[$170>>2] = $165; + $$3$i = $162; break; } else { _abort(); @@ -21072,434 +17479,426 @@ function _malloc($bytes) { } } } while(0); - $180 = ($154|0)==(0|0); - do { - if (!($180)) { - $181 = ((($v$0$i$lcssa)) + 28|0); - $182 = HEAP32[$181>>2]|0; - $183 = (32980 + ($182<<2)|0); - $184 = HEAP32[$183>>2]|0; - $185 = ($v$0$i$lcssa|0)==($184|0); - if ($185) { - HEAP32[$183>>2] = $R$1$i; - $cond$i = ($R$1$i|0)==(0|0); - if ($cond$i) { - $186 = 1 << $182; - $187 = $186 ^ -1; - $188 = HEAP32[(32680)>>2]|0; - $189 = $188 & $187; - HEAP32[(32680)>>2] = $189; - break; - } - } else { - $190 = HEAP32[(32692)>>2]|0; - $191 = ($154>>>0)<($190>>>0); + $186 = ($160|0)==(0|0); + L73: do { + if (!($186)) { + $187 = ((($$0192$lcssa$i)) + 28|0); + $188 = HEAP32[$187>>2]|0; + $189 = (33268 + ($188<<2)|0); + $190 = HEAP32[$189>>2]|0; + $191 = ($$0192$lcssa$i|0)==($190|0); + do { if ($191) { - _abort(); - // unreachable; - } - $192 = ((($154)) + 16|0); - $193 = HEAP32[$192>>2]|0; - $194 = ($193|0)==($v$0$i$lcssa|0); - if ($194) { - HEAP32[$192>>2] = $R$1$i; + HEAP32[$189>>2] = $$3$i; + $cond$i = ($$3$i|0)==(0|0); + if ($cond$i) { + $192 = 1 << $188; + $193 = $192 ^ -1; + $194 = $108 & $193; + HEAP32[(32968)>>2] = $194; + break L73; + } } else { - $195 = ((($154)) + 20|0); - HEAP32[$195>>2] = $R$1$i; - } - $196 = ($R$1$i|0)==(0|0); - if ($196) { - break; + $195 = HEAP32[(32980)>>2]|0; + $196 = ($160>>>0)<($195>>>0); + if ($196) { + _abort(); + // unreachable; + } else { + $197 = ((($160)) + 16|0); + $198 = HEAP32[$197>>2]|0; + $not$1$i = ($198|0)!=($$0192$lcssa$i|0); + $$sink2$i = $not$1$i&1; + $199 = (((($160)) + 16|0) + ($$sink2$i<<2)|0); + HEAP32[$199>>2] = $$3$i; + $200 = ($$3$i|0)==(0|0); + if ($200) { + break L73; + } else { + break; + } + } } - } - $197 = HEAP32[(32692)>>2]|0; - $198 = ($R$1$i>>>0)<($197>>>0); - if ($198) { + } while(0); + $201 = HEAP32[(32980)>>2]|0; + $202 = ($$3$i>>>0)<($201>>>0); + if ($202) { _abort(); // unreachable; } - $199 = ((($R$1$i)) + 24|0); - HEAP32[$199>>2] = $154; - $200 = ((($v$0$i$lcssa)) + 16|0); - $201 = HEAP32[$200>>2]|0; - $202 = ($201|0)==(0|0); + $203 = ((($$3$i)) + 24|0); + HEAP32[$203>>2] = $160; + $204 = ((($$0192$lcssa$i)) + 16|0); + $205 = HEAP32[$204>>2]|0; + $206 = ($205|0)==(0|0); do { - if (!($202)) { - $203 = ($201>>>0)<($197>>>0); - if ($203) { + if (!($206)) { + $207 = ($205>>>0)<($201>>>0); + if ($207) { _abort(); // unreachable; } else { - $204 = ((($R$1$i)) + 16|0); - HEAP32[$204>>2] = $201; - $205 = ((($201)) + 24|0); - HEAP32[$205>>2] = $R$1$i; + $208 = ((($$3$i)) + 16|0); + HEAP32[$208>>2] = $205; + $209 = ((($205)) + 24|0); + HEAP32[$209>>2] = $$3$i; break; } } } while(0); - $206 = ((($v$0$i$lcssa)) + 20|0); - $207 = HEAP32[$206>>2]|0; - $208 = ($207|0)==(0|0); - if (!($208)) { - $209 = HEAP32[(32692)>>2]|0; - $210 = ($207>>>0)<($209>>>0); - if ($210) { + $210 = ((($$0192$lcssa$i)) + 20|0); + $211 = HEAP32[$210>>2]|0; + $212 = ($211|0)==(0|0); + if (!($212)) { + $213 = HEAP32[(32980)>>2]|0; + $214 = ($211>>>0)<($213>>>0); + if ($214) { _abort(); // unreachable; } else { - $211 = ((($R$1$i)) + 20|0); - HEAP32[$211>>2] = $207; - $212 = ((($207)) + 24|0); - HEAP32[$212>>2] = $R$1$i; + $215 = ((($$3$i)) + 20|0); + HEAP32[$215>>2] = $211; + $216 = ((($211)) + 24|0); + HEAP32[$216>>2] = $$3$i; break; } } } } while(0); - $213 = ($rsize$0$i$lcssa>>>0)<(16); - if ($213) { - $214 = (($rsize$0$i$lcssa) + ($4))|0; - $215 = $214 | 3; - $216 = ((($v$0$i$lcssa)) + 4|0); - HEAP32[$216>>2] = $215; - $$sum4$i = (($214) + 4)|0; - $217 = (($v$0$i$lcssa) + ($$sum4$i)|0); - $218 = HEAP32[$217>>2]|0; - $219 = $218 | 1; - HEAP32[$217>>2] = $219; + $217 = ($$0193$lcssa$i>>>0)<(16); + if ($217) { + $218 = (($$0193$lcssa$i) + ($6))|0; + $219 = $218 | 3; + $220 = ((($$0192$lcssa$i)) + 4|0); + HEAP32[$220>>2] = $219; + $221 = (($$0192$lcssa$i) + ($218)|0); + $222 = ((($221)) + 4|0); + $223 = HEAP32[$222>>2]|0; + $224 = $223 | 1; + HEAP32[$222>>2] = $224; } else { - $220 = $4 | 3; - $221 = ((($v$0$i$lcssa)) + 4|0); - HEAP32[$221>>2] = $220; - $222 = $rsize$0$i$lcssa | 1; - $$sum$i35 = $4 | 4; - $223 = (($v$0$i$lcssa) + ($$sum$i35)|0); - HEAP32[$223>>2] = $222; - $$sum1$i = (($rsize$0$i$lcssa) + ($4))|0; - $224 = (($v$0$i$lcssa) + ($$sum1$i)|0); - HEAP32[$224>>2] = $rsize$0$i$lcssa; - $225 = HEAP32[(32684)>>2]|0; - $226 = ($225|0)==(0); - if (!($226)) { - $227 = HEAP32[(32696)>>2]|0; - $228 = $225 >>> 3; - $229 = $228 << 1; - $230 = (32716 + ($229<<2)|0); - $231 = HEAP32[32676>>2]|0; - $232 = 1 << $228; - $233 = $231 & $232; - $234 = ($233|0)==(0); - if ($234) { - $235 = $231 | $232; - HEAP32[32676>>2] = $235; - $$pre$i = (($229) + 2)|0; - $$pre8$i = (32716 + ($$pre$i<<2)|0); - $$pre$phi$iZ2D = $$pre8$i;$F1$0$i = $230; + $225 = $6 | 3; + $226 = ((($$0192$lcssa$i)) + 4|0); + HEAP32[$226>>2] = $225; + $227 = $$0193$lcssa$i | 1; + $228 = ((($157)) + 4|0); + HEAP32[$228>>2] = $227; + $229 = (($157) + ($$0193$lcssa$i)|0); + HEAP32[$229>>2] = $$0193$lcssa$i; + $230 = ($37|0)==(0); + if (!($230)) { + $231 = HEAP32[(32984)>>2]|0; + $232 = $37 >>> 3; + $233 = $232 << 1; + $234 = (33004 + ($233<<2)|0); + $235 = 1 << $232; + $236 = $8 & $235; + $237 = ($236|0)==(0); + if ($237) { + $238 = $8 | $235; + HEAP32[8241] = $238; + $$pre$i = ((($234)) + 8|0); + $$0189$i = $234;$$pre$phi$iZ2D = $$pre$i; } else { - $$sum3$i = (($229) + 2)|0; - $236 = (32716 + ($$sum3$i<<2)|0); - $237 = HEAP32[$236>>2]|0; - $238 = HEAP32[(32692)>>2]|0; - $239 = ($237>>>0)<($238>>>0); - if ($239) { + $239 = ((($234)) + 8|0); + $240 = HEAP32[$239>>2]|0; + $241 = HEAP32[(32980)>>2]|0; + $242 = ($240>>>0)<($241>>>0); + if ($242) { _abort(); // unreachable; } else { - $$pre$phi$iZ2D = $236;$F1$0$i = $237; + $$0189$i = $240;$$pre$phi$iZ2D = $239; } } - HEAP32[$$pre$phi$iZ2D>>2] = $227; - $240 = ((($F1$0$i)) + 12|0); - HEAP32[$240>>2] = $227; - $241 = ((($227)) + 8|0); - HEAP32[$241>>2] = $F1$0$i; - $242 = ((($227)) + 12|0); - HEAP32[$242>>2] = $230; + HEAP32[$$pre$phi$iZ2D>>2] = $231; + $243 = ((($$0189$i)) + 12|0); + HEAP32[$243>>2] = $231; + $244 = ((($231)) + 8|0); + HEAP32[$244>>2] = $$0189$i; + $245 = ((($231)) + 12|0); + HEAP32[$245>>2] = $234; } - HEAP32[(32684)>>2] = $rsize$0$i$lcssa; - HEAP32[(32696)>>2] = $151; + HEAP32[(32972)>>2] = $$0193$lcssa$i; + HEAP32[(32984)>>2] = $157; } - $243 = ((($v$0$i$lcssa)) + 8|0); - $mem$0 = $243; - return ($mem$0|0); + $246 = ((($$0192$lcssa$i)) + 8|0); + $$0 = $246; + STACKTOP = sp;return ($$0|0); } } else { - $nb$0 = $4; + $$0197 = $6; } } else { - $244 = ($bytes>>>0)>(4294967231); - if ($244) { - $nb$0 = -1; + $247 = ($0>>>0)>(4294967231); + if ($247) { + $$0197 = -1; } else { - $245 = (($bytes) + 11)|0; - $246 = $245 & -8; - $247 = HEAP32[(32680)>>2]|0; - $248 = ($247|0)==(0); - if ($248) { - $nb$0 = $246; + $248 = (($0) + 11)|0; + $249 = $248 & -8; + $250 = HEAP32[(32968)>>2]|0; + $251 = ($250|0)==(0); + if ($251) { + $$0197 = $249; } else { - $249 = (0 - ($246))|0; - $250 = $245 >>> 8; - $251 = ($250|0)==(0); - if ($251) { - $idx$0$i = 0; + $252 = (0 - ($249))|0; + $253 = $248 >>> 8; + $254 = ($253|0)==(0); + if ($254) { + $$0358$i = 0; } else { - $252 = ($246>>>0)>(16777215); - if ($252) { - $idx$0$i = 31; + $255 = ($249>>>0)>(16777215); + if ($255) { + $$0358$i = 31; } else { - $253 = (($250) + 1048320)|0; - $254 = $253 >>> 16; - $255 = $254 & 8; - $256 = $250 << $255; - $257 = (($256) + 520192)|0; - $258 = $257 >>> 16; - $259 = $258 & 4; - $260 = $259 | $255; - $261 = $256 << $259; - $262 = (($261) + 245760)|0; - $263 = $262 >>> 16; - $264 = $263 & 2; - $265 = $260 | $264; - $266 = (14 - ($265))|0; - $267 = $261 << $264; - $268 = $267 >>> 15; - $269 = (($266) + ($268))|0; - $270 = $269 << 1; - $271 = (($269) + 7)|0; - $272 = $246 >>> $271; - $273 = $272 & 1; - $274 = $273 | $270; - $idx$0$i = $274; + $256 = (($253) + 1048320)|0; + $257 = $256 >>> 16; + $258 = $257 & 8; + $259 = $253 << $258; + $260 = (($259) + 520192)|0; + $261 = $260 >>> 16; + $262 = $261 & 4; + $263 = $262 | $258; + $264 = $259 << $262; + $265 = (($264) + 245760)|0; + $266 = $265 >>> 16; + $267 = $266 & 2; + $268 = $263 | $267; + $269 = (14 - ($268))|0; + $270 = $264 << $267; + $271 = $270 >>> 15; + $272 = (($269) + ($271))|0; + $273 = $272 << 1; + $274 = (($272) + 7)|0; + $275 = $249 >>> $274; + $276 = $275 & 1; + $277 = $276 | $273; + $$0358$i = $277; } } - $275 = (32980 + ($idx$0$i<<2)|0); - $276 = HEAP32[$275>>2]|0; - $277 = ($276|0)==(0|0); - L123: do { - if ($277) { - $rsize$2$i = $249;$t$1$i = 0;$v$2$i = 0; - label = 86; + $278 = (33268 + ($$0358$i<<2)|0); + $279 = HEAP32[$278>>2]|0; + $280 = ($279|0)==(0|0); + L117: do { + if ($280) { + $$2355$i = 0;$$3$i201 = 0;$$3350$i = $252; + label = 81; } else { - $278 = ($idx$0$i|0)==(31); - $279 = $idx$0$i >>> 1; - $280 = (25 - ($279))|0; - $281 = $278 ? 0 : $280; - $282 = $246 << $281; - $rsize$0$i15 = $249;$rst$0$i = 0;$sizebits$0$i = $282;$t$0$i14 = $276;$v$0$i16 = 0; + $281 = ($$0358$i|0)==(31); + $282 = $$0358$i >>> 1; + $283 = (25 - ($282))|0; + $284 = $281 ? 0 : $283; + $285 = $249 << $284; + $$0342$i = 0;$$0347$i = $252;$$0353$i = $279;$$0359$i = $285;$$0362$i = 0; while(1) { - $283 = ((($t$0$i14)) + 4|0); - $284 = HEAP32[$283>>2]|0; - $285 = $284 & -8; - $286 = (($285) - ($246))|0; - $287 = ($286>>>0)<($rsize$0$i15>>>0); - if ($287) { - $288 = ($285|0)==($246|0); - if ($288) { - $rsize$331$i = $286;$t$230$i = $t$0$i14;$v$332$i = $t$0$i14; - label = 90; - break L123; + $286 = ((($$0353$i)) + 4|0); + $287 = HEAP32[$286>>2]|0; + $288 = $287 & -8; + $289 = (($288) - ($249))|0; + $290 = ($289>>>0)<($$0347$i>>>0); + if ($290) { + $291 = ($289|0)==(0); + if ($291) { + $$415$i = $$0353$i;$$435114$i = 0;$$435713$i = $$0353$i; + label = 85; + break L117; } else { - $rsize$1$i = $286;$v$1$i = $t$0$i14; + $$1343$i = $$0353$i;$$1348$i = $289; } } else { - $rsize$1$i = $rsize$0$i15;$v$1$i = $v$0$i16; + $$1343$i = $$0342$i;$$1348$i = $$0347$i; } - $289 = ((($t$0$i14)) + 20|0); - $290 = HEAP32[$289>>2]|0; - $291 = $sizebits$0$i >>> 31; - $292 = (((($t$0$i14)) + 16|0) + ($291<<2)|0); + $292 = ((($$0353$i)) + 20|0); $293 = HEAP32[$292>>2]|0; - $294 = ($290|0)==(0|0); - $295 = ($290|0)==($293|0); - $or$cond19$i = $294 | $295; - $rst$1$i = $or$cond19$i ? $rst$0$i : $290; - $296 = ($293|0)==(0|0); - $297 = $sizebits$0$i << 1; - if ($296) { - $rsize$2$i = $rsize$1$i;$t$1$i = $rst$1$i;$v$2$i = $v$1$i; - label = 86; + $294 = $$0359$i >>> 31; + $295 = (((($$0353$i)) + 16|0) + ($294<<2)|0); + $296 = HEAP32[$295>>2]|0; + $297 = ($293|0)==(0|0); + $298 = ($293|0)==($296|0); + $or$cond2$i = $297 | $298; + $$1363$i = $or$cond2$i ? $$0362$i : $293; + $299 = ($296|0)==(0|0); + $not$8$i = $299 ^ 1; + $300 = $not$8$i&1; + $$0359$$i = $$0359$i << $300; + if ($299) { + $$2355$i = $$1363$i;$$3$i201 = $$1343$i;$$3350$i = $$1348$i; + label = 81; break; } else { - $rsize$0$i15 = $rsize$1$i;$rst$0$i = $rst$1$i;$sizebits$0$i = $297;$t$0$i14 = $293;$v$0$i16 = $v$1$i; + $$0342$i = $$1343$i;$$0347$i = $$1348$i;$$0353$i = $296;$$0359$i = $$0359$$i;$$0362$i = $$1363$i; } } } } while(0); - if ((label|0) == 86) { - $298 = ($t$1$i|0)==(0|0); - $299 = ($v$2$i|0)==(0|0); - $or$cond$i = $298 & $299; + if ((label|0) == 81) { + $301 = ($$2355$i|0)==(0|0); + $302 = ($$3$i201|0)==(0|0); + $or$cond$i = $301 & $302; if ($or$cond$i) { - $300 = 2 << $idx$0$i; - $301 = (0 - ($300))|0; - $302 = $300 | $301; - $303 = $247 & $302; - $304 = ($303|0)==(0); - if ($304) { - $nb$0 = $246; + $303 = 2 << $$0358$i; + $304 = (0 - ($303))|0; + $305 = $303 | $304; + $306 = $250 & $305; + $307 = ($306|0)==(0); + if ($307) { + $$0197 = $249; break; } - $305 = (0 - ($303))|0; - $306 = $303 & $305; - $307 = (($306) + -1)|0; - $308 = $307 >>> 12; - $309 = $308 & 16; - $310 = $307 >>> $309; - $311 = $310 >>> 5; - $312 = $311 & 8; - $313 = $312 | $309; - $314 = $310 >>> $312; - $315 = $314 >>> 2; - $316 = $315 & 4; - $317 = $313 | $316; - $318 = $314 >>> $316; - $319 = $318 >>> 1; - $320 = $319 & 2; - $321 = $317 | $320; - $322 = $318 >>> $320; - $323 = $322 >>> 1; - $324 = $323 & 1; - $325 = $321 | $324; - $326 = $322 >>> $324; - $327 = (($325) + ($326))|0; - $328 = (32980 + ($327<<2)|0); - $329 = HEAP32[$328>>2]|0; - $t$2$ph$i = $329;$v$3$ph$i = 0; + $308 = (0 - ($306))|0; + $309 = $306 & $308; + $310 = (($309) + -1)|0; + $311 = $310 >>> 12; + $312 = $311 & 16; + $313 = $310 >>> $312; + $314 = $313 >>> 5; + $315 = $314 & 8; + $316 = $315 | $312; + $317 = $313 >>> $315; + $318 = $317 >>> 2; + $319 = $318 & 4; + $320 = $316 | $319; + $321 = $317 >>> $319; + $322 = $321 >>> 1; + $323 = $322 & 2; + $324 = $320 | $323; + $325 = $321 >>> $323; + $326 = $325 >>> 1; + $327 = $326 & 1; + $328 = $324 | $327; + $329 = $325 >>> $327; + $330 = (($328) + ($329))|0; + $331 = (33268 + ($330<<2)|0); + $332 = HEAP32[$331>>2]|0; + $$4$ph$i = 0;$$4357$ph$i = $332; } else { - $t$2$ph$i = $t$1$i;$v$3$ph$i = $v$2$i; + $$4$ph$i = $$3$i201;$$4357$ph$i = $$2355$i; } - $330 = ($t$2$ph$i|0)==(0|0); - if ($330) { - $rsize$3$lcssa$i = $rsize$2$i;$v$3$lcssa$i = $v$3$ph$i; + $333 = ($$4357$ph$i|0)==(0|0); + if ($333) { + $$4$lcssa$i = $$4$ph$i;$$4351$lcssa$i = $$3350$i; } else { - $rsize$331$i = $rsize$2$i;$t$230$i = $t$2$ph$i;$v$332$i = $v$3$ph$i; - label = 90; + $$415$i = $$4$ph$i;$$435114$i = $$3350$i;$$435713$i = $$4357$ph$i; + label = 85; } } - if ((label|0) == 90) { + if ((label|0) == 85) { while(1) { label = 0; - $331 = ((($t$230$i)) + 4|0); - $332 = HEAP32[$331>>2]|0; - $333 = $332 & -8; - $334 = (($333) - ($246))|0; - $335 = ($334>>>0)<($rsize$331$i>>>0); - $$rsize$3$i = $335 ? $334 : $rsize$331$i; - $t$2$v$3$i = $335 ? $t$230$i : $v$332$i; - $336 = ((($t$230$i)) + 16|0); - $337 = HEAP32[$336>>2]|0; - $338 = ($337|0)==(0|0); - if (!($338)) { - $rsize$331$i = $$rsize$3$i;$t$230$i = $337;$v$332$i = $t$2$v$3$i; - label = 90; - continue; - } - $339 = ((($t$230$i)) + 20|0); + $334 = ((($$435713$i)) + 4|0); + $335 = HEAP32[$334>>2]|0; + $336 = $335 & -8; + $337 = (($336) - ($249))|0; + $338 = ($337>>>0)<($$435114$i>>>0); + $$$4351$i = $338 ? $337 : $$435114$i; + $$4357$$4$i = $338 ? $$435713$i : $$415$i; + $339 = ((($$435713$i)) + 16|0); $340 = HEAP32[$339>>2]|0; - $341 = ($340|0)==(0|0); - if ($341) { - $rsize$3$lcssa$i = $$rsize$3$i;$v$3$lcssa$i = $t$2$v$3$i; + $not$1$i203 = ($340|0)==(0|0); + $$sink2$i204 = $not$1$i203&1; + $341 = (((($$435713$i)) + 16|0) + ($$sink2$i204<<2)|0); + $342 = HEAP32[$341>>2]|0; + $343 = ($342|0)==(0|0); + if ($343) { + $$4$lcssa$i = $$4357$$4$i;$$4351$lcssa$i = $$$4351$i; break; } else { - $rsize$331$i = $$rsize$3$i;$t$230$i = $340;$v$332$i = $t$2$v$3$i; - label = 90; + $$415$i = $$4357$$4$i;$$435114$i = $$$4351$i;$$435713$i = $342; + label = 85; } } } - $342 = ($v$3$lcssa$i|0)==(0|0); - if ($342) { - $nb$0 = $246; + $344 = ($$4$lcssa$i|0)==(0|0); + if ($344) { + $$0197 = $249; } else { - $343 = HEAP32[(32684)>>2]|0; - $344 = (($343) - ($246))|0; - $345 = ($rsize$3$lcssa$i>>>0)<($344>>>0); - if ($345) { - $346 = HEAP32[(32692)>>2]|0; - $347 = ($v$3$lcssa$i>>>0)<($346>>>0); - if ($347) { + $345 = HEAP32[(32972)>>2]|0; + $346 = (($345) - ($249))|0; + $347 = ($$4351$lcssa$i>>>0)<($346>>>0); + if ($347) { + $348 = HEAP32[(32980)>>2]|0; + $349 = ($$4$lcssa$i>>>0)<($348>>>0); + if ($349) { _abort(); // unreachable; } - $348 = (($v$3$lcssa$i) + ($246)|0); - $349 = ($v$3$lcssa$i>>>0)<($348>>>0); - if (!($349)) { + $350 = (($$4$lcssa$i) + ($249)|0); + $351 = ($$4$lcssa$i>>>0)<($350>>>0); + if (!($351)) { _abort(); // unreachable; } - $350 = ((($v$3$lcssa$i)) + 24|0); - $351 = HEAP32[$350>>2]|0; - $352 = ((($v$3$lcssa$i)) + 12|0); + $352 = ((($$4$lcssa$i)) + 24|0); $353 = HEAP32[$352>>2]|0; - $354 = ($353|0)==($v$3$lcssa$i|0); + $354 = ((($$4$lcssa$i)) + 12|0); + $355 = HEAP32[$354>>2]|0; + $356 = ($355|0)==($$4$lcssa$i|0); do { - if ($354) { - $364 = ((($v$3$lcssa$i)) + 20|0); - $365 = HEAP32[$364>>2]|0; - $366 = ($365|0)==(0|0); - if ($366) { - $367 = ((($v$3$lcssa$i)) + 16|0); - $368 = HEAP32[$367>>2]|0; - $369 = ($368|0)==(0|0); - if ($369) { - $R$1$i20 = 0; + if ($356) { + $366 = ((($$4$lcssa$i)) + 20|0); + $367 = HEAP32[$366>>2]|0; + $368 = ($367|0)==(0|0); + if ($368) { + $369 = ((($$4$lcssa$i)) + 16|0); + $370 = HEAP32[$369>>2]|0; + $371 = ($370|0)==(0|0); + if ($371) { + $$3372$i = 0; break; } else { - $R$0$i18 = $368;$RP$0$i17 = $367; + $$1370$i = $370;$$1374$i = $369; } } else { - $R$0$i18 = $365;$RP$0$i17 = $364; + $$1370$i = $367;$$1374$i = $366; } while(1) { - $370 = ((($R$0$i18)) + 20|0); - $371 = HEAP32[$370>>2]|0; - $372 = ($371|0)==(0|0); - if (!($372)) { - $R$0$i18 = $371;$RP$0$i17 = $370; + $372 = ((($$1370$i)) + 20|0); + $373 = HEAP32[$372>>2]|0; + $374 = ($373|0)==(0|0); + if (!($374)) { + $$1370$i = $373;$$1374$i = $372; continue; } - $373 = ((($R$0$i18)) + 16|0); - $374 = HEAP32[$373>>2]|0; - $375 = ($374|0)==(0|0); - if ($375) { - $R$0$i18$lcssa = $R$0$i18;$RP$0$i17$lcssa = $RP$0$i17; + $375 = ((($$1370$i)) + 16|0); + $376 = HEAP32[$375>>2]|0; + $377 = ($376|0)==(0|0); + if ($377) { break; } else { - $R$0$i18 = $374;$RP$0$i17 = $373; + $$1370$i = $376;$$1374$i = $375; } } - $376 = ($RP$0$i17$lcssa>>>0)<($346>>>0); - if ($376) { + $378 = ($$1374$i>>>0)<($348>>>0); + if ($378) { _abort(); // unreachable; } else { - HEAP32[$RP$0$i17$lcssa>>2] = 0; - $R$1$i20 = $R$0$i18$lcssa; + HEAP32[$$1374$i>>2] = 0; + $$3372$i = $$1370$i; break; } } else { - $355 = ((($v$3$lcssa$i)) + 8|0); - $356 = HEAP32[$355>>2]|0; - $357 = ($356>>>0)<($346>>>0); - if ($357) { + $357 = ((($$4$lcssa$i)) + 8|0); + $358 = HEAP32[$357>>2]|0; + $359 = ($358>>>0)<($348>>>0); + if ($359) { _abort(); // unreachable; } - $358 = ((($356)) + 12|0); - $359 = HEAP32[$358>>2]|0; - $360 = ($359|0)==($v$3$lcssa$i|0); - if (!($360)) { + $360 = ((($358)) + 12|0); + $361 = HEAP32[$360>>2]|0; + $362 = ($361|0)==($$4$lcssa$i|0); + if (!($362)) { _abort(); // unreachable; } - $361 = ((($353)) + 8|0); - $362 = HEAP32[$361>>2]|0; - $363 = ($362|0)==($v$3$lcssa$i|0); - if ($363) { - HEAP32[$358>>2] = $353; - HEAP32[$361>>2] = $356; - $R$1$i20 = $353; + $363 = ((($355)) + 8|0); + $364 = HEAP32[$363>>2]|0; + $365 = ($364|0)==($$4$lcssa$i|0); + if ($365) { + HEAP32[$360>>2] = $355; + HEAP32[$363>>2] = $358; + $$3372$i = $355; break; } else { _abort(); @@ -21507,55 +17906,60 @@ function _malloc($bytes) { } } } while(0); - $377 = ($351|0)==(0|0); - do { - if (!($377)) { - $378 = ((($v$3$lcssa$i)) + 28|0); - $379 = HEAP32[$378>>2]|0; - $380 = (32980 + ($379<<2)|0); + $379 = ($353|0)==(0|0); + L164: do { + if ($379) { + $470 = $250; + } else { + $380 = ((($$4$lcssa$i)) + 28|0); $381 = HEAP32[$380>>2]|0; - $382 = ($v$3$lcssa$i|0)==($381|0); - if ($382) { - HEAP32[$380>>2] = $R$1$i20; - $cond$i21 = ($R$1$i20|0)==(0|0); - if ($cond$i21) { - $383 = 1 << $379; - $384 = $383 ^ -1; - $385 = HEAP32[(32680)>>2]|0; - $386 = $385 & $384; - HEAP32[(32680)>>2] = $386; - break; - } - } else { - $387 = HEAP32[(32692)>>2]|0; - $388 = ($351>>>0)<($387>>>0); - if ($388) { - _abort(); - // unreachable; - } - $389 = ((($351)) + 16|0); - $390 = HEAP32[$389>>2]|0; - $391 = ($390|0)==($v$3$lcssa$i|0); - if ($391) { - HEAP32[$389>>2] = $R$1$i20; + $382 = (33268 + ($381<<2)|0); + $383 = HEAP32[$382>>2]|0; + $384 = ($$4$lcssa$i|0)==($383|0); + do { + if ($384) { + HEAP32[$382>>2] = $$3372$i; + $cond$i208 = ($$3372$i|0)==(0|0); + if ($cond$i208) { + $385 = 1 << $381; + $386 = $385 ^ -1; + $387 = $250 & $386; + HEAP32[(32968)>>2] = $387; + $470 = $387; + break L164; + } } else { - $392 = ((($351)) + 20|0); - HEAP32[$392>>2] = $R$1$i20; - } - $393 = ($R$1$i20|0)==(0|0); - if ($393) { - break; + $388 = HEAP32[(32980)>>2]|0; + $389 = ($353>>>0)<($388>>>0); + if ($389) { + _abort(); + // unreachable; + } else { + $390 = ((($353)) + 16|0); + $391 = HEAP32[$390>>2]|0; + $not$$i209 = ($391|0)!=($$4$lcssa$i|0); + $$sink3$i = $not$$i209&1; + $392 = (((($353)) + 16|0) + ($$sink3$i<<2)|0); + HEAP32[$392>>2] = $$3372$i; + $393 = ($$3372$i|0)==(0|0); + if ($393) { + $470 = $250; + break L164; + } else { + break; + } + } } - } - $394 = HEAP32[(32692)>>2]|0; - $395 = ($R$1$i20>>>0)<($394>>>0); + } while(0); + $394 = HEAP32[(32980)>>2]|0; + $395 = ($$3372$i>>>0)<($394>>>0); if ($395) { _abort(); // unreachable; } - $396 = ((($R$1$i20)) + 24|0); - HEAP32[$396>>2] = $351; - $397 = ((($v$3$lcssa$i)) + 16|0); + $396 = ((($$3372$i)) + 24|0); + HEAP32[$396>>2] = $353; + $397 = ((($$4$lcssa$i)) + 16|0); $398 = HEAP32[$397>>2]|0; $399 = ($398|0)==(0|0); do { @@ -21565,930 +17969,862 @@ function _malloc($bytes) { _abort(); // unreachable; } else { - $401 = ((($R$1$i20)) + 16|0); + $401 = ((($$3372$i)) + 16|0); HEAP32[$401>>2] = $398; $402 = ((($398)) + 24|0); - HEAP32[$402>>2] = $R$1$i20; + HEAP32[$402>>2] = $$3372$i; break; } } } while(0); - $403 = ((($v$3$lcssa$i)) + 20|0); + $403 = ((($$4$lcssa$i)) + 20|0); $404 = HEAP32[$403>>2]|0; $405 = ($404|0)==(0|0); - if (!($405)) { - $406 = HEAP32[(32692)>>2]|0; + if ($405) { + $470 = $250; + } else { + $406 = HEAP32[(32980)>>2]|0; $407 = ($404>>>0)<($406>>>0); if ($407) { _abort(); // unreachable; } else { - $408 = ((($R$1$i20)) + 20|0); + $408 = ((($$3372$i)) + 20|0); HEAP32[$408>>2] = $404; $409 = ((($404)) + 24|0); - HEAP32[$409>>2] = $R$1$i20; + HEAP32[$409>>2] = $$3372$i; + $470 = $250; break; } } } } while(0); - $410 = ($rsize$3$lcssa$i>>>0)<(16); - L199: do { + $410 = ($$4351$lcssa$i>>>0)<(16); + do { if ($410) { - $411 = (($rsize$3$lcssa$i) + ($246))|0; + $411 = (($$4351$lcssa$i) + ($249))|0; $412 = $411 | 3; - $413 = ((($v$3$lcssa$i)) + 4|0); + $413 = ((($$4$lcssa$i)) + 4|0); HEAP32[$413>>2] = $412; - $$sum18$i = (($411) + 4)|0; - $414 = (($v$3$lcssa$i) + ($$sum18$i)|0); - $415 = HEAP32[$414>>2]|0; - $416 = $415 | 1; - HEAP32[$414>>2] = $416; + $414 = (($$4$lcssa$i) + ($411)|0); + $415 = ((($414)) + 4|0); + $416 = HEAP32[$415>>2]|0; + $417 = $416 | 1; + HEAP32[$415>>2] = $417; } else { - $417 = $246 | 3; - $418 = ((($v$3$lcssa$i)) + 4|0); - HEAP32[$418>>2] = $417; - $419 = $rsize$3$lcssa$i | 1; - $$sum$i2334 = $246 | 4; - $420 = (($v$3$lcssa$i) + ($$sum$i2334)|0); - HEAP32[$420>>2] = $419; - $$sum1$i24 = (($rsize$3$lcssa$i) + ($246))|0; - $421 = (($v$3$lcssa$i) + ($$sum1$i24)|0); - HEAP32[$421>>2] = $rsize$3$lcssa$i; - $422 = $rsize$3$lcssa$i >>> 3; - $423 = ($rsize$3$lcssa$i>>>0)<(256); - if ($423) { - $424 = $422 << 1; - $425 = (32716 + ($424<<2)|0); - $426 = HEAP32[32676>>2]|0; - $427 = 1 << $422; - $428 = $426 & $427; - $429 = ($428|0)==(0); - if ($429) { - $430 = $426 | $427; - HEAP32[32676>>2] = $430; - $$pre$i25 = (($424) + 2)|0; - $$pre43$i = (32716 + ($$pre$i25<<2)|0); - $$pre$phi$i26Z2D = $$pre43$i;$F5$0$i = $425; + $418 = $249 | 3; + $419 = ((($$4$lcssa$i)) + 4|0); + HEAP32[$419>>2] = $418; + $420 = $$4351$lcssa$i | 1; + $421 = ((($350)) + 4|0); + HEAP32[$421>>2] = $420; + $422 = (($350) + ($$4351$lcssa$i)|0); + HEAP32[$422>>2] = $$4351$lcssa$i; + $423 = $$4351$lcssa$i >>> 3; + $424 = ($$4351$lcssa$i>>>0)<(256); + if ($424) { + $425 = $423 << 1; + $426 = (33004 + ($425<<2)|0); + $427 = HEAP32[8241]|0; + $428 = 1 << $423; + $429 = $427 & $428; + $430 = ($429|0)==(0); + if ($430) { + $431 = $427 | $428; + HEAP32[8241] = $431; + $$pre$i210 = ((($426)) + 8|0); + $$0368$i = $426;$$pre$phi$i211Z2D = $$pre$i210; } else { - $$sum17$i = (($424) + 2)|0; - $431 = (32716 + ($$sum17$i<<2)|0); - $432 = HEAP32[$431>>2]|0; - $433 = HEAP32[(32692)>>2]|0; - $434 = ($432>>>0)<($433>>>0); - if ($434) { + $432 = ((($426)) + 8|0); + $433 = HEAP32[$432>>2]|0; + $434 = HEAP32[(32980)>>2]|0; + $435 = ($433>>>0)<($434>>>0); + if ($435) { _abort(); // unreachable; } else { - $$pre$phi$i26Z2D = $431;$F5$0$i = $432; + $$0368$i = $433;$$pre$phi$i211Z2D = $432; } } - HEAP32[$$pre$phi$i26Z2D>>2] = $348; - $435 = ((($F5$0$i)) + 12|0); - HEAP32[$435>>2] = $348; - $$sum15$i = (($246) + 8)|0; - $436 = (($v$3$lcssa$i) + ($$sum15$i)|0); - HEAP32[$436>>2] = $F5$0$i; - $$sum16$i = (($246) + 12)|0; - $437 = (($v$3$lcssa$i) + ($$sum16$i)|0); - HEAP32[$437>>2] = $425; + HEAP32[$$pre$phi$i211Z2D>>2] = $350; + $436 = ((($$0368$i)) + 12|0); + HEAP32[$436>>2] = $350; + $437 = ((($350)) + 8|0); + HEAP32[$437>>2] = $$0368$i; + $438 = ((($350)) + 12|0); + HEAP32[$438>>2] = $426; break; } - $438 = $rsize$3$lcssa$i >>> 8; - $439 = ($438|0)==(0); - if ($439) { - $I7$0$i = 0; + $439 = $$4351$lcssa$i >>> 8; + $440 = ($439|0)==(0); + if ($440) { + $$0361$i = 0; } else { - $440 = ($rsize$3$lcssa$i>>>0)>(16777215); - if ($440) { - $I7$0$i = 31; + $441 = ($$4351$lcssa$i>>>0)>(16777215); + if ($441) { + $$0361$i = 31; } else { - $441 = (($438) + 1048320)|0; - $442 = $441 >>> 16; - $443 = $442 & 8; - $444 = $438 << $443; - $445 = (($444) + 520192)|0; - $446 = $445 >>> 16; - $447 = $446 & 4; - $448 = $447 | $443; - $449 = $444 << $447; - $450 = (($449) + 245760)|0; - $451 = $450 >>> 16; - $452 = $451 & 2; - $453 = $448 | $452; - $454 = (14 - ($453))|0; - $455 = $449 << $452; - $456 = $455 >>> 15; - $457 = (($454) + ($456))|0; - $458 = $457 << 1; - $459 = (($457) + 7)|0; - $460 = $rsize$3$lcssa$i >>> $459; - $461 = $460 & 1; - $462 = $461 | $458; - $I7$0$i = $462; + $442 = (($439) + 1048320)|0; + $443 = $442 >>> 16; + $444 = $443 & 8; + $445 = $439 << $444; + $446 = (($445) + 520192)|0; + $447 = $446 >>> 16; + $448 = $447 & 4; + $449 = $448 | $444; + $450 = $445 << $448; + $451 = (($450) + 245760)|0; + $452 = $451 >>> 16; + $453 = $452 & 2; + $454 = $449 | $453; + $455 = (14 - ($454))|0; + $456 = $450 << $453; + $457 = $456 >>> 15; + $458 = (($455) + ($457))|0; + $459 = $458 << 1; + $460 = (($458) + 7)|0; + $461 = $$4351$lcssa$i >>> $460; + $462 = $461 & 1; + $463 = $462 | $459; + $$0361$i = $463; } } - $463 = (32980 + ($I7$0$i<<2)|0); - $$sum2$i = (($246) + 28)|0; - $464 = (($v$3$lcssa$i) + ($$sum2$i)|0); - HEAP32[$464>>2] = $I7$0$i; - $$sum3$i27 = (($246) + 16)|0; - $465 = (($v$3$lcssa$i) + ($$sum3$i27)|0); - $$sum4$i28 = (($246) + 20)|0; - $466 = (($v$3$lcssa$i) + ($$sum4$i28)|0); + $464 = (33268 + ($$0361$i<<2)|0); + $465 = ((($350)) + 28|0); + HEAP32[$465>>2] = $$0361$i; + $466 = ((($350)) + 16|0); + $467 = ((($466)) + 4|0); + HEAP32[$467>>2] = 0; HEAP32[$466>>2] = 0; - HEAP32[$465>>2] = 0; - $467 = HEAP32[(32680)>>2]|0; - $468 = 1 << $I7$0$i; - $469 = $467 & $468; - $470 = ($469|0)==(0); - if ($470) { - $471 = $467 | $468; - HEAP32[(32680)>>2] = $471; - HEAP32[$463>>2] = $348; - $$sum5$i = (($246) + 24)|0; - $472 = (($v$3$lcssa$i) + ($$sum5$i)|0); - HEAP32[$472>>2] = $463; - $$sum6$i = (($246) + 12)|0; - $473 = (($v$3$lcssa$i) + ($$sum6$i)|0); - HEAP32[$473>>2] = $348; - $$sum7$i = (($246) + 8)|0; - $474 = (($v$3$lcssa$i) + ($$sum7$i)|0); - HEAP32[$474>>2] = $348; + $468 = 1 << $$0361$i; + $469 = $470 & $468; + $471 = ($469|0)==(0); + if ($471) { + $472 = $470 | $468; + HEAP32[(32968)>>2] = $472; + HEAP32[$464>>2] = $350; + $473 = ((($350)) + 24|0); + HEAP32[$473>>2] = $464; + $474 = ((($350)) + 12|0); + HEAP32[$474>>2] = $350; + $475 = ((($350)) + 8|0); + HEAP32[$475>>2] = $350; break; } - $475 = HEAP32[$463>>2]|0; - $476 = ((($475)) + 4|0); - $477 = HEAP32[$476>>2]|0; - $478 = $477 & -8; - $479 = ($478|0)==($rsize$3$lcssa$i|0); - L217: do { - if ($479) { - $T$0$lcssa$i = $475; + $476 = HEAP32[$464>>2]|0; + $477 = ($$0361$i|0)==(31); + $478 = $$0361$i >>> 1; + $479 = (25 - ($478))|0; + $480 = $477 ? 0 : $479; + $481 = $$4351$lcssa$i << $480; + $$0344$i = $481;$$0345$i = $476; + while(1) { + $482 = ((($$0345$i)) + 4|0); + $483 = HEAP32[$482>>2]|0; + $484 = $483 & -8; + $485 = ($484|0)==($$4351$lcssa$i|0); + if ($485) { + label = 139; + break; + } + $486 = $$0344$i >>> 31; + $487 = (((($$0345$i)) + 16|0) + ($486<<2)|0); + $488 = $$0344$i << 1; + $489 = HEAP32[$487>>2]|0; + $490 = ($489|0)==(0|0); + if ($490) { + label = 136; + break; } else { - $480 = ($I7$0$i|0)==(31); - $481 = $I7$0$i >>> 1; - $482 = (25 - ($481))|0; - $483 = $480 ? 0 : $482; - $484 = $rsize$3$lcssa$i << $483; - $K12$029$i = $484;$T$028$i = $475; - while(1) { - $491 = $K12$029$i >>> 31; - $492 = (((($T$028$i)) + 16|0) + ($491<<2)|0); - $487 = HEAP32[$492>>2]|0; - $493 = ($487|0)==(0|0); - if ($493) { - $$lcssa232 = $492;$T$028$i$lcssa = $T$028$i; - break; - } - $485 = $K12$029$i << 1; - $486 = ((($487)) + 4|0); - $488 = HEAP32[$486>>2]|0; - $489 = $488 & -8; - $490 = ($489|0)==($rsize$3$lcssa$i|0); - if ($490) { - $T$0$lcssa$i = $487; - break L217; - } else { - $K12$029$i = $485;$T$028$i = $487; - } - } - $494 = HEAP32[(32692)>>2]|0; - $495 = ($$lcssa232>>>0)<($494>>>0); - if ($495) { - _abort(); - // unreachable; - } else { - HEAP32[$$lcssa232>>2] = $348; - $$sum11$i = (($246) + 24)|0; - $496 = (($v$3$lcssa$i) + ($$sum11$i)|0); - HEAP32[$496>>2] = $T$028$i$lcssa; - $$sum12$i = (($246) + 12)|0; - $497 = (($v$3$lcssa$i) + ($$sum12$i)|0); - HEAP32[$497>>2] = $348; - $$sum13$i = (($246) + 8)|0; - $498 = (($v$3$lcssa$i) + ($$sum13$i)|0); - HEAP32[$498>>2] = $348; - break L199; - } + $$0344$i = $488;$$0345$i = $489; + } + } + if ((label|0) == 136) { + $491 = HEAP32[(32980)>>2]|0; + $492 = ($487>>>0)<($491>>>0); + if ($492) { + _abort(); + // unreachable; + } else { + HEAP32[$487>>2] = $350; + $493 = ((($350)) + 24|0); + HEAP32[$493>>2] = $$0345$i; + $494 = ((($350)) + 12|0); + HEAP32[$494>>2] = $350; + $495 = ((($350)) + 8|0); + HEAP32[$495>>2] = $350; + break; + } + } + else if ((label|0) == 139) { + $496 = ((($$0345$i)) + 8|0); + $497 = HEAP32[$496>>2]|0; + $498 = HEAP32[(32980)>>2]|0; + $499 = ($497>>>0)>=($498>>>0); + $not$9$i = ($$0345$i>>>0)>=($498>>>0); + $500 = $499 & $not$9$i; + if ($500) { + $501 = ((($497)) + 12|0); + HEAP32[$501>>2] = $350; + HEAP32[$496>>2] = $350; + $502 = ((($350)) + 8|0); + HEAP32[$502>>2] = $497; + $503 = ((($350)) + 12|0); + HEAP32[$503>>2] = $$0345$i; + $504 = ((($350)) + 24|0); + HEAP32[$504>>2] = 0; + break; + } else { + _abort(); + // unreachable; } - } while(0); - $499 = ((($T$0$lcssa$i)) + 8|0); - $500 = HEAP32[$499>>2]|0; - $501 = HEAP32[(32692)>>2]|0; - $502 = ($500>>>0)>=($501>>>0); - $not$$i = ($T$0$lcssa$i>>>0)>=($501>>>0); - $503 = $502 & $not$$i; - if ($503) { - $504 = ((($500)) + 12|0); - HEAP32[$504>>2] = $348; - HEAP32[$499>>2] = $348; - $$sum8$i = (($246) + 8)|0; - $505 = (($v$3$lcssa$i) + ($$sum8$i)|0); - HEAP32[$505>>2] = $500; - $$sum9$i = (($246) + 12)|0; - $506 = (($v$3$lcssa$i) + ($$sum9$i)|0); - HEAP32[$506>>2] = $T$0$lcssa$i; - $$sum10$i = (($246) + 24)|0; - $507 = (($v$3$lcssa$i) + ($$sum10$i)|0); - HEAP32[$507>>2] = 0; - break; - } else { - _abort(); - // unreachable; } } } while(0); - $508 = ((($v$3$lcssa$i)) + 8|0); - $mem$0 = $508; - return ($mem$0|0); + $505 = ((($$4$lcssa$i)) + 8|0); + $$0 = $505; + STACKTOP = sp;return ($$0|0); } else { - $nb$0 = $246; + $$0197 = $249; } } } } } } while(0); - $509 = HEAP32[(32684)>>2]|0; - $510 = ($509>>>0)<($nb$0>>>0); - if (!($510)) { - $511 = (($509) - ($nb$0))|0; - $512 = HEAP32[(32696)>>2]|0; - $513 = ($511>>>0)>(15); - if ($513) { - $514 = (($512) + ($nb$0)|0); - HEAP32[(32696)>>2] = $514; - HEAP32[(32684)>>2] = $511; - $515 = $511 | 1; - $$sum2 = (($nb$0) + 4)|0; - $516 = (($512) + ($$sum2)|0); + $506 = HEAP32[(32972)>>2]|0; + $507 = ($506>>>0)<($$0197>>>0); + if (!($507)) { + $508 = (($506) - ($$0197))|0; + $509 = HEAP32[(32984)>>2]|0; + $510 = ($508>>>0)>(15); + if ($510) { + $511 = (($509) + ($$0197)|0); + HEAP32[(32984)>>2] = $511; + HEAP32[(32972)>>2] = $508; + $512 = $508 | 1; + $513 = ((($511)) + 4|0); + HEAP32[$513>>2] = $512; + $514 = (($511) + ($508)|0); + HEAP32[$514>>2] = $508; + $515 = $$0197 | 3; + $516 = ((($509)) + 4|0); HEAP32[$516>>2] = $515; - $517 = (($512) + ($509)|0); - HEAP32[$517>>2] = $511; - $518 = $nb$0 | 3; - $519 = ((($512)) + 4|0); - HEAP32[$519>>2] = $518; } else { - HEAP32[(32684)>>2] = 0; - HEAP32[(32696)>>2] = 0; - $520 = $509 | 3; - $521 = ((($512)) + 4|0); - HEAP32[$521>>2] = $520; - $$sum1 = (($509) + 4)|0; - $522 = (($512) + ($$sum1)|0); - $523 = HEAP32[$522>>2]|0; - $524 = $523 | 1; - HEAP32[$522>>2] = $524; - } - $525 = ((($512)) + 8|0); - $mem$0 = $525; - return ($mem$0|0); + HEAP32[(32972)>>2] = 0; + HEAP32[(32984)>>2] = 0; + $517 = $506 | 3; + $518 = ((($509)) + 4|0); + HEAP32[$518>>2] = $517; + $519 = (($509) + ($506)|0); + $520 = ((($519)) + 4|0); + $521 = HEAP32[$520>>2]|0; + $522 = $521 | 1; + HEAP32[$520>>2] = $522; + } + $523 = ((($509)) + 8|0); + $$0 = $523; + STACKTOP = sp;return ($$0|0); } - $526 = HEAP32[(32688)>>2]|0; - $527 = ($526>>>0)>($nb$0>>>0); - if ($527) { - $528 = (($526) - ($nb$0))|0; - HEAP32[(32688)>>2] = $528; - $529 = HEAP32[(32700)>>2]|0; - $530 = (($529) + ($nb$0)|0); - HEAP32[(32700)>>2] = $530; - $531 = $528 | 1; - $$sum = (($nb$0) + 4)|0; - $532 = (($529) + ($$sum)|0); + $524 = HEAP32[(32976)>>2]|0; + $525 = ($524>>>0)>($$0197>>>0); + if ($525) { + $526 = (($524) - ($$0197))|0; + HEAP32[(32976)>>2] = $526; + $527 = HEAP32[(32988)>>2]|0; + $528 = (($527) + ($$0197)|0); + HEAP32[(32988)>>2] = $528; + $529 = $526 | 1; + $530 = ((($528)) + 4|0); + HEAP32[$530>>2] = $529; + $531 = $$0197 | 3; + $532 = ((($527)) + 4|0); HEAP32[$532>>2] = $531; - $533 = $nb$0 | 3; - $534 = ((($529)) + 4|0); - HEAP32[$534>>2] = $533; - $535 = ((($529)) + 8|0); - $mem$0 = $535; - return ($mem$0|0); + $533 = ((($527)) + 8|0); + $$0 = $533; + STACKTOP = sp;return ($$0|0); } - $536 = HEAP32[33148>>2]|0; - $537 = ($536|0)==(0); - do { - if ($537) { - $538 = (_sysconf(30)|0); - $539 = (($538) + -1)|0; - $540 = $539 & $538; - $541 = ($540|0)==(0); - if ($541) { - HEAP32[(33156)>>2] = $538; - HEAP32[(33152)>>2] = $538; - HEAP32[(33160)>>2] = -1; - HEAP32[(33164)>>2] = -1; - HEAP32[(33168)>>2] = 0; - HEAP32[(33120)>>2] = 0; - $542 = (_time((0|0))|0); - $543 = $542 & -16; - $544 = $543 ^ 1431655768; - HEAP32[33148>>2] = $544; - break; - } else { - _abort(); - // unreachable; - } - } - } while(0); - $545 = (($nb$0) + 48)|0; - $546 = HEAP32[(33156)>>2]|0; - $547 = (($nb$0) + 47)|0; - $548 = (($546) + ($547))|0; - $549 = (0 - ($546))|0; - $550 = $548 & $549; - $551 = ($550>>>0)>($nb$0>>>0); - if (!($551)) { - $mem$0 = 0; - return ($mem$0|0); + $534 = HEAP32[8359]|0; + $535 = ($534|0)==(0); + if ($535) { + HEAP32[(33444)>>2] = 4096; + HEAP32[(33440)>>2] = 4096; + HEAP32[(33448)>>2] = -1; + HEAP32[(33452)>>2] = -1; + HEAP32[(33456)>>2] = 0; + HEAP32[(33408)>>2] = 0; + $536 = $1; + $537 = $536 & -16; + $538 = $537 ^ 1431655768; + HEAP32[$1>>2] = $538; + HEAP32[8359] = $538; + $542 = 4096; + } else { + $$pre$i212 = HEAP32[(33444)>>2]|0; + $542 = $$pre$i212; + } + $539 = (($$0197) + 48)|0; + $540 = (($$0197) + 47)|0; + $541 = (($542) + ($540))|0; + $543 = (0 - ($542))|0; + $544 = $541 & $543; + $545 = ($544>>>0)>($$0197>>>0); + if (!($545)) { + $$0 = 0; + STACKTOP = sp;return ($$0|0); } - $552 = HEAP32[(33116)>>2]|0; - $553 = ($552|0)==(0); - if (!($553)) { - $554 = HEAP32[(33108)>>2]|0; - $555 = (($554) + ($550))|0; - $556 = ($555>>>0)<=($554>>>0); - $557 = ($555>>>0)>($552>>>0); - $or$cond1$i = $556 | $557; + $546 = HEAP32[(33404)>>2]|0; + $547 = ($546|0)==(0); + if (!($547)) { + $548 = HEAP32[(33396)>>2]|0; + $549 = (($548) + ($544))|0; + $550 = ($549>>>0)<=($548>>>0); + $551 = ($549>>>0)>($546>>>0); + $or$cond1$i = $550 | $551; if ($or$cond1$i) { - $mem$0 = 0; - return ($mem$0|0); + $$0 = 0; + STACKTOP = sp;return ($$0|0); } } - $558 = HEAP32[(33120)>>2]|0; - $559 = $558 & 4; - $560 = ($559|0)==(0); - L258: do { - if ($560) { - $561 = HEAP32[(32700)>>2]|0; - $562 = ($561|0)==(0|0); - L260: do { - if ($562) { - label = 174; + $552 = HEAP32[(33408)>>2]|0; + $553 = $552 & 4; + $554 = ($553|0)==(0); + L244: do { + if ($554) { + $555 = HEAP32[(32988)>>2]|0; + $556 = ($555|0)==(0|0); + L246: do { + if ($556) { + label = 163; } else { - $sp$0$i$i = (33124); + $$0$i$i = (33412); while(1) { - $563 = HEAP32[$sp$0$i$i>>2]|0; - $564 = ($563>>>0)>($561>>>0); - if (!($564)) { - $565 = ((($sp$0$i$i)) + 4|0); - $566 = HEAP32[$565>>2]|0; - $567 = (($563) + ($566)|0); - $568 = ($567>>>0)>($561>>>0); - if ($568) { - $$lcssa228 = $sp$0$i$i;$$lcssa230 = $565; + $557 = HEAP32[$$0$i$i>>2]|0; + $558 = ($557>>>0)>($555>>>0); + if (!($558)) { + $559 = ((($$0$i$i)) + 4|0); + $560 = HEAP32[$559>>2]|0; + $561 = (($557) + ($560)|0); + $562 = ($561>>>0)>($555>>>0); + if ($562) { break; } } - $569 = ((($sp$0$i$i)) + 8|0); - $570 = HEAP32[$569>>2]|0; - $571 = ($570|0)==(0|0); - if ($571) { - label = 174; - break L260; + $563 = ((($$0$i$i)) + 8|0); + $564 = HEAP32[$563>>2]|0; + $565 = ($564|0)==(0|0); + if ($565) { + label = 163; + break L246; } else { - $sp$0$i$i = $570; + $$0$i$i = $564; } } - $594 = HEAP32[(32688)>>2]|0; - $595 = (($548) - ($594))|0; - $596 = $595 & $549; - $597 = ($596>>>0)<(2147483647); - if ($597) { - $598 = (_sbrk(($596|0))|0); - $599 = HEAP32[$$lcssa228>>2]|0; - $600 = HEAP32[$$lcssa230>>2]|0; - $601 = (($599) + ($600)|0); - $602 = ($598|0)==($601|0); - $$3$i = $602 ? $596 : 0; - if ($602) { - $603 = ($598|0)==((-1)|0); - if ($603) { - $tsize$0323944$i = $$3$i; + $588 = (($541) - ($524))|0; + $589 = $588 & $543; + $590 = ($589>>>0)<(2147483647); + if ($590) { + $591 = (_sbrk(($589|0))|0); + $592 = HEAP32[$$0$i$i>>2]|0; + $593 = HEAP32[$559>>2]|0; + $594 = (($592) + ($593)|0); + $595 = ($591|0)==($594|0); + if ($595) { + $596 = ($591|0)==((-1)|0); + if ($596) { + $$2234253237$i = $589; } else { - $tbase$255$i = $598;$tsize$254$i = $$3$i; - label = 194; - break L258; + $$723948$i = $589;$$749$i = $591; + label = 180; + break L244; } } else { - $br$0$ph$i = $598;$ssize$1$ph$i = $596;$tsize$0$ph$i = $$3$i; - label = 184; + $$2247$ph$i = $591;$$2253$ph$i = $589; + label = 171; } } else { - $tsize$0323944$i = 0; + $$2234253237$i = 0; } } } while(0); do { - if ((label|0) == 174) { - $572 = (_sbrk(0)|0); - $573 = ($572|0)==((-1)|0); - if ($573) { - $tsize$0323944$i = 0; + if ((label|0) == 163) { + $566 = (_sbrk(0)|0); + $567 = ($566|0)==((-1)|0); + if ($567) { + $$2234253237$i = 0; } else { - $574 = $572; - $575 = HEAP32[(33152)>>2]|0; - $576 = (($575) + -1)|0; - $577 = $576 & $574; - $578 = ($577|0)==(0); - if ($578) { - $ssize$0$i = $550; - } else { - $579 = (($576) + ($574))|0; - $580 = (0 - ($575))|0; - $581 = $579 & $580; - $582 = (($550) - ($574))|0; - $583 = (($582) + ($581))|0; - $ssize$0$i = $583; - } - $584 = HEAP32[(33108)>>2]|0; - $585 = (($584) + ($ssize$0$i))|0; - $586 = ($ssize$0$i>>>0)>($nb$0>>>0); - $587 = ($ssize$0$i>>>0)<(2147483647); - $or$cond$i30 = $586 & $587; - if ($or$cond$i30) { - $588 = HEAP32[(33116)>>2]|0; - $589 = ($588|0)==(0); - if (!($589)) { - $590 = ($585>>>0)<=($584>>>0); - $591 = ($585>>>0)>($588>>>0); - $or$cond2$i = $590 | $591; - if ($or$cond2$i) { - $tsize$0323944$i = 0; + $568 = $566; + $569 = HEAP32[(33440)>>2]|0; + $570 = (($569) + -1)|0; + $571 = $570 & $568; + $572 = ($571|0)==(0); + $573 = (($570) + ($568))|0; + $574 = (0 - ($569))|0; + $575 = $573 & $574; + $576 = (($575) - ($568))|0; + $577 = $572 ? 0 : $576; + $$$i = (($577) + ($544))|0; + $578 = HEAP32[(33396)>>2]|0; + $579 = (($$$i) + ($578))|0; + $580 = ($$$i>>>0)>($$0197>>>0); + $581 = ($$$i>>>0)<(2147483647); + $or$cond$i214 = $580 & $581; + if ($or$cond$i214) { + $582 = HEAP32[(33404)>>2]|0; + $583 = ($582|0)==(0); + if (!($583)) { + $584 = ($579>>>0)<=($578>>>0); + $585 = ($579>>>0)>($582>>>0); + $or$cond2$i215 = $584 | $585; + if ($or$cond2$i215) { + $$2234253237$i = 0; break; } } - $592 = (_sbrk(($ssize$0$i|0))|0); - $593 = ($592|0)==($572|0); - $ssize$0$$i = $593 ? $ssize$0$i : 0; - if ($593) { - $tbase$255$i = $572;$tsize$254$i = $ssize$0$$i; - label = 194; - break L258; + $586 = (_sbrk(($$$i|0))|0); + $587 = ($586|0)==($566|0); + if ($587) { + $$723948$i = $$$i;$$749$i = $566; + label = 180; + break L244; } else { - $br$0$ph$i = $592;$ssize$1$ph$i = $ssize$0$i;$tsize$0$ph$i = $ssize$0$$i; - label = 184; + $$2247$ph$i = $586;$$2253$ph$i = $$$i; + label = 171; } } else { - $tsize$0323944$i = 0; + $$2234253237$i = 0; } } } } while(0); - L280: do { - if ((label|0) == 184) { - $604 = (0 - ($ssize$1$ph$i))|0; - $605 = ($br$0$ph$i|0)!=((-1)|0); - $606 = ($ssize$1$ph$i>>>0)<(2147483647); - $or$cond5$i = $606 & $605; - $607 = ($545>>>0)>($ssize$1$ph$i>>>0); - $or$cond6$i = $607 & $or$cond5$i; - do { - if ($or$cond6$i) { - $608 = HEAP32[(33156)>>2]|0; - $609 = (($547) - ($ssize$1$ph$i))|0; - $610 = (($609) + ($608))|0; - $611 = (0 - ($608))|0; - $612 = $610 & $611; - $613 = ($612>>>0)<(2147483647); - if ($613) { - $614 = (_sbrk(($612|0))|0); - $615 = ($614|0)==((-1)|0); - if ($615) { - (_sbrk(($604|0))|0); - $tsize$0323944$i = $tsize$0$ph$i; - break L280; - } else { - $616 = (($612) + ($ssize$1$ph$i))|0; - $ssize$2$i = $616; - break; - } - } else { - $ssize$2$i = $ssize$1$ph$i; - } + do { + if ((label|0) == 171) { + $597 = (0 - ($$2253$ph$i))|0; + $598 = ($$2247$ph$i|0)!=((-1)|0); + $599 = ($$2253$ph$i>>>0)<(2147483647); + $or$cond7$i = $599 & $598; + $600 = ($539>>>0)>($$2253$ph$i>>>0); + $or$cond10$i = $600 & $or$cond7$i; + if (!($or$cond10$i)) { + $610 = ($$2247$ph$i|0)==((-1)|0); + if ($610) { + $$2234253237$i = 0; + break; } else { - $ssize$2$i = $ssize$1$ph$i; + $$723948$i = $$2253$ph$i;$$749$i = $$2247$ph$i; + label = 180; + break L244; } - } while(0); - $617 = ($br$0$ph$i|0)==((-1)|0); - if ($617) { - $tsize$0323944$i = $tsize$0$ph$i; + } + $601 = HEAP32[(33444)>>2]|0; + $602 = (($540) - ($$2253$ph$i))|0; + $603 = (($602) + ($601))|0; + $604 = (0 - ($601))|0; + $605 = $603 & $604; + $606 = ($605>>>0)<(2147483647); + if (!($606)) { + $$723948$i = $$2253$ph$i;$$749$i = $$2247$ph$i; + label = 180; + break L244; + } + $607 = (_sbrk(($605|0))|0); + $608 = ($607|0)==((-1)|0); + if ($608) { + (_sbrk(($597|0))|0); + $$2234253237$i = 0; + break; } else { - $tbase$255$i = $br$0$ph$i;$tsize$254$i = $ssize$2$i; - label = 194; - break L258; + $609 = (($605) + ($$2253$ph$i))|0; + $$723948$i = $609;$$749$i = $$2247$ph$i; + label = 180; + break L244; } } } while(0); - $618 = HEAP32[(33120)>>2]|0; - $619 = $618 | 4; - HEAP32[(33120)>>2] = $619; - $tsize$1$i = $tsize$0323944$i; - label = 191; + $611 = HEAP32[(33408)>>2]|0; + $612 = $611 | 4; + HEAP32[(33408)>>2] = $612; + $$4236$i = $$2234253237$i; + label = 178; } else { - $tsize$1$i = 0; - label = 191; + $$4236$i = 0; + label = 178; } } while(0); - if ((label|0) == 191) { - $620 = ($550>>>0)<(2147483647); - if ($620) { - $621 = (_sbrk(($550|0))|0); - $622 = (_sbrk(0)|0); - $623 = ($621|0)!=((-1)|0); - $624 = ($622|0)!=((-1)|0); - $or$cond3$i = $623 & $624; - $625 = ($621>>>0)<($622>>>0); - $or$cond8$i = $625 & $or$cond3$i; - if ($or$cond8$i) { - $626 = $622; - $627 = $621; - $628 = (($626) - ($627))|0; - $629 = (($nb$0) + 40)|0; - $630 = ($628>>>0)>($629>>>0); - $$tsize$1$i = $630 ? $628 : $tsize$1$i; - if ($630) { - $tbase$255$i = $621;$tsize$254$i = $$tsize$1$i; - label = 194; - } + if ((label|0) == 178) { + $613 = ($544>>>0)<(2147483647); + if ($613) { + $614 = (_sbrk(($544|0))|0); + $615 = (_sbrk(0)|0); + $616 = ($614|0)!=((-1)|0); + $617 = ($615|0)!=((-1)|0); + $or$cond5$i = $616 & $617; + $618 = ($614>>>0)<($615>>>0); + $or$cond11$i = $618 & $or$cond5$i; + $619 = $615; + $620 = $614; + $621 = (($619) - ($620))|0; + $622 = (($$0197) + 40)|0; + $623 = ($621>>>0)>($622>>>0); + $$$4236$i = $623 ? $621 : $$4236$i; + $or$cond11$not$i = $or$cond11$i ^ 1; + $624 = ($614|0)==((-1)|0); + $not$$i216 = $623 ^ 1; + $625 = $624 | $not$$i216; + $or$cond50$i = $625 | $or$cond11$not$i; + if (!($or$cond50$i)) { + $$723948$i = $$$4236$i;$$749$i = $614; + label = 180; } } } - if ((label|0) == 194) { - $631 = HEAP32[(33108)>>2]|0; - $632 = (($631) + ($tsize$254$i))|0; - HEAP32[(33108)>>2] = $632; - $633 = HEAP32[(33112)>>2]|0; - $634 = ($632>>>0)>($633>>>0); - if ($634) { - HEAP32[(33112)>>2] = $632; - } - $635 = HEAP32[(32700)>>2]|0; - $636 = ($635|0)==(0|0); - L299: do { - if ($636) { - $637 = HEAP32[(32692)>>2]|0; - $638 = ($637|0)==(0|0); - $639 = ($tbase$255$i>>>0)<($637>>>0); - $or$cond9$i = $638 | $639; - if ($or$cond9$i) { - HEAP32[(32692)>>2] = $tbase$255$i; - } - HEAP32[(33124)>>2] = $tbase$255$i; - HEAP32[(33128)>>2] = $tsize$254$i; - HEAP32[(33136)>>2] = 0; - $640 = HEAP32[33148>>2]|0; - HEAP32[(32712)>>2] = $640; - HEAP32[(32708)>>2] = -1; - $i$02$i$i = 0; + if ((label|0) == 180) { + $626 = HEAP32[(33396)>>2]|0; + $627 = (($626) + ($$723948$i))|0; + HEAP32[(33396)>>2] = $627; + $628 = HEAP32[(33400)>>2]|0; + $629 = ($627>>>0)>($628>>>0); + if ($629) { + HEAP32[(33400)>>2] = $627; + } + $630 = HEAP32[(32988)>>2]|0; + $631 = ($630|0)==(0|0); + do { + if ($631) { + $632 = HEAP32[(32980)>>2]|0; + $633 = ($632|0)==(0|0); + $634 = ($$749$i>>>0)<($632>>>0); + $or$cond12$i = $633 | $634; + if ($or$cond12$i) { + HEAP32[(32980)>>2] = $$749$i; + } + HEAP32[(33412)>>2] = $$749$i; + HEAP32[(33416)>>2] = $$723948$i; + HEAP32[(33424)>>2] = 0; + $635 = HEAP32[8359]|0; + HEAP32[(33000)>>2] = $635; + HEAP32[(32996)>>2] = -1; + $$01$i$i = 0; while(1) { - $641 = $i$02$i$i << 1; - $642 = (32716 + ($641<<2)|0); - $$sum$i$i = (($641) + 3)|0; - $643 = (32716 + ($$sum$i$i<<2)|0); - HEAP32[$643>>2] = $642; - $$sum1$i$i = (($641) + 2)|0; - $644 = (32716 + ($$sum1$i$i<<2)|0); - HEAP32[$644>>2] = $642; - $645 = (($i$02$i$i) + 1)|0; - $exitcond$i$i = ($645|0)==(32); + $636 = $$01$i$i << 1; + $637 = (33004 + ($636<<2)|0); + $638 = ((($637)) + 12|0); + HEAP32[$638>>2] = $637; + $639 = ((($637)) + 8|0); + HEAP32[$639>>2] = $637; + $640 = (($$01$i$i) + 1)|0; + $exitcond$i$i = ($640|0)==(32); if ($exitcond$i$i) { break; } else { - $i$02$i$i = $645; + $$01$i$i = $640; } } - $646 = (($tsize$254$i) + -40)|0; - $647 = ((($tbase$255$i)) + 8|0); - $648 = $647; - $649 = $648 & 7; - $650 = ($649|0)==(0); - $651 = (0 - ($648))|0; - $652 = $651 & 7; - $653 = $650 ? 0 : $652; - $654 = (($tbase$255$i) + ($653)|0); - $655 = (($646) - ($653))|0; - HEAP32[(32700)>>2] = $654; - HEAP32[(32688)>>2] = $655; - $656 = $655 | 1; - $$sum$i13$i = (($653) + 4)|0; - $657 = (($tbase$255$i) + ($$sum$i13$i)|0); - HEAP32[$657>>2] = $656; - $$sum2$i$i = (($tsize$254$i) + -36)|0; - $658 = (($tbase$255$i) + ($$sum2$i$i)|0); - HEAP32[$658>>2] = 40; - $659 = HEAP32[(33164)>>2]|0; - HEAP32[(32704)>>2] = $659; + $641 = (($$723948$i) + -40)|0; + $642 = ((($$749$i)) + 8|0); + $643 = $642; + $644 = $643 & 7; + $645 = ($644|0)==(0); + $646 = (0 - ($643))|0; + $647 = $646 & 7; + $648 = $645 ? 0 : $647; + $649 = (($$749$i) + ($648)|0); + $650 = (($641) - ($648))|0; + HEAP32[(32988)>>2] = $649; + HEAP32[(32976)>>2] = $650; + $651 = $650 | 1; + $652 = ((($649)) + 4|0); + HEAP32[$652>>2] = $651; + $653 = (($649) + ($650)|0); + $654 = ((($653)) + 4|0); + HEAP32[$654>>2] = 40; + $655 = HEAP32[(33452)>>2]|0; + HEAP32[(32992)>>2] = $655; } else { - $sp$084$i = (33124); + $$024371$i = (33412); while(1) { - $660 = HEAP32[$sp$084$i>>2]|0; - $661 = ((($sp$084$i)) + 4|0); - $662 = HEAP32[$661>>2]|0; - $663 = (($660) + ($662)|0); - $664 = ($tbase$255$i|0)==($663|0); - if ($664) { - $$lcssa222 = $660;$$lcssa224 = $661;$$lcssa226 = $662;$sp$084$i$lcssa = $sp$084$i; - label = 204; + $656 = HEAP32[$$024371$i>>2]|0; + $657 = ((($$024371$i)) + 4|0); + $658 = HEAP32[$657>>2]|0; + $659 = (($656) + ($658)|0); + $660 = ($$749$i|0)==($659|0); + if ($660) { + label = 190; break; } - $665 = ((($sp$084$i)) + 8|0); - $666 = HEAP32[$665>>2]|0; - $667 = ($666|0)==(0|0); - if ($667) { + $661 = ((($$024371$i)) + 8|0); + $662 = HEAP32[$661>>2]|0; + $663 = ($662|0)==(0|0); + if ($663) { break; } else { - $sp$084$i = $666; + $$024371$i = $662; } } - if ((label|0) == 204) { - $668 = ((($sp$084$i$lcssa)) + 12|0); - $669 = HEAP32[$668>>2]|0; - $670 = $669 & 8; - $671 = ($670|0)==(0); - if ($671) { - $672 = ($635>>>0)>=($$lcssa222>>>0); - $673 = ($635>>>0)<($tbase$255$i>>>0); - $or$cond57$i = $673 & $672; - if ($or$cond57$i) { - $674 = (($$lcssa226) + ($tsize$254$i))|0; - HEAP32[$$lcssa224>>2] = $674; - $675 = HEAP32[(32688)>>2]|0; - $676 = (($675) + ($tsize$254$i))|0; - $677 = ((($635)) + 8|0); - $678 = $677; - $679 = $678 & 7; - $680 = ($679|0)==(0); - $681 = (0 - ($678))|0; - $682 = $681 & 7; - $683 = $680 ? 0 : $682; - $684 = (($635) + ($683)|0); - $685 = (($676) - ($683))|0; - HEAP32[(32700)>>2] = $684; - HEAP32[(32688)>>2] = $685; - $686 = $685 | 1; - $$sum$i17$i = (($683) + 4)|0; - $687 = (($635) + ($$sum$i17$i)|0); - HEAP32[$687>>2] = $686; - $$sum2$i18$i = (($676) + 4)|0; - $688 = (($635) + ($$sum2$i18$i)|0); - HEAP32[$688>>2] = 40; - $689 = HEAP32[(33164)>>2]|0; - HEAP32[(32704)>>2] = $689; + if ((label|0) == 190) { + $664 = ((($$024371$i)) + 12|0); + $665 = HEAP32[$664>>2]|0; + $666 = $665 & 8; + $667 = ($666|0)==(0); + if ($667) { + $668 = ($630>>>0)>=($656>>>0); + $669 = ($630>>>0)<($$749$i>>>0); + $or$cond51$i = $669 & $668; + if ($or$cond51$i) { + $670 = (($658) + ($$723948$i))|0; + HEAP32[$657>>2] = $670; + $671 = HEAP32[(32976)>>2]|0; + $672 = ((($630)) + 8|0); + $673 = $672; + $674 = $673 & 7; + $675 = ($674|0)==(0); + $676 = (0 - ($673))|0; + $677 = $676 & 7; + $678 = $675 ? 0 : $677; + $679 = (($630) + ($678)|0); + $680 = (($$723948$i) - ($678))|0; + $681 = (($671) + ($680))|0; + HEAP32[(32988)>>2] = $679; + HEAP32[(32976)>>2] = $681; + $682 = $681 | 1; + $683 = ((($679)) + 4|0); + HEAP32[$683>>2] = $682; + $684 = (($679) + ($681)|0); + $685 = ((($684)) + 4|0); + HEAP32[$685>>2] = 40; + $686 = HEAP32[(33452)>>2]|0; + HEAP32[(32992)>>2] = $686; break; } } } - $690 = HEAP32[(32692)>>2]|0; - $691 = ($tbase$255$i>>>0)<($690>>>0); - if ($691) { - HEAP32[(32692)>>2] = $tbase$255$i; - $755 = $tbase$255$i; + $687 = HEAP32[(32980)>>2]|0; + $688 = ($$749$i>>>0)<($687>>>0); + if ($688) { + HEAP32[(32980)>>2] = $$749$i; + $752 = $$749$i; } else { - $755 = $690; + $752 = $687; } - $692 = (($tbase$255$i) + ($tsize$254$i)|0); - $sp$183$i = (33124); + $689 = (($$749$i) + ($$723948$i)|0); + $$124470$i = (33412); while(1) { - $693 = HEAP32[$sp$183$i>>2]|0; - $694 = ($693|0)==($692|0); - if ($694) { - $$lcssa219 = $sp$183$i;$sp$183$i$lcssa = $sp$183$i; - label = 212; + $690 = HEAP32[$$124470$i>>2]|0; + $691 = ($690|0)==($689|0); + if ($691) { + label = 198; break; } - $695 = ((($sp$183$i)) + 8|0); - $696 = HEAP32[$695>>2]|0; - $697 = ($696|0)==(0|0); - if ($697) { - $sp$0$i$i$i = (33124); + $692 = ((($$124470$i)) + 8|0); + $693 = HEAP32[$692>>2]|0; + $694 = ($693|0)==(0|0); + if ($694) { break; } else { - $sp$183$i = $696; + $$124470$i = $693; } } - if ((label|0) == 212) { - $698 = ((($sp$183$i$lcssa)) + 12|0); - $699 = HEAP32[$698>>2]|0; - $700 = $699 & 8; - $701 = ($700|0)==(0); - if ($701) { - HEAP32[$$lcssa219>>2] = $tbase$255$i; - $702 = ((($sp$183$i$lcssa)) + 4|0); - $703 = HEAP32[$702>>2]|0; - $704 = (($703) + ($tsize$254$i))|0; - HEAP32[$702>>2] = $704; - $705 = ((($tbase$255$i)) + 8|0); - $706 = $705; + if ((label|0) == 198) { + $695 = ((($$124470$i)) + 12|0); + $696 = HEAP32[$695>>2]|0; + $697 = $696 & 8; + $698 = ($697|0)==(0); + if ($698) { + HEAP32[$$124470$i>>2] = $$749$i; + $699 = ((($$124470$i)) + 4|0); + $700 = HEAP32[$699>>2]|0; + $701 = (($700) + ($$723948$i))|0; + HEAP32[$699>>2] = $701; + $702 = ((($$749$i)) + 8|0); + $703 = $702; + $704 = $703 & 7; + $705 = ($704|0)==(0); + $706 = (0 - ($703))|0; $707 = $706 & 7; - $708 = ($707|0)==(0); - $709 = (0 - ($706))|0; - $710 = $709 & 7; - $711 = $708 ? 0 : $710; - $712 = (($tbase$255$i) + ($711)|0); - $$sum112$i = (($tsize$254$i) + 8)|0; - $713 = (($tbase$255$i) + ($$sum112$i)|0); - $714 = $713; + $708 = $705 ? 0 : $707; + $709 = (($$749$i) + ($708)|0); + $710 = ((($689)) + 8|0); + $711 = $710; + $712 = $711 & 7; + $713 = ($712|0)==(0); + $714 = (0 - ($711))|0; $715 = $714 & 7; - $716 = ($715|0)==(0); - $717 = (0 - ($714))|0; - $718 = $717 & 7; - $719 = $716 ? 0 : $718; - $$sum113$i = (($719) + ($tsize$254$i))|0; - $720 = (($tbase$255$i) + ($$sum113$i)|0); - $721 = $720; - $722 = $712; - $723 = (($721) - ($722))|0; - $$sum$i19$i = (($711) + ($nb$0))|0; - $724 = (($tbase$255$i) + ($$sum$i19$i)|0); - $725 = (($723) - ($nb$0))|0; - $726 = $nb$0 | 3; - $$sum1$i20$i = (($711) + 4)|0; - $727 = (($tbase$255$i) + ($$sum1$i20$i)|0); - HEAP32[$727>>2] = $726; - $728 = ($720|0)==($635|0); - L324: do { - if ($728) { - $729 = HEAP32[(32688)>>2]|0; - $730 = (($729) + ($725))|0; - HEAP32[(32688)>>2] = $730; - HEAP32[(32700)>>2] = $724; - $731 = $730 | 1; - $$sum42$i$i = (($$sum$i19$i) + 4)|0; - $732 = (($tbase$255$i) + ($$sum42$i$i)|0); - HEAP32[$732>>2] = $731; + $716 = $713 ? 0 : $715; + $717 = (($689) + ($716)|0); + $718 = $717; + $719 = $709; + $720 = (($718) - ($719))|0; + $721 = (($709) + ($$0197)|0); + $722 = (($720) - ($$0197))|0; + $723 = $$0197 | 3; + $724 = ((($709)) + 4|0); + HEAP32[$724>>2] = $723; + $725 = ($717|0)==($630|0); + do { + if ($725) { + $726 = HEAP32[(32976)>>2]|0; + $727 = (($726) + ($722))|0; + HEAP32[(32976)>>2] = $727; + HEAP32[(32988)>>2] = $721; + $728 = $727 | 1; + $729 = ((($721)) + 4|0); + HEAP32[$729>>2] = $728; } else { - $733 = HEAP32[(32696)>>2]|0; - $734 = ($720|0)==($733|0); - if ($734) { - $735 = HEAP32[(32684)>>2]|0; - $736 = (($735) + ($725))|0; - HEAP32[(32684)>>2] = $736; - HEAP32[(32696)>>2] = $724; - $737 = $736 | 1; - $$sum40$i$i = (($$sum$i19$i) + 4)|0; - $738 = (($tbase$255$i) + ($$sum40$i$i)|0); - HEAP32[$738>>2] = $737; - $$sum41$i$i = (($736) + ($$sum$i19$i))|0; - $739 = (($tbase$255$i) + ($$sum41$i$i)|0); - HEAP32[$739>>2] = $736; + $730 = HEAP32[(32984)>>2]|0; + $731 = ($717|0)==($730|0); + if ($731) { + $732 = HEAP32[(32972)>>2]|0; + $733 = (($732) + ($722))|0; + HEAP32[(32972)>>2] = $733; + HEAP32[(32984)>>2] = $721; + $734 = $733 | 1; + $735 = ((($721)) + 4|0); + HEAP32[$735>>2] = $734; + $736 = (($721) + ($733)|0); + HEAP32[$736>>2] = $733; break; } - $$sum2$i21$i = (($tsize$254$i) + 4)|0; - $$sum114$i = (($$sum2$i21$i) + ($719))|0; - $740 = (($tbase$255$i) + ($$sum114$i)|0); - $741 = HEAP32[$740>>2]|0; - $742 = $741 & 3; - $743 = ($742|0)==(1); - if ($743) { - $744 = $741 & -8; - $745 = $741 >>> 3; - $746 = ($741>>>0)<(256); - L332: do { - if ($746) { - $$sum3738$i$i = $719 | 8; - $$sum124$i = (($$sum3738$i$i) + ($tsize$254$i))|0; - $747 = (($tbase$255$i) + ($$sum124$i)|0); - $748 = HEAP32[$747>>2]|0; - $$sum39$i$i = (($tsize$254$i) + 12)|0; - $$sum125$i = (($$sum39$i$i) + ($719))|0; - $749 = (($tbase$255$i) + ($$sum125$i)|0); - $750 = HEAP32[$749>>2]|0; - $751 = $745 << 1; - $752 = (32716 + ($751<<2)|0); - $753 = ($748|0)==($752|0); + $737 = ((($717)) + 4|0); + $738 = HEAP32[$737>>2]|0; + $739 = $738 & 3; + $740 = ($739|0)==(1); + if ($740) { + $741 = $738 & -8; + $742 = $738 >>> 3; + $743 = ($738>>>0)<(256); + L314: do { + if ($743) { + $744 = ((($717)) + 8|0); + $745 = HEAP32[$744>>2]|0; + $746 = ((($717)) + 12|0); + $747 = HEAP32[$746>>2]|0; + $748 = $742 << 1; + $749 = (33004 + ($748<<2)|0); + $750 = ($745|0)==($749|0); do { - if (!($753)) { - $754 = ($748>>>0)<($755>>>0); - if ($754) { + if (!($750)) { + $751 = ($745>>>0)<($752>>>0); + if ($751) { _abort(); // unreachable; } - $756 = ((($748)) + 12|0); - $757 = HEAP32[$756>>2]|0; - $758 = ($757|0)==($720|0); - if ($758) { + $753 = ((($745)) + 12|0); + $754 = HEAP32[$753>>2]|0; + $755 = ($754|0)==($717|0); + if ($755) { break; } _abort(); // unreachable; } } while(0); - $759 = ($750|0)==($748|0); - if ($759) { - $760 = 1 << $745; - $761 = $760 ^ -1; - $762 = HEAP32[32676>>2]|0; - $763 = $762 & $761; - HEAP32[32676>>2] = $763; + $756 = ($747|0)==($745|0); + if ($756) { + $757 = 1 << $742; + $758 = $757 ^ -1; + $759 = HEAP32[8241]|0; + $760 = $759 & $758; + HEAP32[8241] = $760; break; } - $764 = ($750|0)==($752|0); + $761 = ($747|0)==($749|0); do { - if ($764) { - $$pre57$i$i = ((($750)) + 8|0); - $$pre$phi58$i$iZ2D = $$pre57$i$i; + if ($761) { + $$pre10$i$i = ((($747)) + 8|0); + $$pre$phi11$i$iZ2D = $$pre10$i$i; } else { - $765 = ($750>>>0)<($755>>>0); - if ($765) { + $762 = ($747>>>0)<($752>>>0); + if ($762) { _abort(); // unreachable; } - $766 = ((($750)) + 8|0); - $767 = HEAP32[$766>>2]|0; - $768 = ($767|0)==($720|0); - if ($768) { - $$pre$phi58$i$iZ2D = $766; + $763 = ((($747)) + 8|0); + $764 = HEAP32[$763>>2]|0; + $765 = ($764|0)==($717|0); + if ($765) { + $$pre$phi11$i$iZ2D = $763; break; } _abort(); // unreachable; } } while(0); - $769 = ((($748)) + 12|0); - HEAP32[$769>>2] = $750; - HEAP32[$$pre$phi58$i$iZ2D>>2] = $748; + $766 = ((($745)) + 12|0); + HEAP32[$766>>2] = $747; + HEAP32[$$pre$phi11$i$iZ2D>>2] = $745; } else { - $$sum34$i$i = $719 | 24; - $$sum115$i = (($$sum34$i$i) + ($tsize$254$i))|0; - $770 = (($tbase$255$i) + ($$sum115$i)|0); - $771 = HEAP32[$770>>2]|0; - $$sum5$i$i = (($tsize$254$i) + 12)|0; - $$sum116$i = (($$sum5$i$i) + ($719))|0; - $772 = (($tbase$255$i) + ($$sum116$i)|0); - $773 = HEAP32[$772>>2]|0; - $774 = ($773|0)==($720|0); + $767 = ((($717)) + 24|0); + $768 = HEAP32[$767>>2]|0; + $769 = ((($717)) + 12|0); + $770 = HEAP32[$769>>2]|0; + $771 = ($770|0)==($717|0); do { - if ($774) { - $$sum67$i$i = $719 | 16; - $$sum122$i = (($$sum2$i21$i) + ($$sum67$i$i))|0; - $784 = (($tbase$255$i) + ($$sum122$i)|0); - $785 = HEAP32[$784>>2]|0; - $786 = ($785|0)==(0|0); - if ($786) { - $$sum123$i = (($$sum67$i$i) + ($tsize$254$i))|0; - $787 = (($tbase$255$i) + ($$sum123$i)|0); - $788 = HEAP32[$787>>2]|0; - $789 = ($788|0)==(0|0); - if ($789) { - $R$1$i$i = 0; + if ($771) { + $781 = ((($717)) + 16|0); + $782 = ((($781)) + 4|0); + $783 = HEAP32[$782>>2]|0; + $784 = ($783|0)==(0|0); + if ($784) { + $785 = HEAP32[$781>>2]|0; + $786 = ($785|0)==(0|0); + if ($786) { + $$3$i$i = 0; break; } else { - $R$0$i$i = $788;$RP$0$i$i = $787; + $$1291$i$i = $785;$$1293$i$i = $781; } } else { - $R$0$i$i = $785;$RP$0$i$i = $784; + $$1291$i$i = $783;$$1293$i$i = $782; } while(1) { - $790 = ((($R$0$i$i)) + 20|0); - $791 = HEAP32[$790>>2]|0; - $792 = ($791|0)==(0|0); - if (!($792)) { - $R$0$i$i = $791;$RP$0$i$i = $790; + $787 = ((($$1291$i$i)) + 20|0); + $788 = HEAP32[$787>>2]|0; + $789 = ($788|0)==(0|0); + if (!($789)) { + $$1291$i$i = $788;$$1293$i$i = $787; continue; } - $793 = ((($R$0$i$i)) + 16|0); - $794 = HEAP32[$793>>2]|0; - $795 = ($794|0)==(0|0); - if ($795) { - $R$0$i$i$lcssa = $R$0$i$i;$RP$0$i$i$lcssa = $RP$0$i$i; + $790 = ((($$1291$i$i)) + 16|0); + $791 = HEAP32[$790>>2]|0; + $792 = ($791|0)==(0|0); + if ($792) { break; } else { - $R$0$i$i = $794;$RP$0$i$i = $793; + $$1291$i$i = $791;$$1293$i$i = $790; } } - $796 = ($RP$0$i$i$lcssa>>>0)<($755>>>0); - if ($796) { + $793 = ($$1293$i$i>>>0)<($752>>>0); + if ($793) { _abort(); // unreachable; } else { - HEAP32[$RP$0$i$i$lcssa>>2] = 0; - $R$1$i$i = $R$0$i$i$lcssa; + HEAP32[$$1293$i$i>>2] = 0; + $$3$i$i = $$1291$i$i; break; } } else { - $$sum3536$i$i = $719 | 8; - $$sum117$i = (($$sum3536$i$i) + ($tsize$254$i))|0; - $775 = (($tbase$255$i) + ($$sum117$i)|0); - $776 = HEAP32[$775>>2]|0; - $777 = ($776>>>0)<($755>>>0); - if ($777) { + $772 = ((($717)) + 8|0); + $773 = HEAP32[$772>>2]|0; + $774 = ($773>>>0)<($752>>>0); + if ($774) { _abort(); // unreachable; } - $778 = ((($776)) + 12|0); - $779 = HEAP32[$778>>2]|0; - $780 = ($779|0)==($720|0); - if (!($780)) { + $775 = ((($773)) + 12|0); + $776 = HEAP32[$775>>2]|0; + $777 = ($776|0)==($717|0); + if (!($777)) { _abort(); // unreachable; } - $781 = ((($773)) + 8|0); - $782 = HEAP32[$781>>2]|0; - $783 = ($782|0)==($720|0); - if ($783) { + $778 = ((($770)) + 8|0); + $779 = HEAP32[$778>>2]|0; + $780 = ($779|0)==($717|0); + if ($780) { + HEAP32[$775>>2] = $770; HEAP32[$778>>2] = $773; - HEAP32[$781>>2] = $776; - $R$1$i$i = $773; + $$3$i$i = $770; break; } else { _abort(); @@ -22496,823 +18832,761 @@ function _malloc($bytes) { } } } while(0); - $797 = ($771|0)==(0|0); - if ($797) { + $794 = ($768|0)==(0|0); + if ($794) { break; } - $$sum30$i$i = (($tsize$254$i) + 28)|0; - $$sum118$i = (($$sum30$i$i) + ($719))|0; - $798 = (($tbase$255$i) + ($$sum118$i)|0); - $799 = HEAP32[$798>>2]|0; - $800 = (32980 + ($799<<2)|0); - $801 = HEAP32[$800>>2]|0; - $802 = ($720|0)==($801|0); + $795 = ((($717)) + 28|0); + $796 = HEAP32[$795>>2]|0; + $797 = (33268 + ($796<<2)|0); + $798 = HEAP32[$797>>2]|0; + $799 = ($717|0)==($798|0); do { - if ($802) { - HEAP32[$800>>2] = $R$1$i$i; - $cond$i$i = ($R$1$i$i|0)==(0|0); + if ($799) { + HEAP32[$797>>2] = $$3$i$i; + $cond$i$i = ($$3$i$i|0)==(0|0); if (!($cond$i$i)) { break; } - $803 = 1 << $799; - $804 = $803 ^ -1; - $805 = HEAP32[(32680)>>2]|0; - $806 = $805 & $804; - HEAP32[(32680)>>2] = $806; - break L332; + $800 = 1 << $796; + $801 = $800 ^ -1; + $802 = HEAP32[(32968)>>2]|0; + $803 = $802 & $801; + HEAP32[(32968)>>2] = $803; + break L314; } else { - $807 = HEAP32[(32692)>>2]|0; - $808 = ($771>>>0)<($807>>>0); - if ($808) { + $804 = HEAP32[(32980)>>2]|0; + $805 = ($768>>>0)<($804>>>0); + if ($805) { _abort(); // unreachable; - } - $809 = ((($771)) + 16|0); - $810 = HEAP32[$809>>2]|0; - $811 = ($810|0)==($720|0); - if ($811) { - HEAP32[$809>>2] = $R$1$i$i; } else { - $812 = ((($771)) + 20|0); - HEAP32[$812>>2] = $R$1$i$i; - } - $813 = ($R$1$i$i|0)==(0|0); - if ($813) { - break L332; + $806 = ((($768)) + 16|0); + $807 = HEAP32[$806>>2]|0; + $not$$i17$i = ($807|0)!=($717|0); + $$sink1$i$i = $not$$i17$i&1; + $808 = (((($768)) + 16|0) + ($$sink1$i$i<<2)|0); + HEAP32[$808>>2] = $$3$i$i; + $809 = ($$3$i$i|0)==(0|0); + if ($809) { + break L314; + } else { + break; + } } } } while(0); - $814 = HEAP32[(32692)>>2]|0; - $815 = ($R$1$i$i>>>0)<($814>>>0); - if ($815) { + $810 = HEAP32[(32980)>>2]|0; + $811 = ($$3$i$i>>>0)<($810>>>0); + if ($811) { _abort(); // unreachable; } - $816 = ((($R$1$i$i)) + 24|0); - HEAP32[$816>>2] = $771; - $$sum3132$i$i = $719 | 16; - $$sum119$i = (($$sum3132$i$i) + ($tsize$254$i))|0; - $817 = (($tbase$255$i) + ($$sum119$i)|0); - $818 = HEAP32[$817>>2]|0; - $819 = ($818|0)==(0|0); + $812 = ((($$3$i$i)) + 24|0); + HEAP32[$812>>2] = $768; + $813 = ((($717)) + 16|0); + $814 = HEAP32[$813>>2]|0; + $815 = ($814|0)==(0|0); do { - if (!($819)) { - $820 = ($818>>>0)<($814>>>0); - if ($820) { + if (!($815)) { + $816 = ($814>>>0)<($810>>>0); + if ($816) { _abort(); // unreachable; } else { - $821 = ((($R$1$i$i)) + 16|0); - HEAP32[$821>>2] = $818; - $822 = ((($818)) + 24|0); - HEAP32[$822>>2] = $R$1$i$i; + $817 = ((($$3$i$i)) + 16|0); + HEAP32[$817>>2] = $814; + $818 = ((($814)) + 24|0); + HEAP32[$818>>2] = $$3$i$i; break; } } } while(0); - $$sum120$i = (($$sum2$i21$i) + ($$sum3132$i$i))|0; - $823 = (($tbase$255$i) + ($$sum120$i)|0); - $824 = HEAP32[$823>>2]|0; - $825 = ($824|0)==(0|0); - if ($825) { + $819 = ((($813)) + 4|0); + $820 = HEAP32[$819>>2]|0; + $821 = ($820|0)==(0|0); + if ($821) { break; } - $826 = HEAP32[(32692)>>2]|0; - $827 = ($824>>>0)<($826>>>0); - if ($827) { + $822 = HEAP32[(32980)>>2]|0; + $823 = ($820>>>0)<($822>>>0); + if ($823) { _abort(); // unreachable; } else { - $828 = ((($R$1$i$i)) + 20|0); - HEAP32[$828>>2] = $824; - $829 = ((($824)) + 24|0); - HEAP32[$829>>2] = $R$1$i$i; + $824 = ((($$3$i$i)) + 20|0); + HEAP32[$824>>2] = $820; + $825 = ((($820)) + 24|0); + HEAP32[$825>>2] = $$3$i$i; break; } } } while(0); - $$sum9$i$i = $744 | $719; - $$sum121$i = (($$sum9$i$i) + ($tsize$254$i))|0; - $830 = (($tbase$255$i) + ($$sum121$i)|0); - $831 = (($744) + ($725))|0; - $oldfirst$0$i$i = $830;$qsize$0$i$i = $831; + $826 = (($717) + ($741)|0); + $827 = (($741) + ($722))|0; + $$0$i18$i = $826;$$0287$i$i = $827; } else { - $oldfirst$0$i$i = $720;$qsize$0$i$i = $725; - } - $832 = ((($oldfirst$0$i$i)) + 4|0); - $833 = HEAP32[$832>>2]|0; - $834 = $833 & -2; - HEAP32[$832>>2] = $834; - $835 = $qsize$0$i$i | 1; - $$sum10$i$i = (($$sum$i19$i) + 4)|0; - $836 = (($tbase$255$i) + ($$sum10$i$i)|0); - HEAP32[$836>>2] = $835; - $$sum11$i$i = (($qsize$0$i$i) + ($$sum$i19$i))|0; - $837 = (($tbase$255$i) + ($$sum11$i$i)|0); - HEAP32[$837>>2] = $qsize$0$i$i; - $838 = $qsize$0$i$i >>> 3; - $839 = ($qsize$0$i$i>>>0)<(256); - if ($839) { - $840 = $838 << 1; - $841 = (32716 + ($840<<2)|0); - $842 = HEAP32[32676>>2]|0; - $843 = 1 << $838; - $844 = $842 & $843; - $845 = ($844|0)==(0); + $$0$i18$i = $717;$$0287$i$i = $722; + } + $828 = ((($$0$i18$i)) + 4|0); + $829 = HEAP32[$828>>2]|0; + $830 = $829 & -2; + HEAP32[$828>>2] = $830; + $831 = $$0287$i$i | 1; + $832 = ((($721)) + 4|0); + HEAP32[$832>>2] = $831; + $833 = (($721) + ($$0287$i$i)|0); + HEAP32[$833>>2] = $$0287$i$i; + $834 = $$0287$i$i >>> 3; + $835 = ($$0287$i$i>>>0)<(256); + if ($835) { + $836 = $834 << 1; + $837 = (33004 + ($836<<2)|0); + $838 = HEAP32[8241]|0; + $839 = 1 << $834; + $840 = $838 & $839; + $841 = ($840|0)==(0); do { - if ($845) { - $846 = $842 | $843; - HEAP32[32676>>2] = $846; - $$pre$i22$i = (($840) + 2)|0; - $$pre56$i$i = (32716 + ($$pre$i22$i<<2)|0); - $$pre$phi$i23$iZ2D = $$pre56$i$i;$F4$0$i$i = $841; + if ($841) { + $842 = $838 | $839; + HEAP32[8241] = $842; + $$pre$i19$i = ((($837)) + 8|0); + $$0295$i$i = $837;$$pre$phi$i20$iZ2D = $$pre$i19$i; } else { - $$sum29$i$i = (($840) + 2)|0; - $847 = (32716 + ($$sum29$i$i<<2)|0); - $848 = HEAP32[$847>>2]|0; - $849 = HEAP32[(32692)>>2]|0; - $850 = ($848>>>0)<($849>>>0); - if (!($850)) { - $$pre$phi$i23$iZ2D = $847;$F4$0$i$i = $848; + $843 = ((($837)) + 8|0); + $844 = HEAP32[$843>>2]|0; + $845 = HEAP32[(32980)>>2]|0; + $846 = ($844>>>0)<($845>>>0); + if (!($846)) { + $$0295$i$i = $844;$$pre$phi$i20$iZ2D = $843; break; } _abort(); // unreachable; } } while(0); - HEAP32[$$pre$phi$i23$iZ2D>>2] = $724; - $851 = ((($F4$0$i$i)) + 12|0); - HEAP32[$851>>2] = $724; - $$sum27$i$i = (($$sum$i19$i) + 8)|0; - $852 = (($tbase$255$i) + ($$sum27$i$i)|0); - HEAP32[$852>>2] = $F4$0$i$i; - $$sum28$i$i = (($$sum$i19$i) + 12)|0; - $853 = (($tbase$255$i) + ($$sum28$i$i)|0); - HEAP32[$853>>2] = $841; + HEAP32[$$pre$phi$i20$iZ2D>>2] = $721; + $847 = ((($$0295$i$i)) + 12|0); + HEAP32[$847>>2] = $721; + $848 = ((($721)) + 8|0); + HEAP32[$848>>2] = $$0295$i$i; + $849 = ((($721)) + 12|0); + HEAP32[$849>>2] = $837; break; } - $854 = $qsize$0$i$i >>> 8; - $855 = ($854|0)==(0); + $850 = $$0287$i$i >>> 8; + $851 = ($850|0)==(0); do { - if ($855) { - $I7$0$i$i = 0; + if ($851) { + $$0296$i$i = 0; } else { - $856 = ($qsize$0$i$i>>>0)>(16777215); - if ($856) { - $I7$0$i$i = 31; + $852 = ($$0287$i$i>>>0)>(16777215); + if ($852) { + $$0296$i$i = 31; break; } - $857 = (($854) + 1048320)|0; + $853 = (($850) + 1048320)|0; + $854 = $853 >>> 16; + $855 = $854 & 8; + $856 = $850 << $855; + $857 = (($856) + 520192)|0; $858 = $857 >>> 16; - $859 = $858 & 8; - $860 = $854 << $859; - $861 = (($860) + 520192)|0; - $862 = $861 >>> 16; - $863 = $862 & 4; - $864 = $863 | $859; - $865 = $860 << $863; - $866 = (($865) + 245760)|0; - $867 = $866 >>> 16; - $868 = $867 & 2; - $869 = $864 | $868; - $870 = (14 - ($869))|0; - $871 = $865 << $868; - $872 = $871 >>> 15; - $873 = (($870) + ($872))|0; - $874 = $873 << 1; - $875 = (($873) + 7)|0; - $876 = $qsize$0$i$i >>> $875; - $877 = $876 & 1; - $878 = $877 | $874; - $I7$0$i$i = $878; + $859 = $858 & 4; + $860 = $859 | $855; + $861 = $856 << $859; + $862 = (($861) + 245760)|0; + $863 = $862 >>> 16; + $864 = $863 & 2; + $865 = $860 | $864; + $866 = (14 - ($865))|0; + $867 = $861 << $864; + $868 = $867 >>> 15; + $869 = (($866) + ($868))|0; + $870 = $869 << 1; + $871 = (($869) + 7)|0; + $872 = $$0287$i$i >>> $871; + $873 = $872 & 1; + $874 = $873 | $870; + $$0296$i$i = $874; } } while(0); - $879 = (32980 + ($I7$0$i$i<<2)|0); - $$sum12$i$i = (($$sum$i19$i) + 28)|0; - $880 = (($tbase$255$i) + ($$sum12$i$i)|0); - HEAP32[$880>>2] = $I7$0$i$i; - $$sum13$i$i = (($$sum$i19$i) + 16)|0; - $881 = (($tbase$255$i) + ($$sum13$i$i)|0); - $$sum14$i$i = (($$sum$i19$i) + 20)|0; - $882 = (($tbase$255$i) + ($$sum14$i$i)|0); - HEAP32[$882>>2] = 0; - HEAP32[$881>>2] = 0; - $883 = HEAP32[(32680)>>2]|0; - $884 = 1 << $I7$0$i$i; - $885 = $883 & $884; - $886 = ($885|0)==(0); - if ($886) { - $887 = $883 | $884; - HEAP32[(32680)>>2] = $887; - HEAP32[$879>>2] = $724; - $$sum15$i$i = (($$sum$i19$i) + 24)|0; - $888 = (($tbase$255$i) + ($$sum15$i$i)|0); - HEAP32[$888>>2] = $879; - $$sum16$i$i = (($$sum$i19$i) + 12)|0; - $889 = (($tbase$255$i) + ($$sum16$i$i)|0); - HEAP32[$889>>2] = $724; - $$sum17$i$i = (($$sum$i19$i) + 8)|0; - $890 = (($tbase$255$i) + ($$sum17$i$i)|0); - HEAP32[$890>>2] = $724; + $875 = (33268 + ($$0296$i$i<<2)|0); + $876 = ((($721)) + 28|0); + HEAP32[$876>>2] = $$0296$i$i; + $877 = ((($721)) + 16|0); + $878 = ((($877)) + 4|0); + HEAP32[$878>>2] = 0; + HEAP32[$877>>2] = 0; + $879 = HEAP32[(32968)>>2]|0; + $880 = 1 << $$0296$i$i; + $881 = $879 & $880; + $882 = ($881|0)==(0); + if ($882) { + $883 = $879 | $880; + HEAP32[(32968)>>2] = $883; + HEAP32[$875>>2] = $721; + $884 = ((($721)) + 24|0); + HEAP32[$884>>2] = $875; + $885 = ((($721)) + 12|0); + HEAP32[$885>>2] = $721; + $886 = ((($721)) + 8|0); + HEAP32[$886>>2] = $721; break; } - $891 = HEAP32[$879>>2]|0; - $892 = ((($891)) + 4|0); - $893 = HEAP32[$892>>2]|0; - $894 = $893 & -8; - $895 = ($894|0)==($qsize$0$i$i|0); - L418: do { - if ($895) { - $T$0$lcssa$i25$i = $891; + $887 = HEAP32[$875>>2]|0; + $888 = ($$0296$i$i|0)==(31); + $889 = $$0296$i$i >>> 1; + $890 = (25 - ($889))|0; + $891 = $888 ? 0 : $890; + $892 = $$0287$i$i << $891; + $$0288$i$i = $892;$$0289$i$i = $887; + while(1) { + $893 = ((($$0289$i$i)) + 4|0); + $894 = HEAP32[$893>>2]|0; + $895 = $894 & -8; + $896 = ($895|0)==($$0287$i$i|0); + if ($896) { + label = 265; + break; + } + $897 = $$0288$i$i >>> 31; + $898 = (((($$0289$i$i)) + 16|0) + ($897<<2)|0); + $899 = $$0288$i$i << 1; + $900 = HEAP32[$898>>2]|0; + $901 = ($900|0)==(0|0); + if ($901) { + label = 262; + break; } else { - $896 = ($I7$0$i$i|0)==(31); - $897 = $I7$0$i$i >>> 1; - $898 = (25 - ($897))|0; - $899 = $896 ? 0 : $898; - $900 = $qsize$0$i$i << $899; - $K8$051$i$i = $900;$T$050$i$i = $891; - while(1) { - $907 = $K8$051$i$i >>> 31; - $908 = (((($T$050$i$i)) + 16|0) + ($907<<2)|0); - $903 = HEAP32[$908>>2]|0; - $909 = ($903|0)==(0|0); - if ($909) { - $$lcssa = $908;$T$050$i$i$lcssa = $T$050$i$i; - break; - } - $901 = $K8$051$i$i << 1; - $902 = ((($903)) + 4|0); - $904 = HEAP32[$902>>2]|0; - $905 = $904 & -8; - $906 = ($905|0)==($qsize$0$i$i|0); - if ($906) { - $T$0$lcssa$i25$i = $903; - break L418; - } else { - $K8$051$i$i = $901;$T$050$i$i = $903; - } - } - $910 = HEAP32[(32692)>>2]|0; - $911 = ($$lcssa>>>0)<($910>>>0); - if ($911) { - _abort(); - // unreachable; - } else { - HEAP32[$$lcssa>>2] = $724; - $$sum23$i$i = (($$sum$i19$i) + 24)|0; - $912 = (($tbase$255$i) + ($$sum23$i$i)|0); - HEAP32[$912>>2] = $T$050$i$i$lcssa; - $$sum24$i$i = (($$sum$i19$i) + 12)|0; - $913 = (($tbase$255$i) + ($$sum24$i$i)|0); - HEAP32[$913>>2] = $724; - $$sum25$i$i = (($$sum$i19$i) + 8)|0; - $914 = (($tbase$255$i) + ($$sum25$i$i)|0); - HEAP32[$914>>2] = $724; - break L324; - } + $$0288$i$i = $899;$$0289$i$i = $900; + } + } + if ((label|0) == 262) { + $902 = HEAP32[(32980)>>2]|0; + $903 = ($898>>>0)<($902>>>0); + if ($903) { + _abort(); + // unreachable; + } else { + HEAP32[$898>>2] = $721; + $904 = ((($721)) + 24|0); + HEAP32[$904>>2] = $$0289$i$i; + $905 = ((($721)) + 12|0); + HEAP32[$905>>2] = $721; + $906 = ((($721)) + 8|0); + HEAP32[$906>>2] = $721; + break; + } + } + else if ((label|0) == 265) { + $907 = ((($$0289$i$i)) + 8|0); + $908 = HEAP32[$907>>2]|0; + $909 = HEAP32[(32980)>>2]|0; + $910 = ($908>>>0)>=($909>>>0); + $not$7$i$i = ($$0289$i$i>>>0)>=($909>>>0); + $911 = $910 & $not$7$i$i; + if ($911) { + $912 = ((($908)) + 12|0); + HEAP32[$912>>2] = $721; + HEAP32[$907>>2] = $721; + $913 = ((($721)) + 8|0); + HEAP32[$913>>2] = $908; + $914 = ((($721)) + 12|0); + HEAP32[$914>>2] = $$0289$i$i; + $915 = ((($721)) + 24|0); + HEAP32[$915>>2] = 0; + break; + } else { + _abort(); + // unreachable; } - } while(0); - $915 = ((($T$0$lcssa$i25$i)) + 8|0); - $916 = HEAP32[$915>>2]|0; - $917 = HEAP32[(32692)>>2]|0; - $918 = ($916>>>0)>=($917>>>0); - $not$$i26$i = ($T$0$lcssa$i25$i>>>0)>=($917>>>0); - $919 = $918 & $not$$i26$i; - if ($919) { - $920 = ((($916)) + 12|0); - HEAP32[$920>>2] = $724; - HEAP32[$915>>2] = $724; - $$sum20$i$i = (($$sum$i19$i) + 8)|0; - $921 = (($tbase$255$i) + ($$sum20$i$i)|0); - HEAP32[$921>>2] = $916; - $$sum21$i$i = (($$sum$i19$i) + 12)|0; - $922 = (($tbase$255$i) + ($$sum21$i$i)|0); - HEAP32[$922>>2] = $T$0$lcssa$i25$i; - $$sum22$i$i = (($$sum$i19$i) + 24)|0; - $923 = (($tbase$255$i) + ($$sum22$i$i)|0); - HEAP32[$923>>2] = 0; - break; - } else { - _abort(); - // unreachable; } } } while(0); - $$sum1819$i$i = $711 | 8; - $924 = (($tbase$255$i) + ($$sum1819$i$i)|0); - $mem$0 = $924; - return ($mem$0|0); - } else { - $sp$0$i$i$i = (33124); + $1047 = ((($709)) + 8|0); + $$0 = $1047; + STACKTOP = sp;return ($$0|0); } } + $$0$i$i$i = (33412); while(1) { - $925 = HEAP32[$sp$0$i$i$i>>2]|0; - $926 = ($925>>>0)>($635>>>0); - if (!($926)) { - $927 = ((($sp$0$i$i$i)) + 4|0); - $928 = HEAP32[$927>>2]|0; - $929 = (($925) + ($928)|0); - $930 = ($929>>>0)>($635>>>0); - if ($930) { - $$lcssa215 = $925;$$lcssa216 = $928;$$lcssa217 = $929; + $916 = HEAP32[$$0$i$i$i>>2]|0; + $917 = ($916>>>0)>($630>>>0); + if (!($917)) { + $918 = ((($$0$i$i$i)) + 4|0); + $919 = HEAP32[$918>>2]|0; + $920 = (($916) + ($919)|0); + $921 = ($920>>>0)>($630>>>0); + if ($921) { break; } } - $931 = ((($sp$0$i$i$i)) + 8|0); - $932 = HEAP32[$931>>2]|0; - $sp$0$i$i$i = $932; - } - $$sum$i14$i = (($$lcssa216) + -47)|0; - $$sum1$i15$i = (($$lcssa216) + -39)|0; - $933 = (($$lcssa215) + ($$sum1$i15$i)|0); - $934 = $933; - $935 = $934 & 7; - $936 = ($935|0)==(0); - $937 = (0 - ($934))|0; - $938 = $937 & 7; - $939 = $936 ? 0 : $938; - $$sum2$i16$i = (($$sum$i14$i) + ($939))|0; - $940 = (($$lcssa215) + ($$sum2$i16$i)|0); - $941 = ((($635)) + 16|0); - $942 = ($940>>>0)<($941>>>0); - $943 = $942 ? $635 : $940; - $944 = ((($943)) + 8|0); - $945 = (($tsize$254$i) + -40)|0; - $946 = ((($tbase$255$i)) + 8|0); - $947 = $946; - $948 = $947 & 7; - $949 = ($948|0)==(0); - $950 = (0 - ($947))|0; - $951 = $950 & 7; - $952 = $949 ? 0 : $951; - $953 = (($tbase$255$i) + ($952)|0); - $954 = (($945) - ($952))|0; - HEAP32[(32700)>>2] = $953; - HEAP32[(32688)>>2] = $954; - $955 = $954 | 1; - $$sum$i$i$i = (($952) + 4)|0; - $956 = (($tbase$255$i) + ($$sum$i$i$i)|0); - HEAP32[$956>>2] = $955; - $$sum2$i$i$i = (($tsize$254$i) + -36)|0; - $957 = (($tbase$255$i) + ($$sum2$i$i$i)|0); - HEAP32[$957>>2] = 40; - $958 = HEAP32[(33164)>>2]|0; - HEAP32[(32704)>>2] = $958; - $959 = ((($943)) + 4|0); - HEAP32[$959>>2] = 27; - ;HEAP32[$944>>2]=HEAP32[(33124)>>2]|0;HEAP32[$944+4>>2]=HEAP32[(33124)+4>>2]|0;HEAP32[$944+8>>2]=HEAP32[(33124)+8>>2]|0;HEAP32[$944+12>>2]=HEAP32[(33124)+12>>2]|0; - HEAP32[(33124)>>2] = $tbase$255$i; - HEAP32[(33128)>>2] = $tsize$254$i; - HEAP32[(33136)>>2] = 0; - HEAP32[(33132)>>2] = $944; - $960 = ((($943)) + 28|0); - HEAP32[$960>>2] = 7; - $961 = ((($943)) + 32|0); - $962 = ($961>>>0)<($$lcssa217>>>0); - if ($962) { - $964 = $960; - while(1) { - $963 = ((($964)) + 4|0); - HEAP32[$963>>2] = 7; - $965 = ((($964)) + 8|0); - $966 = ($965>>>0)<($$lcssa217>>>0); - if ($966) { - $964 = $963; - } else { - break; - } + $922 = ((($$0$i$i$i)) + 8|0); + $923 = HEAP32[$922>>2]|0; + $$0$i$i$i = $923; + } + $924 = ((($920)) + -47|0); + $925 = ((($924)) + 8|0); + $926 = $925; + $927 = $926 & 7; + $928 = ($927|0)==(0); + $929 = (0 - ($926))|0; + $930 = $929 & 7; + $931 = $928 ? 0 : $930; + $932 = (($924) + ($931)|0); + $933 = ((($630)) + 16|0); + $934 = ($932>>>0)<($933>>>0); + $935 = $934 ? $630 : $932; + $936 = ((($935)) + 8|0); + $937 = ((($935)) + 24|0); + $938 = (($$723948$i) + -40)|0; + $939 = ((($$749$i)) + 8|0); + $940 = $939; + $941 = $940 & 7; + $942 = ($941|0)==(0); + $943 = (0 - ($940))|0; + $944 = $943 & 7; + $945 = $942 ? 0 : $944; + $946 = (($$749$i) + ($945)|0); + $947 = (($938) - ($945))|0; + HEAP32[(32988)>>2] = $946; + HEAP32[(32976)>>2] = $947; + $948 = $947 | 1; + $949 = ((($946)) + 4|0); + HEAP32[$949>>2] = $948; + $950 = (($946) + ($947)|0); + $951 = ((($950)) + 4|0); + HEAP32[$951>>2] = 40; + $952 = HEAP32[(33452)>>2]|0; + HEAP32[(32992)>>2] = $952; + $953 = ((($935)) + 4|0); + HEAP32[$953>>2] = 27; + ;HEAP32[$936>>2]=HEAP32[(33412)>>2]|0;HEAP32[$936+4>>2]=HEAP32[(33412)+4>>2]|0;HEAP32[$936+8>>2]=HEAP32[(33412)+8>>2]|0;HEAP32[$936+12>>2]=HEAP32[(33412)+12>>2]|0; + HEAP32[(33412)>>2] = $$749$i; + HEAP32[(33416)>>2] = $$723948$i; + HEAP32[(33424)>>2] = 0; + HEAP32[(33420)>>2] = $936; + $955 = $937; + while(1) { + $954 = ((($955)) + 4|0); + HEAP32[$954>>2] = 7; + $956 = ((($955)) + 8|0); + $957 = ($956>>>0)<($920>>>0); + if ($957) { + $955 = $954; + } else { + break; } } - $967 = ($943|0)==($635|0); - if (!($967)) { - $968 = $943; - $969 = $635; - $970 = (($968) - ($969))|0; - $971 = HEAP32[$959>>2]|0; - $972 = $971 & -2; - HEAP32[$959>>2] = $972; - $973 = $970 | 1; - $974 = ((($635)) + 4|0); - HEAP32[$974>>2] = $973; - HEAP32[$943>>2] = $970; - $975 = $970 >>> 3; - $976 = ($970>>>0)<(256); - if ($976) { - $977 = $975 << 1; - $978 = (32716 + ($977<<2)|0); - $979 = HEAP32[32676>>2]|0; - $980 = 1 << $975; - $981 = $979 & $980; - $982 = ($981|0)==(0); - if ($982) { - $983 = $979 | $980; - HEAP32[32676>>2] = $983; - $$pre$i$i = (($977) + 2)|0; - $$pre14$i$i = (32716 + ($$pre$i$i<<2)|0); - $$pre$phi$i$iZ2D = $$pre14$i$i;$F$0$i$i = $978; + $958 = ($935|0)==($630|0); + if (!($958)) { + $959 = $935; + $960 = $630; + $961 = (($959) - ($960))|0; + $962 = HEAP32[$953>>2]|0; + $963 = $962 & -2; + HEAP32[$953>>2] = $963; + $964 = $961 | 1; + $965 = ((($630)) + 4|0); + HEAP32[$965>>2] = $964; + HEAP32[$935>>2] = $961; + $966 = $961 >>> 3; + $967 = ($961>>>0)<(256); + if ($967) { + $968 = $966 << 1; + $969 = (33004 + ($968<<2)|0); + $970 = HEAP32[8241]|0; + $971 = 1 << $966; + $972 = $970 & $971; + $973 = ($972|0)==(0); + if ($973) { + $974 = $970 | $971; + HEAP32[8241] = $974; + $$pre$i$i = ((($969)) + 8|0); + $$0211$i$i = $969;$$pre$phi$i$iZ2D = $$pre$i$i; } else { - $$sum4$i$i = (($977) + 2)|0; - $984 = (32716 + ($$sum4$i$i<<2)|0); - $985 = HEAP32[$984>>2]|0; - $986 = HEAP32[(32692)>>2]|0; - $987 = ($985>>>0)<($986>>>0); - if ($987) { + $975 = ((($969)) + 8|0); + $976 = HEAP32[$975>>2]|0; + $977 = HEAP32[(32980)>>2]|0; + $978 = ($976>>>0)<($977>>>0); + if ($978) { _abort(); // unreachable; } else { - $$pre$phi$i$iZ2D = $984;$F$0$i$i = $985; + $$0211$i$i = $976;$$pre$phi$i$iZ2D = $975; } } - HEAP32[$$pre$phi$i$iZ2D>>2] = $635; - $988 = ((($F$0$i$i)) + 12|0); - HEAP32[$988>>2] = $635; - $989 = ((($635)) + 8|0); - HEAP32[$989>>2] = $F$0$i$i; - $990 = ((($635)) + 12|0); - HEAP32[$990>>2] = $978; + HEAP32[$$pre$phi$i$iZ2D>>2] = $630; + $979 = ((($$0211$i$i)) + 12|0); + HEAP32[$979>>2] = $630; + $980 = ((($630)) + 8|0); + HEAP32[$980>>2] = $$0211$i$i; + $981 = ((($630)) + 12|0); + HEAP32[$981>>2] = $969; break; } - $991 = $970 >>> 8; - $992 = ($991|0)==(0); - if ($992) { - $I1$0$i$i = 0; + $982 = $961 >>> 8; + $983 = ($982|0)==(0); + if ($983) { + $$0212$i$i = 0; } else { - $993 = ($970>>>0)>(16777215); - if ($993) { - $I1$0$i$i = 31; + $984 = ($961>>>0)>(16777215); + if ($984) { + $$0212$i$i = 31; } else { - $994 = (($991) + 1048320)|0; + $985 = (($982) + 1048320)|0; + $986 = $985 >>> 16; + $987 = $986 & 8; + $988 = $982 << $987; + $989 = (($988) + 520192)|0; + $990 = $989 >>> 16; + $991 = $990 & 4; + $992 = $991 | $987; + $993 = $988 << $991; + $994 = (($993) + 245760)|0; $995 = $994 >>> 16; - $996 = $995 & 8; - $997 = $991 << $996; - $998 = (($997) + 520192)|0; - $999 = $998 >>> 16; - $1000 = $999 & 4; - $1001 = $1000 | $996; - $1002 = $997 << $1000; - $1003 = (($1002) + 245760)|0; - $1004 = $1003 >>> 16; - $1005 = $1004 & 2; - $1006 = $1001 | $1005; - $1007 = (14 - ($1006))|0; - $1008 = $1002 << $1005; - $1009 = $1008 >>> 15; - $1010 = (($1007) + ($1009))|0; - $1011 = $1010 << 1; - $1012 = (($1010) + 7)|0; - $1013 = $970 >>> $1012; - $1014 = $1013 & 1; - $1015 = $1014 | $1011; - $I1$0$i$i = $1015; + $996 = $995 & 2; + $997 = $992 | $996; + $998 = (14 - ($997))|0; + $999 = $993 << $996; + $1000 = $999 >>> 15; + $1001 = (($998) + ($1000))|0; + $1002 = $1001 << 1; + $1003 = (($1001) + 7)|0; + $1004 = $961 >>> $1003; + $1005 = $1004 & 1; + $1006 = $1005 | $1002; + $$0212$i$i = $1006; } } - $1016 = (32980 + ($I1$0$i$i<<2)|0); - $1017 = ((($635)) + 28|0); - HEAP32[$1017>>2] = $I1$0$i$i; - $1018 = ((($635)) + 20|0); - HEAP32[$1018>>2] = 0; - HEAP32[$941>>2] = 0; - $1019 = HEAP32[(32680)>>2]|0; - $1020 = 1 << $I1$0$i$i; - $1021 = $1019 & $1020; - $1022 = ($1021|0)==(0); - if ($1022) { - $1023 = $1019 | $1020; - HEAP32[(32680)>>2] = $1023; - HEAP32[$1016>>2] = $635; - $1024 = ((($635)) + 24|0); - HEAP32[$1024>>2] = $1016; - $1025 = ((($635)) + 12|0); - HEAP32[$1025>>2] = $635; - $1026 = ((($635)) + 8|0); - HEAP32[$1026>>2] = $635; + $1007 = (33268 + ($$0212$i$i<<2)|0); + $1008 = ((($630)) + 28|0); + HEAP32[$1008>>2] = $$0212$i$i; + $1009 = ((($630)) + 20|0); + HEAP32[$1009>>2] = 0; + HEAP32[$933>>2] = 0; + $1010 = HEAP32[(32968)>>2]|0; + $1011 = 1 << $$0212$i$i; + $1012 = $1010 & $1011; + $1013 = ($1012|0)==(0); + if ($1013) { + $1014 = $1010 | $1011; + HEAP32[(32968)>>2] = $1014; + HEAP32[$1007>>2] = $630; + $1015 = ((($630)) + 24|0); + HEAP32[$1015>>2] = $1007; + $1016 = ((($630)) + 12|0); + HEAP32[$1016>>2] = $630; + $1017 = ((($630)) + 8|0); + HEAP32[$1017>>2] = $630; break; } - $1027 = HEAP32[$1016>>2]|0; - $1028 = ((($1027)) + 4|0); - $1029 = HEAP32[$1028>>2]|0; - $1030 = $1029 & -8; - $1031 = ($1030|0)==($970|0); - L459: do { - if ($1031) { - $T$0$lcssa$i$i = $1027; + $1018 = HEAP32[$1007>>2]|0; + $1019 = ($$0212$i$i|0)==(31); + $1020 = $$0212$i$i >>> 1; + $1021 = (25 - ($1020))|0; + $1022 = $1019 ? 0 : $1021; + $1023 = $961 << $1022; + $$0206$i$i = $1023;$$0207$i$i = $1018; + while(1) { + $1024 = ((($$0207$i$i)) + 4|0); + $1025 = HEAP32[$1024>>2]|0; + $1026 = $1025 & -8; + $1027 = ($1026|0)==($961|0); + if ($1027) { + label = 292; + break; + } + $1028 = $$0206$i$i >>> 31; + $1029 = (((($$0207$i$i)) + 16|0) + ($1028<<2)|0); + $1030 = $$0206$i$i << 1; + $1031 = HEAP32[$1029>>2]|0; + $1032 = ($1031|0)==(0|0); + if ($1032) { + label = 289; + break; } else { - $1032 = ($I1$0$i$i|0)==(31); - $1033 = $I1$0$i$i >>> 1; - $1034 = (25 - ($1033))|0; - $1035 = $1032 ? 0 : $1034; - $1036 = $970 << $1035; - $K2$07$i$i = $1036;$T$06$i$i = $1027; - while(1) { - $1043 = $K2$07$i$i >>> 31; - $1044 = (((($T$06$i$i)) + 16|0) + ($1043<<2)|0); - $1039 = HEAP32[$1044>>2]|0; - $1045 = ($1039|0)==(0|0); - if ($1045) { - $$lcssa211 = $1044;$T$06$i$i$lcssa = $T$06$i$i; - break; - } - $1037 = $K2$07$i$i << 1; - $1038 = ((($1039)) + 4|0); - $1040 = HEAP32[$1038>>2]|0; - $1041 = $1040 & -8; - $1042 = ($1041|0)==($970|0); - if ($1042) { - $T$0$lcssa$i$i = $1039; - break L459; - } else { - $K2$07$i$i = $1037;$T$06$i$i = $1039; - } - } - $1046 = HEAP32[(32692)>>2]|0; - $1047 = ($$lcssa211>>>0)<($1046>>>0); - if ($1047) { - _abort(); - // unreachable; - } else { - HEAP32[$$lcssa211>>2] = $635; - $1048 = ((($635)) + 24|0); - HEAP32[$1048>>2] = $T$06$i$i$lcssa; - $1049 = ((($635)) + 12|0); - HEAP32[$1049>>2] = $635; - $1050 = ((($635)) + 8|0); - HEAP32[$1050>>2] = $635; - break L299; - } + $$0206$i$i = $1030;$$0207$i$i = $1031; + } + } + if ((label|0) == 289) { + $1033 = HEAP32[(32980)>>2]|0; + $1034 = ($1029>>>0)<($1033>>>0); + if ($1034) { + _abort(); + // unreachable; + } else { + HEAP32[$1029>>2] = $630; + $1035 = ((($630)) + 24|0); + HEAP32[$1035>>2] = $$0207$i$i; + $1036 = ((($630)) + 12|0); + HEAP32[$1036>>2] = $630; + $1037 = ((($630)) + 8|0); + HEAP32[$1037>>2] = $630; + break; + } + } + else if ((label|0) == 292) { + $1038 = ((($$0207$i$i)) + 8|0); + $1039 = HEAP32[$1038>>2]|0; + $1040 = HEAP32[(32980)>>2]|0; + $1041 = ($1039>>>0)>=($1040>>>0); + $not$$i$i = ($$0207$i$i>>>0)>=($1040>>>0); + $1042 = $1041 & $not$$i$i; + if ($1042) { + $1043 = ((($1039)) + 12|0); + HEAP32[$1043>>2] = $630; + HEAP32[$1038>>2] = $630; + $1044 = ((($630)) + 8|0); + HEAP32[$1044>>2] = $1039; + $1045 = ((($630)) + 12|0); + HEAP32[$1045>>2] = $$0207$i$i; + $1046 = ((($630)) + 24|0); + HEAP32[$1046>>2] = 0; + break; + } else { + _abort(); + // unreachable; } - } while(0); - $1051 = ((($T$0$lcssa$i$i)) + 8|0); - $1052 = HEAP32[$1051>>2]|0; - $1053 = HEAP32[(32692)>>2]|0; - $1054 = ($1052>>>0)>=($1053>>>0); - $not$$i$i = ($T$0$lcssa$i$i>>>0)>=($1053>>>0); - $1055 = $1054 & $not$$i$i; - if ($1055) { - $1056 = ((($1052)) + 12|0); - HEAP32[$1056>>2] = $635; - HEAP32[$1051>>2] = $635; - $1057 = ((($635)) + 8|0); - HEAP32[$1057>>2] = $1052; - $1058 = ((($635)) + 12|0); - HEAP32[$1058>>2] = $T$0$lcssa$i$i; - $1059 = ((($635)) + 24|0); - HEAP32[$1059>>2] = 0; - break; - } else { - _abort(); - // unreachable; } } } } while(0); - $1060 = HEAP32[(32688)>>2]|0; - $1061 = ($1060>>>0)>($nb$0>>>0); - if ($1061) { - $1062 = (($1060) - ($nb$0))|0; - HEAP32[(32688)>>2] = $1062; - $1063 = HEAP32[(32700)>>2]|0; - $1064 = (($1063) + ($nb$0)|0); - HEAP32[(32700)>>2] = $1064; - $1065 = $1062 | 1; - $$sum$i32 = (($nb$0) + 4)|0; - $1066 = (($1063) + ($$sum$i32)|0); - HEAP32[$1066>>2] = $1065; - $1067 = $nb$0 | 3; - $1068 = ((($1063)) + 4|0); - HEAP32[$1068>>2] = $1067; - $1069 = ((($1063)) + 8|0); - $mem$0 = $1069; - return ($mem$0|0); + $1048 = HEAP32[(32976)>>2]|0; + $1049 = ($1048>>>0)>($$0197>>>0); + if ($1049) { + $1050 = (($1048) - ($$0197))|0; + HEAP32[(32976)>>2] = $1050; + $1051 = HEAP32[(32988)>>2]|0; + $1052 = (($1051) + ($$0197)|0); + HEAP32[(32988)>>2] = $1052; + $1053 = $1050 | 1; + $1054 = ((($1052)) + 4|0); + HEAP32[$1054>>2] = $1053; + $1055 = $$0197 | 3; + $1056 = ((($1051)) + 4|0); + HEAP32[$1056>>2] = $1055; + $1057 = ((($1051)) + 8|0); + $$0 = $1057; + STACKTOP = sp;return ($$0|0); } } - $1070 = (___errno_location()|0); - HEAP32[$1070>>2] = 12; - $mem$0 = 0; - return ($mem$0|0); -} -function _free($mem) { - $mem = $mem|0; - var $$lcssa = 0, $$pre = 0, $$pre$phi59Z2D = 0, $$pre$phi61Z2D = 0, $$pre$phiZ2D = 0, $$pre57 = 0, $$pre58 = 0, $$pre60 = 0, $$sum = 0, $$sum11 = 0, $$sum12 = 0, $$sum13 = 0, $$sum14 = 0, $$sum1718 = 0, $$sum19 = 0, $$sum2 = 0, $$sum20 = 0, $$sum22 = 0, $$sum23 = 0, $$sum24 = 0; - var $$sum25 = 0, $$sum26 = 0, $$sum27 = 0, $$sum28 = 0, $$sum29 = 0, $$sum3 = 0, $$sum30 = 0, $$sum31 = 0, $$sum5 = 0, $$sum67 = 0, $$sum8 = 0, $$sum9 = 0, $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0; - var $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0; - var $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0; - var $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0; - var $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0, $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0; - var $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0, $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0; - var $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0, $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0; - var $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0, $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0; - var $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0, $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0; - var $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0, $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0; - var $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0, $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0; - var $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0, $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0; - var $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0, $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $319 = 0, $32 = 0, $320 = 0; - var $321 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0; - var $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0; - var $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0; - var $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $F16$0 = 0, $I18$0 = 0, $K19$052 = 0, $R$0 = 0, $R$0$lcssa = 0, $R$1 = 0; - var $R7$0 = 0, $R7$0$lcssa = 0, $R7$1 = 0, $RP$0 = 0, $RP$0$lcssa = 0, $RP9$0 = 0, $RP9$0$lcssa = 0, $T$0$lcssa = 0, $T$051 = 0, $T$051$lcssa = 0, $cond = 0, $cond47 = 0, $not$ = 0, $p$0 = 0, $psize$0 = 0, $psize$1 = 0, $sp$0$i = 0, $sp$0$in$i = 0, label = 0, sp = 0; + $1058 = (___errno_location()|0); + HEAP32[$1058>>2] = 12; + $$0 = 0; + STACKTOP = sp;return ($$0|0); +} +function _free($0) { + $0 = $0|0; + var $$0212$i = 0, $$0212$in$i = 0, $$0383 = 0, $$0384 = 0, $$0396 = 0, $$0403 = 0, $$1 = 0, $$1382 = 0, $$1387 = 0, $$1390 = 0, $$1398 = 0, $$1402 = 0, $$2 = 0, $$3 = 0, $$3400 = 0, $$pre = 0, $$pre$phi443Z2D = 0, $$pre$phi445Z2D = 0, $$pre$phiZ2D = 0, $$pre442 = 0; + var $$pre444 = 0, $$sink3 = 0, $$sink5 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0, $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0; + var $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0, $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0; + var $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0, $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0; + var $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0, $160 = 0, $161 = 0, $162 = 0, $163 = 0, $164 = 0, $165 = 0, $166 = 0, $167 = 0, $168 = 0; + var $169 = 0, $17 = 0, $170 = 0, $171 = 0, $172 = 0, $173 = 0, $174 = 0, $175 = 0, $176 = 0, $177 = 0, $178 = 0, $179 = 0, $18 = 0, $180 = 0, $181 = 0, $182 = 0, $183 = 0, $184 = 0, $185 = 0, $186 = 0; + var $187 = 0, $188 = 0, $189 = 0, $19 = 0, $190 = 0, $191 = 0, $192 = 0, $193 = 0, $194 = 0, $195 = 0, $196 = 0, $197 = 0, $198 = 0, $199 = 0, $2 = 0, $20 = 0, $200 = 0, $201 = 0, $202 = 0, $203 = 0; + var $204 = 0, $205 = 0, $206 = 0, $207 = 0, $208 = 0, $209 = 0, $21 = 0, $210 = 0, $211 = 0, $212 = 0, $213 = 0, $214 = 0, $215 = 0, $216 = 0, $217 = 0, $218 = 0, $219 = 0, $22 = 0, $220 = 0, $221 = 0; + var $222 = 0, $223 = 0, $224 = 0, $225 = 0, $226 = 0, $227 = 0, $228 = 0, $229 = 0, $23 = 0, $230 = 0, $231 = 0, $232 = 0, $233 = 0, $234 = 0, $235 = 0, $236 = 0, $237 = 0, $238 = 0, $239 = 0, $24 = 0; + var $240 = 0, $241 = 0, $242 = 0, $243 = 0, $244 = 0, $245 = 0, $246 = 0, $247 = 0, $248 = 0, $249 = 0, $25 = 0, $250 = 0, $251 = 0, $252 = 0, $253 = 0, $254 = 0, $255 = 0, $256 = 0, $257 = 0, $258 = 0; + var $259 = 0, $26 = 0, $260 = 0, $261 = 0, $262 = 0, $263 = 0, $264 = 0, $265 = 0, $266 = 0, $267 = 0, $268 = 0, $269 = 0, $27 = 0, $270 = 0, $271 = 0, $272 = 0, $273 = 0, $274 = 0, $275 = 0, $276 = 0; + var $277 = 0, $278 = 0, $279 = 0, $28 = 0, $280 = 0, $281 = 0, $282 = 0, $283 = 0, $284 = 0, $285 = 0, $286 = 0, $287 = 0, $288 = 0, $289 = 0, $29 = 0, $290 = 0, $291 = 0, $292 = 0, $293 = 0, $294 = 0; + var $295 = 0, $296 = 0, $297 = 0, $298 = 0, $299 = 0, $3 = 0, $30 = 0, $300 = 0, $301 = 0, $302 = 0, $303 = 0, $304 = 0, $305 = 0, $306 = 0, $307 = 0, $308 = 0, $309 = 0, $31 = 0, $310 = 0, $311 = 0; + var $312 = 0, $313 = 0, $314 = 0, $315 = 0, $316 = 0, $317 = 0, $318 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0; + var $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0; + var $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0, $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0; + var $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0, $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0; + var $99 = 0, $cond421 = 0, $cond422 = 0, $not$ = 0, $not$405 = 0, $not$437 = 0, label = 0, sp = 0; sp = STACKTOP; - $0 = ($mem|0)==(0|0); - if ($0) { + $1 = ($0|0)==(0|0); + if ($1) { return; } - $1 = ((($mem)) + -8|0); - $2 = HEAP32[(32692)>>2]|0; - $3 = ($1>>>0)<($2>>>0); - if ($3) { + $2 = ((($0)) + -8|0); + $3 = HEAP32[(32980)>>2]|0; + $4 = ($2>>>0)<($3>>>0); + if ($4) { _abort(); // unreachable; } - $4 = ((($mem)) + -4|0); - $5 = HEAP32[$4>>2]|0; - $6 = $5 & 3; - $7 = ($6|0)==(1); - if ($7) { + $5 = ((($0)) + -4|0); + $6 = HEAP32[$5>>2]|0; + $7 = $6 & 3; + $8 = ($7|0)==(1); + if ($8) { _abort(); // unreachable; } - $8 = $5 & -8; - $$sum = (($8) + -8)|0; - $9 = (($mem) + ($$sum)|0); - $10 = $5 & 1; - $11 = ($10|0)==(0); - do { - if ($11) { - $12 = HEAP32[$1>>2]|0; - $13 = ($6|0)==(0); - if ($13) { + $9 = $6 & -8; + $10 = (($2) + ($9)|0); + $11 = $6 & 1; + $12 = ($11|0)==(0); + L10: do { + if ($12) { + $13 = HEAP32[$2>>2]|0; + $14 = ($7|0)==(0); + if ($14) { return; } - $$sum2 = (-8 - ($12))|0; - $14 = (($mem) + ($$sum2)|0); - $15 = (($12) + ($8))|0; - $16 = ($14>>>0)<($2>>>0); - if ($16) { + $15 = (0 - ($13))|0; + $16 = (($2) + ($15)|0); + $17 = (($13) + ($9))|0; + $18 = ($16>>>0)<($3>>>0); + if ($18) { _abort(); // unreachable; } - $17 = HEAP32[(32696)>>2]|0; - $18 = ($14|0)==($17|0); - if ($18) { - $$sum3 = (($8) + -4)|0; - $103 = (($mem) + ($$sum3)|0); - $104 = HEAP32[$103>>2]|0; - $105 = $104 & 3; - $106 = ($105|0)==(3); - if (!($106)) { - $p$0 = $14;$psize$0 = $15; + $19 = HEAP32[(32984)>>2]|0; + $20 = ($16|0)==($19|0); + if ($20) { + $104 = ((($10)) + 4|0); + $105 = HEAP32[$104>>2]|0; + $106 = $105 & 3; + $107 = ($106|0)==(3); + if (!($107)) { + $$1 = $16;$$1382 = $17;$113 = $16; break; } - HEAP32[(32684)>>2] = $15; - $107 = $104 & -2; - HEAP32[$103>>2] = $107; - $108 = $15 | 1; - $$sum20 = (($$sum2) + 4)|0; - $109 = (($mem) + ($$sum20)|0); - HEAP32[$109>>2] = $108; - HEAP32[$9>>2] = $15; + $108 = (($16) + ($17)|0); + $109 = ((($16)) + 4|0); + $110 = $17 | 1; + $111 = $105 & -2; + HEAP32[(32972)>>2] = $17; + HEAP32[$104>>2] = $111; + HEAP32[$109>>2] = $110; + HEAP32[$108>>2] = $17; return; } - $19 = $12 >>> 3; - $20 = ($12>>>0)<(256); - if ($20) { - $$sum30 = (($$sum2) + 8)|0; - $21 = (($mem) + ($$sum30)|0); - $22 = HEAP32[$21>>2]|0; - $$sum31 = (($$sum2) + 12)|0; - $23 = (($mem) + ($$sum31)|0); + $21 = $13 >>> 3; + $22 = ($13>>>0)<(256); + if ($22) { + $23 = ((($16)) + 8|0); $24 = HEAP32[$23>>2]|0; - $25 = $19 << 1; - $26 = (32716 + ($25<<2)|0); - $27 = ($22|0)==($26|0); - if (!($27)) { - $28 = ($22>>>0)<($2>>>0); - if ($28) { + $25 = ((($16)) + 12|0); + $26 = HEAP32[$25>>2]|0; + $27 = $21 << 1; + $28 = (33004 + ($27<<2)|0); + $29 = ($24|0)==($28|0); + if (!($29)) { + $30 = ($24>>>0)<($3>>>0); + if ($30) { _abort(); // unreachable; } - $29 = ((($22)) + 12|0); - $30 = HEAP32[$29>>2]|0; - $31 = ($30|0)==($14|0); - if (!($31)) { + $31 = ((($24)) + 12|0); + $32 = HEAP32[$31>>2]|0; + $33 = ($32|0)==($16|0); + if (!($33)) { _abort(); // unreachable; } } - $32 = ($24|0)==($22|0); - if ($32) { - $33 = 1 << $19; - $34 = $33 ^ -1; - $35 = HEAP32[32676>>2]|0; - $36 = $35 & $34; - HEAP32[32676>>2] = $36; - $p$0 = $14;$psize$0 = $15; + $34 = ($26|0)==($24|0); + if ($34) { + $35 = 1 << $21; + $36 = $35 ^ -1; + $37 = HEAP32[8241]|0; + $38 = $37 & $36; + HEAP32[8241] = $38; + $$1 = $16;$$1382 = $17;$113 = $16; break; } - $37 = ($24|0)==($26|0); - if ($37) { - $$pre60 = ((($24)) + 8|0); - $$pre$phi61Z2D = $$pre60; + $39 = ($26|0)==($28|0); + if ($39) { + $$pre444 = ((($26)) + 8|0); + $$pre$phi445Z2D = $$pre444; } else { - $38 = ($24>>>0)<($2>>>0); - if ($38) { + $40 = ($26>>>0)<($3>>>0); + if ($40) { _abort(); // unreachable; } - $39 = ((($24)) + 8|0); - $40 = HEAP32[$39>>2]|0; - $41 = ($40|0)==($14|0); - if ($41) { - $$pre$phi61Z2D = $39; + $41 = ((($26)) + 8|0); + $42 = HEAP32[$41>>2]|0; + $43 = ($42|0)==($16|0); + if ($43) { + $$pre$phi445Z2D = $41; } else { _abort(); // unreachable; } } - $42 = ((($22)) + 12|0); - HEAP32[$42>>2] = $24; - HEAP32[$$pre$phi61Z2D>>2] = $22; - $p$0 = $14;$psize$0 = $15; + $44 = ((($24)) + 12|0); + HEAP32[$44>>2] = $26; + HEAP32[$$pre$phi445Z2D>>2] = $24; + $$1 = $16;$$1382 = $17;$113 = $16; break; } - $$sum22 = (($$sum2) + 24)|0; - $43 = (($mem) + ($$sum22)|0); - $44 = HEAP32[$43>>2]|0; - $$sum23 = (($$sum2) + 12)|0; - $45 = (($mem) + ($$sum23)|0); + $45 = ((($16)) + 24|0); $46 = HEAP32[$45>>2]|0; - $47 = ($46|0)==($14|0); + $47 = ((($16)) + 12|0); + $48 = HEAP32[$47>>2]|0; + $49 = ($48|0)==($16|0); do { - if ($47) { - $$sum25 = (($$sum2) + 20)|0; - $57 = (($mem) + ($$sum25)|0); - $58 = HEAP32[$57>>2]|0; - $59 = ($58|0)==(0|0); - if ($59) { - $$sum24 = (($$sum2) + 16)|0; - $60 = (($mem) + ($$sum24)|0); - $61 = HEAP32[$60>>2]|0; - $62 = ($61|0)==(0|0); - if ($62) { - $R$1 = 0; + if ($49) { + $59 = ((($16)) + 16|0); + $60 = ((($59)) + 4|0); + $61 = HEAP32[$60>>2]|0; + $62 = ($61|0)==(0|0); + if ($62) { + $63 = HEAP32[$59>>2]|0; + $64 = ($63|0)==(0|0); + if ($64) { + $$3 = 0; break; } else { - $R$0 = $61;$RP$0 = $60; + $$1387 = $63;$$1390 = $59; } } else { - $R$0 = $58;$RP$0 = $57; + $$1387 = $61;$$1390 = $60; } while(1) { - $63 = ((($R$0)) + 20|0); - $64 = HEAP32[$63>>2]|0; - $65 = ($64|0)==(0|0); - if (!($65)) { - $R$0 = $64;$RP$0 = $63; + $65 = ((($$1387)) + 20|0); + $66 = HEAP32[$65>>2]|0; + $67 = ($66|0)==(0|0); + if (!($67)) { + $$1387 = $66;$$1390 = $65; continue; } - $66 = ((($R$0)) + 16|0); - $67 = HEAP32[$66>>2]|0; - $68 = ($67|0)==(0|0); - if ($68) { - $R$0$lcssa = $R$0;$RP$0$lcssa = $RP$0; + $68 = ((($$1387)) + 16|0); + $69 = HEAP32[$68>>2]|0; + $70 = ($69|0)==(0|0); + if ($70) { break; } else { - $R$0 = $67;$RP$0 = $66; + $$1387 = $69;$$1390 = $68; } } - $69 = ($RP$0$lcssa>>>0)<($2>>>0); - if ($69) { + $71 = ($$1390>>>0)<($3>>>0); + if ($71) { _abort(); // unreachable; } else { - HEAP32[$RP$0$lcssa>>2] = 0; - $R$1 = $R$0$lcssa; + HEAP32[$$1390>>2] = 0; + $$3 = $$1387; break; } } else { - $$sum29 = (($$sum2) + 8)|0; - $48 = (($mem) + ($$sum29)|0); - $49 = HEAP32[$48>>2]|0; - $50 = ($49>>>0)<($2>>>0); - if ($50) { + $50 = ((($16)) + 8|0); + $51 = HEAP32[$50>>2]|0; + $52 = ($51>>>0)<($3>>>0); + if ($52) { _abort(); // unreachable; } - $51 = ((($49)) + 12|0); - $52 = HEAP32[$51>>2]|0; - $53 = ($52|0)==($14|0); - if (!($53)) { + $53 = ((($51)) + 12|0); + $54 = HEAP32[$53>>2]|0; + $55 = ($54|0)==($16|0); + if (!($55)) { _abort(); // unreachable; } - $54 = ((($46)) + 8|0); - $55 = HEAP32[$54>>2]|0; - $56 = ($55|0)==($14|0); - if ($56) { - HEAP32[$51>>2] = $46; - HEAP32[$54>>2] = $49; - $R$1 = $46; + $56 = ((($48)) + 8|0); + $57 = HEAP32[$56>>2]|0; + $58 = ($57|0)==($16|0); + if ($58) { + HEAP32[$53>>2] = $48; + HEAP32[$56>>2] = $51; + $$3 = $48; break; } else { _abort(); @@ -23320,294 +19594,285 @@ function _free($mem) { } } } while(0); - $70 = ($44|0)==(0|0); - if ($70) { - $p$0 = $14;$psize$0 = $15; + $72 = ($46|0)==(0|0); + if ($72) { + $$1 = $16;$$1382 = $17;$113 = $16; } else { - $$sum26 = (($$sum2) + 28)|0; - $71 = (($mem) + ($$sum26)|0); - $72 = HEAP32[$71>>2]|0; - $73 = (32980 + ($72<<2)|0); + $73 = ((($16)) + 28|0); $74 = HEAP32[$73>>2]|0; - $75 = ($14|0)==($74|0); - if ($75) { - HEAP32[$73>>2] = $R$1; - $cond = ($R$1|0)==(0|0); - if ($cond) { - $76 = 1 << $72; - $77 = $76 ^ -1; - $78 = HEAP32[(32680)>>2]|0; - $79 = $78 & $77; - HEAP32[(32680)>>2] = $79; - $p$0 = $14;$psize$0 = $15; - break; - } - } else { - $80 = HEAP32[(32692)>>2]|0; - $81 = ($44>>>0)<($80>>>0); - if ($81) { - _abort(); - // unreachable; - } - $82 = ((($44)) + 16|0); - $83 = HEAP32[$82>>2]|0; - $84 = ($83|0)==($14|0); - if ($84) { - HEAP32[$82>>2] = $R$1; + $75 = (33268 + ($74<<2)|0); + $76 = HEAP32[$75>>2]|0; + $77 = ($16|0)==($76|0); + do { + if ($77) { + HEAP32[$75>>2] = $$3; + $cond421 = ($$3|0)==(0|0); + if ($cond421) { + $78 = 1 << $74; + $79 = $78 ^ -1; + $80 = HEAP32[(32968)>>2]|0; + $81 = $80 & $79; + HEAP32[(32968)>>2] = $81; + $$1 = $16;$$1382 = $17;$113 = $16; + break L10; + } } else { - $85 = ((($44)) + 20|0); - HEAP32[$85>>2] = $R$1; - } - $86 = ($R$1|0)==(0|0); - if ($86) { - $p$0 = $14;$psize$0 = $15; - break; + $82 = HEAP32[(32980)>>2]|0; + $83 = ($46>>>0)<($82>>>0); + if ($83) { + _abort(); + // unreachable; + } else { + $84 = ((($46)) + 16|0); + $85 = HEAP32[$84>>2]|0; + $not$405 = ($85|0)!=($16|0); + $$sink3 = $not$405&1; + $86 = (((($46)) + 16|0) + ($$sink3<<2)|0); + HEAP32[$86>>2] = $$3; + $87 = ($$3|0)==(0|0); + if ($87) { + $$1 = $16;$$1382 = $17;$113 = $16; + break L10; + } else { + break; + } + } } - } - $87 = HEAP32[(32692)>>2]|0; - $88 = ($R$1>>>0)<($87>>>0); - if ($88) { + } while(0); + $88 = HEAP32[(32980)>>2]|0; + $89 = ($$3>>>0)<($88>>>0); + if ($89) { _abort(); // unreachable; } - $89 = ((($R$1)) + 24|0); - HEAP32[$89>>2] = $44; - $$sum27 = (($$sum2) + 16)|0; - $90 = (($mem) + ($$sum27)|0); - $91 = HEAP32[$90>>2]|0; - $92 = ($91|0)==(0|0); + $90 = ((($$3)) + 24|0); + HEAP32[$90>>2] = $46; + $91 = ((($16)) + 16|0); + $92 = HEAP32[$91>>2]|0; + $93 = ($92|0)==(0|0); do { - if (!($92)) { - $93 = ($91>>>0)<($87>>>0); - if ($93) { + if (!($93)) { + $94 = ($92>>>0)<($88>>>0); + if ($94) { _abort(); // unreachable; } else { - $94 = ((($R$1)) + 16|0); - HEAP32[$94>>2] = $91; - $95 = ((($91)) + 24|0); - HEAP32[$95>>2] = $R$1; + $95 = ((($$3)) + 16|0); + HEAP32[$95>>2] = $92; + $96 = ((($92)) + 24|0); + HEAP32[$96>>2] = $$3; break; } } } while(0); - $$sum28 = (($$sum2) + 20)|0; - $96 = (($mem) + ($$sum28)|0); - $97 = HEAP32[$96>>2]|0; - $98 = ($97|0)==(0|0); - if ($98) { - $p$0 = $14;$psize$0 = $15; + $97 = ((($91)) + 4|0); + $98 = HEAP32[$97>>2]|0; + $99 = ($98|0)==(0|0); + if ($99) { + $$1 = $16;$$1382 = $17;$113 = $16; } else { - $99 = HEAP32[(32692)>>2]|0; - $100 = ($97>>>0)<($99>>>0); - if ($100) { + $100 = HEAP32[(32980)>>2]|0; + $101 = ($98>>>0)<($100>>>0); + if ($101) { _abort(); // unreachable; } else { - $101 = ((($R$1)) + 20|0); - HEAP32[$101>>2] = $97; - $102 = ((($97)) + 24|0); - HEAP32[$102>>2] = $R$1; - $p$0 = $14;$psize$0 = $15; + $102 = ((($$3)) + 20|0); + HEAP32[$102>>2] = $98; + $103 = ((($98)) + 24|0); + HEAP32[$103>>2] = $$3; + $$1 = $16;$$1382 = $17;$113 = $16; break; } } } } else { - $p$0 = $1;$psize$0 = $8; + $$1 = $2;$$1382 = $9;$113 = $2; } } while(0); - $110 = ($p$0>>>0)<($9>>>0); - if (!($110)) { + $112 = ($113>>>0)<($10>>>0); + if (!($112)) { _abort(); // unreachable; } - $$sum19 = (($8) + -4)|0; - $111 = (($mem) + ($$sum19)|0); - $112 = HEAP32[$111>>2]|0; - $113 = $112 & 1; - $114 = ($113|0)==(0); - if ($114) { + $114 = ((($10)) + 4|0); + $115 = HEAP32[$114>>2]|0; + $116 = $115 & 1; + $117 = ($116|0)==(0); + if ($117) { _abort(); // unreachable; } - $115 = $112 & 2; - $116 = ($115|0)==(0); - if ($116) { - $117 = HEAP32[(32700)>>2]|0; - $118 = ($9|0)==($117|0); - if ($118) { - $119 = HEAP32[(32688)>>2]|0; - $120 = (($119) + ($psize$0))|0; - HEAP32[(32688)>>2] = $120; - HEAP32[(32700)>>2] = $p$0; - $121 = $120 | 1; - $122 = ((($p$0)) + 4|0); - HEAP32[$122>>2] = $121; - $123 = HEAP32[(32696)>>2]|0; - $124 = ($p$0|0)==($123|0); - if (!($124)) { + $118 = $115 & 2; + $119 = ($118|0)==(0); + if ($119) { + $120 = HEAP32[(32988)>>2]|0; + $121 = ($10|0)==($120|0); + $122 = HEAP32[(32984)>>2]|0; + if ($121) { + $123 = HEAP32[(32976)>>2]|0; + $124 = (($123) + ($$1382))|0; + HEAP32[(32976)>>2] = $124; + HEAP32[(32988)>>2] = $$1; + $125 = $124 | 1; + $126 = ((($$1)) + 4|0); + HEAP32[$126>>2] = $125; + $127 = ($$1|0)==($122|0); + if (!($127)) { return; } - HEAP32[(32696)>>2] = 0; - HEAP32[(32684)>>2] = 0; + HEAP32[(32984)>>2] = 0; + HEAP32[(32972)>>2] = 0; return; } - $125 = HEAP32[(32696)>>2]|0; - $126 = ($9|0)==($125|0); - if ($126) { - $127 = HEAP32[(32684)>>2]|0; - $128 = (($127) + ($psize$0))|0; - HEAP32[(32684)>>2] = $128; - HEAP32[(32696)>>2] = $p$0; - $129 = $128 | 1; - $130 = ((($p$0)) + 4|0); - HEAP32[$130>>2] = $129; - $131 = (($p$0) + ($128)|0); - HEAP32[$131>>2] = $128; + $128 = ($10|0)==($122|0); + if ($128) { + $129 = HEAP32[(32972)>>2]|0; + $130 = (($129) + ($$1382))|0; + HEAP32[(32972)>>2] = $130; + HEAP32[(32984)>>2] = $113; + $131 = $130 | 1; + $132 = ((($$1)) + 4|0); + HEAP32[$132>>2] = $131; + $133 = (($113) + ($130)|0); + HEAP32[$133>>2] = $130; return; } - $132 = $112 & -8; - $133 = (($132) + ($psize$0))|0; - $134 = $112 >>> 3; - $135 = ($112>>>0)<(256); - do { - if ($135) { - $136 = (($mem) + ($8)|0); - $137 = HEAP32[$136>>2]|0; - $$sum1718 = $8 | 4; - $138 = (($mem) + ($$sum1718)|0); + $134 = $115 & -8; + $135 = (($134) + ($$1382))|0; + $136 = $115 >>> 3; + $137 = ($115>>>0)<(256); + L108: do { + if ($137) { + $138 = ((($10)) + 8|0); $139 = HEAP32[$138>>2]|0; - $140 = $134 << 1; - $141 = (32716 + ($140<<2)|0); - $142 = ($137|0)==($141|0); - if (!($142)) { - $143 = HEAP32[(32692)>>2]|0; - $144 = ($137>>>0)<($143>>>0); - if ($144) { + $140 = ((($10)) + 12|0); + $141 = HEAP32[$140>>2]|0; + $142 = $136 << 1; + $143 = (33004 + ($142<<2)|0); + $144 = ($139|0)==($143|0); + if (!($144)) { + $145 = HEAP32[(32980)>>2]|0; + $146 = ($139>>>0)<($145>>>0); + if ($146) { _abort(); // unreachable; } - $145 = ((($137)) + 12|0); - $146 = HEAP32[$145>>2]|0; - $147 = ($146|0)==($9|0); - if (!($147)) { + $147 = ((($139)) + 12|0); + $148 = HEAP32[$147>>2]|0; + $149 = ($148|0)==($10|0); + if (!($149)) { _abort(); // unreachable; } } - $148 = ($139|0)==($137|0); - if ($148) { - $149 = 1 << $134; - $150 = $149 ^ -1; - $151 = HEAP32[32676>>2]|0; - $152 = $151 & $150; - HEAP32[32676>>2] = $152; + $150 = ($141|0)==($139|0); + if ($150) { + $151 = 1 << $136; + $152 = $151 ^ -1; + $153 = HEAP32[8241]|0; + $154 = $153 & $152; + HEAP32[8241] = $154; break; } - $153 = ($139|0)==($141|0); - if ($153) { - $$pre58 = ((($139)) + 8|0); - $$pre$phi59Z2D = $$pre58; + $155 = ($141|0)==($143|0); + if ($155) { + $$pre442 = ((($141)) + 8|0); + $$pre$phi443Z2D = $$pre442; } else { - $154 = HEAP32[(32692)>>2]|0; - $155 = ($139>>>0)<($154>>>0); - if ($155) { + $156 = HEAP32[(32980)>>2]|0; + $157 = ($141>>>0)<($156>>>0); + if ($157) { _abort(); // unreachable; } - $156 = ((($139)) + 8|0); - $157 = HEAP32[$156>>2]|0; - $158 = ($157|0)==($9|0); - if ($158) { - $$pre$phi59Z2D = $156; + $158 = ((($141)) + 8|0); + $159 = HEAP32[$158>>2]|0; + $160 = ($159|0)==($10|0); + if ($160) { + $$pre$phi443Z2D = $158; } else { _abort(); // unreachable; } } - $159 = ((($137)) + 12|0); - HEAP32[$159>>2] = $139; - HEAP32[$$pre$phi59Z2D>>2] = $137; + $161 = ((($139)) + 12|0); + HEAP32[$161>>2] = $141; + HEAP32[$$pre$phi443Z2D>>2] = $139; } else { - $$sum5 = (($8) + 16)|0; - $160 = (($mem) + ($$sum5)|0); - $161 = HEAP32[$160>>2]|0; - $$sum67 = $8 | 4; - $162 = (($mem) + ($$sum67)|0); + $162 = ((($10)) + 24|0); $163 = HEAP32[$162>>2]|0; - $164 = ($163|0)==($9|0); + $164 = ((($10)) + 12|0); + $165 = HEAP32[$164>>2]|0; + $166 = ($165|0)==($10|0); do { - if ($164) { - $$sum9 = (($8) + 12)|0; - $175 = (($mem) + ($$sum9)|0); - $176 = HEAP32[$175>>2]|0; - $177 = ($176|0)==(0|0); - if ($177) { - $$sum8 = (($8) + 8)|0; - $178 = (($mem) + ($$sum8)|0); - $179 = HEAP32[$178>>2]|0; - $180 = ($179|0)==(0|0); - if ($180) { - $R7$1 = 0; + if ($166) { + $177 = ((($10)) + 16|0); + $178 = ((($177)) + 4|0); + $179 = HEAP32[$178>>2]|0; + $180 = ($179|0)==(0|0); + if ($180) { + $181 = HEAP32[$177>>2]|0; + $182 = ($181|0)==(0|0); + if ($182) { + $$3400 = 0; break; } else { - $R7$0 = $179;$RP9$0 = $178; + $$1398 = $181;$$1402 = $177; } } else { - $R7$0 = $176;$RP9$0 = $175; + $$1398 = $179;$$1402 = $178; } while(1) { - $181 = ((($R7$0)) + 20|0); - $182 = HEAP32[$181>>2]|0; - $183 = ($182|0)==(0|0); - if (!($183)) { - $R7$0 = $182;$RP9$0 = $181; + $183 = ((($$1398)) + 20|0); + $184 = HEAP32[$183>>2]|0; + $185 = ($184|0)==(0|0); + if (!($185)) { + $$1398 = $184;$$1402 = $183; continue; } - $184 = ((($R7$0)) + 16|0); - $185 = HEAP32[$184>>2]|0; - $186 = ($185|0)==(0|0); - if ($186) { - $R7$0$lcssa = $R7$0;$RP9$0$lcssa = $RP9$0; + $186 = ((($$1398)) + 16|0); + $187 = HEAP32[$186>>2]|0; + $188 = ($187|0)==(0|0); + if ($188) { break; } else { - $R7$0 = $185;$RP9$0 = $184; + $$1398 = $187;$$1402 = $186; } } - $187 = HEAP32[(32692)>>2]|0; - $188 = ($RP9$0$lcssa>>>0)<($187>>>0); - if ($188) { + $189 = HEAP32[(32980)>>2]|0; + $190 = ($$1402>>>0)<($189>>>0); + if ($190) { _abort(); // unreachable; } else { - HEAP32[$RP9$0$lcssa>>2] = 0; - $R7$1 = $R7$0$lcssa; + HEAP32[$$1402>>2] = 0; + $$3400 = $$1398; break; } } else { - $165 = (($mem) + ($8)|0); - $166 = HEAP32[$165>>2]|0; - $167 = HEAP32[(32692)>>2]|0; - $168 = ($166>>>0)<($167>>>0); - if ($168) { + $167 = ((($10)) + 8|0); + $168 = HEAP32[$167>>2]|0; + $169 = HEAP32[(32980)>>2]|0; + $170 = ($168>>>0)<($169>>>0); + if ($170) { _abort(); // unreachable; } - $169 = ((($166)) + 12|0); - $170 = HEAP32[$169>>2]|0; - $171 = ($170|0)==($9|0); - if (!($171)) { + $171 = ((($168)) + 12|0); + $172 = HEAP32[$171>>2]|0; + $173 = ($172|0)==($10|0); + if (!($173)) { _abort(); // unreachable; } - $172 = ((($163)) + 8|0); - $173 = HEAP32[$172>>2]|0; - $174 = ($173|0)==($9|0); - if ($174) { - HEAP32[$169>>2] = $163; - HEAP32[$172>>2] = $166; - $R7$1 = $163; + $174 = ((($165)) + 8|0); + $175 = HEAP32[$174>>2]|0; + $176 = ($175|0)==($10|0); + if ($176) { + HEAP32[$171>>2] = $165; + HEAP32[$174>>2] = $168; + $$3400 = $165; break; } else { _abort(); @@ -23615,307 +19880,298 @@ function _free($mem) { } } } while(0); - $189 = ($161|0)==(0|0); - if (!($189)) { - $$sum12 = (($8) + 20)|0; - $190 = (($mem) + ($$sum12)|0); - $191 = HEAP32[$190>>2]|0; - $192 = (32980 + ($191<<2)|0); + $191 = ($163|0)==(0|0); + if (!($191)) { + $192 = ((($10)) + 28|0); $193 = HEAP32[$192>>2]|0; - $194 = ($9|0)==($193|0); - if ($194) { - HEAP32[$192>>2] = $R7$1; - $cond47 = ($R7$1|0)==(0|0); - if ($cond47) { - $195 = 1 << $191; - $196 = $195 ^ -1; - $197 = HEAP32[(32680)>>2]|0; - $198 = $197 & $196; - HEAP32[(32680)>>2] = $198; - break; - } - } else { - $199 = HEAP32[(32692)>>2]|0; - $200 = ($161>>>0)<($199>>>0); - if ($200) { - _abort(); - // unreachable; - } - $201 = ((($161)) + 16|0); - $202 = HEAP32[$201>>2]|0; - $203 = ($202|0)==($9|0); - if ($203) { - HEAP32[$201>>2] = $R7$1; + $194 = (33268 + ($193<<2)|0); + $195 = HEAP32[$194>>2]|0; + $196 = ($10|0)==($195|0); + do { + if ($196) { + HEAP32[$194>>2] = $$3400; + $cond422 = ($$3400|0)==(0|0); + if ($cond422) { + $197 = 1 << $193; + $198 = $197 ^ -1; + $199 = HEAP32[(32968)>>2]|0; + $200 = $199 & $198; + HEAP32[(32968)>>2] = $200; + break L108; + } } else { - $204 = ((($161)) + 20|0); - HEAP32[$204>>2] = $R7$1; - } - $205 = ($R7$1|0)==(0|0); - if ($205) { - break; + $201 = HEAP32[(32980)>>2]|0; + $202 = ($163>>>0)<($201>>>0); + if ($202) { + _abort(); + // unreachable; + } else { + $203 = ((($163)) + 16|0); + $204 = HEAP32[$203>>2]|0; + $not$ = ($204|0)!=($10|0); + $$sink5 = $not$&1; + $205 = (((($163)) + 16|0) + ($$sink5<<2)|0); + HEAP32[$205>>2] = $$3400; + $206 = ($$3400|0)==(0|0); + if ($206) { + break L108; + } else { + break; + } + } } - } - $206 = HEAP32[(32692)>>2]|0; - $207 = ($R7$1>>>0)<($206>>>0); - if ($207) { + } while(0); + $207 = HEAP32[(32980)>>2]|0; + $208 = ($$3400>>>0)<($207>>>0); + if ($208) { _abort(); // unreachable; } - $208 = ((($R7$1)) + 24|0); - HEAP32[$208>>2] = $161; - $$sum13 = (($8) + 8)|0; - $209 = (($mem) + ($$sum13)|0); - $210 = HEAP32[$209>>2]|0; - $211 = ($210|0)==(0|0); + $209 = ((($$3400)) + 24|0); + HEAP32[$209>>2] = $163; + $210 = ((($10)) + 16|0); + $211 = HEAP32[$210>>2]|0; + $212 = ($211|0)==(0|0); do { - if (!($211)) { - $212 = ($210>>>0)<($206>>>0); - if ($212) { + if (!($212)) { + $213 = ($211>>>0)<($207>>>0); + if ($213) { _abort(); // unreachable; } else { - $213 = ((($R7$1)) + 16|0); - HEAP32[$213>>2] = $210; - $214 = ((($210)) + 24|0); - HEAP32[$214>>2] = $R7$1; + $214 = ((($$3400)) + 16|0); + HEAP32[$214>>2] = $211; + $215 = ((($211)) + 24|0); + HEAP32[$215>>2] = $$3400; break; } } } while(0); - $$sum14 = (($8) + 12)|0; - $215 = (($mem) + ($$sum14)|0); - $216 = HEAP32[$215>>2]|0; - $217 = ($216|0)==(0|0); - if (!($217)) { - $218 = HEAP32[(32692)>>2]|0; - $219 = ($216>>>0)<($218>>>0); - if ($219) { + $216 = ((($210)) + 4|0); + $217 = HEAP32[$216>>2]|0; + $218 = ($217|0)==(0|0); + if (!($218)) { + $219 = HEAP32[(32980)>>2]|0; + $220 = ($217>>>0)<($219>>>0); + if ($220) { _abort(); // unreachable; } else { - $220 = ((($R7$1)) + 20|0); - HEAP32[$220>>2] = $216; - $221 = ((($216)) + 24|0); - HEAP32[$221>>2] = $R7$1; + $221 = ((($$3400)) + 20|0); + HEAP32[$221>>2] = $217; + $222 = ((($217)) + 24|0); + HEAP32[$222>>2] = $$3400; break; } } } } } while(0); - $222 = $133 | 1; - $223 = ((($p$0)) + 4|0); - HEAP32[$223>>2] = $222; - $224 = (($p$0) + ($133)|0); - HEAP32[$224>>2] = $133; - $225 = HEAP32[(32696)>>2]|0; - $226 = ($p$0|0)==($225|0); - if ($226) { - HEAP32[(32684)>>2] = $133; + $223 = $135 | 1; + $224 = ((($$1)) + 4|0); + HEAP32[$224>>2] = $223; + $225 = (($113) + ($135)|0); + HEAP32[$225>>2] = $135; + $226 = HEAP32[(32984)>>2]|0; + $227 = ($$1|0)==($226|0); + if ($227) { + HEAP32[(32972)>>2] = $135; return; } else { - $psize$1 = $133; + $$2 = $135; } } else { - $227 = $112 & -2; - HEAP32[$111>>2] = $227; - $228 = $psize$0 | 1; - $229 = ((($p$0)) + 4|0); - HEAP32[$229>>2] = $228; - $230 = (($p$0) + ($psize$0)|0); - HEAP32[$230>>2] = $psize$0; - $psize$1 = $psize$0; + $228 = $115 & -2; + HEAP32[$114>>2] = $228; + $229 = $$1382 | 1; + $230 = ((($$1)) + 4|0); + HEAP32[$230>>2] = $229; + $231 = (($113) + ($$1382)|0); + HEAP32[$231>>2] = $$1382; + $$2 = $$1382; } - $231 = $psize$1 >>> 3; - $232 = ($psize$1>>>0)<(256); - if ($232) { - $233 = $231 << 1; - $234 = (32716 + ($233<<2)|0); - $235 = HEAP32[32676>>2]|0; - $236 = 1 << $231; - $237 = $235 & $236; - $238 = ($237|0)==(0); - if ($238) { - $239 = $235 | $236; - HEAP32[32676>>2] = $239; - $$pre = (($233) + 2)|0; - $$pre57 = (32716 + ($$pre<<2)|0); - $$pre$phiZ2D = $$pre57;$F16$0 = $234; + $232 = $$2 >>> 3; + $233 = ($$2>>>0)<(256); + if ($233) { + $234 = $232 << 1; + $235 = (33004 + ($234<<2)|0); + $236 = HEAP32[8241]|0; + $237 = 1 << $232; + $238 = $236 & $237; + $239 = ($238|0)==(0); + if ($239) { + $240 = $236 | $237; + HEAP32[8241] = $240; + $$pre = ((($235)) + 8|0); + $$0403 = $235;$$pre$phiZ2D = $$pre; } else { - $$sum11 = (($233) + 2)|0; - $240 = (32716 + ($$sum11<<2)|0); - $241 = HEAP32[$240>>2]|0; - $242 = HEAP32[(32692)>>2]|0; - $243 = ($241>>>0)<($242>>>0); - if ($243) { + $241 = ((($235)) + 8|0); + $242 = HEAP32[$241>>2]|0; + $243 = HEAP32[(32980)>>2]|0; + $244 = ($242>>>0)<($243>>>0); + if ($244) { _abort(); // unreachable; } else { - $$pre$phiZ2D = $240;$F16$0 = $241; + $$0403 = $242;$$pre$phiZ2D = $241; } } - HEAP32[$$pre$phiZ2D>>2] = $p$0; - $244 = ((($F16$0)) + 12|0); - HEAP32[$244>>2] = $p$0; - $245 = ((($p$0)) + 8|0); - HEAP32[$245>>2] = $F16$0; - $246 = ((($p$0)) + 12|0); - HEAP32[$246>>2] = $234; + HEAP32[$$pre$phiZ2D>>2] = $$1; + $245 = ((($$0403)) + 12|0); + HEAP32[$245>>2] = $$1; + $246 = ((($$1)) + 8|0); + HEAP32[$246>>2] = $$0403; + $247 = ((($$1)) + 12|0); + HEAP32[$247>>2] = $235; return; } - $247 = $psize$1 >>> 8; - $248 = ($247|0)==(0); - if ($248) { - $I18$0 = 0; + $248 = $$2 >>> 8; + $249 = ($248|0)==(0); + if ($249) { + $$0396 = 0; } else { - $249 = ($psize$1>>>0)>(16777215); - if ($249) { - $I18$0 = 31; + $250 = ($$2>>>0)>(16777215); + if ($250) { + $$0396 = 31; } else { - $250 = (($247) + 1048320)|0; - $251 = $250 >>> 16; - $252 = $251 & 8; - $253 = $247 << $252; - $254 = (($253) + 520192)|0; - $255 = $254 >>> 16; - $256 = $255 & 4; - $257 = $256 | $252; - $258 = $253 << $256; - $259 = (($258) + 245760)|0; - $260 = $259 >>> 16; - $261 = $260 & 2; - $262 = $257 | $261; - $263 = (14 - ($262))|0; - $264 = $258 << $261; - $265 = $264 >>> 15; - $266 = (($263) + ($265))|0; - $267 = $266 << 1; - $268 = (($266) + 7)|0; - $269 = $psize$1 >>> $268; - $270 = $269 & 1; - $271 = $270 | $267; - $I18$0 = $271; + $251 = (($248) + 1048320)|0; + $252 = $251 >>> 16; + $253 = $252 & 8; + $254 = $248 << $253; + $255 = (($254) + 520192)|0; + $256 = $255 >>> 16; + $257 = $256 & 4; + $258 = $257 | $253; + $259 = $254 << $257; + $260 = (($259) + 245760)|0; + $261 = $260 >>> 16; + $262 = $261 & 2; + $263 = $258 | $262; + $264 = (14 - ($263))|0; + $265 = $259 << $262; + $266 = $265 >>> 15; + $267 = (($264) + ($266))|0; + $268 = $267 << 1; + $269 = (($267) + 7)|0; + $270 = $$2 >>> $269; + $271 = $270 & 1; + $272 = $271 | $268; + $$0396 = $272; } } - $272 = (32980 + ($I18$0<<2)|0); - $273 = ((($p$0)) + 28|0); - HEAP32[$273>>2] = $I18$0; - $274 = ((($p$0)) + 16|0); - $275 = ((($p$0)) + 20|0); + $273 = (33268 + ($$0396<<2)|0); + $274 = ((($$1)) + 28|0); + HEAP32[$274>>2] = $$0396; + $275 = ((($$1)) + 16|0); + $276 = ((($$1)) + 20|0); + HEAP32[$276>>2] = 0; HEAP32[$275>>2] = 0; - HEAP32[$274>>2] = 0; - $276 = HEAP32[(32680)>>2]|0; - $277 = 1 << $I18$0; - $278 = $276 & $277; - $279 = ($278|0)==(0); - L199: do { - if ($279) { - $280 = $276 | $277; - HEAP32[(32680)>>2] = $280; - HEAP32[$272>>2] = $p$0; - $281 = ((($p$0)) + 24|0); - HEAP32[$281>>2] = $272; - $282 = ((($p$0)) + 12|0); - HEAP32[$282>>2] = $p$0; - $283 = ((($p$0)) + 8|0); - HEAP32[$283>>2] = $p$0; + $277 = HEAP32[(32968)>>2]|0; + $278 = 1 << $$0396; + $279 = $277 & $278; + $280 = ($279|0)==(0); + do { + if ($280) { + $281 = $277 | $278; + HEAP32[(32968)>>2] = $281; + HEAP32[$273>>2] = $$1; + $282 = ((($$1)) + 24|0); + HEAP32[$282>>2] = $273; + $283 = ((($$1)) + 12|0); + HEAP32[$283>>2] = $$1; + $284 = ((($$1)) + 8|0); + HEAP32[$284>>2] = $$1; } else { - $284 = HEAP32[$272>>2]|0; - $285 = ((($284)) + 4|0); - $286 = HEAP32[$285>>2]|0; - $287 = $286 & -8; - $288 = ($287|0)==($psize$1|0); - L202: do { - if ($288) { - $T$0$lcssa = $284; + $285 = HEAP32[$273>>2]|0; + $286 = ($$0396|0)==(31); + $287 = $$0396 >>> 1; + $288 = (25 - ($287))|0; + $289 = $286 ? 0 : $288; + $290 = $$2 << $289; + $$0383 = $290;$$0384 = $285; + while(1) { + $291 = ((($$0384)) + 4|0); + $292 = HEAP32[$291>>2]|0; + $293 = $292 & -8; + $294 = ($293|0)==($$2|0); + if ($294) { + label = 124; + break; + } + $295 = $$0383 >>> 31; + $296 = (((($$0384)) + 16|0) + ($295<<2)|0); + $297 = $$0383 << 1; + $298 = HEAP32[$296>>2]|0; + $299 = ($298|0)==(0|0); + if ($299) { + label = 121; + break; } else { - $289 = ($I18$0|0)==(31); - $290 = $I18$0 >>> 1; - $291 = (25 - ($290))|0; - $292 = $289 ? 0 : $291; - $293 = $psize$1 << $292; - $K19$052 = $293;$T$051 = $284; - while(1) { - $300 = $K19$052 >>> 31; - $301 = (((($T$051)) + 16|0) + ($300<<2)|0); - $296 = HEAP32[$301>>2]|0; - $302 = ($296|0)==(0|0); - if ($302) { - $$lcssa = $301;$T$051$lcssa = $T$051; - break; - } - $294 = $K19$052 << 1; - $295 = ((($296)) + 4|0); - $297 = HEAP32[$295>>2]|0; - $298 = $297 & -8; - $299 = ($298|0)==($psize$1|0); - if ($299) { - $T$0$lcssa = $296; - break L202; - } else { - $K19$052 = $294;$T$051 = $296; - } - } - $303 = HEAP32[(32692)>>2]|0; - $304 = ($$lcssa>>>0)<($303>>>0); - if ($304) { - _abort(); - // unreachable; - } else { - HEAP32[$$lcssa>>2] = $p$0; - $305 = ((($p$0)) + 24|0); - HEAP32[$305>>2] = $T$051$lcssa; - $306 = ((($p$0)) + 12|0); - HEAP32[$306>>2] = $p$0; - $307 = ((($p$0)) + 8|0); - HEAP32[$307>>2] = $p$0; - break L199; - } + $$0383 = $297;$$0384 = $298; + } + } + if ((label|0) == 121) { + $300 = HEAP32[(32980)>>2]|0; + $301 = ($296>>>0)<($300>>>0); + if ($301) { + _abort(); + // unreachable; + } else { + HEAP32[$296>>2] = $$1; + $302 = ((($$1)) + 24|0); + HEAP32[$302>>2] = $$0384; + $303 = ((($$1)) + 12|0); + HEAP32[$303>>2] = $$1; + $304 = ((($$1)) + 8|0); + HEAP32[$304>>2] = $$1; + break; + } + } + else if ((label|0) == 124) { + $305 = ((($$0384)) + 8|0); + $306 = HEAP32[$305>>2]|0; + $307 = HEAP32[(32980)>>2]|0; + $308 = ($306>>>0)>=($307>>>0); + $not$437 = ($$0384>>>0)>=($307>>>0); + $309 = $308 & $not$437; + if ($309) { + $310 = ((($306)) + 12|0); + HEAP32[$310>>2] = $$1; + HEAP32[$305>>2] = $$1; + $311 = ((($$1)) + 8|0); + HEAP32[$311>>2] = $306; + $312 = ((($$1)) + 12|0); + HEAP32[$312>>2] = $$0384; + $313 = ((($$1)) + 24|0); + HEAP32[$313>>2] = 0; + break; + } else { + _abort(); + // unreachable; } - } while(0); - $308 = ((($T$0$lcssa)) + 8|0); - $309 = HEAP32[$308>>2]|0; - $310 = HEAP32[(32692)>>2]|0; - $311 = ($309>>>0)>=($310>>>0); - $not$ = ($T$0$lcssa>>>0)>=($310>>>0); - $312 = $311 & $not$; - if ($312) { - $313 = ((($309)) + 12|0); - HEAP32[$313>>2] = $p$0; - HEAP32[$308>>2] = $p$0; - $314 = ((($p$0)) + 8|0); - HEAP32[$314>>2] = $309; - $315 = ((($p$0)) + 12|0); - HEAP32[$315>>2] = $T$0$lcssa; - $316 = ((($p$0)) + 24|0); - HEAP32[$316>>2] = 0; - break; - } else { - _abort(); - // unreachable; } } } while(0); - $317 = HEAP32[(32708)>>2]|0; - $318 = (($317) + -1)|0; - HEAP32[(32708)>>2] = $318; - $319 = ($318|0)==(0); - if ($319) { - $sp$0$in$i = (33132); + $314 = HEAP32[(32996)>>2]|0; + $315 = (($314) + -1)|0; + HEAP32[(32996)>>2] = $315; + $316 = ($315|0)==(0); + if ($316) { + $$0212$in$i = (33420); } else { return; } while(1) { - $sp$0$i = HEAP32[$sp$0$in$i>>2]|0; - $320 = ($sp$0$i|0)==(0|0); - $321 = ((($sp$0$i)) + 8|0); - if ($320) { + $$0212$i = HEAP32[$$0212$in$i>>2]|0; + $317 = ($$0212$i|0)==(0|0); + $318 = ((($$0212$i)) + 8|0); + if ($317) { break; } else { - $sp$0$in$i = $321; + $$0212$in$i = $318; } } - HEAP32[(32708)>>2] = -1; + HEAP32[(32996)>>2] = -1; return; } function runPostSets() { @@ -23953,31 +20209,51 @@ function _i64Add(a, b, c, d) { } function _memset(ptr, value, num) { ptr = ptr|0; value = value|0; num = num|0; - var stop = 0, value4 = 0, stop4 = 0, unaligned = 0; - stop = (ptr + num)|0; - if ((num|0) >= 20) { - // This is unaligned, but quite large, so work hard to get to aligned settings - value = value & 0xff; - unaligned = ptr & 3; + var end = 0, aligned_end = 0, block_aligned_end = 0, value4 = 0; + end = (ptr + num)|0; + + value = value & 0xff; + if ((num|0) >= 67 /* 64 bytes for an unrolled loop + 3 bytes for unaligned head*/) { + while ((ptr&3) != 0) { + HEAP8[((ptr)>>0)]=value; + ptr = (ptr+1)|0; + } + + aligned_end = (end & -4)|0; + block_aligned_end = (aligned_end - 64)|0; value4 = value | (value << 8) | (value << 16) | (value << 24); - stop4 = stop & ~3; - if (unaligned) { - unaligned = (ptr + 4 - unaligned)|0; - while ((ptr|0) < (unaligned|0)) { // no need to check for stop, since we have large num - HEAP8[((ptr)>>0)]=value; - ptr = (ptr+1)|0; - } + + while((ptr|0) <= (block_aligned_end|0)) { + HEAP32[((ptr)>>2)]=value4; + HEAP32[(((ptr)+(4))>>2)]=value4; + HEAP32[(((ptr)+(8))>>2)]=value4; + HEAP32[(((ptr)+(12))>>2)]=value4; + HEAP32[(((ptr)+(16))>>2)]=value4; + HEAP32[(((ptr)+(20))>>2)]=value4; + HEAP32[(((ptr)+(24))>>2)]=value4; + HEAP32[(((ptr)+(28))>>2)]=value4; + HEAP32[(((ptr)+(32))>>2)]=value4; + HEAP32[(((ptr)+(36))>>2)]=value4; + HEAP32[(((ptr)+(40))>>2)]=value4; + HEAP32[(((ptr)+(44))>>2)]=value4; + HEAP32[(((ptr)+(48))>>2)]=value4; + HEAP32[(((ptr)+(52))>>2)]=value4; + HEAP32[(((ptr)+(56))>>2)]=value4; + HEAP32[(((ptr)+(60))>>2)]=value4; + ptr = (ptr + 64)|0; } - while ((ptr|0) < (stop4|0)) { + + while ((ptr|0) < (aligned_end|0) ) { HEAP32[((ptr)>>2)]=value4; ptr = (ptr+4)|0; } } - while ((ptr|0) < (stop|0)) { + // The remaining bytes. + while ((ptr|0) < (end|0)) { HEAP8[((ptr)>>0)]=value; ptr = (ptr+1)|0; } - return (ptr-num)|0; + return (end-num)|0; } function _bitshift64Lshr(low, high, bits) { low = low|0; high = high|0; bits = bits|0; @@ -24001,12 +20277,77 @@ function _bitshift64Shl(low, high, bits) { tempRet0 = low << (bits - 32); return 0; } +function ___muldsi3($a, $b) { + $a = $a | 0; + $b = $b | 0; + var $1 = 0, $2 = 0, $3 = 0, $6 = 0, $8 = 0, $11 = 0, $12 = 0; + $1 = $a & 65535; + $2 = $b & 65535; + $3 = Math_imul($2, $1) | 0; + $6 = $a >>> 16; + $8 = ($3 >>> 16) + (Math_imul($2, $6) | 0) | 0; + $11 = $b >>> 16; + $12 = Math_imul($11, $1) | 0; + return (tempRet0 = (($8 >>> 16) + (Math_imul($11, $6) | 0) | 0) + ((($8 & 65535) + $12 | 0) >>> 16) | 0, 0 | ($8 + $12 << 16 | $3 & 65535)) | 0; +} +function ___muldi3($a$0, $a$1, $b$0, $b$1) { + $a$0 = $a$0 | 0; + $a$1 = $a$1 | 0; + $b$0 = $b$0 | 0; + $b$1 = $b$1 | 0; + var $x_sroa_0_0_extract_trunc = 0, $y_sroa_0_0_extract_trunc = 0, $1$0 = 0, $1$1 = 0, $2 = 0; + $x_sroa_0_0_extract_trunc = $a$0; + $y_sroa_0_0_extract_trunc = $b$0; + $1$0 = ___muldsi3($x_sroa_0_0_extract_trunc, $y_sroa_0_0_extract_trunc) | 0; + $1$1 = tempRet0; + $2 = Math_imul($a$1, $y_sroa_0_0_extract_trunc) | 0; + return (tempRet0 = ((Math_imul($b$1, $x_sroa_0_0_extract_trunc) | 0) + $2 | 0) + $1$1 | $1$1 & 0, 0 | $1$0 & -1) | 0; +} +function _sbrk(increment) { + increment = increment|0; + var oldDynamicTop = 0; + var oldDynamicTopOnChange = 0; + var newDynamicTop = 0; + var totalMemory = 0; + increment = ((increment + 15) & -16)|0; + oldDynamicTop = HEAP32[DYNAMICTOP_PTR>>2]|0; + newDynamicTop = oldDynamicTop + increment | 0; + + if (((increment|0) > 0 & (newDynamicTop|0) < (oldDynamicTop|0)) // Detect and fail if we would wrap around signed 32-bit int. + | (newDynamicTop|0) < 0) { // Also underflow, sbrk() should be able to be used to subtract. + abortOnCannotGrowMemory()|0; + ___setErrNo(12); + return -1; + } + + HEAP32[DYNAMICTOP_PTR>>2] = newDynamicTop; + totalMemory = getTotalMemory()|0; + if ((newDynamicTop|0) > (totalMemory|0)) { + if ((enlargeMemory()|0) == 0) { + HEAP32[DYNAMICTOP_PTR>>2] = oldDynamicTop; + ___setErrNo(12); + return -1; + } + } + return oldDynamicTop|0; +} function _memcpy(dest, src, num) { dest = dest|0; src = src|0; num = num|0; var ret = 0; - if ((num|0) >= 4096) return _emscripten_memcpy_big(dest|0, src|0, num|0)|0; + var aligned_dest_end = 0; + var block_aligned_dest_end = 0; + var dest_end = 0; + // Test against a benchmarked cutoff limit for when HEAPU8.set() becomes faster to use. + if ((num|0) >= + 8192 + ) { + return _emscripten_memcpy_big(dest|0, src|0, num|0)|0; + } + ret = dest|0; + dest_end = (dest + num)|0; if ((dest&3) == (src&3)) { + // The initial unaligned < 4-byte front. while (dest & 3) { if ((num|0) == 0) return ret|0; HEAP8[((dest)>>0)]=((HEAP8[((src)>>0)])|0); @@ -24014,18 +20355,50 @@ function _memcpy(dest, src, num) { src = (src+1)|0; num = (num-1)|0; } - while ((num|0) >= 4) { + aligned_dest_end = (dest_end & -4)|0; + block_aligned_dest_end = (aligned_dest_end - 64)|0; + while ((dest|0) <= (block_aligned_dest_end|0) ) { + HEAP32[((dest)>>2)]=((HEAP32[((src)>>2)])|0); + HEAP32[(((dest)+(4))>>2)]=((HEAP32[(((src)+(4))>>2)])|0); + HEAP32[(((dest)+(8))>>2)]=((HEAP32[(((src)+(8))>>2)])|0); + HEAP32[(((dest)+(12))>>2)]=((HEAP32[(((src)+(12))>>2)])|0); + HEAP32[(((dest)+(16))>>2)]=((HEAP32[(((src)+(16))>>2)])|0); + HEAP32[(((dest)+(20))>>2)]=((HEAP32[(((src)+(20))>>2)])|0); + HEAP32[(((dest)+(24))>>2)]=((HEAP32[(((src)+(24))>>2)])|0); + HEAP32[(((dest)+(28))>>2)]=((HEAP32[(((src)+(28))>>2)])|0); + HEAP32[(((dest)+(32))>>2)]=((HEAP32[(((src)+(32))>>2)])|0); + HEAP32[(((dest)+(36))>>2)]=((HEAP32[(((src)+(36))>>2)])|0); + HEAP32[(((dest)+(40))>>2)]=((HEAP32[(((src)+(40))>>2)])|0); + HEAP32[(((dest)+(44))>>2)]=((HEAP32[(((src)+(44))>>2)])|0); + HEAP32[(((dest)+(48))>>2)]=((HEAP32[(((src)+(48))>>2)])|0); + HEAP32[(((dest)+(52))>>2)]=((HEAP32[(((src)+(52))>>2)])|0); + HEAP32[(((dest)+(56))>>2)]=((HEAP32[(((src)+(56))>>2)])|0); + HEAP32[(((dest)+(60))>>2)]=((HEAP32[(((src)+(60))>>2)])|0); + dest = (dest+64)|0; + src = (src+64)|0; + } + while ((dest|0) < (aligned_dest_end|0) ) { HEAP32[((dest)>>2)]=((HEAP32[((src)>>2)])|0); dest = (dest+4)|0; src = (src+4)|0; - num = (num-4)|0; + } + } else { + // In the unaligned copy case, unroll a bit as well. + aligned_dest_end = (dest_end - 4)|0; + while ((dest|0) < (aligned_dest_end|0) ) { + HEAP8[((dest)>>0)]=((HEAP8[((src)>>0)])|0); + HEAP8[(((dest)+(1))>>0)]=((HEAP8[(((src)+(1))>>0)])|0); + HEAP8[(((dest)+(2))>>0)]=((HEAP8[(((src)+(2))>>0)])|0); + HEAP8[(((dest)+(3))>>0)]=((HEAP8[(((src)+(3))>>0)])|0); + dest = (dest+4)|0; + src = (src+4)|0; } } - while ((num|0) > 0) { + // The remaining unaligned < 4 byte tail. + while ((dest|0) < (dest_end|0)) { HEAP8[((dest)>>0)]=((HEAP8[((src)>>0)])|0); dest = (dest+1)|0; src = (src+1)|0; - num = (num-1)|0; } return ret|0; } @@ -24049,318 +20422,6 @@ function _memmove(dest, src, num) { } return dest | 0; } -function _llvm_cttz_i32(x) { - x = x|0; - var ret = 0; - ret = ((HEAP8[(((cttz_i8)+(x & 0xff))>>0)])|0); - if ((ret|0) < 8) return ret|0; - ret = ((HEAP8[(((cttz_i8)+((x >> 8)&0xff))>>0)])|0); - if ((ret|0) < 8) return (ret + 8)|0; - ret = ((HEAP8[(((cttz_i8)+((x >> 16)&0xff))>>0)])|0); - if ((ret|0) < 8) return (ret + 16)|0; - return (((HEAP8[(((cttz_i8)+(x >>> 24))>>0)])|0) + 24)|0; - } - -// ======== compiled code from system/lib/compiler-rt , see readme therein -function ___muldsi3($a, $b) { - $a = $a | 0; - $b = $b | 0; - var $1 = 0, $2 = 0, $3 = 0, $6 = 0, $8 = 0, $11 = 0, $12 = 0; - $1 = $a & 65535; - $2 = $b & 65535; - $3 = Math_imul($2, $1) | 0; - $6 = $a >>> 16; - $8 = ($3 >>> 16) + (Math_imul($2, $6) | 0) | 0; - $11 = $b >>> 16; - $12 = Math_imul($11, $1) | 0; - return (tempRet0 = (($8 >>> 16) + (Math_imul($11, $6) | 0) | 0) + ((($8 & 65535) + $12 | 0) >>> 16) | 0, 0 | ($8 + $12 << 16 | $3 & 65535)) | 0; -} -function ___divdi3($a$0, $a$1, $b$0, $b$1) { - $a$0 = $a$0 | 0; - $a$1 = $a$1 | 0; - $b$0 = $b$0 | 0; - $b$1 = $b$1 | 0; - var $1$0 = 0, $1$1 = 0, $2$0 = 0, $2$1 = 0, $4$0 = 0, $4$1 = 0, $6$0 = 0, $7$0 = 0, $7$1 = 0, $8$0 = 0, $10$0 = 0; - $1$0 = $a$1 >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; - $1$1 = (($a$1 | 0) < 0 ? -1 : 0) >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; - $2$0 = $b$1 >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; - $2$1 = (($b$1 | 0) < 0 ? -1 : 0) >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; - $4$0 = _i64Subtract($1$0 ^ $a$0, $1$1 ^ $a$1, $1$0, $1$1) | 0; - $4$1 = tempRet0; - $6$0 = _i64Subtract($2$0 ^ $b$0, $2$1 ^ $b$1, $2$0, $2$1) | 0; - $7$0 = $2$0 ^ $1$0; - $7$1 = $2$1 ^ $1$1; - $8$0 = ___udivmoddi4($4$0, $4$1, $6$0, tempRet0, 0) | 0; - $10$0 = _i64Subtract($8$0 ^ $7$0, tempRet0 ^ $7$1, $7$0, $7$1) | 0; - return $10$0 | 0; -} -function ___remdi3($a$0, $a$1, $b$0, $b$1) { - $a$0 = $a$0 | 0; - $a$1 = $a$1 | 0; - $b$0 = $b$0 | 0; - $b$1 = $b$1 | 0; - var $rem = 0, $1$0 = 0, $1$1 = 0, $2$0 = 0, $2$1 = 0, $4$0 = 0, $4$1 = 0, $6$0 = 0, $10$0 = 0, $10$1 = 0, __stackBase__ = 0; - __stackBase__ = STACKTOP; - STACKTOP = STACKTOP + 16 | 0; - $rem = __stackBase__ | 0; - $1$0 = $a$1 >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; - $1$1 = (($a$1 | 0) < 0 ? -1 : 0) >> 31 | (($a$1 | 0) < 0 ? -1 : 0) << 1; - $2$0 = $b$1 >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; - $2$1 = (($b$1 | 0) < 0 ? -1 : 0) >> 31 | (($b$1 | 0) < 0 ? -1 : 0) << 1; - $4$0 = _i64Subtract($1$0 ^ $a$0, $1$1 ^ $a$1, $1$0, $1$1) | 0; - $4$1 = tempRet0; - $6$0 = _i64Subtract($2$0 ^ $b$0, $2$1 ^ $b$1, $2$0, $2$1) | 0; - ___udivmoddi4($4$0, $4$1, $6$0, tempRet0, $rem) | 0; - $10$0 = _i64Subtract(HEAP32[$rem >> 2] ^ $1$0, HEAP32[$rem + 4 >> 2] ^ $1$1, $1$0, $1$1) | 0; - $10$1 = tempRet0; - STACKTOP = __stackBase__; - return (tempRet0 = $10$1, $10$0) | 0; -} -function ___muldi3($a$0, $a$1, $b$0, $b$1) { - $a$0 = $a$0 | 0; - $a$1 = $a$1 | 0; - $b$0 = $b$0 | 0; - $b$1 = $b$1 | 0; - var $x_sroa_0_0_extract_trunc = 0, $y_sroa_0_0_extract_trunc = 0, $1$0 = 0, $1$1 = 0, $2 = 0; - $x_sroa_0_0_extract_trunc = $a$0; - $y_sroa_0_0_extract_trunc = $b$0; - $1$0 = ___muldsi3($x_sroa_0_0_extract_trunc, $y_sroa_0_0_extract_trunc) | 0; - $1$1 = tempRet0; - $2 = Math_imul($a$1, $y_sroa_0_0_extract_trunc) | 0; - return (tempRet0 = ((Math_imul($b$1, $x_sroa_0_0_extract_trunc) | 0) + $2 | 0) + $1$1 | $1$1 & 0, 0 | $1$0 & -1) | 0; -} -function ___udivdi3($a$0, $a$1, $b$0, $b$1) { - $a$0 = $a$0 | 0; - $a$1 = $a$1 | 0; - $b$0 = $b$0 | 0; - $b$1 = $b$1 | 0; - var $1$0 = 0; - $1$0 = ___udivmoddi4($a$0, $a$1, $b$0, $b$1, 0) | 0; - return $1$0 | 0; -} -function ___uremdi3($a$0, $a$1, $b$0, $b$1) { - $a$0 = $a$0 | 0; - $a$1 = $a$1 | 0; - $b$0 = $b$0 | 0; - $b$1 = $b$1 | 0; - var $rem = 0, __stackBase__ = 0; - __stackBase__ = STACKTOP; - STACKTOP = STACKTOP + 16 | 0; - $rem = __stackBase__ | 0; - ___udivmoddi4($a$0, $a$1, $b$0, $b$1, $rem) | 0; - STACKTOP = __stackBase__; - return (tempRet0 = HEAP32[$rem + 4 >> 2] | 0, HEAP32[$rem >> 2] | 0) | 0; -} -function ___udivmoddi4($a$0, $a$1, $b$0, $b$1, $rem) { - $a$0 = $a$0 | 0; - $a$1 = $a$1 | 0; - $b$0 = $b$0 | 0; - $b$1 = $b$1 | 0; - $rem = $rem | 0; - var $n_sroa_0_0_extract_trunc = 0, $n_sroa_1_4_extract_shift$0 = 0, $n_sroa_1_4_extract_trunc = 0, $d_sroa_0_0_extract_trunc = 0, $d_sroa_1_4_extract_shift$0 = 0, $d_sroa_1_4_extract_trunc = 0, $4 = 0, $17 = 0, $37 = 0, $49 = 0, $51 = 0, $57 = 0, $58 = 0, $66 = 0, $78 = 0, $86 = 0, $88 = 0, $89 = 0, $91 = 0, $92 = 0, $95 = 0, $105 = 0, $117 = 0, $119 = 0, $125 = 0, $126 = 0, $130 = 0, $q_sroa_1_1_ph = 0, $q_sroa_0_1_ph = 0, $r_sroa_1_1_ph = 0, $r_sroa_0_1_ph = 0, $sr_1_ph = 0, $d_sroa_0_0_insert_insert99$0 = 0, $d_sroa_0_0_insert_insert99$1 = 0, $137$0 = 0, $137$1 = 0, $carry_0203 = 0, $sr_1202 = 0, $r_sroa_0_1201 = 0, $r_sroa_1_1200 = 0, $q_sroa_0_1199 = 0, $q_sroa_1_1198 = 0, $147 = 0, $149 = 0, $r_sroa_0_0_insert_insert42$0 = 0, $r_sroa_0_0_insert_insert42$1 = 0, $150$1 = 0, $151$0 = 0, $152 = 0, $154$0 = 0, $r_sroa_0_0_extract_trunc = 0, $r_sroa_1_4_extract_trunc = 0, $155 = 0, $carry_0_lcssa$0 = 0, $carry_0_lcssa$1 = 0, $r_sroa_0_1_lcssa = 0, $r_sroa_1_1_lcssa = 0, $q_sroa_0_1_lcssa = 0, $q_sroa_1_1_lcssa = 0, $q_sroa_0_0_insert_ext75$0 = 0, $q_sroa_0_0_insert_ext75$1 = 0, $q_sroa_0_0_insert_insert77$1 = 0, $_0$0 = 0, $_0$1 = 0; - $n_sroa_0_0_extract_trunc = $a$0; - $n_sroa_1_4_extract_shift$0 = $a$1; - $n_sroa_1_4_extract_trunc = $n_sroa_1_4_extract_shift$0; - $d_sroa_0_0_extract_trunc = $b$0; - $d_sroa_1_4_extract_shift$0 = $b$1; - $d_sroa_1_4_extract_trunc = $d_sroa_1_4_extract_shift$0; - if (($n_sroa_1_4_extract_trunc | 0) == 0) { - $4 = ($rem | 0) != 0; - if (($d_sroa_1_4_extract_trunc | 0) == 0) { - if ($4) { - HEAP32[$rem >> 2] = ($n_sroa_0_0_extract_trunc >>> 0) % ($d_sroa_0_0_extract_trunc >>> 0); - HEAP32[$rem + 4 >> 2] = 0; - } - $_0$1 = 0; - $_0$0 = ($n_sroa_0_0_extract_trunc >>> 0) / ($d_sroa_0_0_extract_trunc >>> 0) >>> 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } else { - if (!$4) { - $_0$1 = 0; - $_0$0 = 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - HEAP32[$rem >> 2] = $a$0 & -1; - HEAP32[$rem + 4 >> 2] = $a$1 & 0; - $_0$1 = 0; - $_0$0 = 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - } - $17 = ($d_sroa_1_4_extract_trunc | 0) == 0; - do { - if (($d_sroa_0_0_extract_trunc | 0) == 0) { - if ($17) { - if (($rem | 0) != 0) { - HEAP32[$rem >> 2] = ($n_sroa_1_4_extract_trunc >>> 0) % ($d_sroa_0_0_extract_trunc >>> 0); - HEAP32[$rem + 4 >> 2] = 0; - } - $_0$1 = 0; - $_0$0 = ($n_sroa_1_4_extract_trunc >>> 0) / ($d_sroa_0_0_extract_trunc >>> 0) >>> 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - if (($n_sroa_0_0_extract_trunc | 0) == 0) { - if (($rem | 0) != 0) { - HEAP32[$rem >> 2] = 0; - HEAP32[$rem + 4 >> 2] = ($n_sroa_1_4_extract_trunc >>> 0) % ($d_sroa_1_4_extract_trunc >>> 0); - } - $_0$1 = 0; - $_0$0 = ($n_sroa_1_4_extract_trunc >>> 0) / ($d_sroa_1_4_extract_trunc >>> 0) >>> 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - $37 = $d_sroa_1_4_extract_trunc - 1 | 0; - if (($37 & $d_sroa_1_4_extract_trunc | 0) == 0) { - if (($rem | 0) != 0) { - HEAP32[$rem >> 2] = 0 | $a$0 & -1; - HEAP32[$rem + 4 >> 2] = $37 & $n_sroa_1_4_extract_trunc | $a$1 & 0; - } - $_0$1 = 0; - $_0$0 = $n_sroa_1_4_extract_trunc >>> ((_llvm_cttz_i32($d_sroa_1_4_extract_trunc | 0) | 0) >>> 0); - return (tempRet0 = $_0$1, $_0$0) | 0; - } - $49 = Math_clz32($d_sroa_1_4_extract_trunc | 0) | 0; - $51 = $49 - (Math_clz32($n_sroa_1_4_extract_trunc | 0) | 0) | 0; - if ($51 >>> 0 <= 30) { - $57 = $51 + 1 | 0; - $58 = 31 - $51 | 0; - $sr_1_ph = $57; - $r_sroa_0_1_ph = $n_sroa_1_4_extract_trunc << $58 | $n_sroa_0_0_extract_trunc >>> ($57 >>> 0); - $r_sroa_1_1_ph = $n_sroa_1_4_extract_trunc >>> ($57 >>> 0); - $q_sroa_0_1_ph = 0; - $q_sroa_1_1_ph = $n_sroa_0_0_extract_trunc << $58; - break; - } - if (($rem | 0) == 0) { - $_0$1 = 0; - $_0$0 = 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - HEAP32[$rem >> 2] = 0 | $a$0 & -1; - HEAP32[$rem + 4 >> 2] = $n_sroa_1_4_extract_shift$0 | $a$1 & 0; - $_0$1 = 0; - $_0$0 = 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } else { - if (!$17) { - $117 = Math_clz32($d_sroa_1_4_extract_trunc | 0) | 0; - $119 = $117 - (Math_clz32($n_sroa_1_4_extract_trunc | 0) | 0) | 0; - if ($119 >>> 0 <= 31) { - $125 = $119 + 1 | 0; - $126 = 31 - $119 | 0; - $130 = $119 - 31 >> 31; - $sr_1_ph = $125; - $r_sroa_0_1_ph = $n_sroa_0_0_extract_trunc >>> ($125 >>> 0) & $130 | $n_sroa_1_4_extract_trunc << $126; - $r_sroa_1_1_ph = $n_sroa_1_4_extract_trunc >>> ($125 >>> 0) & $130; - $q_sroa_0_1_ph = 0; - $q_sroa_1_1_ph = $n_sroa_0_0_extract_trunc << $126; - break; - } - if (($rem | 0) == 0) { - $_0$1 = 0; - $_0$0 = 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - HEAP32[$rem >> 2] = 0 | $a$0 & -1; - HEAP32[$rem + 4 >> 2] = $n_sroa_1_4_extract_shift$0 | $a$1 & 0; - $_0$1 = 0; - $_0$0 = 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - $66 = $d_sroa_0_0_extract_trunc - 1 | 0; - if (($66 & $d_sroa_0_0_extract_trunc | 0) != 0) { - $86 = (Math_clz32($d_sroa_0_0_extract_trunc | 0) | 0) + 33 | 0; - $88 = $86 - (Math_clz32($n_sroa_1_4_extract_trunc | 0) | 0) | 0; - $89 = 64 - $88 | 0; - $91 = 32 - $88 | 0; - $92 = $91 >> 31; - $95 = $88 - 32 | 0; - $105 = $95 >> 31; - $sr_1_ph = $88; - $r_sroa_0_1_ph = $91 - 1 >> 31 & $n_sroa_1_4_extract_trunc >>> ($95 >>> 0) | ($n_sroa_1_4_extract_trunc << $91 | $n_sroa_0_0_extract_trunc >>> ($88 >>> 0)) & $105; - $r_sroa_1_1_ph = $105 & $n_sroa_1_4_extract_trunc >>> ($88 >>> 0); - $q_sroa_0_1_ph = $n_sroa_0_0_extract_trunc << $89 & $92; - $q_sroa_1_1_ph = ($n_sroa_1_4_extract_trunc << $89 | $n_sroa_0_0_extract_trunc >>> ($95 >>> 0)) & $92 | $n_sroa_0_0_extract_trunc << $91 & $88 - 33 >> 31; - break; - } - if (($rem | 0) != 0) { - HEAP32[$rem >> 2] = $66 & $n_sroa_0_0_extract_trunc; - HEAP32[$rem + 4 >> 2] = 0; - } - if (($d_sroa_0_0_extract_trunc | 0) == 1) { - $_0$1 = $n_sroa_1_4_extract_shift$0 | $a$1 & 0; - $_0$0 = 0 | $a$0 & -1; - return (tempRet0 = $_0$1, $_0$0) | 0; - } else { - $78 = _llvm_cttz_i32($d_sroa_0_0_extract_trunc | 0) | 0; - $_0$1 = 0 | $n_sroa_1_4_extract_trunc >>> ($78 >>> 0); - $_0$0 = $n_sroa_1_4_extract_trunc << 32 - $78 | $n_sroa_0_0_extract_trunc >>> ($78 >>> 0) | 0; - return (tempRet0 = $_0$1, $_0$0) | 0; - } - } - } while (0); - if (($sr_1_ph | 0) == 0) { - $q_sroa_1_1_lcssa = $q_sroa_1_1_ph; - $q_sroa_0_1_lcssa = $q_sroa_0_1_ph; - $r_sroa_1_1_lcssa = $r_sroa_1_1_ph; - $r_sroa_0_1_lcssa = $r_sroa_0_1_ph; - $carry_0_lcssa$1 = 0; - $carry_0_lcssa$0 = 0; - } else { - $d_sroa_0_0_insert_insert99$0 = 0 | $b$0 & -1; - $d_sroa_0_0_insert_insert99$1 = $d_sroa_1_4_extract_shift$0 | $b$1 & 0; - $137$0 = _i64Add($d_sroa_0_0_insert_insert99$0 | 0, $d_sroa_0_0_insert_insert99$1 | 0, -1, -1) | 0; - $137$1 = tempRet0; - $q_sroa_1_1198 = $q_sroa_1_1_ph; - $q_sroa_0_1199 = $q_sroa_0_1_ph; - $r_sroa_1_1200 = $r_sroa_1_1_ph; - $r_sroa_0_1201 = $r_sroa_0_1_ph; - $sr_1202 = $sr_1_ph; - $carry_0203 = 0; - while (1) { - $147 = $q_sroa_0_1199 >>> 31 | $q_sroa_1_1198 << 1; - $149 = $carry_0203 | $q_sroa_0_1199 << 1; - $r_sroa_0_0_insert_insert42$0 = 0 | ($r_sroa_0_1201 << 1 | $q_sroa_1_1198 >>> 31); - $r_sroa_0_0_insert_insert42$1 = $r_sroa_0_1201 >>> 31 | $r_sroa_1_1200 << 1 | 0; - _i64Subtract($137$0, $137$1, $r_sroa_0_0_insert_insert42$0, $r_sroa_0_0_insert_insert42$1) | 0; - $150$1 = tempRet0; - $151$0 = $150$1 >> 31 | (($150$1 | 0) < 0 ? -1 : 0) << 1; - $152 = $151$0 & 1; - $154$0 = _i64Subtract($r_sroa_0_0_insert_insert42$0, $r_sroa_0_0_insert_insert42$1, $151$0 & $d_sroa_0_0_insert_insert99$0, ((($150$1 | 0) < 0 ? -1 : 0) >> 31 | (($150$1 | 0) < 0 ? -1 : 0) << 1) & $d_sroa_0_0_insert_insert99$1) | 0; - $r_sroa_0_0_extract_trunc = $154$0; - $r_sroa_1_4_extract_trunc = tempRet0; - $155 = $sr_1202 - 1 | 0; - if (($155 | 0) == 0) { - break; - } else { - $q_sroa_1_1198 = $147; - $q_sroa_0_1199 = $149; - $r_sroa_1_1200 = $r_sroa_1_4_extract_trunc; - $r_sroa_0_1201 = $r_sroa_0_0_extract_trunc; - $sr_1202 = $155; - $carry_0203 = $152; - } - } - $q_sroa_1_1_lcssa = $147; - $q_sroa_0_1_lcssa = $149; - $r_sroa_1_1_lcssa = $r_sroa_1_4_extract_trunc; - $r_sroa_0_1_lcssa = $r_sroa_0_0_extract_trunc; - $carry_0_lcssa$1 = 0; - $carry_0_lcssa$0 = $152; - } - $q_sroa_0_0_insert_ext75$0 = $q_sroa_0_1_lcssa; - $q_sroa_0_0_insert_ext75$1 = 0; - $q_sroa_0_0_insert_insert77$1 = $q_sroa_1_1_lcssa | $q_sroa_0_0_insert_ext75$1; - if (($rem | 0) != 0) { - HEAP32[$rem >> 2] = 0 | $r_sroa_0_1_lcssa; - HEAP32[$rem + 4 >> 2] = $r_sroa_1_1_lcssa | 0; - } - $_0$1 = (0 | $q_sroa_0_0_insert_ext75$0) >>> 31 | $q_sroa_0_0_insert_insert77$1 << 1 | ($q_sroa_0_0_insert_ext75$1 << 1 | $q_sroa_0_0_insert_ext75$0 >>> 31) & 0 | $carry_0_lcssa$1; - $_0$0 = ($q_sroa_0_0_insert_ext75$0 << 1 | 0 >>> 31) & -2 | $carry_0_lcssa$0; - return (tempRet0 = $_0$1, $_0$0) | 0; -} -// ======================================================================= - - function dynCall_ii(index,a1) { @@ -24376,68 +20437,75 @@ function dynCall_iiii(index,a1,a2,a3) { return FUNCTION_TABLE_iiii[index&3](a1|0,a2|0,a3|0)|0; } - -function dynCall_vi(index,a1) { - index = index|0; - a1=a1|0; - FUNCTION_TABLE_vi[index&1](a1|0); -} - function b0(p0) { p0 = p0|0; abort(0);return 0; } function b1(p0,p1,p2) { p0 = p0|0;p1 = p1|0;p2 = p2|0; abort(1);return 0; } -function b2(p0) { - p0 = p0|0; abort(2); -} // EMSCRIPTEN_END_FUNCS var FUNCTION_TABLE_ii = [b0,___stdio_close]; var FUNCTION_TABLE_iiii = [b1,___stdout_write,___stdio_seek,___stdio_write]; -var FUNCTION_TABLE_vi = [b2,_cleanup392]; - return { _curve25519_verify: _curve25519_verify, _crypto_sign_ed25519_ref10_ge_scalarmult_base: _crypto_sign_ed25519_ref10_ge_scalarmult_base, _curve25519_sign: _curve25519_sign, _fflush: _fflush, _i64Add: _i64Add, _memmove: _memmove, _bitshift64Ashr: _bitshift64Ashr, _sph_sha512_init: _sph_sha512_init, _curve25519_donna: _curve25519_donna, _memset: _memset, _malloc: _malloc, _memcpy: _memcpy, _bitshift64Lshr: _bitshift64Lshr, _free: _free, _i64Subtract: _i64Subtract, ___errno_location: ___errno_location, _bitshift64Shl: _bitshift64Shl, runPostSets: runPostSets, stackAlloc: stackAlloc, stackSave: stackSave, stackRestore: stackRestore, establishStackSpace: establishStackSpace, setThrew: setThrew, setTempRet0: setTempRet0, getTempRet0: getTempRet0, dynCall_ii: dynCall_ii, dynCall_iiii: dynCall_iiii, dynCall_vi: dynCall_vi }; + return { stackSave: stackSave, _curve25519_sign: _curve25519_sign, getTempRet0: getTempRet0, _bitshift64Lshr: _bitshift64Lshr, _i64Subtract: _i64Subtract, _bitshift64Shl: _bitshift64Shl, _curve25519_verify: _curve25519_verify, _fflush: _fflush, _bitshift64Ashr: _bitshift64Ashr, _memset: _memset, _sbrk: _sbrk, _memcpy: _memcpy, stackAlloc: stackAlloc, ___muldi3: ___muldi3, _crypto_sign_ed25519_ref10_ge_scalarmult_base: _crypto_sign_ed25519_ref10_ge_scalarmult_base, _curve25519_donna: _curve25519_donna, setTempRet0: setTempRet0, _i64Add: _i64Add, _emscripten_get_global_libc: _emscripten_get_global_libc, ___errno_location: ___errno_location, ___muldsi3: ___muldsi3, _free: _free, runPostSets: runPostSets, setThrew: setThrew, establishStackSpace: establishStackSpace, _memmove: _memmove, _sph_sha512_init: _sph_sha512_init, stackRestore: stackRestore, _malloc: _malloc, stackAlloc: stackAlloc, stackSave: stackSave, stackRestore: stackRestore, establishStackSpace: establishStackSpace, setThrew: setThrew, setTempRet0: setTempRet0, getTempRet0: getTempRet0, dynCall_ii: dynCall_ii, dynCall_iiii: dynCall_iiii }; }) // EMSCRIPTEN_END_ASM (Module.asmGlobalArg, Module.asmLibraryArg, buffer); -var _curve25519_verify = Module["_curve25519_verify"] = asm["_curve25519_verify"]; -var _crypto_sign_ed25519_ref10_ge_scalarmult_base = Module["_crypto_sign_ed25519_ref10_ge_scalarmult_base"] = asm["_crypto_sign_ed25519_ref10_ge_scalarmult_base"]; + +var stackSave = Module["stackSave"] = asm["stackSave"]; var _curve25519_sign = Module["_curve25519_sign"] = asm["_curve25519_sign"]; +var getTempRet0 = Module["getTempRet0"] = asm["getTempRet0"]; +var _bitshift64Lshr = Module["_bitshift64Lshr"] = asm["_bitshift64Lshr"]; +var _i64Subtract = Module["_i64Subtract"] = asm["_i64Subtract"]; +var _bitshift64Shl = Module["_bitshift64Shl"] = asm["_bitshift64Shl"]; +var _curve25519_verify = Module["_curve25519_verify"] = asm["_curve25519_verify"]; var _fflush = Module["_fflush"] = asm["_fflush"]; -var runPostSets = Module["runPostSets"] = asm["runPostSets"]; -var _i64Add = Module["_i64Add"] = asm["_i64Add"]; -var _memmove = Module["_memmove"] = asm["_memmove"]; var _bitshift64Ashr = Module["_bitshift64Ashr"] = asm["_bitshift64Ashr"]; -var _sph_sha512_init = Module["_sph_sha512_init"] = asm["_sph_sha512_init"]; -var _curve25519_donna = Module["_curve25519_donna"] = asm["_curve25519_donna"]; var _memset = Module["_memset"] = asm["_memset"]; -var _malloc = Module["_malloc"] = asm["_malloc"]; +var _sbrk = Module["_sbrk"] = asm["_sbrk"]; var _memcpy = Module["_memcpy"] = asm["_memcpy"]; -var _bitshift64Lshr = Module["_bitshift64Lshr"] = asm["_bitshift64Lshr"]; -var _free = Module["_free"] = asm["_free"]; -var _i64Subtract = Module["_i64Subtract"] = asm["_i64Subtract"]; +var stackAlloc = Module["stackAlloc"] = asm["stackAlloc"]; +var ___muldi3 = Module["___muldi3"] = asm["___muldi3"]; +var _crypto_sign_ed25519_ref10_ge_scalarmult_base = Module["_crypto_sign_ed25519_ref10_ge_scalarmult_base"] = asm["_crypto_sign_ed25519_ref10_ge_scalarmult_base"]; +var _curve25519_donna = Module["_curve25519_donna"] = asm["_curve25519_donna"]; +var setTempRet0 = Module["setTempRet0"] = asm["setTempRet0"]; +var _i64Add = Module["_i64Add"] = asm["_i64Add"]; +var _emscripten_get_global_libc = Module["_emscripten_get_global_libc"] = asm["_emscripten_get_global_libc"]; var ___errno_location = Module["___errno_location"] = asm["___errno_location"]; -var _bitshift64Shl = Module["_bitshift64Shl"] = asm["_bitshift64Shl"]; +var ___muldsi3 = Module["___muldsi3"] = asm["___muldsi3"]; +var _free = Module["_free"] = asm["_free"]; +var runPostSets = Module["runPostSets"] = asm["runPostSets"]; +var setThrew = Module["setThrew"] = asm["setThrew"]; +var establishStackSpace = Module["establishStackSpace"] = asm["establishStackSpace"]; +var _memmove = Module["_memmove"] = asm["_memmove"]; +var _sph_sha512_init = Module["_sph_sha512_init"] = asm["_sph_sha512_init"]; +var stackRestore = Module["stackRestore"] = asm["stackRestore"]; +var _malloc = Module["_malloc"] = asm["_malloc"]; var dynCall_ii = Module["dynCall_ii"] = asm["dynCall_ii"]; var dynCall_iiii = Module["dynCall_iiii"] = asm["dynCall_iiii"]; -var dynCall_vi = Module["dynCall_vi"] = asm["dynCall_vi"]; ; +Runtime.stackAlloc = Module['stackAlloc']; +Runtime.stackSave = Module['stackSave']; +Runtime.stackRestore = Module['stackRestore']; +Runtime.establishStackSpace = Module['establishStackSpace']; +Runtime.setTempRet0 = Module['setTempRet0']; +Runtime.getTempRet0 = Module['getTempRet0']; -Runtime.stackAlloc = asm['stackAlloc']; -Runtime.stackSave = asm['stackSave']; -Runtime.stackRestore = asm['stackRestore']; -Runtime.establishStackSpace = asm['establishStackSpace']; -Runtime.setTempRet0 = asm['setTempRet0']; -Runtime.getTempRet0 = asm['getTempRet0']; +// === Auto-generated postamble setup entry stuff === + +Module['asm'] = asm; -// === Auto-generated postamble setup entry stuff === + +/** + * @constructor + * @extends {Error} + */ function ExitStatus(status) { this.name = "ExitStatus"; this.message = "Program terminated with exit(" + status + ")"; @@ -24457,8 +20525,6 @@ dependenciesFulfilled = function runCaller() { } Module['callMain'] = Module.callMain = function callMain(args) { - assert(runDependencies == 0, 'cannot call main when async dependencies remain! (listen on __ATMAIN__)'); - assert(__ATPRERUN__.length == 0, 'cannot call main when preRun functions remain to be called'); args = args || []; @@ -24498,8 +20564,12 @@ Module['callMain'] = Module.callMain = function callMain(args) { Module['noExitRuntime'] = true; return; } else { - if (e && typeof e === 'object' && e.stack) Module.printErr('exception thrown: ' + [e, e.stack]); - throw e; + var toLog = e; + if (e && typeof e === 'object' && e.stack) { + toLog = [e, e.stack]; + } + Module.printErr('exception thrown: ' + toLog); + Module['quit'](1, e); } } finally { calledMain = true; @@ -24509,6 +20579,7 @@ Module['callMain'] = Module.callMain = function callMain(args) { +/** @type {function(Array=)} */ function run(args) { args = args || Module['arguments']; @@ -24518,6 +20589,7 @@ function run(args) { return; } + preRun(); if (runDependencies > 0) return; // a preRun added a dependency, run will be called later @@ -24527,7 +20599,7 @@ function run(args) { if (Module['calledRun']) return; // run may have just been called while the async setStatus time below was happening Module['calledRun'] = true; - if (ABORT) return; + if (ABORT) return; ensureInitRuntime(); @@ -24573,31 +20645,19 @@ function exit(status, implicit) { } if (ENVIRONMENT_IS_NODE) { - // Work around a node.js bug where stdout buffer is not flushed at process exit: - // Instead of process.exit() directly, wait for stdout flush event. - // See https://github.com/joyent/node/issues/1669 and https://github.com/kripken/emscripten/issues/2582 - // Workaround is based on https://github.com/RReverser/acorn/commit/50ab143cecc9ed71a2d66f78b4aec3bb2e9844f6 - process['stdout']['once']('drain', function () { - process['exit'](status); - }); - console.log(' '); // Make sure to print something to force the drain event to occur, in case the stdout buffer was empty. - // Work around another node bug where sometimes 'drain' is never fired - make another effort - // to emit the exit status, after a significant delay (if node hasn't fired drain by then, give up) - setTimeout(function() { - process['exit'](status); - }, 500); - } else - if (ENVIRONMENT_IS_SHELL && typeof quit === 'function') { - quit(status); + process['exit'](status); } - // if we reach here, we must throw an exception to halt the current execution - throw new ExitStatus(status); + Module['quit'](status, new ExitStatus(status)); } Module['exit'] = Module.exit = exit; var abortDecorators = []; function abort(what) { + if (Module['onAbort']) { + Module['onAbort'](what); + } + if (what !== undefined) { Module.print(what); Module.printErr(what); @@ -24645,15 +20705,14 @@ run(); - // {{MODULE_ADDITIONS}} module.exports = Module; Module.inspect = function() { return '[Module]'; }; -}).call(this,require('_process'),require("buffer").Buffer,"/build") -},{"_process":111,"buffer":49,"crypto":59,"fs":46,"path":107}],2:[function(require,module,exports){ +}).call(this,require('_process')) +},{"_process":124,"fs":47,"path":117}],2:[function(require,module,exports){ (function (process){ /* Copyright 2013 Daniel Wirtz @@ -34384,7 +30443,7 @@ Module.inspect = function() { return '[Module]'; }; }); }).call(this,require('_process')) -},{"_process":111,"bytebuffer":50,"fs":46,"long":100,"path":107}],3:[function(require,module,exports){ +},{"_process":124,"bytebuffer":50,"fs":47,"long":108,"path":117}],3:[function(require,module,exports){ var Internal = Internal || {}; Internal.protoText = function() { @@ -34517,7 +30576,7 @@ Entity.prototype.encode = function encode(data, enc, /* internal */ reporter) { return this._getEncoder(enc).encode(data, reporter); }; -},{"../asn1":4,"inherits":97,"vm":142}],6:[function(require,module,exports){ +},{"../asn1":4,"inherits":105,"vm":159}],6:[function(require,module,exports){ var inherits = require('inherits'); var Reporter = require('../base').Reporter; var Buffer = require('buffer').Buffer; @@ -34635,7 +30694,7 @@ EncoderBuffer.prototype.join = function join(out, offset) { return out; }; -},{"../base":7,"buffer":49,"inherits":97}],7:[function(require,module,exports){ +},{"../base":7,"buffer":49,"inherits":105}],7:[function(require,module,exports){ var base = exports; base.Reporter = require('./reporter').Reporter; @@ -35279,7 +31338,7 @@ Node.prototype._isPrintstr = function isPrintstr(str) { return /^[A-Za-z0-9 '\(\)\+,\-\.\/:=\?]*$/.test(str); }; -},{"../base":7,"minimalistic-assert":102}],9:[function(require,module,exports){ +},{"../base":7,"minimalistic-assert":110}],9:[function(require,module,exports){ var inherits = require('inherits'); function Reporter(options) { @@ -35402,7 +31461,7 @@ ReporterError.prototype.rethrow = function rethrow(msg) { return this; }; -},{"inherits":97}],10:[function(require,module,exports){ +},{"inherits":105}],10:[function(require,module,exports){ var constants = require('../constants'); exports.tagClass = { @@ -35778,7 +31837,7 @@ function derDecodeLen(buf, primitive, fail) { // Long form var num = len & 0x7f; - if (num >= 4) + if (num > 4) return buf.error('length octect is too long'); len = 0; @@ -35793,7 +31852,7 @@ function derDecodeLen(buf, primitive, fail) { return len; } -},{"../../asn1":4,"inherits":97}],13:[function(require,module,exports){ +},{"../../asn1":4,"inherits":105}],13:[function(require,module,exports){ var decoders = exports; decoders.der = require('./der'); @@ -35850,7 +31909,7 @@ PEMDecoder.prototype.decode = function decode(data, options) { return DERDecoder.prototype.decode.call(this, input, options); }; -},{"./der":12,"buffer":49,"inherits":97}],15:[function(require,module,exports){ +},{"./der":12,"buffer":49,"inherits":105}],15:[function(require,module,exports){ var inherits = require('inherits'); var Buffer = require('buffer').Buffer; @@ -36147,7 +32206,7 @@ function encodeTag(tag, primitive, cls, reporter) { return res; } -},{"../../asn1":4,"buffer":49,"inherits":97}],16:[function(require,module,exports){ +},{"../../asn1":4,"buffer":49,"inherits":105}],16:[function(require,module,exports){ var encoders = exports; encoders.der = require('./der'); @@ -36176,7 +32235,7 @@ PEMEncoder.prototype.encode = function encode(data, options) { return out.join('\n'); }; -},{"./der":15,"inherits":97}],18:[function(require,module,exports){ +},{"./der":15,"inherits":105}],18:[function(require,module,exports){ 'use strict' exports.byteLength = byteLength @@ -36212,22 +32271,22 @@ function placeHoldersCount (b64) { function byteLength (b64) { // base64 is 4/3 + up to two characters of the original data - return b64.length * 3 / 4 - placeHoldersCount(b64) + return (b64.length * 3 / 4) - placeHoldersCount(b64) } function toByteArray (b64) { - var i, j, l, tmp, placeHolders, arr + var i, l, tmp, placeHolders, arr var len = b64.length placeHolders = placeHoldersCount(b64) - arr = new Arr(len * 3 / 4 - placeHolders) + arr = new Arr((len * 3 / 4) - placeHolders) // if there are placeholders, only get up to the last complete 4 chars l = placeHolders > 0 ? len - 4 : len var L = 0 - for (i = 0, j = 0; i < l; i += 4, j += 3) { + for (i = 0; i < l; i += 4) { tmp = (revLookup[b64.charCodeAt(i)] << 18) | (revLookup[b64.charCodeAt(i + 1)] << 12) | (revLookup[b64.charCodeAt(i + 2)] << 6) | revLookup[b64.charCodeAt(i + 3)] arr[L++] = (tmp >> 16) & 0xFF arr[L++] = (tmp >> 8) & 0xFF @@ -36345,6 +32404,7 @@ function fromByteArray (uint8) { var Buffer; try { + // Obfuscate that we require Buffer, to reduce size Buffer = require('buf' + 'fer').Buffer; } catch (e) { } @@ -39582,7 +35642,7 @@ function fromByteArray (uint8) { }; Red.prototype.pow = function pow (a, num) { - if (num.isZero()) return new BN(1); + if (num.isZero()) return new BN(1).toRed(this); if (num.cmpn(1) === 0) return a.clone(); var windowSize = 4; @@ -39740,43 +35800,51 @@ Rand.prototype.generate = function generate(len) { return this._rand(len); }; -if (typeof window === 'object') { - if (window.crypto && window.crypto.getRandomValues) { +// Emulate crypto API using randy +Rand.prototype._rand = function _rand(n) { + if (this.rand.getBytes) + return this.rand.getBytes(n); + + var res = new Uint8Array(n); + for (var i = 0; i < res.length; i++) + res[i] = this.rand.getByte(); + return res; +}; + +if (typeof self === 'object') { + if (self.crypto && self.crypto.getRandomValues) { // Modern browsers Rand.prototype._rand = function _rand(n) { var arr = new Uint8Array(n); - window.crypto.getRandomValues(arr); + self.crypto.getRandomValues(arr); return arr; }; - } else if (window.msCrypto && window.msCrypto.getRandomValues) { + } else if (self.msCrypto && self.msCrypto.getRandomValues) { // IE Rand.prototype._rand = function _rand(n) { var arr = new Uint8Array(n); - window.msCrypto.getRandomValues(arr); + self.msCrypto.getRandomValues(arr); return arr; }; - } else { + + // Safari's WebWorkers do not have `crypto` + } else if (typeof window === 'object') { // Old junk Rand.prototype._rand = function() { throw new Error('Not implemented yet'); }; } } else { - // Node.js or Web worker + // Node.js or Web worker with no crypto support try { var crypto = require('crypto'); + if (typeof crypto.randomBytes !== 'function') + throw new Error('Not supported'); Rand.prototype._rand = function _rand(n) { return crypto.randomBytes(n); }; } catch (e) { - // Emulate crypto API using randy - Rand.prototype._rand = function _rand(n) { - var res = new Uint8Array(n); - for (var i = 0; i < res.length; i++) - res[i] = this.rand.getByte(); - return res; - }; } } @@ -40064,7 +36132,7 @@ function xorTest (a, b) { } }).call(this,require("buffer").Buffer) -},{"./aes":22,"./ghash":27,"buffer":49,"buffer-xor":48,"cipher-base":52,"inherits":97}],24:[function(require,module,exports){ +},{"./aes":22,"./ghash":27,"buffer":49,"buffer-xor":48,"cipher-base":52,"inherits":105}],24:[function(require,module,exports){ var ciphers = require('./encrypter') exports.createCipher = exports.Cipher = ciphers.createCipher exports.createCipheriv = exports.Cipheriv = ciphers.createCipheriv @@ -40218,7 +36286,7 @@ exports.createDecipher = createDecipher exports.createDecipheriv = createDecipheriv }).call(this,require("buffer").Buffer) -},{"./aes":22,"./authCipher":23,"./modes":28,"./modes/cbc":29,"./modes/cfb":30,"./modes/cfb1":31,"./modes/cfb8":32,"./modes/ctr":33,"./modes/ecb":34,"./modes/ofb":35,"./streamCipher":36,"buffer":49,"cipher-base":52,"evp_bytestokey":88,"inherits":97}],26:[function(require,module,exports){ +},{"./aes":22,"./authCipher":23,"./modes":28,"./modes/cbc":29,"./modes/cfb":30,"./modes/cfb1":31,"./modes/cfb8":32,"./modes/ctr":33,"./modes/ecb":34,"./modes/ofb":35,"./streamCipher":36,"buffer":49,"cipher-base":52,"evp_bytestokey":88,"inherits":105}],26:[function(require,module,exports){ (function (Buffer){ var aes = require('./aes') var Transform = require('cipher-base') @@ -40344,7 +36412,7 @@ exports.createCipheriv = createCipheriv exports.createCipher = createCipher }).call(this,require("buffer").Buffer) -},{"./aes":22,"./authCipher":23,"./modes":28,"./modes/cbc":29,"./modes/cfb":30,"./modes/cfb1":31,"./modes/cfb8":32,"./modes/ctr":33,"./modes/ecb":34,"./modes/ofb":35,"./streamCipher":36,"buffer":49,"cipher-base":52,"evp_bytestokey":88,"inherits":97}],27:[function(require,module,exports){ +},{"./aes":22,"./authCipher":23,"./modes":28,"./modes/cbc":29,"./modes/cfb":30,"./modes/cfb1":31,"./modes/cfb8":32,"./modes/ctr":33,"./modes/ecb":34,"./modes/ofb":35,"./streamCipher":36,"buffer":49,"cipher-base":52,"evp_bytestokey":88,"inherits":105}],27:[function(require,module,exports){ (function (Buffer){ var zeros = new Buffer(16) zeros.fill(0) @@ -40822,7 +36890,7 @@ StreamCipher.prototype._final = function () { } }).call(this,require("buffer").Buffer) -},{"./aes":22,"buffer":49,"cipher-base":52,"inherits":97}],37:[function(require,module,exports){ +},{"./aes":22,"buffer":49,"cipher-base":52,"inherits":105}],37:[function(require,module,exports){ var ebtk = require('evp_bytestokey') var aes = require('browserify-aes/browser') var DES = require('browserify-des') @@ -40944,7 +37012,7 @@ DES.prototype._final = function () { } }).call(this,require("buffer").Buffer) -},{"buffer":49,"cipher-base":52,"des.js":60,"inherits":97}],39:[function(require,module,exports){ +},{"buffer":49,"cipher-base":52,"des.js":61,"inherits":105}],39:[function(require,module,exports){ exports['des-ecb'] = { key: 8, iv: 0 @@ -41014,103 +37082,192 @@ function getr(priv) { } }).call(this,require("buffer").Buffer) -},{"bn.js":19,"buffer":49,"randombytes":118}],41:[function(require,module,exports){ -(function (Buffer){ -'use strict' -exports['RSA-SHA224'] = exports.sha224WithRSAEncryption = { - sign: 'rsa', - hash: 'sha224', - id: new Buffer('302d300d06096086480165030402040500041c', 'hex') -} -exports['RSA-SHA256'] = exports.sha256WithRSAEncryption = { - sign: 'rsa', - hash: 'sha256', - id: new Buffer('3031300d060960864801650304020105000420', 'hex') -} -exports['RSA-SHA384'] = exports.sha384WithRSAEncryption = { - sign: 'rsa', - hash: 'sha384', - id: new Buffer('3041300d060960864801650304020205000430', 'hex') -} -exports['RSA-SHA512'] = exports.sha512WithRSAEncryption = { - sign: 'rsa', - hash: 'sha512', - id: new Buffer('3051300d060960864801650304020305000440', 'hex') -} -exports['RSA-SHA1'] = { - sign: 'rsa', - hash: 'sha1', - id: new Buffer('3021300906052b0e03021a05000414', 'hex') -} -exports['ecdsa-with-SHA1'] = { - sign: 'ecdsa', - hash: 'sha1', - id: new Buffer('', 'hex') -} - -exports.DSA = exports['DSA-SHA1'] = exports['DSA-SHA'] = { - sign: 'dsa', - hash: 'sha1', - id: new Buffer('', 'hex') -} -exports['DSA-SHA224'] = exports['DSA-WITH-SHA224'] = { - sign: 'dsa', - hash: 'sha224', - id: new Buffer('', 'hex') -} -exports['DSA-SHA256'] = exports['DSA-WITH-SHA256'] = { - sign: 'dsa', - hash: 'sha256', - id: new Buffer('', 'hex') -} -exports['DSA-SHA384'] = exports['DSA-WITH-SHA384'] = { - sign: 'dsa', - hash: 'sha384', - id: new Buffer('', 'hex') -} -exports['DSA-SHA512'] = exports['DSA-WITH-SHA512'] = { - sign: 'dsa', - hash: 'sha512', - id: new Buffer('', 'hex') -} -exports['DSA-RIPEMD160'] = { - sign: 'dsa', - hash: 'rmd160', - id: new Buffer('', 'hex') -} -exports['RSA-RIPEMD160'] = exports.ripemd160WithRSA = { - sign: 'rsa', - hash: 'rmd160', - id: new Buffer('3021300906052b2403020105000414', 'hex') -} -exports['RSA-MD5'] = exports.md5WithRSAEncryption = { - sign: 'rsa', - hash: 'md5', - id: new Buffer('3020300c06082a864886f70d020505000410', 'hex') +},{"bn.js":19,"buffer":49,"randombytes":131}],41:[function(require,module,exports){ +module.exports = require('./browser/algorithms.json') + +},{"./browser/algorithms.json":42}],42:[function(require,module,exports){ +module.exports={ + "sha224WithRSAEncryption": { + "sign": "rsa", + "hash": "sha224", + "id": "302d300d06096086480165030402040500041c" + }, + "RSA-SHA224": { + "sign": "ecdsa/rsa", + "hash": "sha224", + "id": "302d300d06096086480165030402040500041c" + }, + "sha256WithRSAEncryption": { + "sign": "rsa", + "hash": "sha256", + "id": "3031300d060960864801650304020105000420" + }, + "RSA-SHA256": { + "sign": "ecdsa/rsa", + "hash": "sha256", + "id": "3031300d060960864801650304020105000420" + }, + "sha384WithRSAEncryption": { + "sign": "rsa", + "hash": "sha384", + "id": "3041300d060960864801650304020205000430" + }, + "RSA-SHA384": { + "sign": "ecdsa/rsa", + "hash": "sha384", + "id": "3041300d060960864801650304020205000430" + }, + "sha512WithRSAEncryption": { + "sign": "rsa", + "hash": "sha512", + "id": "3051300d060960864801650304020305000440" + }, + "RSA-SHA512": { + "sign": "ecdsa/rsa", + "hash": "sha512", + "id": "3051300d060960864801650304020305000440" + }, + "RSA-SHA1": { + "sign": "rsa", + "hash": "sha1", + "id": "3021300906052b0e03021a05000414" + }, + "ecdsa-with-SHA1": { + "sign": "ecdsa", + "hash": "sha1", + "id": "" + }, + "sha256": { + "sign": "ecdsa", + "hash": "sha256", + "id": "" + }, + "sha224": { + "sign": "ecdsa", + "hash": "sha224", + "id": "" + }, + "sha384": { + "sign": "ecdsa", + "hash": "sha384", + "id": "" + }, + "sha512": { + "sign": "ecdsa", + "hash": "sha512", + "id": "" + }, + "DSA-SHA": { + "sign": "dsa", + "hash": "sha1", + "id": "" + }, + "DSA-SHA1": { + "sign": "dsa", + "hash": "sha1", + "id": "" + }, + "DSA": { + "sign": "dsa", + "hash": "sha1", + "id": "" + }, + "DSA-WITH-SHA224": { + "sign": "dsa", + "hash": "sha224", + "id": "" + }, + "DSA-SHA224": { + "sign": "dsa", + "hash": "sha224", + "id": "" + }, + "DSA-WITH-SHA256": { + "sign": "dsa", + "hash": "sha256", + "id": "" + }, + "DSA-SHA256": { + "sign": "dsa", + "hash": "sha256", + "id": "" + }, + "DSA-WITH-SHA384": { + "sign": "dsa", + "hash": "sha384", + "id": "" + }, + "DSA-SHA384": { + "sign": "dsa", + "hash": "sha384", + "id": "" + }, + "DSA-WITH-SHA512": { + "sign": "dsa", + "hash": "sha512", + "id": "" + }, + "DSA-SHA512": { + "sign": "dsa", + "hash": "sha512", + "id": "" + }, + "DSA-RIPEMD160": { + "sign": "dsa", + "hash": "rmd160", + "id": "" + }, + "ripemd160WithRSA": { + "sign": "rsa", + "hash": "rmd160", + "id": "3021300906052b2403020105000414" + }, + "RSA-RIPEMD160": { + "sign": "rsa", + "hash": "rmd160", + "id": "3021300906052b2403020105000414" + }, + "md5WithRSAEncryption": { + "sign": "rsa", + "hash": "md5", + "id": "3020300c06082a864886f70d020505000410" + }, + "RSA-MD5": { + "sign": "rsa", + "hash": "md5", + "id": "3020300c06082a864886f70d020505000410" + } } -}).call(this,require("buffer").Buffer) -},{"buffer":49}],42:[function(require,module,exports){ +},{}],43:[function(require,module,exports){ +module.exports={ + "1.3.132.0.10": "secp256k1", + "1.3.132.0.33": "p224", + "1.2.840.10045.3.1.1": "p192", + "1.2.840.10045.3.1.7": "p256", + "1.3.132.0.34": "p384", + "1.3.132.0.35": "p521" +} + +},{}],44:[function(require,module,exports){ (function (Buffer){ -var _algos = require('./algos') var createHash = require('create-hash') +var stream = require('stream') var inherits = require('inherits') var sign = require('./sign') -var stream = require('stream') var verify = require('./verify') -var algos = {} -Object.keys(_algos).forEach(function (key) { - algos[key] = algos[key.toLowerCase()] = _algos[key] +var algorithms = require('./algorithms.json') +Object.keys(algorithms).forEach(function (key) { + algorithms[key].id = new Buffer(algorithms[key].id, 'hex') + algorithms[key.toLowerCase()] = algorithms[key] }) function Sign (algorithm) { stream.Writable.call(this) - var data = algos[algorithm] - if (!data) { - throw new Error('Unknown message digest') - } + var data = algorithms[algorithm] + if (!data) throw new Error('Unknown message digest') this._hashType = data.hash this._hash = createHash(data.hash) @@ -41125,9 +37282,7 @@ Sign.prototype._write = function _write (data, _, done) { } Sign.prototype.update = function update (data, enc) { - if (typeof data === 'string') { - data = new Buffer(data, enc) - } + if (typeof data === 'string') data = new Buffer(data, enc) this._hash.update(data) return this @@ -41136,7 +37291,7 @@ Sign.prototype.update = function update (data, enc) { Sign.prototype.sign = function signMethod (key, enc) { this.end() var hash = this._hash.digest() - var sig = sign(Buffer.concat([this._tag, hash]), key, this._hashType, this._signType) + var sig = sign(hash, key, this._hashType, this._signType, this._tag) return enc ? sig.toString(enc) : sig } @@ -41144,10 +37299,8 @@ Sign.prototype.sign = function signMethod (key, enc) { function Verify (algorithm) { stream.Writable.call(this) - var data = algos[algorithm] - if (!data) { - throw new Error('Unknown message digest') - } + var data = algorithms[algorithm] + if (!data) throw new Error('Unknown message digest') this._hash = createHash(data.hash) this._tag = data.id @@ -41157,28 +37310,22 @@ inherits(Verify, stream.Writable) Verify.prototype._write = function _write (data, _, done) { this._hash.update(data) - done() } Verify.prototype.update = function update (data, enc) { - if (typeof data === 'string') { - data = new Buffer(data, enc) - } + if (typeof data === 'string') data = new Buffer(data, enc) this._hash.update(data) return this } Verify.prototype.verify = function verifyMethod (key, sig, enc) { - if (typeof sig === 'string') { - sig = new Buffer(sig, enc) - } + if (typeof sig === 'string') sig = new Buffer(sig, enc) this.end() var hash = this._hash.digest() - - return verify(sig, Buffer.concat([this._tag, hash]), key, this._signType) + return verify(sig, hash, key, this._signType, this._tag) } function createSign (algorithm) { @@ -41197,57 +37344,35 @@ module.exports = { } }).call(this,require("buffer").Buffer) -},{"./algos":41,"./sign":44,"./verify":45,"buffer":49,"create-hash":55,"inherits":97,"stream":139}],43:[function(require,module,exports){ -'use strict' -exports['1.3.132.0.10'] = 'secp256k1' - -exports['1.3.132.0.33'] = 'p224' - -exports['1.2.840.10045.3.1.1'] = 'p192' - -exports['1.2.840.10045.3.1.7'] = 'p256' - -exports['1.3.132.0.34'] = 'p384' - -exports['1.3.132.0.35'] = 'p521' - -},{}],44:[function(require,module,exports){ +},{"./algorithms.json":42,"./sign":45,"./verify":46,"buffer":49,"create-hash":55,"inherits":105,"stream":156}],45:[function(require,module,exports){ (function (Buffer){ // much of this based on https://github.com/indutny/self-signed/blob/gh-pages/lib/rsa.js var createHmac = require('create-hmac') var crt = require('browserify-rsa') -var curves = require('./curves') -var elliptic = require('elliptic') -var parseKeys = require('parse-asn1') - +var EC = require('elliptic').ec var BN = require('bn.js') -var EC = elliptic.ec +var parseKeys = require('parse-asn1') +var curves = require('./curves.json') -function sign (hash, key, hashType, signType) { +function sign (hash, key, hashType, signType, tag) { var priv = parseKeys(key) if (priv.curve) { - if (signType !== 'ecdsa') throw new Error('wrong private key type') - + // rsa keys can be interpreted as ecdsa ones in openssl + if (signType !== 'ecdsa' && signType !== 'ecdsa/rsa') throw new Error('wrong private key type') return ecSign(hash, priv) } else if (priv.type === 'dsa') { - if (signType !== 'dsa') { - throw new Error('wrong private key type') - } + if (signType !== 'dsa') throw new Error('wrong private key type') return dsaSign(hash, priv, hashType) } else { - if (signType !== 'rsa') throw new Error('wrong private key type') + if (signType !== 'rsa' && signType !== 'ecdsa/rsa') throw new Error('wrong private key type') } - + hash = Buffer.concat([tag, hash]) var len = priv.modulus.byteLength() var pad = [ 0, 1 ] - while (hash.length + pad.length + 1 < len) { - pad.push(0xff) - } + while (hash.length + pad.length + 1 < len) pad.push(0xff) pad.push(0x00) var i = -1 - while (++i < hash.length) { - pad.push(hash[i]) - } + while (++i < hash.length) pad.push(hash[i]) var out = crt(pad, priv) return out @@ -41258,9 +37383,7 @@ function ecSign (hash, priv) { if (!curveId) throw new Error('unknown curve ' + priv.curve.join('.')) var curve = new EC(curveId) - var key = curve.genKeyPair() - - key._importPrivate(priv.privateKey) + var key = curve.keyFromPrivate(priv.privateKey) var out = key.sign(hash) return new Buffer(out.toDER()) @@ -41280,7 +37403,7 @@ function dsaSign (hash, priv, algo) { k = makeKey(q, kv, algo) r = makeR(g, k, p, q) s = k.invm(q).imul(H.add(x.mul(r))).mod(q) - if (!s.cmpn(0)) { + if (s.cmpn(0) === 0) { s = false r = new BN(0) } @@ -41293,13 +37416,8 @@ function toDER (r, s) { s = s.toArray() // Pad values - if (r[0] & 0x80) { - r = [ 0 ].concat(r) - } - // Pad values - if (s[0] & 0x80) { - s = [0].concat(s) - } + if (r[0] & 0x80) r = [ 0 ].concat(r) + if (s[0] & 0x80) s = [ 0 ].concat(s) var total = r.length + s.length + 4 var res = [ 0x30, total, 0x02, r.length ] @@ -41312,7 +37430,7 @@ function getKey (x, q, hash, algo) { if (x.length < q.byteLength()) { var zeros = new Buffer(q.byteLength() - x.length) zeros.fill(0) - x = Buffer.concat([zeros, x]) + x = Buffer.concat([ zeros, x ]) } var hlen = hash.length var hbits = bits2octets(hash, q) @@ -41320,36 +37438,17 @@ function getKey (x, q, hash, algo) { v.fill(1) var k = new Buffer(hlen) k.fill(0) - k = createHmac(algo, k) - .update(v) - .update(new Buffer([0])) - .update(x) - .update(hbits) - .digest() - v = createHmac(algo, k) - .update(v) - .digest() - k = createHmac(algo, k) - .update(v) - .update(new Buffer([1])) - .update(x) - .update(hbits) - .digest() - v = createHmac(algo, k) - .update(v) - .digest() - return { - k: k, - v: v - } + k = createHmac(algo, k).update(v).update(new Buffer([ 0 ])).update(x).update(hbits).digest() + v = createHmac(algo, k).update(v).digest() + k = createHmac(algo, k).update(v).update(new Buffer([ 1 ])).update(x).update(hbits).digest() + v = createHmac(algo, k).update(v).digest() + return { k: k, v: v } } function bits2int (obits, q) { var bits = new BN(obits) var shift = (obits.length << 3) - q.bitLength() - if (shift > 0) { - bits.ishrn(shift) - } + if (shift > 0) bits.ishrn(shift) return bits } @@ -41360,32 +37459,26 @@ function bits2octets (bits, q) { if (out.length < q.byteLength()) { var zeros = new Buffer(q.byteLength() - out.length) zeros.fill(0) - out = Buffer.concat([zeros, out]) + out = Buffer.concat([ zeros, out ]) } return out } function makeKey (q, kv, algo) { - var t, k + var t + var k do { - t = new Buffer('') + t = new Buffer(0) while (t.length * 8 < q.bitLength()) { - kv.v = createHmac(algo, kv.k) - .update(kv.v) - .digest() - t = Buffer.concat([t, kv.v]) + kv.v = createHmac(algo, kv.k).update(kv.v).digest() + t = Buffer.concat([ t, kv.v ]) } k = bits2int(t, q) - kv.k = createHmac(algo, kv.k) - .update(kv.v) - .update(new Buffer([0])) - .digest() - kv.v = createHmac(algo, kv.k) - .update(kv.v) - .digest() + kv.k = createHmac(algo, kv.k).update(kv.v).update(new Buffer([ 0 ])).digest() + kv.v = createHmac(algo, kv.k).update(kv.v).digest() } while (k.cmp(q) !== -1) return k @@ -41400,33 +37493,27 @@ module.exports.getKey = getKey module.exports.makeKey = makeKey }).call(this,require("buffer").Buffer) -},{"./curves":43,"bn.js":19,"browserify-rsa":40,"buffer":49,"create-hmac":58,"elliptic":70,"parse-asn1":106}],45:[function(require,module,exports){ +},{"./curves.json":43,"bn.js":19,"browserify-rsa":40,"buffer":49,"create-hmac":58,"elliptic":71,"parse-asn1":116}],46:[function(require,module,exports){ (function (Buffer){ // much of this based on https://github.com/indutny/self-signed/blob/gh-pages/lib/rsa.js -var curves = require('./curves') -var elliptic = require('elliptic') -var parseKeys = require('parse-asn1') - var BN = require('bn.js') -var EC = elliptic.ec +var EC = require('elliptic').ec +var parseKeys = require('parse-asn1') +var curves = require('./curves.json') -function verify (sig, hash, key, signType) { +function verify (sig, hash, key, signType, tag) { var pub = parseKeys(key) if (pub.type === 'ec') { - if (signType !== 'ecdsa') { - throw new Error('wrong public key type') - } + // rsa keys can be interpreted as ecdsa ones in openssl + if (signType !== 'ecdsa' && signType !== 'ecdsa/rsa') throw new Error('wrong public key type') return ecVerify(sig, hash, pub) } else if (pub.type === 'dsa') { - if (signType !== 'dsa') { - throw new Error('wrong public key type') - } + if (signType !== 'dsa') throw new Error('wrong public key type') return dsaVerify(sig, hash, pub) } else { - if (signType !== 'rsa') { - throw new Error('wrong public key type') - } + if (signType !== 'rsa' && signType !== 'ecdsa/rsa') throw new Error('wrong public key type') } + hash = Buffer.concat([tag, hash]) var len = pub.modulus.byteLength() var pad = [ 1 ] var padNum = 0 @@ -41444,21 +37531,13 @@ function verify (sig, hash, key, signType) { sig = new BN(sig).toRed(red) sig = sig.redPow(new BN(pub.publicExponent)) - sig = new Buffer(sig.fromRed().toArray()) - var out = 0 - if (padNum < 8) { - out = 1 - } + var out = padNum < 8 ? 1 : 0 len = Math.min(sig.length, pad.length) - if (sig.length !== pad.length) { - out = 1 - } + if (sig.length !== pad.length) out = 1 i = -1 - while (++i < len) { - out |= (sig[i] ^ pad[i]) - } + while (++i < len) out |= sig[i] ^ pad[i] return out === 0 } @@ -41487,141 +37566,23 @@ function dsaVerify (sig, hash, pub) { var v = g.toRed(montp) .redPow(new BN(hash).mul(w).mod(q)) .fromRed() - .mul( - y.toRed(montp) - .redPow(r.mul(w).mod(q)) - .fromRed() - ).mod(p).mod(q) - return !v.cmp(r) + .mul(y.toRed(montp).redPow(r.mul(w).mod(q)).fromRed()) + .mod(p) + .mod(q) + return v.cmp(r) === 0 } function checkValue (b, q) { - if (b.cmpn(0) <= 0) { - throw new Error('invalid sig') - } - if (b.cmp(q) >= q) { - throw new Error('invalid sig') - } + if (b.cmpn(0) <= 0) throw new Error('invalid sig') + if (b.cmp(q) >= q) throw new Error('invalid sig') } module.exports = verify }).call(this,require("buffer").Buffer) -},{"./curves":43,"bn.js":19,"buffer":49,"elliptic":70,"parse-asn1":106}],46:[function(require,module,exports){ +},{"./curves.json":43,"bn.js":19,"buffer":49,"elliptic":71,"parse-asn1":116}],47:[function(require,module,exports){ arguments[4][21][0].apply(exports,arguments) -},{"dup":21}],47:[function(require,module,exports){ -(function (global){ -'use strict'; - -var buffer = require('buffer'); -var Buffer = buffer.Buffer; -var SlowBuffer = buffer.SlowBuffer; -var MAX_LEN = buffer.kMaxLength || 2147483647; -exports.alloc = function alloc(size, fill, encoding) { - if (typeof Buffer.alloc === 'function') { - return Buffer.alloc(size, fill, encoding); - } - if (typeof encoding === 'number') { - throw new TypeError('encoding must not be number'); - } - if (typeof size !== 'number') { - throw new TypeError('size must be a number'); - } - if (size > MAX_LEN) { - throw new RangeError('size is too large'); - } - var enc = encoding; - var _fill = fill; - if (_fill === undefined) { - enc = undefined; - _fill = 0; - } - var buf = new Buffer(size); - if (typeof _fill === 'string') { - var fillBuf = new Buffer(_fill, enc); - var flen = fillBuf.length; - var i = -1; - while (++i < size) { - buf[i] = fillBuf[i % flen]; - } - } else { - buf.fill(_fill); - } - return buf; -} -exports.allocUnsafe = function allocUnsafe(size) { - if (typeof Buffer.allocUnsafe === 'function') { - return Buffer.allocUnsafe(size); - } - if (typeof size !== 'number') { - throw new TypeError('size must be a number'); - } - if (size > MAX_LEN) { - throw new RangeError('size is too large'); - } - return new Buffer(size); -} -exports.from = function from(value, encodingOrOffset, length) { - if (typeof Buffer.from === 'function' && (!global.Uint8Array || Uint8Array.from !== Buffer.from)) { - return Buffer.from(value, encodingOrOffset, length); - } - if (typeof value === 'number') { - throw new TypeError('"value" argument must not be a number'); - } - if (typeof value === 'string') { - return new Buffer(value, encodingOrOffset); - } - if (typeof ArrayBuffer !== 'undefined' && value instanceof ArrayBuffer) { - var offset = encodingOrOffset; - if (arguments.length === 1) { - return new Buffer(value); - } - if (typeof offset === 'undefined') { - offset = 0; - } - var len = length; - if (typeof len === 'undefined') { - len = value.byteLength - offset; - } - if (offset >= value.byteLength) { - throw new RangeError('\'offset\' is out of bounds'); - } - if (len > value.byteLength - offset) { - throw new RangeError('\'length\' is out of bounds'); - } - return new Buffer(value.slice(offset, offset + len)); - } - if (Buffer.isBuffer(value)) { - var out = new Buffer(value.length); - value.copy(out, 0, 0, value.length); - return out; - } - if (value) { - if (Array.isArray(value) || (typeof ArrayBuffer !== 'undefined' && value.buffer instanceof ArrayBuffer) || 'length' in value) { - return new Buffer(value); - } - if (value.type === 'Buffer' && Array.isArray(value.data)) { - return new Buffer(value.data); - } - } - - throw new TypeError('First argument must be a string, Buffer, ' + 'ArrayBuffer, Array, or array-like object.'); -} -exports.allocUnsafeSlow = function allocUnsafeSlow(size) { - if (typeof Buffer.allocUnsafeSlow === 'function') { - return Buffer.allocUnsafeSlow(size); - } - if (typeof size !== 'number') { - throw new TypeError('size must be a number'); - } - if (size >= MAX_LEN) { - throw new RangeError('size is too large'); - } - return new SlowBuffer(size); -} - -}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"buffer":49}],48:[function(require,module,exports){ +},{"dup":21}],48:[function(require,module,exports){ (function (Buffer){ module.exports = function xor (a, b) { var length = Math.min(a.length, b.length) @@ -43428,7 +39389,7 @@ function isnan (val) { } }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"base64-js":18,"ieee754":95,"isarray":99}],50:[function(require,module,exports){ +},{"base64-js":18,"ieee754":103,"isarray":107}],50:[function(require,module,exports){ /* Copyright 2013-2014 Daniel Wirtz @@ -47805,12 +43766,11 @@ function isnan (val) { }); },{}],52:[function(require,module,exports){ -(function (Buffer){ +var Buffer = require('safe-buffer').Buffer var Transform = require('stream').Transform -var inherits = require('inherits') var StringDecoder = require('string_decoder').StringDecoder -module.exports = CipherBase -inherits(CipherBase, Transform) +var inherits = require('inherits') + function CipherBase (hashMode) { Transform.call(this) this.hashMode = typeof hashMode === 'string' @@ -47819,25 +43779,31 @@ function CipherBase (hashMode) { } else { this.final = this._finalOrDigest } + if (this._final) { + this.__final = this._final + this._final = null + } this._decoder = null this._encoding = null } +inherits(CipherBase, Transform) + CipherBase.prototype.update = function (data, inputEnc, outputEnc) { if (typeof data === 'string') { - data = new Buffer(data, inputEnc) + data = Buffer.from(data, inputEnc) } + var outData = this._update(data) - if (this.hashMode) { - return this - } + if (this.hashMode) return this + if (outputEnc) { outData = this._toString(outData, outputEnc) } + return outData } CipherBase.prototype.setAutoPadding = function () {} - CipherBase.prototype.getAuthTag = function () { throw new Error('trying to get auth tag in unsupported state') } @@ -47867,15 +43833,15 @@ CipherBase.prototype._transform = function (data, _, next) { CipherBase.prototype._flush = function (done) { var err try { - this.push(this._final()) + this.push(this.__final()) } catch (e) { err = e - } finally { - done(err) } + + done(err) } CipherBase.prototype._finalOrDigest = function (outputEnc) { - var outData = this._final() || new Buffer('') + var outData = this.__final() || Buffer.alloc(0) if (outputEnc) { outData = this._toString(outData, outputEnc, true) } @@ -47887,18 +43853,20 @@ CipherBase.prototype._toString = function (value, enc, fin) { this._decoder = new StringDecoder(enc) this._encoding = enc } - if (this._encoding !== enc) { - throw new Error('can\'t switch encodings') - } + + if (this._encoding !== enc) throw new Error('can\'t switch encodings') + var out = this._decoder.write(value) if (fin) { out += this._decoder.end() } + return out } -}).call(this,require("buffer").Buffer) -},{"buffer":49,"inherits":97,"stream":139,"string_decoder":140}],53:[function(require,module,exports){ +module.exports = CipherBase + +},{"inherits":105,"safe-buffer":147,"stream":156,"string_decoder":157}],53:[function(require,module,exports){ (function (Buffer){ // Copyright Joyent, Inc. and other Node contributors. // @@ -48009,7 +43977,7 @@ function objectToString(o) { } }).call(this,{"isBuffer":require("../../is-buffer/index.js")}) -},{"../../is-buffer/index.js":98}],54:[function(require,module,exports){ +},{"../../is-buffer/index.js":106}],54:[function(require,module,exports){ (function (Buffer){ var elliptic = require('elliptic'); var BN = require('bn.js'); @@ -48135,17 +44103,17 @@ function formatReturnValue(bn, enc, len) { } }).call(this,require("buffer").Buffer) -},{"bn.js":19,"buffer":49,"elliptic":70}],55:[function(require,module,exports){ +},{"bn.js":19,"buffer":49,"elliptic":71}],55:[function(require,module,exports){ (function (Buffer){ -'use strict'; +'use strict' var inherits = require('inherits') var md5 = require('./md5') -var rmd160 = require('ripemd160') +var RIPEMD160 = require('ripemd160') var sha = require('sha.js') var Base = require('cipher-base') -function HashNoConstructor(hash) { +function HashNoConstructor (hash) { Base.call(this, 'digest') this._hash = hash @@ -48166,7 +44134,7 @@ HashNoConstructor.prototype._final = function () { return r } -function Hash(hash) { +function Hash (hash) { Base.call(this, 'digest') this._hash = hash @@ -48184,52 +44152,49 @@ Hash.prototype._final = function () { module.exports = function createHash (alg) { alg = alg.toLowerCase() - if ('md5' === alg) return new HashNoConstructor(md5) - if ('rmd160' === alg || 'ripemd160' === alg) return new HashNoConstructor(rmd160) + if (alg === 'md5') return new HashNoConstructor(md5) + if (alg === 'rmd160' || alg === 'ripemd160') return new Hash(new RIPEMD160()) return new Hash(sha(alg)) } }).call(this,require("buffer").Buffer) -},{"./md5":57,"buffer":49,"cipher-base":52,"inherits":97,"ripemd160":130,"sha.js":132}],56:[function(require,module,exports){ +},{"./md5":57,"buffer":49,"cipher-base":52,"inherits":105,"ripemd160":146,"sha.js":149}],56:[function(require,module,exports){ (function (Buffer){ -'use strict'; -var intSize = 4; -var zeroBuffer = new Buffer(intSize); zeroBuffer.fill(0); -var chrsz = 8; +'use strict' +var intSize = 4 +var zeroBuffer = new Buffer(intSize) +zeroBuffer.fill(0) + +var charSize = 8 +var hashSize = 16 -function toArray(buf, bigEndian) { +function toArray (buf) { if ((buf.length % intSize) !== 0) { - var len = buf.length + (intSize - (buf.length % intSize)); - buf = Buffer.concat([buf, zeroBuffer], len); + var len = buf.length + (intSize - (buf.length % intSize)) + buf = Buffer.concat([buf, zeroBuffer], len) } - var arr = []; - var fn = bigEndian ? buf.readInt32BE : buf.readInt32LE; - for (var i = 0; i < buf.length; i += intSize) { - arr.push(fn.call(buf, i)); + var arr = new Array(buf.length >>> 2) + for (var i = 0, j = 0; i < buf.length; i += intSize, j++) { + arr[j] = buf.readInt32LE(i) } - return arr; + + return arr } -function toBuffer(arr, size, bigEndian) { - var buf = new Buffer(size); - var fn = bigEndian ? buf.writeInt32BE : buf.writeInt32LE; +module.exports = function hash (buf, fn) { + var arr = fn(toArray(buf), buf.length * charSize) + buf = new Buffer(hashSize) for (var i = 0; i < arr.length; i++) { - fn.call(buf, arr[i], i * 4, true); + buf.writeInt32LE(arr[i], i << 2, true) } - return buf; + return buf } -function hash(buf, fn, hashSize, bigEndian) { - if (!Buffer.isBuffer(buf)) buf = new Buffer(buf); - var arr = fn(toArray(buf, bigEndian), buf.length * chrsz); - return toBuffer(arr, hashSize, bigEndian); -} -exports.hash = hash; }).call(this,require("buffer").Buffer) },{"buffer":49}],57:[function(require,module,exports){ -'use strict'; +'use strict' /* * A JavaScript implementation of the RSA Data Security, Inc. MD5 Message * Digest Algorithm, as defined in RFC 1321. @@ -48239,232 +44204,270 @@ exports.hash = hash; * See http://pajhome.org.uk/crypt/md5 for more info. */ -var helpers = require('./helpers'); +var makeHash = require('./make-hash') /* * Calculate the MD5 of an array of little-endian words, and a bit length */ -function core_md5(x, len) -{ +function core_md5 (x, len) { /* append padding */ - x[len >> 5] |= 0x80 << ((len) % 32); - x[(((len + 64) >>> 9) << 4) + 14] = len; - - var a = 1732584193; - var b = -271733879; - var c = -1732584194; - var d = 271733878; - - for(var i = 0; i < x.length; i += 16) - { - var olda = a; - var oldb = b; - var oldc = c; - var oldd = d; - - a = md5_ff(a, b, c, d, x[i+ 0], 7 , -680876936); - d = md5_ff(d, a, b, c, x[i+ 1], 12, -389564586); - c = md5_ff(c, d, a, b, x[i+ 2], 17, 606105819); - b = md5_ff(b, c, d, a, x[i+ 3], 22, -1044525330); - a = md5_ff(a, b, c, d, x[i+ 4], 7 , -176418897); - d = md5_ff(d, a, b, c, x[i+ 5], 12, 1200080426); - c = md5_ff(c, d, a, b, x[i+ 6], 17, -1473231341); - b = md5_ff(b, c, d, a, x[i+ 7], 22, -45705983); - a = md5_ff(a, b, c, d, x[i+ 8], 7 , 1770035416); - d = md5_ff(d, a, b, c, x[i+ 9], 12, -1958414417); - c = md5_ff(c, d, a, b, x[i+10], 17, -42063); - b = md5_ff(b, c, d, a, x[i+11], 22, -1990404162); - a = md5_ff(a, b, c, d, x[i+12], 7 , 1804603682); - d = md5_ff(d, a, b, c, x[i+13], 12, -40341101); - c = md5_ff(c, d, a, b, x[i+14], 17, -1502002290); - b = md5_ff(b, c, d, a, x[i+15], 22, 1236535329); - - a = md5_gg(a, b, c, d, x[i+ 1], 5 , -165796510); - d = md5_gg(d, a, b, c, x[i+ 6], 9 , -1069501632); - c = md5_gg(c, d, a, b, x[i+11], 14, 643717713); - b = md5_gg(b, c, d, a, x[i+ 0], 20, -373897302); - a = md5_gg(a, b, c, d, x[i+ 5], 5 , -701558691); - d = md5_gg(d, a, b, c, x[i+10], 9 , 38016083); - c = md5_gg(c, d, a, b, x[i+15], 14, -660478335); - b = md5_gg(b, c, d, a, x[i+ 4], 20, -405537848); - a = md5_gg(a, b, c, d, x[i+ 9], 5 , 568446438); - d = md5_gg(d, a, b, c, x[i+14], 9 , -1019803690); - c = md5_gg(c, d, a, b, x[i+ 3], 14, -187363961); - b = md5_gg(b, c, d, a, x[i+ 8], 20, 1163531501); - a = md5_gg(a, b, c, d, x[i+13], 5 , -1444681467); - d = md5_gg(d, a, b, c, x[i+ 2], 9 , -51403784); - c = md5_gg(c, d, a, b, x[i+ 7], 14, 1735328473); - b = md5_gg(b, c, d, a, x[i+12], 20, -1926607734); - - a = md5_hh(a, b, c, d, x[i+ 5], 4 , -378558); - d = md5_hh(d, a, b, c, x[i+ 8], 11, -2022574463); - c = md5_hh(c, d, a, b, x[i+11], 16, 1839030562); - b = md5_hh(b, c, d, a, x[i+14], 23, -35309556); - a = md5_hh(a, b, c, d, x[i+ 1], 4 , -1530992060); - d = md5_hh(d, a, b, c, x[i+ 4], 11, 1272893353); - c = md5_hh(c, d, a, b, x[i+ 7], 16, -155497632); - b = md5_hh(b, c, d, a, x[i+10], 23, -1094730640); - a = md5_hh(a, b, c, d, x[i+13], 4 , 681279174); - d = md5_hh(d, a, b, c, x[i+ 0], 11, -358537222); - c = md5_hh(c, d, a, b, x[i+ 3], 16, -722521979); - b = md5_hh(b, c, d, a, x[i+ 6], 23, 76029189); - a = md5_hh(a, b, c, d, x[i+ 9], 4 , -640364487); - d = md5_hh(d, a, b, c, x[i+12], 11, -421815835); - c = md5_hh(c, d, a, b, x[i+15], 16, 530742520); - b = md5_hh(b, c, d, a, x[i+ 2], 23, -995338651); - - a = md5_ii(a, b, c, d, x[i+ 0], 6 , -198630844); - d = md5_ii(d, a, b, c, x[i+ 7], 10, 1126891415); - c = md5_ii(c, d, a, b, x[i+14], 15, -1416354905); - b = md5_ii(b, c, d, a, x[i+ 5], 21, -57434055); - a = md5_ii(a, b, c, d, x[i+12], 6 , 1700485571); - d = md5_ii(d, a, b, c, x[i+ 3], 10, -1894986606); - c = md5_ii(c, d, a, b, x[i+10], 15, -1051523); - b = md5_ii(b, c, d, a, x[i+ 1], 21, -2054922799); - a = md5_ii(a, b, c, d, x[i+ 8], 6 , 1873313359); - d = md5_ii(d, a, b, c, x[i+15], 10, -30611744); - c = md5_ii(c, d, a, b, x[i+ 6], 15, -1560198380); - b = md5_ii(b, c, d, a, x[i+13], 21, 1309151649); - a = md5_ii(a, b, c, d, x[i+ 4], 6 , -145523070); - d = md5_ii(d, a, b, c, x[i+11], 10, -1120210379); - c = md5_ii(c, d, a, b, x[i+ 2], 15, 718787259); - b = md5_ii(b, c, d, a, x[i+ 9], 21, -343485551); - - a = safe_add(a, olda); - b = safe_add(b, oldb); - c = safe_add(c, oldc); - d = safe_add(d, oldd); - } - return Array(a, b, c, d); - + x[len >> 5] |= 0x80 << ((len) % 32) + x[(((len + 64) >>> 9) << 4) + 14] = len + + var a = 1732584193 + var b = -271733879 + var c = -1732584194 + var d = 271733878 + + for (var i = 0; i < x.length; i += 16) { + var olda = a + var oldb = b + var oldc = c + var oldd = d + + a = md5_ff(a, b, c, d, x[i + 0], 7, -680876936) + d = md5_ff(d, a, b, c, x[i + 1], 12, -389564586) + c = md5_ff(c, d, a, b, x[i + 2], 17, 606105819) + b = md5_ff(b, c, d, a, x[i + 3], 22, -1044525330) + a = md5_ff(a, b, c, d, x[i + 4], 7, -176418897) + d = md5_ff(d, a, b, c, x[i + 5], 12, 1200080426) + c = md5_ff(c, d, a, b, x[i + 6], 17, -1473231341) + b = md5_ff(b, c, d, a, x[i + 7], 22, -45705983) + a = md5_ff(a, b, c, d, x[i + 8], 7, 1770035416) + d = md5_ff(d, a, b, c, x[i + 9], 12, -1958414417) + c = md5_ff(c, d, a, b, x[i + 10], 17, -42063) + b = md5_ff(b, c, d, a, x[i + 11], 22, -1990404162) + a = md5_ff(a, b, c, d, x[i + 12], 7, 1804603682) + d = md5_ff(d, a, b, c, x[i + 13], 12, -40341101) + c = md5_ff(c, d, a, b, x[i + 14], 17, -1502002290) + b = md5_ff(b, c, d, a, x[i + 15], 22, 1236535329) + + a = md5_gg(a, b, c, d, x[i + 1], 5, -165796510) + d = md5_gg(d, a, b, c, x[i + 6], 9, -1069501632) + c = md5_gg(c, d, a, b, x[i + 11], 14, 643717713) + b = md5_gg(b, c, d, a, x[i + 0], 20, -373897302) + a = md5_gg(a, b, c, d, x[i + 5], 5, -701558691) + d = md5_gg(d, a, b, c, x[i + 10], 9, 38016083) + c = md5_gg(c, d, a, b, x[i + 15], 14, -660478335) + b = md5_gg(b, c, d, a, x[i + 4], 20, -405537848) + a = md5_gg(a, b, c, d, x[i + 9], 5, 568446438) + d = md5_gg(d, a, b, c, x[i + 14], 9, -1019803690) + c = md5_gg(c, d, a, b, x[i + 3], 14, -187363961) + b = md5_gg(b, c, d, a, x[i + 8], 20, 1163531501) + a = md5_gg(a, b, c, d, x[i + 13], 5, -1444681467) + d = md5_gg(d, a, b, c, x[i + 2], 9, -51403784) + c = md5_gg(c, d, a, b, x[i + 7], 14, 1735328473) + b = md5_gg(b, c, d, a, x[i + 12], 20, -1926607734) + + a = md5_hh(a, b, c, d, x[i + 5], 4, -378558) + d = md5_hh(d, a, b, c, x[i + 8], 11, -2022574463) + c = md5_hh(c, d, a, b, x[i + 11], 16, 1839030562) + b = md5_hh(b, c, d, a, x[i + 14], 23, -35309556) + a = md5_hh(a, b, c, d, x[i + 1], 4, -1530992060) + d = md5_hh(d, a, b, c, x[i + 4], 11, 1272893353) + c = md5_hh(c, d, a, b, x[i + 7], 16, -155497632) + b = md5_hh(b, c, d, a, x[i + 10], 23, -1094730640) + a = md5_hh(a, b, c, d, x[i + 13], 4, 681279174) + d = md5_hh(d, a, b, c, x[i + 0], 11, -358537222) + c = md5_hh(c, d, a, b, x[i + 3], 16, -722521979) + b = md5_hh(b, c, d, a, x[i + 6], 23, 76029189) + a = md5_hh(a, b, c, d, x[i + 9], 4, -640364487) + d = md5_hh(d, a, b, c, x[i + 12], 11, -421815835) + c = md5_hh(c, d, a, b, x[i + 15], 16, 530742520) + b = md5_hh(b, c, d, a, x[i + 2], 23, -995338651) + + a = md5_ii(a, b, c, d, x[i + 0], 6, -198630844) + d = md5_ii(d, a, b, c, x[i + 7], 10, 1126891415) + c = md5_ii(c, d, a, b, x[i + 14], 15, -1416354905) + b = md5_ii(b, c, d, a, x[i + 5], 21, -57434055) + a = md5_ii(a, b, c, d, x[i + 12], 6, 1700485571) + d = md5_ii(d, a, b, c, x[i + 3], 10, -1894986606) + c = md5_ii(c, d, a, b, x[i + 10], 15, -1051523) + b = md5_ii(b, c, d, a, x[i + 1], 21, -2054922799) + a = md5_ii(a, b, c, d, x[i + 8], 6, 1873313359) + d = md5_ii(d, a, b, c, x[i + 15], 10, -30611744) + c = md5_ii(c, d, a, b, x[i + 6], 15, -1560198380) + b = md5_ii(b, c, d, a, x[i + 13], 21, 1309151649) + a = md5_ii(a, b, c, d, x[i + 4], 6, -145523070) + d = md5_ii(d, a, b, c, x[i + 11], 10, -1120210379) + c = md5_ii(c, d, a, b, x[i + 2], 15, 718787259) + b = md5_ii(b, c, d, a, x[i + 9], 21, -343485551) + + a = safe_add(a, olda) + b = safe_add(b, oldb) + c = safe_add(c, oldc) + d = safe_add(d, oldd) + } + + return [a, b, c, d] } /* * These functions implement the four basic operations the algorithm uses. */ -function md5_cmn(q, a, b, x, s, t) -{ - return safe_add(bit_rol(safe_add(safe_add(a, q), safe_add(x, t)), s),b); +function md5_cmn (q, a, b, x, s, t) { + return safe_add(bit_rol(safe_add(safe_add(a, q), safe_add(x, t)), s), b) } -function md5_ff(a, b, c, d, x, s, t) -{ - return md5_cmn((b & c) | ((~b) & d), a, b, x, s, t); + +function md5_ff (a, b, c, d, x, s, t) { + return md5_cmn((b & c) | ((~b) & d), a, b, x, s, t) } -function md5_gg(a, b, c, d, x, s, t) -{ - return md5_cmn((b & d) | (c & (~d)), a, b, x, s, t); + +function md5_gg (a, b, c, d, x, s, t) { + return md5_cmn((b & d) | (c & (~d)), a, b, x, s, t) } -function md5_hh(a, b, c, d, x, s, t) -{ - return md5_cmn(b ^ c ^ d, a, b, x, s, t); + +function md5_hh (a, b, c, d, x, s, t) { + return md5_cmn(b ^ c ^ d, a, b, x, s, t) } -function md5_ii(a, b, c, d, x, s, t) -{ - return md5_cmn(c ^ (b | (~d)), a, b, x, s, t); + +function md5_ii (a, b, c, d, x, s, t) { + return md5_cmn(c ^ (b | (~d)), a, b, x, s, t) } /* * Add integers, wrapping at 2^32. This uses 16-bit operations internally * to work around bugs in some JS interpreters. */ -function safe_add(x, y) -{ - var lsw = (x & 0xFFFF) + (y & 0xFFFF); - var msw = (x >> 16) + (y >> 16) + (lsw >> 16); - return (msw << 16) | (lsw & 0xFFFF); +function safe_add (x, y) { + var lsw = (x & 0xFFFF) + (y & 0xFFFF) + var msw = (x >> 16) + (y >> 16) + (lsw >> 16) + return (msw << 16) | (lsw & 0xFFFF) } /* * Bitwise rotate a 32-bit number to the left. */ -function bit_rol(num, cnt) -{ - return (num << cnt) | (num >>> (32 - cnt)); +function bit_rol (num, cnt) { + return (num << cnt) | (num >>> (32 - cnt)) } -module.exports = function md5(buf) { - return helpers.hash(buf, core_md5, 16); -}; -},{"./helpers":56}],58:[function(require,module,exports){ -(function (Buffer){ -'use strict'; -var createHash = require('create-hash/browser'); +module.exports = function md5 (buf) { + return makeHash(buf, core_md5) +} + +},{"./make-hash":56}],58:[function(require,module,exports){ +'use strict' var inherits = require('inherits') +var Legacy = require('./legacy') +var Base = require('cipher-base') +var Buffer = require('safe-buffer').Buffer +var md5 = require('create-hash/md5') +var RIPEMD160 = require('ripemd160') -var Transform = require('stream').Transform +var sha = require('sha.js') -var ZEROS = new Buffer(128) -ZEROS.fill(0) +var ZEROS = Buffer.alloc(128) -function Hmac(alg, key) { - Transform.call(this) - alg = alg.toLowerCase() +function Hmac (alg, key) { + Base.call(this, 'digest') if (typeof key === 'string') { - key = new Buffer(key) + key = Buffer.from(key) } var blocksize = (alg === 'sha512' || alg === 'sha384') ? 128 : 64 this._alg = alg this._key = key - if (key.length > blocksize) { - key = createHash(alg).update(key).digest() - + var hash = alg === 'rmd160' ? new RIPEMD160() : sha(alg) + key = hash.update(key).digest() } else if (key.length < blocksize) { key = Buffer.concat([key, ZEROS], blocksize) } - var ipad = this._ipad = new Buffer(blocksize) - var opad = this._opad = new Buffer(blocksize) + var ipad = this._ipad = Buffer.allocUnsafe(blocksize) + var opad = this._opad = Buffer.allocUnsafe(blocksize) for (var i = 0; i < blocksize; i++) { ipad[i] = key[i] ^ 0x36 opad[i] = key[i] ^ 0x5C } - - this._hash = createHash(alg).update(ipad) + this._hash = alg === 'rmd160' ? new RIPEMD160() : sha(alg) + this._hash.update(ipad) } -inherits(Hmac, Transform) - -Hmac.prototype.update = function (data, enc) { - this._hash.update(data, enc) +inherits(Hmac, Base) - return this +Hmac.prototype._update = function (data) { + this._hash.update(data) } -Hmac.prototype._transform = function (data, _, next) { - this._hash.update(data) +Hmac.prototype._final = function () { + var h = this._hash.digest() + var hash = this._alg === 'rmd160' ? new RIPEMD160() : sha(this._alg) + return hash.update(this._opad).update(h).digest() +} - next() +module.exports = function createHmac (alg, key) { + alg = alg.toLowerCase() + if (alg === 'rmd160' || alg === 'ripemd160') { + return new Hmac('rmd160', key) + } + if (alg === 'md5') { + return new Legacy(md5, key) + } + return new Hmac(alg, key) } -Hmac.prototype._flush = function (next) { - this.push(this.digest()) +},{"./legacy":59,"cipher-base":52,"create-hash/md5":57,"inherits":105,"ripemd160":146,"safe-buffer":147,"sha.js":149}],59:[function(require,module,exports){ +'use strict' +var inherits = require('inherits') +var Buffer = require('safe-buffer').Buffer + +var Base = require('cipher-base') + +var ZEROS = Buffer.alloc(128) +var blocksize = 64 + +function Hmac (alg, key) { + Base.call(this, 'digest') + if (typeof key === 'string') { + key = Buffer.from(key) + } + + this._alg = alg + this._key = key + + if (key.length > blocksize) { + key = alg(key) + } else if (key.length < blocksize) { + key = Buffer.concat([key, ZEROS], blocksize) + } + + var ipad = this._ipad = Buffer.allocUnsafe(blocksize) + var opad = this._opad = Buffer.allocUnsafe(blocksize) + + for (var i = 0; i < blocksize; i++) { + ipad[i] = key[i] ^ 0x36 + opad[i] = key[i] ^ 0x5C + } - next() + this._hash = [ipad] } -Hmac.prototype.digest = function (enc) { - var h = this._hash.digest() +inherits(Hmac, Base) - return createHash(this._alg).update(this._opad).update(h).digest(enc) +Hmac.prototype._update = function (data) { + this._hash.push(data) } -module.exports = function createHmac(alg, key) { - return new Hmac(alg, key) +Hmac.prototype._final = function () { + var h = this._alg(Buffer.concat(this._hash)) + return this._alg(Buffer.concat([this._opad, h])) } +module.exports = Hmac -}).call(this,require("buffer").Buffer) -},{"buffer":49,"create-hash/browser":55,"inherits":97,"stream":139}],59:[function(require,module,exports){ +},{"cipher-base":52,"inherits":105,"safe-buffer":147}],60:[function(require,module,exports){ 'use strict' exports.randomBytes = exports.rng = exports.pseudoRandomBytes = exports.prng = require('randombytes') exports.createHash = exports.Hash = require('create-hash') exports.createHmac = exports.Hmac = require('create-hmac') -var hashes = ['sha1', 'sha224', 'sha256', 'sha384', 'sha512', 'md5', 'rmd160'].concat(Object.keys(require('browserify-sign/algos'))) +var algos = require('browserify-sign/algos') +var algoKeys = Object.keys(algos) +var hashes = ['sha1', 'sha224', 'sha256', 'sha384', 'sha512', 'md5', 'rmd160'].concat(algoKeys) exports.getHashes = function () { return hashes } @@ -48474,69 +44477,82 @@ exports.pbkdf2 = p.pbkdf2 exports.pbkdf2Sync = p.pbkdf2Sync var aes = require('browserify-cipher') -;[ - 'Cipher', - 'createCipher', - 'Cipheriv', - 'createCipheriv', - 'Decipher', - 'createDecipher', - 'Decipheriv', - 'createDecipheriv', - 'getCiphers', - 'listCiphers' -].forEach(function (key) { - exports[key] = aes[key] -}) + +exports.Cipher = aes.Cipher +exports.createCipher = aes.createCipher +exports.Cipheriv = aes.Cipheriv +exports.createCipheriv = aes.createCipheriv +exports.Decipher = aes.Decipher +exports.createDecipher = aes.createDecipher +exports.Decipheriv = aes.Decipheriv +exports.createDecipheriv = aes.createDecipheriv +exports.getCiphers = aes.getCiphers +exports.listCiphers = aes.listCiphers var dh = require('diffie-hellman') -;[ - 'DiffieHellmanGroup', - 'createDiffieHellmanGroup', - 'getDiffieHellman', - 'createDiffieHellman', - 'DiffieHellman' -].forEach(function (key) { - exports[key] = dh[key] -}) + +exports.DiffieHellmanGroup = dh.DiffieHellmanGroup +exports.createDiffieHellmanGroup = dh.createDiffieHellmanGroup +exports.getDiffieHellman = dh.getDiffieHellman +exports.createDiffieHellman = dh.createDiffieHellman +exports.DiffieHellman = dh.DiffieHellman var sign = require('browserify-sign') -;[ - 'createSign', - 'Sign', - 'createVerify', - 'Verify' -].forEach(function (key) { - exports[key] = sign[key] -}) + +exports.createSign = sign.createSign +exports.Sign = sign.Sign +exports.createVerify = sign.createVerify +exports.Verify = sign.Verify exports.createECDH = require('create-ecdh') var publicEncrypt = require('public-encrypt') -;[ - 'publicEncrypt', - 'privateEncrypt', - 'publicDecrypt', - 'privateDecrypt' -].forEach(function (key) { - exports[key] = publicEncrypt[key] -}) +exports.publicEncrypt = publicEncrypt.publicEncrypt +exports.privateEncrypt = publicEncrypt.privateEncrypt +exports.publicDecrypt = publicEncrypt.publicDecrypt +exports.privateDecrypt = publicEncrypt.privateDecrypt // the least I can do is make error messages for the rest of the node.js/crypto api. -;[ - 'createCredentials' -].forEach(function (name) { - exports[name] = function () { - throw new Error([ - 'sorry, ' + name + ' is not implemented yet', - 'we accept pull requests', - 'https://github.com/crypto-browserify/crypto-browserify' - ].join('\n')) - } -}) - -},{"browserify-cipher":37,"browserify-sign":42,"browserify-sign/algos":41,"create-ecdh":54,"create-hash":55,"create-hmac":58,"diffie-hellman":66,"pbkdf2":108,"public-encrypt":112,"randombytes":118}],60:[function(require,module,exports){ +// ;[ +// 'createCredentials' +// ].forEach(function (name) { +// exports[name] = function () { +// throw new Error([ +// 'sorry, ' + name + ' is not implemented yet', +// 'we accept pull requests', +// 'https://github.com/crypto-browserify/crypto-browserify' +// ].join('\n')) +// } +// }) + +exports.createCredentials = function () { + throw new Error([ + 'sorry, createCredentials is not implemented yet', + 'we accept pull requests', + 'https://github.com/crypto-browserify/crypto-browserify' + ].join('\n')) +} + +exports.constants = { + 'DH_CHECK_P_NOT_SAFE_PRIME': 2, + 'DH_CHECK_P_NOT_PRIME': 1, + 'DH_UNABLE_TO_CHECK_GENERATOR': 4, + 'DH_NOT_SUITABLE_GENERATOR': 8, + 'NPN_ENABLED': 1, + 'ALPN_ENABLED': 1, + 'RSA_PKCS1_PADDING': 1, + 'RSA_SSLV23_PADDING': 2, + 'RSA_NO_PADDING': 3, + 'RSA_PKCS1_OAEP_PADDING': 4, + 'RSA_X931_PADDING': 5, + 'RSA_PKCS1_PSS_PADDING': 6, + 'POINT_CONVERSION_COMPRESSED': 2, + 'POINT_CONVERSION_UNCOMPRESSED': 4, + 'POINT_CONVERSION_HYBRID': 6 +} + +},{"browserify-cipher":37,"browserify-sign":44,"browserify-sign/algos":41,"create-ecdh":54,"create-hash":55,"create-hmac":58,"diffie-hellman":67,"pbkdf2":118,"public-encrypt":125,"randombytes":131}],61:[function(require,module,exports){ 'use strict'; exports.utils = require('./des/utils'); @@ -48545,7 +44561,7 @@ exports.DES = require('./des/des'); exports.CBC = require('./des/cbc'); exports.EDE = require('./des/ede'); -},{"./des/cbc":61,"./des/cipher":62,"./des/des":63,"./des/ede":64,"./des/utils":65}],61:[function(require,module,exports){ +},{"./des/cbc":62,"./des/cipher":63,"./des/des":64,"./des/ede":65,"./des/utils":66}],62:[function(require,module,exports){ 'use strict'; var assert = require('minimalistic-assert'); @@ -48612,7 +44628,7 @@ proto._update = function _update(inp, inOff, out, outOff) { } }; -},{"inherits":97,"minimalistic-assert":102}],62:[function(require,module,exports){ +},{"inherits":105,"minimalistic-assert":110}],63:[function(require,module,exports){ 'use strict'; var assert = require('minimalistic-assert'); @@ -48755,7 +44771,7 @@ Cipher.prototype._finalDecrypt = function _finalDecrypt() { return this._unpad(out); }; -},{"minimalistic-assert":102}],63:[function(require,module,exports){ +},{"minimalistic-assert":110}],64:[function(require,module,exports){ 'use strict'; var assert = require('minimalistic-assert'); @@ -48900,7 +44916,7 @@ DES.prototype._decrypt = function _decrypt(state, lStart, rStart, out, off) { utils.rip(l, r, out, off); }; -},{"../des":60,"inherits":97,"minimalistic-assert":102}],64:[function(require,module,exports){ +},{"../des":61,"inherits":105,"minimalistic-assert":110}],65:[function(require,module,exports){ 'use strict'; var assert = require('minimalistic-assert'); @@ -48957,7 +44973,7 @@ EDE.prototype._update = function _update(inp, inOff, out, outOff) { EDE.prototype._pad = DES.prototype._pad; EDE.prototype._unpad = DES.prototype._unpad; -},{"../des":60,"inherits":97,"minimalistic-assert":102}],65:[function(require,module,exports){ +},{"../des":61,"inherits":105,"minimalistic-assert":110}],66:[function(require,module,exports){ 'use strict'; exports.readUInt32BE = function readUInt32BE(bytes, off) { @@ -49215,7 +45231,7 @@ exports.padSplit = function padSplit(num, size, group) { return out.join(' '); }; -},{}],66:[function(require,module,exports){ +},{}],67:[function(require,module,exports){ (function (Buffer){ var generatePrime = require('./lib/generatePrime') var primes = require('./lib/primes.json') @@ -49261,7 +45277,7 @@ exports.DiffieHellmanGroup = exports.createDiffieHellmanGroup = exports.getDiffi exports.createDiffieHellman = exports.DiffieHellman = createDiffieHellman }).call(this,require("buffer").Buffer) -},{"./lib/dh":67,"./lib/generatePrime":68,"./lib/primes.json":69,"buffer":49}],67:[function(require,module,exports){ +},{"./lib/dh":68,"./lib/generatePrime":69,"./lib/primes.json":70,"buffer":49}],68:[function(require,module,exports){ (function (Buffer){ var BN = require('bn.js'); var MillerRabin = require('miller-rabin'); @@ -49429,7 +45445,7 @@ function formatReturnValue(bn, enc) { } }).call(this,require("buffer").Buffer) -},{"./generatePrime":68,"bn.js":19,"buffer":49,"miller-rabin":101,"randombytes":118}],68:[function(require,module,exports){ +},{"./generatePrime":69,"bn.js":19,"buffer":49,"miller-rabin":109,"randombytes":131}],69:[function(require,module,exports){ var randomBytes = require('randombytes'); module.exports = findPrime; findPrime.simpleSieve = simpleSieve; @@ -49536,7 +45552,7 @@ function findPrime(bits, gen) { } -},{"bn.js":19,"miller-rabin":101,"randombytes":118}],69:[function(require,module,exports){ +},{"bn.js":19,"miller-rabin":109,"randombytes":131}],70:[function(require,module,exports){ module.exports={ "modp1": { "gen": "02", @@ -49571,7 +45587,7 @@ module.exports={ "prime": "ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c93402849236c3fab4d27c7026c1d4dcb2602646dec9751e763dba37bdf8ff9406ad9e530ee5db382f413001aeb06a53ed9027d831179727b0865a8918da3edbebcf9b14ed44ce6cbaced4bb1bdb7f1447e6cc254b332051512bd7af426fb8f401378cd2bf5983ca01c64b92ecf032ea15d1721d03f482d7ce6e74fef6d55e702f46980c82b5a84031900b1c9e59e7c97fbec7e8f323a97a7e36cc88be0f1d45b7ff585ac54bd407b22b4154aacc8f6d7ebf48e1d814cc5ed20f8037e0a79715eef29be32806a1d58bb7c5da76f550aa3d8a1fbff0eb19ccb1a313d55cda56c9ec2ef29632387fe8d76e3c0468043e8f663f4860ee12bf2d5b0b7474d6e694f91e6dbe115974a3926f12fee5e438777cb6a932df8cd8bec4d073b931ba3bc832b68d9dd300741fa7bf8afc47ed2576f6936ba424663aab639c5ae4f5683423b4742bf1c978238f16cbe39d652de3fdb8befc848ad922222e04a4037c0713eb57a81a23f0c73473fc646cea306b4bcbc8862f8385ddfa9d4b7fa2c087e879683303ed5bdd3a062b3cf5b3a278a66d2a13f83f44f82ddf310ee074ab6a364597e899a0255dc164f31cc50846851df9ab48195ded7ea1b1d510bd7ee74d73faf36bc31ecfa268359046f4eb879f924009438b481c6cd7889a002ed5ee382bc9190da6fc026e479558e4475677e9aa9e3050e2765694dfc81f56e880b96e7160c980dd98edd3dfffffffffffffffff" } } -},{}],70:[function(require,module,exports){ +},{}],71:[function(require,module,exports){ 'use strict'; var elliptic = exports; @@ -49579,7 +45595,6 @@ var elliptic = exports; elliptic.version = require('../package.json').version; elliptic.utils = require('./elliptic/utils'); elliptic.rand = require('brorand'); -elliptic.hmacDRBG = require('./elliptic/hmac-drbg'); elliptic.curve = require('./elliptic/curve'); elliptic.curves = require('./elliptic/curves'); @@ -49587,7 +45602,7 @@ elliptic.curves = require('./elliptic/curves'); elliptic.ec = require('./elliptic/ec'); elliptic.eddsa = require('./elliptic/eddsa'); -},{"../package.json":86,"./elliptic/curve":73,"./elliptic/curves":76,"./elliptic/ec":77,"./elliptic/eddsa":80,"./elliptic/hmac-drbg":83,"./elliptic/utils":85,"brorand":20}],71:[function(require,module,exports){ +},{"../package.json":86,"./elliptic/curve":74,"./elliptic/curves":77,"./elliptic/ec":78,"./elliptic/eddsa":81,"./elliptic/utils":85,"brorand":20}],72:[function(require,module,exports){ 'use strict'; var BN = require('bn.js'); @@ -49964,7 +45979,7 @@ BasePoint.prototype.dblp = function dblp(k) { return r; }; -},{"../../elliptic":70,"bn.js":19}],72:[function(require,module,exports){ +},{"../../elliptic":71,"bn.js":19}],73:[function(require,module,exports){ 'use strict'; var curve = require('../curve'); @@ -50399,7 +46414,7 @@ Point.prototype.eqXToP = function eqXToP(x) { Point.prototype.toP = Point.prototype.normalize; Point.prototype.mixedAdd = Point.prototype.add; -},{"../../elliptic":70,"../curve":73,"bn.js":19,"inherits":97}],73:[function(require,module,exports){ +},{"../../elliptic":71,"../curve":74,"bn.js":19,"inherits":105}],74:[function(require,module,exports){ 'use strict'; var curve = exports; @@ -50409,7 +46424,7 @@ curve.short = require('./short'); curve.mont = require('./mont'); curve.edwards = require('./edwards'); -},{"./base":71,"./edwards":72,"./mont":74,"./short":75}],74:[function(require,module,exports){ +},{"./base":72,"./edwards":73,"./mont":75,"./short":76}],75:[function(require,module,exports){ 'use strict'; var curve = require('../curve'); @@ -50591,7 +46606,7 @@ Point.prototype.getX = function getX() { return this.x.fromRed(); }; -},{"../../elliptic":70,"../curve":73,"bn.js":19,"inherits":97}],75:[function(require,module,exports){ +},{"../../elliptic":71,"../curve":74,"bn.js":19,"inherits":105}],76:[function(require,module,exports){ 'use strict'; var curve = require('../curve'); @@ -51531,7 +47546,7 @@ JPoint.prototype.isInfinity = function isInfinity() { return this.z.cmpn(0) === 0; }; -},{"../../elliptic":70,"../curve":73,"bn.js":19,"inherits":97}],76:[function(require,module,exports){ +},{"../../elliptic":71,"../curve":74,"bn.js":19,"inherits":105}],77:[function(require,module,exports){ 'use strict'; var curves = exports; @@ -51671,7 +47686,7 @@ defineCurve('curve25519', { prime: 'p25519', p: '7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed', a: '76d06', - b: '0', + b: '1', n: '1000000000000000 0000000000000000 14def9dea2f79cd6 5812631a5cf5d3ed', hash: hash.sha256, gRed: false, @@ -51738,10 +47753,11 @@ defineCurve('secp256k1', { ] }); -},{"../elliptic":70,"./precomputed/secp256k1":84,"hash.js":89}],77:[function(require,module,exports){ +},{"../elliptic":71,"./precomputed/secp256k1":84,"hash.js":90}],78:[function(require,module,exports){ 'use strict'; var BN = require('bn.js'); +var HmacDRBG = require('hmac-drbg'); var elliptic = require('../../elliptic'); var utils = elliptic.utils; var assert = utils.assert; @@ -51795,10 +47811,12 @@ EC.prototype.genKeyPair = function genKeyPair(options) { options = {}; // Instantiate Hmac_DRBG - var drbg = new elliptic.hmacDRBG({ + var drbg = new HmacDRBG({ hash: this.hash, pers: options.pers, + persEnc: options.persEnc || 'utf8', entropy: options.entropy || elliptic.rand(this.hash.hmacStrength), + entropyEnc: options.entropy && options.entropyEnc || 'utf8', nonce: this.n.toArray() }); @@ -51843,12 +47861,12 @@ EC.prototype.sign = function sign(msg, key, enc, options) { var nonce = msg.toArray('be', bytes); // Instantiate Hmac_DRBG - var drbg = new elliptic.hmacDRBG({ + var drbg = new HmacDRBG({ hash: this.hash, entropy: bkey, nonce: nonce, pers: options.pers, - persEnc: options.persEnc + persEnc: options.persEnc || 'utf8' }); // Number of bytes to generate @@ -51977,10 +47995,13 @@ EC.prototype.getKeyRecoveryParam = function(e, signature, Q, enc) { throw new Error('Unable to find valid recovery factor'); }; -},{"../../elliptic":70,"./key":78,"./signature":79,"bn.js":19}],78:[function(require,module,exports){ +},{"../../elliptic":71,"./key":79,"./signature":80,"bn.js":19,"hmac-drbg":102}],79:[function(require,module,exports){ 'use strict'; var BN = require('bn.js'); +var elliptic = require('../../elliptic'); +var utils = elliptic.utils; +var assert = utils.assert; function KeyPair(ec, options) { this.ec = ec; @@ -52061,6 +48082,15 @@ KeyPair.prototype._importPrivate = function _importPrivate(key, enc) { KeyPair.prototype._importPublic = function _importPublic(key, enc) { if (key.x || key.y) { + // Montgomery points only have an `x` coordinate. + // Weierstrass/Edwards points on the other hand have both `x` and + // `y` coordinates. + if (this.ec.curve.type === 'mont') { + assert(key.x, 'Need x coordinate'); + } else if (this.ec.curve.type === 'short' || + this.ec.curve.type === 'edwards') { + assert(key.x && key.y, 'Need both x and y coordinate'); + } this.pub = this.ec.curve.point(key.x, key.y); return; } @@ -52086,7 +48116,7 @@ KeyPair.prototype.inspect = function inspect() { ' pub: ' + (this.pub && this.pub.inspect()) + ' >'; }; -},{"bn.js":19}],79:[function(require,module,exports){ +},{"../../elliptic":71,"bn.js":19}],80:[function(require,module,exports){ 'use strict'; var BN = require('bn.js'); @@ -52223,7 +48253,7 @@ Signature.prototype.toDER = function toDER(enc) { return utils.encode(res, enc); }; -},{"../../elliptic":70,"bn.js":19}],80:[function(require,module,exports){ +},{"../../elliptic":71,"bn.js":19}],81:[function(require,module,exports){ 'use strict'; var hash = require('hash.js'); @@ -52343,7 +48373,7 @@ EDDSA.prototype.isPoint = function isPoint(val) { return val instanceof this.pointClass; }; -},{"../../elliptic":70,"./key":81,"./signature":82,"hash.js":89}],81:[function(require,module,exports){ +},{"../../elliptic":71,"./key":82,"./signature":83,"hash.js":90}],82:[function(require,module,exports){ 'use strict'; var elliptic = require('../../elliptic'); @@ -52441,7 +48471,7 @@ KeyPair.prototype.getPublic = function getPublic(enc) { module.exports = KeyPair; -},{"../../elliptic":70}],82:[function(require,module,exports){ +},{"../../elliptic":71}],83:[function(require,module,exports){ 'use strict'; var BN = require('bn.js'); @@ -52509,123 +48539,7 @@ Signature.prototype.toHex = function toHex() { module.exports = Signature; -},{"../../elliptic":70,"bn.js":19}],83:[function(require,module,exports){ -'use strict'; - -var hash = require('hash.js'); -var elliptic = require('../elliptic'); -var utils = elliptic.utils; -var assert = utils.assert; - -function HmacDRBG(options) { - if (!(this instanceof HmacDRBG)) - return new HmacDRBG(options); - this.hash = options.hash; - this.predResist = !!options.predResist; - - this.outLen = this.hash.outSize; - this.minEntropy = options.minEntropy || this.hash.hmacStrength; - - this.reseed = null; - this.reseedInterval = null; - this.K = null; - this.V = null; - - var entropy = utils.toArray(options.entropy, options.entropyEnc); - var nonce = utils.toArray(options.nonce, options.nonceEnc); - var pers = utils.toArray(options.pers, options.persEnc); - assert(entropy.length >= (this.minEntropy / 8), - 'Not enough entropy. Minimum is: ' + this.minEntropy + ' bits'); - this._init(entropy, nonce, pers); -} -module.exports = HmacDRBG; - -HmacDRBG.prototype._init = function init(entropy, nonce, pers) { - var seed = entropy.concat(nonce).concat(pers); - - this.K = new Array(this.outLen / 8); - this.V = new Array(this.outLen / 8); - for (var i = 0; i < this.V.length; i++) { - this.K[i] = 0x00; - this.V[i] = 0x01; - } - - this._update(seed); - this.reseed = 1; - this.reseedInterval = 0x1000000000000; // 2^48 -}; - -HmacDRBG.prototype._hmac = function hmac() { - return new hash.hmac(this.hash, this.K); -}; - -HmacDRBG.prototype._update = function update(seed) { - var kmac = this._hmac() - .update(this.V) - .update([ 0x00 ]); - if (seed) - kmac = kmac.update(seed); - this.K = kmac.digest(); - this.V = this._hmac().update(this.V).digest(); - if (!seed) - return; - - this.K = this._hmac() - .update(this.V) - .update([ 0x01 ]) - .update(seed) - .digest(); - this.V = this._hmac().update(this.V).digest(); -}; - -HmacDRBG.prototype.reseed = function reseed(entropy, entropyEnc, add, addEnc) { - // Optional entropy enc - if (typeof entropyEnc !== 'string') { - addEnc = add; - add = entropyEnc; - entropyEnc = null; - } - - entropy = utils.toBuffer(entropy, entropyEnc); - add = utils.toBuffer(add, addEnc); - - assert(entropy.length >= (this.minEntropy / 8), - 'Not enough entropy. Minimum is: ' + this.minEntropy + ' bits'); - - this._update(entropy.concat(add || [])); - this.reseed = 1; -}; - -HmacDRBG.prototype.generate = function generate(len, enc, add, addEnc) { - if (this.reseed > this.reseedInterval) - throw new Error('Reseed is required'); - - // Optional encoding - if (typeof enc !== 'string') { - addEnc = add; - add = enc; - enc = null; - } - - // Optional additional data - if (add) { - add = utils.toArray(add, addEnc); - this._update(add); - } - - var temp = []; - while (temp.length < len) { - this.V = this._hmac().update(this.V).digest(); - temp = temp.concat(this.V); - } - - var res = temp.slice(0, len); - this._update(add); - this.reseed++; - return utils.encode(res, enc); -}; - -},{"../elliptic":70,"hash.js":89}],84:[function(require,module,exports){ +},{"../../elliptic":71,"bn.js":19}],84:[function(require,module,exports){ module.exports = { doubles: { step: 4, @@ -53412,66 +49326,14 @@ module.exports = { var utils = exports; var BN = require('bn.js'); +var minAssert = require('minimalistic-assert'); +var minUtils = require('minimalistic-crypto-utils'); -utils.assert = function assert(val, msg) { - if (!val) - throw new Error(msg || 'Assertion failed'); -}; - -function toArray(msg, enc) { - if (Array.isArray(msg)) - return msg.slice(); - if (!msg) - return []; - var res = []; - if (typeof msg !== 'string') { - for (var i = 0; i < msg.length; i++) - res[i] = msg[i] | 0; - return res; - } - if (!enc) { - for (var i = 0; i < msg.length; i++) { - var c = msg.charCodeAt(i); - var hi = c >> 8; - var lo = c & 0xff; - if (hi) - res.push(hi, lo); - else - res.push(lo); - } - } else if (enc === 'hex') { - msg = msg.replace(/[^a-z0-9]+/ig, ''); - if (msg.length % 2 !== 0) - msg = '0' + msg; - for (var i = 0; i < msg.length; i += 2) - res.push(parseInt(msg[i] + msg[i + 1], 16)); - } - return res; -} -utils.toArray = toArray; - -function zero2(word) { - if (word.length === 1) - return '0' + word; - else - return word; -} -utils.zero2 = zero2; - -function toHex(msg) { - var res = ''; - for (var i = 0; i < msg.length; i++) - res += zero2(msg[i].toString(16)); - return res; -} -utils.toHex = toHex; - -utils.encode = function encode(arr, enc) { - if (enc === 'hex') - return toHex(arr); - else - return arr; -}; +utils.assert = minAssert; +utils.toArray = minUtils.toArray; +utils.zero2 = minUtils.zero2; +utils.toHex = minUtils.toHex; +utils.encode = minUtils.encode; // Represent num in a w-NAF form function getNAF(num, w) { @@ -53581,7 +49443,7 @@ function intFromLE(bytes) { utils.intFromLE = intFromLE; -},{"bn.js":19}],86:[function(require,module,exports){ +},{"bn.js":19,"minimalistic-assert":110,"minimalistic-crypto-utils":111}],86:[function(require,module,exports){ module.exports={ "_args": [ [ @@ -53594,23 +49456,23 @@ module.exports={ "spec": ">=6.0.0 <7.0.0", "type": "range" }, - "/Users/ffff/Projects/the-signal-protocol/node_modules/browserify-sign" + "/Users/ffff/Projects/signal-protocol/node_modules/browserify-sign" ] ], "_from": "elliptic@>=6.0.0 <7.0.0", - "_id": "elliptic@6.3.2", + "_id": "elliptic@6.4.0", "_inCache": true, "_location": "/elliptic", - "_nodeVersion": "6.3.0", + "_nodeVersion": "7.0.0", "_npmOperationalInternal": { - "host": "packages-16-east.internal.npmjs.com", - "tmp": "tmp/elliptic-6.3.2.tgz_1473938837205_0.3108903462998569" + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/elliptic-6.4.0.tgz_1487798866428_0.30510620190761983" }, "_npmUser": { "name": "indutny", "email": "fedor@indutny.com" }, - "_npmVersion": "3.10.3", + "_npmVersion": "3.10.8", "_phantomChildren": {}, "_requested": { "raw": "elliptic@^6.0.0", @@ -53625,11 +49487,11 @@ module.exports={ "/browserify-sign", "/create-ecdh" ], - "_resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.3.2.tgz", - "_shasum": "e4c81e0829cf0a65ab70e998b8232723b5c1bc48", + "_resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.4.0.tgz", + "_shasum": "cac9af8762c85836187003c8dfe193e5e2eae5df", "_shrinkwrap": null, "_spec": "elliptic@^6.0.0", - "_where": "/Users/ffff/Projects/the-signal-protocol/node_modules/browserify-sign", + "_where": "/Users/ffff/Projects/signal-protocol/node_modules/browserify-sign", "author": { "name": "Fedor Indutny", "email": "fedor@indutny.com" @@ -53641,7 +49503,10 @@ module.exports={ "bn.js": "^4.4.0", "brorand": "^1.0.1", "hash.js": "^1.0.0", - "inherits": "^2.0.1" + "hmac-drbg": "^1.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.0" }, "description": "EC cryptography", "devDependencies": { @@ -53649,6 +49514,7 @@ module.exports={ "coveralls": "^2.11.3", "grunt": "^0.4.5", "grunt-browserify": "^5.0.0", + "grunt-cli": "^1.2.0", "grunt-contrib-connect": "^1.0.0", "grunt-contrib-copy": "^1.0.0", "grunt-contrib-uglify": "^1.0.1", @@ -53661,13 +49527,13 @@ module.exports={ }, "directories": {}, "dist": { - "shasum": "e4c81e0829cf0a65ab70e998b8232723b5c1bc48", - "tarball": "https://registry.npmjs.org/elliptic/-/elliptic-6.3.2.tgz" + "shasum": "cac9af8762c85836187003c8dfe193e5e2eae5df", + "tarball": "https://registry.npmjs.org/elliptic/-/elliptic-6.4.0.tgz" }, "files": [ "lib" ], - "gitHead": "cbace4683a4a548dc0306ef36756151a20299cd5", + "gitHead": "6b0d2b76caae91471649c8e21f0b1d3ba0f96090", "homepage": "https://github.com/indutny/elliptic", "keywords": [ "EC", @@ -53698,7 +49564,7 @@ module.exports={ "unit": "istanbul test _mocha --reporter=spec test/index.js", "version": "grunt dist && git add dist/" }, - "version": "6.3.2" + "version": "6.4.0" } },{}],87:[function(require,module,exports){ @@ -54078,6 +49944,93 @@ function EVP_BytesToKey (password, salt, keyLen, ivLen) { }).call(this,require("buffer").Buffer) },{"buffer":49,"create-hash/md5":57}],89:[function(require,module,exports){ +(function (Buffer){ +'use strict' +var Transform = require('stream').Transform +var inherits = require('inherits') + +function HashBase (blockSize) { + Transform.call(this) + + this._block = new Buffer(blockSize) + this._blockSize = blockSize + this._blockOffset = 0 + this._length = [0, 0, 0, 0] + + this._finalized = false +} + +inherits(HashBase, Transform) + +HashBase.prototype._transform = function (chunk, encoding, callback) { + var error = null + try { + if (encoding !== 'buffer') chunk = new Buffer(chunk, encoding) + this.update(chunk) + } catch (err) { + error = err + } + + callback(error) +} + +HashBase.prototype._flush = function (callback) { + var error = null + try { + this.push(this._digest()) + } catch (err) { + error = err + } + + callback(error) +} + +HashBase.prototype.update = function (data, encoding) { + if (!Buffer.isBuffer(data) && typeof data !== 'string') throw new TypeError('Data must be a string or a buffer') + if (this._finalized) throw new Error('Digest already called') + if (!Buffer.isBuffer(data)) data = new Buffer(data, encoding || 'binary') + + // consume data + var block = this._block + var offset = 0 + while (this._blockOffset + data.length - offset >= this._blockSize) { + for (var i = this._blockOffset; i < this._blockSize;) block[i++] = data[offset++] + this._update() + this._blockOffset = 0 + } + while (offset < data.length) block[this._blockOffset++] = data[offset++] + + // update length + for (var j = 0, carry = data.length * 8; carry > 0; ++j) { + this._length[j] += carry + carry = (this._length[j] / 0x0100000000) | 0 + if (carry > 0) this._length[j] -= 0x0100000000 * carry + } + + return this +} + +HashBase.prototype._update = function (data) { + throw new Error('_update is not implemented') +} + +HashBase.prototype.digest = function (encoding) { + if (this._finalized) throw new Error('Digest already called') + this._finalized = true + + var digest = this._digest() + if (encoding !== undefined) digest = digest.toString(encoding) + return digest +} + +HashBase.prototype._digest = function () { + throw new Error('_digest is not implemented') +} + +module.exports = HashBase + +}).call(this,require("buffer").Buffer) +},{"buffer":49,"inherits":105,"stream":156}],90:[function(require,module,exports){ var hash = exports; hash.utils = require('./hash/utils'); @@ -54094,10 +50047,11 @@ hash.sha384 = hash.sha.sha384; hash.sha512 = hash.sha.sha512; hash.ripemd160 = hash.ripemd.ripemd160; -},{"./hash/common":90,"./hash/hmac":91,"./hash/ripemd":92,"./hash/sha":93,"./hash/utils":94}],90:[function(require,module,exports){ -var hash = require('../hash'); -var utils = hash.utils; -var assert = utils.assert; +},{"./hash/common":91,"./hash/hmac":92,"./hash/ripemd":93,"./hash/sha":94,"./hash/utils":101}],91:[function(require,module,exports){ +'use strict'; + +var utils = require('./utils'); +var assert = require('minimalistic-assert'); function BlockHash() { this.pending = null; @@ -54180,19 +50134,18 @@ BlockHash.prototype._pad = function pad() { res[i++] = 0; res[i++] = 0; - for (var t = 8; t < this.padLength; t++) + for (t = 8; t < this.padLength; t++) res[i++] = 0; } return res; }; -},{"../hash":89}],91:[function(require,module,exports){ -var hmac = exports; +},{"./utils":101,"minimalistic-assert":110}],92:[function(require,module,exports){ +'use strict'; -var hash = require('../hash'); -var utils = hash.utils; -var assert = utils.assert; +var utils = require('./utils'); +var assert = require('minimalistic-assert'); function Hmac(hash, key, enc) { if (!(this instanceof Hmac)) @@ -54217,12 +50170,12 @@ Hmac.prototype._init = function init(key) { for (var i = key.length; i < this.blockSize; i++) key.push(0); - for (var i = 0; i < key.length; i++) + for (i = 0; i < key.length; i++) key[i] ^= 0x36; this.inner = new this.Hash().update(key); // 0x36 ^ 0x5c = 0x6a - for (var i = 0; i < key.length; i++) + for (i = 0; i < key.length; i++) key[i] ^= 0x6a; this.outer = new this.Hash().update(key); }; @@ -54237,15 +50190,17 @@ Hmac.prototype.digest = function digest(enc) { return this.outer.digest(enc); }; -},{"../hash":89}],92:[function(require,module,exports){ -var hash = require('../hash'); -var utils = hash.utils; +},{"./utils":101,"minimalistic-assert":110}],93:[function(require,module,exports){ +'use strict'; + +var utils = require('./utils'); +var common = require('./common'); var rotl32 = utils.rotl32; var sum32 = utils.sum32; var sum32_3 = utils.sum32_3; var sum32_4 = utils.sum32_4; -var BlockHash = hash.common.BlockHash; +var BlockHash = common.BlockHash; function RIPEMD160() { if (!(this instanceof RIPEMD160)) @@ -54383,28 +50338,142 @@ var sh = [ 8, 5, 12, 9, 12, 5, 14, 6, 8, 13, 6, 5, 15, 13, 11, 11 ]; -},{"../hash":89}],93:[function(require,module,exports){ -var hash = require('../hash'); -var utils = hash.utils; -var assert = utils.assert; +},{"./common":91,"./utils":101}],94:[function(require,module,exports){ +'use strict'; + +exports.sha1 = require('./sha/1'); +exports.sha224 = require('./sha/224'); +exports.sha256 = require('./sha/256'); +exports.sha384 = require('./sha/384'); +exports.sha512 = require('./sha/512'); + +},{"./sha/1":95,"./sha/224":96,"./sha/256":97,"./sha/384":98,"./sha/512":99}],95:[function(require,module,exports){ +'use strict'; + +var utils = require('../utils'); +var common = require('../common'); +var shaCommon = require('./common'); -var rotr32 = utils.rotr32; var rotl32 = utils.rotl32; +var sum32 = utils.sum32; +var sum32_5 = utils.sum32_5; +var ft_1 = shaCommon.ft_1; +var BlockHash = common.BlockHash; + +var sha1_K = [ + 0x5A827999, 0x6ED9EBA1, + 0x8F1BBCDC, 0xCA62C1D6 +]; + +function SHA1() { + if (!(this instanceof SHA1)) + return new SHA1(); + + BlockHash.call(this); + this.h = [ + 0x67452301, 0xefcdab89, 0x98badcfe, + 0x10325476, 0xc3d2e1f0 ]; + this.W = new Array(80); +} + +utils.inherits(SHA1, BlockHash); +module.exports = SHA1; + +SHA1.blockSize = 512; +SHA1.outSize = 160; +SHA1.hmacStrength = 80; +SHA1.padLength = 64; + +SHA1.prototype._update = function _update(msg, start) { + var W = this.W; + + for (var i = 0; i < 16; i++) + W[i] = msg[start + i]; + + for(; i < W.length; i++) + W[i] = rotl32(W[i - 3] ^ W[i - 8] ^ W[i - 14] ^ W[i - 16], 1); + + var a = this.h[0]; + var b = this.h[1]; + var c = this.h[2]; + var d = this.h[3]; + var e = this.h[4]; + + for (i = 0; i < W.length; i++) { + var s = ~~(i / 20); + var t = sum32_5(rotl32(a, 5), ft_1(s, b, c, d), e, W[i], sha1_K[s]); + e = d; + d = c; + c = rotl32(b, 30); + b = a; + a = t; + } + + this.h[0] = sum32(this.h[0], a); + this.h[1] = sum32(this.h[1], b); + this.h[2] = sum32(this.h[2], c); + this.h[3] = sum32(this.h[3], d); + this.h[4] = sum32(this.h[4], e); +}; + +SHA1.prototype._digest = function digest(enc) { + if (enc === 'hex') + return utils.toHex32(this.h, 'big'); + else + return utils.split32(this.h, 'big'); +}; + +},{"../common":91,"../utils":101,"./common":100}],96:[function(require,module,exports){ +'use strict'; + +var utils = require('../utils'); +var SHA256 = require('./256'); + +function SHA224() { + if (!(this instanceof SHA224)) + return new SHA224(); + + SHA256.call(this); + this.h = [ + 0xc1059ed8, 0x367cd507, 0x3070dd17, 0xf70e5939, + 0xffc00b31, 0x68581511, 0x64f98fa7, 0xbefa4fa4 ]; +} +utils.inherits(SHA224, SHA256); +module.exports = SHA224; + +SHA224.blockSize = 512; +SHA224.outSize = 224; +SHA224.hmacStrength = 192; +SHA224.padLength = 64; + +SHA224.prototype._digest = function digest(enc) { + // Just truncate output + if (enc === 'hex') + return utils.toHex32(this.h.slice(0, 7), 'big'); + else + return utils.split32(this.h.slice(0, 7), 'big'); +}; + + +},{"../utils":101,"./256":97}],97:[function(require,module,exports){ +'use strict'; + +var utils = require('../utils'); +var common = require('../common'); +var shaCommon = require('./common'); +var assert = require('minimalistic-assert'); + var sum32 = utils.sum32; var sum32_4 = utils.sum32_4; var sum32_5 = utils.sum32_5; -var rotr64_hi = utils.rotr64_hi; -var rotr64_lo = utils.rotr64_lo; -var shr64_hi = utils.shr64_hi; -var shr64_lo = utils.shr64_lo; -var sum64 = utils.sum64; -var sum64_hi = utils.sum64_hi; -var sum64_lo = utils.sum64_lo; -var sum64_4_hi = utils.sum64_4_hi; -var sum64_4_lo = utils.sum64_4_lo; -var sum64_5_hi = utils.sum64_5_hi; -var sum64_5_lo = utils.sum64_5_lo; -var BlockHash = hash.common.BlockHash; +var ch32 = shaCommon.ch32; +var maj32 = shaCommon.maj32; +var s0_256 = shaCommon.s0_256; +var s1_256 = shaCommon.s1_256; +var g0_256 = shaCommon.g0_256; +var g1_256 = shaCommon.g1_256; + +var BlockHash = common.BlockHash; var sha256_K = [ 0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5, @@ -54425,66 +50494,20 @@ var sha256_K = [ 0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2 ]; -var sha512_K = [ - 0x428a2f98, 0xd728ae22, 0x71374491, 0x23ef65cd, - 0xb5c0fbcf, 0xec4d3b2f, 0xe9b5dba5, 0x8189dbbc, - 0x3956c25b, 0xf348b538, 0x59f111f1, 0xb605d019, - 0x923f82a4, 0xaf194f9b, 0xab1c5ed5, 0xda6d8118, - 0xd807aa98, 0xa3030242, 0x12835b01, 0x45706fbe, - 0x243185be, 0x4ee4b28c, 0x550c7dc3, 0xd5ffb4e2, - 0x72be5d74, 0xf27b896f, 0x80deb1fe, 0x3b1696b1, - 0x9bdc06a7, 0x25c71235, 0xc19bf174, 0xcf692694, - 0xe49b69c1, 0x9ef14ad2, 0xefbe4786, 0x384f25e3, - 0x0fc19dc6, 0x8b8cd5b5, 0x240ca1cc, 0x77ac9c65, - 0x2de92c6f, 0x592b0275, 0x4a7484aa, 0x6ea6e483, - 0x5cb0a9dc, 0xbd41fbd4, 0x76f988da, 0x831153b5, - 0x983e5152, 0xee66dfab, 0xa831c66d, 0x2db43210, - 0xb00327c8, 0x98fb213f, 0xbf597fc7, 0xbeef0ee4, - 0xc6e00bf3, 0x3da88fc2, 0xd5a79147, 0x930aa725, - 0x06ca6351, 0xe003826f, 0x14292967, 0x0a0e6e70, - 0x27b70a85, 0x46d22ffc, 0x2e1b2138, 0x5c26c926, - 0x4d2c6dfc, 0x5ac42aed, 0x53380d13, 0x9d95b3df, - 0x650a7354, 0x8baf63de, 0x766a0abb, 0x3c77b2a8, - 0x81c2c92e, 0x47edaee6, 0x92722c85, 0x1482353b, - 0xa2bfe8a1, 0x4cf10364, 0xa81a664b, 0xbc423001, - 0xc24b8b70, 0xd0f89791, 0xc76c51a3, 0x0654be30, - 0xd192e819, 0xd6ef5218, 0xd6990624, 0x5565a910, - 0xf40e3585, 0x5771202a, 0x106aa070, 0x32bbd1b8, - 0x19a4c116, 0xb8d2d0c8, 0x1e376c08, 0x5141ab53, - 0x2748774c, 0xdf8eeb99, 0x34b0bcb5, 0xe19b48a8, - 0x391c0cb3, 0xc5c95a63, 0x4ed8aa4a, 0xe3418acb, - 0x5b9cca4f, 0x7763e373, 0x682e6ff3, 0xd6b2b8a3, - 0x748f82ee, 0x5defb2fc, 0x78a5636f, 0x43172f60, - 0x84c87814, 0xa1f0ab72, 0x8cc70208, 0x1a6439ec, - 0x90befffa, 0x23631e28, 0xa4506ceb, 0xde82bde9, - 0xbef9a3f7, 0xb2c67915, 0xc67178f2, 0xe372532b, - 0xca273ece, 0xea26619c, 0xd186b8c7, 0x21c0c207, - 0xeada7dd6, 0xcde0eb1e, 0xf57d4f7f, 0xee6ed178, - 0x06f067aa, 0x72176fba, 0x0a637dc5, 0xa2c898a6, - 0x113f9804, 0xbef90dae, 0x1b710b35, 0x131c471b, - 0x28db77f5, 0x23047d84, 0x32caab7b, 0x40c72493, - 0x3c9ebe0a, 0x15c9bebc, 0x431d67c4, 0x9c100d4c, - 0x4cc5d4be, 0xcb3e42b6, 0x597f299c, 0xfc657e2a, - 0x5fcb6fab, 0x3ad6faec, 0x6c44198c, 0x4a475817 -]; - -var sha1_K = [ - 0x5A827999, 0x6ED9EBA1, - 0x8F1BBCDC, 0xCA62C1D6 -]; - function SHA256() { if (!(this instanceof SHA256)) return new SHA256(); BlockHash.call(this); - this.h = [ 0x6a09e667, 0xbb67ae85, 0x3c6ef372, 0xa54ff53a, - 0x510e527f, 0x9b05688c, 0x1f83d9ab, 0x5be0cd19 ]; + this.h = [ + 0x6a09e667, 0xbb67ae85, 0x3c6ef372, 0xa54ff53a, + 0x510e527f, 0x9b05688c, 0x1f83d9ab, 0x5be0cd19 + ]; this.k = sha256_K; this.W = new Array(64); } utils.inherits(SHA256, BlockHash); -exports.sha256 = SHA256; +module.exports = SHA256; SHA256.blockSize = 512; SHA256.outSize = 256; @@ -54509,7 +50532,7 @@ SHA256.prototype._update = function _update(msg, start) { var h = this.h[7]; assert(this.k.length === W.length); - for (var i = 0; i < W.length; i++) { + for (i = 0; i < W.length; i++) { var T1 = sum32_5(h, s1_256(e), ch32(e, f, g), this.k[i], W[i]); var T2 = sum32(s0_256(a), maj32(a, b, c)); h = g; @@ -54539,48 +50562,126 @@ SHA256.prototype._digest = function digest(enc) { return utils.split32(this.h, 'big'); }; -function SHA224() { - if (!(this instanceof SHA224)) - return new SHA224(); +},{"../common":91,"../utils":101,"./common":100,"minimalistic-assert":110}],98:[function(require,module,exports){ +'use strict'; - SHA256.call(this); - this.h = [ 0xc1059ed8, 0x367cd507, 0x3070dd17, 0xf70e5939, - 0xffc00b31, 0x68581511, 0x64f98fa7, 0xbefa4fa4 ]; +var utils = require('../utils'); + +var SHA512 = require('./512'); + +function SHA384() { + if (!(this instanceof SHA384)) + return new SHA384(); + + SHA512.call(this); + this.h = [ + 0xcbbb9d5d, 0xc1059ed8, + 0x629a292a, 0x367cd507, + 0x9159015a, 0x3070dd17, + 0x152fecd8, 0xf70e5939, + 0x67332667, 0xffc00b31, + 0x8eb44a87, 0x68581511, + 0xdb0c2e0d, 0x64f98fa7, + 0x47b5481d, 0xbefa4fa4 ]; } -utils.inherits(SHA224, SHA256); -exports.sha224 = SHA224; +utils.inherits(SHA384, SHA512); +module.exports = SHA384; -SHA224.blockSize = 512; -SHA224.outSize = 224; -SHA224.hmacStrength = 192; -SHA224.padLength = 64; +SHA384.blockSize = 1024; +SHA384.outSize = 384; +SHA384.hmacStrength = 192; +SHA384.padLength = 128; -SHA224.prototype._digest = function digest(enc) { - // Just truncate output +SHA384.prototype._digest = function digest(enc) { if (enc === 'hex') - return utils.toHex32(this.h.slice(0, 7), 'big'); + return utils.toHex32(this.h.slice(0, 12), 'big'); else - return utils.split32(this.h.slice(0, 7), 'big'); + return utils.split32(this.h.slice(0, 12), 'big'); }; +},{"../utils":101,"./512":99}],99:[function(require,module,exports){ +'use strict'; + +var utils = require('../utils'); +var common = require('../common'); +var assert = require('minimalistic-assert'); + +var rotr64_hi = utils.rotr64_hi; +var rotr64_lo = utils.rotr64_lo; +var shr64_hi = utils.shr64_hi; +var shr64_lo = utils.shr64_lo; +var sum64 = utils.sum64; +var sum64_hi = utils.sum64_hi; +var sum64_lo = utils.sum64_lo; +var sum64_4_hi = utils.sum64_4_hi; +var sum64_4_lo = utils.sum64_4_lo; +var sum64_5_hi = utils.sum64_5_hi; +var sum64_5_lo = utils.sum64_5_lo; + +var BlockHash = common.BlockHash; + +var sha512_K = [ + 0x428a2f98, 0xd728ae22, 0x71374491, 0x23ef65cd, + 0xb5c0fbcf, 0xec4d3b2f, 0xe9b5dba5, 0x8189dbbc, + 0x3956c25b, 0xf348b538, 0x59f111f1, 0xb605d019, + 0x923f82a4, 0xaf194f9b, 0xab1c5ed5, 0xda6d8118, + 0xd807aa98, 0xa3030242, 0x12835b01, 0x45706fbe, + 0x243185be, 0x4ee4b28c, 0x550c7dc3, 0xd5ffb4e2, + 0x72be5d74, 0xf27b896f, 0x80deb1fe, 0x3b1696b1, + 0x9bdc06a7, 0x25c71235, 0xc19bf174, 0xcf692694, + 0xe49b69c1, 0x9ef14ad2, 0xefbe4786, 0x384f25e3, + 0x0fc19dc6, 0x8b8cd5b5, 0x240ca1cc, 0x77ac9c65, + 0x2de92c6f, 0x592b0275, 0x4a7484aa, 0x6ea6e483, + 0x5cb0a9dc, 0xbd41fbd4, 0x76f988da, 0x831153b5, + 0x983e5152, 0xee66dfab, 0xa831c66d, 0x2db43210, + 0xb00327c8, 0x98fb213f, 0xbf597fc7, 0xbeef0ee4, + 0xc6e00bf3, 0x3da88fc2, 0xd5a79147, 0x930aa725, + 0x06ca6351, 0xe003826f, 0x14292967, 0x0a0e6e70, + 0x27b70a85, 0x46d22ffc, 0x2e1b2138, 0x5c26c926, + 0x4d2c6dfc, 0x5ac42aed, 0x53380d13, 0x9d95b3df, + 0x650a7354, 0x8baf63de, 0x766a0abb, 0x3c77b2a8, + 0x81c2c92e, 0x47edaee6, 0x92722c85, 0x1482353b, + 0xa2bfe8a1, 0x4cf10364, 0xa81a664b, 0xbc423001, + 0xc24b8b70, 0xd0f89791, 0xc76c51a3, 0x0654be30, + 0xd192e819, 0xd6ef5218, 0xd6990624, 0x5565a910, + 0xf40e3585, 0x5771202a, 0x106aa070, 0x32bbd1b8, + 0x19a4c116, 0xb8d2d0c8, 0x1e376c08, 0x5141ab53, + 0x2748774c, 0xdf8eeb99, 0x34b0bcb5, 0xe19b48a8, + 0x391c0cb3, 0xc5c95a63, 0x4ed8aa4a, 0xe3418acb, + 0x5b9cca4f, 0x7763e373, 0x682e6ff3, 0xd6b2b8a3, + 0x748f82ee, 0x5defb2fc, 0x78a5636f, 0x43172f60, + 0x84c87814, 0xa1f0ab72, 0x8cc70208, 0x1a6439ec, + 0x90befffa, 0x23631e28, 0xa4506ceb, 0xde82bde9, + 0xbef9a3f7, 0xb2c67915, 0xc67178f2, 0xe372532b, + 0xca273ece, 0xea26619c, 0xd186b8c7, 0x21c0c207, + 0xeada7dd6, 0xcde0eb1e, 0xf57d4f7f, 0xee6ed178, + 0x06f067aa, 0x72176fba, 0x0a637dc5, 0xa2c898a6, + 0x113f9804, 0xbef90dae, 0x1b710b35, 0x131c471b, + 0x28db77f5, 0x23047d84, 0x32caab7b, 0x40c72493, + 0x3c9ebe0a, 0x15c9bebc, 0x431d67c4, 0x9c100d4c, + 0x4cc5d4be, 0xcb3e42b6, 0x597f299c, 0xfc657e2a, + 0x5fcb6fab, 0x3ad6faec, 0x6c44198c, 0x4a475817 +]; + function SHA512() { if (!(this instanceof SHA512)) return new SHA512(); BlockHash.call(this); - this.h = [ 0x6a09e667, 0xf3bcc908, - 0xbb67ae85, 0x84caa73b, - 0x3c6ef372, 0xfe94f82b, - 0xa54ff53a, 0x5f1d36f1, - 0x510e527f, 0xade682d1, - 0x9b05688c, 0x2b3e6c1f, - 0x1f83d9ab, 0xfb41bd6b, - 0x5be0cd19, 0x137e2179 ]; + this.h = [ + 0x6a09e667, 0xf3bcc908, + 0xbb67ae85, 0x84caa73b, + 0x3c6ef372, 0xfe94f82b, + 0xa54ff53a, 0x5f1d36f1, + 0x510e527f, 0xade682d1, + 0x9b05688c, 0x2b3e6c1f, + 0x1f83d9ab, 0xfb41bd6b, + 0x5be0cd19, 0x137e2179 ]; this.k = sha512_K; this.W = new Array(160); } utils.inherits(SHA512, BlockHash); -exports.sha512 = SHA512; +module.exports = SHA512; SHA512.blockSize = 1024; SHA512.outSize = 512; @@ -54603,14 +50704,16 @@ SHA512.prototype._prepareBlock = function _prepareBlock(msg, start) { var c3_hi = W[i - 32]; // i - 16 var c3_lo = W[i - 31]; - W[i] = sum64_4_hi(c0_hi, c0_lo, - c1_hi, c1_lo, - c2_hi, c2_lo, - c3_hi, c3_lo); - W[i + 1] = sum64_4_lo(c0_hi, c0_lo, - c1_hi, c1_lo, - c2_hi, c2_lo, - c3_hi, c3_lo); + W[i] = sum64_4_hi( + c0_hi, c0_lo, + c1_hi, c1_lo, + c2_hi, c2_lo, + c3_hi, c3_lo); + W[i + 1] = sum64_4_lo( + c0_hi, c0_lo, + c1_hi, c1_lo, + c2_hi, c2_lo, + c3_hi, c3_lo); } }; @@ -54649,21 +50752,23 @@ SHA512.prototype._update = function _update(msg, start) { var c4_hi = W[i]; var c4_lo = W[i + 1]; - var T1_hi = sum64_5_hi(c0_hi, c0_lo, - c1_hi, c1_lo, - c2_hi, c2_lo, - c3_hi, c3_lo, - c4_hi, c4_lo); - var T1_lo = sum64_5_lo(c0_hi, c0_lo, - c1_hi, c1_lo, - c2_hi, c2_lo, - c3_hi, c3_lo, - c4_hi, c4_lo); - - var c0_hi = s0_512_hi(ah, al); - var c0_lo = s0_512_lo(ah, al); - var c1_hi = maj64_hi(ah, al, bh, bl, ch, cl); - var c1_lo = maj64_lo(ah, al, bh, bl, ch, cl); + var T1_hi = sum64_5_hi( + c0_hi, c0_lo, + c1_hi, c1_lo, + c2_hi, c2_lo, + c3_hi, c3_lo, + c4_hi, c4_lo); + var T1_lo = sum64_5_lo( + c0_hi, c0_lo, + c1_hi, c1_lo, + c2_hi, c2_lo, + c3_hi, c3_lo, + c4_hi, c4_lo); + + c0_hi = s0_512_hi(ah, al); + c0_lo = s0_512_lo(ah, al); + c1_hi = maj64_hi(ah, al, bh, bl, ch, cl); + c1_lo = maj64_lo(ah, al, bh, bl, ch, cl); var T2_hi = sum64_hi(c0_hi, c0_lo, c1_hi, c1_lo); var T2_lo = sum64_lo(c0_hi, c0_lo, c1_hi, c1_lo); @@ -54710,130 +50815,7 @@ SHA512.prototype._digest = function digest(enc) { return utils.split32(this.h, 'big'); }; -function SHA384() { - if (!(this instanceof SHA384)) - return new SHA384(); - - SHA512.call(this); - this.h = [ 0xcbbb9d5d, 0xc1059ed8, - 0x629a292a, 0x367cd507, - 0x9159015a, 0x3070dd17, - 0x152fecd8, 0xf70e5939, - 0x67332667, 0xffc00b31, - 0x8eb44a87, 0x68581511, - 0xdb0c2e0d, 0x64f98fa7, - 0x47b5481d, 0xbefa4fa4 ]; -} -utils.inherits(SHA384, SHA512); -exports.sha384 = SHA384; - -SHA384.blockSize = 1024; -SHA384.outSize = 384; -SHA384.hmacStrength = 192; -SHA384.padLength = 128; - -SHA384.prototype._digest = function digest(enc) { - if (enc === 'hex') - return utils.toHex32(this.h.slice(0, 12), 'big'); - else - return utils.split32(this.h.slice(0, 12), 'big'); -}; - -function SHA1() { - if (!(this instanceof SHA1)) - return new SHA1(); - - BlockHash.call(this); - this.h = [ 0x67452301, 0xefcdab89, 0x98badcfe, - 0x10325476, 0xc3d2e1f0 ]; - this.W = new Array(80); -} - -utils.inherits(SHA1, BlockHash); -exports.sha1 = SHA1; - -SHA1.blockSize = 512; -SHA1.outSize = 160; -SHA1.hmacStrength = 80; -SHA1.padLength = 64; - -SHA1.prototype._update = function _update(msg, start) { - var W = this.W; - - for (var i = 0; i < 16; i++) - W[i] = msg[start + i]; - - for(; i < W.length; i++) - W[i] = rotl32(W[i - 3] ^ W[i - 8] ^ W[i - 14] ^ W[i - 16], 1); - - var a = this.h[0]; - var b = this.h[1]; - var c = this.h[2]; - var d = this.h[3]; - var e = this.h[4]; - - for (var i = 0; i < W.length; i++) { - var s = ~~(i / 20); - var t = sum32_5(rotl32(a, 5), ft_1(s, b, c, d), e, W[i], sha1_K[s]); - e = d; - d = c; - c = rotl32(b, 30); - b = a; - a = t; - } - - this.h[0] = sum32(this.h[0], a); - this.h[1] = sum32(this.h[1], b); - this.h[2] = sum32(this.h[2], c); - this.h[3] = sum32(this.h[3], d); - this.h[4] = sum32(this.h[4], e); -}; - -SHA1.prototype._digest = function digest(enc) { - if (enc === 'hex') - return utils.toHex32(this.h, 'big'); - else - return utils.split32(this.h, 'big'); -}; - -function ch32(x, y, z) { - return (x & y) ^ ((~x) & z); -} - -function maj32(x, y, z) { - return (x & y) ^ (x & z) ^ (y & z); -} - -function p32(x, y, z) { - return x ^ y ^ z; -} - -function s0_256(x) { - return rotr32(x, 2) ^ rotr32(x, 13) ^ rotr32(x, 22); -} - -function s1_256(x) { - return rotr32(x, 6) ^ rotr32(x, 11) ^ rotr32(x, 25); -} - -function g0_256(x) { - return rotr32(x, 7) ^ rotr32(x, 18) ^ (x >>> 3); -} - -function g1_256(x) { - return rotr32(x, 17) ^ rotr32(x, 19) ^ (x >>> 10); -} - -function ft_1(s, x, y, z) { - if (s === 0) - return ch32(x, y, z); - if (s === 1 || s === 3) - return p32(x, y, z); - if (s === 2) - return maj32(x, y, z); -} - -function ch64_hi(xh, xl, yh, yl, zh, zl) { +function ch64_hi(xh, xl, yh, yl, zh) { var r = (xh & yh) ^ ((~xh) & zh); if (r < 0) r += 0x100000000; @@ -54847,7 +50829,7 @@ function ch64_lo(xh, xl, yh, yl, zh, zl) { return r; } -function maj64_hi(xh, xl, yh, yl, zh, zl) { +function maj64_hi(xh, xl, yh, yl, zh) { var r = (xh & yh) ^ (xh & zh) ^ (yh & zh); if (r < 0) r += 0x100000000; @@ -54949,10 +50931,65 @@ function g1_512_lo(xh, xl) { return r; } -},{"../hash":89}],94:[function(require,module,exports){ -var utils = exports; +},{"../common":91,"../utils":101,"minimalistic-assert":110}],100:[function(require,module,exports){ +'use strict'; + +var utils = require('../utils'); +var rotr32 = utils.rotr32; + +function ft_1(s, x, y, z) { + if (s === 0) + return ch32(x, y, z); + if (s === 1 || s === 3) + return p32(x, y, z); + if (s === 2) + return maj32(x, y, z); +} +exports.ft_1 = ft_1; + +function ch32(x, y, z) { + return (x & y) ^ ((~x) & z); +} +exports.ch32 = ch32; + +function maj32(x, y, z) { + return (x & y) ^ (x & z) ^ (y & z); +} +exports.maj32 = maj32; + +function p32(x, y, z) { + return x ^ y ^ z; +} +exports.p32 = p32; + +function s0_256(x) { + return rotr32(x, 2) ^ rotr32(x, 13) ^ rotr32(x, 22); +} +exports.s0_256 = s0_256; + +function s1_256(x) { + return rotr32(x, 6) ^ rotr32(x, 11) ^ rotr32(x, 25); +} +exports.s1_256 = s1_256; + +function g0_256(x) { + return rotr32(x, 7) ^ rotr32(x, 18) ^ (x >>> 3); +} +exports.g0_256 = g0_256; + +function g1_256(x) { + return rotr32(x, 17) ^ rotr32(x, 19) ^ (x >>> 10); +} +exports.g1_256 = g1_256; + +},{"../utils":101}],101:[function(require,module,exports){ +'use strict'; + +var assert = require('minimalistic-assert'); var inherits = require('inherits'); +exports.inherits = inherits; + function toArray(msg, enc) { if (Array.isArray(msg)) return msg.slice(); @@ -54974,16 +51011,16 @@ function toArray(msg, enc) { msg = msg.replace(/[^a-z0-9]+/ig, ''); if (msg.length % 2 !== 0) msg = '0' + msg; - for (var i = 0; i < msg.length; i += 2) + for (i = 0; i < msg.length; i += 2) res.push(parseInt(msg[i] + msg[i + 1], 16)); } } else { - for (var i = 0; i < msg.length; i++) + for (i = 0; i < msg.length; i++) res[i] = msg[i] | 0; } return res; } -utils.toArray = toArray; +exports.toArray = toArray; function toHex(msg) { var res = ''; @@ -54991,7 +51028,7 @@ function toHex(msg) { res += zero2(msg[i].toString(16)); return res; } -utils.toHex = toHex; +exports.toHex = toHex; function htonl(w) { var res = (w >>> 24) | @@ -55000,7 +51037,7 @@ function htonl(w) { ((w & 0xff) << 24); return res >>> 0; } -utils.htonl = htonl; +exports.htonl = htonl; function toHex32(msg, endian) { var res = ''; @@ -55012,7 +51049,7 @@ function toHex32(msg, endian) { } return res; } -utils.toHex32 = toHex32; +exports.toHex32 = toHex32; function zero2(word) { if (word.length === 1) @@ -55020,7 +51057,7 @@ function zero2(word) { else return word; } -utils.zero2 = zero2; +exports.zero2 = zero2; function zero8(word) { if (word.length === 7) @@ -55040,7 +51077,7 @@ function zero8(word) { else return word; } -utils.zero8 = zero8; +exports.zero8 = zero8; function join32(msg, start, end, endian) { var len = end - start; @@ -55056,7 +51093,7 @@ function join32(msg, start, end, endian) { } return res; } -utils.join32 = join32; +exports.join32 = join32; function split32(msg, endian) { var res = new Array(msg.length * 4); @@ -55076,45 +51113,37 @@ function split32(msg, endian) { } return res; } -utils.split32 = split32; +exports.split32 = split32; function rotr32(w, b) { return (w >>> b) | (w << (32 - b)); } -utils.rotr32 = rotr32; +exports.rotr32 = rotr32; function rotl32(w, b) { return (w << b) | (w >>> (32 - b)); } -utils.rotl32 = rotl32; +exports.rotl32 = rotl32; function sum32(a, b) { return (a + b) >>> 0; } -utils.sum32 = sum32; +exports.sum32 = sum32; function sum32_3(a, b, c) { return (a + b + c) >>> 0; } -utils.sum32_3 = sum32_3; +exports.sum32_3 = sum32_3; function sum32_4(a, b, c, d) { return (a + b + c + d) >>> 0; } -utils.sum32_4 = sum32_4; +exports.sum32_4 = sum32_4; function sum32_5(a, b, c, d, e) { return (a + b + c + d + e) >>> 0; } -utils.sum32_5 = sum32_5; - -function assert(cond, msg) { - if (!cond) - throw new Error(msg || 'Assertion failed'); -} -utils.assert = assert; - -utils.inherits = inherits; +exports.sum32_5 = sum32_5; function sum64(buf, pos, ah, al) { var bh = buf[pos]; @@ -55131,13 +51160,13 @@ function sum64_hi(ah, al, bh, bl) { var lo = (al + bl) >>> 0; var hi = (lo < al ? 1 : 0) + ah + bh; return hi >>> 0; -}; +} exports.sum64_hi = sum64_hi; function sum64_lo(ah, al, bh, bl) { var lo = al + bl; return lo >>> 0; -}; +} exports.sum64_lo = sum64_lo; function sum64_4_hi(ah, al, bh, bl, ch, cl, dh, dl) { @@ -55152,13 +51181,13 @@ function sum64_4_hi(ah, al, bh, bl, ch, cl, dh, dl) { var hi = ah + bh + ch + dh + carry; return hi >>> 0; -}; +} exports.sum64_4_hi = sum64_4_hi; function sum64_4_lo(ah, al, bh, bl, ch, cl, dh, dl) { var lo = al + bl + cl + dl; return lo >>> 0; -}; +} exports.sum64_4_lo = sum64_4_lo; function sum64_5_hi(ah, al, bh, bl, ch, cl, dh, dl, eh, el) { @@ -55175,40 +51204,155 @@ function sum64_5_hi(ah, al, bh, bl, ch, cl, dh, dl, eh, el) { var hi = ah + bh + ch + dh + eh + carry; return hi >>> 0; -}; +} exports.sum64_5_hi = sum64_5_hi; function sum64_5_lo(ah, al, bh, bl, ch, cl, dh, dl, eh, el) { var lo = al + bl + cl + dl + el; return lo >>> 0; -}; +} exports.sum64_5_lo = sum64_5_lo; function rotr64_hi(ah, al, num) { var r = (al << (32 - num)) | (ah >>> num); return r >>> 0; -}; +} exports.rotr64_hi = rotr64_hi; function rotr64_lo(ah, al, num) { var r = (ah << (32 - num)) | (al >>> num); return r >>> 0; -}; +} exports.rotr64_lo = rotr64_lo; function shr64_hi(ah, al, num) { return ah >>> num; -}; +} exports.shr64_hi = shr64_hi; function shr64_lo(ah, al, num) { var r = (ah << (32 - num)) | (al >>> num); return r >>> 0; -}; +} exports.shr64_lo = shr64_lo; -},{"inherits":97}],95:[function(require,module,exports){ +},{"inherits":105,"minimalistic-assert":110}],102:[function(require,module,exports){ +'use strict'; + +var hash = require('hash.js'); +var utils = require('minimalistic-crypto-utils'); +var assert = require('minimalistic-assert'); + +function HmacDRBG(options) { + if (!(this instanceof HmacDRBG)) + return new HmacDRBG(options); + this.hash = options.hash; + this.predResist = !!options.predResist; + + this.outLen = this.hash.outSize; + this.minEntropy = options.minEntropy || this.hash.hmacStrength; + + this._reseed = null; + this.reseedInterval = null; + this.K = null; + this.V = null; + + var entropy = utils.toArray(options.entropy, options.entropyEnc || 'hex'); + var nonce = utils.toArray(options.nonce, options.nonceEnc || 'hex'); + var pers = utils.toArray(options.pers, options.persEnc || 'hex'); + assert(entropy.length >= (this.minEntropy / 8), + 'Not enough entropy. Minimum is: ' + this.minEntropy + ' bits'); + this._init(entropy, nonce, pers); +} +module.exports = HmacDRBG; + +HmacDRBG.prototype._init = function init(entropy, nonce, pers) { + var seed = entropy.concat(nonce).concat(pers); + + this.K = new Array(this.outLen / 8); + this.V = new Array(this.outLen / 8); + for (var i = 0; i < this.V.length; i++) { + this.K[i] = 0x00; + this.V[i] = 0x01; + } + + this._update(seed); + this._reseed = 1; + this.reseedInterval = 0x1000000000000; // 2^48 +}; + +HmacDRBG.prototype._hmac = function hmac() { + return new hash.hmac(this.hash, this.K); +}; + +HmacDRBG.prototype._update = function update(seed) { + var kmac = this._hmac() + .update(this.V) + .update([ 0x00 ]); + if (seed) + kmac = kmac.update(seed); + this.K = kmac.digest(); + this.V = this._hmac().update(this.V).digest(); + if (!seed) + return; + + this.K = this._hmac() + .update(this.V) + .update([ 0x01 ]) + .update(seed) + .digest(); + this.V = this._hmac().update(this.V).digest(); +}; + +HmacDRBG.prototype.reseed = function reseed(entropy, entropyEnc, add, addEnc) { + // Optional entropy enc + if (typeof entropyEnc !== 'string') { + addEnc = add; + add = entropyEnc; + entropyEnc = null; + } + + entropy = utils.toArray(entropy, entropyEnc); + add = utils.toArray(add, addEnc); + + assert(entropy.length >= (this.minEntropy / 8), + 'Not enough entropy. Minimum is: ' + this.minEntropy + ' bits'); + + this._update(entropy.concat(add || [])); + this._reseed = 1; +}; + +HmacDRBG.prototype.generate = function generate(len, enc, add, addEnc) { + if (this._reseed > this.reseedInterval) + throw new Error('Reseed is required'); + + // Optional encoding + if (typeof enc !== 'string') { + addEnc = add; + add = enc; + enc = null; + } + + // Optional additional data + if (add) { + add = utils.toArray(add, addEnc || 'hex'); + this._update(add); + } + + var temp = []; + while (temp.length < len) { + this.V = this._hmac().update(this.V).digest(); + temp = temp.concat(this.V); + } + + var res = temp.slice(0, len); + this._update(add); + this._reseed++; + return utils.encode(res, enc); +}; + +},{"hash.js":90,"minimalistic-assert":110,"minimalistic-crypto-utils":111}],103:[function(require,module,exports){ exports.read = function (buffer, offset, isLE, mLen, nBytes) { var e, m var eLen = nBytes * 8 - mLen - 1 @@ -55294,7 +51438,7 @@ exports.write = function (buffer, value, offset, isLE, mLen, nBytes) { buffer[offset + i - d] |= s * 128 } -},{}],96:[function(require,module,exports){ +},{}],104:[function(require,module,exports){ var indexOf = [].indexOf; @@ -55305,7 +51449,7 @@ module.exports = function(arr, obj){ } return -1; }; -},{}],97:[function(require,module,exports){ +},{}],105:[function(require,module,exports){ if (typeof Object.create === 'function') { // implementation from standard node.js 'util' module module.exports = function inherits(ctor, superCtor) { @@ -55330,7 +51474,7 @@ if (typeof Object.create === 'function') { } } -},{}],98:[function(require,module,exports){ +},{}],106:[function(require,module,exports){ /*! * Determine if an object is a Buffer * @@ -55353,14 +51497,14 @@ function isSlowBuffer (obj) { return typeof obj.readFloatLE === 'function' && typeof obj.slice === 'function' && isBuffer(obj.slice(0, 0)) } -},{}],99:[function(require,module,exports){ +},{}],107:[function(require,module,exports){ var toString = {}.toString; module.exports = Array.isArray || function (arr) { return toString.call(arr) == '[object Array]'; }; -},{}],100:[function(require,module,exports){ +},{}],108:[function(require,module,exports){ /* Copyright 2013 Daniel Wirtz Copyright 2009 The Closure Library Authors. All Rights Reserved. @@ -56571,7 +52715,7 @@ module.exports = Array.isArray || function (arr) { return Long; }); -},{}],101:[function(require,module,exports){ +},{}],109:[function(require,module,exports){ var bn = require('bn.js'); var brorand = require('brorand'); @@ -56686,7 +52830,7 @@ MillerRabin.prototype.getDivisor = function getDivisor(n, k) { return false; }; -},{"bn.js":19,"brorand":20}],102:[function(require,module,exports){ +},{"bn.js":19,"brorand":20}],110:[function(require,module,exports){ module.exports = assert; function assert(val, msg) { @@ -56699,7 +52843,67 @@ assert.equal = function assertEqual(l, r, msg) { throw new Error(msg || ('Assertion failed: ' + l + ' != ' + r)); }; -},{}],103:[function(require,module,exports){ +},{}],111:[function(require,module,exports){ +'use strict'; + +var utils = exports; + +function toArray(msg, enc) { + if (Array.isArray(msg)) + return msg.slice(); + if (!msg) + return []; + var res = []; + if (typeof msg !== 'string') { + for (var i = 0; i < msg.length; i++) + res[i] = msg[i] | 0; + return res; + } + if (enc === 'hex') { + msg = msg.replace(/[^a-z0-9]+/ig, ''); + if (msg.length % 2 !== 0) + msg = '0' + msg; + for (var i = 0; i < msg.length; i += 2) + res.push(parseInt(msg[i] + msg[i + 1], 16)); + } else { + for (var i = 0; i < msg.length; i++) { + var c = msg.charCodeAt(i); + var hi = c >> 8; + var lo = c & 0xff; + if (hi) + res.push(hi, lo); + else + res.push(lo); + } + } + return res; +} +utils.toArray = toArray; + +function zero2(word) { + if (word.length === 1) + return '0' + word; + else + return word; +} +utils.zero2 = zero2; + +function toHex(msg) { + var res = ''; + for (var i = 0; i < msg.length; i++) + res += zero2(msg[i].toString(16)); + return res; +} +utils.toHex = toHex; + +utils.encode = function encode(arr, enc) { + if (enc === 'hex') + return toHex(arr); + else + return arr; +}; + +},{}],112:[function(require,module,exports){ module.exports={"2.16.840.1.101.3.4.1.1": "aes-128-ecb", "2.16.840.1.101.3.4.1.2": "aes-128-cbc", "2.16.840.1.101.3.4.1.3": "aes-128-ofb", @@ -56713,12 +52917,15 @@ module.exports={"2.16.840.1.101.3.4.1.1": "aes-128-ecb", "2.16.840.1.101.3.4.1.43": "aes-256-ofb", "2.16.840.1.101.3.4.1.44": "aes-256-cfb" } -},{}],104:[function(require,module,exports){ +},{}],113:[function(require,module,exports){ // from https://github.com/indutny/self-signed/blob/gh-pages/lib/asn1.js // Fedor, you are amazing. +'use strict' var asn1 = require('asn1.js') +exports.certificate = require('./certificate') + var RSAPrivateKey = asn1.define('RSAPrivateKey', function () { this.seq().obj( this.key('version').int(), @@ -56810,6 +53017,7 @@ exports.DSAPrivateKey = DSAPrivateKey exports.DSAparam = asn1.define('DSAparam', function () { this.int() }) + var ECPrivateKey = asn1.define('ECPrivateKey', function () { this.seq().obj( this.key('version').int(), @@ -56819,6 +53027,7 @@ var ECPrivateKey = asn1.define('ECPrivateKey', function () { ) }) exports.ECPrivateKey = ECPrivateKey + var ECParameters = asn1.define('ECParameters', function () { this.choice({ namedCurve: this.objid() @@ -56832,12 +53041,102 @@ exports.signature = asn1.define('signature', function () { ) }) -},{"asn1.js":4}],105:[function(require,module,exports){ +},{"./certificate":114,"asn1.js":4}],114:[function(require,module,exports){ +// from https://github.com/Rantanen/node-dtls/blob/25a7dc861bda38cfeac93a723500eea4f0ac2e86/Certificate.js +// thanks to @Rantanen + +'use strict' + +var asn = require('asn1.js') + +var Time = asn.define('Time', function () { + this.choice({ + utcTime: this.utctime(), + generalTime: this.gentime() + }) +}) + +var AttributeTypeValue = asn.define('AttributeTypeValue', function () { + this.seq().obj( + this.key('type').objid(), + this.key('value').any() + ) +}) + +var AlgorithmIdentifier = asn.define('AlgorithmIdentifier', function () { + this.seq().obj( + this.key('algorithm').objid(), + this.key('parameters').optional() + ) +}) + +var SubjectPublicKeyInfo = asn.define('SubjectPublicKeyInfo', function () { + this.seq().obj( + this.key('algorithm').use(AlgorithmIdentifier), + this.key('subjectPublicKey').bitstr() + ) +}) + +var RelativeDistinguishedName = asn.define('RelativeDistinguishedName', function () { + this.setof(AttributeTypeValue) +}) + +var RDNSequence = asn.define('RDNSequence', function () { + this.seqof(RelativeDistinguishedName) +}) + +var Name = asn.define('Name', function () { + this.choice({ + rdnSequence: this.use(RDNSequence) + }) +}) + +var Validity = asn.define('Validity', function () { + this.seq().obj( + this.key('notBefore').use(Time), + this.key('notAfter').use(Time) + ) +}) + +var Extension = asn.define('Extension', function () { + this.seq().obj( + this.key('extnID').objid(), + this.key('critical').bool().def(false), + this.key('extnValue').octstr() + ) +}) + +var TBSCertificate = asn.define('TBSCertificate', function () { + this.seq().obj( + this.key('version').explicit(0).int(), + this.key('serialNumber').int(), + this.key('signature').use(AlgorithmIdentifier), + this.key('issuer').use(Name), + this.key('validity').use(Validity), + this.key('subject').use(Name), + this.key('subjectPublicKeyInfo').use(SubjectPublicKeyInfo), + this.key('issuerUniqueID').implicit(1).bitstr().optional(), + this.key('subjectUniqueID').implicit(2).bitstr().optional(), + this.key('extensions').explicit(3).seqof(Extension).optional() + ) +}) + +var X509Certificate = asn.define('X509Certificate', function () { + this.seq().obj( + this.key('tbsCertificate').use(TBSCertificate), + this.key('signatureAlgorithm').use(AlgorithmIdentifier), + this.key('signatureValue').bitstr() + ) +}) + +module.exports = X509Certificate + +},{"asn1.js":4}],115:[function(require,module,exports){ (function (Buffer){ // adapted from https://github.com/apatil/pemstrip -var findProc = /Proc-Type: 4,ENCRYPTED\r?\nDEK-Info: AES-((?:128)|(?:192)|(?:256))-CBC,([0-9A-H]+)\r?\n\r?\n([0-9A-z\n\r\+\/\=]+)\r?\n/m -var startRegex = /^-----BEGIN (.*) KEY-----\r?\n/m -var fullRegex = /^-----BEGIN (.*) KEY-----\r?\n([0-9A-z\n\r\+\/\=]+)\r?\n-----END \1 KEY-----$/m +var findProc = /Proc-Type: 4,ENCRYPTED\n\r?DEK-Info: AES-((?:128)|(?:192)|(?:256))-CBC,([0-9A-H]+)\n\r?\n\r?([0-9A-z\n\r\+\/\=]+)\n\r?/m +var startRegex = /^-----BEGIN ((?:.* KEY)|CERTIFICATE)-----\n/m +var fullRegex = /^-----BEGIN ((?:.* KEY)|CERTIFICATE)-----\n\r?([0-9A-z\n\r\+\/\=]+)\n\r?-----END \1-----$/m var evp = require('evp_bytestokey') var ciphers = require('browserify-aes') module.exports = function (okey, password) { @@ -56858,7 +53157,7 @@ module.exports = function (okey, password) { out.push(cipher.final()) decrypted = Buffer.concat(out) } - var tag = key.match(startRegex)[1] + ' KEY' + var tag = key.match(startRegex)[1] return { tag: tag, data: decrypted @@ -56866,7 +53165,7 @@ module.exports = function (okey, password) { } }).call(this,require("buffer").Buffer) -},{"browserify-aes":24,"buffer":49,"evp_bytestokey":88}],106:[function(require,module,exports){ +},{"browserify-aes":24,"buffer":49,"evp_bytestokey":88}],116:[function(require,module,exports){ (function (Buffer){ var asn1 = require('./asn1') var aesid = require('./aesid.json') @@ -56891,8 +53190,13 @@ function parseKeys (buffer) { var data = stripped.data var subtype, ndata switch (type) { + case 'CERTIFICATE': + ndata = asn1.certificate.decode(data, 'der').tbsCertificate.subjectPublicKeyInfo + // falls through case 'PUBLIC KEY': - ndata = asn1.PublicKey.decode(data, 'der') + if (!ndata) { + ndata = asn1.PublicKey.decode(data, 'der') + } subtype = ndata.algorithm.algorithm.join('.') switch (subtype) { case '1.2.840.113549.1.1.1': @@ -56971,7 +53275,7 @@ function decrypt (data, password) { } }).call(this,require("buffer").Buffer) -},{"./aesid.json":103,"./asn1":104,"./fixProc":105,"browserify-aes":24,"buffer":49,"pbkdf2":108}],107:[function(require,module,exports){ +},{"./aesid.json":112,"./asn1":113,"./fixProc":115,"browserify-aes":24,"buffer":49,"pbkdf2":118}],117:[function(require,module,exports){ (function (process){ // Copyright Joyent, Inc. and other Node contributors. // @@ -57199,26 +53503,118 @@ var substr = 'ab'.substr(-1) === 'b' ; }).call(this,require('_process')) -},{"_process":111}],108:[function(require,module,exports){ -(function (process,Buffer){ -var createHmac = require('create-hmac') +},{"_process":124}],118:[function(require,module,exports){ + +exports.pbkdf2 = require('./lib/async') + +exports.pbkdf2Sync = require('./lib/sync') + +},{"./lib/async":119,"./lib/sync":122}],119:[function(require,module,exports){ +(function (process,global){ var checkParameters = require('./precondition') +var defaultEncoding = require('./default-encoding') +var sync = require('./sync') +var Buffer = require('safe-buffer').Buffer + +var ZERO_BUF +var subtle = global.crypto && global.crypto.subtle +var toBrowser = { + 'sha': 'SHA-1', + 'sha-1': 'SHA-1', + 'sha1': 'SHA-1', + 'sha256': 'SHA-256', + 'sha-256': 'SHA-256', + 'sha384': 'SHA-384', + 'sha-384': 'SHA-384', + 'sha-512': 'SHA-512', + 'sha512': 'SHA-512' +} +var checks = [] +function checkNative (algo) { + if (global.process && !global.process.browser) { + return Promise.resolve(false) + } + if (!subtle || !subtle.importKey || !subtle.deriveBits) { + return Promise.resolve(false) + } + if (checks[algo] !== undefined) { + return checks[algo] + } + ZERO_BUF = ZERO_BUF || Buffer.alloc(8) + var prom = browserPbkdf2(ZERO_BUF, ZERO_BUF, 10, 128, algo) + .then(function () { + return true + }).catch(function () { + return false + }) + checks[algo] = prom + return prom +} +function browserPbkdf2 (password, salt, iterations, length, algo) { + return subtle.importKey( + 'raw', password, {name: 'PBKDF2'}, false, ['deriveBits'] + ).then(function (key) { + return subtle.deriveBits({ + name: 'PBKDF2', + salt: salt, + iterations: iterations, + hash: { + name: algo + } + }, key, length << 3) + }).then(function (res) { + return Buffer.from(res) + }) +} +function resolvePromise (promise, callback) { + promise.then(function (out) { + process.nextTick(function () { + callback(null, out) + }) + }, function (e) { + process.nextTick(function () { + callback(e) + }) + }) +} +module.exports = function (password, salt, iterations, keylen, digest, callback) { + if (!Buffer.isBuffer(password)) password = Buffer.from(password, defaultEncoding) + if (!Buffer.isBuffer(salt)) salt = Buffer.from(salt, defaultEncoding) -exports.pbkdf2 = function (password, salt, iterations, keylen, digest, callback) { + checkParameters(iterations, keylen) if (typeof digest === 'function') { callback = digest digest = undefined } - - checkParameters(iterations, keylen) if (typeof callback !== 'function') throw new Error('No callback provided to pbkdf2') - setTimeout(function () { - callback(null, exports.pbkdf2Sync(password, salt, iterations, keylen, digest)) - }) + digest = digest || 'sha1' + var algo = toBrowser[digest.toLowerCase()] + if (!algo || typeof global.Promise !== 'function') { + return process.nextTick(function () { + var out + try { + out = sync(password, salt, iterations, keylen, digest) + } catch (e) { + return callback(e) + } + callback(null, out) + }) + } + resolvePromise(checkNative(algo).then(function (resp) { + if (resp) { + return browserPbkdf2(password, salt, iterations, keylen, algo) + } else { + return sync(password, salt, iterations, keylen, digest) + } + }), callback) } +}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) +},{"./default-encoding":120,"./precondition":121,"./sync":122,"_process":124,"safe-buffer":147}],120:[function(require,module,exports){ +(function (process){ var defaultEncoding +/* istanbul ignore next */ if (process.browser) { defaultEncoding = 'utf-8' } else { @@ -57226,72 +53622,133 @@ if (process.browser) { defaultEncoding = pVersionMajor >= 6 ? 'utf-8' : 'binary' } +module.exports = defaultEncoding + +}).call(this,require('_process')) +},{"_process":124}],121:[function(require,module,exports){ +var MAX_ALLOC = Math.pow(2, 30) - 1 // default in iojs +module.exports = function (iterations, keylen) { + if (typeof iterations !== 'number') { + throw new TypeError('Iterations not a number') + } + + if (iterations < 0) { + throw new TypeError('Bad iterations') + } + + if (typeof keylen !== 'number') { + throw new TypeError('Key length not a number') + } + + if (keylen < 0 || keylen > MAX_ALLOC || keylen !== keylen) { /* eslint no-self-compare: 0 */ + throw new TypeError('Bad key length') + } +} + +},{}],122:[function(require,module,exports){ +var md5 = require('create-hash/md5') +var rmd160 = require('ripemd160') +var sha = require('sha.js') + +var checkParameters = require('./precondition') +var defaultEncoding = require('./default-encoding') +var Buffer = require('safe-buffer').Buffer +var ZEROS = Buffer.alloc(128) +var sizes = { + md5: 16, + sha1: 20, + sha224: 28, + sha256: 32, + sha384: 48, + sha512: 64, + rmd160: 20, + ripemd160: 20 +} + +function Hmac (alg, key, saltLen) { + var hash = getDigest(alg) + var blocksize = (alg === 'sha512' || alg === 'sha384') ? 128 : 64 + + if (key.length > blocksize) { + key = hash(key) + } else if (key.length < blocksize) { + key = Buffer.concat([key, ZEROS], blocksize) + } + + var ipad = Buffer.allocUnsafe(blocksize + sizes[alg]) + var opad = Buffer.allocUnsafe(blocksize + sizes[alg]) + for (var i = 0; i < blocksize; i++) { + ipad[i] = key[i] ^ 0x36 + opad[i] = key[i] ^ 0x5C + } + + var ipad1 = Buffer.allocUnsafe(blocksize + saltLen + 4) + ipad.copy(ipad1, 0, 0, blocksize) + this.ipad1 = ipad1 + this.ipad2 = ipad + this.opad = opad + this.alg = alg + this.blocksize = blocksize + this.hash = hash + this.size = sizes[alg] +} + +Hmac.prototype.run = function (data, ipad) { + data.copy(ipad, this.blocksize) + var h = this.hash(ipad) + h.copy(this.opad, this.blocksize) + return this.hash(this.opad) +} + +function getDigest (alg) { + function shaFunc (data) { + return sha(alg).update(data).digest() + } + + if (alg === 'rmd160' || alg === 'ripemd160') return rmd160 + if (alg === 'md5') return md5 + return shaFunc +} -exports.pbkdf2Sync = function (password, salt, iterations, keylen, digest) { - if (!Buffer.isBuffer(password)) password = new Buffer(password, defaultEncoding) - if (!Buffer.isBuffer(salt)) salt = new Buffer(salt, defaultEncoding) +function pbkdf2 (password, salt, iterations, keylen, digest) { + if (!Buffer.isBuffer(password)) password = Buffer.from(password, defaultEncoding) + if (!Buffer.isBuffer(salt)) salt = Buffer.from(salt, defaultEncoding) checkParameters(iterations, keylen) digest = digest || 'sha1' - var hLen - var l = 1 - var DK = new Buffer(keylen) - var block1 = new Buffer(salt.length + 4) + var hmac = new Hmac(digest, password, salt.length) + + var DK = Buffer.allocUnsafe(keylen) + var block1 = Buffer.allocUnsafe(salt.length + 4) salt.copy(block1, 0, 0, salt.length) - var r - var T + var destPos = 0 + var hLen = sizes[digest] + var l = Math.ceil(keylen / hLen) for (var i = 1; i <= l; i++) { block1.writeUInt32BE(i, salt.length) - var U = createHmac(digest, password).update(block1).digest() - - if (!hLen) { - hLen = U.length - T = new Buffer(hLen) - l = Math.ceil(keylen / hLen) - r = keylen - (l - 1) * hLen - } - U.copy(T, 0, 0, hLen) + var T = hmac.run(block1, hmac.ipad1) + var U = T for (var j = 1; j < iterations; j++) { - U = createHmac(digest, password).update(U).digest() + U = hmac.run(U, hmac.ipad2) for (var k = 0; k < hLen; k++) T[k] ^= U[k] } - var destPos = (i - 1) * hLen - var len = (i === l ? r : hLen) - T.copy(DK, destPos, 0, len) + T.copy(DK, destPos) + destPos += hLen } return DK } -}).call(this,require('_process'),require("buffer").Buffer) -},{"./precondition":109,"_process":111,"buffer":49,"create-hmac":58}],109:[function(require,module,exports){ -var MAX_ALLOC = Math.pow(2, 30) - 1 // default in iojs -module.exports = function (iterations, keylen) { - if (typeof iterations !== 'number') { - throw new TypeError('Iterations not a number') - } +module.exports = pbkdf2 - if (iterations < 0) { - throw new TypeError('Bad iterations') - } - - if (typeof keylen !== 'number') { - throw new TypeError('Key length not a number') - } - - if (keylen < 0 || keylen > MAX_ALLOC || keylen !== keylen) { /* eslint no-self-compare: 0 */ - throw new TypeError('Bad key length') - } -} - -},{}],110:[function(require,module,exports){ +},{"./default-encoding":120,"./precondition":121,"create-hash/md5":57,"ripemd160":146,"safe-buffer":147,"sha.js":149}],123:[function(require,module,exports){ (function (process){ 'use strict'; @@ -57338,7 +53795,7 @@ function nextTick(fn, arg1, arg2, arg3) { } }).call(this,require('_process')) -},{"_process":111}],111:[function(require,module,exports){ +},{"_process":124}],124:[function(require,module,exports){ // shim for using process in browser var process = module.exports = {}; @@ -57509,6 +53966,10 @@ process.off = noop; process.removeListener = noop; process.removeAllListeners = noop; process.emit = noop; +process.prependListener = noop; +process.prependOnceListener = noop; + +process.listeners = function (name) { return [] } process.binding = function (name) { throw new Error('process.binding is not supported'); @@ -57520,7 +53981,7 @@ process.chdir = function (dir) { }; process.umask = function() { return 0; }; -},{}],112:[function(require,module,exports){ +},{}],125:[function(require,module,exports){ exports.publicEncrypt = require('./publicEncrypt'); exports.privateDecrypt = require('./privateDecrypt'); @@ -57531,7 +53992,7 @@ exports.privateEncrypt = function privateEncrypt(key, buf) { exports.publicDecrypt = function publicDecrypt(key, buf) { return exports.privateDecrypt(key, buf, true); }; -},{"./privateDecrypt":114,"./publicEncrypt":115}],113:[function(require,module,exports){ +},{"./privateDecrypt":127,"./publicEncrypt":128}],126:[function(require,module,exports){ (function (Buffer){ var createHash = require('create-hash'); module.exports = function (seed, len) { @@ -57550,7 +54011,7 @@ function i2ops(c) { return out; } }).call(this,require("buffer").Buffer) -},{"buffer":49,"create-hash":55}],114:[function(require,module,exports){ +},{"buffer":49,"create-hash":55}],127:[function(require,module,exports){ (function (Buffer){ var parseKeys = require('parse-asn1'); var mgf = require('./mgf'); @@ -57661,7 +54122,7 @@ function compare(a, b){ return dif; } }).call(this,require("buffer").Buffer) -},{"./mgf":113,"./withPublic":116,"./xor":117,"bn.js":19,"browserify-rsa":40,"buffer":49,"create-hash":55,"parse-asn1":106}],115:[function(require,module,exports){ +},{"./mgf":126,"./withPublic":129,"./xor":130,"bn.js":19,"browserify-rsa":40,"buffer":49,"create-hash":55,"parse-asn1":116}],128:[function(require,module,exports){ (function (Buffer){ var parseKeys = require('parse-asn1'); var randomBytes = require('randombytes'); @@ -57759,7 +54220,7 @@ function nonZero(len, crypto) { return out; } }).call(this,require("buffer").Buffer) -},{"./mgf":113,"./withPublic":116,"./xor":117,"bn.js":19,"browserify-rsa":40,"buffer":49,"create-hash":55,"parse-asn1":106,"randombytes":118}],116:[function(require,module,exports){ +},{"./mgf":126,"./withPublic":129,"./xor":130,"bn.js":19,"browserify-rsa":40,"buffer":49,"create-hash":55,"parse-asn1":116,"randombytes":131}],129:[function(require,module,exports){ (function (Buffer){ var bn = require('bn.js'); function withPublic(paddedMsg, key) { @@ -57772,7 +54233,7 @@ function withPublic(paddedMsg, key) { module.exports = withPublic; }).call(this,require("buffer").Buffer) -},{"bn.js":19,"buffer":49}],117:[function(require,module,exports){ +},{"bn.js":19,"buffer":49}],130:[function(require,module,exports){ module.exports = function xor(a, b) { var len = a.length; var i = -1; @@ -57781,14 +54242,15 @@ module.exports = function xor(a, b) { } return a }; -},{}],118:[function(require,module,exports){ -(function (process,global,Buffer){ +},{}],131:[function(require,module,exports){ +(function (process,global){ 'use strict' function oldBrowser () { throw new Error('secure random number generation not supported by this browser\nuse chrome, FireFox or Internet Explorer 11') } +var Buffer = require('safe-buffer').Buffer var crypto = global.crypto || global.msCrypto if (crypto && crypto.getRandomValues) { @@ -57808,8 +54270,9 @@ function randomBytes (size, cb) { if (size > 0) { // getRandomValues fails on IE if size == 0 crypto.getRandomValues(rawBytes) } - // phantomjs doesn't like a buffer being passed here - var bytes = new Buffer(rawBytes.buffer) + + // XXX: phantomjs doesn't like a buffer being passed here + var bytes = Buffer.from(rawBytes.buffer) if (typeof cb === 'function') { return process.nextTick(function () { @@ -57820,11 +54283,32 @@ function randomBytes (size, cb) { return bytes } -}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer) -},{"_process":111,"buffer":49}],119:[function(require,module,exports){ -module.exports = require("./lib/_stream_duplex.js") +}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) +},{"_process":124,"safe-buffer":147}],132:[function(require,module,exports){ +module.exports = require('./lib/_stream_duplex.js'); + +},{"./lib/_stream_duplex.js":133}],133:[function(require,module,exports){ +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. -},{"./lib/_stream_duplex.js":120}],120:[function(require,module,exports){ // a duplex stream is just a stream that is both readable and writable. // Since JS doesn't have multiple prototypal inheritance, this class // prototypally inherits from Readable, and then parasitically from @@ -57834,6 +54318,10 @@ module.exports = require("./lib/_stream_duplex.js") /**/ +var processNextTick = require('process-nextick-args'); +/**/ + +/**/ var objectKeys = Object.keys || function (obj) { var keys = []; for (var key in obj) { @@ -57844,10 +54332,6 @@ var objectKeys = Object.keys || function (obj) { module.exports = Duplex; -/**/ -var processNextTick = require('process-nextick-args'); -/**/ - /**/ var util = require('core-util-is'); util.inherits = require('inherits'); @@ -57895,12 +54379,61 @@ function onEndNT(self) { self.end(); } +Object.defineProperty(Duplex.prototype, 'destroyed', { + get: function () { + if (this._readableState === undefined || this._writableState === undefined) { + return false; + } + return this._readableState.destroyed && this._writableState.destroyed; + }, + set: function (value) { + // we ignore the value if the stream + // has not been initialized yet + if (this._readableState === undefined || this._writableState === undefined) { + return; + } + + // backward compatibility, the user is explicitly + // managing destroyed + this._readableState.destroyed = value; + this._writableState.destroyed = value; + } +}); + +Duplex.prototype._destroy = function (err, cb) { + this.push(null); + this.end(); + + processNextTick(cb, err); +}; + function forEach(xs, f) { for (var i = 0, l = xs.length; i < l; i++) { f(xs[i], i); } } -},{"./_stream_readable":122,"./_stream_writable":124,"core-util-is":53,"inherits":97,"process-nextick-args":110}],121:[function(require,module,exports){ +},{"./_stream_readable":135,"./_stream_writable":137,"core-util-is":53,"inherits":105,"process-nextick-args":123}],134:[function(require,module,exports){ +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. + // a passthrough stream. // basically just the most minimal sort of Transform stream. // Every written chunk gets output as-is. @@ -57927,16 +54460,38 @@ function PassThrough(options) { PassThrough.prototype._transform = function (chunk, encoding, cb) { cb(null, chunk); }; -},{"./_stream_transform":123,"core-util-is":53,"inherits":97}],122:[function(require,module,exports){ -(function (process){ -'use strict'; +},{"./_stream_transform":136,"core-util-is":53,"inherits":105}],135:[function(require,module,exports){ +(function (process,global){ +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. -module.exports = Readable; +'use strict'; /**/ + var processNextTick = require('process-nextick-args'); /**/ +module.exports = Readable; + /**/ var isArray = require('isarray'); /**/ @@ -57956,19 +54511,20 @@ var EElistenerCount = function (emitter, type) { /**/ /**/ -var Stream; -(function () { - try { - Stream = require('st' + 'ream'); - } catch (_) {} finally { - if (!Stream) Stream = require('events').EventEmitter; - } -})(); +var Stream = require('./internal/streams/stream'); /**/ -var Buffer = require('buffer').Buffer; +// TODO(bmeurer): Change this back to const once hole checks are +// properly optimized away early in Ignition+TurboFan. /**/ -var bufferShim = require('buffer-shims'); +var Buffer = require('safe-buffer').Buffer; +var OurUint8Array = global.Uint8Array || function () {}; +function _uint8ArrayToBuffer(chunk) { + return Buffer.from(chunk); +} +function _isUint8Array(obj) { + return Buffer.isBuffer(obj) || obj instanceof OurUint8Array; +} /**/ /**/ @@ -57987,10 +54543,13 @@ if (debugUtil && debugUtil.debuglog) { /**/ var BufferList = require('./internal/streams/BufferList'); +var destroyImpl = require('./internal/streams/destroy'); var StringDecoder; util.inherits(Readable, Stream); +var kProxyEvents = ['error', 'close', 'destroy', 'pause', 'resume']; + function prependListener(emitter, event, fn) { // Sadly this is not cacheable as some libraries bundle their own // event emitter implementation with them. @@ -58023,7 +54582,7 @@ function ReadableState(options, stream) { this.highWaterMark = hwm || hwm === 0 ? hwm : defaultHwm; // cast to ints. - this.highWaterMark = ~ ~this.highWaterMark; + this.highWaterMark = Math.floor(this.highWaterMark); // A linked list is used to store data chunks instead of an array because the // linked list can remove elements from the beginning faster than @@ -58037,10 +54596,10 @@ function ReadableState(options, stream) { this.endEmitted = false; this.reading = false; - // a flag to be able to tell if the onwrite cb is called immediately, - // or on a later tick. We set this to true at first, because any - // actions that shouldn't happen until "later" should generally also - // not happen before the first write call. + // a flag to be able to tell if the event 'readable'/'data' is emitted + // immediately, or on a later tick. We set this to true at first, because + // any actions that shouldn't happen until "later" should generally also + // not happen before the first read call. this.sync = true; // whenever we return null, then we set a flag to say @@ -58050,15 +54609,14 @@ function ReadableState(options, stream) { this.readableListening = false; this.resumeScheduled = false; + // has it been destroyed + this.destroyed = false; + // Crypto is kind of old and crusty. Historically, its default string // encoding is 'binary' so we have to make this configurable. // Everything else in the universe uses 'utf8', though. this.defaultEncoding = options.defaultEncoding || 'utf8'; - // when piping, we only care about 'readable' events that happen - // after read()ing all the bytes and not getting any pushback. - this.ranOut = false; - // the number of writers that are awaiting a drain event in .pipe()s this.awaitDrain = 0; @@ -58084,87 +54642,129 @@ function Readable(options) { // legacy this.readable = true; - if (options && typeof options.read === 'function') this._read = options.read; + if (options) { + if (typeof options.read === 'function') this._read = options.read; + + if (typeof options.destroy === 'function') this._destroy = options.destroy; + } Stream.call(this); } +Object.defineProperty(Readable.prototype, 'destroyed', { + get: function () { + if (this._readableState === undefined) { + return false; + } + return this._readableState.destroyed; + }, + set: function (value) { + // we ignore the value if the stream + // has not been initialized yet + if (!this._readableState) { + return; + } + + // backward compatibility, the user is explicitly + // managing destroyed + this._readableState.destroyed = value; + } +}); + +Readable.prototype.destroy = destroyImpl.destroy; +Readable.prototype._undestroy = destroyImpl.undestroy; +Readable.prototype._destroy = function (err, cb) { + this.push(null); + cb(err); +}; + // Manually shove something into the read() buffer. // This returns true if the highWaterMark has not been hit yet, // similar to how Writable.write() returns true if you should // write() some more. Readable.prototype.push = function (chunk, encoding) { var state = this._readableState; - - if (!state.objectMode && typeof chunk === 'string') { - encoding = encoding || state.defaultEncoding; - if (encoding !== state.encoding) { - chunk = bufferShim.from(chunk, encoding); - encoding = ''; + var skipChunkCheck; + + if (!state.objectMode) { + if (typeof chunk === 'string') { + encoding = encoding || state.defaultEncoding; + if (encoding !== state.encoding) { + chunk = Buffer.from(chunk, encoding); + encoding = ''; + } + skipChunkCheck = true; } + } else { + skipChunkCheck = true; } - return readableAddChunk(this, state, chunk, encoding, false); + return readableAddChunk(this, chunk, encoding, false, skipChunkCheck); }; // Unshift should *always* be something directly out of read() Readable.prototype.unshift = function (chunk) { - var state = this._readableState; - return readableAddChunk(this, state, chunk, '', true); -}; - -Readable.prototype.isPaused = function () { - return this._readableState.flowing === false; + return readableAddChunk(this, chunk, null, true, false); }; -function readableAddChunk(stream, state, chunk, encoding, addToFront) { - var er = chunkInvalid(state, chunk); - if (er) { - stream.emit('error', er); - } else if (chunk === null) { +function readableAddChunk(stream, chunk, encoding, addToFront, skipChunkCheck) { + var state = stream._readableState; + if (chunk === null) { state.reading = false; onEofChunk(stream, state); - } else if (state.objectMode || chunk && chunk.length > 0) { - if (state.ended && !addToFront) { - var e = new Error('stream.push() after EOF'); - stream.emit('error', e); - } else if (state.endEmitted && addToFront) { - var _e = new Error('stream.unshift() after end event'); - stream.emit('error', _e); - } else { - var skipAdd; - if (state.decoder && !addToFront && !encoding) { - chunk = state.decoder.write(chunk); - skipAdd = !state.objectMode && chunk.length === 0; + } else { + var er; + if (!skipChunkCheck) er = chunkInvalid(state, chunk); + if (er) { + stream.emit('error', er); + } else if (state.objectMode || chunk && chunk.length > 0) { + if (typeof chunk !== 'string' && !state.objectMode && Object.getPrototypeOf(chunk) !== Buffer.prototype) { + chunk = _uint8ArrayToBuffer(chunk); } - if (!addToFront) state.reading = false; - - // Don't add to the buffer if we've decoded to an empty string chunk and - // we're not in object mode - if (!skipAdd) { - // if we want the data now, just emit it. - if (state.flowing && state.length === 0 && !state.sync) { - stream.emit('data', chunk); - stream.read(0); + if (addToFront) { + if (state.endEmitted) stream.emit('error', new Error('stream.unshift() after end event'));else addChunk(stream, state, chunk, true); + } else if (state.ended) { + stream.emit('error', new Error('stream.push() after EOF')); + } else { + state.reading = false; + if (state.decoder && !encoding) { + chunk = state.decoder.write(chunk); + if (state.objectMode || chunk.length !== 0) addChunk(stream, state, chunk, false);else maybeReadMore(stream, state); } else { - // update the buffer info. - state.length += state.objectMode ? 1 : chunk.length; - if (addToFront) state.buffer.unshift(chunk);else state.buffer.push(chunk); - - if (state.needReadable) emitReadable(stream); + addChunk(stream, state, chunk, false); } } - - maybeReadMore(stream, state); + } else if (!addToFront) { + state.reading = false; } - } else if (!addToFront) { - state.reading = false; } return needMoreData(state); } +function addChunk(stream, state, chunk, addToFront) { + if (state.flowing && state.length === 0 && !state.sync) { + stream.emit('data', chunk); + stream.read(0); + } else { + // update the buffer info. + state.length += state.objectMode ? 1 : chunk.length; + if (addToFront) state.buffer.unshift(chunk);else state.buffer.push(chunk); + + if (state.needReadable) emitReadable(stream); + } + maybeReadMore(stream, state); +} + +function chunkInvalid(state, chunk) { + var er; + if (!_isUint8Array(chunk) && typeof chunk !== 'string' && chunk !== undefined && !state.objectMode) { + er = new TypeError('Invalid non-string/buffer chunk'); + } + return er; +} + // if it's past the high water mark, we can push in some more. // Also, if we have no data yet, we can stand some // more bytes. This is to work around cases where hwm=0, @@ -58176,6 +54776,10 @@ function needMoreData(state) { return !state.ended && (state.needReadable || state.length < state.highWaterMark || state.length === 0); } +Readable.prototype.isPaused = function () { + return this._readableState.flowing === false; +}; + // backwards compatibility. Readable.prototype.setEncoding = function (enc) { if (!StringDecoder) StringDecoder = require('string_decoder/').StringDecoder; @@ -58324,14 +54928,6 @@ Readable.prototype.read = function (n) { return ret; }; -function chunkInvalid(state, chunk) { - var er = null; - if (!Buffer.isBuffer(chunk) && typeof chunk !== 'string' && chunk !== null && chunk !== undefined && !state.objectMode) { - er = new TypeError('Invalid non-string/buffer chunk'); - } - return er; -} - function onEofChunk(stream, state) { if (state.ended) return; if (state.decoder) { @@ -58419,14 +55015,17 @@ Readable.prototype.pipe = function (dest, pipeOpts) { var doEnd = (!pipeOpts || pipeOpts.end !== false) && dest !== process.stdout && dest !== process.stderr; - var endFn = doEnd ? onend : cleanup; + var endFn = doEnd ? onend : unpipe; if (state.endEmitted) processNextTick(endFn);else src.once('end', endFn); dest.on('unpipe', onunpipe); - function onunpipe(readable) { + function onunpipe(readable, unpipeInfo) { debug('onunpipe'); if (readable === src) { - cleanup(); + if (unpipeInfo && unpipeInfo.hasUnpiped === false) { + unpipeInfo.hasUnpiped = true; + cleanup(); + } } } @@ -58452,7 +55051,7 @@ Readable.prototype.pipe = function (dest, pipeOpts) { dest.removeListener('error', onerror); dest.removeListener('unpipe', onunpipe); src.removeListener('end', onend); - src.removeListener('end', cleanup); + src.removeListener('end', unpipe); src.removeListener('data', ondata); cleanedUp = true; @@ -58545,6 +55144,7 @@ function pipeOnDrain(src) { Readable.prototype.unpipe = function (dest) { var state = this._readableState; + var unpipeInfo = { hasUnpiped: false }; // if we're not piping anywhere, then do nothing. if (state.pipesCount === 0) return this; @@ -58560,7 +55160,7 @@ Readable.prototype.unpipe = function (dest) { state.pipes = null; state.pipesCount = 0; state.flowing = false; - if (dest) dest.emit('unpipe', this); + if (dest) dest.emit('unpipe', this, unpipeInfo); return this; } @@ -58575,7 +55175,7 @@ Readable.prototype.unpipe = function (dest) { state.flowing = false; for (var i = 0; i < len; i++) { - dests[i].emit('unpipe', this); + dests[i].emit('unpipe', this, unpipeInfo); }return this; } @@ -58587,7 +55187,7 @@ Readable.prototype.unpipe = function (dest) { state.pipesCount -= 1; if (state.pipesCount === 1) state.pipes = state.pipes[0]; - dest.emit('unpipe', this); + dest.emit('unpipe', this, unpipeInfo); return this; }; @@ -58608,7 +55208,7 @@ Readable.prototype.on = function (ev, fn) { if (!state.reading) { processNextTick(nReadingNextTick, this); } else if (state.length) { - emitReadable(this, state); + emitReadable(this); } } } @@ -58715,10 +55315,9 @@ Readable.prototype.wrap = function (stream) { } // proxy certain important events. - var events = ['error', 'close', 'destroy', 'pause', 'resume']; - forEach(events, function (ev) { - stream.on(ev, self.emit.bind(self, ev)); - }); + for (var n = 0; n < kProxyEvents.length; n++) { + stream.on(kProxyEvents[n], self.emit.bind(self, kProxyEvents[n])); + } // when we try to consume some more bytes, simply unpause the // underlying stream. @@ -58810,7 +55409,7 @@ function copyFromBufferString(n, list) { // This function is designed to be inlinable, so please take care when making // changes to the function body. function copyFromBuffer(n, list) { - var ret = bufferShim.allocUnsafe(n); + var ret = Buffer.allocUnsafe(n); var p = list.head; var c = 1; p.data.copy(ret); @@ -58870,8 +55469,29 @@ function indexOf(xs, x) { } return -1; } -}).call(this,require('_process')) -},{"./_stream_duplex":120,"./internal/streams/BufferList":125,"_process":111,"buffer":49,"buffer-shims":47,"core-util-is":53,"events":87,"inherits":97,"isarray":99,"process-nextick-args":110,"string_decoder/":140,"util":21}],123:[function(require,module,exports){ +}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) +},{"./_stream_duplex":133,"./internal/streams/BufferList":138,"./internal/streams/destroy":139,"./internal/streams/stream":140,"_process":124,"core-util-is":53,"events":87,"inherits":105,"isarray":107,"process-nextick-args":123,"safe-buffer":147,"string_decoder/":141,"util":21}],136:[function(require,module,exports){ +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. + // a transform stream is a readable/writable stream where you do // something with the data. Sometimes it's called a "filter", // but that's not a great name for it, since that implies a thing where @@ -58945,7 +55565,9 @@ function afterTransform(stream, er, data) { var cb = ts.writecb; - if (!cb) return stream.emit('error', new Error('no writecb in Transform class')); + if (!cb) { + return stream.emit('error', new Error('write callback called multiple times')); + } ts.writechunk = null; ts.writecb = null; @@ -59038,6 +55660,15 @@ Transform.prototype._read = function (n) { } }; +Transform.prototype._destroy = function (err, cb) { + var _this = this; + + Duplex.prototype._destroy.call(this, err, function (err2) { + cb(err2); + _this.emit('close'); + }); +}; + function done(stream, er, data) { if (er) return stream.emit('error', er); @@ -59054,20 +55685,63 @@ function done(stream, er, data) { return stream.push(null); } -},{"./_stream_duplex":120,"core-util-is":53,"inherits":97}],124:[function(require,module,exports){ -(function (process){ +},{"./_stream_duplex":133,"core-util-is":53,"inherits":105}],137:[function(require,module,exports){ +(function (process,global){ +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. + // A bit simpler than readable streams. // Implement an async ._write(chunk, encoding, cb), and it'll handle all // the drain event emission and buffering. 'use strict'; -module.exports = Writable; - /**/ + var processNextTick = require('process-nextick-args'); /**/ +module.exports = Writable; + +/* */ +function WriteReq(chunk, encoding, cb) { + this.chunk = chunk; + this.encoding = encoding; + this.callback = cb; + this.next = null; +} + +// It seems a linked list but it is not +// there will be only 2 of these for each stream +function CorkedRequest(state) { + var _this = this; + + this.next = null; + this.entry = null; + this.finish = function () { + onCorkedFinish(_this, state); + }; +} +/* */ + /**/ var asyncWrite = !process.browser && ['v0.10', 'v0.9.'].indexOf(process.version.slice(0, 5)) > -1 ? setImmediate : processNextTick; /**/ @@ -59090,32 +55764,26 @@ var internalUtil = { /**/ /**/ -var Stream; -(function () { - try { - Stream = require('st' + 'ream'); - } catch (_) {} finally { - if (!Stream) Stream = require('events').EventEmitter; - } -})(); +var Stream = require('./internal/streams/stream'); /**/ -var Buffer = require('buffer').Buffer; /**/ -var bufferShim = require('buffer-shims'); +var Buffer = require('safe-buffer').Buffer; +var OurUint8Array = global.Uint8Array || function () {}; +function _uint8ArrayToBuffer(chunk) { + return Buffer.from(chunk); +} +function _isUint8Array(obj) { + return Buffer.isBuffer(obj) || obj instanceof OurUint8Array; +} /**/ +var destroyImpl = require('./internal/streams/destroy'); + util.inherits(Writable, Stream); function nop() {} -function WriteReq(chunk, encoding, cb) { - this.chunk = chunk; - this.encoding = encoding; - this.callback = cb; - this.next = null; -} - function WritableState(options, stream) { Duplex = Duplex || require('./_stream_duplex'); @@ -59135,7 +55803,10 @@ function WritableState(options, stream) { this.highWaterMark = hwm || hwm === 0 ? hwm : defaultHwm; // cast to ints. - this.highWaterMark = ~ ~this.highWaterMark; + this.highWaterMark = Math.floor(this.highWaterMark); + + // if _final has been called + this.finalCalled = false; // drain event flag. this.needDrain = false; @@ -59146,6 +55817,9 @@ function WritableState(options, stream) { // when 'finish' is emitted this.finished = false; + // has it been destroyed + this.destroyed = false; + // should we decode strings into buffers before passing to _write? // this is here so that some node-core streams can optimize string // handling at a lower level. @@ -59227,7 +55901,7 @@ WritableState.prototype.getBuffer = function getBuffer() { Object.defineProperty(WritableState.prototype, 'buffer', { get: internalUtil.deprecate(function () { return this.getBuffer(); - }, '_writableState.buffer is deprecated. Use _writableState.getBuffer ' + 'instead.') + }, '_writableState.buffer is deprecated. Use _writableState.getBuffer ' + 'instead.', 'DEP0003') }); } catch (_) {} })(); @@ -59273,6 +55947,10 @@ function Writable(options) { if (typeof options.write === 'function') this._write = options.write; if (typeof options.writev === 'function') this._writev = options.writev; + + if (typeof options.destroy === 'function') this._destroy = options.destroy; + + if (typeof options.final === 'function') this._final = options.final; } Stream.call(this); @@ -59290,20 +55968,16 @@ function writeAfterEnd(stream, cb) { processNextTick(cb, er); } -// If we get something that is not a buffer, string, null, or undefined, -// and we're not in objectMode, then that's an error. -// Otherwise stream chunks are all considered to be of length=1, and the -// watermarks determine how many objects to keep in the buffer, rather than -// how many bytes or characters. +// Checks that a user-supplied chunk is valid, especially for the particular +// mode the stream is in. Currently this means that `null` is never accepted +// and undefined/non-string values are only allowed in object mode. function validChunk(stream, state, chunk, cb) { var valid = true; var er = false; - // Always throw error if a null is written - // if we are not in object mode then throw - // if it is not a buffer, string, or undefined. + if (chunk === null) { er = new TypeError('May not write null values to stream'); - } else if (!Buffer.isBuffer(chunk) && typeof chunk !== 'string' && chunk !== undefined && !state.objectMode) { + } else if (typeof chunk !== 'string' && chunk !== undefined && !state.objectMode) { er = new TypeError('Invalid non-string/buffer chunk'); } if (er) { @@ -59317,19 +55991,24 @@ function validChunk(stream, state, chunk, cb) { Writable.prototype.write = function (chunk, encoding, cb) { var state = this._writableState; var ret = false; + var isBuf = _isUint8Array(chunk) && !state.objectMode; + + if (isBuf && !Buffer.isBuffer(chunk)) { + chunk = _uint8ArrayToBuffer(chunk); + } if (typeof encoding === 'function') { cb = encoding; encoding = null; } - if (Buffer.isBuffer(chunk)) encoding = 'buffer';else if (!encoding) encoding = state.defaultEncoding; + if (isBuf) encoding = 'buffer';else if (!encoding) encoding = state.defaultEncoding; if (typeof cb !== 'function') cb = nop; - if (state.ended) writeAfterEnd(this, cb);else if (validChunk(this, state, chunk, cb)) { + if (state.ended) writeAfterEnd(this, cb);else if (isBuf || validChunk(this, state, chunk, cb)) { state.pendingcb++; - ret = writeOrBuffer(this, state, chunk, encoding, cb); + ret = writeOrBuffer(this, state, isBuf, chunk, encoding, cb); } return ret; @@ -59361,7 +56040,7 @@ Writable.prototype.setDefaultEncoding = function setDefaultEncoding(encoding) { function decodeChunk(state, chunk, encoding) { if (!state.objectMode && state.decodeStrings !== false && typeof chunk === 'string') { - chunk = bufferShim.from(chunk, encoding); + chunk = Buffer.from(chunk, encoding); } return chunk; } @@ -59369,10 +56048,15 @@ function decodeChunk(state, chunk, encoding) { // if we're already writing something, then just put this // in the queue, and wait our turn. Otherwise, call _write // If we return false, then we need a drain event, so set that flag. -function writeOrBuffer(stream, state, chunk, encoding, cb) { - chunk = decodeChunk(state, chunk, encoding); - - if (Buffer.isBuffer(chunk)) encoding = 'buffer'; +function writeOrBuffer(stream, state, isBuf, chunk, encoding, cb) { + if (!isBuf) { + var newChunk = decodeChunk(state, chunk, encoding); + if (chunk !== newChunk) { + isBuf = true; + encoding = 'buffer'; + chunk = newChunk; + } + } var len = state.objectMode ? 1 : chunk.length; state.length += len; @@ -59383,7 +56067,13 @@ function writeOrBuffer(stream, state, chunk, encoding, cb) { if (state.writing || state.corked) { var last = state.lastBufferedRequest; - state.lastBufferedRequest = new WriteReq(chunk, encoding, cb); + state.lastBufferedRequest = { + chunk: chunk, + encoding: encoding, + isBuf: isBuf, + callback: cb, + next: null + }; if (last) { last.next = state.lastBufferedRequest; } else { @@ -59408,10 +56098,26 @@ function doWrite(stream, state, writev, len, chunk, encoding, cb) { function onwriteError(stream, state, sync, er, cb) { --state.pendingcb; - if (sync) processNextTick(cb, er);else cb(er); - stream._writableState.errorEmitted = true; - stream.emit('error', er); + if (sync) { + // defer the callback if we are being called synchronously + // to avoid piling up things on the stack + processNextTick(cb, er); + // this can emit finish, and it will always happen + // after error + processNextTick(finishMaybe, stream, state); + stream._writableState.errorEmitted = true; + stream.emit('error', er); + } else { + // the caller expect this to happen before if + // it is async + cb(er); + stream._writableState.errorEmitted = true; + stream.emit('error', er); + // this can emit finish, but finish must + // always follow error + finishMaybe(stream, state); + } } function onwriteStateUpdate(state) { @@ -59441,8 +56147,8 @@ function onwrite(stream, er) { asyncWrite(afterWrite, stream, state, finished, cb); /**/ } else { - afterWrite(stream, state, finished, cb); - } + afterWrite(stream, state, finished, cb); + } } } @@ -59476,11 +56182,14 @@ function clearBuffer(stream, state) { holder.entry = entry; var count = 0; + var allBuffers = true; while (entry) { buffer[count] = entry; + if (!entry.isBuf) allBuffers = false; entry = entry.next; count += 1; } + buffer.allBuffers = allBuffers; doWrite(stream, state, true, state.length, buffer, '', holder.finish); @@ -59554,23 +56263,37 @@ Writable.prototype.end = function (chunk, encoding, cb) { function needFinish(state) { return state.ending && state.length === 0 && state.bufferedRequest === null && !state.finished && !state.writing; } - -function prefinish(stream, state) { - if (!state.prefinished) { +function callFinal(stream, state) { + stream._final(function (err) { + state.pendingcb--; + if (err) { + stream.emit('error', err); + } state.prefinished = true; stream.emit('prefinish'); + finishMaybe(stream, state); + }); +} +function prefinish(stream, state) { + if (!state.prefinished && !state.finalCalled) { + if (typeof stream._final === 'function') { + state.pendingcb++; + state.finalCalled = true; + processNextTick(callFinal, stream, state); + } else { + state.prefinished = true; + stream.emit('prefinish'); + } } } function finishMaybe(stream, state) { var need = needFinish(state); if (need) { + prefinish(stream, state); if (state.pendingcb === 0) { - prefinish(stream, state); state.finished = true; stream.emit('finish'); - } else { - prefinish(stream, state); } } return need; @@ -59586,340 +56309,851 @@ function endWritable(stream, state, cb) { stream.writable = false; } -// It seems a linked list but it is not -// there will be only 2 of these for each stream -function CorkedRequest(state) { - var _this = this; - - this.next = null; - this.entry = null; +function onCorkedFinish(corkReq, state, err) { + var entry = corkReq.entry; + corkReq.entry = null; + while (entry) { + var cb = entry.callback; + state.pendingcb--; + cb(err); + entry = entry.next; + } + if (state.corkedRequestsFree) { + state.corkedRequestsFree.next = corkReq; + } else { + state.corkedRequestsFree = corkReq; + } +} - this.finish = function (err) { - var entry = _this.entry; - _this.entry = null; - while (entry) { - var cb = entry.callback; - state.pendingcb--; - cb(err); - entry = entry.next; +Object.defineProperty(Writable.prototype, 'destroyed', { + get: function () { + if (this._writableState === undefined) { + return false; } - if (state.corkedRequestsFree) { - state.corkedRequestsFree.next = _this; - } else { - state.corkedRequestsFree = _this; + return this._writableState.destroyed; + }, + set: function (value) { + // we ignore the value if the stream + // has not been initialized yet + if (!this._writableState) { + return; } - }; -} -}).call(this,require('_process')) -},{"./_stream_duplex":120,"_process":111,"buffer":49,"buffer-shims":47,"core-util-is":53,"events":87,"inherits":97,"process-nextick-args":110,"util-deprecate":141}],125:[function(require,module,exports){ + + // backward compatibility, the user is explicitly + // managing destroyed + this._writableState.destroyed = value; + } +}); + +Writable.prototype.destroy = destroyImpl.destroy; +Writable.prototype._undestroy = destroyImpl.undestroy; +Writable.prototype._destroy = function (err, cb) { + this.end(); + cb(err); +}; +}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) +},{"./_stream_duplex":133,"./internal/streams/destroy":139,"./internal/streams/stream":140,"_process":124,"core-util-is":53,"inherits":105,"process-nextick-args":123,"safe-buffer":147,"util-deprecate":158}],138:[function(require,module,exports){ 'use strict'; -var Buffer = require('buffer').Buffer; /**/ -var bufferShim = require('buffer-shims'); -/**/ -module.exports = BufferList; +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } -function BufferList() { - this.head = null; - this.tail = null; - this.length = 0; +var Buffer = require('safe-buffer').Buffer; +/**/ + +function copyBuffer(src, target, offset) { + src.copy(target, offset); } -BufferList.prototype.push = function (v) { - var entry = { data: v, next: null }; - if (this.length > 0) this.tail.next = entry;else this.head = entry; - this.tail = entry; - ++this.length; -}; +module.exports = function () { + function BufferList() { + _classCallCheck(this, BufferList); -BufferList.prototype.unshift = function (v) { - var entry = { data: v, next: this.head }; - if (this.length === 0) this.tail = entry; - this.head = entry; - ++this.length; -}; + this.head = null; + this.tail = null; + this.length = 0; + } -BufferList.prototype.shift = function () { - if (this.length === 0) return; - var ret = this.head.data; - if (this.length === 1) this.head = this.tail = null;else this.head = this.head.next; - --this.length; - return ret; -}; + BufferList.prototype.push = function push(v) { + var entry = { data: v, next: null }; + if (this.length > 0) this.tail.next = entry;else this.head = entry; + this.tail = entry; + ++this.length; + }; -BufferList.prototype.clear = function () { - this.head = this.tail = null; - this.length = 0; -}; + BufferList.prototype.unshift = function unshift(v) { + var entry = { data: v, next: this.head }; + if (this.length === 0) this.tail = entry; + this.head = entry; + ++this.length; + }; -BufferList.prototype.join = function (s) { - if (this.length === 0) return ''; - var p = this.head; - var ret = '' + p.data; - while (p = p.next) { - ret += s + p.data; - }return ret; -}; + BufferList.prototype.shift = function shift() { + if (this.length === 0) return; + var ret = this.head.data; + if (this.length === 1) this.head = this.tail = null;else this.head = this.head.next; + --this.length; + return ret; + }; -BufferList.prototype.concat = function (n) { - if (this.length === 0) return bufferShim.alloc(0); - if (this.length === 1) return this.head.data; - var ret = bufferShim.allocUnsafe(n >>> 0); - var p = this.head; - var i = 0; - while (p) { - p.data.copy(ret, i); - i += p.data.length; - p = p.next; + BufferList.prototype.clear = function clear() { + this.head = this.tail = null; + this.length = 0; + }; + + BufferList.prototype.join = function join(s) { + if (this.length === 0) return ''; + var p = this.head; + var ret = '' + p.data; + while (p = p.next) { + ret += s + p.data; + }return ret; + }; + + BufferList.prototype.concat = function concat(n) { + if (this.length === 0) return Buffer.alloc(0); + if (this.length === 1) return this.head.data; + var ret = Buffer.allocUnsafe(n >>> 0); + var p = this.head; + var i = 0; + while (p) { + copyBuffer(p.data, ret, i); + i += p.data.length; + p = p.next; + } + return ret; + }; + + return BufferList; +}(); +},{"safe-buffer":147}],139:[function(require,module,exports){ +'use strict'; + +/**/ + +var processNextTick = require('process-nextick-args'); +/**/ + +// undocumented cb() API, needed for core, not for public API +function destroy(err, cb) { + var _this = this; + + var readableDestroyed = this._readableState && this._readableState.destroyed; + var writableDestroyed = this._writableState && this._writableState.destroyed; + + if (readableDestroyed || writableDestroyed) { + if (cb) { + cb(err); + } else if (err && (!this._writableState || !this._writableState.errorEmitted)) { + processNextTick(emitErrorNT, this, err); + } + return; } - return ret; -}; -},{"buffer":49,"buffer-shims":47}],126:[function(require,module,exports){ -module.exports = require("./lib/_stream_passthrough.js") -},{"./lib/_stream_passthrough.js":121}],127:[function(require,module,exports){ -(function (process){ -var Stream = (function (){ - try { - return require('st' + 'ream'); // hack to fix a circular dependency issue when used with browserify - } catch(_){} -}()); -exports = module.exports = require('./lib/_stream_readable.js'); -exports.Stream = Stream || exports; -exports.Readable = exports; -exports.Writable = require('./lib/_stream_writable.js'); -exports.Duplex = require('./lib/_stream_duplex.js'); -exports.Transform = require('./lib/_stream_transform.js'); -exports.PassThrough = require('./lib/_stream_passthrough.js'); + // we set destroyed to true before firing error callbacks in order + // to make it re-entrance safe in case destroy() is called within callbacks -if (!process.browser && process.env.READABLE_STREAM === 'disable' && Stream) { - module.exports = Stream; -} + if (this._readableState) { + this._readableState.destroyed = true; + } -}).call(this,require('_process')) -},{"./lib/_stream_duplex.js":120,"./lib/_stream_passthrough.js":121,"./lib/_stream_readable.js":122,"./lib/_stream_transform.js":123,"./lib/_stream_writable.js":124,"_process":111}],128:[function(require,module,exports){ -module.exports = require("./lib/_stream_transform.js") + // if this is a duplex stream mark the writable part as destroyed as well + if (this._writableState) { + this._writableState.destroyed = true; + } -},{"./lib/_stream_transform.js":123}],129:[function(require,module,exports){ -module.exports = require("./lib/_stream_writable.js") + this._destroy(err || null, function (err) { + if (!cb && err) { + processNextTick(emitErrorNT, _this, err); + if (_this._writableState) { + _this._writableState.errorEmitted = true; + } + } else if (cb) { + cb(err); + } + }); +} -},{"./lib/_stream_writable.js":124}],130:[function(require,module,exports){ -(function (Buffer){ -/* -CryptoJS v3.1.2 -code.google.com/p/crypto-js -(c) 2009-2013 by Jeff Mott. All rights reserved. -code.google.com/p/crypto-js/wiki/License -*/ -/** @preserve -(c) 2012 by Cédric Mesnil. All rights reserved. +function undestroy() { + if (this._readableState) { + this._readableState.destroyed = false; + this._readableState.reading = false; + this._readableState.ended = false; + this._readableState.endEmitted = false; + } -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + if (this._writableState) { + this._writableState.destroyed = false; + this._writableState.ended = false; + this._writableState.ending = false; + this._writableState.finished = false; + this._writableState.errorEmitted = false; + } +} - - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. +function emitErrorNT(self, err) { + self.emit('error', err); +} -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ +module.exports = { + destroy: destroy, + undestroy: undestroy +}; +},{"process-nextick-args":123}],140:[function(require,module,exports){ +module.exports = require('events').EventEmitter; -// constants table -var zl = [ - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, - 7, 4, 13, 1, 10, 6, 15, 3, 12, 0, 9, 5, 2, 14, 11, 8, - 3, 10, 14, 4, 9, 15, 8, 1, 2, 7, 0, 6, 13, 11, 5, 12, - 1, 9, 11, 10, 0, 8, 12, 4, 13, 3, 7, 15, 14, 5, 6, 2, - 4, 0, 5, 9, 7, 12, 2, 10, 14, 1, 3, 8, 11, 6, 15, 13 -] +},{"events":87}],141:[function(require,module,exports){ +'use strict'; -var zr = [ - 5, 14, 7, 0, 9, 2, 11, 4, 13, 6, 15, 8, 1, 10, 3, 12, - 6, 11, 3, 7, 0, 13, 5, 10, 14, 15, 8, 12, 4, 9, 1, 2, - 15, 5, 1, 3, 7, 14, 6, 9, 11, 8, 12, 2, 10, 0, 4, 13, - 8, 6, 4, 1, 3, 11, 15, 0, 5, 12, 2, 13, 9, 7, 10, 14, - 12, 15, 10, 4, 1, 5, 8, 7, 6, 2, 13, 14, 0, 3, 9, 11 -] +var Buffer = require('safe-buffer').Buffer; -var sl = [ - 11, 14, 15, 12, 5, 8, 7, 9, 11, 13, 14, 15, 6, 7, 9, 8, - 7, 6, 8, 13, 11, 9, 7, 15, 7, 12, 15, 9, 11, 7, 13, 12, - 11, 13, 6, 7, 14, 9, 13, 15, 14, 8, 13, 6, 5, 12, 7, 5, - 11, 12, 14, 15, 14, 15, 9, 8, 9, 14, 5, 6, 8, 6, 5, 12, - 9, 15, 5, 11, 6, 8, 13, 12, 5, 12, 13, 14, 11, 8, 5, 6 -] +var isEncoding = Buffer.isEncoding || function (encoding) { + encoding = '' + encoding; + switch (encoding && encoding.toLowerCase()) { + case 'hex':case 'utf8':case 'utf-8':case 'ascii':case 'binary':case 'base64':case 'ucs2':case 'ucs-2':case 'utf16le':case 'utf-16le':case 'raw': + return true; + default: + return false; + } +}; -var sr = [ - 8, 9, 9, 11, 13, 15, 15, 5, 7, 7, 8, 11, 14, 14, 12, 6, - 9, 13, 15, 7, 12, 8, 9, 11, 7, 7, 12, 7, 6, 15, 13, 11, - 9, 7, 15, 11, 8, 6, 6, 14, 12, 13, 5, 14, 13, 13, 7, 5, - 15, 5, 8, 11, 14, 14, 6, 14, 6, 9, 12, 9, 12, 5, 15, 8, - 8, 5, 12, 9, 12, 5, 14, 6, 8, 13, 6, 5, 15, 13, 11, 11 -] +function _normalizeEncoding(enc) { + if (!enc) return 'utf8'; + var retried; + while (true) { + switch (enc) { + case 'utf8': + case 'utf-8': + return 'utf8'; + case 'ucs2': + case 'ucs-2': + case 'utf16le': + case 'utf-16le': + return 'utf16le'; + case 'latin1': + case 'binary': + return 'latin1'; + case 'base64': + case 'ascii': + case 'hex': + return enc; + default: + if (retried) return; // undefined + enc = ('' + enc).toLowerCase(); + retried = true; + } + } +}; -var hl = [0x00000000, 0x5A827999, 0x6ED9EBA1, 0x8F1BBCDC, 0xA953FD4E] -var hr = [0x50A28BE6, 0x5C4DD124, 0x6D703EF3, 0x7A6D76E9, 0x00000000] +// Do not cache `Buffer.isEncoding` when checking encoding names as some +// modules monkey-patch it to support additional encodings +function normalizeEncoding(enc) { + var nenc = _normalizeEncoding(enc); + if (typeof nenc !== 'string' && (Buffer.isEncoding === isEncoding || !isEncoding(enc))) throw new Error('Unknown encoding: ' + enc); + return nenc || enc; +} -function bytesToWords (bytes) { - var words = [] - for (var i = 0, b = 0; i < bytes.length; i++, b += 8) { - words[b >>> 5] |= bytes[i] << (24 - b % 32) +// StringDecoder provides an interface for efficiently splitting a series of +// buffers into a series of JS strings without breaking apart multi-byte +// characters. +exports.StringDecoder = StringDecoder; +function StringDecoder(encoding) { + this.encoding = normalizeEncoding(encoding); + var nb; + switch (this.encoding) { + case 'utf16le': + this.text = utf16Text; + this.end = utf16End; + nb = 4; + break; + case 'utf8': + this.fillLast = utf8FillLast; + nb = 4; + break; + case 'base64': + this.text = base64Text; + this.end = base64End; + nb = 3; + break; + default: + this.write = simpleWrite; + this.end = simpleEnd; + return; } - return words + this.lastNeed = 0; + this.lastTotal = 0; + this.lastChar = Buffer.allocUnsafe(nb); } -function wordsToBytes (words) { - var bytes = [] - for (var b = 0; b < words.length * 32; b += 8) { - bytes.push((words[b >>> 5] >>> (24 - b % 32)) & 0xFF) +StringDecoder.prototype.write = function (buf) { + if (buf.length === 0) return ''; + var r; + var i; + if (this.lastNeed) { + r = this.fillLast(buf); + if (r === undefined) return ''; + i = this.lastNeed; + this.lastNeed = 0; + } else { + i = 0; } - return bytes + if (i < buf.length) return r ? r + this.text(buf, i) : this.text(buf, i); + return r || ''; +}; + +StringDecoder.prototype.end = utf8End; + +// Returns only complete characters in a Buffer +StringDecoder.prototype.text = utf8Text; + +// Attempts to complete a partial non-UTF-8 character using bytes from a Buffer +StringDecoder.prototype.fillLast = function (buf) { + if (this.lastNeed <= buf.length) { + buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, this.lastNeed); + return this.lastChar.toString(this.encoding, 0, this.lastTotal); + } + buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, buf.length); + this.lastNeed -= buf.length; +}; + +// Checks the type of a UTF-8 byte, whether it's ASCII, a leading byte, or a +// continuation byte. +function utf8CheckByte(byte) { + if (byte <= 0x7F) return 0;else if (byte >> 5 === 0x06) return 2;else if (byte >> 4 === 0x0E) return 3;else if (byte >> 3 === 0x1E) return 4; + return -1; } -function processBlock (H, M, offset) { - // swap endian - for (var i = 0; i < 16; i++) { - var offset_i = offset + i - var M_offset_i = M[offset_i] +// Checks at most 3 bytes at the end of a Buffer in order to detect an +// incomplete multi-byte UTF-8 character. The total number of bytes (2, 3, or 4) +// needed to complete the UTF-8 character (if applicable) are returned. +function utf8CheckIncomplete(self, buf, i) { + var j = buf.length - 1; + if (j < i) return 0; + var nb = utf8CheckByte(buf[j]); + if (nb >= 0) { + if (nb > 0) self.lastNeed = nb - 1; + return nb; + } + if (--j < i) return 0; + nb = utf8CheckByte(buf[j]); + if (nb >= 0) { + if (nb > 0) self.lastNeed = nb - 2; + return nb; + } + if (--j < i) return 0; + nb = utf8CheckByte(buf[j]); + if (nb >= 0) { + if (nb > 0) { + if (nb === 2) nb = 0;else self.lastNeed = nb - 3; + } + return nb; + } + return 0; +} - // Swap - M[offset_i] = ( - (((M_offset_i << 8) | (M_offset_i >>> 24)) & 0x00ff00ff) | - (((M_offset_i << 24) | (M_offset_i >>> 8)) & 0xff00ff00) - ) +// Validates as many continuation bytes for a multi-byte UTF-8 character as +// needed or are available. If we see a non-continuation byte where we expect +// one, we "replace" the validated continuation bytes we've seen so far with +// UTF-8 replacement characters ('\ufffd'), to match v8's UTF-8 decoding +// behavior. The continuation byte check is included three times in the case +// where all of the continuation bytes for a character exist in the same buffer. +// It is also done this way as a slight performance increase instead of using a +// loop. +function utf8CheckExtraBytes(self, buf, p) { + if ((buf[0] & 0xC0) !== 0x80) { + self.lastNeed = 0; + return '\ufffd'.repeat(p); + } + if (self.lastNeed > 1 && buf.length > 1) { + if ((buf[1] & 0xC0) !== 0x80) { + self.lastNeed = 1; + return '\ufffd'.repeat(p + 1); + } + if (self.lastNeed > 2 && buf.length > 2) { + if ((buf[2] & 0xC0) !== 0x80) { + self.lastNeed = 2; + return '\ufffd'.repeat(p + 2); + } + } } +} - // Working variables - var al, bl, cl, dl, el - var ar, br, cr, dr, er +// Attempts to complete a multi-byte UTF-8 character using bytes from a Buffer. +function utf8FillLast(buf) { + var p = this.lastTotal - this.lastNeed; + var r = utf8CheckExtraBytes(this, buf, p); + if (r !== undefined) return r; + if (this.lastNeed <= buf.length) { + buf.copy(this.lastChar, p, 0, this.lastNeed); + return this.lastChar.toString(this.encoding, 0, this.lastTotal); + } + buf.copy(this.lastChar, p, 0, buf.length); + this.lastNeed -= buf.length; +} - ar = al = H[0] - br = bl = H[1] - cr = cl = H[2] - dr = dl = H[3] - er = el = H[4] +// Returns all complete UTF-8 characters in a Buffer. If the Buffer ended on a +// partial character, the character's bytes are buffered until the required +// number of bytes are available. +function utf8Text(buf, i) { + var total = utf8CheckIncomplete(this, buf, i); + if (!this.lastNeed) return buf.toString('utf8', i); + this.lastTotal = total; + var end = buf.length - (total - this.lastNeed); + buf.copy(this.lastChar, 0, end); + return buf.toString('utf8', i, end); +} - // computation - var t - for (i = 0; i < 80; i += 1) { - t = (al + M[offset + zl[i]]) | 0 - if (i < 16) { - t += f1(bl, cl, dl) + hl[0] - } else if (i < 32) { - t += f2(bl, cl, dl) + hl[1] - } else if (i < 48) { - t += f3(bl, cl, dl) + hl[2] - } else if (i < 64) { - t += f4(bl, cl, dl) + hl[3] - } else {// if (i<80) { - t += f5(bl, cl, dl) + hl[4] - } - t = t | 0 - t = rotl(t, sl[i]) - t = (t + el) | 0 - al = el - el = dl - dl = rotl(cl, 10) - cl = bl - bl = t +// For UTF-8, a replacement character for each buffered byte of a (partial) +// character needs to be added to the output. +function utf8End(buf) { + var r = buf && buf.length ? this.write(buf) : ''; + if (this.lastNeed) return r + '\ufffd'.repeat(this.lastTotal - this.lastNeed); + return r; +} - t = (ar + M[offset + zr[i]]) | 0 - if (i < 16) { - t += f5(br, cr, dr) + hr[0] - } else if (i < 32) { - t += f4(br, cr, dr) + hr[1] - } else if (i < 48) { - t += f3(br, cr, dr) + hr[2] - } else if (i < 64) { - t += f2(br, cr, dr) + hr[3] - } else {// if (i<80) { - t += f1(br, cr, dr) + hr[4] +// UTF-16LE typically needs two bytes per character, but even if we have an even +// number of bytes available, we need to check if we end on a leading/high +// surrogate. In that case, we need to wait for the next two bytes in order to +// decode the last character properly. +function utf16Text(buf, i) { + if ((buf.length - i) % 2 === 0) { + var r = buf.toString('utf16le', i); + if (r) { + var c = r.charCodeAt(r.length - 1); + if (c >= 0xD800 && c <= 0xDBFF) { + this.lastNeed = 2; + this.lastTotal = 4; + this.lastChar[0] = buf[buf.length - 2]; + this.lastChar[1] = buf[buf.length - 1]; + return r.slice(0, -1); + } } + return r; + } + this.lastNeed = 1; + this.lastTotal = 2; + this.lastChar[0] = buf[buf.length - 1]; + return buf.toString('utf16le', i, buf.length - 1); +} - t = t | 0 - t = rotl(t, sr[i]) - t = (t + er) | 0 - ar = er - er = dr - dr = rotl(cr, 10) - cr = br - br = t +// For UTF-16LE we do not explicitly append special replacement characters if we +// end on a partial character, we simply let v8 handle that. +function utf16End(buf) { + var r = buf && buf.length ? this.write(buf) : ''; + if (this.lastNeed) { + var end = this.lastTotal - this.lastNeed; + return r + this.lastChar.toString('utf16le', 0, end); } + return r; +} - // intermediate hash value - t = (H[1] + cl + dr) | 0 - H[1] = (H[2] + dl + er) | 0 - H[2] = (H[3] + el + ar) | 0 - H[3] = (H[4] + al + br) | 0 - H[4] = (H[0] + bl + cr) | 0 - H[0] = t +function base64Text(buf, i) { + var n = (buf.length - i) % 3; + if (n === 0) return buf.toString('base64', i); + this.lastNeed = 3 - n; + this.lastTotal = 3; + if (n === 1) { + this.lastChar[0] = buf[buf.length - 1]; + } else { + this.lastChar[0] = buf[buf.length - 2]; + this.lastChar[1] = buf[buf.length - 1]; + } + return buf.toString('base64', i, buf.length - n); } -function f1 (x, y, z) { - return ((x) ^ (y) ^ (z)) +function base64End(buf) { + var r = buf && buf.length ? this.write(buf) : ''; + if (this.lastNeed) return r + this.lastChar.toString('base64', 0, 3 - this.lastNeed); + return r; } -function f2 (x, y, z) { - return (((x) & (y)) | ((~x) & (z))) +// Pass bytes on through for single-byte encodings (e.g. ascii, latin1, hex) +function simpleWrite(buf) { + return buf.toString(this.encoding); } -function f3 (x, y, z) { - return (((x) | (~(y))) ^ (z)) +function simpleEnd(buf) { + return buf && buf.length ? this.write(buf) : ''; } +},{"safe-buffer":147}],142:[function(require,module,exports){ +module.exports = require('./readable').PassThrough + +},{"./readable":143}],143:[function(require,module,exports){ +exports = module.exports = require('./lib/_stream_readable.js'); +exports.Stream = exports; +exports.Readable = exports; +exports.Writable = require('./lib/_stream_writable.js'); +exports.Duplex = require('./lib/_stream_duplex.js'); +exports.Transform = require('./lib/_stream_transform.js'); +exports.PassThrough = require('./lib/_stream_passthrough.js'); + +},{"./lib/_stream_duplex.js":133,"./lib/_stream_passthrough.js":134,"./lib/_stream_readable.js":135,"./lib/_stream_transform.js":136,"./lib/_stream_writable.js":137}],144:[function(require,module,exports){ +module.exports = require('./readable').Transform -function f4 (x, y, z) { - return (((x) & (z)) | ((y) & (~(z)))) +},{"./readable":143}],145:[function(require,module,exports){ +module.exports = require('./lib/_stream_writable.js'); + +},{"./lib/_stream_writable.js":137}],146:[function(require,module,exports){ +(function (Buffer){ +'use strict' +var inherits = require('inherits') +var HashBase = require('hash-base') + +function RIPEMD160 () { + HashBase.call(this, 64) + + // state + this._a = 0x67452301 + this._b = 0xefcdab89 + this._c = 0x98badcfe + this._d = 0x10325476 + this._e = 0xc3d2e1f0 } -function f5 (x, y, z) { - return ((x) ^ ((y) | (~(z)))) +inherits(RIPEMD160, HashBase) + +RIPEMD160.prototype._update = function () { + var m = new Array(16) + for (var i = 0; i < 16; ++i) m[i] = this._block.readInt32LE(i * 4) + + var al = this._a + var bl = this._b + var cl = this._c + var dl = this._d + var el = this._e + + // Mj = 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 + // K = 0x00000000 + // Sj = 11, 14, 15, 12, 5, 8, 7, 9, 11, 13, 14, 15, 6, 7, 9, 8 + al = fn1(al, bl, cl, dl, el, m[0], 0x00000000, 11); cl = rotl(cl, 10) + el = fn1(el, al, bl, cl, dl, m[1], 0x00000000, 14); bl = rotl(bl, 10) + dl = fn1(dl, el, al, bl, cl, m[2], 0x00000000, 15); al = rotl(al, 10) + cl = fn1(cl, dl, el, al, bl, m[3], 0x00000000, 12); el = rotl(el, 10) + bl = fn1(bl, cl, dl, el, al, m[4], 0x00000000, 5); dl = rotl(dl, 10) + al = fn1(al, bl, cl, dl, el, m[5], 0x00000000, 8); cl = rotl(cl, 10) + el = fn1(el, al, bl, cl, dl, m[6], 0x00000000, 7); bl = rotl(bl, 10) + dl = fn1(dl, el, al, bl, cl, m[7], 0x00000000, 9); al = rotl(al, 10) + cl = fn1(cl, dl, el, al, bl, m[8], 0x00000000, 11); el = rotl(el, 10) + bl = fn1(bl, cl, dl, el, al, m[9], 0x00000000, 13); dl = rotl(dl, 10) + al = fn1(al, bl, cl, dl, el, m[10], 0x00000000, 14); cl = rotl(cl, 10) + el = fn1(el, al, bl, cl, dl, m[11], 0x00000000, 15); bl = rotl(bl, 10) + dl = fn1(dl, el, al, bl, cl, m[12], 0x00000000, 6); al = rotl(al, 10) + cl = fn1(cl, dl, el, al, bl, m[13], 0x00000000, 7); el = rotl(el, 10) + bl = fn1(bl, cl, dl, el, al, m[14], 0x00000000, 9); dl = rotl(dl, 10) + al = fn1(al, bl, cl, dl, el, m[15], 0x00000000, 8); cl = rotl(cl, 10) + + // Mj = 7, 4, 13, 1, 10, 6, 15, 3, 12, 0, 9, 5, 2, 14, 11, 8 + // K = 0x5a827999 + // Sj = 7, 6, 8, 13, 11, 9, 7, 15, 7, 12, 15, 9, 11, 7, 13, 12 + el = fn2(el, al, bl, cl, dl, m[7], 0x5a827999, 7); bl = rotl(bl, 10) + dl = fn2(dl, el, al, bl, cl, m[4], 0x5a827999, 6); al = rotl(al, 10) + cl = fn2(cl, dl, el, al, bl, m[13], 0x5a827999, 8); el = rotl(el, 10) + bl = fn2(bl, cl, dl, el, al, m[1], 0x5a827999, 13); dl = rotl(dl, 10) + al = fn2(al, bl, cl, dl, el, m[10], 0x5a827999, 11); cl = rotl(cl, 10) + el = fn2(el, al, bl, cl, dl, m[6], 0x5a827999, 9); bl = rotl(bl, 10) + dl = fn2(dl, el, al, bl, cl, m[15], 0x5a827999, 7); al = rotl(al, 10) + cl = fn2(cl, dl, el, al, bl, m[3], 0x5a827999, 15); el = rotl(el, 10) + bl = fn2(bl, cl, dl, el, al, m[12], 0x5a827999, 7); dl = rotl(dl, 10) + al = fn2(al, bl, cl, dl, el, m[0], 0x5a827999, 12); cl = rotl(cl, 10) + el = fn2(el, al, bl, cl, dl, m[9], 0x5a827999, 15); bl = rotl(bl, 10) + dl = fn2(dl, el, al, bl, cl, m[5], 0x5a827999, 9); al = rotl(al, 10) + cl = fn2(cl, dl, el, al, bl, m[2], 0x5a827999, 11); el = rotl(el, 10) + bl = fn2(bl, cl, dl, el, al, m[14], 0x5a827999, 7); dl = rotl(dl, 10) + al = fn2(al, bl, cl, dl, el, m[11], 0x5a827999, 13); cl = rotl(cl, 10) + el = fn2(el, al, bl, cl, dl, m[8], 0x5a827999, 12); bl = rotl(bl, 10) + + // Mj = 3, 10, 14, 4, 9, 15, 8, 1, 2, 7, 0, 6, 13, 11, 5, 12 + // K = 0x6ed9eba1 + // Sj = 11, 13, 6, 7, 14, 9, 13, 15, 14, 8, 13, 6, 5, 12, 7, 5 + dl = fn3(dl, el, al, bl, cl, m[3], 0x6ed9eba1, 11); al = rotl(al, 10) + cl = fn3(cl, dl, el, al, bl, m[10], 0x6ed9eba1, 13); el = rotl(el, 10) + bl = fn3(bl, cl, dl, el, al, m[14], 0x6ed9eba1, 6); dl = rotl(dl, 10) + al = fn3(al, bl, cl, dl, el, m[4], 0x6ed9eba1, 7); cl = rotl(cl, 10) + el = fn3(el, al, bl, cl, dl, m[9], 0x6ed9eba1, 14); bl = rotl(bl, 10) + dl = fn3(dl, el, al, bl, cl, m[15], 0x6ed9eba1, 9); al = rotl(al, 10) + cl = fn3(cl, dl, el, al, bl, m[8], 0x6ed9eba1, 13); el = rotl(el, 10) + bl = fn3(bl, cl, dl, el, al, m[1], 0x6ed9eba1, 15); dl = rotl(dl, 10) + al = fn3(al, bl, cl, dl, el, m[2], 0x6ed9eba1, 14); cl = rotl(cl, 10) + el = fn3(el, al, bl, cl, dl, m[7], 0x6ed9eba1, 8); bl = rotl(bl, 10) + dl = fn3(dl, el, al, bl, cl, m[0], 0x6ed9eba1, 13); al = rotl(al, 10) + cl = fn3(cl, dl, el, al, bl, m[6], 0x6ed9eba1, 6); el = rotl(el, 10) + bl = fn3(bl, cl, dl, el, al, m[13], 0x6ed9eba1, 5); dl = rotl(dl, 10) + al = fn3(al, bl, cl, dl, el, m[11], 0x6ed9eba1, 12); cl = rotl(cl, 10) + el = fn3(el, al, bl, cl, dl, m[5], 0x6ed9eba1, 7); bl = rotl(bl, 10) + dl = fn3(dl, el, al, bl, cl, m[12], 0x6ed9eba1, 5); al = rotl(al, 10) + + // Mj = 1, 9, 11, 10, 0, 8, 12, 4, 13, 3, 7, 15, 14, 5, 6, 2 + // K = 0x8f1bbcdc + // Sj = 11, 12, 14, 15, 14, 15, 9, 8, 9, 14, 5, 6, 8, 6, 5, 12 + cl = fn4(cl, dl, el, al, bl, m[1], 0x8f1bbcdc, 11); el = rotl(el, 10) + bl = fn4(bl, cl, dl, el, al, m[9], 0x8f1bbcdc, 12); dl = rotl(dl, 10) + al = fn4(al, bl, cl, dl, el, m[11], 0x8f1bbcdc, 14); cl = rotl(cl, 10) + el = fn4(el, al, bl, cl, dl, m[10], 0x8f1bbcdc, 15); bl = rotl(bl, 10) + dl = fn4(dl, el, al, bl, cl, m[0], 0x8f1bbcdc, 14); al = rotl(al, 10) + cl = fn4(cl, dl, el, al, bl, m[8], 0x8f1bbcdc, 15); el = rotl(el, 10) + bl = fn4(bl, cl, dl, el, al, m[12], 0x8f1bbcdc, 9); dl = rotl(dl, 10) + al = fn4(al, bl, cl, dl, el, m[4], 0x8f1bbcdc, 8); cl = rotl(cl, 10) + el = fn4(el, al, bl, cl, dl, m[13], 0x8f1bbcdc, 9); bl = rotl(bl, 10) + dl = fn4(dl, el, al, bl, cl, m[3], 0x8f1bbcdc, 14); al = rotl(al, 10) + cl = fn4(cl, dl, el, al, bl, m[7], 0x8f1bbcdc, 5); el = rotl(el, 10) + bl = fn4(bl, cl, dl, el, al, m[15], 0x8f1bbcdc, 6); dl = rotl(dl, 10) + al = fn4(al, bl, cl, dl, el, m[14], 0x8f1bbcdc, 8); cl = rotl(cl, 10) + el = fn4(el, al, bl, cl, dl, m[5], 0x8f1bbcdc, 6); bl = rotl(bl, 10) + dl = fn4(dl, el, al, bl, cl, m[6], 0x8f1bbcdc, 5); al = rotl(al, 10) + cl = fn4(cl, dl, el, al, bl, m[2], 0x8f1bbcdc, 12); el = rotl(el, 10) + + // Mj = 4, 0, 5, 9, 7, 12, 2, 10, 14, 1, 3, 8, 11, 6, 15, 13 + // K = 0xa953fd4e + // Sj = 9, 15, 5, 11, 6, 8, 13, 12, 5, 12, 13, 14, 11, 8, 5, 6 + bl = fn5(bl, cl, dl, el, al, m[4], 0xa953fd4e, 9); dl = rotl(dl, 10) + al = fn5(al, bl, cl, dl, el, m[0], 0xa953fd4e, 15); cl = rotl(cl, 10) + el = fn5(el, al, bl, cl, dl, m[5], 0xa953fd4e, 5); bl = rotl(bl, 10) + dl = fn5(dl, el, al, bl, cl, m[9], 0xa953fd4e, 11); al = rotl(al, 10) + cl = fn5(cl, dl, el, al, bl, m[7], 0xa953fd4e, 6); el = rotl(el, 10) + bl = fn5(bl, cl, dl, el, al, m[12], 0xa953fd4e, 8); dl = rotl(dl, 10) + al = fn5(al, bl, cl, dl, el, m[2], 0xa953fd4e, 13); cl = rotl(cl, 10) + el = fn5(el, al, bl, cl, dl, m[10], 0xa953fd4e, 12); bl = rotl(bl, 10) + dl = fn5(dl, el, al, bl, cl, m[14], 0xa953fd4e, 5); al = rotl(al, 10) + cl = fn5(cl, dl, el, al, bl, m[1], 0xa953fd4e, 12); el = rotl(el, 10) + bl = fn5(bl, cl, dl, el, al, m[3], 0xa953fd4e, 13); dl = rotl(dl, 10) + al = fn5(al, bl, cl, dl, el, m[8], 0xa953fd4e, 14); cl = rotl(cl, 10) + el = fn5(el, al, bl, cl, dl, m[11], 0xa953fd4e, 11); bl = rotl(bl, 10) + dl = fn5(dl, el, al, bl, cl, m[6], 0xa953fd4e, 8); al = rotl(al, 10) + cl = fn5(cl, dl, el, al, bl, m[15], 0xa953fd4e, 5); el = rotl(el, 10) + bl = fn5(bl, cl, dl, el, al, m[13], 0xa953fd4e, 6); dl = rotl(dl, 10) + + var ar = this._a + var br = this._b + var cr = this._c + var dr = this._d + var er = this._e + + // M'j = 5, 14, 7, 0, 9, 2, 11, 4, 13, 6, 15, 8, 1, 10, 3, 12 + // K' = 0x50a28be6 + // S'j = 8, 9, 9, 11, 13, 15, 15, 5, 7, 7, 8, 11, 14, 14, 12, 6 + ar = fn5(ar, br, cr, dr, er, m[5], 0x50a28be6, 8); cr = rotl(cr, 10) + er = fn5(er, ar, br, cr, dr, m[14], 0x50a28be6, 9); br = rotl(br, 10) + dr = fn5(dr, er, ar, br, cr, m[7], 0x50a28be6, 9); ar = rotl(ar, 10) + cr = fn5(cr, dr, er, ar, br, m[0], 0x50a28be6, 11); er = rotl(er, 10) + br = fn5(br, cr, dr, er, ar, m[9], 0x50a28be6, 13); dr = rotl(dr, 10) + ar = fn5(ar, br, cr, dr, er, m[2], 0x50a28be6, 15); cr = rotl(cr, 10) + er = fn5(er, ar, br, cr, dr, m[11], 0x50a28be6, 15); br = rotl(br, 10) + dr = fn5(dr, er, ar, br, cr, m[4], 0x50a28be6, 5); ar = rotl(ar, 10) + cr = fn5(cr, dr, er, ar, br, m[13], 0x50a28be6, 7); er = rotl(er, 10) + br = fn5(br, cr, dr, er, ar, m[6], 0x50a28be6, 7); dr = rotl(dr, 10) + ar = fn5(ar, br, cr, dr, er, m[15], 0x50a28be6, 8); cr = rotl(cr, 10) + er = fn5(er, ar, br, cr, dr, m[8], 0x50a28be6, 11); br = rotl(br, 10) + dr = fn5(dr, er, ar, br, cr, m[1], 0x50a28be6, 14); ar = rotl(ar, 10) + cr = fn5(cr, dr, er, ar, br, m[10], 0x50a28be6, 14); er = rotl(er, 10) + br = fn5(br, cr, dr, er, ar, m[3], 0x50a28be6, 12); dr = rotl(dr, 10) + ar = fn5(ar, br, cr, dr, er, m[12], 0x50a28be6, 6); cr = rotl(cr, 10) + + // M'j = 6, 11, 3, 7, 0, 13, 5, 10, 14, 15, 8, 12, 4, 9, 1, 2 + // K' = 0x5c4dd124 + // S'j = 9, 13, 15, 7, 12, 8, 9, 11, 7, 7, 12, 7, 6, 15, 13, 11 + er = fn4(er, ar, br, cr, dr, m[6], 0x5c4dd124, 9); br = rotl(br, 10) + dr = fn4(dr, er, ar, br, cr, m[11], 0x5c4dd124, 13); ar = rotl(ar, 10) + cr = fn4(cr, dr, er, ar, br, m[3], 0x5c4dd124, 15); er = rotl(er, 10) + br = fn4(br, cr, dr, er, ar, m[7], 0x5c4dd124, 7); dr = rotl(dr, 10) + ar = fn4(ar, br, cr, dr, er, m[0], 0x5c4dd124, 12); cr = rotl(cr, 10) + er = fn4(er, ar, br, cr, dr, m[13], 0x5c4dd124, 8); br = rotl(br, 10) + dr = fn4(dr, er, ar, br, cr, m[5], 0x5c4dd124, 9); ar = rotl(ar, 10) + cr = fn4(cr, dr, er, ar, br, m[10], 0x5c4dd124, 11); er = rotl(er, 10) + br = fn4(br, cr, dr, er, ar, m[14], 0x5c4dd124, 7); dr = rotl(dr, 10) + ar = fn4(ar, br, cr, dr, er, m[15], 0x5c4dd124, 7); cr = rotl(cr, 10) + er = fn4(er, ar, br, cr, dr, m[8], 0x5c4dd124, 12); br = rotl(br, 10) + dr = fn4(dr, er, ar, br, cr, m[12], 0x5c4dd124, 7); ar = rotl(ar, 10) + cr = fn4(cr, dr, er, ar, br, m[4], 0x5c4dd124, 6); er = rotl(er, 10) + br = fn4(br, cr, dr, er, ar, m[9], 0x5c4dd124, 15); dr = rotl(dr, 10) + ar = fn4(ar, br, cr, dr, er, m[1], 0x5c4dd124, 13); cr = rotl(cr, 10) + er = fn4(er, ar, br, cr, dr, m[2], 0x5c4dd124, 11); br = rotl(br, 10) + + // M'j = 15, 5, 1, 3, 7, 14, 6, 9, 11, 8, 12, 2, 10, 0, 4, 13 + // K' = 0x6d703ef3 + // S'j = 9, 7, 15, 11, 8, 6, 6, 14, 12, 13, 5, 14, 13, 13, 7, 5 + dr = fn3(dr, er, ar, br, cr, m[15], 0x6d703ef3, 9); ar = rotl(ar, 10) + cr = fn3(cr, dr, er, ar, br, m[5], 0x6d703ef3, 7); er = rotl(er, 10) + br = fn3(br, cr, dr, er, ar, m[1], 0x6d703ef3, 15); dr = rotl(dr, 10) + ar = fn3(ar, br, cr, dr, er, m[3], 0x6d703ef3, 11); cr = rotl(cr, 10) + er = fn3(er, ar, br, cr, dr, m[7], 0x6d703ef3, 8); br = rotl(br, 10) + dr = fn3(dr, er, ar, br, cr, m[14], 0x6d703ef3, 6); ar = rotl(ar, 10) + cr = fn3(cr, dr, er, ar, br, m[6], 0x6d703ef3, 6); er = rotl(er, 10) + br = fn3(br, cr, dr, er, ar, m[9], 0x6d703ef3, 14); dr = rotl(dr, 10) + ar = fn3(ar, br, cr, dr, er, m[11], 0x6d703ef3, 12); cr = rotl(cr, 10) + er = fn3(er, ar, br, cr, dr, m[8], 0x6d703ef3, 13); br = rotl(br, 10) + dr = fn3(dr, er, ar, br, cr, m[12], 0x6d703ef3, 5); ar = rotl(ar, 10) + cr = fn3(cr, dr, er, ar, br, m[2], 0x6d703ef3, 14); er = rotl(er, 10) + br = fn3(br, cr, dr, er, ar, m[10], 0x6d703ef3, 13); dr = rotl(dr, 10) + ar = fn3(ar, br, cr, dr, er, m[0], 0x6d703ef3, 13); cr = rotl(cr, 10) + er = fn3(er, ar, br, cr, dr, m[4], 0x6d703ef3, 7); br = rotl(br, 10) + dr = fn3(dr, er, ar, br, cr, m[13], 0x6d703ef3, 5); ar = rotl(ar, 10) + + // M'j = 8, 6, 4, 1, 3, 11, 15, 0, 5, 12, 2, 13, 9, 7, 10, 14 + // K' = 0x7a6d76e9 + // S'j = 15, 5, 8, 11, 14, 14, 6, 14, 6, 9, 12, 9, 12, 5, 15, 8 + cr = fn2(cr, dr, er, ar, br, m[8], 0x7a6d76e9, 15); er = rotl(er, 10) + br = fn2(br, cr, dr, er, ar, m[6], 0x7a6d76e9, 5); dr = rotl(dr, 10) + ar = fn2(ar, br, cr, dr, er, m[4], 0x7a6d76e9, 8); cr = rotl(cr, 10) + er = fn2(er, ar, br, cr, dr, m[1], 0x7a6d76e9, 11); br = rotl(br, 10) + dr = fn2(dr, er, ar, br, cr, m[3], 0x7a6d76e9, 14); ar = rotl(ar, 10) + cr = fn2(cr, dr, er, ar, br, m[11], 0x7a6d76e9, 14); er = rotl(er, 10) + br = fn2(br, cr, dr, er, ar, m[15], 0x7a6d76e9, 6); dr = rotl(dr, 10) + ar = fn2(ar, br, cr, dr, er, m[0], 0x7a6d76e9, 14); cr = rotl(cr, 10) + er = fn2(er, ar, br, cr, dr, m[5], 0x7a6d76e9, 6); br = rotl(br, 10) + dr = fn2(dr, er, ar, br, cr, m[12], 0x7a6d76e9, 9); ar = rotl(ar, 10) + cr = fn2(cr, dr, er, ar, br, m[2], 0x7a6d76e9, 12); er = rotl(er, 10) + br = fn2(br, cr, dr, er, ar, m[13], 0x7a6d76e9, 9); dr = rotl(dr, 10) + ar = fn2(ar, br, cr, dr, er, m[9], 0x7a6d76e9, 12); cr = rotl(cr, 10) + er = fn2(er, ar, br, cr, dr, m[7], 0x7a6d76e9, 5); br = rotl(br, 10) + dr = fn2(dr, er, ar, br, cr, m[10], 0x7a6d76e9, 15); ar = rotl(ar, 10) + cr = fn2(cr, dr, er, ar, br, m[14], 0x7a6d76e9, 8); er = rotl(er, 10) + + // M'j = 12, 15, 10, 4, 1, 5, 8, 7, 6, 2, 13, 14, 0, 3, 9, 11 + // K' = 0x00000000 + // S'j = 8, 5, 12, 9, 12, 5, 14, 6, 8, 13, 6, 5, 15, 13, 11, 11 + br = fn1(br, cr, dr, er, ar, m[12], 0x00000000, 8); dr = rotl(dr, 10) + ar = fn1(ar, br, cr, dr, er, m[15], 0x00000000, 5); cr = rotl(cr, 10) + er = fn1(er, ar, br, cr, dr, m[10], 0x00000000, 12); br = rotl(br, 10) + dr = fn1(dr, er, ar, br, cr, m[4], 0x00000000, 9); ar = rotl(ar, 10) + cr = fn1(cr, dr, er, ar, br, m[1], 0x00000000, 12); er = rotl(er, 10) + br = fn1(br, cr, dr, er, ar, m[5], 0x00000000, 5); dr = rotl(dr, 10) + ar = fn1(ar, br, cr, dr, er, m[8], 0x00000000, 14); cr = rotl(cr, 10) + er = fn1(er, ar, br, cr, dr, m[7], 0x00000000, 6); br = rotl(br, 10) + dr = fn1(dr, er, ar, br, cr, m[6], 0x00000000, 8); ar = rotl(ar, 10) + cr = fn1(cr, dr, er, ar, br, m[2], 0x00000000, 13); er = rotl(er, 10) + br = fn1(br, cr, dr, er, ar, m[13], 0x00000000, 6); dr = rotl(dr, 10) + ar = fn1(ar, br, cr, dr, er, m[14], 0x00000000, 5); cr = rotl(cr, 10) + er = fn1(er, ar, br, cr, dr, m[0], 0x00000000, 15); br = rotl(br, 10) + dr = fn1(dr, er, ar, br, cr, m[3], 0x00000000, 13); ar = rotl(ar, 10) + cr = fn1(cr, dr, er, ar, br, m[9], 0x00000000, 11); er = rotl(er, 10) + br = fn1(br, cr, dr, er, ar, m[11], 0x00000000, 11); dr = rotl(dr, 10) + + // change state + var t = (this._b + cl + dr) | 0 + this._b = (this._c + dl + er) | 0 + this._c = (this._d + el + ar) | 0 + this._d = (this._e + al + br) | 0 + this._e = (this._a + bl + cr) | 0 + this._a = t +} + +RIPEMD160.prototype._digest = function () { + // create padding and handle blocks + this._block[this._blockOffset++] = 0x80 + if (this._blockOffset > 56) { + this._block.fill(0, this._blockOffset, 64) + this._update() + this._blockOffset = 0 + } + + this._block.fill(0, this._blockOffset, 56) + this._block.writeUInt32LE(this._length[0], 56) + this._block.writeUInt32LE(this._length[1], 60) + this._update() + + // produce result + var buffer = new Buffer(20) + buffer.writeInt32LE(this._a, 0) + buffer.writeInt32LE(this._b, 4) + buffer.writeInt32LE(this._c, 8) + buffer.writeInt32LE(this._d, 12) + buffer.writeInt32LE(this._e, 16) + return buffer } function rotl (x, n) { return (x << n) | (x >>> (32 - n)) } -function ripemd160 (message) { - var H = [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0] +function fn1 (a, b, c, d, e, m, k, s) { + return (rotl((a + (b ^ c ^ d) + m + k) | 0, s) + e) | 0 +} - if (typeof message === 'string') { - message = new Buffer(message, 'utf8') - } +function fn2 (a, b, c, d, e, m, k, s) { + return (rotl((a + ((b & c) | ((~b) & d)) + m + k) | 0, s) + e) | 0 +} + +function fn3 (a, b, c, d, e, m, k, s) { + return (rotl((a + ((b | (~c)) ^ d) + m + k) | 0, s) + e) | 0 +} - var m = bytesToWords(message) +function fn4 (a, b, c, d, e, m, k, s) { + return (rotl((a + ((b & d) | (c & (~d))) + m + k) | 0, s) + e) | 0 +} - var nBitsLeft = message.length * 8 - var nBitsTotal = message.length * 8 +function fn5 (a, b, c, d, e, m, k, s) { + return (rotl((a + (b ^ (c | (~d))) + m + k) | 0, s) + e) | 0 +} - // Add padding - m[nBitsLeft >>> 5] |= 0x80 << (24 - nBitsLeft % 32) - m[(((nBitsLeft + 64) >>> 9) << 4) + 14] = ( - (((nBitsTotal << 8) | (nBitsTotal >>> 24)) & 0x00ff00ff) | - (((nBitsTotal << 24) | (nBitsTotal >>> 8)) & 0xff00ff00) - ) +module.exports = RIPEMD160 - for (var i = 0; i < m.length; i += 16) { - processBlock(H, m, i) +}).call(this,require("buffer").Buffer) +},{"buffer":49,"hash-base":89,"inherits":105}],147:[function(require,module,exports){ +/* eslint-disable node/no-deprecated-api */ +var buffer = require('buffer') +var Buffer = buffer.Buffer + +// alternative to using Object.keys for old browsers +function copyProps (src, dst) { + for (var key in src) { + dst[key] = src[key] } +} +if (Buffer.from && Buffer.alloc && Buffer.allocUnsafe && Buffer.allocUnsafeSlow) { + module.exports = buffer +} else { + // Copy properties from require('buffer') + copyProps(buffer, exports) + exports.Buffer = SafeBuffer +} + +function SafeBuffer (arg, encodingOrOffset, length) { + return Buffer(arg, encodingOrOffset, length) +} - // swap endian - for (i = 0; i < 5; i++) { - // shortcut - var H_i = H[i] +// Copy static methods from Buffer +copyProps(Buffer, SafeBuffer) - // Swap - H[i] = (((H_i << 8) | (H_i >>> 24)) & 0x00ff00ff) | - (((H_i << 24) | (H_i >>> 8)) & 0xff00ff00) +SafeBuffer.from = function (arg, encodingOrOffset, length) { + if (typeof arg === 'number') { + throw new TypeError('Argument must not be a number') } + return Buffer(arg, encodingOrOffset, length) +} - var digestbytes = wordsToBytes(H) - return new Buffer(digestbytes) +SafeBuffer.alloc = function (size, fill, encoding) { + if (typeof size !== 'number') { + throw new TypeError('Argument must be a number') + } + var buf = Buffer(size) + if (fill !== undefined) { + if (typeof encoding === 'string') { + buf.fill(fill, encoding) + } else { + buf.fill(fill) + } + } else { + buf.fill(0) + } + return buf } -module.exports = ripemd160 +SafeBuffer.allocUnsafe = function (size) { + if (typeof size !== 'number') { + throw new TypeError('Argument must be a number') + } + return Buffer(size) +} -}).call(this,require("buffer").Buffer) -},{"buffer":49}],131:[function(require,module,exports){ +SafeBuffer.allocUnsafeSlow = function (size) { + if (typeof size !== 'number') { + throw new TypeError('Argument must be a number') + } + return buffer.SlowBuffer(size) +} + +},{"buffer":49}],148:[function(require,module,exports){ (function (Buffer){ // prototype class for hash functions function Hash (blockSize, finalSize) { @@ -59992,7 +57226,7 @@ Hash.prototype._update = function () { module.exports = Hash }).call(this,require("buffer").Buffer) -},{"buffer":49}],132:[function(require,module,exports){ +},{"buffer":49}],149:[function(require,module,exports){ var exports = module.exports = function SHA (algorithm) { algorithm = algorithm.toLowerCase() @@ -60009,7 +57243,7 @@ exports.sha256 = require('./sha256') exports.sha384 = require('./sha384') exports.sha512 = require('./sha512') -},{"./sha":133,"./sha1":134,"./sha224":135,"./sha256":136,"./sha384":137,"./sha512":138}],133:[function(require,module,exports){ +},{"./sha":150,"./sha1":151,"./sha224":152,"./sha256":153,"./sha384":154,"./sha512":155}],150:[function(require,module,exports){ (function (Buffer){ /* * A JavaScript implementation of the Secure Hash Algorithm, SHA-0, as defined @@ -60106,7 +57340,7 @@ Sha.prototype._hash = function () { module.exports = Sha }).call(this,require("buffer").Buffer) -},{"./hash":131,"buffer":49,"inherits":97}],134:[function(require,module,exports){ +},{"./hash":148,"buffer":49,"inherits":105}],151:[function(require,module,exports){ (function (Buffer){ /* * A JavaScript implementation of the Secure Hash Algorithm, SHA-1, as defined @@ -60208,7 +57442,7 @@ Sha1.prototype._hash = function () { module.exports = Sha1 }).call(this,require("buffer").Buffer) -},{"./hash":131,"buffer":49,"inherits":97}],135:[function(require,module,exports){ +},{"./hash":148,"buffer":49,"inherits":105}],152:[function(require,module,exports){ (function (Buffer){ /** * A JavaScript implementation of the Secure Hash Algorithm, SHA-256, as defined @@ -60264,7 +57498,7 @@ Sha224.prototype._hash = function () { module.exports = Sha224 }).call(this,require("buffer").Buffer) -},{"./hash":131,"./sha256":136,"buffer":49,"inherits":97}],136:[function(require,module,exports){ +},{"./hash":148,"./sha256":153,"buffer":49,"inherits":105}],153:[function(require,module,exports){ (function (Buffer){ /** * A JavaScript implementation of the Secure Hash Algorithm, SHA-256, as defined @@ -60402,7 +57636,7 @@ Sha256.prototype._hash = function () { module.exports = Sha256 }).call(this,require("buffer").Buffer) -},{"./hash":131,"buffer":49,"inherits":97}],137:[function(require,module,exports){ +},{"./hash":148,"buffer":49,"inherits":105}],154:[function(require,module,exports){ (function (Buffer){ var inherits = require('inherits') var SHA512 = require('./sha512') @@ -60462,7 +57696,7 @@ Sha384.prototype._hash = function () { module.exports = Sha384 }).call(this,require("buffer").Buffer) -},{"./hash":131,"./sha512":138,"buffer":49,"inherits":97}],138:[function(require,module,exports){ +},{"./hash":148,"./sha512":155,"buffer":49,"inherits":105}],155:[function(require,module,exports){ (function (Buffer){ var inherits = require('inherits') var Hash = require('./hash') @@ -60725,7 +57959,7 @@ Sha512.prototype._hash = function () { module.exports = Sha512 }).call(this,require("buffer").Buffer) -},{"./hash":131,"buffer":49,"inherits":97}],139:[function(require,module,exports){ +},{"./hash":148,"buffer":49,"inherits":105}],156:[function(require,module,exports){ // Copyright Joyent, Inc. and other Node contributors. // // Permission is hereby granted, free of charge, to any person obtaining a @@ -60854,7 +58088,7 @@ Stream.prototype.pipe = function(dest, options) { return dest; }; -},{"events":87,"inherits":97,"readable-stream/duplex.js":119,"readable-stream/passthrough.js":126,"readable-stream/readable.js":127,"readable-stream/transform.js":128,"readable-stream/writable.js":129}],140:[function(require,module,exports){ +},{"events":87,"inherits":105,"readable-stream/duplex.js":132,"readable-stream/passthrough.js":142,"readable-stream/readable.js":143,"readable-stream/transform.js":144,"readable-stream/writable.js":145}],157:[function(require,module,exports){ // Copyright Joyent, Inc. and other Node contributors. // // Permission is hereby granted, free of charge, to any person obtaining a @@ -61077,7 +58311,7 @@ function base64DetectIncompleteChar(buffer) { this.charLength = this.charReceived ? 3 : 0; } -},{"buffer":49}],141:[function(require,module,exports){ +},{"buffer":49}],158:[function(require,module,exports){ (function (global){ /** @@ -61148,7 +58382,7 @@ function config (name) { } }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{}],142:[function(require,module,exports){ +},{}],159:[function(require,module,exports){ var indexOf = require('indexof'); var Object_keys = function (obj) { @@ -61288,7 +58522,7 @@ exports.createContext = Script.createContext = function (context) { return copy; }; -},{"indexof":96}],143:[function(require,module,exports){ +},{"indexof":104}],160:[function(require,module,exports){ var BaseKeyType = { OURS: 1, THEIRS: 2 @@ -61296,7 +58530,7 @@ var BaseKeyType = { module.exports = BaseKeyType; -},{}],144:[function(require,module,exports){ +},{}],161:[function(require,module,exports){ var ChainType = { SENDING: 1, RECEIVING: 2 @@ -61304,7 +58538,7 @@ var ChainType = { module.exports = ChainType; -},{}],145:[function(require,module,exports){ +},{}],162:[function(require,module,exports){ 'use strict'; var Crypto = require('crypto'); @@ -61422,7 +58656,7 @@ module.exports = { libsignal_Curve_async: libsignal_Curve_async }; -},{"./curve25519_wrapper.js":154,"crypto":59}],146:[function(require,module,exports){ +},{"./curve25519_wrapper.js":171,"crypto":60}],163:[function(require,module,exports){ var Crypto = require('./crypto.js'); function isNonNegativeInteger(n) { @@ -61476,7 +58710,7 @@ var KeyHelper = { module.exports = KeyHelper; -},{"./crypto.js":153}],147:[function(require,module,exports){ +},{"./crypto.js":170}],164:[function(require,module,exports){ var VERSION = 0; var Crypto = require('./crypto.js'); @@ -61551,7 +58785,7 @@ FingerprintGenerator.prototype = { module.exports = FingerprintGenerator; -},{"../build/dcodeIO.js":2,"./crypto.js":153}],148:[function(require,module,exports){ +},{"../build/dcodeIO.js":2,"./crypto.js":170}],165:[function(require,module,exports){ var SessionLock = require('./SessionLock.js'); var Crypto = require('./crypto.js'); var SessionRecord = require('./SessionRecord.js'); @@ -61783,7 +59017,7 @@ var mySessionBuilder = function (storage, remoteAddress) { module.exports = mySessionBuilder; -},{"./BaseKeyType.js":143,"./ChainType.js":144,"./SessionLock.js":150,"./SessionRecord.js":151,"./crypto.js":153,"./helpers.js":155}],149:[function(require,module,exports){ +},{"./BaseKeyType.js":160,"./ChainType.js":161,"./SessionLock.js":167,"./SessionRecord.js":168,"./crypto.js":170,"./helpers.js":172}],166:[function(require,module,exports){ var util = require('../src/helpers.js'); var SessionLock = require('./SessionLock.js'); @@ -61794,25 +59028,32 @@ var ChainType = require('./ChainType.js'); var protobuf = require('../build/protobufs_concat.js'); var dcodeIO = require('../build/dcodeIO.js'); -function SessionCipher(storage, remoteAddress) { +function SessionCipher(storage, remoteAddress, options) { + options = options || {}; + + if (typeof options.messageKeysLimit === 'undefined') { + options.messageKeysLimit = 1000; + } + + this.messageKeysLimit = options.messageKeysLimit; this.remoteAddress = remoteAddress; this.storage = storage; } SessionCipher.prototype = { getRecord: function(encodedNumber) { - return this.storage.loadSession(encodedNumber).then(function(serialized) { - if (serialized === undefined) { - return undefined; - } - return SessionRecord.deserialize(serialized); - }); + return this.storage.loadSession(encodedNumber).then(function(serialized) { + if (serialized === undefined) { + return undefined; + } + return SessionRecord.deserialize(serialized); + }); }, encrypt: function(buffer, encoding) { buffer = dcodeIO.ByteBuffer.wrap(buffer, encoding).toArrayBuffer(); return SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { if (!(buffer instanceof ArrayBuffer)) { - throw new Error("Expected buffer to be an ArrayBuffer"); + throw new Error("Expected buffer to be an ArrayBuffer"); } var address = this.remoteAddress.toString(); @@ -61821,88 +59062,88 @@ SessionCipher.prototype = { var msg = new protobuf.WhisperMessage(); return Promise.all([ - this.storage.getIdentityKeyPair(), - this.storage.getLocalRegistrationId(), - this.getRecord(address) + this.storage.getIdentityKeyPair(), + this.storage.getLocalRegistrationId(), + this.getRecord(address) ]).then(function(results) { - ourIdentityKey = results[0]; - myRegistrationId = results[1]; - record = results[2]; - if (!record) { - throw new Error("No record for " + address); - } - session = record.getOpenSession(); - if (!session) { - throw new Error("No session to encrypt message for " + address); - } + ourIdentityKey = results[0]; + myRegistrationId = results[1]; + record = results[2]; + if (!record) { + throw new Error("No record for " + address); + } + session = record.getOpenSession(); + if (!session) { + throw new Error("No session to encrypt message for " + address); + } - msg.ephemeralKey = util.toArrayBuffer( - session.currentRatchet.ephemeralKeyPair.pubKey - ); - chain = session[util.toString(msg.ephemeralKey)]; - if (chain.chainType === ChainType.RECEIVING) { - throw new Error("Tried to encrypt on a receiving chain"); - } + msg.ephemeralKey = util.toArrayBuffer( + session.currentRatchet.ephemeralKeyPair.pubKey + ); + chain = session[util.toString(msg.ephemeralKey)]; + if (chain.chainType === ChainType.RECEIVING) { + throw new Error("Tried to encrypt on a receiving chain"); + } - return this.fillMessageKeys(chain, chain.chainKey.counter + 1); + return this.fillMessageKeys(chain, chain.chainKey.counter + 1); }.bind(this)).then(function() { - return Crypto.HKDF( - util.toArrayBuffer(chain.messageKeys[chain.chainKey.counter]), - new ArrayBuffer(32), "WhisperMessageKeys"); + return Crypto.HKDF( + util.toArrayBuffer(chain.messageKeys[chain.chainKey.counter]), + new ArrayBuffer(32), "WhisperMessageKeys"); }).then(function(keys) { - delete chain.messageKeys[chain.chainKey.counter]; - msg.counter = chain.chainKey.counter; - msg.previousCounter = session.currentRatchet.previousCounter; - - return Crypto.crypto.encrypt( - keys[0], buffer, keys[2].slice(0, 16) - ).then(function(ciphertext) { - msg.ciphertext = ciphertext; - var encodedMsg = msg.toArrayBuffer(); - - var macInput = new Uint8Array(encodedMsg.byteLength + 33*2 + 1); - macInput.set(new Uint8Array(util.toArrayBuffer(ourIdentityKey.pubKey))); - macInput.set(new Uint8Array(util.toArrayBuffer(session.indexInfo.remoteIdentityKey)), 33); - macInput[33*2] = (3 << 4) | 3; - macInput.set(new Uint8Array(encodedMsg), 33*2 + 1); - - return Crypto.crypto.sign(keys[1], macInput.buffer).then(function(mac) { - var result = new Uint8Array(encodedMsg.byteLength + 9); - result[0] = (3 << 4) | 3; - result.set(new Uint8Array(encodedMsg), 1); - result.set(new Uint8Array(mac, 0, 8), encodedMsg.byteLength + 1); - - record.updateSessionState(session); - return this.storage.storeSession(address, record.serialize()).then(function() { - return result; - }); - }.bind(this)); + delete chain.messageKeys[chain.chainKey.counter]; + msg.counter = chain.chainKey.counter; + msg.previousCounter = session.currentRatchet.previousCounter; + + return Crypto.crypto.encrypt( + keys[0], buffer, keys[2].slice(0, 16) + ).then(function(ciphertext) { + msg.ciphertext = ciphertext; + var encodedMsg = msg.toArrayBuffer(); + + var macInput = new Uint8Array(encodedMsg.byteLength + 33*2 + 1); + macInput.set(new Uint8Array(util.toArrayBuffer(ourIdentityKey.pubKey))); + macInput.set(new Uint8Array(util.toArrayBuffer(session.indexInfo.remoteIdentityKey)), 33); + macInput[33*2] = (3 << 4) | 3; + macInput.set(new Uint8Array(encodedMsg), 33*2 + 1); + + return Crypto.crypto.sign(keys[1], macInput.buffer).then(function(mac) { + var result = new Uint8Array(encodedMsg.byteLength + 9); + result[0] = (3 << 4) | 3; + result.set(new Uint8Array(encodedMsg), 1); + result.set(new Uint8Array(mac, 0, 8), encodedMsg.byteLength + 1); + + record.updateSessionState(session); + return this.storage.storeSession(address, record.serialize()).then(function() { + return result; + }); }.bind(this)); + }.bind(this)); }.bind(this)).then(function(message) { - if (session.pendingPreKey !== undefined) { - var preKeyMsg = new protobuf.PreKeyWhisperMessage(); - preKeyMsg.identityKey = util.toArrayBuffer(ourIdentityKey.pubKey); - preKeyMsg.registrationId = myRegistrationId; - - preKeyMsg.baseKey = util.toArrayBuffer(session.pendingPreKey.baseKey); - preKeyMsg.preKeyId = session.pendingPreKey.preKeyId; - preKeyMsg.signedPreKeyId = session.pendingPreKey.signedKeyId; - - preKeyMsg.message = message; - var result = String.fromCharCode((3 << 4) | 3) + util.toString(preKeyMsg.encode()); - return { - type : 3, - body : result, - registrationId : record.registrationId - }; + if (session.pendingPreKey !== undefined) { + var preKeyMsg = new protobuf.PreKeyWhisperMessage(); + preKeyMsg.identityKey = util.toArrayBuffer(ourIdentityKey.pubKey); + preKeyMsg.registrationId = myRegistrationId; - } else { - return { - type : 1, - body : util.toString(message), - registrationId : record.registrationId - }; - } + preKeyMsg.baseKey = util.toArrayBuffer(session.pendingPreKey.baseKey); + preKeyMsg.preKeyId = session.pendingPreKey.preKeyId; + preKeyMsg.signedPreKeyId = session.pendingPreKey.signedKeyId; + + preKeyMsg.message = message; + var result = String.fromCharCode((3 << 4) | 3) + util.toString(preKeyMsg.encode()); + return { + type : 3, + body : result, + registrationId : record.registrationId + }; + + } else { + return { + type : 1, + body : util.toString(message), + registrationId : record.registrationId + }; + } }); }.bind(this)); }, @@ -61911,82 +59152,82 @@ SessionCipher.prototype = { // using each one at a time. Stop and return the result if we get // a valid result if (sessionList.length === 0) { - return Promise.reject(errors[0]); + return Promise.reject(errors[0]); } var session = sessionList.pop(); return this.doDecryptWhisperMessage(buffer, session).then(function(plaintext) { - return { plaintext: plaintext, session: session }; + return { plaintext: plaintext, session: session }; }).catch(function(e) { - errors.push(e); - return this.decryptWithSessionList(buffer, sessionList, errors); + errors.push(e); + return this.decryptWithSessionList(buffer, sessionList, errors); }.bind(this)); }, decryptWhisperMessage: function(buffer, encoding) { - buffer = dcodeIO.ByteBuffer.wrap(buffer, encoding).toArrayBuffer(); - return SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { - var address = this.remoteAddress.toString(); - return this.getRecord(address).then(function(record) { - if (!record) { - throw new Error("No record for device " + address); - } - var errors = []; - return this.decryptWithSessionList(buffer, record.getSessions(), errors).then(function(result) { - return this.getRecord(address).then(function(record) { - record.updateSessionState(result.session); - return this.storage.storeSession(address, record.serialize()).then(function() { - return result.plaintext; - }); - }.bind(this)); - }.bind(this)); + buffer = dcodeIO.ByteBuffer.wrap(buffer, encoding).toArrayBuffer(); + return SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { + var address = this.remoteAddress.toString(); + return this.getRecord(address).then(function(record) { + if (!record) { + throw new Error("No record for device " + address); + } + var errors = []; + return this.decryptWithSessionList(buffer, record.getSessions(), errors).then(function(result) { + return this.getRecord(address).then(function(record) { + record.updateSessionState(result.session); + return this.storage.storeSession(address, record.serialize()).then(function() { + return result.plaintext; + }); + }.bind(this)); }.bind(this)); }.bind(this)); + }.bind(this)); }, decryptPreKeyWhisperMessage: function(buffer, encoding) { - buffer = dcodeIO.ByteBuffer.wrap(buffer, encoding); - var version = buffer.readUint8(); - if ((version & 0xF) > 3 || (version >> 4) < 3) { // min version > 3 or max version < 3 - throw new Error("Incompatible version number on PreKeyWhisperMessage"); - } - return SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { - var address = this.remoteAddress.toString(); - return this.getRecord(address).then(function(record) { - var preKeyProto = protobuf.PreKeyWhisperMessage.decode(buffer); - if (!record) { - if (preKeyProto.registrationId === undefined) { - throw new Error("No registrationId"); - } - record = new SessionRecord( - util.toString(preKeyProto.identityKey), - preKeyProto.registrationId - ); + buffer = dcodeIO.ByteBuffer.wrap(buffer, encoding); + var version = buffer.readUint8(); + if ((version & 0xF) > 3 || (version >> 4) < 3) { // min version > 3 or max version < 3 + throw new Error("Incompatible version number on PreKeyWhisperMessage"); + } + return SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { + var address = this.remoteAddress.toString(); + return this.getRecord(address).then(function(record) { + var preKeyProto = protobuf.PreKeyWhisperMessage.decode(buffer); + if (!record) { + if (preKeyProto.registrationId === undefined) { + throw new Error("No registrationId"); + } + record = new SessionRecord( + util.toString(preKeyProto.identityKey), + preKeyProto.registrationId + ); + } + var builder = new SessionBuilder(this.storage, this.remoteAddress); + return builder.processV3(record, preKeyProto).then(function(preKeyId) { + var session = record.getSessionByBaseKey(preKeyProto.baseKey); + return this.doDecryptWhisperMessage( + preKeyProto.message.toArrayBuffer(), session + ).then(function(plaintext) { + record.updateSessionState(session); + return this.storage.storeSession(address, record.serialize()).then(function() { + if (preKeyId !== undefined) { + return this.storage.removePreKey(preKeyId); } - var builder = new SessionBuilder(this.storage, this.remoteAddress); - return builder.processV3(record, preKeyProto).then(function(preKeyId) { - var session = record.getSessionByBaseKey(preKeyProto.baseKey); - return this.doDecryptWhisperMessage( - preKeyProto.message.toArrayBuffer(), session - ).then(function(plaintext) { - record.updateSessionState(session); - return this.storage.storeSession(address, record.serialize()).then(function() { - if (preKeyId !== undefined) { - return this.storage.removePreKey(preKeyId); - } - }.bind(this)).then(function() { - return plaintext; - }); - }.bind(this)); - }.bind(this)); + }.bind(this)).then(function() { + return plaintext; + }); }.bind(this)); + }.bind(this)); }.bind(this)); + }.bind(this)); }, doDecryptWhisperMessage: function(messageBytes, session) { if (!(messageBytes instanceof ArrayBuffer)) { - throw new Error("Expected messageBytes to be an ArrayBuffer"); + throw new Error("Expected messageBytes to be an ArrayBuffer"); } var version = (new Uint8Array(messageBytes))[0]; if ((version & 0xF) > 3 || (version >> 4) < 3) { // min version > 3 or max version < 3 - throw new Error("Incompatible version number on WhisperMessage"); + throw new Error("Incompatible version number on WhisperMessage"); } var messageProto = messageBytes.slice(1, messageBytes.byteLength- 8); var mac = messageBytes.slice(messageBytes.byteLength - 8, messageBytes.byteLength); @@ -61995,148 +59236,148 @@ SessionCipher.prototype = { var remoteEphemeralKey = message.ephemeralKey.toArrayBuffer(); if (session === undefined) { - return Promise.reject(new Error("No session found to decrypt message from " + this.remoteAddress.toString())); + return Promise.reject(new Error("No session found to decrypt message from " + this.remoteAddress.toString())); } if (session.indexInfo.closed != -1) { - // console.log('decrypting message for closed session'); + // console.log('decrypting message for closed session'); } return this.maybeStepRatchet(session, remoteEphemeralKey, message.previousCounter).then(function() { - var chain = session[util.toString(message.ephemeralKey)]; - if (chain.chainType === ChainType.SENDING) { - throw new Error("Tried to decrypt on a sending chain"); - } + var chain = session[util.toString(message.ephemeralKey)]; + if (chain.chainType === ChainType.SENDING) { + throw new Error("Tried to decrypt on a sending chain"); + } - return this.fillMessageKeys(chain, message.counter).then(function() { - var messageKey = chain.messageKeys[message.counter]; - if (messageKey === undefined) { - var e = new Error("Message key not found. The counter was repeated or the key was not filled."); - e.name = 'MessageCounterError'; - throw e; - } - delete chain.messageKeys[message.counter]; - return Crypto.HKDF(util.toArrayBuffer(messageKey), new ArrayBuffer(32), "WhisperMessageKeys"); - }); + return this.fillMessageKeys(chain, message.counter).then(function() { + var messageKey = chain.messageKeys[message.counter]; + if (messageKey === undefined) { + var e = new Error("Message key not found. The counter was repeated or the key was not filled."); + e.name = 'MessageCounterError'; + throw e; + } + delete chain.messageKeys[message.counter]; + return Crypto.HKDF(util.toArrayBuffer(messageKey), new ArrayBuffer(32), "WhisperMessageKeys"); + }); }.bind(this)).then(function(keys) { - return this.storage.getIdentityKeyPair().then(function(ourIdentityKey) { + return this.storage.getIdentityKeyPair().then(function(ourIdentityKey) { - var macInput = new Uint8Array(messageProto.byteLength + 33*2 + 1); - macInput.set(new Uint8Array(util.toArrayBuffer(session.indexInfo.remoteIdentityKey))); - macInput.set(new Uint8Array(util.toArrayBuffer(ourIdentityKey.pubKey)), 33); - macInput[33*2] = (3 << 4) | 3; - macInput.set(new Uint8Array(messageProto), 33*2 + 1); + var macInput = new Uint8Array(messageProto.byteLength + 33*2 + 1); + macInput.set(new Uint8Array(util.toArrayBuffer(session.indexInfo.remoteIdentityKey))); + macInput.set(new Uint8Array(util.toArrayBuffer(ourIdentityKey.pubKey)), 33); + macInput[33*2] = (3 << 4) | 3; + macInput.set(new Uint8Array(messageProto), 33*2 + 1); - return Crypto.verifyMAC(macInput.buffer, keys[1], mac, 8); - }.bind(this)).then(function() { - return Crypto.crypto.decrypt(keys[0], message.ciphertext.toArrayBuffer(), keys[2].slice(0, 16)); - }); + return Crypto.verifyMAC(macInput.buffer, keys[1], mac, 8); + }.bind(this)).then(function() { + return Crypto.crypto.decrypt(keys[0], message.ciphertext.toArrayBuffer(), keys[2].slice(0, 16)); + }); }.bind(this)).then(function(plaintext) { - delete session.pendingPreKey; - return plaintext; + delete session.pendingPreKey; + return plaintext; }); }, fillMessageKeys: function(chain, counter) { - if (Object.keys(chain.messageKeys).length >= 1000) { - // console.log("Too many message keys for chain"); - return Promise.resolve(); // Stalker, much? - } + if (this.messageKeysLimit && Object.keys(chain.messageKeys).length >= this.messageKeysLimit) { + // console.log("Too many message keys for chain"); + return Promise.resolve(); // Stalker, much? + } - if (chain.chainKey.counter >= counter) { - return Promise.resolve(); // Already calculated - } + if (chain.chainKey.counter >= counter) { + return Promise.resolve(); // Already calculated + } - if (chain.chainKey.key === undefined) { - throw new Error("Got invalid request to extend chain after it was already closed"); - } + if (chain.chainKey.key === undefined) { + throw new Error("Got invalid request to extend chain after it was already closed"); + } - var key = util.toArrayBuffer(chain.chainKey.key); - var byteArray = new Uint8Array(1); - byteArray[0] = 1; - return Crypto.crypto.sign(key, byteArray.buffer).then(function(mac) { - byteArray[0] = 2; - return Crypto.crypto.sign(key, byteArray.buffer).then(function(key) { - chain.messageKeys[chain.chainKey.counter + 1] = mac; - chain.chainKey.key = key; - chain.chainKey.counter += 1; - return this.fillMessageKeys(chain, counter); - }.bind(this)); + var key = util.toArrayBuffer(chain.chainKey.key); + var byteArray = new Uint8Array(1); + byteArray[0] = 1; + return Crypto.crypto.sign(key, byteArray.buffer).then(function(mac) { + byteArray[0] = 2; + return Crypto.crypto.sign(key, byteArray.buffer).then(function(key) { + chain.messageKeys[chain.chainKey.counter + 1] = mac; + chain.chainKey.key = key; + chain.chainKey.counter += 1; + return this.fillMessageKeys(chain, counter); }.bind(this)); + }.bind(this)); }, maybeStepRatchet: function(session, remoteKey, previousCounter) { - if (session[util.toString(remoteKey)] !== undefined) { - return Promise.resolve(); - } + if (session[util.toString(remoteKey)] !== undefined) { + return Promise.resolve(); + } - // console.log('New remote ephemeral key'); - var ratchet = session.currentRatchet; + // console.log('New remote ephemeral key'); + var ratchet = session.currentRatchet; - return Promise.resolve().then(function() { - var previousRatchet = session[util.toString(ratchet.lastRemoteEphemeralKey)]; - if (previousRatchet !== undefined) { - return this.fillMessageKeys(previousRatchet, previousCounter).then(function() { - delete previousRatchet.chainKey.key; - session.oldRatchetList[session.oldRatchetList.length] = { - added : Date.now(), - ephemeralKey : ratchet.lastRemoteEphemeralKey - }; - }); - } - }.bind(this)).then(function() { - return this.calculateRatchet(session, remoteKey, false).then(function() { - // Now swap the ephemeral key and calculate the new sending chain - var previousRatchet = util.toString(ratchet.ephemeralKeyPair.pubKey); - if (session[previousRatchet] !== undefined) { - ratchet.previousCounter = session[previousRatchet].chainKey.counter; - delete session[previousRatchet]; - } + return Promise.resolve().then(function() { + var previousRatchet = session[util.toString(ratchet.lastRemoteEphemeralKey)]; + if (previousRatchet !== undefined) { + return this.fillMessageKeys(previousRatchet, previousCounter).then(function() { + delete previousRatchet.chainKey.key; + session.oldRatchetList[session.oldRatchetList.length] = { + added : Date.now(), + ephemeralKey : ratchet.lastRemoteEphemeralKey + }; + }); + } + }.bind(this)).then(function() { + return this.calculateRatchet(session, remoteKey, false).then(function() { + // Now swap the ephemeral key and calculate the new sending chain + var previousRatchet = util.toString(ratchet.ephemeralKeyPair.pubKey); + if (session[previousRatchet] !== undefined) { + ratchet.previousCounter = session[previousRatchet].chainKey.counter; + delete session[previousRatchet]; + } - return Crypto.crypto.createKeyPair().then(function(keyPair) { - ratchet.ephemeralKeyPair = keyPair; - return this.calculateRatchet(session, remoteKey, true).then(function() { - ratchet.lastRemoteEphemeralKey = remoteKey; - }.bind(this)); - }.bind(this)); + return Crypto.crypto.createKeyPair().then(function(keyPair) { + ratchet.ephemeralKeyPair = keyPair; + return this.calculateRatchet(session, remoteKey, true).then(function() { + ratchet.lastRemoteEphemeralKey = remoteKey; }.bind(this)); + }.bind(this)); }.bind(this)); + }.bind(this)); }, calculateRatchet: function(session, remoteKey, sending) { - var ratchet = session.currentRatchet; + var ratchet = session.currentRatchet; - return Crypto.crypto.ECDHE(remoteKey, util.toArrayBuffer(ratchet.ephemeralKeyPair.privKey)).then(function(sharedSecret) { - return Crypto.HKDF(sharedSecret, util.toArrayBuffer(ratchet.rootKey), "WhisperRatchet").then(function(masterKey) { - var ephemeralPublicKey; - if (sending) { - ephemeralPublicKey = ratchet.ephemeralKeyPair.pubKey; - } - else { - ephemeralPublicKey = remoteKey; - } - session[util.toString(ephemeralPublicKey)] = { - messageKeys: {}, - chainKey: { counter: -1, key: masterKey[1] }, - chainType: sending ? ChainType.SENDING : ChainType.RECEIVING - }; - ratchet.rootKey = masterKey[0]; - }); + return Crypto.crypto.ECDHE(remoteKey, util.toArrayBuffer(ratchet.ephemeralKeyPair.privKey)).then(function(sharedSecret) { + return Crypto.HKDF(sharedSecret, util.toArrayBuffer(ratchet.rootKey), "WhisperRatchet").then(function(masterKey) { + var ephemeralPublicKey; + if (sending) { + ephemeralPublicKey = ratchet.ephemeralKeyPair.pubKey; + } + else { + ephemeralPublicKey = remoteKey; + } + session[util.toString(ephemeralPublicKey)] = { + messageKeys: {}, + chainKey: { counter: -1, key: masterKey[1] }, + chainType: sending ? ChainType.SENDING : ChainType.RECEIVING + }; + ratchet.rootKey = masterKey[0]; }); + }); }, getRemoteRegistrationId: function() { return SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { return this.getRecord(this.remoteAddress.toString()).then(function(record) { - if (record === undefined) { - return undefined; - } - return record.registrationId; + if (record === undefined) { + return undefined; + } + return record.registrationId; }); }.bind(this)); }, hasOpenSession: function() { return SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { return this.getRecord(this.remoteAddress.toString()).then(function(record) { - if (record === undefined) { - return false; - } - return record.haveOpenSession(); + if (record === undefined) { + return false; + } + return record.haveOpenSession(); }); }.bind(this)); }, @@ -62145,7 +59386,7 @@ SessionCipher.prototype = { return SessionLock.queueJobForNumber(address, function() { return this.getRecord(address).then(function(record) { if (record === undefined || record.getOpenSession() === undefined) { - return; + return; } record.archiveCurrentState(); @@ -62155,27 +59396,27 @@ SessionCipher.prototype = { } }; -var mySessionCipher = function(storage, remoteAddress) { - var cipher = new SessionCipher(storage, remoteAddress); +var mySessionCipher = function(storage, remoteAddress, options) { + var cipher = new SessionCipher(storage, remoteAddress, options); - // returns a Promise that resolves to a ciphertext object - this.encrypt = cipher.encrypt.bind(cipher); + // returns a Promise that resolves to a ciphertext object + this.encrypt = cipher.encrypt.bind(cipher); - // returns a Promise that inits a session if necessary and resolves - // to a decrypted plaintext array buffer - this.decryptPreKeyWhisperMessage = cipher.decryptPreKeyWhisperMessage.bind(cipher); + // returns a Promise that inits a session if necessary and resolves + // to a decrypted plaintext array buffer + this.decryptPreKeyWhisperMessage = cipher.decryptPreKeyWhisperMessage.bind(cipher); - // returns a Promise that resolves to decrypted plaintext array buffer - this.decryptWhisperMessage = cipher.decryptWhisperMessage.bind(cipher); + // returns a Promise that resolves to decrypted plaintext array buffer + this.decryptWhisperMessage = cipher.decryptWhisperMessage.bind(cipher); - this.getRemoteRegistrationId = cipher.getRemoteRegistrationId.bind(cipher); - this.hasOpenSession = cipher.hasOpenSession.bind(cipher); - this.closeOpenSessionForDevice = cipher.closeOpenSessionForDevice.bind(cipher); + this.getRemoteRegistrationId = cipher.getRemoteRegistrationId.bind(cipher); + this.hasOpenSession = cipher.hasOpenSession.bind(cipher); + this.closeOpenSessionForDevice = cipher.closeOpenSessionForDevice.bind(cipher); }; module.exports = mySessionCipher; -},{"../build/dcodeIO.js":2,"../build/protobufs_concat.js":3,"../src/helpers.js":155,"./ChainType.js":144,"./SessionBuilder.js":148,"./SessionLock.js":150,"./SessionRecord.js":151,"./crypto.js":153}],150:[function(require,module,exports){ +},{"../build/dcodeIO.js":2,"../build/protobufs_concat.js":3,"../src/helpers.js":172,"./ChainType.js":161,"./SessionBuilder.js":165,"./SessionLock.js":167,"./SessionRecord.js":168,"./crypto.js":170}],167:[function(require,module,exports){ /* * jobQueue manages multiple queues indexed by device to serialize * session io ops on the database. @@ -62199,7 +59440,7 @@ SessionLock.queueJobForNumber = function queueJobForNumber(number, runJob) { module.exports = SessionLock; -},{}],151:[function(require,module,exports){ +},{}],168:[function(require,module,exports){ /* * vim: ts=4:sw=4 */ @@ -62472,7 +59713,7 @@ var SessionRecord = function() { module.exports = SessionRecord; -},{"../build/dcodeIO.js":2,"./BaseKeyType.js":143,"./helpers.js":155}],152:[function(require,module,exports){ +},{"../build/dcodeIO.js":2,"./BaseKeyType.js":160,"./helpers.js":172}],169:[function(require,module,exports){ function SignalProtocolAddress(name, deviceId) { this.name = name; this.deviceId = deviceId; @@ -62512,7 +59753,7 @@ mySignalProtocolAddress.fromString = function(encodedAddress) { module.exports = mySignalProtocolAddress; -},{}],153:[function(require,module,exports){ +},{}],170:[function(require,module,exports){ /* * vim: ts=4:sw=4 */ @@ -62667,7 +59908,7 @@ module.exports = myCrypto; // } // }; -},{"../build/dcodeIO.js":2,"./Curve.js":145,"./helpers.js":155,"./node_polyfills.js":undefined}],154:[function(require,module,exports){ +},{"../build/dcodeIO.js":2,"./Curve.js":162,"./helpers.js":172,"./node_polyfills.js":undefined}],171:[function(require,module,exports){ 'use strict'; var Internal = Internal || {}; @@ -62819,7 +60060,7 @@ Internal.curve25519_async = { module.exports = Internal; -},{"../build/curve25519_concat.js":1}],155:[function(require,module,exports){ +},{"../build/curve25519_concat.js":1}],172:[function(require,module,exports){ /* * vim: ts=4:sw=4 */ @@ -62876,7 +60117,7 @@ var util = { module.exports = util; -},{"../build/dcodeIO.js":2}],156:[function(require,module,exports){ +},{"../build/dcodeIO.js":2}],173:[function(require,module,exports){ module.exports = { KeyHelper: require('./KeyHelper.js'), SignalProtocolAddress: require('./SignalProtocolAddress.js'), @@ -62888,10 +60129,10 @@ module.exports = { _curve: require('./Curve.js') }; -},{"./Curve.js":145,"./KeyHelper.js":146,"./NumericFingerprint.js":147,"./SessionBuilder.js":148,"./SessionCipher.js":149,"./SignalProtocolAddress.js":152,"./crypto.js":153}],157:[function(require,module,exports){ +},{"./Curve.js":162,"./KeyHelper.js":163,"./NumericFingerprint.js":164,"./SessionBuilder.js":165,"./SessionCipher.js":166,"./SignalProtocolAddress.js":169,"./crypto.js":170}],174:[function(require,module,exports){ // for legacy builds // we browserify bundle this into a js file for folks to include in their html var libsignal = require('./main.js'); window.libsignal = libsignal; -},{"./main.js":156}]},{},[157]); +},{"./main.js":173}]},{},[174]); diff --git a/package.json b/package.json index 8971a64..0e22a7a 100644 --- a/package.json +++ b/package.json @@ -6,13 +6,13 @@ "contributors": [ "liliakai" ], - "version": "0.0.6", + "version": "0.0.7", "main": "src/main.js", "license": "GPL-3.0", "dependencies": { "bytebuffer": "^3.5.5", "long": "^3.1.0", - "node-webcrypto-ossl": "^1.0.15", + "node-webcrypto-ossl": "^1.0.30", "protobufjs": "5.0.1", "tiny-worker": "^1.1.7", "webworkify": "^1.4.0" diff --git a/src/SessionCipher.js b/src/SessionCipher.js index dedc07f..6c19368 100644 --- a/src/SessionCipher.js +++ b/src/SessionCipher.js @@ -8,25 +8,32 @@ var ChainType = require('./ChainType.js'); var protobuf = require('../build/protobufs_concat.js'); var dcodeIO = require('../build/dcodeIO.js'); -function SessionCipher(storage, remoteAddress) { +function SessionCipher(storage, remoteAddress, options) { + options = options || {}; + + if (typeof options.messageKeysLimit === 'undefined') { + options.messageKeysLimit = 1000; + } + + this.messageKeysLimit = options.messageKeysLimit; this.remoteAddress = remoteAddress; this.storage = storage; } SessionCipher.prototype = { getRecord: function(encodedNumber) { - return this.storage.loadSession(encodedNumber).then(function(serialized) { - if (serialized === undefined) { - return undefined; - } - return SessionRecord.deserialize(serialized); - }); + return this.storage.loadSession(encodedNumber).then(function(serialized) { + if (serialized === undefined) { + return undefined; + } + return SessionRecord.deserialize(serialized); + }); }, encrypt: function(buffer, encoding) { buffer = dcodeIO.ByteBuffer.wrap(buffer, encoding).toArrayBuffer(); return SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { if (!(buffer instanceof ArrayBuffer)) { - throw new Error("Expected buffer to be an ArrayBuffer"); + throw new Error("Expected buffer to be an ArrayBuffer"); } var address = this.remoteAddress.toString(); @@ -35,88 +42,88 @@ SessionCipher.prototype = { var msg = new protobuf.WhisperMessage(); return Promise.all([ - this.storage.getIdentityKeyPair(), - this.storage.getLocalRegistrationId(), - this.getRecord(address) + this.storage.getIdentityKeyPair(), + this.storage.getLocalRegistrationId(), + this.getRecord(address) ]).then(function(results) { - ourIdentityKey = results[0]; - myRegistrationId = results[1]; - record = results[2]; - if (!record) { - throw new Error("No record for " + address); - } - session = record.getOpenSession(); - if (!session) { - throw new Error("No session to encrypt message for " + address); - } + ourIdentityKey = results[0]; + myRegistrationId = results[1]; + record = results[2]; + if (!record) { + throw new Error("No record for " + address); + } + session = record.getOpenSession(); + if (!session) { + throw new Error("No session to encrypt message for " + address); + } - msg.ephemeralKey = util.toArrayBuffer( - session.currentRatchet.ephemeralKeyPair.pubKey - ); - chain = session[util.toString(msg.ephemeralKey)]; - if (chain.chainType === ChainType.RECEIVING) { - throw new Error("Tried to encrypt on a receiving chain"); - } + msg.ephemeralKey = util.toArrayBuffer( + session.currentRatchet.ephemeralKeyPair.pubKey + ); + chain = session[util.toString(msg.ephemeralKey)]; + if (chain.chainType === ChainType.RECEIVING) { + throw new Error("Tried to encrypt on a receiving chain"); + } - return this.fillMessageKeys(chain, chain.chainKey.counter + 1); + return this.fillMessageKeys(chain, chain.chainKey.counter + 1); }.bind(this)).then(function() { - return Crypto.HKDF( - util.toArrayBuffer(chain.messageKeys[chain.chainKey.counter]), - new ArrayBuffer(32), "WhisperMessageKeys"); + return Crypto.HKDF( + util.toArrayBuffer(chain.messageKeys[chain.chainKey.counter]), + new ArrayBuffer(32), "WhisperMessageKeys"); }).then(function(keys) { - delete chain.messageKeys[chain.chainKey.counter]; - msg.counter = chain.chainKey.counter; - msg.previousCounter = session.currentRatchet.previousCounter; - - return Crypto.crypto.encrypt( - keys[0], buffer, keys[2].slice(0, 16) - ).then(function(ciphertext) { - msg.ciphertext = ciphertext; - var encodedMsg = msg.toArrayBuffer(); - - var macInput = new Uint8Array(encodedMsg.byteLength + 33*2 + 1); - macInput.set(new Uint8Array(util.toArrayBuffer(ourIdentityKey.pubKey))); - macInput.set(new Uint8Array(util.toArrayBuffer(session.indexInfo.remoteIdentityKey)), 33); - macInput[33*2] = (3 << 4) | 3; - macInput.set(new Uint8Array(encodedMsg), 33*2 + 1); - - return Crypto.crypto.sign(keys[1], macInput.buffer).then(function(mac) { - var result = new Uint8Array(encodedMsg.byteLength + 9); - result[0] = (3 << 4) | 3; - result.set(new Uint8Array(encodedMsg), 1); - result.set(new Uint8Array(mac, 0, 8), encodedMsg.byteLength + 1); - - record.updateSessionState(session); - return this.storage.storeSession(address, record.serialize()).then(function() { - return result; - }); - }.bind(this)); + delete chain.messageKeys[chain.chainKey.counter]; + msg.counter = chain.chainKey.counter; + msg.previousCounter = session.currentRatchet.previousCounter; + + return Crypto.crypto.encrypt( + keys[0], buffer, keys[2].slice(0, 16) + ).then(function(ciphertext) { + msg.ciphertext = ciphertext; + var encodedMsg = msg.toArrayBuffer(); + + var macInput = new Uint8Array(encodedMsg.byteLength + 33*2 + 1); + macInput.set(new Uint8Array(util.toArrayBuffer(ourIdentityKey.pubKey))); + macInput.set(new Uint8Array(util.toArrayBuffer(session.indexInfo.remoteIdentityKey)), 33); + macInput[33*2] = (3 << 4) | 3; + macInput.set(new Uint8Array(encodedMsg), 33*2 + 1); + + return Crypto.crypto.sign(keys[1], macInput.buffer).then(function(mac) { + var result = new Uint8Array(encodedMsg.byteLength + 9); + result[0] = (3 << 4) | 3; + result.set(new Uint8Array(encodedMsg), 1); + result.set(new Uint8Array(mac, 0, 8), encodedMsg.byteLength + 1); + + record.updateSessionState(session); + return this.storage.storeSession(address, record.serialize()).then(function() { + return result; + }); }.bind(this)); + }.bind(this)); }.bind(this)).then(function(message) { - if (session.pendingPreKey !== undefined) { - var preKeyMsg = new protobuf.PreKeyWhisperMessage(); - preKeyMsg.identityKey = util.toArrayBuffer(ourIdentityKey.pubKey); - preKeyMsg.registrationId = myRegistrationId; - - preKeyMsg.baseKey = util.toArrayBuffer(session.pendingPreKey.baseKey); - preKeyMsg.preKeyId = session.pendingPreKey.preKeyId; - preKeyMsg.signedPreKeyId = session.pendingPreKey.signedKeyId; - - preKeyMsg.message = message; - var result = String.fromCharCode((3 << 4) | 3) + util.toString(preKeyMsg.encode()); - return { - type : 3, - body : result, - registrationId : record.registrationId - }; - - } else { - return { - type : 1, - body : util.toString(message), - registrationId : record.registrationId - }; - } + if (session.pendingPreKey !== undefined) { + var preKeyMsg = new protobuf.PreKeyWhisperMessage(); + preKeyMsg.identityKey = util.toArrayBuffer(ourIdentityKey.pubKey); + preKeyMsg.registrationId = myRegistrationId; + + preKeyMsg.baseKey = util.toArrayBuffer(session.pendingPreKey.baseKey); + preKeyMsg.preKeyId = session.pendingPreKey.preKeyId; + preKeyMsg.signedPreKeyId = session.pendingPreKey.signedKeyId; + + preKeyMsg.message = message; + var result = String.fromCharCode((3 << 4) | 3) + util.toString(preKeyMsg.encode()); + return { + type : 3, + body : result, + registrationId : record.registrationId + }; + + } else { + return { + type : 1, + body : util.toString(message), + registrationId : record.registrationId + }; + } }); }.bind(this)); }, @@ -125,82 +132,82 @@ SessionCipher.prototype = { // using each one at a time. Stop and return the result if we get // a valid result if (sessionList.length === 0) { - return Promise.reject(errors[0]); + return Promise.reject(errors[0]); } var session = sessionList.pop(); return this.doDecryptWhisperMessage(buffer, session).then(function(plaintext) { - return { plaintext: plaintext, session: session }; + return { plaintext: plaintext, session: session }; }).catch(function(e) { - errors.push(e); - return this.decryptWithSessionList(buffer, sessionList, errors); + errors.push(e); + return this.decryptWithSessionList(buffer, sessionList, errors); }.bind(this)); }, decryptWhisperMessage: function(buffer, encoding) { - buffer = dcodeIO.ByteBuffer.wrap(buffer, encoding).toArrayBuffer(); - return SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { - var address = this.remoteAddress.toString(); - return this.getRecord(address).then(function(record) { - if (!record) { - throw new Error("No record for device " + address); - } - var errors = []; - return this.decryptWithSessionList(buffer, record.getSessions(), errors).then(function(result) { - return this.getRecord(address).then(function(record) { - record.updateSessionState(result.session); - return this.storage.storeSession(address, record.serialize()).then(function() { - return result.plaintext; - }); - }.bind(this)); - }.bind(this)); + buffer = dcodeIO.ByteBuffer.wrap(buffer, encoding).toArrayBuffer(); + return SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { + var address = this.remoteAddress.toString(); + return this.getRecord(address).then(function(record) { + if (!record) { + throw new Error("No record for device " + address); + } + var errors = []; + return this.decryptWithSessionList(buffer, record.getSessions(), errors).then(function(result) { + return this.getRecord(address).then(function(record) { + record.updateSessionState(result.session); + return this.storage.storeSession(address, record.serialize()).then(function() { + return result.plaintext; + }); + }.bind(this)); }.bind(this)); }.bind(this)); + }.bind(this)); }, decryptPreKeyWhisperMessage: function(buffer, encoding) { - buffer = dcodeIO.ByteBuffer.wrap(buffer, encoding); - var version = buffer.readUint8(); - if ((version & 0xF) > 3 || (version >> 4) < 3) { // min version > 3 or max version < 3 - throw new Error("Incompatible version number on PreKeyWhisperMessage"); - } - return SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { - var address = this.remoteAddress.toString(); - return this.getRecord(address).then(function(record) { - var preKeyProto = protobuf.PreKeyWhisperMessage.decode(buffer); - if (!record) { - if (preKeyProto.registrationId === undefined) { - throw new Error("No registrationId"); - } - record = new SessionRecord( - util.toString(preKeyProto.identityKey), - preKeyProto.registrationId - ); + buffer = dcodeIO.ByteBuffer.wrap(buffer, encoding); + var version = buffer.readUint8(); + if ((version & 0xF) > 3 || (version >> 4) < 3) { // min version > 3 or max version < 3 + throw new Error("Incompatible version number on PreKeyWhisperMessage"); + } + return SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { + var address = this.remoteAddress.toString(); + return this.getRecord(address).then(function(record) { + var preKeyProto = protobuf.PreKeyWhisperMessage.decode(buffer); + if (!record) { + if (preKeyProto.registrationId === undefined) { + throw new Error("No registrationId"); + } + record = new SessionRecord( + util.toString(preKeyProto.identityKey), + preKeyProto.registrationId + ); + } + var builder = new SessionBuilder(this.storage, this.remoteAddress); + return builder.processV3(record, preKeyProto).then(function(preKeyId) { + var session = record.getSessionByBaseKey(preKeyProto.baseKey); + return this.doDecryptWhisperMessage( + preKeyProto.message.toArrayBuffer(), session + ).then(function(plaintext) { + record.updateSessionState(session); + return this.storage.storeSession(address, record.serialize()).then(function() { + if (preKeyId !== undefined) { + return this.storage.removePreKey(preKeyId); } - var builder = new SessionBuilder(this.storage, this.remoteAddress); - return builder.processV3(record, preKeyProto).then(function(preKeyId) { - var session = record.getSessionByBaseKey(preKeyProto.baseKey); - return this.doDecryptWhisperMessage( - preKeyProto.message.toArrayBuffer(), session - ).then(function(plaintext) { - record.updateSessionState(session); - return this.storage.storeSession(address, record.serialize()).then(function() { - if (preKeyId !== undefined) { - return this.storage.removePreKey(preKeyId); - } - }.bind(this)).then(function() { - return plaintext; - }); - }.bind(this)); - }.bind(this)); + }.bind(this)).then(function() { + return plaintext; + }); }.bind(this)); + }.bind(this)); }.bind(this)); + }.bind(this)); }, doDecryptWhisperMessage: function(messageBytes, session) { if (!(messageBytes instanceof ArrayBuffer)) { - throw new Error("Expected messageBytes to be an ArrayBuffer"); + throw new Error("Expected messageBytes to be an ArrayBuffer"); } var version = (new Uint8Array(messageBytes))[0]; if ((version & 0xF) > 3 || (version >> 4) < 3) { // min version > 3 or max version < 3 - throw new Error("Incompatible version number on WhisperMessage"); + throw new Error("Incompatible version number on WhisperMessage"); } var messageProto = messageBytes.slice(1, messageBytes.byteLength- 8); var mac = messageBytes.slice(messageBytes.byteLength - 8, messageBytes.byteLength); @@ -209,148 +216,148 @@ SessionCipher.prototype = { var remoteEphemeralKey = message.ephemeralKey.toArrayBuffer(); if (session === undefined) { - return Promise.reject(new Error("No session found to decrypt message from " + this.remoteAddress.toString())); + return Promise.reject(new Error("No session found to decrypt message from " + this.remoteAddress.toString())); } if (session.indexInfo.closed != -1) { - // console.log('decrypting message for closed session'); + // console.log('decrypting message for closed session'); } return this.maybeStepRatchet(session, remoteEphemeralKey, message.previousCounter).then(function() { - var chain = session[util.toString(message.ephemeralKey)]; - if (chain.chainType === ChainType.SENDING) { - throw new Error("Tried to decrypt on a sending chain"); - } + var chain = session[util.toString(message.ephemeralKey)]; + if (chain.chainType === ChainType.SENDING) { + throw new Error("Tried to decrypt on a sending chain"); + } - return this.fillMessageKeys(chain, message.counter).then(function() { - var messageKey = chain.messageKeys[message.counter]; - if (messageKey === undefined) { - var e = new Error("Message key not found. The counter was repeated or the key was not filled."); - e.name = 'MessageCounterError'; - throw e; - } - delete chain.messageKeys[message.counter]; - return Crypto.HKDF(util.toArrayBuffer(messageKey), new ArrayBuffer(32), "WhisperMessageKeys"); - }); + return this.fillMessageKeys(chain, message.counter).then(function() { + var messageKey = chain.messageKeys[message.counter]; + if (messageKey === undefined) { + var e = new Error("Message key not found. The counter was repeated or the key was not filled."); + e.name = 'MessageCounterError'; + throw e; + } + delete chain.messageKeys[message.counter]; + return Crypto.HKDF(util.toArrayBuffer(messageKey), new ArrayBuffer(32), "WhisperMessageKeys"); + }); }.bind(this)).then(function(keys) { - return this.storage.getIdentityKeyPair().then(function(ourIdentityKey) { + return this.storage.getIdentityKeyPair().then(function(ourIdentityKey) { - var macInput = new Uint8Array(messageProto.byteLength + 33*2 + 1); - macInput.set(new Uint8Array(util.toArrayBuffer(session.indexInfo.remoteIdentityKey))); - macInput.set(new Uint8Array(util.toArrayBuffer(ourIdentityKey.pubKey)), 33); - macInput[33*2] = (3 << 4) | 3; - macInput.set(new Uint8Array(messageProto), 33*2 + 1); + var macInput = new Uint8Array(messageProto.byteLength + 33*2 + 1); + macInput.set(new Uint8Array(util.toArrayBuffer(session.indexInfo.remoteIdentityKey))); + macInput.set(new Uint8Array(util.toArrayBuffer(ourIdentityKey.pubKey)), 33); + macInput[33*2] = (3 << 4) | 3; + macInput.set(new Uint8Array(messageProto), 33*2 + 1); - return Crypto.verifyMAC(macInput.buffer, keys[1], mac, 8); - }.bind(this)).then(function() { - return Crypto.crypto.decrypt(keys[0], message.ciphertext.toArrayBuffer(), keys[2].slice(0, 16)); - }); + return Crypto.verifyMAC(macInput.buffer, keys[1], mac, 8); + }.bind(this)).then(function() { + return Crypto.crypto.decrypt(keys[0], message.ciphertext.toArrayBuffer(), keys[2].slice(0, 16)); + }); }.bind(this)).then(function(plaintext) { - delete session.pendingPreKey; - return plaintext; + delete session.pendingPreKey; + return plaintext; }); }, fillMessageKeys: function(chain, counter) { - if (Object.keys(chain.messageKeys).length >= 1000) { - // console.log("Too many message keys for chain"); - return Promise.resolve(); // Stalker, much? - } + if (this.messageKeysLimit && Object.keys(chain.messageKeys).length >= this.messageKeysLimit) { + // console.log("Too many message keys for chain"); + return Promise.resolve(); // Stalker, much? + } - if (chain.chainKey.counter >= counter) { - return Promise.resolve(); // Already calculated - } + if (chain.chainKey.counter >= counter) { + return Promise.resolve(); // Already calculated + } - if (chain.chainKey.key === undefined) { - throw new Error("Got invalid request to extend chain after it was already closed"); - } + if (chain.chainKey.key === undefined) { + throw new Error("Got invalid request to extend chain after it was already closed"); + } - var key = util.toArrayBuffer(chain.chainKey.key); - var byteArray = new Uint8Array(1); - byteArray[0] = 1; - return Crypto.crypto.sign(key, byteArray.buffer).then(function(mac) { - byteArray[0] = 2; - return Crypto.crypto.sign(key, byteArray.buffer).then(function(key) { - chain.messageKeys[chain.chainKey.counter + 1] = mac; - chain.chainKey.key = key; - chain.chainKey.counter += 1; - return this.fillMessageKeys(chain, counter); - }.bind(this)); + var key = util.toArrayBuffer(chain.chainKey.key); + var byteArray = new Uint8Array(1); + byteArray[0] = 1; + return Crypto.crypto.sign(key, byteArray.buffer).then(function(mac) { + byteArray[0] = 2; + return Crypto.crypto.sign(key, byteArray.buffer).then(function(key) { + chain.messageKeys[chain.chainKey.counter + 1] = mac; + chain.chainKey.key = key; + chain.chainKey.counter += 1; + return this.fillMessageKeys(chain, counter); }.bind(this)); + }.bind(this)); }, maybeStepRatchet: function(session, remoteKey, previousCounter) { - if (session[util.toString(remoteKey)] !== undefined) { - return Promise.resolve(); - } + if (session[util.toString(remoteKey)] !== undefined) { + return Promise.resolve(); + } - // console.log('New remote ephemeral key'); - var ratchet = session.currentRatchet; - - return Promise.resolve().then(function() { - var previousRatchet = session[util.toString(ratchet.lastRemoteEphemeralKey)]; - if (previousRatchet !== undefined) { - return this.fillMessageKeys(previousRatchet, previousCounter).then(function() { - delete previousRatchet.chainKey.key; - session.oldRatchetList[session.oldRatchetList.length] = { - added : Date.now(), - ephemeralKey : ratchet.lastRemoteEphemeralKey - }; - }); - } - }.bind(this)).then(function() { - return this.calculateRatchet(session, remoteKey, false).then(function() { - // Now swap the ephemeral key and calculate the new sending chain - var previousRatchet = util.toString(ratchet.ephemeralKeyPair.pubKey); - if (session[previousRatchet] !== undefined) { - ratchet.previousCounter = session[previousRatchet].chainKey.counter; - delete session[previousRatchet]; - } + // console.log('New remote ephemeral key'); + var ratchet = session.currentRatchet; + + return Promise.resolve().then(function() { + var previousRatchet = session[util.toString(ratchet.lastRemoteEphemeralKey)]; + if (previousRatchet !== undefined) { + return this.fillMessageKeys(previousRatchet, previousCounter).then(function() { + delete previousRatchet.chainKey.key; + session.oldRatchetList[session.oldRatchetList.length] = { + added : Date.now(), + ephemeralKey : ratchet.lastRemoteEphemeralKey + }; + }); + } + }.bind(this)).then(function() { + return this.calculateRatchet(session, remoteKey, false).then(function() { + // Now swap the ephemeral key and calculate the new sending chain + var previousRatchet = util.toString(ratchet.ephemeralKeyPair.pubKey); + if (session[previousRatchet] !== undefined) { + ratchet.previousCounter = session[previousRatchet].chainKey.counter; + delete session[previousRatchet]; + } - return Crypto.crypto.createKeyPair().then(function(keyPair) { - ratchet.ephemeralKeyPair = keyPair; - return this.calculateRatchet(session, remoteKey, true).then(function() { - ratchet.lastRemoteEphemeralKey = remoteKey; - }.bind(this)); - }.bind(this)); + return Crypto.crypto.createKeyPair().then(function(keyPair) { + ratchet.ephemeralKeyPair = keyPair; + return this.calculateRatchet(session, remoteKey, true).then(function() { + ratchet.lastRemoteEphemeralKey = remoteKey; }.bind(this)); + }.bind(this)); }.bind(this)); + }.bind(this)); }, calculateRatchet: function(session, remoteKey, sending) { - var ratchet = session.currentRatchet; + var ratchet = session.currentRatchet; - return Crypto.crypto.ECDHE(remoteKey, util.toArrayBuffer(ratchet.ephemeralKeyPair.privKey)).then(function(sharedSecret) { - return Crypto.HKDF(sharedSecret, util.toArrayBuffer(ratchet.rootKey), "WhisperRatchet").then(function(masterKey) { - var ephemeralPublicKey; - if (sending) { - ephemeralPublicKey = ratchet.ephemeralKeyPair.pubKey; - } - else { - ephemeralPublicKey = remoteKey; - } - session[util.toString(ephemeralPublicKey)] = { - messageKeys: {}, - chainKey: { counter: -1, key: masterKey[1] }, - chainType: sending ? ChainType.SENDING : ChainType.RECEIVING - }; - ratchet.rootKey = masterKey[0]; - }); + return Crypto.crypto.ECDHE(remoteKey, util.toArrayBuffer(ratchet.ephemeralKeyPair.privKey)).then(function(sharedSecret) { + return Crypto.HKDF(sharedSecret, util.toArrayBuffer(ratchet.rootKey), "WhisperRatchet").then(function(masterKey) { + var ephemeralPublicKey; + if (sending) { + ephemeralPublicKey = ratchet.ephemeralKeyPair.pubKey; + } + else { + ephemeralPublicKey = remoteKey; + } + session[util.toString(ephemeralPublicKey)] = { + messageKeys: {}, + chainKey: { counter: -1, key: masterKey[1] }, + chainType: sending ? ChainType.SENDING : ChainType.RECEIVING + }; + ratchet.rootKey = masterKey[0]; }); + }); }, getRemoteRegistrationId: function() { return SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { return this.getRecord(this.remoteAddress.toString()).then(function(record) { - if (record === undefined) { - return undefined; - } - return record.registrationId; + if (record === undefined) { + return undefined; + } + return record.registrationId; }); }.bind(this)); }, hasOpenSession: function() { return SessionLock.queueJobForNumber(this.remoteAddress.toString(), function() { return this.getRecord(this.remoteAddress.toString()).then(function(record) { - if (record === undefined) { - return false; - } - return record.haveOpenSession(); + if (record === undefined) { + return false; + } + return record.haveOpenSession(); }); }.bind(this)); }, @@ -359,7 +366,7 @@ SessionCipher.prototype = { return SessionLock.queueJobForNumber(address, function() { return this.getRecord(address).then(function(record) { if (record === undefined || record.getOpenSession() === undefined) { - return; + return; } record.archiveCurrentState(); @@ -369,22 +376,22 @@ SessionCipher.prototype = { } }; -var mySessionCipher = function(storage, remoteAddress) { - var cipher = new SessionCipher(storage, remoteAddress); +var mySessionCipher = function(storage, remoteAddress, options) { + var cipher = new SessionCipher(storage, remoteAddress, options); - // returns a Promise that resolves to a ciphertext object - this.encrypt = cipher.encrypt.bind(cipher); + // returns a Promise that resolves to a ciphertext object + this.encrypt = cipher.encrypt.bind(cipher); - // returns a Promise that inits a session if necessary and resolves - // to a decrypted plaintext array buffer - this.decryptPreKeyWhisperMessage = cipher.decryptPreKeyWhisperMessage.bind(cipher); + // returns a Promise that inits a session if necessary and resolves + // to a decrypted plaintext array buffer + this.decryptPreKeyWhisperMessage = cipher.decryptPreKeyWhisperMessage.bind(cipher); - // returns a Promise that resolves to decrypted plaintext array buffer - this.decryptWhisperMessage = cipher.decryptWhisperMessage.bind(cipher); + // returns a Promise that resolves to decrypted plaintext array buffer + this.decryptWhisperMessage = cipher.decryptWhisperMessage.bind(cipher); - this.getRemoteRegistrationId = cipher.getRemoteRegistrationId.bind(cipher); - this.hasOpenSession = cipher.hasOpenSession.bind(cipher); - this.closeOpenSessionForDevice = cipher.closeOpenSessionForDevice.bind(cipher); + this.getRemoteRegistrationId = cipher.getRemoteRegistrationId.bind(cipher); + this.hasOpenSession = cipher.hasOpenSession.bind(cipher); + this.closeOpenSessionForDevice = cipher.closeOpenSessionForDevice.bind(cipher); }; module.exports = mySessionCipher;